
    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_5ee7a0c7f24bdd2cd9133c09.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_aacdcd1f869d2a26b1854666.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_6c0559f4e7558bcb2b424148.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_2cafcd531e6f40e2369d1ed8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_8e55b91989bea7cb01403dab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_de69edf73fe1d0b2cfb1eaff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6fa306011a69ed8de5fd9e26.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213000;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_cfd33efe64ddb1be3139f307.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;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_5bc77063488fdca595192dc2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.256000;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_40393559926b7b956e839ae1.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_45927af7f694edb2571300ef.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.678223;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.256000;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_101bb07f8d8af601bcdf6043.woff2')format("woff");}.fff{font-family:fff;line-height:0.750000;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_9458984a06aa25c0411da696.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.607000;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:ff11;src:url('chunks/assets/font_2f8894b5e2f36707f5b1f755.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689941;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);}
.v1{vertical-align:-20.399963px;}
.v5{vertical-align:-12.750000px;}
.v4{vertical-align:-2.888306px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.888672px;}
.v2{vertical-align:24.000000px;}
.ls5{letter-spacing:-2.220000px;}
.ls13{letter-spacing:-1.887000px;}
.ls14{letter-spacing:-0.612000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000013px;}
.ls12{letter-spacing:0.000017px;}
.ls2{letter-spacing:0.000037px;}
.ls1{letter-spacing:0.000038px;}
.ls15{letter-spacing:0.000040px;}
.lsc{letter-spacing:0.000059px;}
.ls9{letter-spacing:0.000220px;}
.lsb{letter-spacing:0.000582px;}
.ls6{letter-spacing:0.000583px;}
.ls7{letter-spacing:0.000652px;}
.lsd{letter-spacing:0.000765px;}
.lsa{letter-spacing:0.010215px;}
.ls3{letter-spacing:3.990000px;}
.ls16{letter-spacing:15.708000px;}
.ls0{letter-spacing:27.307191px;}
.ls8{letter-spacing:53.442678px;}
.lsf{letter-spacing:319.223365px;}
.ls11{letter-spacing:412.693213px;}
.ls10{letter-spacing:638.859041px;}
.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;}
}
.ws1f{word-spacing:-60.000000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.544000px;}
.ws3{word-spacing:-12.780000px;}
.ws67{word-spacing:-12.750000px;}
.ws1e{word-spacing:-12.474000px;}
.ws8{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws7{word-spacing:-11.520000px;}
.ws20{word-spacing:-10.302000px;}
.ws0{word-spacing:-9.996000px;}
.ws9c{word-spacing:-9.792000px;}
.ws4{word-spacing:-8.925000px;}
.ws9{word-spacing:-8.694000px;}
.ws19{word-spacing:-7.500000px;}
.ws6e{word-spacing:-6.375000px;}
.ws90{word-spacing:-5.763000px;}
.wsf3{word-spacing:-4.896000px;}
.ws96{word-spacing:-4.560000px;}
.ws8c{word-spacing:-4.488000px;}
.wse5{word-spacing:-4.437000px;}
.ws2d{word-spacing:-4.200000px;}
.wsa{word-spacing:-3.990000px;}
.wsbc{word-spacing:-3.825000px;}
.ws4e{word-spacing:-3.780000px;}
.wsb2{word-spacing:-3.600000px;}
.wsaf{word-spacing:-3.420000px;}
.wsd{word-spacing:-2.760000px;}
.wsdf{word-spacing:-2.703000px;}
.wsc4{word-spacing:-2.550000px;}
.ws26{word-spacing:-2.520000px;}
.wseb{word-spacing:-2.499000px;}
.ws58{word-spacing:-2.340000px;}
.ws6f{word-spacing:-2.244000px;}
.ws61{word-spacing:-2.220000px;}
.ws8b{word-spacing:-2.193000px;}
.ws1d{word-spacing:-2.160000px;}
.wsa3{word-spacing:-1.938000px;}
.ws18{word-spacing:-1.920000px;}
.ws11{word-spacing:-1.800000px;}
.ws3f{word-spacing:-1.620000px;}
.ws30{word-spacing:-1.560000px;}
.wsc3{word-spacing:-1.479000px;}
.ws86{word-spacing:-1.440000px;}
.wse8{word-spacing:-1.428000px;}
.ws39{word-spacing:-1.380000px;}
.ws3e{word-spacing:-1.320000px;}
.wsd4{word-spacing:-1.275000px;}
.ws37{word-spacing:-1.200000px;}
.ws85{word-spacing:-1.020000px;}
.ws8a{word-spacing:-0.918000px;}
.ws4f{word-spacing:-0.900000px;}
.wsf{word-spacing:-0.780000px;}
.wsef{word-spacing:-0.765000px;}
.wsad{word-spacing:-0.720000px;}
.ws1a{word-spacing:-0.660000px;}
.wse6{word-spacing:-0.612000px;}
.ws75{word-spacing:-0.480000px;}
.ws57{word-spacing:-0.420000px;}
.ws63{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.288000px;}
.wsf7{word-spacing:-0.153000px;}
.ws32{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.060000px;}
.ws16{word-spacing:-0.051000px;}
.wsb{word-spacing:0.000000px;}
.ws5e{word-spacing:0.120000px;}
.wsd2{word-spacing:0.306000px;}
.ws3c{word-spacing:0.420000px;}
.wsb1{word-spacing:0.480000px;}
.wscd{word-spacing:0.510000px;}
.wscc{word-spacing:0.561000px;}
.ws2e{word-spacing:0.600000px;}
.wsc8{word-spacing:0.612000px;}
.wsc2{word-spacing:0.663000px;}
.ws52{word-spacing:0.840000px;}
.wsae{word-spacing:1.080000px;}
.ws43{word-spacing:1.140000px;}
.ws66{word-spacing:1.200000px;}
.wse2{word-spacing:1.275000px;}
.wsd7{word-spacing:1.530000px;}
.ws5a{word-spacing:1.560000px;}
.ws81{word-spacing:1.620000px;}
.ws1b{word-spacing:1.740000px;}
.ws5b{word-spacing:1.800000px;}
.ws8d{word-spacing:1.836000px;}
.ws87{word-spacing:1.860000px;}
.ws40{word-spacing:1.920000px;}
.wsce{word-spacing:2.040000px;}
.wsa6{word-spacing:2.091000px;}
.ws82{word-spacing:2.160000px;}
.ws8e{word-spacing:2.397000px;}
.ws27{word-spacing:2.400000px;}
.wsa1{word-spacing:2.550000px;}
.ws28{word-spacing:2.580000px;}
.ws5d{word-spacing:2.640000px;}
.wsa9{word-spacing:2.652000px;}
.wsab{word-spacing:2.700000px;}
.wsd9{word-spacing:2.754000px;}
.ws15{word-spacing:2.820000px;}
.ws74{word-spacing:2.940000px;}
.ws21{word-spacing:3.009000px;}
.ws5f{word-spacing:3.120000px;}
.wsf4{word-spacing:3.213000px;}
.ws41{word-spacing:3.240000px;}
.ws3a{word-spacing:3.300000px;}
.wsc7{word-spacing:3.315000px;}
.wsaa{word-spacing:3.417000px;}
.ws84{word-spacing:3.420000px;}
.ws8f{word-spacing:3.468000px;}
.ws4a{word-spacing:3.540000px;}
.ws83{word-spacing:3.660000px;}
.ws92{word-spacing:3.780000px;}
.ws80{word-spacing:3.840000px;}
.wsa2{word-spacing:3.876000px;}
.ws4c{word-spacing:3.900000px;}
.ws5c{word-spacing:3.960000px;}
.ws14{word-spacing:4.080000px;}
.ws3d{word-spacing:4.140000px;}
.wsa4{word-spacing:4.437000px;}
.wscf{word-spacing:4.488000px;}
.ws59{word-spacing:4.500000px;}
.ws2a{word-spacing:4.560000px;}
.ws24{word-spacing:4.680000px;}
.ws23{word-spacing:4.740000px;}
.wsf5{word-spacing:4.743000px;}
.ws50{word-spacing:4.920000px;}
.wsd1{word-spacing:4.998000px;}
.ws99{word-spacing:5.100000px;}
.wsf0{word-spacing:5.202000px;}
.ws9b{word-spacing:5.220000px;}
.ws2c{word-spacing:5.280000px;}
.wse1{word-spacing:5.304000px;}
.ws31{word-spacing:5.340000px;}
.wsda{word-spacing:5.355000px;}
.ws36{word-spacing:5.520000px;}
.wsac{word-spacing:5.580000px;}
.ws48{word-spacing:5.700000px;}
.wsf6{word-spacing:5.712000px;}
.ws2b{word-spacing:5.760000px;}
.ws49{word-spacing:5.880000px;}
.wse{word-spacing:6.000000px;}
.ws10{word-spacing:6.060000px;}
.ws4d{word-spacing:6.120000px;}
.wse3{word-spacing:6.222000px;}
.wsed{word-spacing:6.273000px;}
.wsd0{word-spacing:6.477000px;}
.wsb8{word-spacing:6.480000px;}
.wse0{word-spacing:6.579000px;}
.ws76{word-spacing:6.600000px;}
.wsc6{word-spacing:6.630000px;}
.ws4b{word-spacing:6.720000px;}
.ws89{word-spacing:6.780000px;}
.wsee{word-spacing:6.987000px;}
.wsb9{word-spacing:7.080000px;}
.wsca{word-spacing:7.191000px;}
.ws93{word-spacing:7.320000px;}
.ws9f{word-spacing:7.380000px;}
.wsa8{word-spacing:7.497000px;}
.ws9d{word-spacing:7.500000px;}
.wsbf{word-spacing:7.548000px;}
.wsb7{word-spacing:7.740000px;}
.ws17{word-spacing:7.800000px;}
.wsd8{word-spacing:7.905000px;}
.ws46{word-spacing:7.980000px;}
.wsbb{word-spacing:8.100000px;}
.wsa5{word-spacing:8.109000px;}
.ws34{word-spacing:8.160000px;}
.ws9a{word-spacing:8.280000px;}
.wsb6{word-spacing:8.460000px;}
.wsc5{word-spacing:8.466000px;}
.wsa0{word-spacing:8.520000px;}
.ws25{word-spacing:8.640000px;}
.ws22{word-spacing:8.700000px;}
.ws64{word-spacing:8.760000px;}
.wsc9{word-spacing:8.823000px;}
.wscb{word-spacing:8.874000px;}
.wsd5{word-spacing:8.925000px;}
.ws53{word-spacing:9.180000px;}
.wsa7{word-spacing:9.333000px;}
.ws3b{word-spacing:9.360000px;}
.ws51{word-spacing:9.420000px;}
.wsdc{word-spacing:9.435000px;}
.wsc{word-spacing:9.480000px;}
.wsbe{word-spacing:9.537000px;}
.ws88{word-spacing:9.540000px;}
.ws12{word-spacing:9.660000px;}
.ws60{word-spacing:9.720000px;}
.ws79{word-spacing:9.960000px;}
.wsb3{word-spacing:10.140000px;}
.wsdd{word-spacing:10.200000px;}
.ws98{word-spacing:10.560000px;}
.ws45{word-spacing:10.620000px;}
.ws95{word-spacing:10.740000px;}
.ws42{word-spacing:10.980000px;}
.ws2f{word-spacing:11.040000px;}
.ws78{word-spacing:11.280000px;}
.wsd6{word-spacing:11.526000px;}
.ws29{word-spacing:11.940000px;}
.ws65{word-spacing:12.180000px;}
.wsf1{word-spacing:12.546000px;}
.wsc0{word-spacing:12.699000px;}
.wse9{word-spacing:13.107000px;}
.wsb4{word-spacing:13.140000px;}
.wsf8{word-spacing:13.566000px;}
.ws77{word-spacing:13.680000px;}
.wsba{word-spacing:14.160000px;}
.ws9e{word-spacing:14.580000px;}
.ws33{word-spacing:14.820000px;}
.wsec{word-spacing:14.892000px;}
.wsb0{word-spacing:15.180000px;}
.wsc1{word-spacing:15.453000px;}
.ws47{word-spacing:16.320000px;}
.wsb5{word-spacing:16.500000px;}
.ws94{word-spacing:16.920000px;}
.wsd3{word-spacing:16.932000px;}
.ws55{word-spacing:17.100000px;}
.ws38{word-spacing:17.460000px;}
.ws35{word-spacing:17.520000px;}
.wsdb{word-spacing:18.156000px;}
.wsea{word-spacing:18.309000px;}
.ws97{word-spacing:18.720000px;}
.ws91{word-spacing:19.431000px;}
.ws13{word-spacing:19.860000px;}
.ws62{word-spacing:20.220000px;}
.wse4{word-spacing:20.247000px;}
.ws44{word-spacing:20.700000px;}
.wsbd{word-spacing:21.624000px;}
.ws54{word-spacing:23.280000px;}
.wsf2{word-spacing:24.429000px;}
.ws56{word-spacing:27.360000px;}
.wse7{word-spacing:40.290000px;}
.wsde{word-spacing:46.614000px;}
.ws6c{word-spacing:217.314507px;}
.ws6d{word-spacing:232.869507px;}
.ws6a{word-spacing:271.116616px;}
.ws6b{word-spacing:298.815654px;}
.ws69{word-spacing:312.551514px;}
.ws68{word-spacing:338.051514px;}
.ws73{word-spacing:416.907532px;}
.ws7f{word-spacing:468.272419px;}
.ws7b{word-spacing:508.350442px;}
.ws7d{word-spacing:509.778076px;}
.ws7e{word-spacing:509.778442px;}
.ws7c{word-spacing:522.528625px;}
.ws70{word-spacing:528.342041px;}
.ws7a{word-spacing:528.949852px;}
.ws72{word-spacing:553.842041px;}
.ws71{word-spacing:592.092041px;}
._6{margin-left:-70.498787px;}
._16{margin-left:-51.240601px;}
._17{margin-left:-30.854392px;}
._54{margin-left:-25.085476px;}
._13{margin-left:-18.458350px;}
._56{margin-left:-17.224768px;}
._18{margin-left:-12.069001px;}
._46{margin-left:-10.215444px;}
._c{margin-left:-7.500023px;}
._15{margin-left:-6.438000px;}
._37{margin-left:-5.286000px;}
._a{margin-left:-4.200000px;}
._1{margin-left:-2.809739px;}
._0{margin-left:-1.229100px;}
._8{width:1.169100px;}
._4{width:2.496680px;}
._3{width:4.146933px;}
._e{width:5.481512px;}
._f{width:6.995999px;}
._5{width:8.304001px;}
._2{width:9.612000px;}
._b{width:10.714746px;}
._11{width:11.928000px;}
._12{width:13.452000px;}
._5b{width:15.445503px;}
._d{width:16.572297px;}
._9{width:18.596370px;}
._38{width:19.911629px;}
._55{width:21.674371px;}
._57{width:22.716000px;}
._60{width:24.260699px;}
._5a{width:25.551000px;}
._10{width:27.990000px;}
._59{width:31.542629px;}
._5d{width:33.538470px;}
._14{width:37.993811px;}
._58{width:39.072605px;}
._5e{width:41.284500px;}
._5f{width:44.053799px;}
._62{width:48.735605px;}
._5c{width:51.051000px;}
._61{width:52.387198px;}
._7{width:54.467991px;}
._31{width:76.888809px;}
._2a{width:79.744809px;}
._51{width:83.531442px;}
._4e{width:86.035767px;}
._4c{width:92.683127px;}
._4f{width:100.264127px;}
._29{width:109.607246px;}
._50{width:110.799082px;}
._52{width:125.764127px;}
._2b{width:142.103921px;}
._34{width:144.913660px;}
._4d{width:164.243419px;}
._32{width:167.604745px;}
._2c{width:200.995331px;}
._2f{width:253.475922px;}
._35{width:271.119690px;}
._53{width:288.857442px;}
._19{width:292.049514px;}
._20{width:309.491514px;}
._24{width:325.493712px;}
._39{width:333.059419px;}
._1b{width:338.861917px;}
._30{width:343.387331px;}
._26{width:361.034917px;}
._1c{width:364.361950px;}
._3e{width:365.906982px;}
._44{width:368.453419px;}
._43{width:385.390157px;}
._27{width:386.535009px;}
._4a{width:411.156442px;}
._42{width:416.906982px;}
._48{width:419.005852px;}
._41{width:420.830419px;}
._1e{width:424.784917px;}
._3c{width:433.431041px;}
._4b{width:436.656442px;}
._1f{width:450.285009px;}
._22{width:475.784917px;}
._47{width:477.667220px;}
._25{width:487.007390px;}
._3d{width:508.652419px;}
._45{width:517.169419px;}
._40{width:519.974419px;}
._3a{width:522.709160px;}
._1a{width:524.453390px;}
._2e{width:547.777163px;}
._21{width:573.452390px;}
._1d{width:581.969390px;}
._3b{width:599.181041px;}
._36{width:703.757021px;}
._28{width:826.486904px;}
._33{width:862.843942px;}
._2d{width:865.653681px;}
._23{width:941.336522px;}
._3f{width:1107.769056px;}
._49{width:1152.528072px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:60.997650px;}
.y1c{bottom:110.551048px;}
.y60{bottom:110.551197px;}
.y184{bottom:115.458904px;}
.y10{bottom:124.299145px;}
.y1bf{bottom:126.736645px;}
.y183{bottom:130.458904px;}
.y1b{bottom:130.651050px;}
.y142{bottom:140.048103px;}
.y1be{bottom:141.736645px;}
.yf{bottom:143.049145px;}
.y182{bottom:145.458904px;}
.y1a{bottom:148.051048px;}
.y141{bottom:155.048103px;}
.y1bd{bottom:156.736645px;}
.y181{bottom:160.458904px;}
.ye{bottom:161.799145px;}
.y19{bottom:163.051048px;}
.yac{bottom:169.347300px;}
.y1bc{bottom:171.736645px;}
.y180{bottom:175.458904px;}
.yd{bottom:180.549145px;}
.y18{bottom:183.151050px;}
.yab{bottom:184.347300px;}
.y1bb{bottom:186.736645px;}
.y140{bottom:188.048103px;}
.y17f{bottom:190.458904px;}
.yc{bottom:199.299156px;}
.y17{bottom:200.551048px;}
.yaa{bottom:201.691498px;}
.y1ba{bottom:201.736656px;}
.y13f{bottom:203.048103px;}
.y17e{bottom:205.458893px;}
.y16{bottom:215.551048px;}
.y1b9{bottom:216.736656px;}
.y13e{bottom:218.048103px;}
.yb{bottom:218.049156px;}
.ya8{bottom:219.036300px;}
.y17d{bottom:220.458893px;}
.y15{bottom:230.551048px;}
.y1b8{bottom:231.736656px;}
.y13d{bottom:233.048103px;}
.ya9{bottom:233.314200px;}
.ya7{bottom:234.036300px;}
.y17c{bottom:235.458893px;}
.ya{bottom:236.799156px;}
.y1b7{bottom:246.736656px;}
.y13c{bottom:248.048103px;}
.y17b{bottom:250.458893px;}
.y14{bottom:250.651039px;}
.ya5{bottom:251.381104px;}
.y9{bottom:255.549156px;}
.y1b6{bottom:261.736656px;}
.y17a{bottom:265.458893px;}
.ya4{bottom:266.381104px;}
.y13{bottom:273.151039px;}
.y8{bottom:274.299156px;}
.y1b5{bottom:276.736656px;}
.y179{bottom:280.458893px;}
.ya6{bottom:280.659004px;}
.y13b{bottom:281.048103px;}
.ya3{bottom:281.381104px;}
.y111{bottom:281.969100px;}
.y1b4{bottom:291.736656px;}
.y7{bottom:293.049156px;}
.y178{bottom:295.458893px;}
.y110{bottom:296.969100px;}
.y12{bottom:298.051048px;}
.ya2{bottom:298.725906px;}
.y1b3{bottom:306.736656px;}
.y177{bottom:310.458893px;}
.y6{bottom:311.799156px;}
.y10f{bottom:311.969100px;}
.y11{bottom:313.051048px;}
.ya0{bottom:316.070709px;}
.y13a{bottom:318.549156px;}
.y1b2{bottom:321.736656px;}
.y176{bottom:325.458893px;}
.y10e{bottom:326.969100px;}
.ya1{bottom:330.348610px;}
.y5{bottom:330.549156px;}
.y9f{bottom:331.070709px;}
.y139{bottom:333.549156px;}
.y1b1{bottom:336.736656px;}
.y175{bottom:340.458893px;}
.y10d{bottom:341.969100px;}
.y9d{bottom:348.415489px;}
.y5f{bottom:349.299156px;}
.y1b0{bottom:351.736656px;}
.y174{bottom:355.458893px;}
.y10c{bottom:356.969100px;}
.y9c{bottom:363.415489px;}
.y138{bottom:366.549156px;}
.y1af{bottom:366.736656px;}
.y4{bottom:368.049156px;}
.y173{bottom:370.458893px;}
.y10b{bottom:371.969100px;}
.y9e{bottom:377.693390px;}
.y9b{bottom:378.415489px;}
.y137{bottom:381.549156px;}
.y1ae{bottom:381.736656px;}
.y172{bottom:385.458893px;}
.y5e{bottom:386.799133px;}
.y10a{bottom:386.969100px;}
.y9a{bottom:395.760315px;}
.y136{bottom:396.549133px;}
.y1ad{bottom:396.736633px;}
.y171{bottom:400.458893px;}
.y109{bottom:401.969100px;}
.y5b{bottom:405.549133px;}
.y135{bottom:411.549133px;}
.y1ac{bottom:411.736633px;}
.y98{bottom:413.105118px;}
.y170{bottom:415.458893px;}
.y108{bottom:420.035568px;}
.y5d{bottom:424.299133px;}
.y134{bottom:426.549133px;}
.y1ab{bottom:426.736633px;}
.y99{bottom:427.382996px;}
.y97{bottom:428.105118px;}
.y16f{bottom:430.458893px;}
.y2f{bottom:431.112762px;}
.y107{bottom:438.102448px;}
.y133{bottom:441.549133px;}
.y1aa{bottom:441.736633px;}
.y5c{bottom:443.049133px;}
.y95{bottom:445.449921px;}
.y16e{bottom:445.458893px;}
.y106{bottom:456.169373px;}
.y132{bottom:456.549133px;}
.y1a9{bottom:456.736633px;}
.y94{bottom:460.449921px;}
.y16d{bottom:460.458893px;}
.y5a{bottom:461.799133px;}
.y2e{bottom:467.862762px;}
.y1a8{bottom:471.736633px;}
.y105{bottom:473.514130px;}
.y96{bottom:474.727798px;}
.y93{bottom:475.449921px;}
.y16c{bottom:475.458893px;}
.y59{bottom:480.549133px;}
.y2d{bottom:486.612762px;}
.y1a7{bottom:486.736633px;}
.y131{bottom:489.549133px;}
.y16b{bottom:490.458893px;}
.y104{bottom:491.581192px;}
.y92{bottom:492.794678px;}
.y58{bottom:499.299133px;}
.y1a6{bottom:501.736633px;}
.y130{bottom:504.549133px;}
.y2c{bottom:505.362579px;}
.y16a{bottom:505.458893px;}
.y103{bottom:509.648117px;}
.y90{bottom:510.139481px;}
.yd8{bottom:510.426590px;}
.y1a5{bottom:516.736633px;}
.y57{bottom:518.049133px;}
.y12f{bottom:519.549133px;}
.y169{bottom:520.458893px;}
.y2b{bottom:524.112579px;}
.y91{bottom:524.417404px;}
.y8f{bottom:525.139481px;}
.yd7{bottom:525.426590px;}
.y102{bottom:527.736465px;}
.y1a4{bottom:531.736633px;}
.y12e{bottom:534.549133px;}
.y168{bottom:535.458893px;}
.y56{bottom:536.799133px;}
.yd6{bottom:540.426590px;}
.y8d{bottom:542.484283px;}
.y101{bottom:542.736465px;}
.y2a{bottom:542.862579px;}
.y61{bottom:544.314011px;}
.y100{bottom:545.802887px;}
.y1a3{bottom:546.736633px;}
.y12d{bottom:549.549133px;}
.y167{bottom:550.458893px;}
.y55{bottom:555.549133px;}
.y8c{bottom:557.484283px;}
.yd5{bottom:557.770935px;}
.yff{bottom:560.802887px;}
.y29{bottom:561.612579px;}
.y1a2{bottom:561.736633px;}
.y12c{bottom:564.549133px;}
.y166{bottom:565.458893px;}
.y8e{bottom:571.762207px;}
.y8b{bottom:572.484283px;}
.y54{bottom:574.299133px;}
.yd4{bottom:575.128189px;}
.yfe{bottom:575.802887px;}
.y1a1{bottom:576.736633px;}
.y28{bottom:580.362579px;}
.y165{bottom:580.458893px;}
.yd3{bottom:590.128189px;}
.y8a{bottom:590.572632px;}
.y1a0{bottom:591.736633px;}
.y53{bottom:593.049133px;}
.yfd{bottom:593.147232px;}
.y164{bottom:595.458893px;}
.y12b{bottom:597.549133px;}
.y27{bottom:599.112579px;}
.y89{bottom:605.572632px;}
.y19f{bottom:606.736633px;}
.yd2{bottom:607.472992px;}
.yfc{bottom:608.147232px;}
.y163{bottom:610.458893px;}
.y52{bottom:611.799133px;}
.y12a{bottom:612.549133px;}
.y26{bottom:617.862579px;}
.y19e{bottom:621.736633px;}
.yd1{bottom:622.472992px;}
.y88{bottom:622.917023px;}
.y162{bottom:625.458893px;}
.y129{bottom:627.549133px;}
.y51{bottom:630.549133px;}
.y25{bottom:636.612579px;}
.y19d{bottom:636.736633px;}
.yd0{bottom:639.817795px;}
.y87{bottom:640.261368px;}
.y161{bottom:640.458893px;}
.y128{bottom:642.549133px;}
.yfb{bottom:645.701111px;}
.y50{bottom:649.299133px;}
.y19c{bottom:651.736633px;}
.y24{bottom:655.362579px;}
.y160{bottom:655.458893px;}
.yce{bottom:657.175049px;}
.y127{bottom:657.549133px;}
.yfa{bottom:660.701111px;}
.y19b{bottom:666.736633px;}
.y4f{bottom:668.049133px;}
.y15f{bottom:670.458893px;}
.ycf{bottom:671.452789px;}
.ycd{bottom:672.175049px;}
.y126{bottom:672.549133px;}
.y23{bottom:674.112579px;}
.yf9{bottom:675.701111px;}
.y86{bottom:677.815063px;}
.y19a{bottom:681.736633px;}
.y15e{bottom:685.458893px;}
.y4e{bottom:686.799133px;}
.ycb{bottom:689.519852px;}
.y85{bottom:692.815063px;}
.y22{bottom:692.862762px;}
.yf8{bottom:693.045319px;}
.y199{bottom:696.736633px;}
.y11a{bottom:697.889420px;}
.y15d{bottom:700.458893px;}
.ycc{bottom:703.797592px;}
.yca{bottom:704.519852px;}
.y4d{bottom:705.549133px;}
.y82{bottom:710.159409px;}
.yf7{bottom:710.390121px;}
.y21{bottom:711.612762px;}
.y198{bottom:711.736633px;}
.y119{bottom:712.889420px;}
.yf5{bottom:714.179260px;}
.y15c{bottom:715.458893px;}
.yc9{bottom:721.864655px;}
.y4c{bottom:724.299133px;}
.y84{bottom:724.437149px;}
.y81{bottom:725.159409px;}
.y197{bottom:726.736633px;}
.y118{bottom:727.889420px;}
.yf6{bottom:728.457138px;}
.yf4{bottom:729.179260px;}
.y20{bottom:730.362762px;}
.y15b{bottom:730.458893px;}
.yc7{bottom:739.221909px;}
.y83{bottom:739.437149px;}
.y80{bottom:740.159409px;}
.y196{bottom:741.736633px;}
.y117{bottom:742.889420px;}
.y4b{bottom:743.049133px;}
.y15a{bottom:745.458893px;}
.yf3{bottom:746.524063px;}
.y1f{bottom:749.112762px;}
.yc8{bottom:753.499649px;}
.yc6{bottom:754.221909px;}
.y195{bottom:756.736633px;}
.y7d{bottom:757.504028px;}
.y116{bottom:757.889420px;}
.y159{bottom:760.458893px;}
.y4a{bottom:761.799133px;}
.yf2{bottom:763.868866px;}
.yf0{bottom:767.658005px;}
.y1e{bottom:767.862762px;}
.yc4{bottom:771.566711px;}
.y194{bottom:771.736633px;}
.y7f{bottom:771.781952px;}
.y7c{bottom:772.504028px;}
.y115{bottom:772.889374px;}
.y158{bottom:775.458893px;}
.y49{bottom:780.549133px;}
.yf1{bottom:781.935791px;}
.yef{bottom:782.657959px;}
.yc5{bottom:785.844635px;}
.yc3{bottom:786.566711px;}
.y1d{bottom:786.612579px;}
.y193{bottom:786.736633px;}
.y7e{bottom:786.781952px;}
.y7b{bottom:787.504028px;}
.y114{bottom:787.889374px;}
.y157{bottom:790.458893px;}
.y48{bottom:799.299133px;}
.yee{bottom:800.002808px;}
.y113{bottom:802.889374px;}
.yc2{bottom:803.911468px;}
.y78{bottom:804.848968px;}
.y156{bottom:805.458893px;}
.y11b{bottom:814.971405px;}
.yed{bottom:817.347565px;}
.y112{bottom:817.889374px;}
.y47{bottom:818.049133px;}
.y7a{bottom:819.126709px;}
.y77{bottom:819.848968px;}
.y155{bottom:820.458893px;}
.y192{bottom:820.486633px;}
.yeb{bottom:821.136749px;}
.yc0{bottom:821.268768px;}
.y31{bottom:831.878357px;}
.y79{bottom:834.126709px;}
.y76{bottom:834.848968px;}
.yec{bottom:835.414673px;}
.y154{bottom:835.458893px;}
.yc1{bottom:835.546509px;}
.yea{bottom:836.136749px;}
.ybf{bottom:836.268768px;}
.y46{bottom:836.799133px;}
.y30{bottom:846.878357px;}
.y153{bottom:850.458893px;}
.y73{bottom:852.193817px;}
.ye9{bottom:853.481506px;}
.ybd{bottom:853.613525px;}
.y45{bottom:855.549133px;}
.y152{bottom:865.458893px;}
.y75{bottom:866.471558px;}
.y72{bottom:867.193817px;}
.ybe{bottom:867.891266px;}
.ybc{bottom:868.613525px;}
.ye8{bottom:870.826355px;}
.y44{bottom:874.299133px;}
.ye6{bottom:874.615540px;}
.y191{bottom:876.736633px;}
.y151{bottom:880.458893px;}
.y74{bottom:881.471558px;}
.y71{bottom:882.193817px;}
.ybb{bottom:885.958374px;}
.ye7{bottom:888.893280px;}
.ye5{bottom:889.615540px;}
.y36{bottom:890.456726px;}
.y190{bottom:891.736633px;}
.y43{bottom:893.049133px;}
.y150{bottom:895.458893px;}
.y6f{bottom:899.538574px;}
.yba{bottom:903.315582px;}
.y18f{bottom:906.736633px;}
.ye4{bottom:906.960297px;}
.y35{bottom:909.206726px;}
.y14f{bottom:910.458893px;}
.y42{bottom:911.799133px;}
.y6e{bottom:914.538574px;}
.y70{bottom:915.260742px;}
.yb9{bottom:918.315582px;}
.y18e{bottom:921.736633px;}
.ye3{bottom:924.305145px;}
.y14e{bottom:925.458893px;}
.ye1{bottom:928.094238px;}
.y41{bottom:930.549133px;}
.y6d{bottom:932.605499px;}
.yb8{bottom:935.660431px;}
.y18d{bottom:936.736633px;}
.y14d{bottom:940.458893px;}
.ye2{bottom:942.371979px;}
.ye0{bottom:943.094238px;}
.y40{bottom:949.299133px;}
.y6c{bottom:949.950256px;}
.yb7{bottom:950.660431px;}
.y18c{bottom:951.736633px;}
.y34{bottom:953.043274px;}
.y14c{bottom:955.458893px;}
.ydf{bottom:960.439087px;}
.y18b{bottom:966.736633px;}
.y6a{bottom:967.295105px;}
.yb6{bottom:968.005188px;}
.y3f{bottom:968.049133px;}
.y124{bottom:969.736633px;}
.y14b{bottom:970.458893px;}
.yde{bottom:977.783844px;}
.y33{bottom:980.043274px;}
.y6b{bottom:981.573029px;}
.y18a{bottom:981.736633px;}
.y69{bottom:982.295105px;}
.y123{bottom:984.736633px;}
.yb4{bottom:985.362488px;}
.y14a{bottom:985.458893px;}
.y3e{bottom:986.799133px;}
.ydd{bottom:995.850769px;}
.ydc{bottom:996.573029px;}
.y189{bottom:996.736633px;}
.y68{bottom:999.639862px;}
.yb5{bottom:999.640228px;}
.y122{bottom:999.736633px;}
.yb3{bottom:1000.362488px;}
.y149{bottom:1000.458893px;}
.y3d{bottom:1005.549133px;}
.y32{bottom:1007.043274px;}
.y188{bottom:1011.736633px;}
.y1c1{bottom:1012.458893px;}
.ydb{bottom:1013.917786px;}
.y121{bottom:1014.736633px;}
.y148{bottom:1015.458893px;}
.y67{bottom:1016.984711px;}
.yb1{bottom:1017.707245px;}
.y3c{bottom:1024.299133px;}
.y187{bottom:1026.736633px;}
.y1c0{bottom:1027.458893px;}
.y120{bottom:1029.736633px;}
.y147{bottom:1030.458893px;}
.yda{bottom:1031.262634px;}
.yb2{bottom:1031.985168px;}
.yb0{bottom:1032.707245px;}
.y66{bottom:1034.329468px;}
.y186{bottom:1041.736633px;}
.y3b{bottom:1043.049133px;}
.y11f{bottom:1044.736633px;}
.y146{bottom:1045.458893px;}
.yd9{bottom:1050.051727px;}
.yaf{bottom:1050.795593px;}
.y64{bottom:1053.140076px;}
.y185{bottom:1056.736633px;}
.y11e{bottom:1059.736633px;}
.y145{bottom:1060.458893px;}
.y3a{bottom:1061.799133px;}
.y65{bottom:1068.127625px;}
.yae{bottom:1068.139984px;}
.y63{bottom:1068.140076px;}
.y11d{bottom:1074.736633px;}
.y1{bottom:1075.294006px;}
.y144{bottom:1075.458893px;}
.y39{bottom:1080.549133px;}
.yad{bottom:1085.484192px;}
.y62{bottom:1085.484283px;}
.y125{bottom:1086.818665px;}
.y11c{bottom:1089.736633px;}
.y143{bottom:1090.458893px;}
.y3{bottom:1109.543884px;}
.y38{bottom:1125.713104px;}
.y2{bottom:1126.031982px;}
.h8{height:24.805224px;}
.h7{height:35.436035px;}
.h13{height:35.485840px;}
.h6{height:36.855469px;}
.h1c{height:37.353699px;}
.h15{height:38.324341px;}
.h18{height:38.324432px;}
.h19{height:38.324435px;}
.h17{height:38.324524px;}
.h14{height:38.324707px;}
.h1b{height:38.324890px;}
.h1a{height:38.325073px;}
.h5{height:41.689453px;}
.h10{height:45.000000px;}
.h3{height:48.297000px;}
.h11{height:49.113000px;}
.h12{height:50.027344px;}
.hf{height:50.439000px;}
.h16{height:53.805000px;}
.h2{height:55.404000px;}
.ha{height:57.780000px;}
.h9{height:59.340000px;}
.he{height:64.680000px;}
.hc{height:64.824000px;}
.h4{height:71.208000px;}
.hd{height:72.000000px;}
.hb{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x1{left:85.181849px;}
.x5{left:90.972599px;}
.x9{left:93.543303px;}
.x6{left:97.795200px;}
.x1b{left:102.047253px;}
.x10{left:181.118855px;}
.x17{left:220.174507px;}
.x16{left:246.595207px;}
.x15{left:254.341507px;}
.x11{left:284.661758px;}
.xd{left:296.385750px;}
.x18{left:304.974289px;}
.x12{left:376.718239px;}
.x19{left:386.216995px;}
.x14{left:417.595047px;}
.xe{left:450.381729px;}
.x3{left:459.850342px;}
.xa{left:468.272690px;}
.x4{left:476.858231px;}
.xb{left:481.633209px;}
.x1a{left:484.724396px;}
.x13{left:560.831406px;}
.xf{left:610.752731px;}
.x8{left:615.452087px;}
.x1c{left:714.565521px;}
.xc{left:720.621597px;}
.x7{left:755.658737px;}
@media print{
.v1{vertical-align:-18.133301pt;}
.v5{vertical-align:-11.333333pt;}
.v4{vertical-align:-2.567383pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.567708pt;}
.v2{vertical-align:21.333333pt;}
.ls5{letter-spacing:-1.973333pt;}
.ls13{letter-spacing:-1.677333pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000011pt;}
.ls12{letter-spacing:0.000015pt;}
.ls2{letter-spacing:0.000033pt;}
.ls1{letter-spacing:0.000034pt;}
.ls15{letter-spacing:0.000036pt;}
.lsc{letter-spacing:0.000052pt;}
.ls9{letter-spacing:0.000195pt;}
.lsb{letter-spacing:0.000517pt;}
.ls6{letter-spacing:0.000518pt;}
.ls7{letter-spacing:0.000579pt;}
.lsd{letter-spacing:0.000680pt;}
.lsa{letter-spacing:0.009080pt;}
.ls3{letter-spacing:3.546667pt;}
.ls16{letter-spacing:13.962667pt;}
.ls0{letter-spacing:24.273059pt;}
.ls8{letter-spacing:47.504603pt;}
.lsf{letter-spacing:283.754102pt;}
.ls11{letter-spacing:366.838412pt;}
.ls10{letter-spacing:567.874703pt;}
.ws1f{word-spacing:-53.333333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.928000pt;}
.ws3{word-spacing:-11.360000pt;}
.ws67{word-spacing:-11.333333pt;}
.ws1e{word-spacing:-11.088000pt;}
.ws8{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws7{word-spacing:-10.240000pt;}
.ws20{word-spacing:-9.157333pt;}
.ws0{word-spacing:-8.885333pt;}
.ws9c{word-spacing:-8.704000pt;}
.ws4{word-spacing:-7.933333pt;}
.ws9{word-spacing:-7.728000pt;}
.ws19{word-spacing:-6.666667pt;}
.ws6e{word-spacing:-5.666667pt;}
.ws90{word-spacing:-5.122667pt;}
.wsf3{word-spacing:-4.352000pt;}
.ws96{word-spacing:-4.053333pt;}
.ws8c{word-spacing:-3.989333pt;}
.wse5{word-spacing:-3.944000pt;}
.ws2d{word-spacing:-3.733333pt;}
.wsa{word-spacing:-3.546667pt;}
.wsbc{word-spacing:-3.400000pt;}
.ws4e{word-spacing:-3.360000pt;}
.wsb2{word-spacing:-3.200000pt;}
.wsaf{word-spacing:-3.040000pt;}
.wsd{word-spacing:-2.453333pt;}
.wsdf{word-spacing:-2.402667pt;}
.wsc4{word-spacing:-2.266667pt;}
.ws26{word-spacing:-2.240000pt;}
.wseb{word-spacing:-2.221333pt;}
.ws58{word-spacing:-2.080000pt;}
.ws6f{word-spacing:-1.994667pt;}
.ws61{word-spacing:-1.973333pt;}
.ws8b{word-spacing:-1.949333pt;}
.ws1d{word-spacing:-1.920000pt;}
.wsa3{word-spacing:-1.722667pt;}
.ws18{word-spacing:-1.706667pt;}
.ws11{word-spacing:-1.600000pt;}
.ws3f{word-spacing:-1.440000pt;}
.ws30{word-spacing:-1.386667pt;}
.wsc3{word-spacing:-1.314667pt;}
.ws86{word-spacing:-1.280000pt;}
.wse8{word-spacing:-1.269333pt;}
.ws39{word-spacing:-1.226667pt;}
.ws3e{word-spacing:-1.173333pt;}
.wsd4{word-spacing:-1.133333pt;}
.ws37{word-spacing:-1.066667pt;}
.ws85{word-spacing:-0.906667pt;}
.ws8a{word-spacing:-0.816000pt;}
.ws4f{word-spacing:-0.800000pt;}
.wsf{word-spacing:-0.693333pt;}
.wsef{word-spacing:-0.680000pt;}
.wsad{word-spacing:-0.640000pt;}
.ws1a{word-spacing:-0.586667pt;}
.wse6{word-spacing:-0.544000pt;}
.ws75{word-spacing:-0.426667pt;}
.ws57{word-spacing:-0.373333pt;}
.ws63{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.256000pt;}
.wsf7{word-spacing:-0.136000pt;}
.ws32{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.053333pt;}
.ws16{word-spacing:-0.045333pt;}
.wsb{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.106667pt;}
.wsd2{word-spacing:0.272000pt;}
.ws3c{word-spacing:0.373333pt;}
.wsb1{word-spacing:0.426667pt;}
.wscd{word-spacing:0.453333pt;}
.wscc{word-spacing:0.498667pt;}
.ws2e{word-spacing:0.533333pt;}
.wsc8{word-spacing:0.544000pt;}
.wsc2{word-spacing:0.589333pt;}
.ws52{word-spacing:0.746667pt;}
.wsae{word-spacing:0.960000pt;}
.ws43{word-spacing:1.013333pt;}
.ws66{word-spacing:1.066667pt;}
.wse2{word-spacing:1.133333pt;}
.wsd7{word-spacing:1.360000pt;}
.ws5a{word-spacing:1.386667pt;}
.ws81{word-spacing:1.440000pt;}
.ws1b{word-spacing:1.546667pt;}
.ws5b{word-spacing:1.600000pt;}
.ws8d{word-spacing:1.632000pt;}
.ws87{word-spacing:1.653333pt;}
.ws40{word-spacing:1.706667pt;}
.wsce{word-spacing:1.813333pt;}
.wsa6{word-spacing:1.858667pt;}
.ws82{word-spacing:1.920000pt;}
.ws8e{word-spacing:2.130667pt;}
.ws27{word-spacing:2.133333pt;}
.wsa1{word-spacing:2.266667pt;}
.ws28{word-spacing:2.293333pt;}
.ws5d{word-spacing:2.346667pt;}
.wsa9{word-spacing:2.357333pt;}
.wsab{word-spacing:2.400000pt;}
.wsd9{word-spacing:2.448000pt;}
.ws15{word-spacing:2.506667pt;}
.ws74{word-spacing:2.613333pt;}
.ws21{word-spacing:2.674667pt;}
.ws5f{word-spacing:2.773333pt;}
.wsf4{word-spacing:2.856000pt;}
.ws41{word-spacing:2.880000pt;}
.ws3a{word-spacing:2.933333pt;}
.wsc7{word-spacing:2.946667pt;}
.wsaa{word-spacing:3.037333pt;}
.ws84{word-spacing:3.040000pt;}
.ws8f{word-spacing:3.082667pt;}
.ws4a{word-spacing:3.146667pt;}
.ws83{word-spacing:3.253333pt;}
.ws92{word-spacing:3.360000pt;}
.ws80{word-spacing:3.413333pt;}
.wsa2{word-spacing:3.445333pt;}
.ws4c{word-spacing:3.466667pt;}
.ws5c{word-spacing:3.520000pt;}
.ws14{word-spacing:3.626667pt;}
.ws3d{word-spacing:3.680000pt;}
.wsa4{word-spacing:3.944000pt;}
.wscf{word-spacing:3.989333pt;}
.ws59{word-spacing:4.000000pt;}
.ws2a{word-spacing:4.053333pt;}
.ws24{word-spacing:4.160000pt;}
.ws23{word-spacing:4.213333pt;}
.wsf5{word-spacing:4.216000pt;}
.ws50{word-spacing:4.373333pt;}
.wsd1{word-spacing:4.442667pt;}
.ws99{word-spacing:4.533333pt;}
.wsf0{word-spacing:4.624000pt;}
.ws9b{word-spacing:4.640000pt;}
.ws2c{word-spacing:4.693333pt;}
.wse1{word-spacing:4.714667pt;}
.ws31{word-spacing:4.746667pt;}
.wsda{word-spacing:4.760000pt;}
.ws36{word-spacing:4.906667pt;}
.wsac{word-spacing:4.960000pt;}
.ws48{word-spacing:5.066667pt;}
.wsf6{word-spacing:5.077333pt;}
.ws2b{word-spacing:5.120000pt;}
.ws49{word-spacing:5.226667pt;}
.wse{word-spacing:5.333333pt;}
.ws10{word-spacing:5.386667pt;}
.ws4d{word-spacing:5.440000pt;}
.wse3{word-spacing:5.530667pt;}
.wsed{word-spacing:5.576000pt;}
.wsd0{word-spacing:5.757333pt;}
.wsb8{word-spacing:5.760000pt;}
.wse0{word-spacing:5.848000pt;}
.ws76{word-spacing:5.866667pt;}
.wsc6{word-spacing:5.893333pt;}
.ws4b{word-spacing:5.973333pt;}
.ws89{word-spacing:6.026667pt;}
.wsee{word-spacing:6.210667pt;}
.wsb9{word-spacing:6.293333pt;}
.wsca{word-spacing:6.392000pt;}
.ws93{word-spacing:6.506667pt;}
.ws9f{word-spacing:6.560000pt;}
.wsa8{word-spacing:6.664000pt;}
.ws9d{word-spacing:6.666667pt;}
.wsbf{word-spacing:6.709333pt;}
.wsb7{word-spacing:6.880000pt;}
.ws17{word-spacing:6.933333pt;}
.wsd8{word-spacing:7.026667pt;}
.ws46{word-spacing:7.093333pt;}
.wsbb{word-spacing:7.200000pt;}
.wsa5{word-spacing:7.208000pt;}
.ws34{word-spacing:7.253333pt;}
.ws9a{word-spacing:7.360000pt;}
.wsb6{word-spacing:7.520000pt;}
.wsc5{word-spacing:7.525333pt;}
.wsa0{word-spacing:7.573333pt;}
.ws25{word-spacing:7.680000pt;}
.ws22{word-spacing:7.733333pt;}
.ws64{word-spacing:7.786667pt;}
.wsc9{word-spacing:7.842667pt;}
.wscb{word-spacing:7.888000pt;}
.wsd5{word-spacing:7.933333pt;}
.ws53{word-spacing:8.160000pt;}
.wsa7{word-spacing:8.296000pt;}
.ws3b{word-spacing:8.320000pt;}
.ws51{word-spacing:8.373333pt;}
.wsdc{word-spacing:8.386667pt;}
.wsc{word-spacing:8.426667pt;}
.wsbe{word-spacing:8.477333pt;}
.ws88{word-spacing:8.480000pt;}
.ws12{word-spacing:8.586667pt;}
.ws60{word-spacing:8.640000pt;}
.ws79{word-spacing:8.853333pt;}
.wsb3{word-spacing:9.013333pt;}
.wsdd{word-spacing:9.066667pt;}
.ws98{word-spacing:9.386667pt;}
.ws45{word-spacing:9.440000pt;}
.ws95{word-spacing:9.546667pt;}
.ws42{word-spacing:9.760000pt;}
.ws2f{word-spacing:9.813333pt;}
.ws78{word-spacing:10.026667pt;}
.wsd6{word-spacing:10.245333pt;}
.ws29{word-spacing:10.613333pt;}
.ws65{word-spacing:10.826667pt;}
.wsf1{word-spacing:11.152000pt;}
.wsc0{word-spacing:11.288000pt;}
.wse9{word-spacing:11.650667pt;}
.wsb4{word-spacing:11.680000pt;}
.wsf8{word-spacing:12.058667pt;}
.ws77{word-spacing:12.160000pt;}
.wsba{word-spacing:12.586667pt;}
.ws9e{word-spacing:12.960000pt;}
.ws33{word-spacing:13.173333pt;}
.wsec{word-spacing:13.237333pt;}
.wsb0{word-spacing:13.493333pt;}
.wsc1{word-spacing:13.736000pt;}
.ws47{word-spacing:14.506667pt;}
.wsb5{word-spacing:14.666667pt;}
.ws94{word-spacing:15.040000pt;}
.wsd3{word-spacing:15.050667pt;}
.ws55{word-spacing:15.200000pt;}
.ws38{word-spacing:15.520000pt;}
.ws35{word-spacing:15.573333pt;}
.wsdb{word-spacing:16.138667pt;}
.wsea{word-spacing:16.274667pt;}
.ws97{word-spacing:16.640000pt;}
.ws91{word-spacing:17.272000pt;}
.ws13{word-spacing:17.653333pt;}
.ws62{word-spacing:17.973333pt;}
.wse4{word-spacing:17.997333pt;}
.ws44{word-spacing:18.400000pt;}
.wsbd{word-spacing:19.221333pt;}
.ws54{word-spacing:20.693333pt;}
.wsf2{word-spacing:21.714667pt;}
.ws56{word-spacing:24.320000pt;}
.wse7{word-spacing:35.813333pt;}
.wsde{word-spacing:41.434667pt;}
.ws6c{word-spacing:193.168451pt;}
.ws6d{word-spacing:206.995117pt;}
.ws6a{word-spacing:240.992547pt;}
.ws6b{word-spacing:265.613915pt;}
.ws69{word-spacing:277.823568pt;}
.ws68{word-spacing:300.490234pt;}
.ws73{word-spacing:370.584473pt;}
.ws7f{word-spacing:416.242151pt;}
.ws7b{word-spacing:451.867060pt;}
.ws7d{word-spacing:453.136068pt;}
.ws7e{word-spacing:453.136393pt;}
.ws7c{word-spacing:464.469889pt;}
.ws70{word-spacing:469.637370pt;}
.ws7a{word-spacing:470.177646pt;}
.ws72{word-spacing:492.304036pt;}
.ws71{word-spacing:526.304036pt;}
._6{margin-left:-62.665588pt;}
._16{margin-left:-45.547201pt;}
._17{margin-left:-27.426126pt;}
._54{margin-left:-22.298201pt;}
._13{margin-left:-16.407422pt;}
._56{margin-left:-15.310905pt;}
._18{margin-left:-10.728001pt;}
._46{margin-left:-9.080394pt;}
._c{margin-left:-6.666687pt;}
._15{margin-left:-5.722666pt;}
._37{margin-left:-4.698667pt;}
._a{margin-left:-3.733333pt;}
._1{margin-left:-2.497546pt;}
._0{margin-left:-1.092533pt;}
._8{width:1.039200pt;}
._4{width:2.219271pt;}
._3{width:3.686163pt;}
._e{width:4.872455pt;}
._f{width:6.218666pt;}
._5{width:7.381334pt;}
._2{width:8.544000pt;}
._b{width:9.524219pt;}
._11{width:10.602667pt;}
._12{width:11.957333pt;}
._5b{width:13.729336pt;}
._d{width:14.730931pt;}
._9{width:16.530107pt;}
._38{width:17.699226pt;}
._55{width:19.266108pt;}
._57{width:20.192000pt;}
._60{width:21.565066pt;}
._5a{width:22.712000pt;}
._10{width:24.880000pt;}
._59{width:28.037892pt;}
._5d{width:29.811973pt;}
._14{width:33.772276pt;}
._58{width:34.731204pt;}
._5e{width:36.697333pt;}
._5f{width:39.158933pt;}
._62{width:43.320538pt;}
._5c{width:45.378667pt;}
._61{width:46.566398pt;}
._7{width:48.415992pt;}
._31{width:68.345608pt;}
._2a{width:70.884275pt;}
._51{width:74.250171pt;}
._4e{width:76.476237pt;}
._4c{width:82.385002pt;}
._4f{width:89.123669pt;}
._29{width:97.428663pt;}
._50{width:98.488073pt;}
._52{width:111.790335pt;}
._2b{width:126.314597pt;}
._34{width:128.812142pt;}
._4d{width:145.994151pt;}
._32{width:148.981996pt;}
._2c{width:178.662516pt;}
._2f{width:225.311930pt;}
._35{width:240.995280pt;}
._53{width:256.762171pt;}
._19{width:259.599568pt;}
._20{width:275.103568pt;}
._24{width:289.327744pt;}
._39{width:296.052817pt;}
._1b{width:301.210593pt;}
._30{width:305.233183pt;}
._26{width:320.919926pt;}
._1c{width:323.877289pt;}
._3e{width:325.250651pt;}
._44{width:327.514150pt;}
._43{width:342.569029pt;}
._27{width:343.586674pt;}
._4a{width:365.472393pt;}
._42{width:370.583984pt;}
._48{width:372.449646pt;}
._41{width:374.071483pt;}
._1e{width:377.586593pt;}
._3c{width:385.272036pt;}
._4b{width:388.139060pt;}
._1f{width:400.253341pt;}
._22{width:422.919926pt;}
._47{width:424.593084pt;}
._25{width:432.895458pt;}
._3d{width:452.135483pt;}
._45{width:459.706150pt;}
._40{width:462.199483pt;}
._3a{width:464.630365pt;}
._1a{width:466.180791pt;}
._2e{width:486.913034pt;}
._21{width:509.735458pt;}
._1d{width:517.306125pt;}
._3b{width:532.605370pt;}
._36{width:625.561796pt;}
._28{width:734.655026pt;}
._33{width:766.972393pt;}
._2d{width:769.469939pt;}
._23{width:836.743576pt;}
._3f{width:984.683606pt;}
._49{width:1024.469397pt;}
.fs4{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:54.220133pt;}
.y1c{bottom:98.267598pt;}
.y60{bottom:98.267731pt;}
.y184{bottom:102.630137pt;}
.y10{bottom:110.488129pt;}
.y1bf{bottom:112.654795pt;}
.y183{bottom:115.963470pt;}
.y1b{bottom:116.134267pt;}
.y142{bottom:124.487203pt;}
.y1be{bottom:125.988129pt;}
.yf{bottom:127.154795pt;}
.y182{bottom:129.296804pt;}
.y1a{bottom:131.600932pt;}
.y141{bottom:137.820536pt;}
.y1bd{bottom:139.321462pt;}
.y181{bottom:142.630137pt;}
.ye{bottom:143.821462pt;}
.y19{bottom:144.934265pt;}
.yac{bottom:150.530933pt;}
.y1bc{bottom:152.654795pt;}
.y180{bottom:155.963470pt;}
.yd{bottom:160.488129pt;}
.y18{bottom:162.800933pt;}
.yab{bottom:163.864267pt;}
.y1bb{bottom:165.988129pt;}
.y140{bottom:167.153870pt;}
.y17f{bottom:169.296804pt;}
.yc{bottom:177.154805pt;}
.y17{bottom:178.267598pt;}
.yaa{bottom:179.281331pt;}
.y1ba{bottom:179.321472pt;}
.y13f{bottom:180.487203pt;}
.y17e{bottom:182.630127pt;}
.y16{bottom:191.600932pt;}
.y1b9{bottom:192.654805pt;}
.y13e{bottom:193.820536pt;}
.yb{bottom:193.821472pt;}
.ya8{bottom:194.698933pt;}
.y17d{bottom:195.963460pt;}
.y15{bottom:204.934265pt;}
.y1b8{bottom:205.988139pt;}
.y13d{bottom:207.153870pt;}
.ya9{bottom:207.390400pt;}
.ya7{bottom:208.032267pt;}
.y17c{bottom:209.296794pt;}
.ya{bottom:210.488139pt;}
.y1b7{bottom:219.321472pt;}
.y13c{bottom:220.487203pt;}
.y17b{bottom:222.630127pt;}
.y14{bottom:222.800924pt;}
.ya5{bottom:223.449870pt;}
.y9{bottom:227.154805pt;}
.y1b6{bottom:232.654805pt;}
.y17a{bottom:235.963460pt;}
.ya4{bottom:236.783203pt;}
.y13{bottom:242.800924pt;}
.y8{bottom:243.821472pt;}
.y1b5{bottom:245.988139pt;}
.y179{bottom:249.296794pt;}
.ya6{bottom:249.474670pt;}
.y13b{bottom:249.820536pt;}
.ya3{bottom:250.116536pt;}
.y111{bottom:250.639200pt;}
.y1b4{bottom:259.321472pt;}
.y7{bottom:260.488139pt;}
.y178{bottom:262.630127pt;}
.y110{bottom:263.972533pt;}
.y12{bottom:264.934265pt;}
.ya2{bottom:265.534139pt;}
.y1b3{bottom:272.654805pt;}
.y177{bottom:275.963460pt;}
.y6{bottom:277.154805pt;}
.y10f{bottom:277.305867pt;}
.y11{bottom:278.267598pt;}
.ya0{bottom:280.951742pt;}
.y13a{bottom:283.154805pt;}
.y1b2{bottom:285.988139pt;}
.y176{bottom:289.296794pt;}
.y10e{bottom:290.639200pt;}
.ya1{bottom:293.643209pt;}
.y5{bottom:293.821472pt;}
.y9f{bottom:294.285075pt;}
.y139{bottom:296.488139pt;}
.y1b1{bottom:299.321472pt;}
.y175{bottom:302.630127pt;}
.y10d{bottom:303.972533pt;}
.y9d{bottom:309.702657pt;}
.y5f{bottom:310.488139pt;}
.y1b0{bottom:312.654805pt;}
.y174{bottom:315.963460pt;}
.y10c{bottom:317.305867pt;}
.y9c{bottom:323.035990pt;}
.y138{bottom:325.821472pt;}
.y1af{bottom:325.988139pt;}
.y4{bottom:327.154805pt;}
.y173{bottom:329.296794pt;}
.y10b{bottom:330.639200pt;}
.y9e{bottom:335.727458pt;}
.y9b{bottom:336.369324pt;}
.y137{bottom:339.154805pt;}
.y1ae{bottom:339.321472pt;}
.y172{bottom:342.630127pt;}
.y5e{bottom:343.821452pt;}
.y10a{bottom:343.972533pt;}
.y9a{bottom:351.786947pt;}
.y136{bottom:352.488118pt;}
.y1ad{bottom:352.654785pt;}
.y171{bottom:355.963460pt;}
.y109{bottom:357.305867pt;}
.y5b{bottom:360.488118pt;}
.y135{bottom:365.821452pt;}
.y1ac{bottom:365.988118pt;}
.y98{bottom:367.204549pt;}
.y170{bottom:369.296794pt;}
.y108{bottom:373.364950pt;}
.y5d{bottom:377.154785pt;}
.y134{bottom:379.154785pt;}
.y1ab{bottom:379.321452pt;}
.y99{bottom:379.895996pt;}
.y97{bottom:380.537882pt;}
.y16f{bottom:382.630127pt;}
.y2f{bottom:383.211344pt;}
.y107{bottom:389.424398pt;}
.y133{bottom:392.488118pt;}
.y1aa{bottom:392.654785pt;}
.y5c{bottom:393.821452pt;}
.y95{bottom:395.955485pt;}
.y16e{bottom:395.963460pt;}
.y106{bottom:405.483887pt;}
.y132{bottom:405.821452pt;}
.y1a9{bottom:405.988118pt;}
.y94{bottom:409.288818pt;}
.y16d{bottom:409.296794pt;}
.y5a{bottom:410.488118pt;}
.y2e{bottom:415.878011pt;}
.y1a8{bottom:419.321452pt;}
.y105{bottom:420.901449pt;}
.y96{bottom:421.980265pt;}
.y93{bottom:422.622152pt;}
.y16c{bottom:422.630127pt;}
.y59{bottom:427.154785pt;}
.y2d{bottom:432.544678pt;}
.y1a7{bottom:432.654785pt;}
.y131{bottom:435.154785pt;}
.y16b{bottom:435.963460pt;}
.y104{bottom:436.961060pt;}
.y92{bottom:438.039714pt;}
.y58{bottom:443.821452pt;}
.y1a6{bottom:445.988118pt;}
.y130{bottom:448.488118pt;}
.y2c{bottom:449.211182pt;}
.y16a{bottom:449.296794pt;}
.y103{bottom:453.020549pt;}
.y90{bottom:453.457316pt;}
.yd8{bottom:453.712524pt;}
.y1a5{bottom:459.321452pt;}
.y57{bottom:460.488118pt;}
.y12f{bottom:461.821452pt;}
.y169{bottom:462.630127pt;}
.y2b{bottom:465.877848pt;}
.y91{bottom:466.148804pt;}
.y8f{bottom:466.790649pt;}
.yd7{bottom:467.045858pt;}
.y102{bottom:469.099080pt;}
.y1a4{bottom:472.654785pt;}
.y12e{bottom:475.154785pt;}
.y168{bottom:475.963460pt;}
.y56{bottom:477.154785pt;}
.yd6{bottom:480.379191pt;}
.y8d{bottom:482.208252pt;}
.y101{bottom:482.432414pt;}
.y2a{bottom:482.544515pt;}
.y61{bottom:483.834676pt;}
.y100{bottom:485.158122pt;}
.y1a3{bottom:485.988118pt;}
.y12d{bottom:488.488118pt;}
.y167{bottom:489.296794pt;}
.y55{bottom:493.821452pt;}
.y8c{bottom:495.541585pt;}
.yd5{bottom:495.796387pt;}
.yff{bottom:498.491455pt;}
.y29{bottom:499.211182pt;}
.y1a2{bottom:499.321452pt;}
.y12c{bottom:501.821452pt;}
.y166{bottom:502.630127pt;}
.y8e{bottom:508.233073pt;}
.y8b{bottom:508.874919pt;}
.y54{bottom:510.488118pt;}
.yd4{bottom:511.225057pt;}
.yfe{bottom:511.824788pt;}
.y1a1{bottom:512.654785pt;}
.y28{bottom:515.877848pt;}
.y165{bottom:515.963460pt;}
.yd3{bottom:524.558390pt;}
.y8a{bottom:524.953451pt;}
.y1a0{bottom:525.988118pt;}
.y53{bottom:527.154785pt;}
.yfd{bottom:527.241984pt;}
.y164{bottom:529.296794pt;}
.y12b{bottom:531.154785pt;}
.y27{bottom:532.544515pt;}
.y89{bottom:538.286784pt;}
.y19f{bottom:539.321452pt;}
.yd2{bottom:539.975993pt;}
.yfc{bottom:540.575317pt;}
.y163{bottom:542.630127pt;}
.y52{bottom:543.821452pt;}
.y12a{bottom:544.488118pt;}
.y26{bottom:549.211182pt;}
.y19e{bottom:552.654785pt;}
.yd1{bottom:553.309326pt;}
.y88{bottom:553.704020pt;}
.y162{bottom:555.963460pt;}
.y129{bottom:557.821452pt;}
.y51{bottom:560.488118pt;}
.y25{bottom:565.877848pt;}
.y19d{bottom:565.988118pt;}
.yd0{bottom:568.726929pt;}
.y87{bottom:569.121216pt;}
.y161{bottom:569.296794pt;}
.y128{bottom:571.154785pt;}
.yfb{bottom:573.956543pt;}
.y50{bottom:577.154785pt;}
.y19c{bottom:579.321452pt;}
.y24{bottom:582.544515pt;}
.y160{bottom:582.630127pt;}
.yce{bottom:584.155599pt;}
.y127{bottom:584.488118pt;}
.yfa{bottom:587.289876pt;}
.y19b{bottom:592.654785pt;}
.y4f{bottom:593.821452pt;}
.y15f{bottom:595.963460pt;}
.ycf{bottom:596.846924pt;}
.ycd{bottom:597.488932pt;}
.y126{bottom:597.821452pt;}
.y23{bottom:599.211182pt;}
.yf9{bottom:600.623210pt;}
.y86{bottom:602.502279pt;}
.y19a{bottom:605.988118pt;}
.y15e{bottom:609.296794pt;}
.y4e{bottom:610.488118pt;}
.ycb{bottom:612.906535pt;}
.y85{bottom:615.835612pt;}
.y22{bottom:615.878011pt;}
.yf8{bottom:616.040283pt;}
.y199{bottom:619.321452pt;}
.y11a{bottom:620.346151pt;}
.y15d{bottom:622.630127pt;}
.ycc{bottom:625.597860pt;}
.yca{bottom:626.239868pt;}
.y4d{bottom:627.154785pt;}
.y82{bottom:631.252808pt;}
.yf7{bottom:631.457886pt;}
.y21{bottom:632.544678pt;}
.y198{bottom:632.654785pt;}
.y119{bottom:633.679484pt;}
.yf5{bottom:634.826009pt;}
.y15c{bottom:635.963460pt;}
.yc9{bottom:641.657471pt;}
.y4c{bottom:643.821452pt;}
.y84{bottom:643.944132pt;}
.y81{bottom:644.586141pt;}
.y197{bottom:645.988118pt;}
.y118{bottom:647.012817pt;}
.yf6{bottom:647.517456pt;}
.yf4{bottom:648.159342pt;}
.y20{bottom:649.211344pt;}
.y15b{bottom:649.296794pt;}
.yc7{bottom:657.086141pt;}
.y83{bottom:657.277466pt;}
.y80{bottom:657.919474pt;}
.y196{bottom:659.321452pt;}
.y117{bottom:660.346151pt;}
.y4b{bottom:660.488118pt;}
.y15a{bottom:662.630127pt;}
.yf3{bottom:663.576945pt;}
.y1f{bottom:665.878011pt;}
.yc8{bottom:669.777466pt;}
.yc6{bottom:670.419474pt;}
.y195{bottom:672.654785pt;}
.y7d{bottom:673.336914pt;}
.y116{bottom:673.679484pt;}
.y159{bottom:675.963460pt;}
.y4a{bottom:677.154785pt;}
.yf2{bottom:678.994548pt;}
.yf0{bottom:682.362671pt;}
.y1e{bottom:682.544678pt;}
.yc4{bottom:685.837077pt;}
.y194{bottom:685.988118pt;}
.y7f{bottom:686.028402pt;}
.y7c{bottom:686.670247pt;}
.y115{bottom:687.012777pt;}
.y158{bottom:689.296794pt;}
.y49{bottom:693.821452pt;}
.yf1{bottom:695.054036pt;}
.yef{bottom:695.695964pt;}
.yc5{bottom:698.528564pt;}
.yc3{bottom:699.170410pt;}
.y1d{bottom:699.211182pt;}
.y193{bottom:699.321452pt;}
.y7e{bottom:699.361735pt;}
.y7b{bottom:700.003581pt;}
.y114{bottom:700.346110pt;}
.y157{bottom:702.630127pt;}
.y48{bottom:710.488118pt;}
.yee{bottom:711.113607pt;}
.y113{bottom:713.679443pt;}
.yc2{bottom:714.587972pt;}
.y78{bottom:715.421305pt;}
.y156{bottom:715.963460pt;}
.y11b{bottom:724.419027pt;}
.yed{bottom:726.531169pt;}
.y112{bottom:727.012777pt;}
.y47{bottom:727.154785pt;}
.y7a{bottom:728.112630pt;}
.y77{bottom:728.754639pt;}
.y155{bottom:729.296794pt;}
.y192{bottom:729.321452pt;}
.yeb{bottom:729.899333pt;}
.yc0{bottom:730.016683pt;}
.y31{bottom:739.447428pt;}
.y79{bottom:741.445964pt;}
.y76{bottom:742.087972pt;}
.yec{bottom:742.590820pt;}
.y154{bottom:742.630127pt;}
.yc1{bottom:742.708008pt;}
.yea{bottom:743.232666pt;}
.ybf{bottom:743.350016pt;}
.y46{bottom:743.821452pt;}
.y30{bottom:752.780762pt;}
.y153{bottom:755.963460pt;}
.y73{bottom:757.505615pt;}
.ye9{bottom:758.650228pt;}
.ybd{bottom:758.767578pt;}
.y45{bottom:760.488118pt;}
.y152{bottom:769.296794pt;}
.y75{bottom:770.196940pt;}
.y72{bottom:770.838949pt;}
.ybe{bottom:771.458903pt;}
.ybc{bottom:772.100911pt;}
.ye8{bottom:774.067871pt;}
.y44{bottom:777.154785pt;}
.ye6{bottom:777.436035pt;}
.y191{bottom:779.321452pt;}
.y151{bottom:782.630127pt;}
.y74{bottom:783.530273pt;}
.y71{bottom:784.172282pt;}
.ybb{bottom:787.518555pt;}
.ye7{bottom:790.127360pt;}
.ye5{bottom:790.769368pt;}
.y36{bottom:791.517090pt;}
.y190{bottom:792.654785pt;}
.y43{bottom:793.821452pt;}
.y150{bottom:795.963460pt;}
.y6f{bottom:799.589844pt;}
.yba{bottom:802.947184pt;}
.y18f{bottom:805.988118pt;}
.ye4{bottom:806.186930pt;}
.y35{bottom:808.183757pt;}
.y14f{bottom:809.296794pt;}
.y42{bottom:810.488118pt;}
.y6e{bottom:812.923177pt;}
.y70{bottom:813.565104pt;}
.yb9{bottom:816.280518pt;}
.y18e{bottom:819.321452pt;}
.ye3{bottom:821.604574pt;}
.y14e{bottom:822.630127pt;}
.ye1{bottom:824.972656pt;}
.y41{bottom:827.154785pt;}
.y6d{bottom:828.982666pt;}
.yb8{bottom:831.698161pt;}
.y18d{bottom:832.654785pt;}
.y14d{bottom:835.963460pt;}
.ye2{bottom:837.663981pt;}
.ye0{bottom:838.305990pt;}
.y40{bottom:843.821452pt;}
.y6c{bottom:844.400228pt;}
.yb7{bottom:845.031494pt;}
.y18c{bottom:845.988118pt;}
.y34{bottom:847.149577pt;}
.y14c{bottom:849.296794pt;}
.ydf{bottom:853.723633pt;}
.y18b{bottom:859.321452pt;}
.y6a{bottom:859.817871pt;}
.yb6{bottom:860.449056pt;}
.y3f{bottom:860.488118pt;}
.y124{bottom:861.988118pt;}
.y14b{bottom:862.630127pt;}
.yde{bottom:869.141195pt;}
.y33{bottom:871.149577pt;}
.y6b{bottom:872.509359pt;}
.y18a{bottom:872.654785pt;}
.y69{bottom:873.151204pt;}
.y123{bottom:875.321452pt;}
.yb4{bottom:875.877767pt;}
.y14a{bottom:875.963460pt;}
.y3e{bottom:877.154785pt;}
.ydd{bottom:885.200684pt;}
.ydc{bottom:885.842692pt;}
.y189{bottom:885.988118pt;}
.y68{bottom:888.568766pt;}
.yb5{bottom:888.569092pt;}
.y122{bottom:888.654785pt;}
.yb3{bottom:889.211100pt;}
.y149{bottom:889.296794pt;}
.y3d{bottom:893.821452pt;}
.y32{bottom:895.149577pt;}
.y188{bottom:899.321452pt;}
.y1c1{bottom:899.963460pt;}
.ydb{bottom:901.260254pt;}
.y121{bottom:901.988118pt;}
.y148{bottom:902.630127pt;}
.y67{bottom:903.986410pt;}
.yb1{bottom:904.628662pt;}
.y3c{bottom:910.488118pt;}
.y187{bottom:912.654785pt;}
.y1c0{bottom:913.296794pt;}
.y120{bottom:915.321452pt;}
.y147{bottom:915.963460pt;}
.yda{bottom:916.677897pt;}
.yb2{bottom:917.320150pt;}
.yb0{bottom:917.961995pt;}
.y66{bottom:919.403971pt;}
.y186{bottom:925.988118pt;}
.y3b{bottom:927.154785pt;}
.y11f{bottom:928.654785pt;}
.y146{bottom:929.296794pt;}
.yd9{bottom:933.379313pt;}
.yaf{bottom:934.040527pt;}
.y64{bottom:936.124512pt;}
.y185{bottom:939.321452pt;}
.y11e{bottom:941.988118pt;}
.y145{bottom:942.630127pt;}
.y3a{bottom:943.821452pt;}
.y65{bottom:949.446777pt;}
.yae{bottom:949.457764pt;}
.y63{bottom:949.457845pt;}
.y11d{bottom:955.321452pt;}
.y1{bottom:955.816895pt;}
.y144{bottom:955.963460pt;}
.y39{bottom:960.488118pt;}
.yad{bottom:964.874837pt;}
.y62{bottom:964.874919pt;}
.y125{bottom:966.061035pt;}
.y11c{bottom:968.654785pt;}
.y143{bottom:969.296794pt;}
.y3{bottom:986.261230pt;}
.y38{bottom:1000.633870pt;}
.y2{bottom:1000.917318pt;}
.h8{height:22.049088pt;}
.h7{height:31.498698pt;}
.h13{height:31.542969pt;}
.h6{height:32.760417pt;}
.h1c{height:33.203288pt;}
.h15{height:34.066081pt;}
.h18{height:34.066162pt;}
.h19{height:34.066165pt;}
.h17{height:34.066243pt;}
.h14{height:34.066406pt;}
.h1b{height:34.066569pt;}
.h1a{height:34.066732pt;}
.h5{height:37.057292pt;}
.h10{height:40.000000pt;}
.h3{height:42.930667pt;}
.h11{height:43.656000pt;}
.h12{height:44.468750pt;}
.hf{height:44.834667pt;}
.h16{height:47.826667pt;}
.h2{height:49.248000pt;}
.ha{height:51.360000pt;}
.h9{height:52.746667pt;}
.he{height:57.493333pt;}
.hc{height:57.621333pt;}
.h4{height:63.296000pt;}
.hd{height:64.000000pt;}
.hb{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x1{left:75.717199pt;}
.x5{left:80.864532pt;}
.x9{left:83.149602pt;}
.x6{left:86.929067pt;}
.x1b{left:90.708669pt;}
.x10{left:160.994537pt;}
.x17{left:195.710673pt;}
.x16{left:219.195740pt;}
.x15{left:226.081340pt;}
.x11{left:253.032674pt;}
.xd{left:263.454000pt;}
.x18{left:271.088257pt;}
.x12{left:334.860657pt;}
.x19{left:343.303996pt;}
.x14{left:371.195597pt;}
.xe{left:400.339315pt;}
.x3{left:408.755859pt;}
.xa{left:416.242391pt;}
.x4{left:423.873983pt;}
.xb{left:428.118408pt;}
.x1a{left:430.866130pt;}
.x13{left:498.516805pt;}
.xf{left:542.891317pt;}
.x8{left:547.068522pt;}
.x1c{left:635.169352pt;}
.xc{left:640.552531pt;}
.x7{left:671.696655pt;}
}




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