
    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_ae9bdf87fd47cab6b24aa49c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191895;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_50322e391e03328317035473.woff')format("woff");}.ff2{font-family:ff2;line-height:1.060547;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_b379a5ebd62bbf52deb45257.woff')format("woff");}.ff3{font-family:ff3;line-height:1.182129;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_d6bdfbc7490d0aaf8dc1f9af.woff')format("woff");}.ff4{font-family:ff4;line-height:1.191895;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_83056551f3ead5157c03d0ae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.024414;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_d5c75ca0a04b51e4684e5a8d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.191895;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_f3b6cb56025028908526b3a6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087402;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_2d3c7edf4f70c8effecef668.woff')format("woff");}.ff8{font-family:ff8;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v3{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.935000px;}
.v2{vertical-align:16.758000px;}
.v4{vertical-align:36.000000px;}
.lsd{letter-spacing:-7.371000px;}
.ls2b{letter-spacing:-3.243000px;}
.ls2d{letter-spacing:-2.898000px;}
.ls16{letter-spacing:-2.760000px;}
.ls20{letter-spacing:-2.553000px;}
.ls47{letter-spacing:-2.520000px;}
.ls18{letter-spacing:-2.277000px;}
.ls1e{letter-spacing:-2.268000px;}
.ls1c{letter-spacing:-2.208000px;}
.ls4{letter-spacing:-2.160000px;}
.ls22{letter-spacing:-2.109000px;}
.ls34{letter-spacing:-2.070000px;}
.ls10{letter-spacing:-2.001000px;}
.ls46{letter-spacing:-1.980000px;}
.ls15{letter-spacing:-1.863000px;}
.ls29{letter-spacing:-1.782000px;}
.ls2a{letter-spacing:-1.725000px;}
.ls43{letter-spacing:-1.638000px;}
.lsf{letter-spacing:-1.587000px;}
.lse{letter-spacing:-1.518000px;}
.ls28{letter-spacing:-1.512000px;}
.ls24{letter-spacing:-1.449000px;}
.ls11{letter-spacing:-1.380000px;}
.ls2f{letter-spacing:-1.296000px;}
.ls1f{letter-spacing:-1.242000px;}
.ls1d{letter-spacing:-1.173000px;}
.ls23{letter-spacing:-1.134000px;}
.ls48{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.855000px;}
.ls26{letter-spacing:-0.690000px;}
.ls2e{letter-spacing:-0.627000px;}
.ls25{letter-spacing:-0.483000px;}
.ls30{letter-spacing:-0.414000px;}
.ls3{letter-spacing:-0.240000px;}
.ls35{letter-spacing:-0.081000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000300px;}
.ls19{letter-spacing:0.005700px;}
.ls42{letter-spacing:0.573300px;}
.ls14{letter-spacing:1.053000px;}
.ls27{letter-spacing:1.482000px;}
.ls45{letter-spacing:1.764000px;}
.ls21{letter-spacing:1.932000px;}
.ls9{letter-spacing:1.971000px;}
.ls8{letter-spacing:1.981800px;}
.ls40{letter-spacing:1.997100px;}
.ls3e{letter-spacing:2.066400px;}
.lsa{letter-spacing:2.400000px;}
.ls37{letter-spacing:3.024000px;}
.ls3d{letter-spacing:3.300000px;}
.ls33{letter-spacing:3.600000px;}
.ls36{letter-spacing:3.654000px;}
.ls2c{letter-spacing:4.029600px;}
.ls0{letter-spacing:4.200000px;}
.ls1a{letter-spacing:5.025000px;}
.ls31{letter-spacing:5.244000px;}
.ls5{letter-spacing:5.760000px;}
.ls6{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls3c{letter-spacing:6.035400px;}
.ls41{letter-spacing:6.199200px;}
.lsc{letter-spacing:6.300000px;}
.ls49{letter-spacing:6.675000px;}
.lsb{letter-spacing:7.650000px;}
.ls1b{letter-spacing:8.160156px;}
.ls32{letter-spacing:8.160756px;}
.ls17{letter-spacing:8.175000px;}
.ls39{letter-spacing:8.316000px;}
.ls12{letter-spacing:8.325000px;}
.ls3b{letter-spacing:8.429400px;}
.ls3a{letter-spacing:8.820000px;}
.ls44{letter-spacing:9.288000px;}
.ls38{letter-spacing:17.262000px;}
.ls3f{letter-spacing:19.920600px;}
.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;}
}
.ws15{word-spacing:-29.400000px;}
.ws1b{word-spacing:-29.250000px;}
.ws8{word-spacing:-28.725000px;}
.ws0{word-spacing:-28.188000px;}
.ws5b{word-spacing:-27.750000px;}
.ws47{word-spacing:-26.523000px;}
.ws1f{word-spacing:-26.100000px;}
.ws46{word-spacing:-26.019000px;}
.ws3f{word-spacing:-24.675000px;}
.ws4b{word-spacing:-24.375000px;}
.ws3{word-spacing:-22.740000px;}
.ws44{word-spacing:-22.680000px;}
.ws1{word-spacing:-22.620000px;}
.ws3a{word-spacing:-21.465000px;}
.ws14{word-spacing:-19.389000px;}
.ws9{word-spacing:-18.102000px;}
.ws48{word-spacing:-17.703000px;}
.wsc{word-spacing:-17.043000px;}
.ws2{word-spacing:-16.860000px;}
.ws40{word-spacing:-16.353000px;}
.ws50{word-spacing:-16.002000px;}
.ws21{word-spacing:-15.870000px;}
.ws27{word-spacing:-15.801000px;}
.ws59{word-spacing:-15.780000px;}
.ws10{word-spacing:-15.663000px;}
.ws2e{word-spacing:-15.594000px;}
.ws49{word-spacing:-15.561000px;}
.wsd{word-spacing:-15.525000px;}
.wse{word-spacing:-15.456000px;}
.wsb{word-spacing:-15.390000px;}
.ws37{word-spacing:-15.318000px;}
.ws11{word-spacing:-15.174000px;}
.wsf{word-spacing:-15.042000px;}
.ws41{word-spacing:-14.973000px;}
.ws2f{word-spacing:-14.820000px;}
.ws1c{word-spacing:-14.766000px;}
.ws28{word-spacing:-14.490000px;}
.ws17{word-spacing:-14.283000px;}
.ws39{word-spacing:-14.145000px;}
.ws4c{word-spacing:-13.923000px;}
.ws12{word-spacing:-13.338000px;}
.ws4d{word-spacing:-12.840000px;}
.ws58{word-spacing:-12.300000px;}
.ws34{word-spacing:-11.556000px;}
.ws16{word-spacing:-11.303787px;}
.ws25{word-spacing:-11.070000px;}
.wsa{word-spacing:-9.829380px;}
.ws4a{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.ws7{word-spacing:-4.200000px;}
.ws13{word-spacing:-2.400000px;}
.ws29{word-spacing:-2.208000px;}
.ws4e{word-spacing:-1.764000px;}
.ws35{word-spacing:-1.482000px;}
.ws19{word-spacing:-1.053000px;}
.ws24{word-spacing:-0.897000px;}
.ws3d{word-spacing:-0.216000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:0.240000px;}
.ws1d{word-spacing:0.276000px;}
.ws3c{word-spacing:0.414000px;}
.ws31{word-spacing:0.483000px;}
.ws3b{word-spacing:0.627000px;}
.ws32{word-spacing:0.690000px;}
.ws18{word-spacing:0.855000px;}
.ws33{word-spacing:0.897000px;}
.ws2d{word-spacing:1.134000px;}
.ws30{word-spacing:1.173000px;}
.ws20{word-spacing:1.380000px;}
.ws36{word-spacing:1.512000px;}
.ws26{word-spacing:1.674000px;}
.ws1a{word-spacing:1.863000px;}
.ws45{word-spacing:2.070000px;}
.ws2c{word-spacing:2.109000px;}
.ws22{word-spacing:2.208000px;}
.ws3e{word-spacing:2.322000px;}
.ws2b{word-spacing:2.346000px;}
.ws38{word-spacing:3.243000px;}
.ws1e{word-spacing:4.209000px;}
.ws23{word-spacing:4.830000px;}
.ws2a{word-spacing:5.727000px;}
.ws42{word-spacing:6.003000px;}
.ws43{word-spacing:7.590000px;}
.ws4f{word-spacing:14.580000px;}
.ws66{word-spacing:121.248000px;}
.ws6f{word-spacing:171.396000px;}
.ws64{word-spacing:190.560000px;}
.ws5f{word-spacing:208.680000px;}
.ws52{word-spacing:211.020000px;}
.ws69{word-spacing:211.200000px;}
.ws6c{word-spacing:212.160000px;}
.ws5d{word-spacing:213.426000px;}
.ws56{word-spacing:273.948000px;}
.ws65{word-spacing:282.876000px;}
.ws5c{word-spacing:303.084000px;}
.ws61{word-spacing:327.480000px;}
.ws6b{word-spacing:350.448000px;}
.ws5a{word-spacing:352.140000px;}
.ws62{word-spacing:361.770000px;}
.ws63{word-spacing:365.544000px;}
.ws5e{word-spacing:393.600000px;}
.ws60{word-spacing:396.720000px;}
.ws54{word-spacing:397.620000px;}
.ws57{word-spacing:405.654000px;}
.ws6e{word-spacing:407.538000px;}
.ws6a{word-spacing:414.648000px;}
.ws51{word-spacing:415.038000px;}
.ws53{word-spacing:423.090000px;}
.ws6d{word-spacing:429.384000px;}
.ws67{word-spacing:436.488000px;}
.ws68{word-spacing:445.380000px;}
.ws55{word-spacing:446.976000px;}
._2e{margin-left:-19.206000px;}
._2c{margin-left:-16.917900px;}
._35{margin-left:-11.353800px;}
._34{margin-left:-9.983100px;}
._21{margin-left:-7.926186px;}
._a{margin-left:-6.126000px;}
._c{margin-left:-4.428000px;}
._1e{margin-left:-3.411900px;}
._3{margin-left:-2.400000px;}
._9{margin-left:-1.278000px;}
._4{width:1.002000px;}
._1{width:2.400000px;}
._b{width:3.758400px;}
._1f{width:4.771500px;}
._5{width:5.772000px;}
._6{width:6.798000px;}
._7{width:8.238000px;}
._8{width:9.282000px;}
._14{width:10.383000px;}
._11{width:11.988000px;}
._1c{width:13.713300px;}
._15{width:14.822700px;}
._13{width:16.254900px;}
._1d{width:18.165000px;}
._f{width:19.951200px;}
._e{width:21.153600px;}
._16{width:22.397400px;}
._1b{width:23.882400px;}
._26{width:25.557600px;}
._27{width:26.565900px;}
._23{width:27.704160px;}
._33{width:29.833800px;}
._2a{width:31.063800px;}
._31{width:35.998200px;}
._30{width:37.122900px;}
._28{width:38.460600px;}
._17{width:43.445160px;}
._38{width:47.469900px;}
._36{width:54.054000px;}
._37{width:55.062000px;}
._d{width:85.554000px;}
._39{width:103.140000px;}
._3a{width:147.954000px;}
._40{width:177.720000px;}
._43{width:180.270000px;}
._3e{width:181.686000px;}
._3d{width:190.920000px;}
._3b{width:192.480000px;}
._41{width:194.016000px;}
._3c{width:231.120000px;}
._3f{width:241.920000px;}
._12{width:260.610000px;}
._44{width:347.349900px;}
._42{width:387.711900px;}
._20{width:454.993500px;}
._45{width:456.183000px;}
._24{width:457.342200px;}
._2f{width:460.266600px;}
._2d{width:461.656800px;}
._32{width:463.558800px;}
._19{width:489.510000px;}
._10{width:490.860000px;}
._0{width:578.400000px;}
._25{width:956.206200px;}
._29{width:958.831200px;}
._2b{width:962.881200px;}
._22{width:964.861200px;}
._2{width:993.706200px;}
._18{width:996.331200px;}
._1a{width:1000.381200px;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:31.482000px;}
.fs7{font-size:34.980000px;}
.fsa{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y2cc{bottom:106.071600px;}
.y268{bottom:106.136850px;}
.y181{bottom:106.165350px;}
.yd9{bottom:106.268850px;}
.yb3{bottom:106.278300px;}
.y6b{bottom:106.281450px;}
.y223{bottom:106.290300px;}
.yfc{bottom:106.290450px;}
.y11f{bottom:106.293300px;}
.y44{bottom:106.293450px;}
.y90{bottom:106.296300px;}
.y363{bottom:106.299150px;}
.y1f{bottom:106.304700px;}
.y2ab{bottom:106.496850px;}
.y200{bottom:109.294800px;}
.y289{bottom:111.237600px;}
.y339{bottom:111.629550px;}
.y335{bottom:111.644550px;}
.y316{bottom:111.659550px;}
.y358{bottom:111.673650px;}
.y31d{bottom:111.674550px;}
.y382{bottom:111.689550px;}
.y385{bottom:115.424550px;}
.y30d{bottom:116.354550px;}
.y6a{bottom:123.534450px;}
.y222{bottom:123.543300px;}
.yfb{bottom:123.543450px;}
.y11e{bottom:123.546300px;}
.y43{bottom:123.546450px;}
.y1e{bottom:126.104700px;}
.y8f{bottom:126.544800px;}
.y180{bottom:126.589350px;}
.yb2{bottom:127.047300px;}
.y2aa{bottom:127.192350px;}
.yd8{bottom:127.227600px;}
.y267{bottom:127.250850px;}
.y2cb{bottom:127.664850px;}
.y30c{bottom:127.762950px;}
.y288{bottom:131.492100px;}
.y30e{bottom:139.649550px;}
.y69{bottom:140.787450px;}
.y221{bottom:140.796300px;}
.yfa{bottom:140.796450px;}
.y11d{bottom:143.794800px;}
.y42{bottom:143.794950px;}
.y1d{bottom:145.904700px;}
.y17f{bottom:147.013350px;}
.yb1{bottom:147.816300px;}
.y2a9{bottom:147.887850px;}
.yd7{bottom:148.186350px;}
.y266{bottom:148.364850px;}
.y2ca{bottom:149.258100px;}
.y287{bottom:151.746600px;}
.y1ff{bottom:153.348900px;}
.y68{bottom:158.040450px;}
.y220{bottom:161.044800px;}
.yf9{bottom:161.044950px;}
.y41{bottom:162.292500px;}
.y1bb{bottom:162.295200px;}
.y11c{bottom:165.296700px;}
.y1c{bottom:165.704700px;}
.y17e{bottom:167.437350px;}
.y2a8{bottom:168.583350px;}
.yb0{bottom:168.585300px;}
.yd6{bottom:169.145100px;}
.y265{bottom:169.478850px;}
.y8e{bottom:170.406750px;}
.y143{bottom:170.549250px;}
.y246{bottom:170.568300px;}
.y19d{bottom:170.644950px;}
.y286{bottom:172.001100px;}
.y1fe{bottom:173.600400px;}
.y67{bottom:175.293450px;}
.y2c9{bottom:179.356350px;}
.y21f{bottom:179.545200px;}
.y40{bottom:179.545500px;}
.y1ba{bottom:179.548200px;}
.y30b{bottom:179.934750px;}
.y2ea{bottom:182.254350px;}
.y1da{bottom:187.738650px;}
.y166{bottom:187.844850px;}
.y17d{bottom:187.861350px;}
.yaf{bottom:189.354300px;}
.yd5{bottom:190.103850px;}
.y264{bottom:190.592850px;}
.y142{bottom:190.887000px;}
.y19c{bottom:190.982700px;}
.y245{bottom:191.238300px;}
.y8d{bottom:191.331000px;}
.y285{bottom:192.255600px;}
.y66{bottom:192.546450px;}
.y1fd{bottom:193.851900px;}
.y21e{bottom:196.798200px;}
.y3f{bottom:196.798500px;}
.y2a7{bottom:197.783850px;}
.y1b{bottom:198.269700px;}
.y1b9{bottom:199.796700px;}
.y30a{bottom:200.184750px;}
.y2c8{bottom:200.949600px;}
.y2e9{bottom:202.508850px;}
.y165{bottom:208.268850px;}
.y17c{bottom:208.285350px;}
.y1d9{bottom:208.645650px;}
.y11b{bottom:209.331750px;}
.yae{bottom:210.123300px;}
.yd4{bottom:211.062600px;}
.y141{bottom:211.224750px;}
.y19b{bottom:211.320450px;}
.y263{bottom:211.706850px;}
.y8c{bottom:212.255250px;}
.y65{bottom:212.794950px;}
.y1fc{bottom:214.103400px;}
.y21d{bottom:217.046700px;}
.y3e{bottom:217.047000px;}
.y2a6{bottom:218.479350px;}
.y244{bottom:220.327800px;}
.y309{bottom:220.434750px;}
.y284{bottom:221.015100px;}
.y2c7{bottom:222.542850px;}
.y30f{bottom:225.104550px;}
.y310{bottom:226.514550px;}
.y164{bottom:228.692850px;}
.y17b{bottom:228.709350px;}
.y1d8{bottom:229.552650px;}
.y11a{bottom:229.652250px;}
.yad{bottom:230.892300px;}
.y2e8{bottom:231.268350px;}
.y140{bottom:231.562500px;}
.y19a{bottom:231.658200px;}
.yd3{bottom:232.021350px;}
.y262{bottom:232.820850px;}
.y8b{bottom:233.179500px;}
.y1fb{bottom:234.354900px;}
.yf8{bottom:238.549200px;}
.y308{bottom:240.684750px;}
.y243{bottom:241.010550px;}
.y283{bottom:241.269600px;}
.y1b8{bottom:243.874500px;}
.y2a5{bottom:247.679850px;}
.y1a{bottom:247.844700px;}
.y163{bottom:249.116850px;}
.y17a{bottom:249.133350px;}
.y119{bottom:249.972750px;}
.y1d7{bottom:250.459650px;}
.y2e7{bottom:251.522850px;}
.yac{bottom:251.661300px;}
.y13f{bottom:251.900250px;}
.y199{bottom:251.995950px;}
.y2c6{bottom:252.641100px;}
.yd2{bottom:252.980100px;}
.y261{bottom:253.934850px;}
.y8a{bottom:254.103750px;}
.y1fa{bottom:254.606400px;}
.y64{bottom:256.743600px;}
.y21c{bottom:261.024750px;}
.y3d{bottom:261.092700px;}
.y282{bottom:261.524100px;}
.y242{bottom:261.693300px;}
.y1b7{bottom:264.298500px;}
.y2a4{bottom:268.375350px;}
.y19{bottom:269.144700px;}
.y162{bottom:269.540850px;}
.y179{bottom:269.557350px;}
.y118{bottom:270.310050px;}
.y1d6{bottom:271.366650px;}
.y2e6{bottom:271.777350px;}
.y13e{bottom:272.238000px;}
.y198{bottom:272.333700px;}
.yab{bottom:272.430300px;}
.y307{bottom:273.684750px;}
.yd1{bottom:273.938850px;}
.y2c5{bottom:274.234350px;}
.y1f9{bottom:274.857900px;}
.y89{bottom:275.028000px;}
.y260{bottom:275.048850px;}
.y63{bottom:277.581600px;}
.y21b{bottom:281.552250px;}
.y3c{bottom:281.982450px;}
.y241{bottom:282.376050px;}
.yf7{bottom:282.589950px;}
.y1b6{bottom:284.722500px;}
.y161{bottom:289.964850px;}
.y178{bottom:289.981350px;}
.y281{bottom:290.283600px;}
.y18{bottom:290.487300px;}
.y117{bottom:290.630550px;}
.y1d5{bottom:292.273650px;}
.y13d{bottom:292.575750px;}
.y197{bottom:292.671450px;}
.yaa{bottom:293.199300px;}
.yd0{bottom:294.897600px;}
.y1f8{bottom:295.109400px;}
.y2c4{bottom:295.827600px;}
.y88{bottom:295.952250px;}
.y25f{bottom:296.162850px;}
.y2a3{bottom:297.575850px;}
.y62{bottom:298.419600px;}
.y2e5{bottom:300.536850px;}
.y21a{bottom:302.079750px;}
.y3b{bottom:302.872200px;}
.y240{bottom:303.058800px;}
.yf6{bottom:303.255450px;}
.y1b5{bottom:305.146500px;}
.y17{bottom:310.287300px;}
.y160{bottom:310.388850px;}
.y177{bottom:310.405350px;}
.y280{bottom:310.538100px;}
.y116{bottom:310.951050px;}
.y13c{bottom:312.913500px;}
.y196{bottom:313.009200px;}
.y1d4{bottom:313.180650px;}
.y343{bottom:313.754550px;}
.ya9{bottom:313.968300px;}
.y33c{bottom:314.474550px;}
.y369{bottom:314.504550px;}
.y32c{bottom:314.519550px;}
.y388{bottom:314.549550px;}
.y336{bottom:314.744550px;}
.y33b{bottom:314.774550px;}
.y368{bottom:314.804550px;}
.y32b{bottom:314.819550px;}
.y317{bottom:314.834550px;}
.y359{bottom:314.848650px;}
.y389{bottom:314.849550px;}
.y337{bottom:314.969550px;}
.y370{bottom:314.984550px;}
.y34b{bottom:314.999550px;}
.y318{bottom:315.014550px;}
.y37f{bottom:315.029550px;}
.y35a{bottom:315.043650px;}
.y33a{bottom:315.044550px;}
.y367{bottom:315.074550px;}
.y32a{bottom:315.089550px;}
.y37e{bottom:315.104550px;}
.y306{bottom:315.189750px;}
.y1f7{bottom:315.360900px;}
.ycf{bottom:315.856350px;}
.y87{bottom:316.876500px;}
.y25e{bottom:317.276850px;}
.y2a2{bottom:318.271350px;}
.y61{bottom:319.257600px;}
.y2e4{bottom:320.791350px;}
.y219{bottom:322.607250px;}
.y23f{bottom:323.741550px;}
.y3a{bottom:323.761950px;}
.yf5{bottom:323.920950px;}
.y1b4{bottom:325.570500px;}
.y2c3{bottom:325.925850px;}
.y16{bottom:330.087300px;}
.y27f{bottom:330.792600px;}
.y15f{bottom:330.812850px;}
.y176{bottom:330.829350px;}
.y115{bottom:331.271550px;}
.y13b{bottom:333.251250px;}
.y195{bottom:333.346950px;}
.y1d3{bottom:334.087650px;}
.y305{bottom:334.689750px;}
.ya8{bottom:334.737300px;}
.y1f6{bottom:335.612400px;}
.yce{bottom:336.815100px;}
.y86{bottom:337.800750px;}
.y25d{bottom:338.390850px;}
.y2a1{bottom:338.966850px;}
.y60{bottom:340.095600px;}
.y2e3{bottom:341.045850px;}
.y218{bottom:343.134750px;}
.y23e{bottom:344.424300px;}
.yf4{bottom:344.586450px;}
.y39{bottom:344.686050px;}
.y1b3{bottom:345.994500px;}
.y2c2{bottom:347.519100px;}
.y15{bottom:349.887300px;}
.y15e{bottom:351.236850px;}
.y175{bottom:351.253350px;}
.y13a{bottom:353.589000px;}
.y194{bottom:353.684700px;}
.y304{bottom:354.189750px;}
.y1d2{bottom:354.994650px;}
.ya7{bottom:355.506300px;}
.y1f5{bottom:355.863900px;}
.ycd{bottom:357.773850px;}
.y85{bottom:358.725000px;}
.y25c{bottom:359.504850px;}
.y27e{bottom:359.552100px;}
.y5f{bottom:360.933600px;}
.y217{bottom:363.662250px;}
.y23d{bottom:365.107050px;}
.yf3{bottom:365.257500px;}
.y38{bottom:365.575800px;}
.y1b2{bottom:366.418500px;}
.y2a0{bottom:368.167350px;}
.y2c1{bottom:369.112350px;}
.y14{bottom:369.687300px;}
.y2e2{bottom:369.805350px;}
.y15d{bottom:371.660850px;}
.y174{bottom:371.677350px;}
.y114{bottom:372.857550px;}
.y303{bottom:373.689750px;}
.y139{bottom:373.926750px;}
.y193{bottom:374.022450px;}
.y1d1{bottom:375.893400px;}
.y1f4{bottom:376.115400px;}
.ya6{bottom:376.275300px;}
.ycc{bottom:378.732600px;}
.y84{bottom:379.649250px;}
.y27d{bottom:379.806600px;}
.y25b{bottom:380.618850px;}
.y5e{bottom:381.771600px;}
.y216{bottom:384.189750px;}
.y23c{bottom:385.789800px;}
.yf2{bottom:386.058150px;}
.y37{bottom:386.465550px;}
.y1b1{bottom:386.842500px;}
.y29f{bottom:388.862850px;}
.y13{bottom:389.487300px;}
.y2e1{bottom:390.059850px;}
.y15c{bottom:392.084850px;}
.y173{bottom:392.101350px;}
.y302{bottom:393.189750px;}
.y138{bottom:394.264500px;}
.y192{bottom:394.360200px;}
.y1f3{bottom:396.366900px;}
.y1d0{bottom:396.800400px;}
.ya5{bottom:397.044300px;}
.y2c0{bottom:399.210600px;}
.ycb{bottom:399.691350px;}
.y27c{bottom:400.061100px;}
.y83{bottom:400.573500px;}
.y25a{bottom:401.732850px;}
.y5d{bottom:402.609600px;}
.y215{bottom:404.717250px;}
.y23b{bottom:406.472550px;}
.yf1{bottom:406.723650px;}
.y1b0{bottom:407.266500px;}
.y36{bottom:407.355300px;}
.y12{bottom:409.287300px;}
.y29e{bottom:409.558350px;}
.y15b{bottom:412.508850px;}
.y172{bottom:412.525350px;}
.y301{bottom:412.689750px;}
.y137{bottom:414.602250px;}
.y191{bottom:414.697950px;}
.y1f2{bottom:416.618400px;}
.ya4{bottom:417.813300px;}
.y2e0{bottom:418.819350px;}
.yca{bottom:420.650100px;}
.y2bf{bottom:420.803850px;}
.y82{bottom:421.497750px;}
.y259{bottom:422.846850px;}
.y5c{bottom:423.447600px;}
.y23a{bottom:427.155300px;}
.yf0{bottom:427.389150px;}
.y35{bottom:428.245050px;}
.y27b{bottom:428.820600px;}
.y11{bottom:429.087300px;}
.y300{bottom:432.189750px;}
.y15a{bottom:432.932850px;}
.y171{bottom:432.949350px;}
.y136{bottom:434.940000px;}
.y113{bottom:435.307500px;}
.y1f1{bottom:436.869900px;}
.ya3{bottom:438.582300px;}
.y29d{bottom:438.758850px;}
.y1cf{bottom:438.963450px;}
.y2df{bottom:439.073850px;}
.yc9{bottom:441.608850px;}
.y2be{bottom:442.397100px;}
.y81{bottom:442.422000px;}
.y258{bottom:443.960850px;}
.y5b{bottom:444.285600px;}
.y1af{bottom:444.710100px;}
.y214{bottom:446.490750px;}
.y239{bottom:447.838050px;}
.yef{bottom:448.054650px;}
.y10{bottom:448.887300px;}
.y27a{bottom:449.075100px;}
.y34{bottom:449.189550px;}
.y2ff{bottom:451.689750px;}
.y190{bottom:452.050350px;}
.y159{bottom:453.356850px;}
.y170{bottom:453.373350px;}
.y135{bottom:455.277750px;}
.y112{bottom:455.628000px;}
.y1f0{bottom:457.121400px;}
.ya2{bottom:459.351300px;}
.y29c{bottom:459.454350px;}
.yc8{bottom:462.567600px;}
.y80{bottom:463.346250px;}
.y1ce{bottom:463.607700px;}
.y257{bottom:465.074850px;}
.y5a{bottom:465.123600px;}
.y1ae{bottom:465.140100px;}
.y2de{bottom:467.833350px;}
.y238{bottom:468.363600px;}
.yf{bottom:468.687300px;}
.yee{bottom:468.720150px;}
.y279{bottom:469.329600px;}
.y33{bottom:470.079300px;}
.y213{bottom:470.770500px;}
.y2fe{bottom:471.189750px;}
.y2bd{bottom:472.495350px;}
.y158{bottom:473.780850px;}
.y16f{bottom:473.797350px;}
.y134{bottom:475.615500px;}
.y111{bottom:475.948500px;}
.y1ef{bottom:477.419850px;}
.ya1{bottom:480.120300px;}
.y29b{bottom:480.149850px;}
.yc7{bottom:483.526350px;}
.y7f{bottom:484.270500px;}
.y1ad{bottom:485.570100px;}
.y59{bottom:485.961600px;}
.y256{bottom:486.188850px;}
.y2dd{bottom:488.087850px;}
.ye{bottom:488.487300px;}
.y237{bottom:489.046350px;}
.yed{bottom:489.385650px;}
.y2fd{bottom:490.689750px;}
.y32{bottom:490.969050px;}
.y2bc{bottom:494.088600px;}
.y157{bottom:494.204850px;}
.y16e{bottom:494.221350px;}
.y133{bottom:495.953250px;}
.y110{bottom:496.269000px;}
.y1ee{bottom:497.671350px;}
.y278{bottom:498.089100px;}
.ya0{bottom:500.889300px;}
.yc6{bottom:504.485100px;}
.y7e{bottom:505.194750px;}
.y1ac{bottom:506.000100px;}
.y58{bottom:506.799600px;}
.y255{bottom:507.302850px;}
.y2dc{bottom:508.342350px;}
.y29a{bottom:509.350350px;}
.y236{bottom:509.729100px;}
.yec{bottom:510.051150px;}
.y2fc{bottom:510.189750px;}
.y18f{bottom:510.235650px;}
.y31{bottom:511.858800px;}
.y156{bottom:514.628850px;}
.y16d{bottom:514.645350px;}
.y2bb{bottom:515.681850px;}
.y132{bottom:516.291000px;}
.y10f{bottom:516.589500px;}
.y1ed{bottom:517.922850px;}
.y277{bottom:518.343600px;}
.yd{bottom:521.052300px;}
.y9f{bottom:521.658300px;}
.yc5{bottom:525.443850px;}
.y7d{bottom:526.119000px;}
.y1cd{bottom:526.375350px;}
.y57{bottom:527.637600px;}
.y321{bottom:528.254550px;}
.y31f{bottom:528.269550px;}
.y33d{bottom:528.284550px;}
.y338{bottom:528.299550px;}
.y36a{bottom:528.314550px;}
.y34c{bottom:528.329550px;}
.y380{bottom:528.344550px;}
.y35b{bottom:528.358650px;}
.y38a{bottom:528.359550px;}
.y254{bottom:528.416850px;}
.y32d{bottom:528.524550px;}
.y319{bottom:528.539550px;}
.y345{bottom:529.289550px;}
.y2fb{bottom:529.689750px;}
.y299{bottom:530.045850px;}
.y386{bottom:530.249550px;}
.y235{bottom:530.411850px;}
.y320{bottom:530.489550px;}
.y38e{bottom:530.519550px;}
.y18e{bottom:530.573400px;}
.y371{bottom:530.669550px;}
.y32e{bottom:530.684550px;}
.y31a{bottom:530.699550px;}
.y35c{bottom:530.713650px;}
.yeb{bottom:530.716650px;}
.y33e{bottom:530.744550px;}
.y372{bottom:530.759550px;}
.y364{bottom:530.774550px;}
.y344{bottom:530.789550px;}
.y36b{bottom:530.999550px;}
.y34d{bottom:531.013650px;}
.y31e{bottom:531.029550px;}
.y30{bottom:532.748550px;}
.y212{bottom:533.223600px;}
.y1ab{bottom:534.987600px;}
.y155{bottom:535.052850px;}
.y16c{bottom:535.069350px;}
.y131{bottom:536.628750px;}
.y10e{bottom:536.910000px;}
.y2db{bottom:537.101850px;}
.y1ec{bottom:538.174350px;}
.y276{bottom:538.598100px;}
.y9e{bottom:542.427300px;}
.y2ba{bottom:545.780100px;}
.yc4{bottom:546.402600px;}
.y7c{bottom:547.043250px;}
.y1cc{bottom:547.282350px;}
.y56{bottom:548.475600px;}
.y2fa{bottom:549.189750px;}
.y253{bottom:549.530850px;}
.y298{bottom:550.741350px;}
.y18d{bottom:550.911150px;}
.y234{bottom:551.094600px;}
.yea{bottom:551.382150px;}
.y2f{bottom:553.638300px;}
.y211{bottom:553.751100px;}
.y311{bottom:555.224550px;}
.y1aa{bottom:555.411600px;}
.y154{bottom:555.476850px;}
.y16b{bottom:555.493350px;}
.y130{bottom:556.966500px;}
.y10d{bottom:557.230500px;}
.y2da{bottom:557.356350px;}
.y1eb{bottom:558.425850px;}
.y9d{bottom:563.196300px;}
.y275{bottom:567.357600px;}
.yc3{bottom:567.361350px;}
.y2b9{bottom:567.373350px;}
.y7b{bottom:567.967500px;}
.y1cb{bottom:568.189350px;}
.y2f9{bottom:568.689750px;}
.y55{bottom:569.313600px;}
.y18c{bottom:571.248900px;}
.y233{bottom:571.777350px;}
.ye9{bottom:572.047650px;}
.y210{bottom:574.278600px;}
.y2e{bottom:574.528050px;}
.y1a9{bottom:575.835600px;}
.y153{bottom:575.900850px;}
.y16a{bottom:575.917350px;}
.y12f{bottom:577.304250px;}
.y10c{bottom:577.551000px;}
.y2d9{bottom:577.610850px;}
.y1ea{bottom:578.677350px;}
.yc{bottom:579.128700px;}
.y297{bottom:579.941850px;}
.y9c{bottom:583.965300px;}
.y274{bottom:587.612100px;}
.y2f8{bottom:588.189750px;}
.yc2{bottom:588.320100px;}
.y7a{bottom:588.891750px;}
.y1ca{bottom:589.096350px;}
.y54{bottom:590.151600px;}
.y18b{bottom:591.586650px;}
.y252{bottom:591.897000px;}
.y232{bottom:592.460100px;}
.ye8{bottom:592.713150px;}
.y20f{bottom:594.806100px;}
.y2d{bottom:595.417800px;}
.y1a8{bottom:596.259600px;}
.y152{bottom:596.324850px;}
.y169{bottom:596.341350px;}
.y2b8{bottom:597.471600px;}
.y12e{bottom:597.642000px;}
.y10b{bottom:597.871500px;}
.y1e9{bottom:598.928850px;}
.y296{bottom:600.637350px;}
.y9b{bottom:604.734300px;}
.y2d8{bottom:606.370350px;}
.yb{bottom:606.428700px;}
.y2f7{bottom:607.689750px;}
.yc1{bottom:609.278850px;}
.y79{bottom:609.816000px;}
.y1c9{bottom:610.003350px;}
.y53{bottom:610.989600px;}
.y18a{bottom:611.924400px;}
.y231{bottom:613.142850px;}
.ye7{bottom:613.378650px;}
.y20e{bottom:615.333600px;}
.y2c{bottom:616.307550px;}
.y273{bottom:616.371600px;}
.y1a7{bottom:616.683600px;}
.y151{bottom:616.748850px;}
.y168{bottom:616.765350px;}
.y12d{bottom:617.979750px;}
.y10a{bottom:618.192000px;}
.y2b7{bottom:619.064850px;}
.y1e8{bottom:619.180350px;}
.y295{bottom:621.332850px;}
.y9a{bottom:625.503300px;}
.y2d7{bottom:626.624850px;}
.y2f6{bottom:627.189750px;}
.yc0{bottom:630.237600px;}
.y78{bottom:630.740250px;}
.y1c8{bottom:630.910350px;}
.y52{bottom:631.827600px;}
.y189{bottom:632.262150px;}
.y230{bottom:633.825600px;}
.ye6{bottom:634.044150px;}
.y20d{bottom:635.861100px;}
.y272{bottom:636.626100px;}
.y1a6{bottom:637.107600px;}
.y150{bottom:637.172850px;}
.y167{bottom:637.189350px;}
.y12c{bottom:638.317500px;}
.y109{bottom:638.512500px;}
.y1e7{bottom:639.431850px;}
.y2b6{bottom:640.658100px;}
.y99{bottom:646.272300px;}
.y2f5{bottom:646.689750px;}
.y2d6{bottom:646.879350px;}
.y294{bottom:650.533350px;}
.ybf{bottom:651.196350px;}
.y77{bottom:651.664500px;}
.y1c7{bottom:651.817350px;}
.y188{bottom:652.599900px;}
.y51{bottom:652.665600px;}
.y22f{bottom:654.508350px;}
.ye5{bottom:654.709650px;}
.y251{bottom:654.951300px;}
.ya{bottom:654.989400px;}
.y20c{bottom:656.388600px;}
.y271{bottom:656.880600px;}
.y1a5{bottom:657.531600px;}
.y14f{bottom:657.613350px;}
.y2b{bottom:658.464000px;}
.y12b{bottom:658.648350px;}
.y108{bottom:658.833000px;}
.y1e6{bottom:659.683350px;}
.y2b5{bottom:662.251350px;}
.y33f{bottom:662.729550px;}
.y34f{bottom:663.043650px;}
.y324{bottom:663.044550px;}
.y374{bottom:663.299550px;}
.y36c{bottom:663.314550px;}
.y323{bottom:663.329550px;}
.y383{bottom:663.344550px;}
.y346{bottom:663.434550px;}
.y36d{bottom:663.494550px;}
.y332{bottom:663.509550px;}
.y38f{bottom:663.524550px;}
.y35f{bottom:663.538650px;}
.y379{bottom:663.539550px;}
.y34e{bottom:663.553650px;}
.y331{bottom:663.554550px;}
.y35d{bottom:663.568650px;}
.y387{bottom:663.569550px;}
.y340{bottom:663.599550px;}
.y365{bottom:663.644550px;}
.y325{bottom:663.659550px;}
.y360{bottom:663.673650px;}
.y381{bottom:663.674550px;}
.y330{bottom:663.689550px;}
.y35e{bottom:663.718650px;}
.y32f{bottom:663.734550px;}
.y373{bottom:663.764550px;}
.y322{bottom:663.884550px;}
.y2f4{bottom:666.189750px;}
.y98{bottom:667.041300px;}
.y2d5{bottom:667.133850px;}
.y293{bottom:671.228850px;}
.ybe{bottom:672.155100px;}
.y76{bottom:672.588750px;}
.y1c6{bottom:672.724350px;}
.y187{bottom:672.937650px;}
.y50{bottom:673.503600px;}
.y22e{bottom:675.191100px;}
.ye4{bottom:675.375150px;}
.y250{bottom:676.065300px;}
.y20b{bottom:676.916100px;}
.y270{bottom:677.135100px;}
.y1a4{bottom:678.007650px;}
.y14e{bottom:678.037350px;}
.y12a{bottom:678.986100px;}
.y107{bottom:679.153500px;}
.y312{bottom:679.799550px;}
.y1e5{bottom:679.934850px;}
.y313{bottom:683.594550px;}
.y2f3{bottom:685.689750px;}
.y9{bottom:686.795400px;}
.y2b4{bottom:692.349600px;}
.ybd{bottom:693.113850px;}
.y186{bottom:693.275400px;}
.y75{bottom:693.513000px;}
.y1c5{bottom:693.631350px;}
.y4f{bottom:694.341600px;}
.y22d{bottom:695.873850px;}
.y2d4{bottom:695.893350px;}
.ye3{bottom:696.040650px;}
.y24f{bottom:697.179300px;}
.y20a{bottom:697.443600px;}
.y1a3{bottom:698.431650px;}
.y14d{bottom:698.461350px;}
.y129{bottom:699.323850px;}
.y106{bottom:699.474000px;}
.y1e4{bottom:700.186350px;}
.y292{bottom:700.429350px;}
.y2f2{bottom:705.189750px;}
.y26f{bottom:705.894600px;}
.y97{bottom:709.064850px;}
.y31b{bottom:711.344550px;}
.y185{bottom:713.613150px;}
.y2b3{bottom:713.942850px;}
.ybc{bottom:714.072600px;}
.y74{bottom:714.383100px;}
.y1c4{bottom:714.538350px;}
.y4e{bottom:715.179600px;}
.y2d3{bottom:716.147850px;}
.y22c{bottom:716.556600px;}
.ye2{bottom:716.706150px;}
.y209{bottom:717.971100px;}
.y24e{bottom:718.293300px;}
.y8{bottom:718.601400px;}
.y1a2{bottom:718.855650px;}
.y14c{bottom:718.885350px;}
.y128{bottom:719.661600px;}
.y105{bottom:719.794500px;}
.y1e3{bottom:720.437850px;}
.y291{bottom:721.124850px;}
.y2a{bottom:721.378350px;}
.y2f1{bottom:724.689750px;}
.y96{bottom:733.587600px;}
.y184{bottom:733.950900px;}
.ybb{bottom:735.031350px;}
.y73{bottom:735.307350px;}
.y1c3{bottom:735.445350px;}
.y2b2{bottom:735.536100px;}
.y4d{bottom:736.017600px;}
.y22b{bottom:737.239350px;}
.ye1{bottom:737.371650px;}
.y208{bottom:738.498600px;}
.y1a1{bottom:739.279650px;}
.y14b{bottom:739.309350px;}
.y24d{bottom:739.407300px;}
.y127{bottom:739.999350px;}
.y104{bottom:740.115000px;}
.y1e2{bottom:740.689350px;}
.y290{bottom:741.820350px;}
.y29{bottom:743.026500px;}
.y2f0{bottom:744.189750px;}
.y2d2{bottom:744.907350px;}
.yba{bottom:755.990100px;}
.y72{bottom:756.231600px;}
.y1c2{bottom:756.352350px;}
.y26e{bottom:756.656850px;}
.y4c{bottom:756.835350px;}
.y22a{bottom:757.922100px;}
.ye0{bottom:758.037150px;}
.y207{bottom:759.026100px;}
.y1a0{bottom:759.703650px;}
.y14a{bottom:759.733350px;}
.y126{bottom:760.337100px;}
.y103{bottom:760.435500px;}
.y24c{bottom:760.521300px;}
.y1e1{bottom:760.940850px;}
.y28{bottom:763.182750px;}
.y2ef{bottom:763.689750px;}
.y2d1{bottom:765.161850px;}
.y2b1{bottom:765.634350px;}
.y28f{bottom:771.020850px;}
.y34a{bottom:774.164550px;}
.y314{bottom:775.499550px;}
.y183{bottom:775.552500px;}
.y347{bottom:775.649550px;}
.y349{bottom:775.709550px;}
.y356{bottom:775.723650px;}
.y31c{bottom:775.724550px;}
.y378{bottom:775.844550px;}
.y36f{bottom:775.979550px;}
.y333{bottom:775.994550px;}
.y328{bottom:776.009550px;}
.y362{bottom:776.038650px;}
.y36e{bottom:776.039550px;}
.y366{bottom:776.099550px;}
.y341{bottom:776.189550px;}
.y357{bottom:776.203650px;}
.y377{bottom:776.204550px;}
.y334{bottom:776.219550px;}
.y355{bottom:776.233650px;}
.y329{bottom:776.234550px;}
.y375{bottom:776.249550px;}
.y326{bottom:776.264550px;}
.y348{bottom:776.279550px;}
.y354{bottom:776.293650px;}
.y327{bottom:776.294550px;}
.y342{bottom:776.309550px;}
.y352{bottom:776.323650px;}
.y37d{bottom:776.339550px;}
.y38c{bottom:776.354550px;}
.y37c{bottom:776.369550px;}
.y351{bottom:776.413650px;}
.y37a{bottom:776.414550px;}
.y353{bottom:776.473650px;}
.y37b{bottom:776.474550px;}
.y350{bottom:776.563650px;}
.y376{bottom:776.564550px;}
.y38d{bottom:776.594550px;}
.y384{bottom:776.609550px;}
.y361{bottom:776.623650px;}
.y38b{bottom:776.624550px;}
.yb9{bottom:776.948850px;}
.y71{bottom:777.155850px;}
.y1c1{bottom:777.259350px;}
.y4b{bottom:777.673350px;}
.y229{bottom:778.604850px;}
.ydf{bottom:778.702650px;}
.y206{bottom:779.553600px;}
.y19f{bottom:780.127650px;}
.y149{bottom:780.157350px;}
.y7{bottom:780.184650px;}
.y125{bottom:780.674850px;}
.y102{bottom:780.756000px;}
.y1e0{bottom:781.192350px;}
.y24b{bottom:781.635300px;}
.y2ee{bottom:783.189750px;}
.y27{bottom:783.327750px;}
.y26d{bottom:785.416350px;}
.y2b0{bottom:787.227600px;}
.y28e{bottom:791.716350px;}
.y95{bottom:796.371150px;}
.yb8{bottom:797.907600px;}
.y70{bottom:798.080100px;}
.y1c0{bottom:798.166350px;}
.y4a{bottom:798.511350px;}
.y228{bottom:799.287600px;}
.yde{bottom:799.368150px;}
.y182{bottom:799.650000px;}
.y205{bottom:800.081100px;}
.y19e{bottom:800.551650px;}
.y148{bottom:800.581350px;}
.y124{bottom:801.012600px;}
.y101{bottom:801.076500px;}
.y1df{bottom:801.443850px;}
.y315{bottom:802.259550px;}
.y24a{bottom:802.749300px;}
.y26{bottom:803.472750px;}
.y26c{bottom:805.670850px;}
.y2af{bottom:808.820850px;}
.y6{bottom:809.989650px;}
.y28d{bottom:812.411850px;}
.y2d0{bottom:814.175850px;}
.y2ed{bottom:815.439750px;}
.y94{bottom:817.140150px;}
.yb7{bottom:818.866350px;}
.y6f{bottom:819.004350px;}
.y1bf{bottom:819.073350px;}
.y49{bottom:819.349350px;}
.y227{bottom:819.970350px;}
.ydd{bottom:820.033650px;}
.y204{bottom:820.608600px;}
.y147{bottom:821.005350px;}
.y123{bottom:821.350350px;}
.y100{bottom:821.419350px;}
.y1de{bottom:821.695350px;}
.y25{bottom:823.617750px;}
.y249{bottom:823.863300px;}
.y26b{bottom:825.925350px;}
.y5{bottom:831.289650px;}
.y2cf{bottom:834.430350px;}
.y93{bottom:837.909150px;}
.y2ae{bottom:838.919100px;}
.yb6{bottom:839.825100px;}
.y6e{bottom:839.928600px;}
.y1be{bottom:839.980350px;}
.y48{bottom:840.187350px;}
.y226{bottom:840.653100px;}
.ydc{bottom:840.699150px;}
.y203{bottom:841.118850px;}
.y146{bottom:841.429350px;}
.y28c{bottom:841.612350px;}
.y122{bottom:841.688100px;}
.yff{bottom:841.739850px;}
.y1dd{bottom:841.946850px;}
.y24{bottom:843.762750px;}
.y248{bottom:844.977300px;}
.y26a{bottom:846.179850px;}
.y2ce{bottom:854.684850px;}
.y92{bottom:858.678150px;}
.y2ad{bottom:860.512350px;}
.yb5{bottom:860.783850px;}
.y6d{bottom:860.852850px;}
.y1bd{bottom:860.887350px;}
.y47{bottom:861.025350px;}
.y4{bottom:861.094650px;}
.y225{bottom:861.335850px;}
.ydb{bottom:861.364650px;}
.y202{bottom:861.646350px;}
.y145{bottom:861.853350px;}
.y121{bottom:862.025850px;}
.yfe{bottom:862.060350px;}
.y1dc{bottom:862.198350px;}
.y28b{bottom:862.307850px;}
.y23{bottom:863.907750px;}
.y2ec{bottom:873.201450px;}
.y269{bottom:874.939350px;}
.yb4{bottom:881.742600px;}
.y6c{bottom:881.777100px;}
.y1bc{bottom:881.794350px;}
.y46{bottom:881.863350px;}
.y224{bottom:882.018600px;}
.yda{bottom:882.035850px;}
.y2ac{bottom:882.105600px;}
.y201{bottom:882.173850px;}
.y144{bottom:882.277350px;}
.y120{bottom:882.363600px;}
.yfd{bottom:882.380850px;}
.y3{bottom:882.394650px;}
.y1db{bottom:882.449850px;}
.y28a{bottom:883.003350px;}
.y247{bottom:883.092750px;}
.y2cd{bottom:883.444350px;}
.y22{bottom:884.052750px;}
.y2eb{bottom:900.207450px;}
.y91{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.ha{height:37.983820px;}
.h7{height:44.414062px;}
.hb{height:49.965820px;}
.h13{height:55.488281px;}
.h4{height:55.517578px;}
.he{height:57.106934px;}
.h3{height:58.293457px;}
.h10{height:63.811523px;}
.hd{height:63.822415px;}
.h9{height:63.845215px;}
.hf{height:63.872815px;}
.h11{height:63.878215px;}
.hc{height:63.926215px;}
.h12{height:64.474015px;}
.h2{height:69.396973px;}
.h8{height:74.948730px;}
.h6{height:77.724609px;}
.h5{height:99.931641px;}
.h14{height:127.517578px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:81.352650px;}
.x8{left:82.471650px;}
.x7{left:83.637450px;}
.x1{left:85.039350px;}
.x11{left:95.014950px;}
.x10{left:102.699000px;}
.x9{left:103.729200px;}
.x6{left:105.015600px;}
.x5{left:106.365600px;}
.xd{left:107.380500px;}
.x29{left:119.767800px;}
.x12{left:124.499400px;}
.x13{left:142.499400px;}
.x2a{left:160.492800px;}
.x14{left:165.224400px;}
.x2b{left:178.492800px;}
.x15{left:183.224400px;}
.x2c{left:196.492800px;}
.xc{left:201.158850px;}
.xb{left:202.516950px;}
.xa{left:212.664000px;}
.x2d{left:214.492800px;}
.x3e{left:219.217950px;}
.x16{left:223.949400px;}
.xf{left:229.173450px;}
.x4{left:231.215400px;}
.x3{left:232.349700px;}
.x2{left:233.581500px;}
.x3f{left:237.217950px;}
.x17{left:241.949400px;}
.x2e{left:250.492800px;}
.x40{left:255.217950px;}
.x18{left:259.949400px;}
.x2f{left:268.492800px;}
.x56{left:273.217950px;}
.x19{left:277.949400px;}
.x30{left:291.217800px;}
.x1a{left:295.949400px;}
.x31{left:309.217800px;}
.x41{left:313.942950px;}
.x1b{left:318.674400px;}
.x32{left:327.217800px;}
.x42{left:331.942950px;}
.x1c{left:336.674400px;}
.x33{left:345.230850px;}
.x43{left:349.942950px;}
.x1d{left:354.674400px;}
.x34{left:363.230850px;}
.x44{left:367.942950px;}
.x1e{left:372.674400px;}
.x35{left:381.230850px;}
.x45{left:385.942950px;}
.x1f{left:390.674400px;}
.x36{left:399.230850px;}
.x46{left:403.942950px;}
.x20{left:408.674400px;}
.x37{left:417.230850px;}
.x47{left:421.942950px;}
.x21{left:426.674400px;}
.x38{left:435.230850px;}
.x48{left:439.942950px;}
.x51{left:444.667950px;}
.x22{left:449.399400px;}
.x39{left:457.955850px;}
.x49{left:462.667950px;}
.x23{left:467.399400px;}
.x3a{left:475.955850px;}
.x4a{left:480.667950px;}
.x24{left:485.399400px;}
.x3b{left:493.955850px;}
.x4b{left:498.667950px;}
.x52{left:503.392950px;}
.x25{left:508.124400px;}
.x3c{left:511.955850px;}
.x4c{left:516.667950px;}
.x53{left:521.392950px;}
.x26{left:526.124400px;}
.x4d{left:534.667950px;}
.x54{left:539.392950px;}
.x27{left:544.124400px;}
.x4e{left:552.667950px;}
.x55{left:557.392950px;}
.x28{left:562.124400px;}
.x4f{left:570.667950px;}
.x50{left:588.667950px;}
.x3d{left:634.799550px;}
@media print{
.v3{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.386667pt;}
.v2{vertical-align:14.896000pt;}
.v4{vertical-align:32.000000pt;}
.lsd{letter-spacing:-6.552000pt;}
.ls2b{letter-spacing:-2.882667pt;}
.ls2d{letter-spacing:-2.576000pt;}
.ls16{letter-spacing:-2.453333pt;}
.ls20{letter-spacing:-2.269333pt;}
.ls47{letter-spacing:-2.240000pt;}
.ls18{letter-spacing:-2.024000pt;}
.ls1e{letter-spacing:-2.016000pt;}
.ls1c{letter-spacing:-1.962667pt;}
.ls4{letter-spacing:-1.920000pt;}
.ls22{letter-spacing:-1.874667pt;}
.ls34{letter-spacing:-1.840000pt;}
.ls10{letter-spacing:-1.778667pt;}
.ls46{letter-spacing:-1.760000pt;}
.ls15{letter-spacing:-1.656000pt;}
.ls29{letter-spacing:-1.584000pt;}
.ls2a{letter-spacing:-1.533333pt;}
.ls43{letter-spacing:-1.456000pt;}
.lsf{letter-spacing:-1.410667pt;}
.lse{letter-spacing:-1.349333pt;}
.ls28{letter-spacing:-1.344000pt;}
.ls24{letter-spacing:-1.288000pt;}
.ls11{letter-spacing:-1.226667pt;}
.ls2f{letter-spacing:-1.152000pt;}
.ls1f{letter-spacing:-1.104000pt;}
.ls1d{letter-spacing:-1.042667pt;}
.ls23{letter-spacing:-1.008000pt;}
.ls48{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.760000pt;}
.ls26{letter-spacing:-0.613333pt;}
.ls2e{letter-spacing:-0.557333pt;}
.ls25{letter-spacing:-0.429333pt;}
.ls30{letter-spacing:-0.368000pt;}
.ls3{letter-spacing:-0.213333pt;}
.ls35{letter-spacing:-0.072000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000267pt;}
.ls19{letter-spacing:0.005067pt;}
.ls42{letter-spacing:0.509600pt;}
.ls14{letter-spacing:0.936000pt;}
.ls27{letter-spacing:1.317333pt;}
.ls45{letter-spacing:1.568000pt;}
.ls21{letter-spacing:1.717333pt;}
.ls9{letter-spacing:1.752000pt;}
.ls8{letter-spacing:1.761600pt;}
.ls40{letter-spacing:1.775200pt;}
.ls3e{letter-spacing:1.836800pt;}
.lsa{letter-spacing:2.133333pt;}
.ls37{letter-spacing:2.688000pt;}
.ls3d{letter-spacing:2.933333pt;}
.ls33{letter-spacing:3.200000pt;}
.ls36{letter-spacing:3.248000pt;}
.ls2c{letter-spacing:3.581867pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1a{letter-spacing:4.466667pt;}
.ls31{letter-spacing:4.661333pt;}
.ls5{letter-spacing:5.120000pt;}
.ls6{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls3c{letter-spacing:5.364800pt;}
.ls41{letter-spacing:5.510400pt;}
.lsc{letter-spacing:5.600000pt;}
.ls49{letter-spacing:5.933333pt;}
.lsb{letter-spacing:6.800000pt;}
.ls1b{letter-spacing:7.253472pt;}
.ls32{letter-spacing:7.254005pt;}
.ls17{letter-spacing:7.266667pt;}
.ls39{letter-spacing:7.392000pt;}
.ls12{letter-spacing:7.400000pt;}
.ls3b{letter-spacing:7.492800pt;}
.ls3a{letter-spacing:7.840000pt;}
.ls44{letter-spacing:8.256000pt;}
.ls38{letter-spacing:15.344000pt;}
.ls3f{letter-spacing:17.707200pt;}
.ws15{word-spacing:-26.133333pt;}
.ws1b{word-spacing:-26.000000pt;}
.ws8{word-spacing:-25.533333pt;}
.ws0{word-spacing:-25.056000pt;}
.ws5b{word-spacing:-24.666667pt;}
.ws47{word-spacing:-23.576000pt;}
.ws1f{word-spacing:-23.200000pt;}
.ws46{word-spacing:-23.128000pt;}
.ws3f{word-spacing:-21.933333pt;}
.ws4b{word-spacing:-21.666667pt;}
.ws3{word-spacing:-20.213333pt;}
.ws44{word-spacing:-20.160000pt;}
.ws1{word-spacing:-20.106667pt;}
.ws3a{word-spacing:-19.080000pt;}
.ws14{word-spacing:-17.234667pt;}
.ws9{word-spacing:-16.090667pt;}
.ws48{word-spacing:-15.736000pt;}
.wsc{word-spacing:-15.149333pt;}
.ws2{word-spacing:-14.986667pt;}
.ws40{word-spacing:-14.536000pt;}
.ws50{word-spacing:-14.224000pt;}
.ws21{word-spacing:-14.106667pt;}
.ws27{word-spacing:-14.045333pt;}
.ws59{word-spacing:-14.026667pt;}
.ws10{word-spacing:-13.922667pt;}
.ws2e{word-spacing:-13.861333pt;}
.ws49{word-spacing:-13.832000pt;}
.wsd{word-spacing:-13.800000pt;}
.wse{word-spacing:-13.738667pt;}
.wsb{word-spacing:-13.680000pt;}
.ws37{word-spacing:-13.616000pt;}
.ws11{word-spacing:-13.488000pt;}
.wsf{word-spacing:-13.370667pt;}
.ws41{word-spacing:-13.309333pt;}
.ws2f{word-spacing:-13.173333pt;}
.ws1c{word-spacing:-13.125333pt;}
.ws28{word-spacing:-12.880000pt;}
.ws17{word-spacing:-12.696000pt;}
.ws39{word-spacing:-12.573333pt;}
.ws4c{word-spacing:-12.376000pt;}
.ws12{word-spacing:-11.856000pt;}
.ws4d{word-spacing:-11.413333pt;}
.ws58{word-spacing:-10.933333pt;}
.ws34{word-spacing:-10.272000pt;}
.ws16{word-spacing:-10.047811pt;}
.ws25{word-spacing:-9.840000pt;}
.wsa{word-spacing:-8.737227pt;}
.ws4a{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws7{word-spacing:-3.733333pt;}
.ws13{word-spacing:-2.133333pt;}
.ws29{word-spacing:-1.962667pt;}
.ws4e{word-spacing:-1.568000pt;}
.ws35{word-spacing:-1.317333pt;}
.ws19{word-spacing:-0.936000pt;}
.ws24{word-spacing:-0.797333pt;}
.ws3d{word-spacing:-0.192000pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:0.213333pt;}
.ws1d{word-spacing:0.245333pt;}
.ws3c{word-spacing:0.368000pt;}
.ws31{word-spacing:0.429333pt;}
.ws3b{word-spacing:0.557333pt;}
.ws32{word-spacing:0.613333pt;}
.ws18{word-spacing:0.760000pt;}
.ws33{word-spacing:0.797333pt;}
.ws2d{word-spacing:1.008000pt;}
.ws30{word-spacing:1.042667pt;}
.ws20{word-spacing:1.226667pt;}
.ws36{word-spacing:1.344000pt;}
.ws26{word-spacing:1.488000pt;}
.ws1a{word-spacing:1.656000pt;}
.ws45{word-spacing:1.840000pt;}
.ws2c{word-spacing:1.874667pt;}
.ws22{word-spacing:1.962667pt;}
.ws3e{word-spacing:2.064000pt;}
.ws2b{word-spacing:2.085333pt;}
.ws38{word-spacing:2.882667pt;}
.ws1e{word-spacing:3.741333pt;}
.ws23{word-spacing:4.293333pt;}
.ws2a{word-spacing:5.090667pt;}
.ws42{word-spacing:5.336000pt;}
.ws43{word-spacing:6.746667pt;}
.ws4f{word-spacing:12.960000pt;}
.ws66{word-spacing:107.776000pt;}
.ws6f{word-spacing:152.352000pt;}
.ws64{word-spacing:169.386667pt;}
.ws5f{word-spacing:185.493333pt;}
.ws52{word-spacing:187.573333pt;}
.ws69{word-spacing:187.733333pt;}
.ws6c{word-spacing:188.586667pt;}
.ws5d{word-spacing:189.712000pt;}
.ws56{word-spacing:243.509333pt;}
.ws65{word-spacing:251.445333pt;}
.ws5c{word-spacing:269.408000pt;}
.ws61{word-spacing:291.093333pt;}
.ws6b{word-spacing:311.509333pt;}
.ws5a{word-spacing:313.013333pt;}
.ws62{word-spacing:321.573333pt;}
.ws63{word-spacing:324.928000pt;}
.ws5e{word-spacing:349.866667pt;}
.ws60{word-spacing:352.640000pt;}
.ws54{word-spacing:353.440000pt;}
.ws57{word-spacing:360.581333pt;}
.ws6e{word-spacing:362.256000pt;}
.ws6a{word-spacing:368.576000pt;}
.ws51{word-spacing:368.922667pt;}
.ws53{word-spacing:376.080000pt;}
.ws6d{word-spacing:381.674667pt;}
.ws67{word-spacing:387.989333pt;}
.ws68{word-spacing:395.893333pt;}
.ws55{word-spacing:397.312000pt;}
._2e{margin-left:-17.072000pt;}
._2c{margin-left:-15.038133pt;}
._35{margin-left:-10.092267pt;}
._34{margin-left:-8.873867pt;}
._21{margin-left:-7.045499pt;}
._a{margin-left:-5.445333pt;}
._c{margin-left:-3.936000pt;}
._1e{margin-left:-3.032800pt;}
._3{margin-left:-2.133333pt;}
._9{margin-left:-1.136000pt;}
._4{width:0.890667pt;}
._1{width:2.133333pt;}
._b{width:3.340800pt;}
._1f{width:4.241333pt;}
._5{width:5.130667pt;}
._6{width:6.042667pt;}
._7{width:7.322667pt;}
._8{width:8.250667pt;}
._14{width:9.229333pt;}
._11{width:10.656000pt;}
._1c{width:12.189600pt;}
._15{width:13.175733pt;}
._13{width:14.448800pt;}
._1d{width:16.146667pt;}
._f{width:17.734400pt;}
._e{width:18.803200pt;}
._16{width:19.908800pt;}
._1b{width:21.228800pt;}
._26{width:22.717867pt;}
._27{width:23.614133pt;}
._23{width:24.625920pt;}
._33{width:26.518933pt;}
._2a{width:27.612267pt;}
._31{width:31.998400pt;}
._30{width:32.998133pt;}
._28{width:34.187200pt;}
._17{width:38.617920pt;}
._38{width:42.195467pt;}
._36{width:48.048000pt;}
._37{width:48.944000pt;}
._d{width:76.048000pt;}
._39{width:91.680000pt;}
._3a{width:131.514667pt;}
._40{width:157.973333pt;}
._43{width:160.240000pt;}
._3e{width:161.498667pt;}
._3d{width:169.706667pt;}
._3b{width:171.093333pt;}
._41{width:172.458667pt;}
._3c{width:205.440000pt;}
._3f{width:215.040000pt;}
._12{width:231.653333pt;}
._44{width:308.755467pt;}
._42{width:344.632800pt;}
._20{width:404.438667pt;}
._45{width:405.496000pt;}
._24{width:406.526400pt;}
._2f{width:409.125867pt;}
._2d{width:410.361600pt;}
._32{width:412.052267pt;}
._19{width:435.120000pt;}
._10{width:436.320000pt;}
._0{width:514.133333pt;}
._25{width:849.961067pt;}
._29{width:852.294400pt;}
._2b{width:855.894400pt;}
._22{width:857.654400pt;}
._2{width:883.294400pt;}
._18{width:885.627733pt;}
._1a{width:889.227733pt;}
.fsb{font-size:27.984000pt;}
.fs7{font-size:31.093333pt;}
.fsa{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y2cc{bottom:94.285867pt;}
.y268{bottom:94.343867pt;}
.y181{bottom:94.369200pt;}
.yd9{bottom:94.461200pt;}
.yb3{bottom:94.469600pt;}
.y6b{bottom:94.472400pt;}
.y223{bottom:94.480267pt;}
.yfc{bottom:94.480400pt;}
.y11f{bottom:94.482933pt;}
.y44{bottom:94.483067pt;}
.y90{bottom:94.485600pt;}
.y363{bottom:94.488133pt;}
.y1f{bottom:94.493067pt;}
.y2ab{bottom:94.663867pt;}
.y200{bottom:97.150933pt;}
.y289{bottom:98.877867pt;}
.y339{bottom:99.226267pt;}
.y335{bottom:99.239600pt;}
.y316{bottom:99.252933pt;}
.y358{bottom:99.265467pt;}
.y31d{bottom:99.266267pt;}
.y382{bottom:99.279600pt;}
.y385{bottom:102.599600pt;}
.y30d{bottom:103.426267pt;}
.y6a{bottom:109.808400pt;}
.y222{bottom:109.816267pt;}
.yfb{bottom:109.816400pt;}
.y11e{bottom:109.818933pt;}
.y43{bottom:109.819067pt;}
.y1e{bottom:112.093067pt;}
.y8f{bottom:112.484267pt;}
.y180{bottom:112.523867pt;}
.yb2{bottom:112.930933pt;}
.y2aa{bottom:113.059867pt;}
.yd8{bottom:113.091200pt;}
.y267{bottom:113.111867pt;}
.y2cb{bottom:113.479867pt;}
.y30c{bottom:113.567067pt;}
.y288{bottom:116.881867pt;}
.y30e{bottom:124.132933pt;}
.y69{bottom:125.144400pt;}
.y221{bottom:125.152267pt;}
.yfa{bottom:125.152400pt;}
.y11d{bottom:127.817600pt;}
.y42{bottom:127.817733pt;}
.y1d{bottom:129.693067pt;}
.y17f{bottom:130.678533pt;}
.yb1{bottom:131.392267pt;}
.y2a9{bottom:131.455867pt;}
.yd7{bottom:131.721200pt;}
.y266{bottom:131.879867pt;}
.y2ca{bottom:132.673867pt;}
.y287{bottom:134.885867pt;}
.y1ff{bottom:136.310133pt;}
.y68{bottom:140.480400pt;}
.y220{bottom:143.150933pt;}
.yf9{bottom:143.151067pt;}
.y41{bottom:144.260000pt;}
.y1bb{bottom:144.262400pt;}
.y11c{bottom:146.930400pt;}
.y1c{bottom:147.293067pt;}
.y17e{bottom:148.833200pt;}
.y2a8{bottom:149.851867pt;}
.yb0{bottom:149.853600pt;}
.yd6{bottom:150.351200pt;}
.y265{bottom:150.647867pt;}
.y8e{bottom:151.472667pt;}
.y143{bottom:151.599333pt;}
.y246{bottom:151.616267pt;}
.y19d{bottom:151.684400pt;}
.y286{bottom:152.889867pt;}
.y1fe{bottom:154.311467pt;}
.y67{bottom:155.816400pt;}
.y2c9{bottom:159.427867pt;}
.y21f{bottom:159.595733pt;}
.y40{bottom:159.596000pt;}
.y1ba{bottom:159.598400pt;}
.y30b{bottom:159.942000pt;}
.y2ea{bottom:162.003867pt;}
.y1da{bottom:166.878800pt;}
.y166{bottom:166.973200pt;}
.y17d{bottom:166.987867pt;}
.yaf{bottom:168.314933pt;}
.yd5{bottom:168.981200pt;}
.y264{bottom:169.415867pt;}
.y142{bottom:169.677333pt;}
.y19c{bottom:169.762400pt;}
.y245{bottom:169.989600pt;}
.y8d{bottom:170.072000pt;}
.y285{bottom:170.893867pt;}
.y66{bottom:171.152400pt;}
.y1fd{bottom:172.312800pt;}
.y21e{bottom:174.931733pt;}
.y3f{bottom:174.932000pt;}
.y2a7{bottom:175.807867pt;}
.y1b{bottom:176.239733pt;}
.y1b9{bottom:177.597067pt;}
.y30a{bottom:177.942000pt;}
.y2c8{bottom:178.621867pt;}
.y2e9{bottom:180.007867pt;}
.y165{bottom:185.127867pt;}
.y17c{bottom:185.142533pt;}
.y1d9{bottom:185.462800pt;}
.y11b{bottom:186.072667pt;}
.yae{bottom:186.776267pt;}
.yd4{bottom:187.611200pt;}
.y141{bottom:187.755333pt;}
.y19b{bottom:187.840400pt;}
.y263{bottom:188.183867pt;}
.y8c{bottom:188.671333pt;}
.y65{bottom:189.151067pt;}
.y1fc{bottom:190.314133pt;}
.y21d{bottom:192.930400pt;}
.y3e{bottom:192.930667pt;}
.y2a6{bottom:194.203867pt;}
.y244{bottom:195.846933pt;}
.y309{bottom:195.942000pt;}
.y284{bottom:196.457867pt;}
.y2c7{bottom:197.815867pt;}
.y30f{bottom:200.092933pt;}
.y310{bottom:201.346267pt;}
.y164{bottom:203.282533pt;}
.y17b{bottom:203.297200pt;}
.y1d8{bottom:204.046800pt;}
.y11a{bottom:204.135333pt;}
.yad{bottom:205.237600pt;}
.y2e8{bottom:205.571867pt;}
.y140{bottom:205.833333pt;}
.y19a{bottom:205.918400pt;}
.yd3{bottom:206.241200pt;}
.y262{bottom:206.951867pt;}
.y8b{bottom:207.270667pt;}
.y1fb{bottom:208.315467pt;}
.yf8{bottom:212.043733pt;}
.y308{bottom:213.942000pt;}
.y243{bottom:214.231600pt;}
.y283{bottom:214.461867pt;}
.y1b8{bottom:216.777333pt;}
.y2a5{bottom:220.159867pt;}
.y1a{bottom:220.306400pt;}
.y163{bottom:221.437200pt;}
.y17a{bottom:221.451867pt;}
.y119{bottom:222.198000pt;}
.y1d7{bottom:222.630800pt;}
.y2e7{bottom:223.575867pt;}
.yac{bottom:223.698933pt;}
.y13f{bottom:223.911333pt;}
.y199{bottom:223.996400pt;}
.y2c6{bottom:224.569867pt;}
.yd2{bottom:224.871200pt;}
.y261{bottom:225.719867pt;}
.y8a{bottom:225.870000pt;}
.y1fa{bottom:226.316800pt;}
.y64{bottom:228.216533pt;}
.y21c{bottom:232.022000pt;}
.y3d{bottom:232.082400pt;}
.y282{bottom:232.465867pt;}
.y242{bottom:232.616267pt;}
.y1b7{bottom:234.932000pt;}
.y2a4{bottom:238.555867pt;}
.y19{bottom:239.239733pt;}
.y162{bottom:239.591867pt;}
.y179{bottom:239.606533pt;}
.y118{bottom:240.275600pt;}
.y1d6{bottom:241.214800pt;}
.y2e6{bottom:241.579867pt;}
.y13e{bottom:241.989333pt;}
.y198{bottom:242.074400pt;}
.yab{bottom:242.160267pt;}
.y307{bottom:243.275333pt;}
.yd1{bottom:243.501200pt;}
.y2c5{bottom:243.763867pt;}
.y1f9{bottom:244.318133pt;}
.y89{bottom:244.469333pt;}
.y260{bottom:244.487867pt;}
.y63{bottom:246.739200pt;}
.y21b{bottom:250.268667pt;}
.y3c{bottom:250.651067pt;}
.y241{bottom:251.000933pt;}
.yf7{bottom:251.191067pt;}
.y1b6{bottom:253.086667pt;}
.y161{bottom:257.746533pt;}
.y178{bottom:257.761200pt;}
.y281{bottom:258.029867pt;}
.y18{bottom:258.210933pt;}
.y117{bottom:258.338267pt;}
.y1d5{bottom:259.798800pt;}
.y13d{bottom:260.067333pt;}
.y197{bottom:260.152400pt;}
.yaa{bottom:260.621600pt;}
.yd0{bottom:262.131200pt;}
.y1f8{bottom:262.319467pt;}
.y2c4{bottom:262.957867pt;}
.y88{bottom:263.068667pt;}
.y25f{bottom:263.255867pt;}
.y2a3{bottom:264.511867pt;}
.y62{bottom:265.261867pt;}
.y2e5{bottom:267.143867pt;}
.y21a{bottom:268.515333pt;}
.y3b{bottom:269.219733pt;}
.y240{bottom:269.385600pt;}
.yf6{bottom:269.560400pt;}
.y1b5{bottom:271.241333pt;}
.y17{bottom:275.810933pt;}
.y160{bottom:275.901200pt;}
.y177{bottom:275.915867pt;}
.y280{bottom:276.033867pt;}
.y116{bottom:276.400933pt;}
.y13c{bottom:278.145333pt;}
.y196{bottom:278.230400pt;}
.y1d4{bottom:278.382800pt;}
.y343{bottom:278.892933pt;}
.ya9{bottom:279.082933pt;}
.y33c{bottom:279.532933pt;}
.y369{bottom:279.559600pt;}
.y32c{bottom:279.572933pt;}
.y388{bottom:279.599600pt;}
.y336{bottom:279.772933pt;}
.y33b{bottom:279.799600pt;}
.y368{bottom:279.826267pt;}
.y32b{bottom:279.839600pt;}
.y317{bottom:279.852933pt;}
.y359{bottom:279.865467pt;}
.y389{bottom:279.866267pt;}
.y337{bottom:279.972933pt;}
.y370{bottom:279.986267pt;}
.y34b{bottom:279.999600pt;}
.y318{bottom:280.012933pt;}
.y37f{bottom:280.026267pt;}
.y35a{bottom:280.038800pt;}
.y33a{bottom:280.039600pt;}
.y367{bottom:280.066267pt;}
.y32a{bottom:280.079600pt;}
.y37e{bottom:280.092933pt;}
.y306{bottom:280.168667pt;}
.y1f7{bottom:280.320800pt;}
.ycf{bottom:280.761200pt;}
.y87{bottom:281.668000pt;}
.y25e{bottom:282.023867pt;}
.y2a2{bottom:282.907867pt;}
.y61{bottom:283.784533pt;}
.y2e4{bottom:285.147867pt;}
.y219{bottom:286.762000pt;}
.y23f{bottom:287.770267pt;}
.y3a{bottom:287.788400pt;}
.yf5{bottom:287.929733pt;}
.y1b4{bottom:289.396000pt;}
.y2c3{bottom:289.711867pt;}
.y16{bottom:293.410933pt;}
.y27f{bottom:294.037867pt;}
.y15f{bottom:294.055867pt;}
.y176{bottom:294.070533pt;}
.y115{bottom:294.463600pt;}
.y13b{bottom:296.223333pt;}
.y195{bottom:296.308400pt;}
.y1d3{bottom:296.966800pt;}
.y305{bottom:297.502000pt;}
.ya8{bottom:297.544267pt;}
.y1f6{bottom:298.322133pt;}
.yce{bottom:299.391200pt;}
.y86{bottom:300.267333pt;}
.y25d{bottom:300.791867pt;}
.y2a1{bottom:301.303867pt;}
.y60{bottom:302.307200pt;}
.y2e3{bottom:303.151867pt;}
.y218{bottom:305.008667pt;}
.y23e{bottom:306.154933pt;}
.yf4{bottom:306.299067pt;}
.y39{bottom:306.387600pt;}
.y1b3{bottom:307.550667pt;}
.y2c2{bottom:308.905867pt;}
.y15{bottom:311.010933pt;}
.y15e{bottom:312.210533pt;}
.y175{bottom:312.225200pt;}
.y13a{bottom:314.301333pt;}
.y194{bottom:314.386400pt;}
.y304{bottom:314.835333pt;}
.y1d2{bottom:315.550800pt;}
.ya7{bottom:316.005600pt;}
.y1f5{bottom:316.323467pt;}
.ycd{bottom:318.021200pt;}
.y85{bottom:318.866667pt;}
.y25c{bottom:319.559867pt;}
.y27e{bottom:319.601867pt;}
.y5f{bottom:320.829867pt;}
.y217{bottom:323.255333pt;}
.y23d{bottom:324.539600pt;}
.yf3{bottom:324.673333pt;}
.y38{bottom:324.956267pt;}
.y1b2{bottom:325.705333pt;}
.y2a0{bottom:327.259867pt;}
.y2c1{bottom:328.099867pt;}
.y14{bottom:328.610933pt;}
.y2e2{bottom:328.715867pt;}
.y15d{bottom:330.365200pt;}
.y174{bottom:330.379867pt;}
.y114{bottom:331.428933pt;}
.y303{bottom:332.168667pt;}
.y139{bottom:332.379333pt;}
.y193{bottom:332.464400pt;}
.y1d1{bottom:334.127467pt;}
.y1f4{bottom:334.324800pt;}
.ya6{bottom:334.466933pt;}
.ycc{bottom:336.651200pt;}
.y84{bottom:337.466000pt;}
.y27d{bottom:337.605867pt;}
.y25b{bottom:338.327867pt;}
.y5e{bottom:339.352533pt;}
.y216{bottom:341.502000pt;}
.y23c{bottom:342.924267pt;}
.yf2{bottom:343.162800pt;}
.y37{bottom:343.524933pt;}
.y1b1{bottom:343.860000pt;}
.y29f{bottom:345.655867pt;}
.y13{bottom:346.210933pt;}
.y2e1{bottom:346.719867pt;}
.y15c{bottom:348.519867pt;}
.y173{bottom:348.534533pt;}
.y302{bottom:349.502000pt;}
.y138{bottom:350.457333pt;}
.y192{bottom:350.542400pt;}
.y1f3{bottom:352.326133pt;}
.y1d0{bottom:352.711467pt;}
.ya5{bottom:352.928267pt;}
.y2c0{bottom:354.853867pt;}
.ycb{bottom:355.281200pt;}
.y27c{bottom:355.609867pt;}
.y83{bottom:356.065333pt;}
.y25a{bottom:357.095867pt;}
.y5d{bottom:357.875200pt;}
.y215{bottom:359.748667pt;}
.y23b{bottom:361.308933pt;}
.yf1{bottom:361.532133pt;}
.y1b0{bottom:362.014667pt;}
.y36{bottom:362.093600pt;}
.y12{bottom:363.810933pt;}
.y29e{bottom:364.051867pt;}
.y15b{bottom:366.674533pt;}
.y172{bottom:366.689200pt;}
.y301{bottom:366.835333pt;}
.y137{bottom:368.535333pt;}
.y191{bottom:368.620400pt;}
.y1f2{bottom:370.327467pt;}
.ya4{bottom:371.389600pt;}
.y2e0{bottom:372.283867pt;}
.yca{bottom:373.911200pt;}
.y2bf{bottom:374.047867pt;}
.y82{bottom:374.664667pt;}
.y259{bottom:375.863867pt;}
.y5c{bottom:376.397867pt;}
.y23a{bottom:379.693600pt;}
.yf0{bottom:379.901467pt;}
.y35{bottom:380.662267pt;}
.y27b{bottom:381.173867pt;}
.y11{bottom:381.410933pt;}
.y300{bottom:384.168667pt;}
.y15a{bottom:384.829200pt;}
.y171{bottom:384.843867pt;}
.y136{bottom:386.613333pt;}
.y113{bottom:386.940000pt;}
.y1f1{bottom:388.328800pt;}
.ya3{bottom:389.850933pt;}
.y29d{bottom:390.007867pt;}
.y1cf{bottom:390.189733pt;}
.y2df{bottom:390.287867pt;}
.yc9{bottom:392.541200pt;}
.y2be{bottom:393.241867pt;}
.y81{bottom:393.264000pt;}
.y258{bottom:394.631867pt;}
.y5b{bottom:394.920533pt;}
.y1af{bottom:395.297867pt;}
.y214{bottom:396.880667pt;}
.y239{bottom:398.078267pt;}
.yef{bottom:398.270800pt;}
.y10{bottom:399.010933pt;}
.y27a{bottom:399.177867pt;}
.y34{bottom:399.279600pt;}
.y2ff{bottom:401.502000pt;}
.y190{bottom:401.822533pt;}
.y159{bottom:402.983867pt;}
.y170{bottom:402.998533pt;}
.y135{bottom:404.691333pt;}
.y112{bottom:405.002667pt;}
.y1f0{bottom:406.330133pt;}
.ya2{bottom:408.312267pt;}
.y29c{bottom:408.403867pt;}
.yc8{bottom:411.171200pt;}
.y80{bottom:411.863333pt;}
.y1ce{bottom:412.095733pt;}
.y257{bottom:413.399867pt;}
.y5a{bottom:413.443200pt;}
.y1ae{bottom:413.457867pt;}
.y2de{bottom:415.851867pt;}
.y238{bottom:416.323200pt;}
.yf{bottom:416.610933pt;}
.yee{bottom:416.640133pt;}
.y279{bottom:417.181867pt;}
.y33{bottom:417.848267pt;}
.y213{bottom:418.462667pt;}
.y2fe{bottom:418.835333pt;}
.y2bd{bottom:419.995867pt;}
.y158{bottom:421.138533pt;}
.y16f{bottom:421.153200pt;}
.y134{bottom:422.769333pt;}
.y111{bottom:423.065333pt;}
.y1ef{bottom:424.373200pt;}
.ya1{bottom:426.773600pt;}
.y29b{bottom:426.799867pt;}
.yc7{bottom:429.801200pt;}
.y7f{bottom:430.462667pt;}
.y1ad{bottom:431.617867pt;}
.y59{bottom:431.965867pt;}
.y256{bottom:432.167867pt;}
.y2dd{bottom:433.855867pt;}
.ye{bottom:434.210933pt;}
.y237{bottom:434.707867pt;}
.yed{bottom:435.009467pt;}
.y2fd{bottom:436.168667pt;}
.y32{bottom:436.416933pt;}
.y2bc{bottom:439.189867pt;}
.y157{bottom:439.293200pt;}
.y16e{bottom:439.307867pt;}
.y133{bottom:440.847333pt;}
.y110{bottom:441.128000pt;}
.y1ee{bottom:442.374533pt;}
.y278{bottom:442.745867pt;}
.ya0{bottom:445.234933pt;}
.yc6{bottom:448.431200pt;}
.y7e{bottom:449.062000pt;}
.y1ac{bottom:449.777867pt;}
.y58{bottom:450.488533pt;}
.y255{bottom:450.935867pt;}
.y2dc{bottom:451.859867pt;}
.y29a{bottom:452.755867pt;}
.y236{bottom:453.092533pt;}
.yec{bottom:453.378800pt;}
.y2fc{bottom:453.502000pt;}
.y18f{bottom:453.542800pt;}
.y31{bottom:454.985600pt;}
.y156{bottom:457.447867pt;}
.y16d{bottom:457.462533pt;}
.y2bb{bottom:458.383867pt;}
.y132{bottom:458.925333pt;}
.y10f{bottom:459.190667pt;}
.y1ed{bottom:460.375867pt;}
.y277{bottom:460.749867pt;}
.yd{bottom:463.157600pt;}
.y9f{bottom:463.696267pt;}
.yc5{bottom:467.061200pt;}
.y7d{bottom:467.661333pt;}
.y1cd{bottom:467.889200pt;}
.y57{bottom:469.011200pt;}
.y321{bottom:469.559600pt;}
.y31f{bottom:469.572933pt;}
.y33d{bottom:469.586267pt;}
.y338{bottom:469.599600pt;}
.y36a{bottom:469.612933pt;}
.y34c{bottom:469.626267pt;}
.y380{bottom:469.639600pt;}
.y35b{bottom:469.652133pt;}
.y38a{bottom:469.652933pt;}
.y254{bottom:469.703867pt;}
.y32d{bottom:469.799600pt;}
.y319{bottom:469.812933pt;}
.y345{bottom:470.479600pt;}
.y2fb{bottom:470.835333pt;}
.y299{bottom:471.151867pt;}
.y386{bottom:471.332933pt;}
.y235{bottom:471.477200pt;}
.y320{bottom:471.546267pt;}
.y38e{bottom:471.572933pt;}
.y18e{bottom:471.620800pt;}
.y371{bottom:471.706267pt;}
.y32e{bottom:471.719600pt;}
.y31a{bottom:471.732933pt;}
.y35c{bottom:471.745467pt;}
.yeb{bottom:471.748133pt;}
.y33e{bottom:471.772933pt;}
.y372{bottom:471.786267pt;}
.y364{bottom:471.799600pt;}
.y344{bottom:471.812933pt;}
.y36b{bottom:471.999600pt;}
.y34d{bottom:472.012133pt;}
.y31e{bottom:472.026267pt;}
.y30{bottom:473.554267pt;}
.y212{bottom:473.976533pt;}
.y1ab{bottom:475.544533pt;}
.y155{bottom:475.602533pt;}
.y16c{bottom:475.617200pt;}
.y131{bottom:477.003333pt;}
.y10e{bottom:477.253333pt;}
.y2db{bottom:477.423867pt;}
.y1ec{bottom:478.377200pt;}
.y276{bottom:478.753867pt;}
.y9e{bottom:482.157600pt;}
.y2ba{bottom:485.137867pt;}
.yc4{bottom:485.691200pt;}
.y7c{bottom:486.260667pt;}
.y1cc{bottom:486.473200pt;}
.y56{bottom:487.533867pt;}
.y2fa{bottom:488.168667pt;}
.y253{bottom:488.471867pt;}
.y298{bottom:489.547867pt;}
.y18d{bottom:489.698800pt;}
.y234{bottom:489.861867pt;}
.yea{bottom:490.117467pt;}
.y2f{bottom:492.122933pt;}
.y211{bottom:492.223200pt;}
.y311{bottom:493.532933pt;}
.y1aa{bottom:493.699200pt;}
.y154{bottom:493.757200pt;}
.y16b{bottom:493.771867pt;}
.y130{bottom:495.081333pt;}
.y10d{bottom:495.316000pt;}
.y2da{bottom:495.427867pt;}
.y1eb{bottom:496.378533pt;}
.y9d{bottom:500.618933pt;}
.y275{bottom:504.317867pt;}
.yc3{bottom:504.321200pt;}
.y2b9{bottom:504.331867pt;}
.y7b{bottom:504.860000pt;}
.y1cb{bottom:505.057200pt;}
.y2f9{bottom:505.502000pt;}
.y55{bottom:506.056533pt;}
.y18c{bottom:507.776800pt;}
.y233{bottom:508.246533pt;}
.ye9{bottom:508.486800pt;}
.y210{bottom:510.469867pt;}
.y2e{bottom:510.691600pt;}
.y1a9{bottom:511.853867pt;}
.y153{bottom:511.911867pt;}
.y16a{bottom:511.926533pt;}
.y12f{bottom:513.159333pt;}
.y10c{bottom:513.378667pt;}
.y2d9{bottom:513.431867pt;}
.y1ea{bottom:514.379867pt;}
.yc{bottom:514.781067pt;}
.y297{bottom:515.503867pt;}
.y9c{bottom:519.080267pt;}
.y274{bottom:522.321867pt;}
.y2f8{bottom:522.835333pt;}
.yc2{bottom:522.951200pt;}
.y7a{bottom:523.459333pt;}
.y1ca{bottom:523.641200pt;}
.y54{bottom:524.579200pt;}
.y18b{bottom:525.854800pt;}
.y252{bottom:526.130667pt;}
.y232{bottom:526.631200pt;}
.ye8{bottom:526.856133pt;}
.y20f{bottom:528.716533pt;}
.y2d{bottom:529.260267pt;}
.y1a8{bottom:530.008533pt;}
.y152{bottom:530.066533pt;}
.y169{bottom:530.081200pt;}
.y2b8{bottom:531.085867pt;}
.y12e{bottom:531.237333pt;}
.y10b{bottom:531.441333pt;}
.y1e9{bottom:532.381200pt;}
.y296{bottom:533.899867pt;}
.y9b{bottom:537.541600pt;}
.y2d8{bottom:538.995867pt;}
.yb{bottom:539.047733pt;}
.y2f7{bottom:540.168667pt;}
.yc1{bottom:541.581200pt;}
.y79{bottom:542.058667pt;}
.y1c9{bottom:542.225200pt;}
.y53{bottom:543.101867pt;}
.y18a{bottom:543.932800pt;}
.y231{bottom:545.015867pt;}
.ye7{bottom:545.225467pt;}
.y20e{bottom:546.963200pt;}
.y2c{bottom:547.828933pt;}
.y273{bottom:547.885867pt;}
.y1a7{bottom:548.163200pt;}
.y151{bottom:548.221200pt;}
.y168{bottom:548.235867pt;}
.y12d{bottom:549.315333pt;}
.y10a{bottom:549.504000pt;}
.y2b7{bottom:550.279867pt;}
.y1e8{bottom:550.382533pt;}
.y295{bottom:552.295867pt;}
.y9a{bottom:556.002933pt;}
.y2d7{bottom:556.999867pt;}
.y2f6{bottom:557.502000pt;}
.yc0{bottom:560.211200pt;}
.y78{bottom:560.658000pt;}
.y1c8{bottom:560.809200pt;}
.y52{bottom:561.624533pt;}
.y189{bottom:562.010800pt;}
.y230{bottom:563.400533pt;}
.ye6{bottom:563.594800pt;}
.y20d{bottom:565.209867pt;}
.y272{bottom:565.889867pt;}
.y1a6{bottom:566.317867pt;}
.y150{bottom:566.375867pt;}
.y167{bottom:566.390533pt;}
.y12c{bottom:567.393333pt;}
.y109{bottom:567.566667pt;}
.y1e7{bottom:568.383867pt;}
.y2b6{bottom:569.473867pt;}
.y99{bottom:574.464267pt;}
.y2f5{bottom:574.835333pt;}
.y2d6{bottom:575.003867pt;}
.y294{bottom:578.251867pt;}
.ybf{bottom:578.841200pt;}
.y77{bottom:579.257333pt;}
.y1c7{bottom:579.393200pt;}
.y188{bottom:580.088800pt;}
.y51{bottom:580.147200pt;}
.y22f{bottom:581.785200pt;}
.ye5{bottom:581.964133pt;}
.y251{bottom:582.178933pt;}
.ya{bottom:582.212800pt;}
.y20c{bottom:583.456533pt;}
.y271{bottom:583.893867pt;}
.y1a5{bottom:584.472533pt;}
.y14f{bottom:584.545200pt;}
.y2b{bottom:585.301333pt;}
.y12b{bottom:585.465200pt;}
.y108{bottom:585.629333pt;}
.y1e6{bottom:586.385200pt;}
.y2b5{bottom:588.667867pt;}
.y33f{bottom:589.092933pt;}
.y34f{bottom:589.372133pt;}
.y324{bottom:589.372933pt;}
.y374{bottom:589.599600pt;}
.y36c{bottom:589.612933pt;}
.y323{bottom:589.626267pt;}
.y383{bottom:589.639600pt;}
.y346{bottom:589.719600pt;}
.y36d{bottom:589.772933pt;}
.y332{bottom:589.786267pt;}
.y38f{bottom:589.799600pt;}
.y35f{bottom:589.812133pt;}
.y379{bottom:589.812933pt;}
.y34e{bottom:589.825467pt;}
.y331{bottom:589.826267pt;}
.y35d{bottom:589.838800pt;}
.y387{bottom:589.839600pt;}
.y340{bottom:589.866267pt;}
.y365{bottom:589.906267pt;}
.y325{bottom:589.919600pt;}
.y360{bottom:589.932133pt;}
.y381{bottom:589.932933pt;}
.y330{bottom:589.946267pt;}
.y35e{bottom:589.972133pt;}
.y32f{bottom:589.986267pt;}
.y373{bottom:590.012933pt;}
.y322{bottom:590.119600pt;}
.y2f4{bottom:592.168667pt;}
.y98{bottom:592.925600pt;}
.y2d5{bottom:593.007867pt;}
.y293{bottom:596.647867pt;}
.ybe{bottom:597.471200pt;}
.y76{bottom:597.856667pt;}
.y1c6{bottom:597.977200pt;}
.y187{bottom:598.166800pt;}
.y50{bottom:598.669867pt;}
.y22e{bottom:600.169867pt;}
.ye4{bottom:600.333467pt;}
.y250{bottom:600.946933pt;}
.y20b{bottom:601.703200pt;}
.y270{bottom:601.897867pt;}
.y1a4{bottom:602.673467pt;}
.y14e{bottom:602.699867pt;}
.y12a{bottom:603.543200pt;}
.y107{bottom:603.692000pt;}
.y312{bottom:604.266267pt;}
.y1e5{bottom:604.386533pt;}
.y313{bottom:607.639600pt;}
.y2f3{bottom:609.502000pt;}
.y9{bottom:610.484800pt;}
.y2b4{bottom:615.421867pt;}
.ybd{bottom:616.101200pt;}
.y186{bottom:616.244800pt;}
.y75{bottom:616.456000pt;}
.y1c5{bottom:616.561200pt;}
.y4f{bottom:617.192533pt;}
.y22d{bottom:618.554533pt;}
.y2d4{bottom:618.571867pt;}
.ye3{bottom:618.702800pt;}
.y24f{bottom:619.714933pt;}
.y20a{bottom:619.949867pt;}
.y1a3{bottom:620.828133pt;}
.y14d{bottom:620.854533pt;}
.y129{bottom:621.621200pt;}
.y106{bottom:621.754667pt;}
.y1e4{bottom:622.387867pt;}
.y292{bottom:622.603867pt;}
.y2f2{bottom:626.835333pt;}
.y26f{bottom:627.461867pt;}
.y97{bottom:630.279867pt;}
.y31b{bottom:632.306267pt;}
.y185{bottom:634.322800pt;}
.y2b3{bottom:634.615867pt;}
.ybc{bottom:634.731200pt;}
.y74{bottom:635.007200pt;}
.y1c4{bottom:635.145200pt;}
.y4e{bottom:635.715200pt;}
.y2d3{bottom:636.575867pt;}
.y22c{bottom:636.939200pt;}
.ye2{bottom:637.072133pt;}
.y209{bottom:638.196533pt;}
.y24e{bottom:638.482933pt;}
.y8{bottom:638.756800pt;}
.y1a2{bottom:638.982800pt;}
.y14c{bottom:639.009200pt;}
.y128{bottom:639.699200pt;}
.y105{bottom:639.817333pt;}
.y1e3{bottom:640.389200pt;}
.y291{bottom:640.999867pt;}
.y2a{bottom:641.225200pt;}
.y2f1{bottom:644.168667pt;}
.y96{bottom:652.077867pt;}
.y184{bottom:652.400800pt;}
.ybb{bottom:653.361200pt;}
.y73{bottom:653.606533pt;}
.y1c3{bottom:653.729200pt;}
.y2b2{bottom:653.809867pt;}
.y4d{bottom:654.237867pt;}
.y22b{bottom:655.323867pt;}
.ye1{bottom:655.441467pt;}
.y208{bottom:656.443200pt;}
.y1a1{bottom:657.137467pt;}
.y14b{bottom:657.163867pt;}
.y24d{bottom:657.250933pt;}
.y127{bottom:657.777200pt;}
.y104{bottom:657.880000pt;}
.y1e2{bottom:658.390533pt;}
.y290{bottom:659.395867pt;}
.y29{bottom:660.468000pt;}
.y2f0{bottom:661.502000pt;}
.y2d2{bottom:662.139867pt;}
.yba{bottom:671.991200pt;}
.y72{bottom:672.205867pt;}
.y1c2{bottom:672.313200pt;}
.y26e{bottom:672.583867pt;}
.y4c{bottom:672.742533pt;}
.y22a{bottom:673.708533pt;}
.ye0{bottom:673.810800pt;}
.y207{bottom:674.689867pt;}
.y1a0{bottom:675.292133pt;}
.y14a{bottom:675.318533pt;}
.y126{bottom:675.855200pt;}
.y103{bottom:675.942667pt;}
.y24c{bottom:676.018933pt;}
.y1e1{bottom:676.391867pt;}
.y28{bottom:678.384667pt;}
.y2ef{bottom:678.835333pt;}
.y2d1{bottom:680.143867pt;}
.y2b1{bottom:680.563867pt;}
.y28f{bottom:685.351867pt;}
.y34a{bottom:688.146267pt;}
.y314{bottom:689.332933pt;}
.y183{bottom:689.380000pt;}
.y347{bottom:689.466267pt;}
.y349{bottom:689.519600pt;}
.y356{bottom:689.532133pt;}
.y31c{bottom:689.532933pt;}
.y378{bottom:689.639600pt;}
.y36f{bottom:689.759600pt;}
.y333{bottom:689.772933pt;}
.y328{bottom:689.786267pt;}
.y362{bottom:689.812133pt;}
.y36e{bottom:689.812933pt;}
.y366{bottom:689.866267pt;}
.y341{bottom:689.946267pt;}
.y357{bottom:689.958800pt;}
.y377{bottom:689.959600pt;}
.y334{bottom:689.972933pt;}
.y355{bottom:689.985467pt;}
.y329{bottom:689.986267pt;}
.y375{bottom:689.999600pt;}
.y326{bottom:690.012933pt;}
.y348{bottom:690.026267pt;}
.y354{bottom:690.038800pt;}
.y327{bottom:690.039600pt;}
.y342{bottom:690.052933pt;}
.y352{bottom:690.065467pt;}
.y37d{bottom:690.079600pt;}
.y38c{bottom:690.092933pt;}
.y37c{bottom:690.106267pt;}
.y351{bottom:690.145467pt;}
.y37a{bottom:690.146267pt;}
.y353{bottom:690.198800pt;}
.y37b{bottom:690.199600pt;}
.y350{bottom:690.278800pt;}
.y376{bottom:690.279600pt;}
.y38d{bottom:690.306267pt;}
.y384{bottom:690.319600pt;}
.y361{bottom:690.332133pt;}
.y38b{bottom:690.332933pt;}
.yb9{bottom:690.621200pt;}
.y71{bottom:690.805200pt;}
.y1c1{bottom:690.897200pt;}
.y4b{bottom:691.265200pt;}
.y229{bottom:692.093200pt;}
.ydf{bottom:692.180133pt;}
.y206{bottom:692.936533pt;}
.y19f{bottom:693.446800pt;}
.y149{bottom:693.473200pt;}
.y7{bottom:693.497467pt;}
.y125{bottom:693.933200pt;}
.y102{bottom:694.005333pt;}
.y1e0{bottom:694.393200pt;}
.y24b{bottom:694.786933pt;}
.y2ee{bottom:696.168667pt;}
.y27{bottom:696.291333pt;}
.y26d{bottom:698.147867pt;}
.y2b0{bottom:699.757867pt;}
.y28e{bottom:703.747867pt;}
.y95{bottom:707.885467pt;}
.yb8{bottom:709.251200pt;}
.y70{bottom:709.404533pt;}
.y1c0{bottom:709.481200pt;}
.y4a{bottom:709.787867pt;}
.y228{bottom:710.477867pt;}
.yde{bottom:710.549467pt;}
.y182{bottom:710.800000pt;}
.y205{bottom:711.183200pt;}
.y19e{bottom:711.601467pt;}
.y148{bottom:711.627867pt;}
.y124{bottom:712.011200pt;}
.y101{bottom:712.068000pt;}
.y1df{bottom:712.394533pt;}
.y315{bottom:713.119600pt;}
.y24a{bottom:713.554933pt;}
.y26{bottom:714.198000pt;}
.y26c{bottom:716.151867pt;}
.y2af{bottom:718.951867pt;}
.y6{bottom:719.990800pt;}
.y28d{bottom:722.143867pt;}
.y2d0{bottom:723.711867pt;}
.y2ed{bottom:724.835333pt;}
.y94{bottom:726.346800pt;}
.yb7{bottom:727.881200pt;}
.y6f{bottom:728.003867pt;}
.y1bf{bottom:728.065200pt;}
.y49{bottom:728.310533pt;}
.y227{bottom:728.862533pt;}
.ydd{bottom:728.918800pt;}
.y204{bottom:729.429867pt;}
.y147{bottom:729.782533pt;}
.y123{bottom:730.089200pt;}
.y100{bottom:730.150533pt;}
.y1de{bottom:730.395867pt;}
.y25{bottom:732.104667pt;}
.y249{bottom:732.322933pt;}
.y26b{bottom:734.155867pt;}
.y5{bottom:738.924133pt;}
.y2cf{bottom:741.715867pt;}
.y93{bottom:744.808133pt;}
.y2ae{bottom:745.705867pt;}
.yb6{bottom:746.511200pt;}
.y6e{bottom:746.603200pt;}
.y1be{bottom:746.649200pt;}
.y48{bottom:746.833200pt;}
.y226{bottom:747.247200pt;}
.ydc{bottom:747.288133pt;}
.y203{bottom:747.661200pt;}
.y146{bottom:747.937200pt;}
.y28c{bottom:748.099867pt;}
.y122{bottom:748.167200pt;}
.yff{bottom:748.213200pt;}
.y1dd{bottom:748.397200pt;}
.y24{bottom:750.011333pt;}
.y248{bottom:751.090933pt;}
.y26a{bottom:752.159867pt;}
.y2ce{bottom:759.719867pt;}
.y92{bottom:763.269467pt;}
.y2ad{bottom:764.899867pt;}
.yb5{bottom:765.141200pt;}
.y6d{bottom:765.202533pt;}
.y1bd{bottom:765.233200pt;}
.y47{bottom:765.355867pt;}
.y4{bottom:765.417467pt;}
.y225{bottom:765.631867pt;}
.ydb{bottom:765.657467pt;}
.y202{bottom:765.907867pt;}
.y145{bottom:766.091867pt;}
.y121{bottom:766.245200pt;}
.yfe{bottom:766.275867pt;}
.y1dc{bottom:766.398533pt;}
.y28b{bottom:766.495867pt;}
.y23{bottom:767.918000pt;}
.y2ec{bottom:776.179067pt;}
.y269{bottom:777.723867pt;}
.yb4{bottom:783.771200pt;}
.y6c{bottom:783.801867pt;}
.y1bc{bottom:783.817200pt;}
.y46{bottom:783.878533pt;}
.y224{bottom:784.016533pt;}
.yda{bottom:784.031867pt;}
.y2ac{bottom:784.093867pt;}
.y201{bottom:784.154533pt;}
.y144{bottom:784.246533pt;}
.y120{bottom:784.323200pt;}
.yfd{bottom:784.338533pt;}
.y3{bottom:784.350800pt;}
.y1db{bottom:784.399867pt;}
.y28a{bottom:784.891867pt;}
.y247{bottom:784.971333pt;}
.y2cd{bottom:785.283867pt;}
.y22{bottom:785.824667pt;}
.y2eb{bottom:800.184400pt;}
.y91{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.ha{height:33.763396pt;}
.h7{height:39.479167pt;}
.hb{height:44.414062pt;}
.h13{height:49.322917pt;}
.h4{height:49.348958pt;}
.he{height:50.761719pt;}
.h3{height:51.816406pt;}
.h10{height:56.721354pt;}
.hd{height:56.731035pt;}
.h9{height:56.751302pt;}
.hf{height:56.775835pt;}
.h11{height:56.780635pt;}
.hc{height:56.823302pt;}
.h12{height:57.310235pt;}
.h2{height:61.686198pt;}
.h8{height:66.621094pt;}
.h6{height:69.088542pt;}
.h5{height:88.828125pt;}
.h14{height:113.348958pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:72.313467pt;}
.x8{left:73.308133pt;}
.x7{left:74.344400pt;}
.x1{left:75.590533pt;}
.x11{left:84.457733pt;}
.x10{left:91.288000pt;}
.x9{left:92.203733pt;}
.x6{left:93.347200pt;}
.x5{left:94.547200pt;}
.xd{left:95.449333pt;}
.x29{left:106.460267pt;}
.x12{left:110.666133pt;}
.x13{left:126.666133pt;}
.x2a{left:142.660267pt;}
.x14{left:146.866133pt;}
.x2b{left:158.660267pt;}
.x15{left:162.866133pt;}
.x2c{left:174.660267pt;}
.xc{left:178.807867pt;}
.xb{left:180.015067pt;}
.xa{left:189.034667pt;}
.x2d{left:190.660267pt;}
.x3e{left:194.860400pt;}
.x16{left:199.066133pt;}
.xf{left:203.709733pt;}
.x4{left:205.524800pt;}
.x3{left:206.533067pt;}
.x2{left:207.628000pt;}
.x3f{left:210.860400pt;}
.x17{left:215.066133pt;}
.x2e{left:222.660267pt;}
.x40{left:226.860400pt;}
.x18{left:231.066133pt;}
.x2f{left:238.660267pt;}
.x56{left:242.860400pt;}
.x19{left:247.066133pt;}
.x30{left:258.860267pt;}
.x1a{left:263.066133pt;}
.x31{left:274.860267pt;}
.x41{left:279.060400pt;}
.x1b{left:283.266133pt;}
.x32{left:290.860267pt;}
.x42{left:295.060400pt;}
.x1c{left:299.266133pt;}
.x33{left:306.871867pt;}
.x43{left:311.060400pt;}
.x1d{left:315.266133pt;}
.x34{left:322.871867pt;}
.x44{left:327.060400pt;}
.x1e{left:331.266133pt;}
.x35{left:338.871867pt;}
.x45{left:343.060400pt;}
.x1f{left:347.266133pt;}
.x36{left:354.871867pt;}
.x46{left:359.060400pt;}
.x20{left:363.266133pt;}
.x37{left:370.871867pt;}
.x47{left:375.060400pt;}
.x21{left:379.266133pt;}
.x38{left:386.871867pt;}
.x48{left:391.060400pt;}
.x51{left:395.260400pt;}
.x22{left:399.466133pt;}
.x39{left:407.071867pt;}
.x49{left:411.260400pt;}
.x23{left:415.466133pt;}
.x3a{left:423.071867pt;}
.x4a{left:427.260400pt;}
.x24{left:431.466133pt;}
.x3b{left:439.071867pt;}
.x4b{left:443.260400pt;}
.x52{left:447.460400pt;}
.x25{left:451.666133pt;}
.x3c{left:455.071867pt;}
.x4c{left:459.260400pt;}
.x53{left:463.460400pt;}
.x26{left:467.666133pt;}
.x4d{left:475.260400pt;}
.x54{left:479.460400pt;}
.x27{left:483.666133pt;}
.x4e{left:491.260400pt;}
.x55{left:495.460400pt;}
.x28{left:499.666133pt;}
.x4f{left:507.260400pt;}
.x50{left:523.260400pt;}
.x3d{left:564.266267pt;}
}




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