
    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_b70862e5ebfe7f808588d243.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_965ecb70d54d2c2f5b21fe75.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f0f939dcf5a7d0e7820a3feb.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f4b39b37a2ce0083749c34fe.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_586ac8eac2e13dc685e70619.woff')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_7c558a725bbe79a837345b73.woff')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_65b729e3c59a9844ef0dd0a3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_c60ff1d89bba28db2c0d2f8c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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_323f033d23ad2a00ca1d8d45.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739000;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_c39c6fe5ced81a7a7135591f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.817000;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_7c558a725bbe79a837345b73.woff')format("woff");}.ffb{font-family:ffb;line-height:0.951000;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_7c558a725bbe79a837345b73.woff')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_d6d4a89200d323225833e1e8.woff')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v4{vertical-align:-18.234000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.490000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:27.006000px;}
.v3{vertical-align:34.020000px;}
.ls16{letter-spacing:-2.436000px;}
.ls15{letter-spacing:-1.680000px;}
.ls4{letter-spacing:-1.650000px;}
.ls5{letter-spacing:-1.050000px;}
.ls7{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.314820px;}
.ls1b{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.126000px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:3.240000px;}
.ls18{letter-spacing:5.400000px;}
.ls19{letter-spacing:5.508000px;}
.ls2{letter-spacing:12.873600px;}
.ls1{letter-spacing:46.601400px;}
.ls0{letter-spacing:46.602000px;}
.ls13{letter-spacing:115.080000px;}
.ls14{letter-spacing:125.580000px;}
.ls9{letter-spacing:141.204000px;}
.ls1a{letter-spacing:149.058000px;}
.lse{letter-spacing:155.652000px;}
.lsa{letter-spacing:157.038000px;}
.lsb{letter-spacing:157.794000px;}
.ls17{letter-spacing:176.862000px;}
.lsc{letter-spacing:183.078000px;}
.lsf{letter-spacing:223.146000px;}
.ls10{letter-spacing:233.562000px;}
.ls11{letter-spacing:244.020000px;}
.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;}
}
.ws45{word-spacing:-193.578000px;}
.ws7a{word-spacing:-159.558000px;}
.ws55{word-spacing:-125.580000px;}
.ws21{word-spacing:-54.000000px;}
.ws9{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.960000px;}
.ws8a{word-spacing:-11.856000px;}
.ws0{word-spacing:-10.500000px;}
.ws76{word-spacing:-10.374000px;}
.ws22{word-spacing:-7.870500px;}
.ws66{word-spacing:-7.555680px;}
.ws35{word-spacing:-5.292000px;}
.ws9a{word-spacing:-4.176000px;}
.ws89{word-spacing:-4.158000px;}
.ws61{word-spacing:-4.050000px;}
.ws2{word-spacing:-3.630000px;}
.wsa2{word-spacing:-3.168000px;}
.ws23{word-spacing:-2.970000px;}
.ws6b{word-spacing:-2.754000px;}
.ws69{word-spacing:-2.700000px;}
.ws36{word-spacing:-2.646000px;}
.wsb7{word-spacing:-2.640000px;}
.ws2b{word-spacing:-2.322000px;}
.ws4{word-spacing:-2.304000px;}
.ws11{word-spacing:-2.106000px;}
.ws6c{word-spacing:-1.998000px;}
.ws94{word-spacing:-1.836000px;}
.ws2c{word-spacing:-1.458000px;}
.ws98{word-spacing:-1.440000px;}
.wsac{word-spacing:-1.392000px;}
.ws2a{word-spacing:-1.350000px;}
.ws9f{word-spacing:-1.344000px;}
.ws5{word-spacing:-1.200000px;}
.ws90{word-spacing:-1.080000px;}
.wsbd{word-spacing:-1.056000px;}
.wsb1{word-spacing:-0.864000px;}
.ws7{word-spacing:-0.768000px;}
.ws48{word-spacing:-0.756000px;}
.wsc2{word-spacing:-0.576000px;}
.ws99{word-spacing:-0.480000px;}
.wsb3{word-spacing:-0.288000px;}
.ws28{word-spacing:-0.162000px;}
.ws88{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws8b{word-spacing:0.054000px;}
.ws47{word-spacing:0.126000px;}
.ws97{word-spacing:0.144000px;}
.ws2d{word-spacing:0.162000px;}
.wsbf{word-spacing:0.288000px;}
.ws2f{word-spacing:0.314820px;}
.ws9e{word-spacing:0.480000px;}
.wsb{word-spacing:0.540000px;}
.ws86{word-spacing:0.594000px;}
.ws12{word-spacing:0.702000px;}
.ws95{word-spacing:0.756000px;}
.ws16{word-spacing:0.810000px;}
.wsaf{word-spacing:1.008000px;}
.ws3{word-spacing:1.152000px;}
.wsc1{word-spacing:1.584000px;}
.wsb2{word-spacing:1.728000px;}
.ws30{word-spacing:1.998000px;}
.ws32{word-spacing:2.106000px;}
.ws29{word-spacing:2.214000px;}
.ws84{word-spacing:2.376000px;}
.ws1d{word-spacing:2.430000px;}
.wsbb{word-spacing:2.448000px;}
.ws13{word-spacing:2.484000px;}
.ws96{word-spacing:2.538000px;}
.ws9d{word-spacing:2.832000px;}
.ws83{word-spacing:2.862000px;}
.ws34{word-spacing:2.916000px;}
.ws31{word-spacing:3.186000px;}
.ws6a{word-spacing:3.294000px;}
.wsb6{word-spacing:3.408000px;}
.ws8c{word-spacing:3.564000px;}
.wsa0{word-spacing:3.744000px;}
.wsa1{word-spacing:4.032000px;}
.ws67{word-spacing:4.104000px;}
.ws20{word-spacing:4.374000px;}
.wsa7{word-spacing:4.464000px;}
.ws5f{word-spacing:5.076000px;}
.wsa5{word-spacing:5.232000px;}
.ws6e{word-spacing:5.292000px;}
.wsd{word-spacing:5.508000px;}
.wsa3{word-spacing:5.664000px;}
.ws5e{word-spacing:5.832000px;}
.ws2e{word-spacing:5.994000px;}
.wsba{word-spacing:6.096000px;}
.ws1c{word-spacing:6.102000px;}
.wsbe{word-spacing:6.384000px;}
.ws8e{word-spacing:6.426000px;}
.wsaa{word-spacing:6.480000px;}
.ws24{word-spacing:6.534000px;}
.wse{word-spacing:6.966000px;}
.wsb5{word-spacing:7.056000px;}
.ws6d{word-spacing:7.074000px;}
.ws1b{word-spacing:7.938000px;}
.ws91{word-spacing:8.208000px;}
.ws62{word-spacing:8.262000px;}
.ws1e{word-spacing:8.424000px;}
.ws14{word-spacing:8.748000px;}
.wsc{word-spacing:9.396000px;}
.ws9b{word-spacing:9.744000px;}
.ws1a{word-spacing:10.152000px;}
.ws9c{word-spacing:10.416000px;}
.wsa{word-spacing:10.422000px;}
.wsf{word-spacing:10.530000px;}
.wsa4{word-spacing:11.136000px;}
.ws18{word-spacing:11.556000px;}
.ws15{word-spacing:12.258000px;}
.ws1f{word-spacing:12.420000px;}
.ws17{word-spacing:12.582000px;}
.wsbc{word-spacing:12.816000px;}
.ws6{word-spacing:12.912000px;}
.ws68{word-spacing:13.176000px;}
.ws8f{word-spacing:13.338000px;}
.wsb0{word-spacing:13.344000px;}
.ws85{word-spacing:13.500000px;}
.ws26{word-spacing:13.554000px;}
.ws27{word-spacing:13.716000px;}
.ws19{word-spacing:14.094000px;}
.ws6f{word-spacing:14.256000px;}
.ws63{word-spacing:14.364000px;}
.ws8d{word-spacing:15.012000px;}
.wsb8{word-spacing:15.120000px;}
.wsc0{word-spacing:15.456000px;}
.wsa8{word-spacing:16.512000px;}
.ws25{word-spacing:16.524000px;}
.wsae{word-spacing:18.432000px;}
.wsad{word-spacing:18.624000px;}
.wsb9{word-spacing:18.720000px;}
.ws60{word-spacing:19.386000px;}
.ws33{word-spacing:19.872000px;}
.wsab{word-spacing:22.320000px;}
.ws10{word-spacing:22.788000px;}
.ws87{word-spacing:23.058000px;}
.ws93{word-spacing:23.598000px;}
.wsa6{word-spacing:24.528000px;}
.wsa9{word-spacing:32.304000px;}
.wsb4{word-spacing:39.264000px;}
.ws92{word-spacing:40.284000px;}
.ws5b{word-spacing:59.724000px;}
.ws5d{word-spacing:66.654000px;}
.ws5c{word-spacing:70.518000px;}
.ws5a{word-spacing:73.584000px;}
.ws58{word-spacing:83.958000px;}
.ws56{word-spacing:85.092000px;}
.ws59{word-spacing:89.208000px;}
.ws57{word-spacing:89.712000px;}
.ws42{word-spacing:103.362000px;}
.ws40{word-spacing:106.848000px;}
.ws7c{word-spacing:107.562000px;}
.ws79{word-spacing:108.234000px;}
.ws78{word-spacing:113.307600px;}
.ws3b{word-spacing:113.778000px;}
.ws43{word-spacing:114.580200px;}
.ws3d{word-spacing:120.708000px;}
.ws77{word-spacing:122.598000px;}
.ws7e{word-spacing:122.934000px;}
.ws39{word-spacing:124.026000px;}
.ws3f{word-spacing:124.236000px;}
.ws7d{word-spacing:128.436000px;}
.ws38{word-spacing:128.688000px;}
.ws44{word-spacing:129.402000px;}
.ws3c{word-spacing:131.166000px;}
.ws7b{word-spacing:133.644000px;}
.ws3e{word-spacing:141.582000px;}
.ws64{word-spacing:146.328000px;}
.ws3a{word-spacing:149.310000px;}
.ws46{word-spacing:152.040000px;}
.ws65{word-spacing:156.366000px;}
.ws41{word-spacing:157.206000px;}
.ws51{word-spacing:212.898000px;}
.ws52{word-spacing:216.762000px;}
.ws73{word-spacing:222.642000px;}
.ws70{word-spacing:222.768000px;}
.ws53{word-spacing:223.314000px;}
.ws74{word-spacing:243.642000px;}
.ws72{word-spacing:254.100000px;}
.ws49{word-spacing:295.428000px;}
.ws4a{word-spacing:296.226000px;}
.ws4c{word-spacing:305.886000px;}
.ws71{word-spacing:312.900000px;}
.ws4d{word-spacing:316.302000px;}
.ws50{word-spacing:317.100000px;}
.ws4f{word-spacing:326.760000px;}
.ws4b{word-spacing:330.250200px;}
.ws4e{word-spacing:350.322000px;}
.ws54{word-spacing:404.418000px;}
.ws80{word-spacing:506.226000px;}
.ws37{word-spacing:530.418000px;}
.ws81{word-spacing:535.290000px;}
.ws7f{word-spacing:539.490000px;}
.ws82{word-spacing:539.658000px;}
.ws75{word-spacing:658.266000px;}
._71{margin-left:-149.058000px;}
._40{margin-left:-125.496000px;}
._35{margin-left:-16.189800px;}
._1a{margin-left:-13.804200px;}
._3e{margin-left:-10.458000px;}
._17{margin-left:-6.338400px;}
._0{margin-left:-5.280000px;}
._12{margin-left:-4.116000px;}
._4{margin-left:-2.997000px;}
._1{margin-left:-1.776000px;}
._5{width:1.152000px;}
._3{width:2.448600px;}
._2{width:3.530400px;}
._6{width:4.824000px;}
._c{width:6.042600px;}
._f{width:7.587000px;}
._9{width:8.877600px;}
._13{width:10.065600px;}
._e{width:11.178000px;}
._11{width:12.430800px;}
._7{width:13.838400px;}
._18{width:14.893200px;}
._b{width:15.897600px;}
._14{width:16.945200px;}
._15{width:18.176400px;}
._16{width:19.564200px;}
._8{width:20.676600px;}
._a{width:22.177800px;}
._10{width:24.078600px;}
._d{width:25.806600px;}
._7e{width:28.825200px;}
._19{width:30.229200px;}
._7d{width:32.783400px;}
._7f{width:35.040000px;}
._7b{width:36.681000px;}
._7c{width:39.522000px;}
._50{width:69.959400px;}
._4f{width:77.028000px;}
._44{width:83.958000px;}
._55{width:92.652000px;}
._45{width:99.582000px;}
._6f{width:113.274000px;}
._51{width:115.441200px;}
._6e{width:122.556000px;}
._2b{width:124.152000px;}
._52{width:125.580000px;}
._23{width:131.082000px;}
._2e{width:134.190000px;}
._1e{width:135.576000px;}
._5c{width:140.490000px;}
._24{width:141.540000px;}
._73{width:144.132000px;}
._1d{width:147.168000px;}
._6b{width:149.604000px;}
._69{width:150.696000px;}
._2d{width:151.956000px;}
._1f{width:154.140000px;}
._74{width:156.462000px;}
._34{width:157.603800px;}
._27{width:162.414000px;}
._20{width:165.774000px;}
._25{width:167.580000px;}
._76{width:171.543000px;}
._21{width:176.106000px;}
._31{width:190.176000px;}
._64{width:192.612000px;}
._2a{width:204.666000px;}
._75{width:217.545000px;}
._1b{width:226.812000px;}
._30{width:240.156000px;}
._26{width:256.032000px;}
._33{width:263.004000px;}
._29{width:287.112000px;}
._22{width:298.998000px;}
._32{width:301.908000px;}
._70{width:307.524000px;}
._6c{width:323.274000px;}
._3d{width:326.676000px;}
._72{width:335.244000px;}
._37{width:340.536000px;}
._28{width:341.979000px;}
._6d{width:344.583000px;}
._38{width:350.280000px;}
._3b{width:360.696000px;}
._3c{width:361.716000px;}
._6a{width:368.340000px;}
._3a{width:371.154000px;}
._36{width:379.932000px;}
._2c{width:383.502000px;}
._39{width:386.778000px;}
._4e{width:388.806000px;}
._2f{width:393.750000px;}
._48{width:396.270000px;}
._4b{width:437.220000px;}
._46{width:451.710000px;}
._4a{width:487.200000px;}
._41{width:503.076000px;}
._4d{width:510.048000px;}
._43{width:534.156000px;}
._1c{width:538.188000px;}
._4c{width:548.952000px;}
._56{width:551.670000px;}
._3f{width:561.666000px;}
._54{width:587.580000px;}
._42{width:589.023000px;}
._53{width:626.976000px;}
._47{width:630.546000px;}
._7a{width:638.736000px;}
._49{width:640.794000px;}
._78{width:649.152000px;}
._65{width:665.460000px;}
._79{width:667.968000px;}
._77{width:679.278000px;}
._61{width:698.124000px;}
._5b{width:712.614000px;}
._60{width:748.104000px;}
._58{width:763.980000px;}
._63{width:786.702000px;}
._5a{width:795.060000px;}
._57{width:806.946000px;}
._66{width:810.684000px;}
._62{width:825.606000px;}
._59{width:849.927000px;}
._5e{width:860.286000px;}
._68{width:864.234000px;}
._5d{width:891.450000px;}
._5f{width:901.698000px;}
._67{width:903.630000px;}
.fc2{color:rgb(128,130,133);}
.fc1{color:rgb(39,91,155);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:31.482000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:38.478000px;}
.fs5{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:41.821650px;}
.y2a{bottom:85.351200px;}
.y29{bottom:110.551200px;}
.y137{bottom:110.615100px;}
.y77{bottom:121.806750px;}
.yaa{bottom:122.360250px;}
.y26b{bottom:122.438250px;}
.y28{bottom:123.151200px;}
.y126{bottom:123.281400px;}
.y222{bottom:124.819950px;}
.y136{bottom:127.112100px;}
.y27{bottom:135.751200px;}
.y1d4{bottom:137.544900px;}
.yb9{bottom:138.180750px;}
.y76{bottom:138.303750px;}
.y238{bottom:138.681750px;}
.ya9{bottom:138.857250px;}
.y26a{bottom:138.938250px;}
.y125{bottom:139.778400px;}
.yed{bottom:141.470250px;}
.y105{bottom:141.564450px;}
.y135{bottom:143.609100px;}
.y221{bottom:143.940450px;}
.y1d3{bottom:151.047900px;}
.yb8{bottom:154.677750px;}
.y75{bottom:154.800750px;}
.y104{bottom:155.067450px;}
.y237{bottom:155.178750px;}
.ya8{bottom:155.354250px;}
.y269{bottom:155.438250px;}
.y124{bottom:156.275400px;}
.yec{bottom:157.967250px;}
.y220{bottom:160.950450px;}
.y1d2{bottom:168.036900px;}
.y103{bottom:169.935450px;}
.yb7{bottom:171.174750px;}
.y74{bottom:171.297750px;}
.y172{bottom:171.628800px;}
.y236{bottom:171.675750px;}
.ya7{bottom:171.851250px;}
.y268{bottom:171.938250px;}
.y123{bottom:172.772400px;}
.yeb{bottom:174.464250px;}
.y21f{bottom:177.351450px;}
.y1d1{bottom:185.046900px;}
.y102{bottom:186.945450px;}
.yb6{bottom:187.671750px;}
.y73{bottom:187.794750px;}
.y235{bottom:188.172750px;}
.y171{bottom:188.188800px;}
.ya6{bottom:188.348250px;}
.y267{bottom:188.438250px;}
.y2a1{bottom:188.675850px;}
.y122{bottom:189.269400px;}
.y21e{bottom:190.854450px;}
.yea{bottom:190.961250px;}
.y1d0{bottom:202.056900px;}
.y101{bottom:203.955450px;}
.yb5{bottom:204.168750px;}
.y72{bottom:204.291750px;}
.y21d{bottom:204.357450px;}
.y234{bottom:204.669750px;}
.y170{bottom:204.685800px;}
.ya5{bottom:204.845250px;}
.y266{bottom:204.938250px;}
.y2a0{bottom:205.175850px;}
.ye9{bottom:207.458250px;}
.y13{bottom:209.639100px;}
.y21c{bottom:217.860450px;}
.y1cf{bottom:219.066900px;}
.yb4{bottom:220.665750px;}
.y71{bottom:220.788750px;}
.y100{bottom:220.965450px;}
.y233{bottom:221.166750px;}
.ya4{bottom:221.342250px;}
.y265{bottom:221.438250px;}
.y29f{bottom:221.675850px;}
.y121{bottom:222.228450px;}
.y12{bottom:223.139100px;}
.ye8{bottom:223.955250px;}
.y217{bottom:224.622450px;}
.y21b{bottom:231.363450px;}
.y1ce{bottom:236.160900px;}
.y11{bottom:236.639100px;}
.y120{bottom:237.096450px;}
.yb3{bottom:237.162750px;}
.y70{bottom:237.285750px;}
.y232{bottom:237.663750px;}
.y16f{bottom:237.679800px;}
.ya3{bottom:237.839250px;}
.y264{bottom:237.938250px;}
.yff{bottom:237.975450px;}
.y29e{bottom:238.175850px;}
.ye7{bottom:240.452250px;}
.y21a{bottom:244.866450px;}
.y10{bottom:250.139100px;}
.yb2{bottom:253.659750px;}
.y6f{bottom:253.782750px;}
.y11f{bottom:254.106450px;}
.y231{bottom:254.160750px;}
.ya2{bottom:254.336250px;}
.y263{bottom:254.438250px;}
.y1cd{bottom:254.576100px;}
.y29d{bottom:254.675850px;}
.yfe{bottom:254.985450px;}
.ye6{bottom:256.949250px;}
.y219{bottom:258.369450px;}
.yf{bottom:263.639100px;}
.y1cc{bottom:268.079100px;}
.yb1{bottom:270.156750px;}
.y6e{bottom:270.279750px;}
.y230{bottom:270.657750px;}
.y16e{bottom:270.673800px;}
.ya1{bottom:270.833250px;}
.y262{bottom:270.938250px;}
.y11e{bottom:271.116450px;}
.y29c{bottom:271.175850px;}
.y218{bottom:271.872450px;}
.yfd{bottom:271.995450px;}
.y21{bottom:273.347100px;}
.ye5{bottom:273.446250px;}
.ye{bottom:277.139100px;}
.y20{bottom:285.947100px;}
.yb0{bottom:286.653750px;}
.y6d{bottom:286.776750px;}
.y22f{bottom:287.154750px;}
.y16d{bottom:287.170800px;}
.ya0{bottom:287.330250px;}
.y261{bottom:287.438250px;}
.y216{bottom:287.653950px;}
.y29b{bottom:287.675850px;}
.y11d{bottom:288.126450px;}
.yfc{bottom:289.005450px;}
.ye4{bottom:289.943250px;}
.yd{bottom:290.639100px;}
.y1c9{bottom:297.489600px;}
.y1f{bottom:298.547100px;}
.y215{bottom:301.156950px;}
.yaf{bottom:303.150750px;}
.y6c{bottom:303.273750px;}
.y22e{bottom:303.651750px;}
.y16c{bottom:303.667800px;}
.y9f{bottom:303.827250px;}
.y260{bottom:303.938250px;}
.yc{bottom:304.139100px;}
.y29a{bottom:304.175850px;}
.y11c{bottom:305.136450px;}
.yfb{bottom:306.015450px;}
.ye3{bottom:306.440250px;}
.y1c8{bottom:310.992600px;}
.y1e{bottom:311.147100px;}
.y214{bottom:314.659950px;}
.yb{bottom:317.639100px;}
.yae{bottom:319.647750px;}
.y6b{bottom:319.770750px;}
.y22d{bottom:320.148750px;}
.y16b{bottom:320.164800px;}
.y9e{bottom:320.324250px;}
.y25f{bottom:320.438250px;}
.y299{bottom:320.675850px;}
.y11b{bottom:322.146450px;}
.ye2{bottom:322.937250px;}
.yfa{bottom:323.025450px;}
.y1d{bottom:323.747100px;}
.y1c7{bottom:327.981600px;}
.y213{bottom:328.162950px;}
.y20f{bottom:328.173450px;}
.ya{bottom:331.139100px;}
.yad{bottom:336.144750px;}
.y6a{bottom:336.267750px;}
.y1c{bottom:336.347100px;}
.y22c{bottom:336.645750px;}
.y16a{bottom:336.661800px;}
.y25e{bottom:336.938250px;}
.y298{bottom:337.175850px;}
.y11a{bottom:339.156450px;}
.ye1{bottom:339.434250px;}
.yf9{bottom:340.035450px;}
.y212{bottom:341.665950px;}
.y9{bottom:344.639100px;}
.y1c6{bottom:344.991600px;}
.y1b{bottom:348.947100px;}
.yac{bottom:352.641750px;}
.y69{bottom:352.764750px;}
.y22b{bottom:353.142750px;}
.y9d{bottom:353.318250px;}
.y25d{bottom:353.438250px;}
.y297{bottom:353.675850px;}
.y211{bottom:355.168950px;}
.ye0{bottom:355.931250px;}
.y119{bottom:356.166450px;}
.yf8{bottom:357.045450px;}
.y8{bottom:358.139100px;}
.y1c5{bottom:362.001600px;}
.y210{bottom:368.671950px;}
.yab{bottom:369.138750px;}
.y68{bottom:369.261750px;}
.y22a{bottom:369.639750px;}
.y169{bottom:369.655800px;}
.y25c{bottom:369.938250px;}
.y296{bottom:370.175850px;}
.ydf{bottom:372.428250px;}
.y118{bottom:373.176450px;}
.yf7{bottom:374.055450px;}
.y1c4{bottom:379.011600px;}
.y20e{bottom:384.453450px;}
.y67{bottom:385.758750px;}
.y229{bottom:386.136750px;}
.y9c{bottom:386.312250px;}
.y25b{bottom:386.438250px;}
.y295{bottom:386.675850px;}
.yde{bottom:388.925250px;}
.y117{bottom:390.186450px;}
.yf6{bottom:391.065450px;}
.y1c3{bottom:396.021600px;}
.y30{bottom:396.822000px;}
.y20d{bottom:397.956450px;}
.y66{bottom:402.255750px;}
.y228{bottom:402.633750px;}
.y168{bottom:402.649800px;}
.y9b{bottom:402.809250px;}
.y25a{bottom:402.938250px;}
.y294{bottom:403.175850px;}
.ydd{bottom:405.422250px;}
.y116{bottom:407.196450px;}
.yf5{bottom:408.075450px;}
.y20c{bottom:411.459450px;}
.y1c2{bottom:413.115600px;}
.y208{bottom:418.221450px;}
.y65{bottom:418.752750px;}
.y227{bottom:419.130750px;}
.y167{bottom:419.146800px;}
.y9a{bottom:419.306250px;}
.y259{bottom:419.438250px;}
.y293{bottom:419.675850px;}
.y1c1{bottom:421.620600px;}
.ydc{bottom:421.919250px;}
.y115{bottom:424.206450px;}
.y20b{bottom:424.962450px;}
.yf4{bottom:425.085450px;}
.y26{bottom:431.345700px;}
.y64{bottom:435.249750px;}
.y226{bottom:435.627750px;}
.y166{bottom:435.643800px;}
.y99{bottom:435.803250px;}
.y258{bottom:435.938250px;}
.y292{bottom:436.175850px;}
.ydb{bottom:438.416250px;}
.y20a{bottom:438.465450px;}
.y114{bottom:441.216450px;}
.yf3{bottom:442.179450px;}
.y25{bottom:449.347200px;}
.y1cb{bottom:450.096600px;}
.yf2{bottom:450.684450px;}
.y63{bottom:451.746750px;}
.y209{bottom:451.968450px;}
.y225{bottom:452.124750px;}
.y165{bottom:452.140800px;}
.y98{bottom:452.300250px;}
.y257{bottom:452.438250px;}
.y291{bottom:452.675850px;}
.yda{bottom:454.913250px;}
.y113{bottom:458.226450px;}
.y1ca{bottom:463.599600px;}
.y207{bottom:467.760450px;}
.y62{bottom:468.243750px;}
.y224{bottom:468.621750px;}
.y164{bottom:468.637800px;}
.y97{bottom:468.797250px;}
.y256{bottom:468.938250px;}
.y290{bottom:469.175850px;}
.yd9{bottom:471.410250px;}
.y134{bottom:473.606100px;}
.y112{bottom:475.236450px;}
.yf1{bottom:477.612600px;}
.y206{bottom:481.263450px;}
.y61{bottom:484.740750px;}
.y163{bottom:485.134800px;}
.y96{bottom:485.294250px;}
.y255{bottom:485.438250px;}
.y28f{bottom:485.675850px;}
.y133{bottom:487.109100px;}
.yf0{bottom:491.115600px;}
.y111{bottom:491.637450px;}
.y205{bottom:494.766450px;}
.y202{bottom:494.776950px;}
.y1c0{bottom:499.383000px;}
.y60{bottom:501.237750px;}
.yd8{bottom:501.407250px;}
.y199{bottom:501.426750px;}
.y223{bottom:501.615750px;}
.y162{bottom:501.631800px;}
.y95{bottom:501.791250px;}
.y254{bottom:501.938250px;}
.y28e{bottom:502.175850px;}
.y110{bottom:505.140450px;}
.y204{bottom:508.269450px;}
.y3b{bottom:510.813900px;}
.y1bf{bottom:515.880000px;}
.y132{bottom:517.130100px;}
.y5f{bottom:517.734750px;}
.yd7{bottom:517.904250px;}
.y198{bottom:517.923750px;}
.y161{bottom:518.128800px;}
.y94{bottom:518.288250px;}
.y253{bottom:518.438250px;}
.y28d{bottom:518.675850px;}
.y203{bottom:521.772450px;}
.y10f{bottom:522.875400px;}
.y3a{bottom:524.313900px;}
.y1a{bottom:531.216600px;}
.y1be{bottom:532.377000px;}
.y131{bottom:533.627100px;}
.y5e{bottom:534.231750px;}
.y197{bottom:534.420750px;}
.y160{bottom:534.625800px;}
.y93{bottom:534.785250px;}
.y252{bottom:534.938250px;}
.y28c{bottom:535.175850px;}
.y10e{bottom:536.378400px;}
.y201{bottom:537.564450px;}
.y39{bottom:537.813900px;}
.y18b{bottom:543.347250px;}
.y19{bottom:543.816600px;}
.y1bd{bottom:548.874000px;}
.y130{bottom:550.124100px;}
.y5d{bottom:550.728750px;}
.yd6{bottom:550.898250px;}
.y196{bottom:550.917750px;}
.y200{bottom:551.067450px;}
.y92{bottom:551.282250px;}
.y38{bottom:551.313900px;}
.y251{bottom:551.438250px;}
.y28b{bottom:551.675850px;}
.y18{bottom:556.416600px;}
.y18a{bottom:556.850250px;}
.y1ff{bottom:564.570450px;}
.y1fc{bottom:564.580950px;}
.y37{bottom:564.813900px;}
.y1bc{bottom:565.371000px;}
.y10d{bottom:566.405400px;}
.y12f{bottom:566.621100px;}
.y5c{bottom:567.225750px;}
.yd5{bottom:567.395250px;}
.y195{bottom:567.414750px;}
.y15f{bottom:567.589650px;}
.y91{bottom:567.779250px;}
.y250{bottom:567.938250px;}
.y28a{bottom:568.175850px;}
.y17{bottom:569.016600px;}
.y189{bottom:570.353250px;}
.y1fe{bottom:578.073450px;}
.y36{bottom:578.313900px;}
.y15e{bottom:581.092650px;}
.y16{bottom:581.616600px;}
.y1bb{bottom:581.868000px;}
.y10c{bottom:582.902400px;}
.y12e{bottom:583.118100px;}
.y5b{bottom:583.722750px;}
.yd4{bottom:583.892250px;}
.y194{bottom:583.911750px;}
.y90{bottom:584.276250px;}
.y24f{bottom:584.438250px;}
.y289{bottom:584.675850px;}
.y1fd{bottom:591.576450px;}
.y35{bottom:591.813900px;}
.y15{bottom:594.216600px;}
.y15d{bottom:595.960650px;}
.y1ba{bottom:598.365000px;}
.y10b{bottom:599.399400px;}
.y12d{bottom:599.615100px;}
.y5a{bottom:600.219750px;}
.y188{bottom:600.389250px;}
.y193{bottom:600.408750px;}
.y8f{bottom:600.773250px;}
.y24e{bottom:600.938250px;}
.y288{bottom:601.175850px;}
.y34{bottom:605.313900px;}
.y14{bottom:606.816600px;}
.y1fb{bottom:608.061450px;}
.y15c{bottom:612.970650px;}
.y1b9{bottom:614.862000px;}
.y12c{bottom:616.112100px;}
.y59{bottom:616.716750px;}
.yd3{bottom:616.886250px;}
.y192{bottom:616.905750px;}
.y8e{bottom:617.270250px;}
.y24d{bottom:617.438250px;}
.y287{bottom:617.675850px;}
.y33{bottom:618.813900px;}
.y1fa{bottom:624.367950px;}
.y15b{bottom:629.980650px;}
.y1f9{bottom:631.035450px;}
.y1b8{bottom:631.359000px;}
.y32{bottom:632.313900px;}
.y10a{bottom:632.393400px;}
.y12b{bottom:632.636400px;}
.y58{bottom:633.213750px;}
.y187{bottom:633.383250px;}
.y191{bottom:633.402750px;}
.y8d{bottom:633.767250px;}
.y24c{bottom:633.938250px;}
.y286{bottom:634.175850px;}
.y23{bottom:644.313900px;}
.y31{bottom:645.813900px;}
.y15a{bottom:646.990650px;}
.y1b7{bottom:647.856000px;}
.y12a{bottom:649.133400px;}
.y57{bottom:649.710750px;}
.yd2{bottom:649.880250px;}
.y190{bottom:649.899750px;}
.y24b{bottom:650.438250px;}
.y285{bottom:650.675850px;}
.y1f8{bottom:653.484450px;}
.y22{bottom:659.313900px;}
.y159{bottom:664.000650px;}
.y1b6{bottom:664.353000px;}
.y109{bottom:665.387400px;}
.y129{bottom:665.630400px;}
.y56{bottom:666.207750px;}
.y186{bottom:666.377250px;}
.y18f{bottom:666.396750px;}
.y8c{bottom:666.761250px;}
.y24a{bottom:666.938250px;}
.y1f7{bottom:666.987450px;}
.y284{bottom:667.175850px;}
.y1f6{bottom:680.490450px;}
.y1b5{bottom:680.850000px;}
.y158{bottom:681.010650px;}
.y108{bottom:681.884400px;}
.y128{bottom:682.127400px;}
.yd1{bottom:682.685250px;}
.y55{bottom:682.704750px;}
.y185{bottom:682.874250px;}
.y18e{bottom:682.893750px;}
.y249{bottom:683.438250px;}
.y283{bottom:683.675850px;}
.y1f2{bottom:687.252450px;}
.y1f5{bottom:693.993450px;}
.y1b4{bottom:697.347000px;}
.y1{bottom:697.787250px;}
.y24{bottom:697.836300px;}
.y157{bottom:698.020650px;}
.y107{bottom:698.381400px;}
.yd0{bottom:699.182250px;}
.y54{bottom:699.201750px;}
.y184{bottom:699.371250px;}
.y18d{bottom:699.390750px;}
.y8b{bottom:699.755250px;}
.y248{bottom:699.938250px;}
.y282{bottom:700.175850px;}
.y1f4{bottom:707.496450px;}
.y1b3{bottom:713.844000px;}
.y106{bottom:714.878400px;}
.y156{bottom:715.030650px;}
.y127{bottom:715.121400px;}
.ycf{bottom:715.679250px;}
.y53{bottom:715.698750px;}
.y183{bottom:715.868250px;}
.y8a{bottom:716.252250px;}
.y247{bottom:716.438250px;}
.y281{bottom:716.675850px;}
.y1f3{bottom:720.999450px;}
.y1b2{bottom:730.341000px;}
.y155{bottom:732.040650px;}
.yce{bottom:732.176250px;}
.y52{bottom:732.195750px;}
.y182{bottom:732.365250px;}
.y18c{bottom:732.384750px;}
.y89{bottom:732.749250px;}
.y280{bottom:733.175850px;}
.y1f1{bottom:736.791450px;}
.y1b1{bottom:746.838000px;}
.ycd{bottom:748.673250px;}
.y51{bottom:748.692750px;}
.y181{bottom:748.862250px;}
.y154{bottom:749.050650px;}
.y88{bottom:749.246250px;}
.y246{bottom:749.637750px;}
.y27f{bottom:749.675850px;}
.y1f0{bottom:750.294450px;}
.y1ed{bottom:757.045950px;}
.y148{bottom:757.053900px;}
.y1b0{bottom:763.335000px;}
.y1ef{bottom:763.797450px;}
.ycc{bottom:765.170250px;}
.y50{bottom:765.189750px;}
.y180{bottom:765.359250px;}
.y87{bottom:765.743250px;}
.y153{bottom:766.060650px;}
.y27e{bottom:766.175850px;}
.y147{bottom:774.063900px;}
.y7{bottom:776.984550px;}
.y1ee{bottom:777.300450px;}
.ycb{bottom:781.667250px;}
.y4f{bottom:781.686750px;}
.y17f{bottom:781.856250px;}
.y86{bottom:782.240250px;}
.y245{bottom:782.442750px;}
.y27d{bottom:782.675850px;}
.y152{bottom:783.070650px;}
.y146{bottom:791.073900px;}
.y6{bottom:791.983050px;}
.y1ec{bottom:793.081950px;}
.y1af{bottom:796.329000px;}
.yca{bottom:798.164250px;}
.y4e{bottom:798.183750px;}
.y17e{bottom:798.371250px;}
.y85{bottom:798.737250px;}
.y244{bottom:798.939750px;}
.y27c{bottom:799.175850px;}
.y151{bottom:800.080650px;}
.y1eb{bottom:806.584950px;}
.y5{bottom:806.981550px;}
.y145{bottom:808.083900px;}
.y1e8{bottom:813.336450px;}
.yc9{bottom:814.661250px;}
.y4d{bottom:814.680750px;}
.y84{bottom:815.234250px;}
.y27b{bottom:815.675850px;}
.y150{bottom:817.090650px;}
.y1ea{bottom:820.087950px;}
.y144{bottom:825.093900px;}
.y1ae{bottom:829.294200px;}
.yc8{bottom:831.158250px;}
.y4c{bottom:831.177750px;}
.y17d{bottom:831.365250px;}
.y83{bottom:831.731250px;}
.y243{bottom:831.933750px;}
.y27a{bottom:832.175850px;}
.y1e9{bottom:833.590950px;}
.y14f{bottom:834.100650px;}
.y4{bottom:838.989450px;}
.y143{bottom:842.103900px;}
.y1ad{bottom:843.542700px;}
.yc7{bottom:847.655250px;}
.y4b{bottom:847.674750px;}
.y82{bottom:848.228250px;}
.y279{bottom:848.675850px;}
.y1e7{bottom:849.372450px;}
.y14e{bottom:851.110650px;}
.y1ac{bottom:857.045700px;}
.y142{bottom:859.113900px;}
.y1e6{bottom:862.875450px;}
.yc6{bottom:864.152250px;}
.y4a{bottom:864.171750px;}
.y17c{bottom:864.359250px;}
.y81{bottom:864.725250px;}
.y242{bottom:864.738750px;}
.y278{bottom:865.175850px;}
.y14d{bottom:868.897650px;}
.y1e3{bottom:869.626950px;}
.y1ab{bottom:873.446700px;}
.y141{bottom:876.123900px;}
.y1e5{bottom:876.378450px;}
.y3{bottom:879.749250px;}
.yc5{bottom:880.649250px;}
.y49{bottom:880.668750px;}
.y17b{bottom:880.856250px;}
.y80{bottom:881.222250px;}
.y277{bottom:881.675850px;}
.y14c{bottom:886.632750px;}
.y1e4{bottom:889.881450px;}
.y1aa{bottom:890.456700px;}
.y140{bottom:893.133900px;}
.yc4{bottom:897.146250px;}
.y48{bottom:897.165750px;}
.y17a{bottom:897.371250px;}
.y241{bottom:897.732750px;}
.y276{bottom:898.175850px;}
.y14b{bottom:900.135750px;}
.y1e2{bottom:905.662950px;}
.y1a9{bottom:907.466700px;}
.y2{bottom:908.549250px;}
.y13f{bottom:910.143900px;}
.yc3{bottom:913.643250px;}
.y47{bottom:913.662750px;}
.y179{bottom:913.868250px;}
.y7f{bottom:914.216250px;}
.y275{bottom:914.675850px;}
.y1e1{bottom:919.165950px;}
.y1a8{bottom:923.867700px;}
.y1a5{bottom:923.878200px;}
.y1a2{bottom:923.888700px;}
.y13e{bottom:927.153900px;}
.yc2{bottom:930.140250px;}
.y46{bottom:930.159750px;}
.y178{bottom:930.365250px;}
.y240{bottom:930.537750px;}
.y274{bottom:931.175850px;}
.y1e0{bottom:932.668950px;}
.y1dd{bottom:932.679450px;}
.y1a7{bottom:937.370700px;}
.y1a4{bottom:937.381200px;}
.y1a0{bottom:937.391700px;}
.y13d{bottom:944.163900px;}
.y2b{bottom:945.450900px;}
.y1df{bottom:946.171950px;}
.yc1{bottom:946.637250px;}
.y45{bottom:946.656750px;}
.y23f{bottom:947.034750px;}
.y7e{bottom:947.210250px;}
.y273{bottom:947.675850px;}
.y1a6{bottom:950.873700px;}
.y1a3{bottom:950.884200px;}
.y1a1{bottom:950.894700px;}
.y1de{bottom:959.674950px;}
.y13c{bottom:961.173900px;}
.yc0{bottom:963.134250px;}
.y44{bottom:963.153750px;}
.y177{bottom:963.359250px;}
.y23e{bottom:963.531750px;}
.y272{bottom:964.175850px;}
.y19f{bottom:967.201200px;}
.y1dc{bottom:975.466950px;}
.y2d{bottom:976.209450px;}
.y13b{bottom:978.183900px;}
.ybf{bottom:979.631250px;}
.y43{bottom:979.650750px;}
.y7d{bottom:979.826250px;}
.y23d{bottom:980.028750px;}
.y271{bottom:980.675850px;}
.y19e{bottom:985.632750px;}
.y1db{bottom:988.969950px;}
.y13a{bottom:995.193900px;}
.y1d8{bottom:995.721450px;}
.ybe{bottom:996.128250px;}
.y42{bottom:996.147750px;}
.y7c{bottom:996.323250px;}
.y176{bottom:996.356250px;}
.y23c{bottom:996.525750px;}
.y270{bottom:997.175850px;}
.y19d{bottom:999.135750px;}
.y2e{bottom:999.430050px;}
.y1da{bottom:1002.472950px;}
.y139{bottom:1012.203900px;}
.ybd{bottom:1012.625250px;}
.y41{bottom:1012.644750px;}
.y7b{bottom:1012.820250px;}
.y175{bottom:1012.867800px;}
.y23b{bottom:1013.022750px;}
.y26f{bottom:1013.675850px;}
.y1d9{bottom:1015.975950px;}
.ybc{bottom:1029.122250px;}
.y40{bottom:1029.141750px;}
.y19c{bottom:1029.236250px;}
.y138{bottom:1029.297900px;}
.y7a{bottom:1029.317250px;}
.y174{bottom:1029.364800px;}
.y23a{bottom:1029.519750px;}
.y2f{bottom:1030.000050px;}
.y26e{bottom:1030.175850px;}
.y1d7{bottom:1032.450450px;}
.ybb{bottom:1045.619250px;}
.y3f{bottom:1045.638750px;}
.y19b{bottom:1045.733250px;}
.y79{bottom:1045.814250px;}
.y26d{bottom:1046.675850px;}
.y14a{bottom:1050.665400px;}
.yef{bottom:1050.702600px;}
.y1d6{bottom:1050.882000px;}
.yba{bottom:1062.116250px;}
.y3e{bottom:1062.135750px;}
.y19a{bottom:1062.230250px;}
.y78{bottom:1062.311250px;}
.y173{bottom:1062.358800px;}
.y239{bottom:1062.513750px;}
.y26c{bottom:1063.175850px;}
.y149{bottom:1064.168400px;}
.yee{bottom:1064.205600px;}
.y1d5{bottom:1064.385000px;}
.y2c{bottom:1073.775150px;}
.y3d{bottom:1110.728700px;}
.hc{height:24.644531px;}
.h7{height:28.444336px;}
.h13{height:28.751953px;}
.h8{height:29.182617px;}
.hd{height:31.038000px;}
.h6{height:33.351562px;}
.hb{height:35.472000px;}
.h16{height:36.571289px;}
.ha{height:36.955078px;}
.h2{height:36.966797px;}
.h5{height:37.520508px;}
.hf{height:37.680000px;}
.h10{height:39.364456px;}
.h1a{height:42.234375px;}
.h9{height:45.181641px;}
.h12{height:47.333672px;}
.h15{height:47.404472px;}
.h17{height:47.441672px;}
.h11{height:47.513672px;}
.h4{height:48.713446px;}
.h19{height:56.093953px;}
.h18{height:56.188617px;}
.h14{height:62.771953px;}
.h3{height:65.718750px;}
.he{height:82.650000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:63.779550px;}
.x4{left:65.540700px;}
.x21{left:68.078550px;}
.xa{left:72.283500px;}
.x16{left:80.789550px;}
.x1c{left:82.027350px;}
.x10{left:85.037250px;}
.x1a{left:89.291250px;}
.x34{left:95.111400px;}
.xe{left:98.579400px;}
.xf{left:102.047250px;}
.x2a{left:115.066650px;}
.x29{left:121.943850px;}
.x2c{left:125.587650px;}
.x1d{left:130.421850px;}
.x2d{left:132.664650px;}
.x2b{left:133.714650px;}
.x20{left:153.065550px;}
.x2e{left:154.485750px;}
.x25{left:174.444000px;}
.x2{left:178.049400px;}
.x2f{left:179.283450px;}
.x30{left:186.492450px;}
.x3{left:190.121400px;}
.x24{left:195.874500px;}
.x22{left:202.150800px;}
.x1e{left:211.166850px;}
.x26{left:229.212000px;}
.x1f{left:230.339850px;}
.x1b{left:232.763250px;}
.x27{left:234.945000px;}
.x8{left:242.362200px;}
.x1{left:250.866150px;}
.xd{left:271.638900px;}
.x7{left:322.786350px;}
.xc{left:331.576500px;}
.x15{left:335.269200px;}
.x6{left:339.107850px;}
.x5{left:347.720850px;}
.x28{left:351.243000px;}
.xb{left:358.255200px;}
.x17{left:450.707550px;}
.x18{left:467.717550px;}
.x11{left:471.947250px;}
.x13{left:488.957250px;}
.x33{left:549.912450px;}
.x32{left:561.549450px;}
.x23{left:598.911600px;}
.x31{left:604.897950px;}
.x19{left:608.293050px;}
.x12{left:628.034250px;}
.x14{left:787.398300px;}
@media print{
.v4{vertical-align:-16.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.546667pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:24.005333pt;}
.v3{vertical-align:30.240000pt;}
.ls16{letter-spacing:-2.165333pt;}
.ls15{letter-spacing:-1.493333pt;}
.ls4{letter-spacing:-1.466667pt;}
.ls5{letter-spacing:-0.933333pt;}
.ls7{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.279840pt;}
.ls1b{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:2.880000pt;}
.ls18{letter-spacing:4.800000pt;}
.ls19{letter-spacing:4.896000pt;}
.ls2{letter-spacing:11.443200pt;}
.ls1{letter-spacing:41.423467pt;}
.ls0{letter-spacing:41.424000pt;}
.ls13{letter-spacing:102.293333pt;}
.ls14{letter-spacing:111.626667pt;}
.ls9{letter-spacing:125.514667pt;}
.ls1a{letter-spacing:132.496000pt;}
.lse{letter-spacing:138.357333pt;}
.lsa{letter-spacing:139.589333pt;}
.lsb{letter-spacing:140.261333pt;}
.ls17{letter-spacing:157.210667pt;}
.lsc{letter-spacing:162.736000pt;}
.lsf{letter-spacing:198.352000pt;}
.ls10{letter-spacing:207.610667pt;}
.ls11{letter-spacing:216.906667pt;}
.ws45{word-spacing:-172.069333pt;}
.ws7a{word-spacing:-141.829333pt;}
.ws55{word-spacing:-111.626667pt;}
.ws21{word-spacing:-48.000000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.520000pt;}
.ws8a{word-spacing:-10.538667pt;}
.ws0{word-spacing:-9.333333pt;}
.ws76{word-spacing:-9.221333pt;}
.ws22{word-spacing:-6.996000pt;}
.ws66{word-spacing:-6.716160pt;}
.ws35{word-spacing:-4.704000pt;}
.ws9a{word-spacing:-3.712000pt;}
.ws89{word-spacing:-3.696000pt;}
.ws61{word-spacing:-3.600000pt;}
.ws2{word-spacing:-3.226667pt;}
.wsa2{word-spacing:-2.816000pt;}
.ws23{word-spacing:-2.640000pt;}
.ws6b{word-spacing:-2.448000pt;}
.ws69{word-spacing:-2.400000pt;}
.ws36{word-spacing:-2.352000pt;}
.wsb7{word-spacing:-2.346667pt;}
.ws2b{word-spacing:-2.064000pt;}
.ws4{word-spacing:-2.048000pt;}
.ws11{word-spacing:-1.872000pt;}
.ws6c{word-spacing:-1.776000pt;}
.ws94{word-spacing:-1.632000pt;}
.ws2c{word-spacing:-1.296000pt;}
.ws98{word-spacing:-1.280000pt;}
.wsac{word-spacing:-1.237333pt;}
.ws2a{word-spacing:-1.200000pt;}
.ws9f{word-spacing:-1.194667pt;}
.ws5{word-spacing:-1.066667pt;}
.ws90{word-spacing:-0.960000pt;}
.wsbd{word-spacing:-0.938667pt;}
.wsb1{word-spacing:-0.768000pt;}
.ws7{word-spacing:-0.682667pt;}
.ws48{word-spacing:-0.672000pt;}
.wsc2{word-spacing:-0.512000pt;}
.ws99{word-spacing:-0.426667pt;}
.wsb3{word-spacing:-0.256000pt;}
.ws28{word-spacing:-0.144000pt;}
.ws88{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.048000pt;}
.ws47{word-spacing:0.112000pt;}
.ws97{word-spacing:0.128000pt;}
.ws2d{word-spacing:0.144000pt;}
.wsbf{word-spacing:0.256000pt;}
.ws2f{word-spacing:0.279840pt;}
.ws9e{word-spacing:0.426667pt;}
.wsb{word-spacing:0.480000pt;}
.ws86{word-spacing:0.528000pt;}
.ws12{word-spacing:0.624000pt;}
.ws95{word-spacing:0.672000pt;}
.ws16{word-spacing:0.720000pt;}
.wsaf{word-spacing:0.896000pt;}
.ws3{word-spacing:1.024000pt;}
.wsc1{word-spacing:1.408000pt;}
.wsb2{word-spacing:1.536000pt;}
.ws30{word-spacing:1.776000pt;}
.ws32{word-spacing:1.872000pt;}
.ws29{word-spacing:1.968000pt;}
.ws84{word-spacing:2.112000pt;}
.ws1d{word-spacing:2.160000pt;}
.wsbb{word-spacing:2.176000pt;}
.ws13{word-spacing:2.208000pt;}
.ws96{word-spacing:2.256000pt;}
.ws9d{word-spacing:2.517333pt;}
.ws83{word-spacing:2.544000pt;}
.ws34{word-spacing:2.592000pt;}
.ws31{word-spacing:2.832000pt;}
.ws6a{word-spacing:2.928000pt;}
.wsb6{word-spacing:3.029333pt;}
.ws8c{word-spacing:3.168000pt;}
.wsa0{word-spacing:3.328000pt;}
.wsa1{word-spacing:3.584000pt;}
.ws67{word-spacing:3.648000pt;}
.ws20{word-spacing:3.888000pt;}
.wsa7{word-spacing:3.968000pt;}
.ws5f{word-spacing:4.512000pt;}
.wsa5{word-spacing:4.650667pt;}
.ws6e{word-spacing:4.704000pt;}
.wsd{word-spacing:4.896000pt;}
.wsa3{word-spacing:5.034667pt;}
.ws5e{word-spacing:5.184000pt;}
.ws2e{word-spacing:5.328000pt;}
.wsba{word-spacing:5.418667pt;}
.ws1c{word-spacing:5.424000pt;}
.wsbe{word-spacing:5.674667pt;}
.ws8e{word-spacing:5.712000pt;}
.wsaa{word-spacing:5.760000pt;}
.ws24{word-spacing:5.808000pt;}
.wse{word-spacing:6.192000pt;}
.wsb5{word-spacing:6.272000pt;}
.ws6d{word-spacing:6.288000pt;}
.ws1b{word-spacing:7.056000pt;}
.ws91{word-spacing:7.296000pt;}
.ws62{word-spacing:7.344000pt;}
.ws1e{word-spacing:7.488000pt;}
.ws14{word-spacing:7.776000pt;}
.wsc{word-spacing:8.352000pt;}
.ws9b{word-spacing:8.661333pt;}
.ws1a{word-spacing:9.024000pt;}
.ws9c{word-spacing:9.258667pt;}
.wsa{word-spacing:9.264000pt;}
.wsf{word-spacing:9.360000pt;}
.wsa4{word-spacing:9.898667pt;}
.ws18{word-spacing:10.272000pt;}
.ws15{word-spacing:10.896000pt;}
.ws1f{word-spacing:11.040000pt;}
.ws17{word-spacing:11.184000pt;}
.wsbc{word-spacing:11.392000pt;}
.ws6{word-spacing:11.477333pt;}
.ws68{word-spacing:11.712000pt;}
.ws8f{word-spacing:11.856000pt;}
.wsb0{word-spacing:11.861333pt;}
.ws85{word-spacing:12.000000pt;}
.ws26{word-spacing:12.048000pt;}
.ws27{word-spacing:12.192000pt;}
.ws19{word-spacing:12.528000pt;}
.ws6f{word-spacing:12.672000pt;}
.ws63{word-spacing:12.768000pt;}
.ws8d{word-spacing:13.344000pt;}
.wsb8{word-spacing:13.440000pt;}
.wsc0{word-spacing:13.738667pt;}
.wsa8{word-spacing:14.677333pt;}
.ws25{word-spacing:14.688000pt;}
.wsae{word-spacing:16.384000pt;}
.wsad{word-spacing:16.554667pt;}
.wsb9{word-spacing:16.640000pt;}
.ws60{word-spacing:17.232000pt;}
.ws33{word-spacing:17.664000pt;}
.wsab{word-spacing:19.840000pt;}
.ws10{word-spacing:20.256000pt;}
.ws87{word-spacing:20.496000pt;}
.ws93{word-spacing:20.976000pt;}
.wsa6{word-spacing:21.802667pt;}
.wsa9{word-spacing:28.714667pt;}
.wsb4{word-spacing:34.901333pt;}
.ws92{word-spacing:35.808000pt;}
.ws5b{word-spacing:53.088000pt;}
.ws5d{word-spacing:59.248000pt;}
.ws5c{word-spacing:62.682667pt;}
.ws5a{word-spacing:65.408000pt;}
.ws58{word-spacing:74.629333pt;}
.ws56{word-spacing:75.637333pt;}
.ws59{word-spacing:79.296000pt;}
.ws57{word-spacing:79.744000pt;}
.ws42{word-spacing:91.877333pt;}
.ws40{word-spacing:94.976000pt;}
.ws7c{word-spacing:95.610667pt;}
.ws79{word-spacing:96.208000pt;}
.ws78{word-spacing:100.717867pt;}
.ws3b{word-spacing:101.136000pt;}
.ws43{word-spacing:101.849067pt;}
.ws3d{word-spacing:107.296000pt;}
.ws77{word-spacing:108.976000pt;}
.ws7e{word-spacing:109.274667pt;}
.ws39{word-spacing:110.245333pt;}
.ws3f{word-spacing:110.432000pt;}
.ws7d{word-spacing:114.165333pt;}
.ws38{word-spacing:114.389333pt;}
.ws44{word-spacing:115.024000pt;}
.ws3c{word-spacing:116.592000pt;}
.ws7b{word-spacing:118.794667pt;}
.ws3e{word-spacing:125.850667pt;}
.ws64{word-spacing:130.069333pt;}
.ws3a{word-spacing:132.720000pt;}
.ws46{word-spacing:135.146667pt;}
.ws65{word-spacing:138.992000pt;}
.ws41{word-spacing:139.738667pt;}
.ws51{word-spacing:189.242667pt;}
.ws52{word-spacing:192.677333pt;}
.ws73{word-spacing:197.904000pt;}
.ws70{word-spacing:198.016000pt;}
.ws53{word-spacing:198.501333pt;}
.ws74{word-spacing:216.570667pt;}
.ws72{word-spacing:225.866667pt;}
.ws49{word-spacing:262.602667pt;}
.ws4a{word-spacing:263.312000pt;}
.ws4c{word-spacing:271.898667pt;}
.ws71{word-spacing:278.133333pt;}
.ws4d{word-spacing:281.157333pt;}
.ws50{word-spacing:281.866667pt;}
.ws4f{word-spacing:290.453333pt;}
.ws4b{word-spacing:293.555733pt;}
.ws4e{word-spacing:311.397333pt;}
.ws54{word-spacing:359.482667pt;}
.ws80{word-spacing:449.978667pt;}
.ws37{word-spacing:471.482667pt;}
.ws81{word-spacing:475.813333pt;}
.ws7f{word-spacing:479.546667pt;}
.ws82{word-spacing:479.696000pt;}
.ws75{word-spacing:585.125333pt;}
._71{margin-left:-132.496000pt;}
._40{margin-left:-111.552000pt;}
._35{margin-left:-14.390933pt;}
._1a{margin-left:-12.270400pt;}
._3e{margin-left:-9.296000pt;}
._17{margin-left:-5.634133pt;}
._0{margin-left:-4.693333pt;}
._12{margin-left:-3.658667pt;}
._4{margin-left:-2.664000pt;}
._1{margin-left:-1.578667pt;}
._5{width:1.024000pt;}
._3{width:2.176533pt;}
._2{width:3.138133pt;}
._6{width:4.288000pt;}
._c{width:5.371200pt;}
._f{width:6.744000pt;}
._9{width:7.891200pt;}
._13{width:8.947200pt;}
._e{width:9.936000pt;}
._11{width:11.049600pt;}
._7{width:12.300800pt;}
._18{width:13.238400pt;}
._b{width:14.131200pt;}
._14{width:15.062400pt;}
._15{width:16.156800pt;}
._16{width:17.390400pt;}
._8{width:18.379200pt;}
._a{width:19.713600pt;}
._10{width:21.403200pt;}
._d{width:22.939200pt;}
._7e{width:25.622400pt;}
._19{width:26.870400pt;}
._7d{width:29.140800pt;}
._7f{width:31.146667pt;}
._7b{width:32.605333pt;}
._7c{width:35.130667pt;}
._50{width:62.186133pt;}
._4f{width:68.469333pt;}
._44{width:74.629333pt;}
._55{width:82.357333pt;}
._45{width:88.517333pt;}
._6f{width:100.688000pt;}
._51{width:102.614400pt;}
._6e{width:108.938667pt;}
._2b{width:110.357333pt;}
._52{width:111.626667pt;}
._23{width:116.517333pt;}
._2e{width:119.280000pt;}
._1e{width:120.512000pt;}
._5c{width:124.880000pt;}
._24{width:125.813333pt;}
._73{width:128.117333pt;}
._1d{width:130.816000pt;}
._6b{width:132.981333pt;}
._69{width:133.952000pt;}
._2d{width:135.072000pt;}
._1f{width:137.013333pt;}
._74{width:139.077333pt;}
._34{width:140.092267pt;}
._27{width:144.368000pt;}
._20{width:147.354667pt;}
._25{width:148.960000pt;}
._76{width:152.482667pt;}
._21{width:156.538667pt;}
._31{width:169.045333pt;}
._64{width:171.210667pt;}
._2a{width:181.925333pt;}
._75{width:193.373333pt;}
._1b{width:201.610667pt;}
._30{width:213.472000pt;}
._26{width:227.584000pt;}
._33{width:233.781333pt;}
._29{width:255.210667pt;}
._22{width:265.776000pt;}
._32{width:268.362667pt;}
._70{width:273.354667pt;}
._6c{width:287.354667pt;}
._3d{width:290.378667pt;}
._72{width:297.994667pt;}
._37{width:302.698667pt;}
._28{width:303.981333pt;}
._6d{width:306.296000pt;}
._38{width:311.360000pt;}
._3b{width:320.618667pt;}
._3c{width:321.525333pt;}
._6a{width:327.413333pt;}
._3a{width:329.914667pt;}
._36{width:337.717333pt;}
._2c{width:340.890667pt;}
._39{width:343.802667pt;}
._4e{width:345.605333pt;}
._2f{width:350.000000pt;}
._48{width:352.240000pt;}
._4b{width:388.640000pt;}
._46{width:401.520000pt;}
._4a{width:433.066667pt;}
._41{width:447.178667pt;}
._4d{width:453.376000pt;}
._43{width:474.805333pt;}
._1c{width:478.389333pt;}
._4c{width:487.957333pt;}
._56{width:490.373333pt;}
._3f{width:499.258667pt;}
._54{width:522.293333pt;}
._42{width:523.576000pt;}
._53{width:557.312000pt;}
._47{width:560.485333pt;}
._7a{width:567.765333pt;}
._49{width:569.594667pt;}
._78{width:577.024000pt;}
._65{width:591.520000pt;}
._79{width:593.749333pt;}
._77{width:603.802667pt;}
._61{width:620.554667pt;}
._5b{width:633.434667pt;}
._60{width:664.981333pt;}
._58{width:679.093333pt;}
._63{width:699.290667pt;}
._5a{width:706.720000pt;}
._57{width:717.285333pt;}
._66{width:720.608000pt;}
._62{width:733.872000pt;}
._59{width:755.490667pt;}
._5e{width:764.698667pt;}
._68{width:768.208000pt;}
._5d{width:792.400000pt;}
._5f{width:801.509333pt;}
._67{width:803.226667pt;}
.fs8{font-size:27.984000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:37.174800pt;}
.y2a{bottom:75.867733pt;}
.y29{bottom:98.267733pt;}
.y137{bottom:98.324533pt;}
.y77{bottom:108.272667pt;}
.yaa{bottom:108.764667pt;}
.y26b{bottom:108.834000pt;}
.y28{bottom:109.467733pt;}
.y126{bottom:109.583467pt;}
.y222{bottom:110.951067pt;}
.y136{bottom:112.988533pt;}
.y27{bottom:120.667733pt;}
.y1d4{bottom:122.262133pt;}
.yb9{bottom:122.827333pt;}
.y76{bottom:122.936667pt;}
.y238{bottom:123.272667pt;}
.ya9{bottom:123.428667pt;}
.y26a{bottom:123.500667pt;}
.y125{bottom:124.247467pt;}
.yed{bottom:125.751333pt;}
.y105{bottom:125.835067pt;}
.y135{bottom:127.652533pt;}
.y221{bottom:127.947067pt;}
.y1d3{bottom:134.264800pt;}
.yb8{bottom:137.491333pt;}
.y75{bottom:137.600667pt;}
.y104{bottom:137.837733pt;}
.y237{bottom:137.936667pt;}
.ya8{bottom:138.092667pt;}
.y269{bottom:138.167333pt;}
.y124{bottom:138.911467pt;}
.yec{bottom:140.415333pt;}
.y220{bottom:143.067067pt;}
.y1d2{bottom:149.366133pt;}
.y103{bottom:151.053733pt;}
.yb7{bottom:152.155333pt;}
.y74{bottom:152.264667pt;}
.y172{bottom:152.558933pt;}
.y236{bottom:152.600667pt;}
.ya7{bottom:152.756667pt;}
.y268{bottom:152.834000pt;}
.y123{bottom:153.575467pt;}
.yeb{bottom:155.079333pt;}
.y21f{bottom:157.645733pt;}
.y1d1{bottom:164.486133pt;}
.y102{bottom:166.173733pt;}
.yb6{bottom:166.819333pt;}
.y73{bottom:166.928667pt;}
.y235{bottom:167.264667pt;}
.y171{bottom:167.278933pt;}
.ya6{bottom:167.420667pt;}
.y267{bottom:167.500667pt;}
.y2a1{bottom:167.711867pt;}
.y122{bottom:168.239467pt;}
.y21e{bottom:169.648400pt;}
.yea{bottom:169.743333pt;}
.y1d0{bottom:179.606133pt;}
.y101{bottom:181.293733pt;}
.yb5{bottom:181.483333pt;}
.y72{bottom:181.592667pt;}
.y21d{bottom:181.651067pt;}
.y234{bottom:181.928667pt;}
.y170{bottom:181.942933pt;}
.ya5{bottom:182.084667pt;}
.y266{bottom:182.167333pt;}
.y2a0{bottom:182.378533pt;}
.ye9{bottom:184.407333pt;}
.y13{bottom:186.345867pt;}
.y21c{bottom:193.653733pt;}
.y1cf{bottom:194.726133pt;}
.yb4{bottom:196.147333pt;}
.y71{bottom:196.256667pt;}
.y100{bottom:196.413733pt;}
.y233{bottom:196.592667pt;}
.ya4{bottom:196.748667pt;}
.y265{bottom:196.834000pt;}
.y29f{bottom:197.045200pt;}
.y121{bottom:197.536400pt;}
.y12{bottom:198.345867pt;}
.ye8{bottom:199.071333pt;}
.y217{bottom:199.664400pt;}
.y21b{bottom:205.656400pt;}
.y1ce{bottom:209.920800pt;}
.y11{bottom:210.345867pt;}
.y120{bottom:210.752400pt;}
.yb3{bottom:210.811333pt;}
.y70{bottom:210.920667pt;}
.y232{bottom:211.256667pt;}
.y16f{bottom:211.270933pt;}
.ya3{bottom:211.412667pt;}
.y264{bottom:211.500667pt;}
.yff{bottom:211.533733pt;}
.y29e{bottom:211.711867pt;}
.ye7{bottom:213.735333pt;}
.y21a{bottom:217.659067pt;}
.y10{bottom:222.345867pt;}
.yb2{bottom:225.475333pt;}
.y6f{bottom:225.584667pt;}
.y11f{bottom:225.872400pt;}
.y231{bottom:225.920667pt;}
.ya2{bottom:226.076667pt;}
.y263{bottom:226.167333pt;}
.y1cd{bottom:226.289867pt;}
.y29d{bottom:226.378533pt;}
.yfe{bottom:226.653733pt;}
.ye6{bottom:228.399333pt;}
.y219{bottom:229.661733pt;}
.yf{bottom:234.345867pt;}
.y1cc{bottom:238.292533pt;}
.yb1{bottom:240.139333pt;}
.y6e{bottom:240.248667pt;}
.y230{bottom:240.584667pt;}
.y16e{bottom:240.598933pt;}
.ya1{bottom:240.740667pt;}
.y262{bottom:240.834000pt;}
.y11e{bottom:240.992400pt;}
.y29c{bottom:241.045200pt;}
.y218{bottom:241.664400pt;}
.yfd{bottom:241.773733pt;}
.y21{bottom:242.975200pt;}
.ye5{bottom:243.063333pt;}
.ye{bottom:246.345867pt;}
.y20{bottom:254.175200pt;}
.yb0{bottom:254.803333pt;}
.y6d{bottom:254.912667pt;}
.y22f{bottom:255.248667pt;}
.y16d{bottom:255.262933pt;}
.ya0{bottom:255.404667pt;}
.y261{bottom:255.500667pt;}
.y216{bottom:255.692400pt;}
.y29b{bottom:255.711867pt;}
.y11d{bottom:256.112400pt;}
.yfc{bottom:256.893733pt;}
.ye4{bottom:257.727333pt;}
.yd{bottom:258.345867pt;}
.y1c9{bottom:264.435200pt;}
.y1f{bottom:265.375200pt;}
.y215{bottom:267.695067pt;}
.yaf{bottom:269.467333pt;}
.y6c{bottom:269.576667pt;}
.y22e{bottom:269.912667pt;}
.y16c{bottom:269.926933pt;}
.y9f{bottom:270.068667pt;}
.y260{bottom:270.167333pt;}
.yc{bottom:270.345867pt;}
.y29a{bottom:270.378533pt;}
.y11c{bottom:271.232400pt;}
.yfb{bottom:272.013733pt;}
.ye3{bottom:272.391333pt;}
.y1c8{bottom:276.437867pt;}
.y1e{bottom:276.575200pt;}
.y214{bottom:279.697733pt;}
.yb{bottom:282.345867pt;}
.yae{bottom:284.131333pt;}
.y6b{bottom:284.240667pt;}
.y22d{bottom:284.576667pt;}
.y16b{bottom:284.590933pt;}
.y9e{bottom:284.732667pt;}
.y25f{bottom:284.834000pt;}
.y299{bottom:285.045200pt;}
.y11b{bottom:286.352400pt;}
.ye2{bottom:287.055333pt;}
.yfa{bottom:287.133733pt;}
.y1d{bottom:287.775200pt;}
.y1c7{bottom:291.539200pt;}
.y213{bottom:291.700400pt;}
.y20f{bottom:291.709733pt;}
.ya{bottom:294.345867pt;}
.yad{bottom:298.795333pt;}
.y6a{bottom:298.904667pt;}
.y1c{bottom:298.975200pt;}
.y22c{bottom:299.240667pt;}
.y16a{bottom:299.254933pt;}
.y25e{bottom:299.500667pt;}
.y298{bottom:299.711867pt;}
.y11a{bottom:301.472400pt;}
.ye1{bottom:301.719333pt;}
.yf9{bottom:302.253733pt;}
.y212{bottom:303.703067pt;}
.y9{bottom:306.345867pt;}
.y1c6{bottom:306.659200pt;}
.y1b{bottom:310.175200pt;}
.yac{bottom:313.459333pt;}
.y69{bottom:313.568667pt;}
.y22b{bottom:313.904667pt;}
.y9d{bottom:314.060667pt;}
.y25d{bottom:314.167333pt;}
.y297{bottom:314.378533pt;}
.y211{bottom:315.705733pt;}
.ye0{bottom:316.383333pt;}
.y119{bottom:316.592400pt;}
.yf8{bottom:317.373733pt;}
.y8{bottom:318.345867pt;}
.y1c5{bottom:321.779200pt;}
.y210{bottom:327.708400pt;}
.yab{bottom:328.123333pt;}
.y68{bottom:328.232667pt;}
.y22a{bottom:328.568667pt;}
.y169{bottom:328.582933pt;}
.y25c{bottom:328.834000pt;}
.y296{bottom:329.045200pt;}
.ydf{bottom:331.047333pt;}
.y118{bottom:331.712400pt;}
.yf7{bottom:332.493733pt;}
.y1c4{bottom:336.899200pt;}
.y20e{bottom:341.736400pt;}
.y67{bottom:342.896667pt;}
.y229{bottom:343.232667pt;}
.y9c{bottom:343.388667pt;}
.y25b{bottom:343.500667pt;}
.y295{bottom:343.711867pt;}
.yde{bottom:345.711333pt;}
.y117{bottom:346.832400pt;}
.yf6{bottom:347.613733pt;}
.y1c3{bottom:352.019200pt;}
.y30{bottom:352.730667pt;}
.y20d{bottom:353.739067pt;}
.y66{bottom:357.560667pt;}
.y228{bottom:357.896667pt;}
.y168{bottom:357.910933pt;}
.y9b{bottom:358.052667pt;}
.y25a{bottom:358.167333pt;}
.y294{bottom:358.378533pt;}
.ydd{bottom:360.375333pt;}
.y116{bottom:361.952400pt;}
.yf5{bottom:362.733733pt;}
.y20c{bottom:365.741733pt;}
.y1c2{bottom:367.213867pt;}
.y208{bottom:371.752400pt;}
.y65{bottom:372.224667pt;}
.y227{bottom:372.560667pt;}
.y167{bottom:372.574933pt;}
.y9a{bottom:372.716667pt;}
.y259{bottom:372.834000pt;}
.y293{bottom:373.045200pt;}
.y1c1{bottom:374.773867pt;}
.ydc{bottom:375.039333pt;}
.y115{bottom:377.072400pt;}
.y20b{bottom:377.744400pt;}
.yf4{bottom:377.853733pt;}
.y26{bottom:383.418400pt;}
.y64{bottom:386.888667pt;}
.y226{bottom:387.224667pt;}
.y166{bottom:387.238933pt;}
.y99{bottom:387.380667pt;}
.y258{bottom:387.500667pt;}
.y292{bottom:387.711867pt;}
.ydb{bottom:389.703333pt;}
.y20a{bottom:389.747067pt;}
.y114{bottom:392.192400pt;}
.yf3{bottom:393.048400pt;}
.y25{bottom:399.419733pt;}
.y1cb{bottom:400.085867pt;}
.yf2{bottom:400.608400pt;}
.y63{bottom:401.552667pt;}
.y209{bottom:401.749733pt;}
.y225{bottom:401.888667pt;}
.y165{bottom:401.902933pt;}
.y98{bottom:402.044667pt;}
.y257{bottom:402.167333pt;}
.y291{bottom:402.378533pt;}
.yda{bottom:404.367333pt;}
.y113{bottom:407.312400pt;}
.y1ca{bottom:412.088533pt;}
.y207{bottom:415.787067pt;}
.y62{bottom:416.216667pt;}
.y224{bottom:416.552667pt;}
.y164{bottom:416.566933pt;}
.y97{bottom:416.708667pt;}
.y256{bottom:416.834000pt;}
.y290{bottom:417.045200pt;}
.yd9{bottom:419.031333pt;}
.y134{bottom:420.983200pt;}
.y112{bottom:422.432400pt;}
.yf1{bottom:424.544533pt;}
.y206{bottom:427.789733pt;}
.y61{bottom:430.880667pt;}
.y163{bottom:431.230933pt;}
.y96{bottom:431.372667pt;}
.y255{bottom:431.500667pt;}
.y28f{bottom:431.711867pt;}
.y133{bottom:432.985867pt;}
.yf0{bottom:436.547200pt;}
.y111{bottom:437.011067pt;}
.y205{bottom:439.792400pt;}
.y202{bottom:439.801733pt;}
.y1c0{bottom:443.896000pt;}
.y60{bottom:445.544667pt;}
.yd8{bottom:445.695333pt;}
.y199{bottom:445.712667pt;}
.y223{bottom:445.880667pt;}
.y162{bottom:445.894933pt;}
.y95{bottom:446.036667pt;}
.y254{bottom:446.167333pt;}
.y28e{bottom:446.378533pt;}
.y110{bottom:449.013733pt;}
.y204{bottom:451.795067pt;}
.y3b{bottom:454.056800pt;}
.y1bf{bottom:458.560000pt;}
.y132{bottom:459.671200pt;}
.y5f{bottom:460.208667pt;}
.yd7{bottom:460.359333pt;}
.y198{bottom:460.376667pt;}
.y161{bottom:460.558933pt;}
.y94{bottom:460.700667pt;}
.y253{bottom:460.834000pt;}
.y28d{bottom:461.045200pt;}
.y203{bottom:463.797733pt;}
.y10f{bottom:464.778133pt;}
.y3a{bottom:466.056800pt;}
.y1a{bottom:472.192533pt;}
.y1be{bottom:473.224000pt;}
.y131{bottom:474.335200pt;}
.y5e{bottom:474.872667pt;}
.y197{bottom:475.040667pt;}
.y160{bottom:475.222933pt;}
.y93{bottom:475.364667pt;}
.y252{bottom:475.500667pt;}
.y28c{bottom:475.711867pt;}
.y10e{bottom:476.780800pt;}
.y201{bottom:477.835067pt;}
.y39{bottom:478.056800pt;}
.y18b{bottom:482.975333pt;}
.y19{bottom:483.392533pt;}
.y1bd{bottom:487.888000pt;}
.y130{bottom:488.999200pt;}
.y5d{bottom:489.536667pt;}
.yd6{bottom:489.687333pt;}
.y196{bottom:489.704667pt;}
.y200{bottom:489.837733pt;}
.y92{bottom:490.028667pt;}
.y38{bottom:490.056800pt;}
.y251{bottom:490.167333pt;}
.y28b{bottom:490.378533pt;}
.y18{bottom:494.592533pt;}
.y18a{bottom:494.978000pt;}
.y1ff{bottom:501.840400pt;}
.y1fc{bottom:501.849733pt;}
.y37{bottom:502.056800pt;}
.y1bc{bottom:502.552000pt;}
.y10d{bottom:503.471467pt;}
.y12f{bottom:503.663200pt;}
.y5c{bottom:504.200667pt;}
.yd5{bottom:504.351333pt;}
.y195{bottom:504.368667pt;}
.y15f{bottom:504.524133pt;}
.y91{bottom:504.692667pt;}
.y250{bottom:504.834000pt;}
.y28a{bottom:505.045200pt;}
.y17{bottom:505.792533pt;}
.y189{bottom:506.980667pt;}
.y1fe{bottom:513.843067pt;}
.y36{bottom:514.056800pt;}
.y15e{bottom:516.526800pt;}
.y16{bottom:516.992533pt;}
.y1bb{bottom:517.216000pt;}
.y10c{bottom:518.135467pt;}
.y12e{bottom:518.327200pt;}
.y5b{bottom:518.864667pt;}
.yd4{bottom:519.015333pt;}
.y194{bottom:519.032667pt;}
.y90{bottom:519.356667pt;}
.y24f{bottom:519.500667pt;}
.y289{bottom:519.711867pt;}
.y1fd{bottom:525.845733pt;}
.y35{bottom:526.056800pt;}
.y15{bottom:528.192533pt;}
.y15d{bottom:529.742800pt;}
.y1ba{bottom:531.880000pt;}
.y10b{bottom:532.799467pt;}
.y12d{bottom:532.991200pt;}
.y5a{bottom:533.528667pt;}
.y188{bottom:533.679333pt;}
.y193{bottom:533.696667pt;}
.y8f{bottom:534.020667pt;}
.y24e{bottom:534.167333pt;}
.y288{bottom:534.378533pt;}
.y34{bottom:538.056800pt;}
.y14{bottom:539.392533pt;}
.y1fb{bottom:540.499067pt;}
.y15c{bottom:544.862800pt;}
.y1b9{bottom:546.544000pt;}
.y12c{bottom:547.655200pt;}
.y59{bottom:548.192667pt;}
.yd3{bottom:548.343333pt;}
.y192{bottom:548.360667pt;}
.y8e{bottom:548.684667pt;}
.y24d{bottom:548.834000pt;}
.y287{bottom:549.045200pt;}
.y33{bottom:550.056800pt;}
.y1fa{bottom:554.993733pt;}
.y15b{bottom:559.982800pt;}
.y1f9{bottom:560.920400pt;}
.y1b8{bottom:561.208000pt;}
.y32{bottom:562.056800pt;}
.y10a{bottom:562.127467pt;}
.y12b{bottom:562.343467pt;}
.y58{bottom:562.856667pt;}
.y187{bottom:563.007333pt;}
.y191{bottom:563.024667pt;}
.y8d{bottom:563.348667pt;}
.y24c{bottom:563.500667pt;}
.y286{bottom:563.711867pt;}
.y23{bottom:572.723467pt;}
.y31{bottom:574.056800pt;}
.y15a{bottom:575.102800pt;}
.y1b7{bottom:575.872000pt;}
.y12a{bottom:577.007467pt;}
.y57{bottom:577.520667pt;}
.yd2{bottom:577.671333pt;}
.y190{bottom:577.688667pt;}
.y24b{bottom:578.167333pt;}
.y285{bottom:578.378533pt;}
.y1f8{bottom:580.875067pt;}
.y22{bottom:586.056800pt;}
.y159{bottom:590.222800pt;}
.y1b6{bottom:590.536000pt;}
.y109{bottom:591.455467pt;}
.y129{bottom:591.671467pt;}
.y56{bottom:592.184667pt;}
.y186{bottom:592.335333pt;}
.y18f{bottom:592.352667pt;}
.y8c{bottom:592.676667pt;}
.y24a{bottom:592.834000pt;}
.y1f7{bottom:592.877733pt;}
.y284{bottom:593.045200pt;}
.y1f6{bottom:604.880400pt;}
.y1b5{bottom:605.200000pt;}
.y158{bottom:605.342800pt;}
.y108{bottom:606.119467pt;}
.y128{bottom:606.335467pt;}
.yd1{bottom:606.831333pt;}
.y55{bottom:606.848667pt;}
.y185{bottom:606.999333pt;}
.y18e{bottom:607.016667pt;}
.y249{bottom:607.500667pt;}
.y283{bottom:607.711867pt;}
.y1f2{bottom:610.891067pt;}
.y1f5{bottom:616.883067pt;}
.y1b4{bottom:619.864000pt;}
.y1{bottom:620.255333pt;}
.y24{bottom:620.298933pt;}
.y157{bottom:620.462800pt;}
.y107{bottom:620.783467pt;}
.yd0{bottom:621.495333pt;}
.y54{bottom:621.512667pt;}
.y184{bottom:621.663333pt;}
.y18d{bottom:621.680667pt;}
.y8b{bottom:622.004667pt;}
.y248{bottom:622.167333pt;}
.y282{bottom:622.378533pt;}
.y1f4{bottom:628.885733pt;}
.y1b3{bottom:634.528000pt;}
.y106{bottom:635.447467pt;}
.y156{bottom:635.582800pt;}
.y127{bottom:635.663467pt;}
.ycf{bottom:636.159333pt;}
.y53{bottom:636.176667pt;}
.y183{bottom:636.327333pt;}
.y8a{bottom:636.668667pt;}
.y247{bottom:636.834000pt;}
.y281{bottom:637.045200pt;}
.y1f3{bottom:640.888400pt;}
.y1b2{bottom:649.192000pt;}
.y155{bottom:650.702800pt;}
.yce{bottom:650.823333pt;}
.y52{bottom:650.840667pt;}
.y182{bottom:650.991333pt;}
.y18c{bottom:651.008667pt;}
.y89{bottom:651.332667pt;}
.y280{bottom:651.711867pt;}
.y1f1{bottom:654.925733pt;}
.y1b1{bottom:663.856000pt;}
.ycd{bottom:665.487333pt;}
.y51{bottom:665.504667pt;}
.y181{bottom:665.655333pt;}
.y154{bottom:665.822800pt;}
.y88{bottom:665.996667pt;}
.y246{bottom:666.344667pt;}
.y27f{bottom:666.378533pt;}
.y1f0{bottom:666.928400pt;}
.y1ed{bottom:672.929733pt;}
.y148{bottom:672.936800pt;}
.y1b0{bottom:678.520000pt;}
.y1ef{bottom:678.931067pt;}
.ycc{bottom:680.151333pt;}
.y50{bottom:680.168667pt;}
.y180{bottom:680.319333pt;}
.y87{bottom:680.660667pt;}
.y153{bottom:680.942800pt;}
.y27e{bottom:681.045200pt;}
.y147{bottom:688.056800pt;}
.y7{bottom:690.652933pt;}
.y1ee{bottom:690.933733pt;}
.ycb{bottom:694.815333pt;}
.y4f{bottom:694.832667pt;}
.y17f{bottom:694.983333pt;}
.y86{bottom:695.324667pt;}
.y245{bottom:695.504667pt;}
.y27d{bottom:695.711867pt;}
.y152{bottom:696.062800pt;}
.y146{bottom:703.176800pt;}
.y6{bottom:703.984933pt;}
.y1ec{bottom:704.961733pt;}
.y1af{bottom:707.848000pt;}
.yca{bottom:709.479333pt;}
.y4e{bottom:709.496667pt;}
.y17e{bottom:709.663333pt;}
.y85{bottom:709.988667pt;}
.y244{bottom:710.168667pt;}
.y27c{bottom:710.378533pt;}
.y151{bottom:711.182800pt;}
.y1eb{bottom:716.964400pt;}
.y5{bottom:717.316933pt;}
.y145{bottom:718.296800pt;}
.y1e8{bottom:722.965733pt;}
.yc9{bottom:724.143333pt;}
.y4d{bottom:724.160667pt;}
.y84{bottom:724.652667pt;}
.y27b{bottom:725.045200pt;}
.y150{bottom:726.302800pt;}
.y1ea{bottom:728.967067pt;}
.y144{bottom:733.416800pt;}
.y1ae{bottom:737.150400pt;}
.yc8{bottom:738.807333pt;}
.y4c{bottom:738.824667pt;}
.y17d{bottom:738.991333pt;}
.y83{bottom:739.316667pt;}
.y243{bottom:739.496667pt;}
.y27a{bottom:739.711867pt;}
.y1e9{bottom:740.969733pt;}
.y14f{bottom:741.422800pt;}
.y4{bottom:745.768400pt;}
.y143{bottom:748.536800pt;}
.y1ad{bottom:749.815733pt;}
.yc7{bottom:753.471333pt;}
.y4b{bottom:753.488667pt;}
.y82{bottom:753.980667pt;}
.y279{bottom:754.378533pt;}
.y1e7{bottom:754.997733pt;}
.y14e{bottom:756.542800pt;}
.y1ac{bottom:761.818400pt;}
.y142{bottom:763.656800pt;}
.y1e6{bottom:767.000400pt;}
.yc6{bottom:768.135333pt;}
.y4a{bottom:768.152667pt;}
.y17c{bottom:768.319333pt;}
.y81{bottom:768.644667pt;}
.y242{bottom:768.656667pt;}
.y278{bottom:769.045200pt;}
.y14d{bottom:772.353467pt;}
.y1e3{bottom:773.001733pt;}
.y1ab{bottom:776.397067pt;}
.y141{bottom:778.776800pt;}
.y1e5{bottom:779.003067pt;}
.y3{bottom:781.999333pt;}
.yc5{bottom:782.799333pt;}
.y49{bottom:782.816667pt;}
.y17b{bottom:782.983333pt;}
.y80{bottom:783.308667pt;}
.y277{bottom:783.711867pt;}
.y14c{bottom:788.118000pt;}
.y1e4{bottom:791.005733pt;}
.y1aa{bottom:791.517067pt;}
.y140{bottom:793.896800pt;}
.yc4{bottom:797.463333pt;}
.y48{bottom:797.480667pt;}
.y17a{bottom:797.663333pt;}
.y241{bottom:797.984667pt;}
.y276{bottom:798.378533pt;}
.y14b{bottom:800.120667pt;}
.y1e2{bottom:805.033733pt;}
.y1a9{bottom:806.637067pt;}
.y2{bottom:807.599333pt;}
.y13f{bottom:809.016800pt;}
.yc3{bottom:812.127333pt;}
.y47{bottom:812.144667pt;}
.y179{bottom:812.327333pt;}
.y7f{bottom:812.636667pt;}
.y275{bottom:813.045200pt;}
.y1e1{bottom:817.036400pt;}
.y1a8{bottom:821.215733pt;}
.y1a5{bottom:821.225067pt;}
.y1a2{bottom:821.234400pt;}
.y13e{bottom:824.136800pt;}
.yc2{bottom:826.791333pt;}
.y46{bottom:826.808667pt;}
.y178{bottom:826.991333pt;}
.y240{bottom:827.144667pt;}
.y274{bottom:827.711867pt;}
.y1e0{bottom:829.039067pt;}
.y1dd{bottom:829.048400pt;}
.y1a7{bottom:833.218400pt;}
.y1a4{bottom:833.227733pt;}
.y1a0{bottom:833.237067pt;}
.y13d{bottom:839.256800pt;}
.y2b{bottom:840.400800pt;}
.y1df{bottom:841.041733pt;}
.yc1{bottom:841.455333pt;}
.y45{bottom:841.472667pt;}
.y23f{bottom:841.808667pt;}
.y7e{bottom:841.964667pt;}
.y273{bottom:842.378533pt;}
.y1a6{bottom:845.221067pt;}
.y1a3{bottom:845.230400pt;}
.y1a1{bottom:845.239733pt;}
.y1de{bottom:853.044400pt;}
.y13c{bottom:854.376800pt;}
.yc0{bottom:856.119333pt;}
.y44{bottom:856.136667pt;}
.y177{bottom:856.319333pt;}
.y23e{bottom:856.472667pt;}
.y272{bottom:857.045200pt;}
.y19f{bottom:859.734400pt;}
.y1dc{bottom:867.081733pt;}
.y2d{bottom:867.741733pt;}
.y13b{bottom:869.496800pt;}
.ybf{bottom:870.783333pt;}
.y43{bottom:870.800667pt;}
.y7d{bottom:870.956667pt;}
.y23d{bottom:871.136667pt;}
.y271{bottom:871.711867pt;}
.y19e{bottom:876.118000pt;}
.y1db{bottom:879.084400pt;}
.y13a{bottom:884.616800pt;}
.y1d8{bottom:885.085733pt;}
.ybe{bottom:885.447333pt;}
.y42{bottom:885.464667pt;}
.y7c{bottom:885.620667pt;}
.y176{bottom:885.650000pt;}
.y23c{bottom:885.800667pt;}
.y270{bottom:886.378533pt;}
.y19d{bottom:888.120667pt;}
.y2e{bottom:888.382267pt;}
.y1da{bottom:891.087067pt;}
.y139{bottom:899.736800pt;}
.ybd{bottom:900.111333pt;}
.y41{bottom:900.128667pt;}
.y7b{bottom:900.284667pt;}
.y175{bottom:900.326933pt;}
.y23b{bottom:900.464667pt;}
.y26f{bottom:901.045200pt;}
.y1d9{bottom:903.089733pt;}
.ybc{bottom:914.775333pt;}
.y40{bottom:914.792667pt;}
.y19c{bottom:914.876667pt;}
.y138{bottom:914.931467pt;}
.y7a{bottom:914.948667pt;}
.y174{bottom:914.990933pt;}
.y23a{bottom:915.128667pt;}
.y2f{bottom:915.555600pt;}
.y26e{bottom:915.711867pt;}
.y1d7{bottom:917.733733pt;}
.ybb{bottom:929.439333pt;}
.y3f{bottom:929.456667pt;}
.y19b{bottom:929.540667pt;}
.y79{bottom:929.612667pt;}
.y26d{bottom:930.378533pt;}
.y14a{bottom:933.924800pt;}
.yef{bottom:933.957867pt;}
.y1d6{bottom:934.117333pt;}
.yba{bottom:944.103333pt;}
.y3e{bottom:944.120667pt;}
.y19a{bottom:944.204667pt;}
.y78{bottom:944.276667pt;}
.y173{bottom:944.318933pt;}
.y239{bottom:944.456667pt;}
.y26c{bottom:945.045200pt;}
.y149{bottom:945.927467pt;}
.yee{bottom:945.960533pt;}
.y1d5{bottom:946.120000pt;}
.y2c{bottom:954.466800pt;}
.y3d{bottom:987.314400pt;}
.hc{height:21.906250pt;}
.h7{height:25.283854pt;}
.h13{height:25.557292pt;}
.h8{height:25.940104pt;}
.hd{height:27.589333pt;}
.h6{height:29.645833pt;}
.hb{height:31.530667pt;}
.h16{height:32.507812pt;}
.ha{height:32.848958pt;}
.h2{height:32.859375pt;}
.h5{height:33.351562pt;}
.hf{height:33.493333pt;}
.h10{height:34.990628pt;}
.h1a{height:37.541667pt;}
.h9{height:40.161458pt;}
.h12{height:42.074375pt;}
.h15{height:42.137308pt;}
.h17{height:42.170375pt;}
.h11{height:42.234375pt;}
.h4{height:43.300841pt;}
.h19{height:49.861292pt;}
.h18{height:49.945437pt;}
.h14{height:55.797292pt;}
.h3{height:58.416667pt;}
.he{height:73.466667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:56.692933pt;}
.x4{left:58.258400pt;}
.x21{left:60.514267pt;}
.xa{left:64.252000pt;}
.x16{left:71.812933pt;}
.x1c{left:72.913200pt;}
.x10{left:75.588667pt;}
.x1a{left:79.370000pt;}
.x34{left:84.543467pt;}
.xe{left:87.626133pt;}
.xf{left:90.708667pt;}
.x2a{left:102.281467pt;}
.x29{left:108.394533pt;}
.x2c{left:111.633467pt;}
.x1d{left:115.930533pt;}
.x2d{left:117.924133pt;}
.x2b{left:118.857467pt;}
.x20{left:136.058267pt;}
.x2e{left:137.320667pt;}
.x25{left:155.061333pt;}
.x2{left:158.266133pt;}
.x2f{left:159.363067pt;}
.x30{left:165.771067pt;}
.x3{left:168.996800pt;}
.x24{left:174.110667pt;}
.x22{left:179.689600pt;}
.x1e{left:187.703867pt;}
.x26{left:203.744000pt;}
.x1f{left:204.746533pt;}
.x1b{left:206.900667pt;}
.x27{left:208.840000pt;}
.x8{left:215.433067pt;}
.x1{left:222.992133pt;}
.xd{left:241.456800pt;}
.x7{left:286.921200pt;}
.xc{left:294.734667pt;}
.x15{left:298.017067pt;}
.x6{left:301.429200pt;}
.x5{left:309.085200pt;}
.x28{left:312.216000pt;}
.xb{left:318.449067pt;}
.x17{left:400.628933pt;}
.x18{left:415.748933pt;}
.x11{left:419.508667pt;}
.x13{left:434.628667pt;}
.x33{left:488.811067pt;}
.x32{left:499.155067pt;}
.x23{left:532.365867pt;}
.x31{left:537.687067pt;}
.x19{left:540.704933pt;}
.x12{left:558.252667pt;}
.x14{left:699.909600pt;}
}




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