
    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_5a88b8209c9f1ee23ea70da4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_7e3c490a832b81b3fe87b699.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966797;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_0356786457936d40556ed842.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_5c5b4b8bb1448bb576ca6436.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.975586;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_b0f47b385f158cf8cf5ba659.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_363b24abbd076f4960c57b81.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.975586;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_d882fe1a2e2dcbcca6abd9fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948242;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_7e3878044f636bc09ef9d928.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_44793d54f74893ee43a09a79.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_d5c89f57ae58c52df8e35db0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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_67d0cabbcebcef92af079aea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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);}
.vb{vertical-align:-20.880000px;}
.va{vertical-align:-18.000000px;}
.v4{vertical-align:-10.800000px;}
.vd{vertical-align:-7.920000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v10{vertical-align:10.800000px;}
.v11{vertical-align:12.960000px;}
.ve{vertical-align:18.720000px;}
.v6{vertical-align:25.200000px;}
.vf{vertical-align:30.240000px;}
.v5{vertical-align:36.000000px;}
.v3{vertical-align:41.040000px;}
.vc{vertical-align:43.200000px;}
.v9{vertical-align:46.800000px;}
.v8{vertical-align:66.240000px;}
.v7{vertical-align:77.040000px;}
.ls13{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.504000px;}
.ls2e{letter-spacing:-0.342000px;}
.ls21{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.193200px;}
.ls43{letter-spacing:-0.181200px;}
.ls11{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.106800px;}
.ls22{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.006000px;}
.lsb{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.018000px;}
.lse{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.030000px;}
.ls3e{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.054000px;}
.ls2d{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.126000px;}
.ls25{letter-spacing:0.126600px;}
.ls16{letter-spacing:0.144000px;}
.ls33{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.169680px;}
.ls18{letter-spacing:0.180000px;}
.ls23{letter-spacing:0.198600px;}
.ls8{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.342000px;}
.ls4{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.372000px;}
.lsd{letter-spacing:0.414000px;}
.ls40{letter-spacing:0.468000px;}
.ls32{letter-spacing:0.522000px;}
.ls27{letter-spacing:2.941920px;}
.ls42{letter-spacing:5.148000px;}
.ls17{letter-spacing:6.288480px;}
.ls2a{letter-spacing:8.514000px;}
.ls2b{letter-spacing:9.234000px;}
.ls1a{letter-spacing:11.628000px;}
.ls1e{letter-spacing:12.222000px;}
.ls30{letter-spacing:15.007680px;}
.ls1b{letter-spacing:15.102000px;}
.ls1c{letter-spacing:15.127200px;}
.ls31{letter-spacing:15.203520px;}
.ls1f{letter-spacing:15.387840px;}
.ls1d{letter-spacing:15.847200px;}
.ls19{letter-spacing:15.948000px;}
.ls26{letter-spacing:61.902000px;}
.ls29{letter-spacing:73.548000px;}
.ls3b{letter-spacing:84.348000px;}
.ls7{letter-spacing:88.500000px;}
.ls3c{letter-spacing:104.508000px;}
.ls20{letter-spacing:126.702000px;}
.ls3d{letter-spacing:128.988000px;}
.ls38{letter-spacing:155.628000px;}
.ls39{letter-spacing:172.188000px;}
.ls3a{letter-spacing:175.788000px;}
.ls34{letter-spacing:199.548000px;}
.ls35{letter-spacing:201.708000px;}
.ls36{letter-spacing:213.948000px;}
.ls3f{letter-spacing:234.768000px;}
.ls37{letter-spacing:253.548000px;}
.ls41{letter-spacing:261.444000px;}
.ls28{letter-spacing:420.084000px;}
.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;}
}
.ws41{word-spacing:-54.000000px;}
.ws1{word-spacing:-20.016000px;}
.ws3{word-spacing:-16.667280px;}
.ws2{word-spacing:-16.613280px;}
.ws29{word-spacing:-16.506480px;}
.ws38{word-spacing:-15.372000px;}
.ws3b{word-spacing:-15.264000px;}
.ws39{word-spacing:-15.228000px;}
.ws4c{word-spacing:-15.174000px;}
.ws4b{word-spacing:-15.138000px;}
.ws26{word-spacing:-15.120000px;}
.ws28{word-spacing:-15.030000px;}
.ws7{word-spacing:-15.012000px;}
.ws27{word-spacing:-14.994000px;}
.ws6{word-spacing:-14.904000px;}
.ws4d{word-spacing:-14.508000px;}
.ws3a{word-spacing:-14.400000px;}
.ws0{word-spacing:-13.410720px;}
.ws4a{word-spacing:-13.229520px;}
.ws3d{word-spacing:-11.952000px;}
.ws3c{word-spacing:-11.898000px;}
.ws5{word-spacing:-11.880000px;}
.ws30{word-spacing:-11.664000px;}
.ws48{word-spacing:-10.332000px;}
.ws49{word-spacing:-10.116000px;}
.ws2a{word-spacing:-10.008000px;}
.ws31{word-spacing:-9.936000px;}
.ws32{word-spacing:-8.752200px;}
.ws35{word-spacing:-8.680200px;}
.ws2e{word-spacing:-8.553600px;}
.wsb{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.054000px;}
.ws8{word-spacing:0.000000px;}
.ws9{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
.ws1d{word-spacing:4.182000px;}
.ws1e{word-spacing:4.782000px;}
.wse{word-spacing:4.842000px;}
.wsd{word-spacing:4.902000px;}
.wsf{word-spacing:5.022000px;}
.ws42{word-spacing:5.526000px;}
.ws2b{word-spacing:5.706000px;}
.ws36{word-spacing:5.938920px;}
.ws17{word-spacing:6.216000px;}
.ws18{word-spacing:6.276000px;}
.ws16{word-spacing:6.396000px;}
.ws37{word-spacing:6.499927px;}
.ws43{word-spacing:6.599520px;}
.ws3f{word-spacing:6.701643px;}
.ws2c{word-spacing:6.744727px;}
.ws2d{word-spacing:6.768233px;}
.ws21{word-spacing:6.990000px;}
.ws20{word-spacing:7.050000px;}
.ws1f{word-spacing:7.110000px;}
.ws44{word-spacing:7.319520px;}
.ws45{word-spacing:7.499520px;}
.ws22{word-spacing:7.710000px;}
.ws24{word-spacing:7.770000px;}
.ws23{word-spacing:7.830000px;}
.ws40{word-spacing:7.867927px;}
.ws25{word-spacing:8.544000px;}
.ws3e{word-spacing:9.387957px;}
.ws33{word-spacing:11.023920px;}
.ws15{word-spacing:12.726000px;}
.ws14{word-spacing:12.732000px;}
.ws10{word-spacing:12.846000px;}
.ws13{word-spacing:12.906000px;}
.ws2f{word-spacing:13.212000px;}
.ws12{word-spacing:13.446000px;}
.ws11{word-spacing:13.626000px;}
.ws1c{word-spacing:14.880000px;}
.ws1a{word-spacing:14.940000px;}
.ws19{word-spacing:15.000000px;}
.ws1b{word-spacing:15.600000px;}
.ws4{word-spacing:42.011280px;}
.ws34{word-spacing:75.864727px;}
.ws46{word-spacing:126.839520px;}
._2e{margin-left:-12.156000px;}
._2f{margin-left:-10.384267px;}
._2a{margin-left:-9.096254px;}
._2b{margin-left:-6.416550px;}
._1c{margin-left:-4.214254px;}
._7{margin-left:-3.159033px;}
._6{margin-left:-2.148015px;}
._0{margin-left:-1.131614px;}
._1{width:1.068000px;}
._5{width:2.117617px;}
._4{width:4.104129px;}
._2{width:5.161567px;}
._1d{width:6.892527px;}
._9{width:8.134905px;}
._24{width:9.196679px;}
._f{width:10.260015px;}
._e{width:11.610000px;}
._3{width:13.075525px;}
._8{width:15.361550px;}
._18{width:17.064000px;}
._23{width:18.405599px;}
._17{width:19.548015px;}
._16{width:20.736000px;}
._15{width:21.972000px;}
._14{width:23.112000px;}
._b{width:24.408000px;}
._a{width:25.542000px;}
._1b{width:27.108000px;}
._d{width:28.623614px;}
._c{width:29.916000px;}
._10{width:31.170000px;}
._37{width:32.184000px;}
._1f{width:33.209985px;}
._12{width:35.208015px;}
._11{width:36.720000px;}
._1e{width:38.340000px;}
._34{width:39.378000px;}
._1a{width:40.500000px;}
._19{width:41.526000px;}
._35{width:42.552000px;}
._21{width:44.334000px;}
._20{width:45.684000px;}
._22{width:47.310000px;}
._13{width:48.330000px;}
._31{width:49.512000px;}
._28{width:51.084015px;}
._27{width:52.434000px;}
._26{width:53.472000px;}
._29{width:57.054240px;}
._2d{width:58.536000px;}
._2c{width:59.562000px;}
._4f{width:61.884000px;}
._30{width:73.512000px;}
._52{width:77.147617px;}
._51{width:78.318383px;}
._25{width:88.500000px;}
._33{width:92.412000px;}
._36{width:96.816000px;}
._49{width:117.912000px;}
._4e{width:124.506000px;}
._3d{width:141.906000px;}
._50{width:146.664000px;}
._3e{width:151.140000px;}
._4c{width:153.984000px;}
._4d{width:162.228000px;}
._3c{width:170.994000px;}
._40{width:177.924000px;}
._4a{width:180.948000px;}
._42{width:183.792000px;}
._32{width:189.984000px;}
._4b{width:192.918000px;}
._3a{width:206.832000px;}
._48{width:210.954000px;}
._47{width:216.560401px;}
._46{width:217.780433px;}
._3f{width:231.528000px;}
._45{width:263.604000px;}
._44{width:266.916000px;}
._41{width:270.912000px;}
._38{width:285.960000px;}
._39{width:288.930000px;}
._43{width:291.954000px;}
._3b{width:312.960000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y26d{bottom:2.805000px;}
.y15f{bottom:2.880000px;}
.y128{bottom:3.240000px;}
.y175{bottom:3.600000px;}
.y173{bottom:3.780000px;}
.y137{bottom:5.400000px;}
.y14e{bottom:6.300000px;}
.ye8{bottom:7.920000px;}
.y119{bottom:9.180000px;}
.y161{bottom:10.620000px;}
.y15d{bottom:10.800000px;}
.yaa{bottom:11.880000px;}
.y127{bottom:12.240000px;}
.y138{bottom:13.320000px;}
.y129{bottom:13.680000px;}
.y14c{bottom:14.040000px;}
.y165{bottom:15.480000px;}
.y118{bottom:18.180000px;}
.y162{bottom:18.360000px;}
.y15e{bottom:18.540000px;}
.y11a{bottom:19.980000px;}
.yab{bottom:20.700000px;}
.ya9{bottom:20.880000px;}
.y149{bottom:21.960000px;}
.ye7{bottom:28.620000px;}
.y14a{bottom:29.700000px;}
.ya4{bottom:37.080000px;}
.y148{bottom:37.440000px;}
.ye6{bottom:37.620000px;}
.y14b{bottom:45.180000px;}
.y14d{bottom:52.965000px;}
.y1{bottom:53.640000px;}
.ye9{bottom:55.440000px;}
.ye5{bottom:67.140000px;}
.y54{bottom:84.960000px;}
.ye4{bottom:86.040000px;}
.ye3{bottom:95.040000px;}
.y109{bottom:131.616000px;}
.y171{bottom:133.776000px;}
.y298{bottom:136.296000px;}
.y1a9{bottom:136.476000px;}
.y53{bottom:136.836000px;}
.ya3{bottom:140.976000px;}
.y36{bottom:141.156000px;}
.y24e{bottom:142.776000px;}
.y2e1{bottom:144.036000px;}
.y310{bottom:144.216000px;}
.y108{bottom:147.096000px;}
.y135{bottom:147.456000px;}
.y287{bottom:148.356000px;}
.y170{bottom:149.256000px;}
.y1dd{bottom:149.976000px;}
.y297{bottom:151.770000px;}
.y1a8{bottom:152.130000px;}
.y52{bottom:152.490000px;}
.y22e{bottom:155.550000px;}
.ya2{bottom:156.450000px;}
.y35{bottom:156.630000px;}
.yda{bottom:157.530000px;}
.y24d{bottom:158.430000px;}
.y2e0{bottom:159.510000px;}
.y30f{bottom:159.870000px;}
.y8a{bottom:160.050000px;}
.y2b9{bottom:160.590000px;}
.y26b{bottom:161.310000px;}
.y134{bottom:162.930000px;}
.y286{bottom:163.830000px;}
.y16f{bottom:164.730000px;}
.y1dc{bottom:165.630000px;}
.y296{bottom:167.250000px;}
.y1a7{bottom:167.610000px;}
.y51{bottom:167.970000px;}
.y22d{bottom:171.210000px;}
.ya1{bottom:171.930000px;}
.y34{bottom:172.110000px;}
.yd9{bottom:173.010000px;}
.y24c{bottom:173.910000px;}
.y2df{bottom:174.990000px;}
.y30e{bottom:175.350000px;}
.y89{bottom:175.710000px;}
.y2b8{bottom:176.070000px;}
.y26a{bottom:176.790000px;}
.y133{bottom:178.410000px;}
.y285{bottom:179.310000px;}
.y32e{bottom:180.390000px;}
.y107{bottom:180.570000px;}
.y1db{bottom:181.110000px;}
.y295{bottom:182.730000px;}
.y50{bottom:183.450000px;}
.y22c{bottom:186.690000px;}
.ya0{bottom:187.410000px;}
.y33{bottom:187.590000px;}
.yd8{bottom:188.670000px;}
.y24b{bottom:189.570000px;}
.y1a6{bottom:189.930000px;}
.y2de{bottom:190.470000px;}
.y30d{bottom:190.830000px;}
.y88{bottom:191.190000px;}
.y2b7{bottom:191.730000px;}
.y269{bottom:192.270000px;}
.y132{bottom:193.890000px;}
.y284{bottom:194.970000px;}
.y32d{bottom:195.870000px;}
.y106{bottom:196.050000px;}
.y1da{bottom:196.590000px;}
.y16e{bottom:198.210000px;}
.y4f{bottom:198.930000px;}
.y22b{bottom:202.170000px;}
.y9f{bottom:203.070000px;}
.yd7{bottom:204.330000px;}
.y24a{bottom:205.050000px;}
.y2dd{bottom:206.130000px;}
.y30c{bottom:206.310000px;}
.y87{bottom:206.670000px;}
.y1a5{bottom:207.030000px;}
.y2b6{bottom:207.210000px;}
.y268{bottom:207.750000px;}
.y131{bottom:209.550000px;}
.y283{bottom:210.450000px;}
.y32c{bottom:211.350000px;}
.y105{bottom:211.710000px;}
.y1d9{bottom:212.070000px;}
.y16d{bottom:213.870000px;}
.y294{bottom:216.390000px;}
.y9e{bottom:218.550000px;}
.y249{bottom:220.710000px;}
.y32{bottom:221.250000px;}
.y2dc{bottom:221.610000px;}
.y86{bottom:222.150000px;}
.y2b5{bottom:222.690000px;}
.y267{bottom:223.410000px;}
.y1a4{bottom:223.950000px;}
.y32b{bottom:226.830000px;}
.y104{bottom:227.190000px;}
.y1d8{bottom:227.730000px;}
.y16c{bottom:229.350000px;}
.y1fc{bottom:230.070000px;}
.y293{bottom:231.870000px;}
.y4e{bottom:232.590000px;}
.y9d{bottom:234.030000px;}
.y22a{bottom:235.650000px;}
.y31{bottom:236.730000px;}
.y2db{bottom:237.090000px;}
.y85{bottom:237.810000px;}
.yd6{bottom:237.990000px;}
.y2b4{bottom:238.170000px;}
.y266{bottom:238.890000px;}
.y30b{bottom:239.790000px;}
.y1a3{bottom:241.050000px;}
.y103{bottom:242.670000px;}
.y1d7{bottom:243.210000px;}
.y282{bottom:243.930000px;}
.y16b{bottom:244.830000px;}
.y1fb{bottom:245.730000px;}
.y292{bottom:247.350000px;}
.y4d{bottom:248.070000px;}
.y9c{bottom:249.510000px;}
.y229{bottom:251.310000px;}
.y30{bottom:252.210000px;}
.y2da{bottom:252.570000px;}
.yd5{bottom:253.470000px;}
.y2b3{bottom:253.830000px;}
.y248{bottom:254.370000px;}
.y30a{bottom:255.450000px;}
.y1a2{bottom:257.970000px;}
.y102{bottom:258.150000px;}
.y1d6{bottom:258.690000px;}
.y281{bottom:259.410000px;}
.y16a{bottom:260.310000px;}
.y32a{bottom:260.490000px;}
.y1fa{bottom:261.210000px;}
.y291{bottom:262.830000px;}
.y4c{bottom:263.550000px;}
.y228{bottom:266.790000px;}
.y2f{bottom:267.690000px;}
.y2d9{bottom:268.230000px;}
.yd4{bottom:268.950000px;}
.y2b2{bottom:269.310000px;}
.y247{bottom:269.850000px;}
.y309{bottom:270.930000px;}
.y84{bottom:271.290000px;}
.y101{bottom:273.810000px;}
.y1d5{bottom:274.170000px;}
.y1a1{bottom:275.070000px;}
.y169{bottom:275.970000px;}
.y1f9{bottom:276.690000px;}
.y290{bottom:278.490000px;}
.y4b{bottom:279.030000px;}
.y227{bottom:282.270000px;}
.y130{bottom:282.990000px;}
.y2e{bottom:283.350000px;}
.y2d8{bottom:283.710000px;}
.y246{bottom:285.510000px;}
.y308{bottom:286.410000px;}
.y83{bottom:286.770000px;}
.yd3{bottom:288.930000px;}
.y1d4{bottom:289.830000px;}
.y280{bottom:290.550000px;}
.y168{bottom:291.450000px;}
.y1a0{bottom:291.990000px;}
.y1f8{bottom:292.170000px;}
.y28f{bottom:293.970000px;}
.y4a{bottom:294.690000px;}
.y226{bottom:297.750000px;}
.y100{bottom:298.290000px;}
.y12f{bottom:298.650000px;}
.y2d7{bottom:299.190000px;}
.y245{bottom:300.990000px;}
.y307{bottom:301.890000px;}
.y82{bottom:302.250000px;}
.y2b1{bottom:303.150000px;}
.yd2{bottom:304.770000px;}
.y27f{bottom:306.030000px;}
.y329{bottom:306.930000px;}
.y1f7{bottom:307.830000px;}
.y19f{bottom:309.090000px;}
.y225{bottom:313.410000px;}
.yff{bottom:313.770000px;}
.y12e{bottom:314.490000px;}
.y2d6{bottom:314.670000px;}
.y244{bottom:316.470000px;}
.y2d{bottom:316.830000px;}
.y81{bottom:317.910000px;}
.y49{bottom:319.170000px;}
.yd1{bottom:320.430000px;}
.y27e{bottom:321.510000px;}
.y328{bottom:322.590000px;}
.y1f6{bottom:323.310000px;}
.y1d3{bottom:323.490000px;}
.y9b{bottom:324.930000px;}
.y19e{bottom:326.190000px;}
.y28e{bottom:327.450000px;}
.yfe{bottom:329.250000px;}
.y12d{bottom:329.970000px;}
.y2d5{bottom:330.150000px;}
.y243{bottom:332.130000px;}
.y2c{bottom:332.310000px;}
.y80{bottom:333.390000px;}
.y265{bottom:334.470000px;}
.y48{bottom:334.650000px;}
.y306{bottom:335.550000px;}
.yd0{bottom:336.090000px;}
.y27d{bottom:337.215000px;}
.y2b0{bottom:338.115000px;}
.y1f5{bottom:338.835000px;}
.y9a{bottom:340.455000px;}
.y28d{bottom:342.975000px;}
.y19d{bottom:343.155000px;}
.y12c{bottom:345.675000px;}
.y2d4{bottom:345.855000px;}
.y224{bottom:346.935000px;}
.y2b{bottom:347.835000px;}
.y7f{bottom:348.915000px;}
.y264{bottom:349.995000px;}
.y47{bottom:350.175000px;}
.yfd{bottom:350.895000px;}
.y305{bottom:351.075000px;}
.ycf{bottom:351.975000px;}
.y2af{bottom:353.595000px;}
.y1f4{bottom:354.315000px;}
.y99{bottom:355.935000px;}
.y167{bottom:356.115000px;}
.y1d2{bottom:358.635000px;}
.y19c{bottom:360.255000px;}
.y12b{bottom:361.335000px;}
.y223{bottom:362.415000px;}
.y2a{bottom:363.495000px;}
.y7e{bottom:364.575000px;}
.y263{bottom:365.655000px;}
.y46{bottom:365.835000px;}
.y304{bottom:366.555000px;}
.yce{bottom:367.635000px;}
.y2ae{bottom:369.075000px;}
.y27c{bottom:370.695000px;}
.y98{bottom:371.415000px;}
.y166{bottom:371.595000px;}
.y1d1{bottom:374.115000px;}
.y2d3{bottom:376.815000px;}
.y19b{bottom:377.175000px;}
.y222{bottom:377.895000px;}
.y29{bottom:378.975000px;}
.y7d{bottom:380.415000px;}
.y262{bottom:381.135000px;}
.y242{bottom:381.315000px;}
.y45{bottom:381.675000px;}
.y303{bottom:382.035000px;}
.y2ad{bottom:384.735000px;}
.y27b{bottom:386.175000px;}
.y97{bottom:387.075000px;}
.y1f3{bottom:388.155000px;}
.y1d0{bottom:389.595000px;}
.y2d2{bottom:392.295000px;}
.y221{bottom:393.555000px;}
.y19a{bottom:394.275000px;}
.y28{bottom:394.455000px;}
.y12a{bottom:395.175000px;}
.y7c{bottom:396.075000px;}
.y261{bottom:396.615000px;}
.y241{bottom:396.975000px;}
.y2ac{bottom:400.215000px;}
.ycd{bottom:401.295000px;}
.y27a{bottom:401.655000px;}
.y96{bottom:402.555000px;}
.y327{bottom:402.735000px;}
.y1cf{bottom:405.075000px;}
.y44{bottom:406.155000px;}
.y2d1{bottom:407.955000px;}
.y164{bottom:408.675000px;}
.y220{bottom:409.035000px;}
.y27{bottom:409.935000px;}
.y199{bottom:411.375000px;}
.y7b{bottom:411.735000px;}
.y260{bottom:412.095000px;}
.y240{bottom:412.455000px;}
.y2ab{bottom:415.695000px;}
.ycc{bottom:416.775000px;}
.y279{bottom:417.315000px;}
.y95{bottom:418.035000px;}
.y326{bottom:418.215000px;}
.y1ce{bottom:420.735000px;}
.y43{bottom:421.635000px;}
.y1f2{bottom:423.075000px;}
.y2d0{bottom:423.435000px;}
.y21f{bottom:424.515000px;}
.y26{bottom:425.595000px;}
.y7a{bottom:427.215000px;}
.y25f{bottom:427.575000px;}
.y23f{bottom:427.935000px;}
.y198{bottom:428.295000px;}
.y302{bottom:431.175000px;}
.ycb{bottom:432.255000px;}
.y278{bottom:432.795000px;}
.y94{bottom:433.515000px;}
.y325{bottom:433.695000px;}
.y1cd{bottom:436.215000px;}
.y42{bottom:437.115000px;}
.y1f1{bottom:438.735000px;}
.y2cf{bottom:438.915000px;}
.y163{bottom:440.535000px;}
.y25{bottom:441.075000px;}
.y79{bottom:442.695000px;}
.y25e{bottom:443.235000px;}
.y23e{bottom:443.415000px;}
.y197{bottom:445.395000px;}
.y301{bottom:446.655000px;}
.yca{bottom:447.915000px;}
.y2aa{bottom:449.175000px;}
.y1cc{bottom:451.695000px;}
.y41{bottom:452.595000px;}
.y1f0{bottom:454.215000px;}
.y2ce{bottom:454.395000px;}
.y21e{bottom:457.995000px;}
.y78{bottom:458.175000px;}
.y25d{bottom:458.715000px;}
.y23d{bottom:459.075000px;}
.y300{bottom:462.135000px;}
.y196{bottom:462.315000px;}
.y160{bottom:463.035000px;}
.yc9{bottom:463.395000px;}
.y2a9{bottom:464.835000px;}
.y277{bottom:466.635000px;}
.y1cb{bottom:467.175000px;}
.y1ef{bottom:469.695000px;}
.y2cd{bottom:470.055000px;}
.y126{bottom:473.115000px;}
.y21d{bottom:473.655000px;}
.y25c{bottom:474.195000px;}
.y24{bottom:474.555000px;}
.y2ff{bottom:477.795000px;}
.yc8{bottom:478.875000px;}
.y195{bottom:479.415000px;}
.y2a8{bottom:480.315000px;}
.y324{bottom:482.835000px;}
.y1ee{bottom:485.175000px;}
.y2cc{bottom:485.535000px;}
.y40{bottom:486.255000px;}
.y125{bottom:488.595000px;}
.y21c{bottom:489.135000px;}
.y25b{bottom:489.675000px;}
.y23{bottom:490.035000px;}
.y77{bottom:492.015000px;}
.y23c{bottom:492.915000px;}
.y2fe{bottom:493.275000px;}
.y15c{bottom:493.995000px;}
.yc7{bottom:494.355000px;}
.y2a7{bottom:495.795000px;}
.y194{bottom:496.515000px;}
.y323{bottom:498.315000px;}
.y1ca{bottom:500.835000px;}
.y276{bottom:501.555000px;}
.y3f{bottom:501.735000px;}
.y124{bottom:504.075000px;}
.y21b{bottom:504.615000px;}
.y25a{bottom:505.335000px;}
.y22{bottom:505.695000px;}
.y23b{bottom:508.395000px;}
.y2fd{bottom:508.755000px;}
.yc6{bottom:510.015000px;}
.y2cb{bottom:510.375000px;}
.y2a6{bottom:511.275000px;}
.y193{bottom:513.435000px;}
.y322{bottom:513.795000px;}
.y1c9{bottom:516.315000px;}
.y275{bottom:517.035000px;}
.y3e{bottom:517.215000px;}
.y123{bottom:519.555000px;}
.y21a{bottom:520.275000px;}
.y259{bottom:520.815000px;}
.y21{bottom:521.175000px;}
.y23a{bottom:523.875000px;}
.y2fc{bottom:524.235000px;}
.y15b{bottom:525.135000px;}
.y76{bottom:526.935000px;}
.y321{bottom:529.275000px;}
.y192{bottom:530.535000px;}
.y1c8{bottom:531.795000px;}
.y3d{bottom:532.695000px;}
.y28c{bottom:534.315000px;}
.y122{bottom:535.215000px;}
.y20{bottom:536.835000px;}
.y274{bottom:538.635000px;}
.y239{bottom:539.355000px;}
.y2fb{bottom:539.895000px;}
.y75{bottom:542.595000px;}
.yc5{bottom:543.495000px;}
.y2a5{bottom:544.755000px;}
.y2ca{bottom:545.655000px;}
.y1c7{bottom:547.275000px;}
.y191{bottom:547.455000px;}
.y15a{bottom:547.635000px;}
.yfc{bottom:547.815000px;}
.y3c{bottom:548.355000px;}
.y1ed{bottom:549.795000px;}
.y121{bottom:550.695000px;}
.y1f{bottom:552.495000px;}
.y219{bottom:553.935000px;}
.y258{bottom:554.295000px;}
.y238{bottom:555.015000px;}
.y74{bottom:558.075000px;}
.yc4{bottom:558.975000px;}
.y2a4{bottom:560.415000px;}
.y1c6{bottom:562.755000px;}
.yfb{bottom:563.475000px;}
.y3b{bottom:563.835000px;}
.y190{bottom:564.555000px;}
.y1ec{bottom:565.275000px;}
.y120{bottom:566.175000px;}
.y1e{bottom:568.155000px;}
.y218{bottom:569.415000px;}
.y257{bottom:569.775000px;}
.y159{bottom:570.135000px;}
.y237{bottom:570.495000px;}
.y73{bottom:573.555000px;}
.yc3{bottom:574.455000px;}
.y2a3{bottom:575.895000px;}
.y1c5{bottom:578.415000px;}
.yfa{bottom:578.955000px;}
.y3a{bottom:579.315000px;}
.y2c9{bottom:580.575000px;}
.y1eb{bottom:580.755000px;}
.y18f{bottom:581.475000px;}
.y11f{bottom:581.655000px;}
.y1d{bottom:583.815000px;}
.y217{bottom:585.075000px;}
.y256{bottom:585.435000px;}
.y236{bottom:585.975000px;}
.y72{bottom:589.035000px;}
.yc2{bottom:589.935000px;}
.y2a2{bottom:591.375000px;}
.y158{bottom:592.635000px;}
.y1c4{bottom:593.895000px;}
.yf9{bottom:594.435000px;}
.y2c8{bottom:596.055000px;}
.y1ea{bottom:596.415000px;}
.y11e{bottom:597.315000px;}
.y18e{bottom:598.575000px;}
.y1c{bottom:599.475000px;}
.y216{bottom:600.555000px;}
.y255{bottom:600.915000px;}
.y235{bottom:601.455000px;}
.yc1{bottom:605.625000px;}
.y2fa{bottom:608.685000px;}
.y1c3{bottom:609.405000px;}
.yf8{bottom:609.945000px;}
.y2c7{bottom:611.565000px;}
.y1e9{bottom:611.925000px;}
.y39{bottom:612.825000px;}
.y157{bottom:615.165000px;}
.y18d{bottom:615.705000px;}
.y215{bottom:616.065000px;}
.y234{bottom:617.145000px;}
.yc0{bottom:621.105000px;}
.y71{bottom:622.725000px;}
.y2f9{bottom:624.165000px;}
.y2a1{bottom:624.885000px;}
.yf7{bottom:625.605000px;}
.y2c6{bottom:627.225000px;}
.y1e8{bottom:627.405000px;}
.y11d{bottom:628.305000px;}
.y38{bottom:628.485000px;}
.y214{bottom:631.545000px;}
.y18c{bottom:632.625000px;}
.y1b{bottom:633.525000px;}
.y254{bottom:634.425000px;}
.ybf{bottom:636.585000px;}
.y156{bottom:637.665000px;}
.y70{bottom:638.205000px;}
.y2f8{bottom:639.645000px;}
.y2a0{bottom:640.545000px;}
.yf6{bottom:641.085000px;}
.y2c5{bottom:642.705000px;}
.y1c2{bottom:642.885000px;}
.y11c{bottom:643.785000px;}
.y37{bottom:643.965000px;}
.y213{bottom:647.205000px;}
.y18b{bottom:649.725000px;}
.y253{bottom:649.905000px;}
.y233{bottom:650.625000px;}
.ybe{bottom:652.065000px;}
.y6f{bottom:653.685000px;}
.y2f7{bottom:655.125000px;}
.y29f{bottom:656.025000px;}
.yf5{bottom:656.565000px;}
.y1c1{bottom:658.545000px;}
.y155{bottom:660.165000px;}
.y252{bottom:665.565000px;}
.y232{bottom:666.105000px;}
.y18a{bottom:666.645000px;}
.ybd{bottom:667.725000px;}
.y6e{bottom:669.165000px;}
.y2f6{bottom:670.785000px;}
.y29e{bottom:671.505000px;}
.yf4{bottom:672.045000px;}
.y1c0{bottom:674.025000px;}
.y2c4{bottom:676.185000px;}
.y11b{bottom:677.625000px;}
.y212{bottom:680.865000px;}
.y251{bottom:681.405000px;}
.y231{bottom:681.585000px;}
.y154{bottom:682.665000px;}
.ybc{bottom:683.205000px;}
.y189{bottom:683.745000px;}
.y6d{bottom:684.645000px;}
.y2f5{bottom:686.265000px;}
.y320{bottom:686.985000px;}
.yf3{bottom:687.705000px;}
.y1bf{bottom:689.505000px;}
.y2c3{bottom:691.665000px;}
.y28b{bottom:692.025000px;}
.y1a{bottom:692.758500px;}
.y250{bottom:696.885000px;}
.y230{bottom:697.245000px;}
.ybb{bottom:698.685000px;}
.y188{bottom:700.845000px;}
.y2f4{bottom:701.745000px;}
.y31f{bottom:702.645000px;}
.y1be{bottom:704.985000px;}
.y153{bottom:705.165000px;}
.y2c2{bottom:707.325000px;}
.y28a{bottom:707.505000px;}
.y117{bottom:709.665000px;}
.y19{bottom:712.344000px;}
.y24f{bottom:712.545000px;}
.y22f{bottom:712.725000px;}
.yba{bottom:714.165000px;}
.y211{bottom:715.965000px;}
.y2f3{bottom:717.225000px;}
.y187{bottom:717.765000px;}
.y6c{bottom:718.305000px;}
.y29d{bottom:720.645000px;}
.yf2{bottom:721.185000px;}
.y2c1{bottom:722.805000px;}
.y1e7{bottom:722.985000px;}
.y152{bottom:727.665000px;}
.y18{bottom:729.513000px;}
.y210{bottom:731.445000px;}
.y2f2{bottom:732.885000px;}
.y6b{bottom:733.785000px;}
.y26c{bottom:734.400000px;}
.y186{bottom:734.865000px;}
.y29c{bottom:736.125000px;}
.yf1{bottom:736.665000px;}
.y273{bottom:737.745000px;}
.y2c0{bottom:738.285000px;}
.y1bd{bottom:738.645000px;}
.y17{bottom:746.682000px;}
.y20f{bottom:746.925000px;}
.yb9{bottom:748.005000px;}
.y2f1{bottom:748.365000px;}
.y6a{bottom:749.265000px;}
.y151{bottom:750.165000px;}
.y29b{bottom:751.605000px;}
.y185{bottom:751.785000px;}
.yf0{bottom:752.145000px;}
.y272{bottom:753.405000px;}
.y1bc{bottom:754.125000px;}
.y20e{bottom:762.405000px;}
.y2f0{bottom:763.845000px;}
.y16{bottom:763.851000px;}
.y69{bottom:764.925000px;}
.y31e{bottom:767.085000px;}
.yef{bottom:767.805000px;}
.y184{bottom:768.885000px;}
.y1bb{bottom:769.605000px;}
.y116{bottom:771.045000px;}
.y2bf{bottom:771.765000px;}
.y150{bottom:772.665000px;}
.y271{bottom:774.825000px;}
.y20d{bottom:778.065000px;}
.y2ef{bottom:779.325000px;}
.y68{bottom:780.585000px;}
.y15{bottom:781.020000px;}
.y31d{bottom:782.745000px;}
.yb8{bottom:783.105000px;}
.yee{bottom:783.285000px;}
.y1ba{bottom:785.085000px;}
.y183{bottom:785.805000px;}
.y115{bottom:786.525000px;}
.y2be{bottom:787.245000px;}
.y20c{bottom:793.545000px;}
.y2ee{bottom:794.985000px;}
.y14f{bottom:795.165000px;}
.y67{bottom:796.245000px;}
.y14{bottom:798.189000px;}
.y31c{bottom:798.225000px;}
.yb7{bottom:798.585000px;}
.yed{bottom:798.765000px;}
.y1b9{bottom:800.745000px;}
.y114{bottom:802.005000px;}
.y182{bottom:802.905000px;}
.y2ed{bottom:810.465000px;}
.y66{bottom:811.725000px;}
.y31b{bottom:813.705000px;}
.yb6{bottom:814.065000px;}
.yec{bottom:814.245000px;}
.y13{bottom:815.358000px;}
.y1e6{bottom:816.225000px;}
.y113{bottom:817.665000px;}
.y147{bottom:818.385000px;}
.y181{bottom:820.005000px;}
.y2ec{bottom:825.945000px;}
.y20b{bottom:827.025000px;}
.y31a{bottom:829.185000px;}
.yb5{bottom:829.545000px;}
.yeb{bottom:829.905000px;}
.y29a{bottom:831.705000px;}
.y12{bottom:832.527000px;}
.y112{bottom:833.145000px;}
.y2bd{bottom:834.045000px;}
.y1b8{bottom:834.225000px;}
.y180{bottom:836.925000px;}
.y2eb{bottom:841.425000px;}
.y20a{bottom:842.505000px;}
.yb4{bottom:845.025000px;}
.y65{bottom:845.205000px;}
.y299{bottom:847.185000px;}
.y111{bottom:848.625000px;}
.y11{bottom:849.696000px;}
.y1b7{bottom:849.705000px;}
.y17f{bottom:854.025000px;}
.y2ea{bottom:857.085000px;}
.y209{bottom:858.165000px;}
.y64{bottom:860.685000px;}
.y319{bottom:862.845000px;}
.yea{bottom:863.565000px;}
.y110{bottom:864.105000px;}
.y1b6{bottom:865.185000px;}
.y10{bottom:866.865000px;}
.y17e{bottom:870.990000px;}
.y2e9{bottom:872.610000px;}
.y208{bottom:873.690000px;}
.yb3{bottom:876.210000px;}
.y63{bottom:876.390000px;}
.y318{bottom:878.370000px;}
.y10f{bottom:879.810000px;}
.y1b5{bottom:880.890000px;}
.yf{bottom:884.034000px;}
.y17d{bottom:888.090000px;}
.y207{bottom:889.170000px;}
.y146{bottom:891.150000px;}
.yb2{bottom:891.690000px;}
.y62{bottom:891.870000px;}
.y317{bottom:893.850000px;}
.y10e{bottom:895.290000px;}
.ye2{bottom:895.650000px;}
.y1e5{bottom:896.370000px;}
.y2bc{bottom:898.890000px;}
.ye{bottom:901.203000px;}
.y2e8{bottom:903.570000px;}
.y206{bottom:904.650000px;}
.y17c{bottom:905.190000px;}
.yb1{bottom:907.170000px;}
.y61{bottom:907.350000px;}
.y316{bottom:909.330000px;}
.y10d{bottom:910.770000px;}
.y1e4{bottom:911.850000px;}
.y1b4{bottom:914.370000px;}
.y145{bottom:915.630000px;}
.yd{bottom:918.372000px;}
.y2e7{bottom:919.230000px;}
.y17b{bottom:922.110000px;}
.y60{bottom:922.830000px;}
.y315{bottom:924.990000px;}
.y1e3{bottom:927.330000px;}
.y1b3{bottom:929.850000px;}
.y144{bottom:931.110000px;}
.y10c{bottom:935.250000px;}
.yc{bottom:935.541000px;}
.yb0{bottom:938.310000px;}
.y5f{bottom:938.490000px;}
.y17a{bottom:939.210000px;}
.y314{bottom:940.470000px;}
.y1e2{bottom:942.990000px;}
.y2e6{bottom:943.890000px;}
.y1b2{bottom:945.330000px;}
.y143{bottom:946.590000px;}
.y10b{bottom:950.910000px;}
.yb{bottom:952.710000px;}
.yaf{bottom:953.790000px;}
.y179{bottom:956.130000px;}
.y1e1{bottom:958.470000px;}
.y1b1{bottom:960.990000px;}
.y142{bottom:962.250000px;}
.y270{bottom:964.590000px;}
.y205{bottom:969.270000px;}
.ya{bottom:969.990000px;}
.y5e{bottom:971.970000px;}
.y10a{bottom:972.510000px;}
.y178{bottom:973.230000px;}
.y1e0{bottom:973.950000px;}
.y1b0{bottom:976.470000px;}
.y141{bottom:977.730000px;}
.y2e5{bottom:978.990000px;}
.y26f{bottom:980.250000px;}
.y204{bottom:984.750000px;}
.yae{bottom:987.270000px;}
.y5d{bottom:987.450000px;}
.y1df{bottom:989.430000px;}
.y177{bottom:990.150000px;}
.y1af{bottom:991.950000px;}
.y140{bottom:993.210000px;}
.y2e4{bottom:994.470000px;}
.y203{bottom:1000.410000px;}
.y26e{bottom:1001.850000px;}
.yad{bottom:1002.930000px;}
.y5c{bottom:1003.110000px;}
.y313{bottom:1005.090000px;}
.y176{bottom:1007.250000px;}
.y1ae{bottom:1007.430000px;}
.y9{bottom:1008.510000px;}
.y13f{bottom:1008.690000px;}
.y2e3{bottom:1009.950000px;}
.y202{bottom:1015.890000px;}
.y93{bottom:1016.250000px;}
.yac{bottom:1018.410000px;}
.y5b{bottom:1018.770000px;}
.y312{bottom:1020.570000px;}
.y1ad{bottom:1023.090000px;}
.y174{bottom:1024.350000px;}
.ye1{bottom:1024.890000px;}
.y2e2{bottom:1025.430000px;}
.y8{bottom:1029.210000px;}
.y92{bottom:1031.730000px;}
.y5a{bottom:1034.250000px;}
.y1ac{bottom:1038.570000px;}
.ya8{bottom:1040.010000px;}
.ye0{bottom:1040.370000px;}
.y2bb{bottom:1041.090000px;}
.y172{bottom:1041.990000px;}
.y13e{bottom:1042.350000px;}
.y201{bottom:1042.530000px;}
.y91{bottom:1047.210000px;}
.y7{bottom:1049.910000px;}
.y1ab{bottom:1054.050000px;}
.ydf{bottom:1055.850000px;}
.y2ba{bottom:1056.570000px;}
.y13d{bottom:1057.830000px;}
.y90{bottom:1062.690000px;}
.y59{bottom:1065.390000px;}
.y1aa{bottom:1069.530000px;}
.y6{bottom:1070.610000px;}
.yde{bottom:1071.510000px;}
.y289{bottom:1072.050000px;}
.y13c{bottom:1073.310000px;}
.y8f{bottom:1078.350000px;}
.y200{bottom:1078.530000px;}
.y58{bottom:1080.870000px;}
.y1de{bottom:1085.190000px;}
.ydd{bottom:1087.170000px;}
.y288{bottom:1087.530000px;}
.y13b{bottom:1088.790000px;}
.y8e{bottom:1093.830000px;}
.y1ff{bottom:1094.190000px;}
.y311{bottom:1100.670000px;}
.ydc{bottom:1102.830000px;}
.ya7{bottom:1103.190000px;}
.y13a{bottom:1104.450000px;}
.y1fe{bottom:1109.670000px;}
.y5{bottom:1112.730000px;}
.y57{bottom:1114.710000px;}
.y8d{bottom:1118.310000px;}
.ydb{bottom:1118.490000px;}
.ya6{bottom:1118.670000px;}
.y139{bottom:1119.930000px;}
.y1fd{bottom:1125.150000px;}
.y8c{bottom:1133.790000px;}
.ya5{bottom:1134.150000px;}
.y4{bottom:1136.850000px;}
.y136{bottom:1141.560000px;}
.y8b{bottom:1149.480000px;}
.y56{bottom:1149.660000px;}
.y55{bottom:1165.320000px;}
.y3{bottom:1203.840000px;}
.y2{bottom:1217.520000px;}
.h27{height:15.480000px;}
.h23{height:16.920000px;}
.h24{height:16.956000px;}
.h22{height:17.100000px;}
.h25{height:17.136000px;}
.h26{height:19.080000px;}
.h1e{height:22.500000px;}
.h1f{height:22.536000px;}
.h21{height:30.960000px;}
.h20{height:31.140000px;}
.h16{height:33.840000px;}
.h19{height:36.360000px;}
.ha{height:39.313477px;}
.h18{height:39.840820px;}
.h1d{height:40.605469px;}
.hb{height:41.493516px;}
.h3{height:43.269961px;}
.h6{height:44.936719px;}
.h2{height:48.436523px;}
.h14{height:49.500000px;}
.hc{height:51.120000px;}
.h7{height:53.603086px;}
.h4{height:63.344531px;}
.h5{height:64.582031px;}
.h9{height:68.765625px;}
.h1c{height:68.976000px;}
.h13{height:71.613281px;}
.h8{height:76.100625px;}
.h1b{height:81.556523px;}
.h15{height:84.436523px;}
.h17{height:89.709961px;}
.hf{height:104.765625px;}
.hd{height:109.805625px;}
.h11{height:111.965625px;}
.h1a{height:114.845625px;}
.h10{height:117.360000px;}
.he{height:145.805625px;}
.h12{height:148.685625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:31.716000px;}
.wd{width:32.076000px;}
.w5{width:32.940000px;}
.w7{width:33.840000px;}
.w3{width:34.020000px;}
.wc{width:63.540000px;}
.wb{width:63.720000px;}
.w10{width:69.696000px;}
.wa{width:74.556000px;}
.w12{width:99.900000px;}
.w9{width:116.460000px;}
.we{width:116.820000px;}
.wf{width:127.260000px;}
.w11{width:185.970000px;}
.w2{width:316.515000px;}
.w6{width:317.235000px;}
.w4{width:317.775000px;}
.w13{width:722.880000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:2.520000px;}
.x27{left:4.860000px;}
.x38{left:5.940000px;}
.x2c{left:7.740000px;}
.x25{left:9.210000px;}
.x16{left:11.010000px;}
.x2f{left:12.270000px;}
.x29{left:13.320000px;}
.x1c{left:16.200000px;}
.x15{left:17.640000px;}
.x31{left:18.720000px;}
.x2b{left:21.240000px;}
.x2d{left:22.860000px;}
.x33{left:24.300000px;}
.x34{left:26.100000px;}
.x3b{left:27.396000px;}
.x11{left:28.836000px;}
.x30{left:29.880000px;}
.x39{left:31.176000px;}
.x32{left:33.480000px;}
.x3a{left:36.720000px;}
.x35{left:50.400000px;}
.x23{left:58.710000px;}
.xb{left:84.960000px;}
.xe{left:86.137500px;}
.x17{left:89.490000px;}
.x3f{left:111.996000px;}
.x19{left:119.010000px;}
.x24{left:129.630000px;}
.x1a{left:132.150000px;}
.x1f{left:135.936000px;}
.x12{left:150.510000px;}
.x36{left:155.010000px;}
.x3e{left:169.950000px;}
.x22{left:194.655000px;}
.x13{left:210.135000px;}
.x4{left:234.079500px;}
.x20{left:238.935000px;}
.x5{left:240.330000px;}
.x18{left:259.815000px;}
.x8{left:271.290000px;}
.x9{left:280.335000px;}
.x7{left:285.915000px;}
.x6{left:316.875000px;}
.x2{left:324.615000px;}
.x37{left:341.355000px;}
.x3{left:389.398500px;}
.x14{left:401.115000px;}
.x21{left:402.195000px;}
.xa{left:416.055000px;}
.x1e{left:436.035000px;}
.x3c{left:439.275000px;}
.x1{left:443.055000px;}
.xc{left:457.275000px;}
.xd{left:484.125000px;}
.x26{left:489.705000px;}
.xf{left:508.245000px;}
.x3d{left:542.265000px;}
.x28{left:606.165000px;}
.x2a{left:680.730000px;}
.x2e{left:744.450000px;}
.x1b{left:775.050000px;}
.x1d{left:808.350000px;}
@media print{
.vb{vertical-align:-18.560000pt;}
.va{vertical-align:-16.000000pt;}
.v4{vertical-align:-9.600000pt;}
.vd{vertical-align:-7.040000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v10{vertical-align:9.600000pt;}
.v11{vertical-align:11.520000pt;}
.ve{vertical-align:16.640000pt;}
.v6{vertical-align:22.400000pt;}
.vf{vertical-align:26.880000pt;}
.v5{vertical-align:32.000000pt;}
.v3{vertical-align:36.480000pt;}
.vc{vertical-align:38.400000pt;}
.v9{vertical-align:41.600000pt;}
.v8{vertical-align:58.880000pt;}
.v7{vertical-align:68.480000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls2e{letter-spacing:-0.304000pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.171733pt;}
.ls43{letter-spacing:-0.161067pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.005333pt;}
.lsb{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.026667pt;}
.ls3e{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.048000pt;}
.ls2d{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.112000pt;}
.ls25{letter-spacing:0.112533pt;}
.ls16{letter-spacing:0.128000pt;}
.ls33{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.150827pt;}
.ls18{letter-spacing:0.160000pt;}
.ls23{letter-spacing:0.176533pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.304000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.330667pt;}
.lsd{letter-spacing:0.368000pt;}
.ls40{letter-spacing:0.416000pt;}
.ls32{letter-spacing:0.464000pt;}
.ls27{letter-spacing:2.615040pt;}
.ls42{letter-spacing:4.576000pt;}
.ls17{letter-spacing:5.589760pt;}
.ls2a{letter-spacing:7.568000pt;}
.ls2b{letter-spacing:8.208000pt;}
.ls1a{letter-spacing:10.336000pt;}
.ls1e{letter-spacing:10.864000pt;}
.ls30{letter-spacing:13.340160pt;}
.ls1b{letter-spacing:13.424000pt;}
.ls1c{letter-spacing:13.446400pt;}
.ls31{letter-spacing:13.514240pt;}
.ls1f{letter-spacing:13.678080pt;}
.ls1d{letter-spacing:14.086400pt;}
.ls19{letter-spacing:14.176000pt;}
.ls26{letter-spacing:55.024000pt;}
.ls29{letter-spacing:65.376000pt;}
.ls3b{letter-spacing:74.976000pt;}
.ls7{letter-spacing:78.666667pt;}
.ls3c{letter-spacing:92.896000pt;}
.ls20{letter-spacing:112.624000pt;}
.ls3d{letter-spacing:114.656000pt;}
.ls38{letter-spacing:138.336000pt;}
.ls39{letter-spacing:153.056000pt;}
.ls3a{letter-spacing:156.256000pt;}
.ls34{letter-spacing:177.376000pt;}
.ls35{letter-spacing:179.296000pt;}
.ls36{letter-spacing:190.176000pt;}
.ls3f{letter-spacing:208.682667pt;}
.ls37{letter-spacing:225.376000pt;}
.ls41{letter-spacing:232.394667pt;}
.ls28{letter-spacing:373.408000pt;}
.ws41{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.792000pt;}
.ws3{word-spacing:-14.815360pt;}
.ws2{word-spacing:-14.767360pt;}
.ws29{word-spacing:-14.672427pt;}
.ws38{word-spacing:-13.664000pt;}
.ws3b{word-spacing:-13.568000pt;}
.ws39{word-spacing:-13.536000pt;}
.ws4c{word-spacing:-13.488000pt;}
.ws4b{word-spacing:-13.456000pt;}
.ws26{word-spacing:-13.440000pt;}
.ws28{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.344000pt;}
.ws27{word-spacing:-13.328000pt;}
.ws6{word-spacing:-13.248000pt;}
.ws4d{word-spacing:-12.896000pt;}
.ws3a{word-spacing:-12.800000pt;}
.ws0{word-spacing:-11.920640pt;}
.ws4a{word-spacing:-11.759573pt;}
.ws3d{word-spacing:-10.624000pt;}
.ws3c{word-spacing:-10.576000pt;}
.ws5{word-spacing:-10.560000pt;}
.ws30{word-spacing:-10.368000pt;}
.ws48{word-spacing:-9.184000pt;}
.ws49{word-spacing:-8.992000pt;}
.ws2a{word-spacing:-8.896000pt;}
.ws31{word-spacing:-8.832000pt;}
.ws32{word-spacing:-7.779733pt;}
.ws35{word-spacing:-7.715733pt;}
.ws2e{word-spacing:-7.603200pt;}
.wsb{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.048000pt;}
.ws8{word-spacing:0.000000pt;}
.ws9{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
.ws1d{word-spacing:3.717333pt;}
.ws1e{word-spacing:4.250667pt;}
.wse{word-spacing:4.304000pt;}
.wsd{word-spacing:4.357333pt;}
.wsf{word-spacing:4.464000pt;}
.ws42{word-spacing:4.912000pt;}
.ws2b{word-spacing:5.072000pt;}
.ws36{word-spacing:5.279040pt;}
.ws17{word-spacing:5.525333pt;}
.ws18{word-spacing:5.578667pt;}
.ws16{word-spacing:5.685333pt;}
.ws37{word-spacing:5.777713pt;}
.ws43{word-spacing:5.866240pt;}
.ws3f{word-spacing:5.957016pt;}
.ws2c{word-spacing:5.995313pt;}
.ws2d{word-spacing:6.016207pt;}
.ws21{word-spacing:6.213333pt;}
.ws20{word-spacing:6.266667pt;}
.ws1f{word-spacing:6.320000pt;}
.ws44{word-spacing:6.506240pt;}
.ws45{word-spacing:6.666240pt;}
.ws22{word-spacing:6.853333pt;}
.ws24{word-spacing:6.906667pt;}
.ws23{word-spacing:6.960000pt;}
.ws40{word-spacing:6.993713pt;}
.ws25{word-spacing:7.594667pt;}
.ws3e{word-spacing:8.344850pt;}
.ws33{word-spacing:9.799040pt;}
.ws15{word-spacing:11.312000pt;}
.ws14{word-spacing:11.317333pt;}
.ws10{word-spacing:11.418667pt;}
.ws13{word-spacing:11.472000pt;}
.ws2f{word-spacing:11.744000pt;}
.ws12{word-spacing:11.952000pt;}
.ws11{word-spacing:12.112000pt;}
.ws1c{word-spacing:13.226667pt;}
.ws1a{word-spacing:13.280000pt;}
.ws19{word-spacing:13.333333pt;}
.ws1b{word-spacing:13.866667pt;}
.ws4{word-spacing:37.343360pt;}
.ws34{word-spacing:67.435313pt;}
.ws46{word-spacing:112.746240pt;}
._2e{margin-left:-10.805333pt;}
._2f{margin-left:-9.230460pt;}
._2a{margin-left:-8.085559pt;}
._2b{margin-left:-5.703600pt;}
._1c{margin-left:-3.746003pt;}
._7{margin-left:-2.808029pt;}
._6{margin-left:-1.909347pt;}
._0{margin-left:-1.005879pt;}
._1{width:0.949333pt;}
._5{width:1.882327pt;}
._4{width:3.648114pt;}
._2{width:4.588060pt;}
._1d{width:6.126691pt;}
._9{width:7.231027pt;}
._24{width:8.174826pt;}
._f{width:9.120013pt;}
._e{width:10.320000pt;}
._3{width:11.622689pt;}
._8{width:13.654711pt;}
._18{width:15.168000pt;}
._23{width:16.360532pt;}
._17{width:17.376013pt;}
._16{width:18.432000pt;}
._15{width:19.530667pt;}
._14{width:20.544000pt;}
._b{width:21.696000pt;}
._a{width:22.704000pt;}
._1b{width:24.096000pt;}
._d{width:25.443212pt;}
._c{width:26.592000pt;}
._10{width:27.706667pt;}
._37{width:28.608000pt;}
._1f{width:29.519987pt;}
._12{width:31.296013pt;}
._11{width:32.640000pt;}
._1e{width:34.080000pt;}
._34{width:35.002667pt;}
._1a{width:36.000000pt;}
._19{width:36.912000pt;}
._35{width:37.824000pt;}
._21{width:39.408000pt;}
._20{width:40.608000pt;}
._22{width:42.053333pt;}
._13{width:42.960000pt;}
._31{width:44.010667pt;}
._28{width:45.408013pt;}
._27{width:46.608000pt;}
._26{width:47.530667pt;}
._29{width:50.714880pt;}
._2d{width:52.032000pt;}
._2c{width:52.944000pt;}
._4f{width:55.008000pt;}
._30{width:65.344000pt;}
._52{width:68.575660pt;}
._51{width:69.616340pt;}
._25{width:78.666667pt;}
._33{width:82.144000pt;}
._36{width:86.058667pt;}
._49{width:104.810667pt;}
._4e{width:110.672000pt;}
._3d{width:126.138667pt;}
._50{width:130.368000pt;}
._3e{width:134.346667pt;}
._4c{width:136.874667pt;}
._4d{width:144.202667pt;}
._3c{width:151.994667pt;}
._40{width:158.154667pt;}
._4a{width:160.842667pt;}
._42{width:163.370667pt;}
._32{width:168.874667pt;}
._4b{width:171.482667pt;}
._3a{width:183.850667pt;}
._48{width:187.514667pt;}
._47{width:192.498134pt;}
._46{width:193.582607pt;}
._3f{width:205.802667pt;}
._45{width:234.314667pt;}
._44{width:237.258667pt;}
._41{width:240.810667pt;}
._38{width:254.186667pt;}
._39{width:256.826667pt;}
._43{width:259.514667pt;}
._3b{width:278.186667pt;}
.fs7{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y26d{bottom:2.493333pt;}
.y15f{bottom:2.560000pt;}
.y128{bottom:2.880000pt;}
.y175{bottom:3.200000pt;}
.y173{bottom:3.360000pt;}
.y137{bottom:4.800000pt;}
.y14e{bottom:5.600000pt;}
.ye8{bottom:7.040000pt;}
.y119{bottom:8.160000pt;}
.y161{bottom:9.440000pt;}
.y15d{bottom:9.600000pt;}
.yaa{bottom:10.560000pt;}
.y127{bottom:10.880000pt;}
.y138{bottom:11.840000pt;}
.y129{bottom:12.160000pt;}
.y14c{bottom:12.480000pt;}
.y165{bottom:13.760000pt;}
.y118{bottom:16.160000pt;}
.y162{bottom:16.320000pt;}
.y15e{bottom:16.480000pt;}
.y11a{bottom:17.760000pt;}
.yab{bottom:18.400000pt;}
.ya9{bottom:18.560000pt;}
.y149{bottom:19.520000pt;}
.ye7{bottom:25.440000pt;}
.y14a{bottom:26.400000pt;}
.ya4{bottom:32.960000pt;}
.y148{bottom:33.280000pt;}
.ye6{bottom:33.440000pt;}
.y14b{bottom:40.160000pt;}
.y14d{bottom:47.080000pt;}
.y1{bottom:47.680000pt;}
.ye9{bottom:49.280000pt;}
.ye5{bottom:59.680000pt;}
.y54{bottom:75.520000pt;}
.ye4{bottom:76.480000pt;}
.ye3{bottom:84.480000pt;}
.y109{bottom:116.992000pt;}
.y171{bottom:118.912000pt;}
.y298{bottom:121.152000pt;}
.y1a9{bottom:121.312000pt;}
.y53{bottom:121.632000pt;}
.ya3{bottom:125.312000pt;}
.y36{bottom:125.472000pt;}
.y24e{bottom:126.912000pt;}
.y2e1{bottom:128.032000pt;}
.y310{bottom:128.192000pt;}
.y108{bottom:130.752000pt;}
.y135{bottom:131.072000pt;}
.y287{bottom:131.872000pt;}
.y170{bottom:132.672000pt;}
.y1dd{bottom:133.312000pt;}
.y297{bottom:134.906667pt;}
.y1a8{bottom:135.226667pt;}
.y52{bottom:135.546667pt;}
.y22e{bottom:138.266667pt;}
.ya2{bottom:139.066667pt;}
.y35{bottom:139.226667pt;}
.yda{bottom:140.026667pt;}
.y24d{bottom:140.826667pt;}
.y2e0{bottom:141.786667pt;}
.y30f{bottom:142.106667pt;}
.y8a{bottom:142.266667pt;}
.y2b9{bottom:142.746667pt;}
.y26b{bottom:143.386667pt;}
.y134{bottom:144.826667pt;}
.y286{bottom:145.626667pt;}
.y16f{bottom:146.426667pt;}
.y1dc{bottom:147.226667pt;}
.y296{bottom:148.666667pt;}
.y1a7{bottom:148.986667pt;}
.y51{bottom:149.306667pt;}
.y22d{bottom:152.186667pt;}
.ya1{bottom:152.826667pt;}
.y34{bottom:152.986667pt;}
.yd9{bottom:153.786667pt;}
.y24c{bottom:154.586667pt;}
.y2df{bottom:155.546667pt;}
.y30e{bottom:155.866667pt;}
.y89{bottom:156.186667pt;}
.y2b8{bottom:156.506667pt;}
.y26a{bottom:157.146667pt;}
.y133{bottom:158.586667pt;}
.y285{bottom:159.386667pt;}
.y32e{bottom:160.346667pt;}
.y107{bottom:160.506667pt;}
.y1db{bottom:160.986667pt;}
.y295{bottom:162.426667pt;}
.y50{bottom:163.066667pt;}
.y22c{bottom:165.946667pt;}
.ya0{bottom:166.586667pt;}
.y33{bottom:166.746667pt;}
.yd8{bottom:167.706667pt;}
.y24b{bottom:168.506667pt;}
.y1a6{bottom:168.826667pt;}
.y2de{bottom:169.306667pt;}
.y30d{bottom:169.626667pt;}
.y88{bottom:169.946667pt;}
.y2b7{bottom:170.426667pt;}
.y269{bottom:170.906667pt;}
.y132{bottom:172.346667pt;}
.y284{bottom:173.306667pt;}
.y32d{bottom:174.106667pt;}
.y106{bottom:174.266667pt;}
.y1da{bottom:174.746667pt;}
.y16e{bottom:176.186667pt;}
.y4f{bottom:176.826667pt;}
.y22b{bottom:179.706667pt;}
.y9f{bottom:180.506667pt;}
.yd7{bottom:181.626667pt;}
.y24a{bottom:182.266667pt;}
.y2dd{bottom:183.226667pt;}
.y30c{bottom:183.386667pt;}
.y87{bottom:183.706667pt;}
.y1a5{bottom:184.026667pt;}
.y2b6{bottom:184.186667pt;}
.y268{bottom:184.666667pt;}
.y131{bottom:186.266667pt;}
.y283{bottom:187.066667pt;}
.y32c{bottom:187.866667pt;}
.y105{bottom:188.186667pt;}
.y1d9{bottom:188.506667pt;}
.y16d{bottom:190.106667pt;}
.y294{bottom:192.346667pt;}
.y9e{bottom:194.266667pt;}
.y249{bottom:196.186667pt;}
.y32{bottom:196.666667pt;}
.y2dc{bottom:196.986667pt;}
.y86{bottom:197.466667pt;}
.y2b5{bottom:197.946667pt;}
.y267{bottom:198.586667pt;}
.y1a4{bottom:199.066667pt;}
.y32b{bottom:201.626667pt;}
.y104{bottom:201.946667pt;}
.y1d8{bottom:202.426667pt;}
.y16c{bottom:203.866667pt;}
.y1fc{bottom:204.506667pt;}
.y293{bottom:206.106667pt;}
.y4e{bottom:206.746667pt;}
.y9d{bottom:208.026667pt;}
.y22a{bottom:209.466667pt;}
.y31{bottom:210.426667pt;}
.y2db{bottom:210.746667pt;}
.y85{bottom:211.386667pt;}
.yd6{bottom:211.546667pt;}
.y2b4{bottom:211.706667pt;}
.y266{bottom:212.346667pt;}
.y30b{bottom:213.146667pt;}
.y1a3{bottom:214.266667pt;}
.y103{bottom:215.706667pt;}
.y1d7{bottom:216.186667pt;}
.y282{bottom:216.826667pt;}
.y16b{bottom:217.626667pt;}
.y1fb{bottom:218.426667pt;}
.y292{bottom:219.866667pt;}
.y4d{bottom:220.506667pt;}
.y9c{bottom:221.786667pt;}
.y229{bottom:223.386667pt;}
.y30{bottom:224.186667pt;}
.y2da{bottom:224.506667pt;}
.yd5{bottom:225.306667pt;}
.y2b3{bottom:225.626667pt;}
.y248{bottom:226.106667pt;}
.y30a{bottom:227.066667pt;}
.y1a2{bottom:229.306667pt;}
.y102{bottom:229.466667pt;}
.y1d6{bottom:229.946667pt;}
.y281{bottom:230.586667pt;}
.y16a{bottom:231.386667pt;}
.y32a{bottom:231.546667pt;}
.y1fa{bottom:232.186667pt;}
.y291{bottom:233.626667pt;}
.y4c{bottom:234.266667pt;}
.y228{bottom:237.146667pt;}
.y2f{bottom:237.946667pt;}
.y2d9{bottom:238.426667pt;}
.yd4{bottom:239.066667pt;}
.y2b2{bottom:239.386667pt;}
.y247{bottom:239.866667pt;}
.y309{bottom:240.826667pt;}
.y84{bottom:241.146667pt;}
.y101{bottom:243.386667pt;}
.y1d5{bottom:243.706667pt;}
.y1a1{bottom:244.506667pt;}
.y169{bottom:245.306667pt;}
.y1f9{bottom:245.946667pt;}
.y290{bottom:247.546667pt;}
.y4b{bottom:248.026667pt;}
.y227{bottom:250.906667pt;}
.y130{bottom:251.546667pt;}
.y2e{bottom:251.866667pt;}
.y2d8{bottom:252.186667pt;}
.y246{bottom:253.786667pt;}
.y308{bottom:254.586667pt;}
.y83{bottom:254.906667pt;}
.yd3{bottom:256.826667pt;}
.y1d4{bottom:257.626667pt;}
.y280{bottom:258.266667pt;}
.y168{bottom:259.066667pt;}
.y1a0{bottom:259.546667pt;}
.y1f8{bottom:259.706667pt;}
.y28f{bottom:261.306667pt;}
.y4a{bottom:261.946667pt;}
.y226{bottom:264.666667pt;}
.y100{bottom:265.146667pt;}
.y12f{bottom:265.466667pt;}
.y2d7{bottom:265.946667pt;}
.y245{bottom:267.546667pt;}
.y307{bottom:268.346667pt;}
.y82{bottom:268.666667pt;}
.y2b1{bottom:269.466667pt;}
.yd2{bottom:270.906667pt;}
.y27f{bottom:272.026667pt;}
.y329{bottom:272.826667pt;}
.y1f7{bottom:273.626667pt;}
.y19f{bottom:274.746667pt;}
.y225{bottom:278.586667pt;}
.yff{bottom:278.906667pt;}
.y12e{bottom:279.546667pt;}
.y2d6{bottom:279.706667pt;}
.y244{bottom:281.306667pt;}
.y2d{bottom:281.626667pt;}
.y81{bottom:282.586667pt;}
.y49{bottom:283.706667pt;}
.yd1{bottom:284.826667pt;}
.y27e{bottom:285.786667pt;}
.y328{bottom:286.746667pt;}
.y1f6{bottom:287.386667pt;}
.y1d3{bottom:287.546667pt;}
.y9b{bottom:288.826667pt;}
.y19e{bottom:289.946667pt;}
.y28e{bottom:291.066667pt;}
.yfe{bottom:292.666667pt;}
.y12d{bottom:293.306667pt;}
.y2d5{bottom:293.466667pt;}
.y243{bottom:295.226667pt;}
.y2c{bottom:295.386667pt;}
.y80{bottom:296.346667pt;}
.y265{bottom:297.306667pt;}
.y48{bottom:297.466667pt;}
.y306{bottom:298.266667pt;}
.yd0{bottom:298.746667pt;}
.y27d{bottom:299.746667pt;}
.y2b0{bottom:300.546667pt;}
.y1f5{bottom:301.186667pt;}
.y9a{bottom:302.626667pt;}
.y28d{bottom:304.866667pt;}
.y19d{bottom:305.026667pt;}
.y12c{bottom:307.266667pt;}
.y2d4{bottom:307.426667pt;}
.y224{bottom:308.386667pt;}
.y2b{bottom:309.186667pt;}
.y7f{bottom:310.146667pt;}
.y264{bottom:311.106667pt;}
.y47{bottom:311.266667pt;}
.yfd{bottom:311.906667pt;}
.y305{bottom:312.066667pt;}
.ycf{bottom:312.866667pt;}
.y2af{bottom:314.306667pt;}
.y1f4{bottom:314.946667pt;}
.y99{bottom:316.386667pt;}
.y167{bottom:316.546667pt;}
.y1d2{bottom:318.786667pt;}
.y19c{bottom:320.226667pt;}
.y12b{bottom:321.186667pt;}
.y223{bottom:322.146667pt;}
.y2a{bottom:323.106667pt;}
.y7e{bottom:324.066667pt;}
.y263{bottom:325.026667pt;}
.y46{bottom:325.186667pt;}
.y304{bottom:325.826667pt;}
.yce{bottom:326.786667pt;}
.y2ae{bottom:328.066667pt;}
.y27c{bottom:329.506667pt;}
.y98{bottom:330.146667pt;}
.y166{bottom:330.306667pt;}
.y1d1{bottom:332.546667pt;}
.y2d3{bottom:334.946667pt;}
.y19b{bottom:335.266667pt;}
.y222{bottom:335.906667pt;}
.y29{bottom:336.866667pt;}
.y7d{bottom:338.146667pt;}
.y262{bottom:338.786667pt;}
.y242{bottom:338.946667pt;}
.y45{bottom:339.266667pt;}
.y303{bottom:339.586667pt;}
.y2ad{bottom:341.986667pt;}
.y27b{bottom:343.266667pt;}
.y97{bottom:344.066667pt;}
.y1f3{bottom:345.026667pt;}
.y1d0{bottom:346.306667pt;}
.y2d2{bottom:348.706667pt;}
.y221{bottom:349.826667pt;}
.y19a{bottom:350.466667pt;}
.y28{bottom:350.626667pt;}
.y12a{bottom:351.266667pt;}
.y7c{bottom:352.066667pt;}
.y261{bottom:352.546667pt;}
.y241{bottom:352.866667pt;}
.y2ac{bottom:355.746667pt;}
.ycd{bottom:356.706667pt;}
.y27a{bottom:357.026667pt;}
.y96{bottom:357.826667pt;}
.y327{bottom:357.986667pt;}
.y1cf{bottom:360.066667pt;}
.y44{bottom:361.026667pt;}
.y2d1{bottom:362.626667pt;}
.y164{bottom:363.266667pt;}
.y220{bottom:363.586667pt;}
.y27{bottom:364.386667pt;}
.y199{bottom:365.666667pt;}
.y7b{bottom:365.986667pt;}
.y260{bottom:366.306667pt;}
.y240{bottom:366.626667pt;}
.y2ab{bottom:369.506667pt;}
.ycc{bottom:370.466667pt;}
.y279{bottom:370.946667pt;}
.y95{bottom:371.586667pt;}
.y326{bottom:371.746667pt;}
.y1ce{bottom:373.986667pt;}
.y43{bottom:374.786667pt;}
.y1f2{bottom:376.066667pt;}
.y2d0{bottom:376.386667pt;}
.y21f{bottom:377.346667pt;}
.y26{bottom:378.306667pt;}
.y7a{bottom:379.746667pt;}
.y25f{bottom:380.066667pt;}
.y23f{bottom:380.386667pt;}
.y198{bottom:380.706667pt;}
.y302{bottom:383.266667pt;}
.ycb{bottom:384.226667pt;}
.y278{bottom:384.706667pt;}
.y94{bottom:385.346667pt;}
.y325{bottom:385.506667pt;}
.y1cd{bottom:387.746667pt;}
.y42{bottom:388.546667pt;}
.y1f1{bottom:389.986667pt;}
.y2cf{bottom:390.146667pt;}
.y163{bottom:391.586667pt;}
.y25{bottom:392.066667pt;}
.y79{bottom:393.506667pt;}
.y25e{bottom:393.986667pt;}
.y23e{bottom:394.146667pt;}
.y197{bottom:395.906667pt;}
.y301{bottom:397.026667pt;}
.yca{bottom:398.146667pt;}
.y2aa{bottom:399.266667pt;}
.y1cc{bottom:401.506667pt;}
.y41{bottom:402.306667pt;}
.y1f0{bottom:403.746667pt;}
.y2ce{bottom:403.906667pt;}
.y21e{bottom:407.106667pt;}
.y78{bottom:407.266667pt;}
.y25d{bottom:407.746667pt;}
.y23d{bottom:408.066667pt;}
.y300{bottom:410.786667pt;}
.y196{bottom:410.946667pt;}
.y160{bottom:411.586667pt;}
.yc9{bottom:411.906667pt;}
.y2a9{bottom:413.186667pt;}
.y277{bottom:414.786667pt;}
.y1cb{bottom:415.266667pt;}
.y1ef{bottom:417.506667pt;}
.y2cd{bottom:417.826667pt;}
.y126{bottom:420.546667pt;}
.y21d{bottom:421.026667pt;}
.y25c{bottom:421.506667pt;}
.y24{bottom:421.826667pt;}
.y2ff{bottom:424.706667pt;}
.yc8{bottom:425.666667pt;}
.y195{bottom:426.146667pt;}
.y2a8{bottom:426.946667pt;}
.y324{bottom:429.186667pt;}
.y1ee{bottom:431.266667pt;}
.y2cc{bottom:431.586667pt;}
.y40{bottom:432.226667pt;}
.y125{bottom:434.306667pt;}
.y21c{bottom:434.786667pt;}
.y25b{bottom:435.266667pt;}
.y23{bottom:435.586667pt;}
.y77{bottom:437.346667pt;}
.y23c{bottom:438.146667pt;}
.y2fe{bottom:438.466667pt;}
.y15c{bottom:439.106667pt;}
.yc7{bottom:439.426667pt;}
.y2a7{bottom:440.706667pt;}
.y194{bottom:441.346667pt;}
.y323{bottom:442.946667pt;}
.y1ca{bottom:445.186667pt;}
.y276{bottom:445.826667pt;}
.y3f{bottom:445.986667pt;}
.y124{bottom:448.066667pt;}
.y21b{bottom:448.546667pt;}
.y25a{bottom:449.186667pt;}
.y22{bottom:449.506667pt;}
.y23b{bottom:451.906667pt;}
.y2fd{bottom:452.226667pt;}
.yc6{bottom:453.346667pt;}
.y2cb{bottom:453.666667pt;}
.y2a6{bottom:454.466667pt;}
.y193{bottom:456.386667pt;}
.y322{bottom:456.706667pt;}
.y1c9{bottom:458.946667pt;}
.y275{bottom:459.586667pt;}
.y3e{bottom:459.746667pt;}
.y123{bottom:461.826667pt;}
.y21a{bottom:462.466667pt;}
.y259{bottom:462.946667pt;}
.y21{bottom:463.266667pt;}
.y23a{bottom:465.666667pt;}
.y2fc{bottom:465.986667pt;}
.y15b{bottom:466.786667pt;}
.y76{bottom:468.386667pt;}
.y321{bottom:470.466667pt;}
.y192{bottom:471.586667pt;}
.y1c8{bottom:472.706667pt;}
.y3d{bottom:473.506667pt;}
.y28c{bottom:474.946667pt;}
.y122{bottom:475.746667pt;}
.y20{bottom:477.186667pt;}
.y274{bottom:478.786667pt;}
.y239{bottom:479.426667pt;}
.y2fb{bottom:479.906667pt;}
.y75{bottom:482.306667pt;}
.yc5{bottom:483.106667pt;}
.y2a5{bottom:484.226667pt;}
.y2ca{bottom:485.026667pt;}
.y1c7{bottom:486.466667pt;}
.y191{bottom:486.626667pt;}
.y15a{bottom:486.786667pt;}
.yfc{bottom:486.946667pt;}
.y3c{bottom:487.426667pt;}
.y1ed{bottom:488.706667pt;}
.y121{bottom:489.506667pt;}
.y1f{bottom:491.106667pt;}
.y219{bottom:492.386667pt;}
.y258{bottom:492.706667pt;}
.y238{bottom:493.346667pt;}
.y74{bottom:496.066667pt;}
.yc4{bottom:496.866667pt;}
.y2a4{bottom:498.146667pt;}
.y1c6{bottom:500.226667pt;}
.yfb{bottom:500.866667pt;}
.y3b{bottom:501.186667pt;}
.y190{bottom:501.826667pt;}
.y1ec{bottom:502.466667pt;}
.y120{bottom:503.266667pt;}
.y1e{bottom:505.026667pt;}
.y218{bottom:506.146667pt;}
.y257{bottom:506.466667pt;}
.y159{bottom:506.786667pt;}
.y237{bottom:507.106667pt;}
.y73{bottom:509.826667pt;}
.yc3{bottom:510.626667pt;}
.y2a3{bottom:511.906667pt;}
.y1c5{bottom:514.146667pt;}
.yfa{bottom:514.626667pt;}
.y3a{bottom:514.946667pt;}
.y2c9{bottom:516.066667pt;}
.y1eb{bottom:516.226667pt;}
.y18f{bottom:516.866667pt;}
.y11f{bottom:517.026667pt;}
.y1d{bottom:518.946667pt;}
.y217{bottom:520.066667pt;}
.y256{bottom:520.386667pt;}
.y236{bottom:520.866667pt;}
.y72{bottom:523.586667pt;}
.yc2{bottom:524.386667pt;}
.y2a2{bottom:525.666667pt;}
.y158{bottom:526.786667pt;}
.y1c4{bottom:527.906667pt;}
.yf9{bottom:528.386667pt;}
.y2c8{bottom:529.826667pt;}
.y1ea{bottom:530.146667pt;}
.y11e{bottom:530.946667pt;}
.y18e{bottom:532.066667pt;}
.y1c{bottom:532.866667pt;}
.y216{bottom:533.826667pt;}
.y255{bottom:534.146667pt;}
.y235{bottom:534.626667pt;}
.yc1{bottom:538.333333pt;}
.y2fa{bottom:541.053333pt;}
.y1c3{bottom:541.693333pt;}
.yf8{bottom:542.173333pt;}
.y2c7{bottom:543.613333pt;}
.y1e9{bottom:543.933333pt;}
.y39{bottom:544.733333pt;}
.y157{bottom:546.813333pt;}
.y18d{bottom:547.293333pt;}
.y215{bottom:547.613333pt;}
.y234{bottom:548.573333pt;}
.yc0{bottom:552.093333pt;}
.y71{bottom:553.533333pt;}
.y2f9{bottom:554.813333pt;}
.y2a1{bottom:555.453333pt;}
.yf7{bottom:556.093333pt;}
.y2c6{bottom:557.533333pt;}
.y1e8{bottom:557.693333pt;}
.y11d{bottom:558.493333pt;}
.y38{bottom:558.653333pt;}
.y214{bottom:561.373333pt;}
.y18c{bottom:562.333333pt;}
.y1b{bottom:563.133333pt;}
.y254{bottom:563.933333pt;}
.ybf{bottom:565.853333pt;}
.y156{bottom:566.813333pt;}
.y70{bottom:567.293333pt;}
.y2f8{bottom:568.573333pt;}
.y2a0{bottom:569.373333pt;}
.yf6{bottom:569.853333pt;}
.y2c5{bottom:571.293333pt;}
.y1c2{bottom:571.453333pt;}
.y11c{bottom:572.253333pt;}
.y37{bottom:572.413333pt;}
.y213{bottom:575.293333pt;}
.y18b{bottom:577.533333pt;}
.y253{bottom:577.693333pt;}
.y233{bottom:578.333333pt;}
.ybe{bottom:579.613333pt;}
.y6f{bottom:581.053333pt;}
.y2f7{bottom:582.333333pt;}
.y29f{bottom:583.133333pt;}
.yf5{bottom:583.613333pt;}
.y1c1{bottom:585.373333pt;}
.y155{bottom:586.813333pt;}
.y252{bottom:591.613333pt;}
.y232{bottom:592.093333pt;}
.y18a{bottom:592.573333pt;}
.ybd{bottom:593.533333pt;}
.y6e{bottom:594.813333pt;}
.y2f6{bottom:596.253333pt;}
.y29e{bottom:596.893333pt;}
.yf4{bottom:597.373333pt;}
.y1c0{bottom:599.133333pt;}
.y2c4{bottom:601.053333pt;}
.y11b{bottom:602.333333pt;}
.y212{bottom:605.213333pt;}
.y251{bottom:605.693333pt;}
.y231{bottom:605.853333pt;}
.y154{bottom:606.813333pt;}
.ybc{bottom:607.293333pt;}
.y189{bottom:607.773333pt;}
.y6d{bottom:608.573333pt;}
.y2f5{bottom:610.013333pt;}
.y320{bottom:610.653333pt;}
.yf3{bottom:611.293333pt;}
.y1bf{bottom:612.893333pt;}
.y2c3{bottom:614.813333pt;}
.y28b{bottom:615.133333pt;}
.y1a{bottom:615.785333pt;}
.y250{bottom:619.453333pt;}
.y230{bottom:619.773333pt;}
.ybb{bottom:621.053333pt;}
.y188{bottom:622.973333pt;}
.y2f4{bottom:623.773333pt;}
.y31f{bottom:624.573333pt;}
.y1be{bottom:626.653333pt;}
.y153{bottom:626.813333pt;}
.y2c2{bottom:628.733333pt;}
.y28a{bottom:628.893333pt;}
.y117{bottom:630.813333pt;}
.y19{bottom:633.194667pt;}
.y24f{bottom:633.373333pt;}
.y22f{bottom:633.533333pt;}
.yba{bottom:634.813333pt;}
.y211{bottom:636.413333pt;}
.y2f3{bottom:637.533333pt;}
.y187{bottom:638.013333pt;}
.y6c{bottom:638.493333pt;}
.y29d{bottom:640.573333pt;}
.yf2{bottom:641.053333pt;}
.y2c1{bottom:642.493333pt;}
.y1e7{bottom:642.653333pt;}
.y152{bottom:646.813333pt;}
.y18{bottom:648.456000pt;}
.y210{bottom:650.173333pt;}
.y2f2{bottom:651.453333pt;}
.y6b{bottom:652.253333pt;}
.y26c{bottom:652.800000pt;}
.y186{bottom:653.213333pt;}
.y29c{bottom:654.333333pt;}
.yf1{bottom:654.813333pt;}
.y273{bottom:655.773333pt;}
.y2c0{bottom:656.253333pt;}
.y1bd{bottom:656.573333pt;}
.y17{bottom:663.717333pt;}
.y20f{bottom:663.933333pt;}
.yb9{bottom:664.893333pt;}
.y2f1{bottom:665.213333pt;}
.y6a{bottom:666.013333pt;}
.y151{bottom:666.813333pt;}
.y29b{bottom:668.093333pt;}
.y185{bottom:668.253333pt;}
.yf0{bottom:668.573333pt;}
.y272{bottom:669.693333pt;}
.y1bc{bottom:670.333333pt;}
.y20e{bottom:677.693333pt;}
.y2f0{bottom:678.973333pt;}
.y16{bottom:678.978667pt;}
.y69{bottom:679.933333pt;}
.y31e{bottom:681.853333pt;}
.yef{bottom:682.493333pt;}
.y184{bottom:683.453333pt;}
.y1bb{bottom:684.093333pt;}
.y116{bottom:685.373333pt;}
.y2bf{bottom:686.013333pt;}
.y150{bottom:686.813333pt;}
.y271{bottom:688.733333pt;}
.y20d{bottom:691.613333pt;}
.y2ef{bottom:692.733333pt;}
.y68{bottom:693.853333pt;}
.y15{bottom:694.240000pt;}
.y31d{bottom:695.773333pt;}
.yb8{bottom:696.093333pt;}
.yee{bottom:696.253333pt;}
.y1ba{bottom:697.853333pt;}
.y183{bottom:698.493333pt;}
.y115{bottom:699.133333pt;}
.y2be{bottom:699.773333pt;}
.y20c{bottom:705.373333pt;}
.y2ee{bottom:706.653333pt;}
.y14f{bottom:706.813333pt;}
.y67{bottom:707.773333pt;}
.y14{bottom:709.501333pt;}
.y31c{bottom:709.533333pt;}
.yb7{bottom:709.853333pt;}
.yed{bottom:710.013333pt;}
.y1b9{bottom:711.773333pt;}
.y114{bottom:712.893333pt;}
.y182{bottom:713.693333pt;}
.y2ed{bottom:720.413333pt;}
.y66{bottom:721.533333pt;}
.y31b{bottom:723.293333pt;}
.yb6{bottom:723.613333pt;}
.yec{bottom:723.773333pt;}
.y13{bottom:724.762667pt;}
.y1e6{bottom:725.533333pt;}
.y113{bottom:726.813333pt;}
.y147{bottom:727.453333pt;}
.y181{bottom:728.893333pt;}
.y2ec{bottom:734.173333pt;}
.y20b{bottom:735.133333pt;}
.y31a{bottom:737.053333pt;}
.yb5{bottom:737.373333pt;}
.yeb{bottom:737.693333pt;}
.y29a{bottom:739.293333pt;}
.y12{bottom:740.024000pt;}
.y112{bottom:740.573333pt;}
.y2bd{bottom:741.373333pt;}
.y1b8{bottom:741.533333pt;}
.y180{bottom:743.933333pt;}
.y2eb{bottom:747.933333pt;}
.y20a{bottom:748.893333pt;}
.yb4{bottom:751.133333pt;}
.y65{bottom:751.293333pt;}
.y299{bottom:753.053333pt;}
.y111{bottom:754.333333pt;}
.y11{bottom:755.285333pt;}
.y1b7{bottom:755.293333pt;}
.y17f{bottom:759.133333pt;}
.y2ea{bottom:761.853333pt;}
.y209{bottom:762.813333pt;}
.y64{bottom:765.053333pt;}
.y319{bottom:766.973333pt;}
.yea{bottom:767.613333pt;}
.y110{bottom:768.093333pt;}
.y1b6{bottom:769.053333pt;}
.y10{bottom:770.546667pt;}
.y17e{bottom:774.213333pt;}
.y2e9{bottom:775.653333pt;}
.y208{bottom:776.613333pt;}
.yb3{bottom:778.853333pt;}
.y63{bottom:779.013333pt;}
.y318{bottom:780.773333pt;}
.y10f{bottom:782.053333pt;}
.y1b5{bottom:783.013333pt;}
.yf{bottom:785.808000pt;}
.y17d{bottom:789.413333pt;}
.y207{bottom:790.373333pt;}
.y146{bottom:792.133333pt;}
.yb2{bottom:792.613333pt;}
.y62{bottom:792.773333pt;}
.y317{bottom:794.533333pt;}
.y10e{bottom:795.813333pt;}
.ye2{bottom:796.133333pt;}
.y1e5{bottom:796.773333pt;}
.y2bc{bottom:799.013333pt;}
.ye{bottom:801.069333pt;}
.y2e8{bottom:803.173333pt;}
.y206{bottom:804.133333pt;}
.y17c{bottom:804.613333pt;}
.yb1{bottom:806.373333pt;}
.y61{bottom:806.533333pt;}
.y316{bottom:808.293333pt;}
.y10d{bottom:809.573333pt;}
.y1e4{bottom:810.533333pt;}
.y1b4{bottom:812.773333pt;}
.y145{bottom:813.893333pt;}
.yd{bottom:816.330667pt;}
.y2e7{bottom:817.093333pt;}
.y17b{bottom:819.653333pt;}
.y60{bottom:820.293333pt;}
.y315{bottom:822.213333pt;}
.y1e3{bottom:824.293333pt;}
.y1b3{bottom:826.533333pt;}
.y144{bottom:827.653333pt;}
.y10c{bottom:831.333333pt;}
.yc{bottom:831.592000pt;}
.yb0{bottom:834.053333pt;}
.y5f{bottom:834.213333pt;}
.y17a{bottom:834.853333pt;}
.y314{bottom:835.973333pt;}
.y1e2{bottom:838.213333pt;}
.y2e6{bottom:839.013333pt;}
.y1b2{bottom:840.293333pt;}
.y143{bottom:841.413333pt;}
.y10b{bottom:845.253333pt;}
.yb{bottom:846.853333pt;}
.yaf{bottom:847.813333pt;}
.y179{bottom:849.893333pt;}
.y1e1{bottom:851.973333pt;}
.y1b1{bottom:854.213333pt;}
.y142{bottom:855.333333pt;}
.y270{bottom:857.413333pt;}
.y205{bottom:861.573333pt;}
.ya{bottom:862.213333pt;}
.y5e{bottom:863.973333pt;}
.y10a{bottom:864.453333pt;}
.y178{bottom:865.093333pt;}
.y1e0{bottom:865.733333pt;}
.y1b0{bottom:867.973333pt;}
.y141{bottom:869.093333pt;}
.y2e5{bottom:870.213333pt;}
.y26f{bottom:871.333333pt;}
.y204{bottom:875.333333pt;}
.yae{bottom:877.573333pt;}
.y5d{bottom:877.733333pt;}
.y1df{bottom:879.493333pt;}
.y177{bottom:880.133333pt;}
.y1af{bottom:881.733333pt;}
.y140{bottom:882.853333pt;}
.y2e4{bottom:883.973333pt;}
.y203{bottom:889.253333pt;}
.y26e{bottom:890.533333pt;}
.yad{bottom:891.493333pt;}
.y5c{bottom:891.653333pt;}
.y313{bottom:893.413333pt;}
.y176{bottom:895.333333pt;}
.y1ae{bottom:895.493333pt;}
.y9{bottom:896.453333pt;}
.y13f{bottom:896.613333pt;}
.y2e3{bottom:897.733333pt;}
.y202{bottom:903.013333pt;}
.y93{bottom:903.333333pt;}
.yac{bottom:905.253333pt;}
.y5b{bottom:905.573333pt;}
.y312{bottom:907.173333pt;}
.y1ad{bottom:909.413333pt;}
.y174{bottom:910.533333pt;}
.ye1{bottom:911.013333pt;}
.y2e2{bottom:911.493333pt;}
.y8{bottom:914.853333pt;}
.y92{bottom:917.093333pt;}
.y5a{bottom:919.333333pt;}
.y1ac{bottom:923.173333pt;}
.ya8{bottom:924.453333pt;}
.ye0{bottom:924.773333pt;}
.y2bb{bottom:925.413333pt;}
.y172{bottom:926.213333pt;}
.y13e{bottom:926.533333pt;}
.y201{bottom:926.693333pt;}
.y91{bottom:930.853333pt;}
.y7{bottom:933.253333pt;}
.y1ab{bottom:936.933333pt;}
.ydf{bottom:938.533333pt;}
.y2ba{bottom:939.173333pt;}
.y13d{bottom:940.293333pt;}
.y90{bottom:944.613333pt;}
.y59{bottom:947.013333pt;}
.y1aa{bottom:950.693333pt;}
.y6{bottom:951.653333pt;}
.yde{bottom:952.453333pt;}
.y289{bottom:952.933333pt;}
.y13c{bottom:954.053333pt;}
.y8f{bottom:958.533333pt;}
.y200{bottom:958.693333pt;}
.y58{bottom:960.773333pt;}
.y1de{bottom:964.613333pt;}
.ydd{bottom:966.373333pt;}
.y288{bottom:966.693333pt;}
.y13b{bottom:967.813333pt;}
.y8e{bottom:972.293333pt;}
.y1ff{bottom:972.613333pt;}
.y311{bottom:978.373333pt;}
.ydc{bottom:980.293333pt;}
.ya7{bottom:980.613333pt;}
.y13a{bottom:981.733333pt;}
.y1fe{bottom:986.373333pt;}
.y5{bottom:989.093333pt;}
.y57{bottom:990.853333pt;}
.y8d{bottom:994.053333pt;}
.ydb{bottom:994.213333pt;}
.ya6{bottom:994.373333pt;}
.y139{bottom:995.493333pt;}
.y1fd{bottom:1000.133333pt;}
.y8c{bottom:1007.813333pt;}
.ya5{bottom:1008.133333pt;}
.y4{bottom:1010.533333pt;}
.y136{bottom:1014.720000pt;}
.y8b{bottom:1021.760000pt;}
.y56{bottom:1021.920000pt;}
.y55{bottom:1035.840000pt;}
.y3{bottom:1070.080000pt;}
.y2{bottom:1082.240000pt;}
.h27{height:13.760000pt;}
.h23{height:15.040000pt;}
.h24{height:15.072000pt;}
.h22{height:15.200000pt;}
.h25{height:15.232000pt;}
.h26{height:16.960000pt;}
.h1e{height:20.000000pt;}
.h1f{height:20.032000pt;}
.h21{height:27.520000pt;}
.h20{height:27.680000pt;}
.h16{height:30.080000pt;}
.h19{height:32.320000pt;}
.ha{height:34.945312pt;}
.h18{height:35.414062pt;}
.h1d{height:36.093750pt;}
.hb{height:36.883125pt;}
.h3{height:38.462187pt;}
.h6{height:39.943750pt;}
.h2{height:43.054688pt;}
.h14{height:44.000000pt;}
.hc{height:45.440000pt;}
.h7{height:47.647188pt;}
.h4{height:56.306250pt;}
.h5{height:57.406250pt;}
.h9{height:61.125000pt;}
.h1c{height:61.312000pt;}
.h13{height:63.656250pt;}
.h8{height:67.645000pt;}
.h1b{height:72.494687pt;}
.h15{height:75.054688pt;}
.h17{height:79.742188pt;}
.hf{height:93.125000pt;}
.hd{height:97.605000pt;}
.h11{height:99.525000pt;}
.h1a{height:102.085000pt;}
.h10{height:104.320000pt;}
.he{height:129.605000pt;}
.h12{height:132.165000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:28.192000pt;}
.wd{width:28.512000pt;}
.w5{width:29.280000pt;}
.w7{width:30.080000pt;}
.w3{width:30.240000pt;}
.wc{width:56.480000pt;}
.wb{width:56.640000pt;}
.w10{width:61.952000pt;}
.wa{width:66.272000pt;}
.w12{width:88.800000pt;}
.w9{width:103.520000pt;}
.we{width:103.840000pt;}
.wf{width:113.120000pt;}
.w11{width:165.306667pt;}
.w2{width:281.346667pt;}
.w6{width:281.986667pt;}
.w4{width:282.466667pt;}
.w13{width:642.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:2.240000pt;}
.x27{left:4.320000pt;}
.x38{left:5.280000pt;}
.x2c{left:6.880000pt;}
.x25{left:8.186667pt;}
.x16{left:9.786667pt;}
.x2f{left:10.906667pt;}
.x29{left:11.840000pt;}
.x1c{left:14.400000pt;}
.x15{left:15.680000pt;}
.x31{left:16.640000pt;}
.x2b{left:18.880000pt;}
.x2d{left:20.320000pt;}
.x33{left:21.600000pt;}
.x34{left:23.200000pt;}
.x3b{left:24.352000pt;}
.x11{left:25.632000pt;}
.x30{left:26.560000pt;}
.x39{left:27.712000pt;}
.x32{left:29.760000pt;}
.x3a{left:32.640000pt;}
.x35{left:44.800000pt;}
.x23{left:52.186667pt;}
.xb{left:75.520000pt;}
.xe{left:76.566667pt;}
.x17{left:79.546667pt;}
.x3f{left:99.552000pt;}
.x19{left:105.786667pt;}
.x24{left:115.226667pt;}
.x1a{left:117.466667pt;}
.x1f{left:120.832000pt;}
.x12{left:133.786667pt;}
.x36{left:137.786667pt;}
.x3e{left:151.066667pt;}
.x22{left:173.026667pt;}
.x13{left:186.786667pt;}
.x4{left:208.070667pt;}
.x20{left:212.386667pt;}
.x5{left:213.626667pt;}
.x18{left:230.946667pt;}
.x8{left:241.146667pt;}
.x9{left:249.186667pt;}
.x7{left:254.146667pt;}
.x6{left:281.666667pt;}
.x2{left:288.546667pt;}
.x37{left:303.426667pt;}
.x3{left:346.132000pt;}
.x14{left:356.546667pt;}
.x21{left:357.506667pt;}
.xa{left:369.826667pt;}
.x1e{left:387.586667pt;}
.x3c{left:390.466667pt;}
.x1{left:393.826667pt;}
.xc{left:406.466667pt;}
.xd{left:430.333333pt;}
.x26{left:435.293333pt;}
.xf{left:451.773333pt;}
.x3d{left:482.013333pt;}
.x28{left:538.813333pt;}
.x2a{left:605.093333pt;}
.x2e{left:661.733333pt;}
.x1b{left:688.933333pt;}
.x1d{left:718.533333pt;}
}




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