
    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_cf51d535125b0b6b5f389d75.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_17a83ad1f53efbacb66c5f75.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.875000;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_a2d69dca4b9636eb7dd9b0fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.841309;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_392340c7d00117c8e9320897.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.875000;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_85a51a9f708d62e2ecc7da6d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_b7ce51c5ef1a94c2abb05258.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_74ed48b84ff5b839a476c12a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_2ccc086cb7a816445c40b951.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_4242da971877e9e32f6a3de4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_c1e192a50e3ab6800381a03e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.053223;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_556c2d4a399687573d9a3508.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.851562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fc9dfd20f439493183eef9bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls25{letter-spacing:-1.584000px;}
.ls2f{letter-spacing:-1.512000px;}
.ls22{letter-spacing:-1.440000px;}
.ls21{letter-spacing:-1.368000px;}
.ls30{letter-spacing:-1.296000px;}
.ls18{letter-spacing:-1.224000px;}
.ls3c{letter-spacing:-1.080000px;}
.ls3a{letter-spacing:-0.936000px;}
.ls26{letter-spacing:-0.864000px;}
.ls1b{letter-spacing:-0.792000px;}
.ls15{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.147600px;}
.ls6{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.067200px;}
.ls31{letter-spacing:-0.000006px;}
.ls2{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.022320px;}
.ls35{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.072000px;}
.ls36{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.174000px;}
.ls8{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.864000px;}
.ls17{letter-spacing:1.008000px;}
.ls2b{letter-spacing:1.614240px;}
.ls2d{letter-spacing:3.888000px;}
.ls19{letter-spacing:4.608000px;}
.ls27{letter-spacing:6.048000px;}
.ls2e{letter-spacing:6.768000px;}
.ls32{letter-spacing:7.488000px;}
.lsf{letter-spacing:9.648000px;}
.ls37{letter-spacing:11.088000px;}
.ls28{letter-spacing:13.968000px;}
.ls23{letter-spacing:17.568000px;}
.ls33{letter-spacing:19.728000px;}
.ls3e{letter-spacing:24.624000px;}
.ls1d{letter-spacing:26.928000px;}
.ls3d{letter-spacing:28.224000px;}
.ls24{letter-spacing:29.664000px;}
.ls11{letter-spacing:31.824000px;}
.ls10{letter-spacing:35.424000px;}
.ls12{letter-spacing:39.024000px;}
.lsb{letter-spacing:51.269760px;}
.lsc{letter-spacing:54.864000px;}
.lsa{letter-spacing:54.869760px;}
.ls1e{letter-spacing:151.350240px;}
.ls38{letter-spacing:152.513760px;}
.ls29{letter-spacing:160.104000px;}
.ls0{letter-spacing:919.596000px;}
.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;}
}
.ws0{word-spacing:-108.000000px;}
.wsc{word-spacing:-72.000000px;}
.ws2{word-spacing:-27.000000px;}
.ws13{word-spacing:-16.848000px;}
.ws4{word-spacing:-16.632000px;}
.ws15{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.416000px;}
.ws6{word-spacing:-16.344000px;}
.ws5{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.271994px;}
.wsa{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.128000px;}
.ws7{word-spacing:-16.056000px;}
.ws16{word-spacing:-15.984000px;}
.wsb{word-spacing:-15.912000px;}
.wsd{word-spacing:-15.768000px;}
.ws12{word-spacing:-15.624000px;}
.wse{word-spacing:-15.480000px;}
.ws18{word-spacing:-15.336000px;}
.ws17{word-spacing:-15.192000px;}
.ws11{word-spacing:-10.902240px;}
.ws10{word-spacing:-10.835040px;}
.wsf{word-spacing:-10.754640px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-15.684000px;}
._18{margin-left:-12.372000px;}
._15{margin-left:-10.284000px;}
._19{margin-left:-8.460000px;}
._17{margin-left:-7.224000px;}
._16{margin-left:-5.100000px;}
._14{margin-left:-3.480000px;}
._0{margin-left:-1.219680px;}
._1{width:1.272000px;}
._2{width:2.467680px;}
._a{width:3.600000px;}
._9{width:4.680000px;}
._5{width:6.048000px;}
._4{width:7.416000px;}
._13{width:8.586720px;}
._c{width:9.732000px;}
._b{width:11.100000px;}
._7{width:12.127680px;}
._6{width:13.176000px;}
._8{width:14.296320px;}
._1b{width:17.352000px;}
._f{width:18.720000px;}
._11{width:20.004960px;}
._10{width:21.107040px;}
._12{width:22.164000px;}
._d{width:23.328000px;}
._3{width:24.480000px;}
._e{width:25.632000px;}
._23{width:26.879040px;}
._1c{width:28.440000px;}
._1d{width:29.748000px;}
._1f{width:30.852000px;}
._21{width:31.968000px;}
._22{width:33.612000px;}
._20{width:35.352000px;}
._25{width:36.504000px;}
._24{width:37.656000px;}
._26{width:39.360000px;}
._35{width:41.232000px;}
._28{width:42.480000px;}
._37{width:43.656000px;}
._2a{width:45.576000px;}
._34{width:47.559360px;}
._2f{width:49.608000px;}
._30{width:50.695680px;}
._7a{width:51.912000px;}
._31{width:52.920000px;}
._2c{width:54.432000px;}
._7c{width:55.800000px;}
._29{width:56.943360px;}
._1e{width:58.392000px;}
._51{width:60.048000px;}
._a6{width:61.128000px;}
._5a{width:62.784000px;}
._3f{width:63.792000px;}
._40{width:65.016000px;}
._84{width:66.019680px;}
._68{width:67.036320px;}
._49{width:68.755680px;}
._47{width:69.768000px;}
._60{width:71.352000px;}
._48{width:72.720000px;}
._69{width:73.728000px;}
._66{width:74.772000px;}
._ab{width:76.452000px;}
._33{width:78.039360px;}
._32{width:79.200000px;}
._87{width:80.352000px;}
._c7{width:81.456000px;}
._46{width:82.584000px;}
._cb{width:83.592000px;}
._50{width:85.008000px;}
._a9{width:87.048000px;}
._6c{width:88.200000px;}
._57{width:90.216000px;}
._2b{width:91.872000px;}
._86{width:93.312000px;}
._80{width:94.320000px;}
._8e{width:96.048000px;}
._b0{width:97.056000px;}
._88{width:98.136000px;}
._70{width:99.432000px;}
._6e{width:101.016000px;}
._45{width:102.168000px;}
._6d{width:103.320000px;}
._a0{width:104.472000px;}
._9a{width:106.056000px;}
._58{width:107.424000px;}
._2e{width:108.432000px;}
._99{width:110.808000px;}
._81{width:111.816000px;}
._42{width:113.256000px;}
._8f{width:115.272000px;}
._bf{width:116.568000px;}
._9d{width:117.720000px;}
._65{width:118.728000px;}
._c0{width:120.384000px;}
._6b{width:121.896000px;}
._44{width:123.336000px;}
._73{width:125.208000px;}
._4b{width:126.216000px;}
._7b{width:127.368000px;}
._71{width:128.376000px;}
._61{width:129.672000px;}
._54{width:131.688000px;}
._53{width:132.840000px;}
._bb{width:133.920000px;}
._5d{width:135.000000px;}
._b9{width:136.008000px;}
._7d{width:137.664000px;}
._4d{width:139.680000px;}
._c4{width:140.760000px;}
._be{width:142.344000px;}
._b4{width:143.496000px;}
._89{width:144.936000px;}
._9b{width:146.304000px;}
._92{width:149.400000px;}
._27{width:151.224480px;}
._36{width:152.671680px;}
._8d{width:155.304000px;}
._83{width:156.528000px;}
._96{width:157.608000px;}
._90{width:159.120000px;}
._8b{width:160.560000px;}
._b3{width:163.056000px;}
._64{width:165.672000px;}
._b8{width:166.752000px;}
._62{width:168.480000px;}
._a5{width:169.992000px;}
._39{width:172.152000px;}
._af{width:173.376000px;}
._8c{width:174.888000px;}
._7e{width:175.896000px;}
._79{width:178.272000px;}
._bd{width:179.424000px;}
._ce{width:180.648000px;}
._93{width:182.160000px;}
._94{width:184.536000px;}
._5b{width:186.120000px;}
._78{width:188.784000px;}
._b2{width:191.160000px;}
._72{width:192.240000px;}
._7f{width:196.776000px;}
._c8{width:199.116000px;}
._b1{width:200.520000px;}
._a8{width:201.528000px;}
._bc{width:202.752000px;}
._55{width:203.976000px;}
._a4{width:205.128000px;}
._82{width:207.936000px;}
._4e{width:210.288000px;}
._2d{width:211.752000px;}
._4f{width:213.288000px;}
._41{width:214.992000px;}
._cc{width:216.072000px;}
._77{width:217.080000px;}
._cd{width:218.232000px;}
._ac{width:220.032000px;}
._c2{width:221.760000px;}
._9e{width:223.200000px;}
._a3{width:225.360000px;}
._b7{width:230.040000px;}
._c6{width:231.480000px;}
._63{width:232.920000px;}
._a7{width:237.024000px;}
._5e{width:239.760000px;}
._4c{width:241.920000px;}
._52{width:243.720000px;}
._4a{width:249.912000px;}
._3a{width:250.992000px;}
._3b{width:252.463680px;}
._8a{width:253.512000px;}
._5f{width:255.744000px;}
._b6{width:261.144000px;}
._56{width:262.152000px;}
._67{width:264.600000px;}
._3e{width:266.220000px;}
._3d{width:267.336000px;}
._74{width:268.488000px;}
._59{width:270.792000px;}
._43{width:272.880000px;}
._75{width:274.392000px;}
._ba{width:275.808000px;}
._76{width:277.272000px;}
._c5{width:278.424000px;}
._ad{width:280.080000px;}
._9f{width:281.952000px;}
._9c{width:285.120000px;}
._91{width:287.136000px;}
._aa{width:292.104000px;}
._98{width:297.576000px;}
._5c{width:312.120000px;}
._95{width:316.152000px;}
._6f{width:317.520000px;}
._a2{width:318.960000px;}
._c1{width:320.256000px;}
._85{width:324.720000px;}
._ca{width:343.872000px;}
._a1{width:347.400000px;}
._c9{width:348.696000px;}
._b5{width:351.936000px;}
._c3{width:358.680000px;}
._ae{width:374.616000px;}
._97{width:379.944000px;}
._6a{width:384.912000px;}
._3c{width:550.728000px;}
._38{width:574.128000px;}
.fc4{color:rgb(59,56,56);}
.fc3{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc2{color:rgb(118,113,113);}
.fc5{color:rgb(68,84,106);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:87.120000px;}
.fs4{font-size:108.000000px;}
.fs9{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2c8{bottom:15.834000px;}
.y15f{bottom:15.840000px;}
.y16c{bottom:15.885000px;}
.y169{bottom:16.020000px;}
.y277{bottom:16.050000px;}
.y28c{bottom:16.065000px;}
.y15d{bottom:19.800000px;}
.y2e2{bottom:32.214000px;}
.y2b6{bottom:32.220000px;}
.y2d9{bottom:32.394000px;}
.y2c{bottom:36.540000px;}
.y58{bottom:37.080000px;}
.y1a8{bottom:48.774000px;}
.y161{bottom:48.780000px;}
.y16b{bottom:48.825000px;}
.y168{bottom:48.960000px;}
.y164{bottom:48.990000px;}
.y28b{bottom:49.005000px;}
.y1ad{bottom:49.500000px;}
.y2b{bottom:55.980000px;}
.y5a{bottom:56.340000px;}
.y57{bottom:56.520000px;}
.y2ee{bottom:65.154000px;}
.y2b5{bottom:65.160000px;}
.y2d8{bottom:65.334000px;}
.y59{bottom:72.576000px;}
.y56{bottom:78.120000px;}
.y2a{bottom:78.660000px;}
.y26b{bottom:81.714000px;}
.y175{bottom:81.720000px;}
.y2a2{bottom:81.765000px;}
.y167{bottom:81.900000px;}
.y163{bottom:81.930000px;}
.y28a{bottom:81.945000px;}
.y1a6{bottom:82.434000px;}
.y2ed{bottom:98.100000px;}
.y2c3{bottom:98.145000px;}
.y2d7{bottom:98.274000px;}
.y2b4{bottom:98.280000px;}
.y274{bottom:98.310000px;}
.y55{bottom:100.800000px;}
.y29{bottom:103.860000px;}
.y13f{bottom:109.476000px;}
.y1a3{bottom:111.456000px;}
.y117{bottom:111.636000px;}
.y26a{bottom:114.654000px;}
.y174{bottom:114.660000px;}
.y177{bottom:114.690000px;}
.y2a1{bottom:114.705000px;}
.y16e{bottom:114.840000px;}
.y270{bottom:114.870000px;}
.y289{bottom:114.885000px;}
.y1aa{bottom:115.560000px;}
.y1f2{bottom:118.476000px;}
.y171{bottom:119.376000px;}
.ya0{bottom:120.276000px;}
.y1c7{bottom:120.456000px;}
.y1a5{bottom:122.436000px;}
.y143{bottom:123.516000px;}
.y184{bottom:124.056000px;}
.y13e{bottom:124.776000px;}
.yd3{bottom:125.496000px;}
.y54{bottom:126.000000px;}
.y239{bottom:126.396000px;}
.y180{bottom:126.576000px;}
.y1ca{bottom:127.836000px;}
.y28{bottom:129.060000px;}
.y13d{bottom:129.996000px;}
.y29e{bottom:131.085000px;}
.y280{bottom:131.214000px;}
.y2b3{bottom:131.220000px;}
.y273{bottom:131.250000px;}
.y2ca{bottom:131.796000px;}
.y19f{bottom:131.976000px;}
.y14b{bottom:132.516000px;}
.y1c2{bottom:132.696000px;}
.y2e4{bottom:133.236000px;}
.y200{bottom:133.416000px;}
.y2d6{bottom:135.936000px;}
.y2c7{bottom:136.656000px;}
.y183{bottom:139.356000px;}
.y1c9{bottom:140.256000px;}
.y13c{bottom:144.036000px;}
.y90{bottom:144.396000px;}
.y116{bottom:144.576000px;}
.y15b{bottom:144.936000px;}
.yb7{bottom:145.836000px;}
.y269{bottom:147.594000px;}
.y26f{bottom:147.600000px;}
.y2db{bottom:147.630000px;}
.y2a0{bottom:147.645000px;}
.y2e8{bottom:147.774000px;}
.y261{bottom:147.810000px;}
.y288{bottom:147.825000px;}
.y238{bottom:148.356000px;}
.y1d4{bottom:150.510000px;}
.y53{bottom:151.200000px;}
.y1f1{bottom:151.410000px;}
.y1c6{bottom:153.390000px;}
.y27{bottom:154.260000px;}
.y21e{bottom:154.470000px;}
.y142{bottom:156.450000px;}
.yd2{bottom:158.430000px;}
.y182{bottom:158.610000px;}
.y17f{bottom:159.510000px;}
.y27f{bottom:164.154000px;}
.y2ab{bottom:164.160000px;}
.y263{bottom:164.190000px;}
.y29c{bottom:164.205000px;}
.y271{bottom:164.370000px;}
.y19e{bottom:164.910000px;}
.y9f{bottom:165.270000px;}
.y128{bottom:165.450000px;}
.y1c1{bottom:165.630000px;}
.y1ff{bottom:166.350000px;}
.y122{bottom:174.450000px;}
.y52{bottom:176.430000px;}
.y115{bottom:177.510000px;}
.y26{bottom:179.490000px;}
.y279{bottom:180.534000px;}
.y26e{bottom:180.540000px;}
.y2d0{bottom:180.570000px;}
.y294{bottom:180.585000px;}
.y268{bottom:180.714000px;}
.y260{bottom:180.750000px;}
.y287{bottom:180.765000px;}
.yed{bottom:181.470000px;}
.y15a{bottom:181.830000px;}
.y237{bottom:182.370000px;}
.y1d3{bottom:183.450000px;}
.y1f0{bottom:184.350000px;}
.y1c5{bottom:186.510000px;}
.y21d{bottom:188.310000px;}
.y1a7{bottom:189.030000px;}
.y8f{bottom:189.210000px;}
.y141{bottom:189.390000px;}
.y2c6{bottom:190.290000px;}
.yb6{bottom:190.830000px;}
.yd1{bottom:191.370000px;}
.y17a{bottom:192.630000px;}
.y27e{bottom:197.094000px;}
.y2aa{bottom:197.100000px;}
.y258{bottom:197.130000px;}
.y29b{bottom:197.145000px;}
.y272{bottom:197.310000px;}
.y19d{bottom:197.850000px;}
.y127{bottom:198.390000px;}
.y2be{bottom:199.110000px;}
.y16d{bottom:199.650000px;}
.y51{bottom:201.630000px;}
.y236{bottom:204.330000px;}
.y17e{bottom:204.510000px;}
.y25{bottom:204.690000px;}
.y121{bottom:207.390000px;}
.y9e{bottom:210.270000px;}
.y100{bottom:210.450000px;}
.y1c0{bottom:210.630000px;}
.y1fe{bottom:211.350000px;}
.y2a3{bottom:213.480000px;}
.y13a{bottom:213.510000px;}
.y2cc{bottom:213.519000px;}
.y293{bottom:213.525000px;}
.y267{bottom:213.654000px;}
.y25f{bottom:213.690000px;}
.y278{bottom:213.699000px;}
.y286{bottom:213.705000px;}
.y1d2{bottom:216.390000px;}
.y13b{bottom:219.450000px;}
.y1a2{bottom:222.330000px;}
.y114{bottom:222.510000px;}
.y1a4{bottom:222.690000px;}
.yec{bottom:226.470000px;}
.y50{bottom:226.830000px;}
.y1da{bottom:228.270000px;}
.y1ef{bottom:229.350000px;}
.y24{bottom:229.890000px;}
.y2a9{bottom:230.040000px;}
.y2de{bottom:230.070000px;}
.y27d{bottom:230.079000px;}
.y29a{bottom:230.085000px;}
.y257{bottom:230.250000px;}
.y126{bottom:231.330000px;}
.y21c{bottom:232.230000px;}
.y8e{bottom:234.210000px;}
.y1db{bottom:234.390000px;}
.y2c5{bottom:235.290000px;}
.yb5{bottom:235.830000px;}
.yd0{bottom:237.450000px;}
.y235{bottom:238.350000px;}
.y120{bottom:240.330000px;}
.y252{bottom:240.510000px;}
.y19c{bottom:242.850000px;}
.yff{bottom:243.390000px;}
.y1fd{bottom:244.290000px;}
.y139{bottom:246.450000px;}
.y2cb{bottom:246.459000px;}
.y292{bottom:246.465000px;}
.y25e{bottom:246.630000px;}
.y266{bottom:246.639000px;}
.y285{bottom:246.645000px;}
.y4f{bottom:252.030000px;}
.y159{bottom:252.390000px;}
.y21b{bottom:254.370000px;}
.y23{bottom:255.090000px;}
.y9d{bottom:255.270000px;}
.y113{bottom:255.450000px;}
.y234{bottom:260.310000px;}
.y1d1{bottom:261.210000px;}
.y1ee{bottom:262.290000px;}
.y2a8{bottom:263.010000px;}
.y27c{bottom:263.019000px;}
.y299{bottom:263.025000px;}
.y262{bottom:263.190000px;}
.y2c0{bottom:263.205000px;}
.y1a1{bottom:264.270000px;}
.y148{bottom:267.330000px;}
.y17d{bottom:270.390000px;}
.yeb{bottom:271.470000px;}
.y11f{bottom:273.270000px;}
.y251{bottom:273.450000px;}
.y19b{bottom:275.790000px;}
.yfe{bottom:276.330000px;}
.y4e{bottom:277.230000px;}
.y8d{bottom:279.210000px;}
.y138{bottom:279.390000px;}
.y291{bottom:279.405000px;}
.y25d{bottom:279.570000px;}
.y265{bottom:279.579000px;}
.y2bd{bottom:279.585000px;}
.y276{bottom:279.615000px;}
.y2c4{bottom:280.110000px;}
.y22{bottom:280.290000px;}
.yb4{bottom:280.650000px;}
.ycf{bottom:282.270000px;}
.y158{bottom:285.330000px;}
.y21a{bottom:288.210000px;}
.y112{bottom:288.390000px;}
.y1bf{bottom:288.570000px;}
.y1d0{bottom:294.330000px;}
.y1ed{bottom:295.230000px;}
.y2a7{bottom:295.950000px;}
.y27b{bottom:295.959000px;}
.y298{bottom:295.965000px;}
.y2ea{bottom:296.130000px;}
.y2bf{bottom:296.145000px;}
.y245{bottom:296.310000px;}
.y1c4{bottom:297.210000px;}
.y28d{bottom:298.110000px;}
.y9c{bottom:300.090000px;}
.y147{bottom:300.270000px;}
.y2d5{bottom:301.530000px;}
.y4d{bottom:302.430000px;}
.y21{bottom:305.490000px;}
.y11e{bottom:306.210000px;}
.y250{bottom:306.390000px;}
.y19a{bottom:308.730000px;}
.yfd{bottom:309.270000px;}
.y1fc{bottom:310.170000px;}
.y25c{bottom:312.510000px;}
.y264{bottom:312.519000px;}
.y2bc{bottom:312.525000px;}
.y290{bottom:312.555000px;}
.y275{bottom:312.735000px;}
.yce{bottom:315.210000px;}
.yea{bottom:316.290000px;}
.y157{bottom:318.270000px;}
.y111{bottom:321.330000px;}
.y8c{bottom:324.210000px;}
.y137{bottom:324.390000px;}
.y179{bottom:325.110000px;}
.yb3{bottom:325.650000px;}
.y1cf{bottom:327.270000px;}
.y4c{bottom:327.630000px;}
.y1ec{bottom:328.170000px;}
.y2a6{bottom:328.890000px;}
.y27a{bottom:328.899000px;}
.y297{bottom:328.935000px;}
.y2e9{bottom:329.079000px;}
.y1c3{bottom:330.330000px;}
.y20{bottom:330.690000px;}
.y16a{bottom:332.310000px;}
.y140{bottom:333.210000px;}
.y1be{bottom:333.390000px;}
.y233{bottom:338.295000px;}
.y1d9{bottom:339.195000px;}
.y24f{bottom:339.375000px;}
.y244{bottom:340.275000px;}
.y199{bottom:341.715000px;}
.yfc{bottom:342.255000px;}
.y219{bottom:344.235000px;}
.y9b{bottom:345.135000px;}
.y25b{bottom:345.450000px;}
.y26c{bottom:345.459000px;}
.y2bb{bottom:345.465000px;}
.y28f{bottom:345.495000px;}
.y2ec{bottom:345.675000px;}
.ycd{bottom:348.375000px;}
.ye9{bottom:349.275000px;}
.y11d{bottom:351.255000px;}
.y4b{bottom:352.290000px;}
.y14c{bottom:354.315000px;}
.y2d4{bottom:355.035000px;}
.y1fb{bottom:355.215000px;}
.y1f{bottom:355.890000px;}
.y136{bottom:357.375000px;}
.y232{bottom:360.255000px;}
.y1eb{bottom:361.155000px;}
.y2a5{bottom:361.830000px;}
.y296{bottom:361.875000px;}
.y2dd{bottom:362.010000px;}
.y156{bottom:363.315000px;}
.y2a4{bottom:364.035000px;}
.yb2{bottom:366.195000px;}
.y110{bottom:366.375000px;}
.y8b{bottom:369.255000px;}
.y1ce{bottom:372.135000px;}
.y24e{bottom:372.315000px;}
.y243{bottom:374.295000px;}
.yfb{bottom:375.195000px;}
.y4a{bottom:377.490000px;}
.y25a{bottom:378.390000px;}
.y281{bottom:378.399000px;}
.y2ba{bottom:378.405000px;}
.y28e{bottom:378.435000px;}
.y2eb{bottom:378.615000px;}
.y1e{bottom:381.090000px;}
.ycc{bottom:381.315000px;}
.ye8{bottom:382.215000px;}
.y11c{bottom:384.195000px;}
.y198{bottom:386.715000px;}
.y14a{bottom:387.255000px;}
.y1fa{bottom:388.155000px;}
.y9a{bottom:390.135000px;}
.y135{bottom:390.315000px;}
.y178{bottom:391.935000px;}
.y1ea{bottom:394.095000px;}
.y231{bottom:394.275000px;}
.y295{bottom:394.815000px;}
.y2b2{bottom:394.950000px;}
.y155{bottom:396.255000px;}
.y2dc{bottom:396.975000px;}
.y166{bottom:398.955000px;}
.y49{bottom:399.090000px;}
.y10f{bottom:399.315000px;}
.y2d3{bottom:400.035000px;}
.y1cd{bottom:405.255000px;}
.y1d{bottom:406.290000px;}
.yb1{bottom:406.695000px;}
.y1a0{bottom:408.135000px;}
.y218{bottom:410.115000px;}
.y146{bottom:411.195000px;}
.y2ae{bottom:411.330000px;}
.y283{bottom:411.339000px;}
.y2b9{bottom:411.345000px;}
.y1bd{bottom:411.375000px;}
.y259{bottom:411.555000px;}
.y8a{bottom:414.075000px;}
.ycb{bottom:414.255000px;}
.y230{bottom:416.235000px;}
.y11b{bottom:417.135000px;}
.y242{bottom:418.215000px;}
.y197{bottom:419.655000px;}
.yfa{bottom:420.195000px;}
.y134{bottom:423.255000px;}
.y48{bottom:424.335000px;}
.y1e9{bottom:427.035000px;}
.ye7{bottom:427.215000px;}
.y29d{bottom:427.755000px;}
.y2b1{bottom:427.890000px;}
.y154{bottom:429.195000px;}
.y1c{bottom:431.535000px;}
.y217{bottom:432.075000px;}
.y10e{bottom:432.255000px;}
.y99{bottom:435.135000px;}
.y24d{bottom:438.195000px;}
.y1f9{bottom:439.095000px;}
.y241{bottom:440.175000px;}
.y1dc{bottom:441.255000px;}
.y145{bottom:444.135000px;}
.y2ad{bottom:444.270000px;}
.y282{bottom:444.279000px;}
.y2b8{bottom:444.285000px;}
.y29f{bottom:444.315000px;}
.y2c1{bottom:444.495000px;}
.y2d2{bottom:445.035000px;}
.y1bc{bottom:445.395000px;}
.yb0{bottom:447.015000px;}
.y17c{bottom:447.195000px;}
.y1cc{bottom:450.075000px;}
.y47{bottom:452.055000px;}
.y196{bottom:452.595000px;}
.yf9{bottom:453.135000px;}
.y216{bottom:454.035000px;}
.y133{bottom:456.195000px;}
.y1b{bottom:456.735000px;}
.y89{bottom:459.075000px;}
.yca{bottom:459.255000px;}
.ye6{bottom:460.155000px;}
.y2b0{bottom:460.830000px;}
.y11a{bottom:462.135000px;}
.y2d1{bottom:462.855000px;}
.y10d{bottom:465.195000px;}
.y24c{bottom:471.135000px;}
.y22f{bottom:472.035000px;}
.y256{bottom:472.755000px;}
.y153{bottom:474.195000px;}
.y2ac{bottom:477.210000px;}
.y144{bottom:477.255000px;}
.y2e7{bottom:477.429000px;}
.y1bb{bottom:479.415000px;}
.y98{bottom:480.135000px;}
.y1a{bottom:481.935000px;}
.y1cb{bottom:483.015000px;}
.y1f8{bottom:484.095000px;}
.y195{bottom:485.535000px;}
.y125{bottom:486.075000px;}
.y46{bottom:487.335000px;}
.yaf{bottom:487.515000px;}
.y215{bottom:488.055000px;}
.y132{bottom:489.135000px;}
.y176{bottom:491.475000px;}
.yc9{bottom:492.195000px;}
.y1e8{bottom:493.095000px;}
.y2af{bottom:493.770000px;}
.y22e{bottom:493.995000px;}
.y119{bottom:495.075000px;}
.y2cd{bottom:495.795000px;}
.yf8{bottom:498.135000px;}
.y165{bottom:498.675000px;}
.y88{bottom:504.075000px;}
.ye5{bottom:505.155000px;}
.y240{bottom:506.055000px;}
.y19{bottom:507.135000px;}
.y214{bottom:510.015000px;}
.y10c{bottom:510.195000px;}
.y2e6{bottom:510.369000px;}
.y2e1{bottom:510.375000px;}
.y1ba{bottom:512.355000px;}
.y1d8{bottom:516.135000px;}
.y1f7{bottom:517.035000px;}
.y14f{bottom:519.015000px;}
.y45{bottom:519.735000px;}
.y97{bottom:524.955000px;}
.yc8{bottom:525.135000px;}
.y1e7{bottom:526.035000px;}
.yae{bottom:528.015000px;}
.y6b{bottom:528.735000px;}
.y194{bottom:530.535000px;}
.yf7{bottom:531.075000px;}
.y213{bottom:531.975000px;}
.y18{bottom:532.335000px;}
.y131{bottom:534.135000px;}
.y24b{bottom:537.015000px;}
.ye4{bottom:538.095000px;}
.y152{bottom:540.075000px;}
.y10b{bottom:543.135000px;}
.y2e5{bottom:543.309000px;}
.y2e0{bottom:543.315000px;}
.y1b9{bottom:545.295000px;}
.y87{bottom:549.075000px;}
.y22d{bottom:549.975000px;}
.y44{bottom:552.135000px;}
.yc7{bottom:558.075000px;}
.y17{bottom:558.615000px;}
.y7a{bottom:560.955000px;}
.y6a{bottom:561.675000px;}
.y1f6{bottom:562.035000px;}
.yf6{bottom:564.015000px;}
.y162{bottom:565.275000px;}
.y212{bottom:565.995000px;}
.y130{bottom:567.075000px;}
.yad{bottom:568.515000px;}
.y96{bottom:569.955000px;}
.y24a{bottom:570.135000px;}
.y1e6{bottom:571.035000px;}
.y193{bottom:572.475000px;}
.y118{bottom:573.015000px;}
.y10a{bottom:576.075000px;}
.y2df{bottom:576.255000px;}
.y1b8{bottom:578.235000px;}
.ye3{bottom:583.095000px;}
.y22c{bottom:583.995000px;}
.y43{bottom:584.535000px;}
.y14e{bottom:585.075000px;}
.y211{bottom:587.955000px;}
.y16{bottom:591.015000px;}
.y86{bottom:593.895000px;}
.y69{bottom:594.615000px;}
.y1f5{bottom:594.975000px;}
.yf5{bottom:596.955000px;}
.y12f{bottom:600.015000px;}
.y249{bottom:603.075000px;}
.y1e5{bottom:604.005000px;}
.y79{bottom:605.985000px;}
.yac{bottom:609.045000px;}
.y1b7{bottom:611.205000px;}
.y95{bottom:614.985000px;}
.ye2{bottom:616.065000px;}
.y42{bottom:616.935000px;}
.y192{bottom:617.505000px;}
.y151{bottom:618.045000px;}
.y109{bottom:621.105000px;}
.y210{bottom:622.005000px;}
.y68{bottom:622.725000px;}
.y15{bottom:623.415000px;}
.yc6{bottom:623.985000px;}
.y173{bottom:624.165000px;}
.y1d7{bottom:627.045000px;}
.y1f4{bottom:627.945000px;}
.yf4{bottom:629.925000px;}
.y12e{bottom:632.985000px;}
.y17b{bottom:636.045000px;}
.y1e4{bottom:636.945000px;}
.y78{bottom:638.925000px;}
.y23f{bottom:640.005000px;}
.y124{bottom:641.985000px;}
.y20f{bottom:643.965000px;}
.ye1{bottom:649.005000px;}
.y41{bottom:649.335000px;}
.yab{bottom:649.365000px;}
.y22b{bottom:649.905000px;}
.y191{bottom:650.445000px;}
.y150{bottom:650.985000px;}
.y108{bottom:654.045000px;}
.y14{bottom:655.815000px;}
.y1b6{bottom:656.205000px;}
.y94{bottom:659.985000px;}
.y2b7{bottom:661.425000px;}
.y1f3{bottom:661.965000px;}
.yf3{bottom:663.045000px;}
.y160{bottom:665.025000px;}
.y12d{bottom:665.925000px;}
.yc5{bottom:668.985000px;}
.y77{bottom:671.865000px;}
.y123{bottom:674.925000px;}
.y40{bottom:681.765000px;}
.y1e3{bottom:681.945000px;}
.y85{bottom:683.925000px;}
.y107{bottom:686.985000px;}
.y13{bottom:688.245000px;}
.y1b5{bottom:689.145000px;}
.yaa{bottom:689.865000px;}
.ye0{bottom:694.005000px;}
.y2e3{bottom:694.365000px;}
.y190{bottom:695.445000px;}
.y149{bottom:695.985000px;}
.y12c{bottom:699.045000px;}
.y20e{bottom:699.945000px;}
.yc4{bottom:701.925000px;}
.y93{bottom:704.805000px;}
.y22a{bottom:705.885000px;}
.yf2{bottom:707.865000px;}
.y3f{bottom:714.165000px;}
.y1e2{bottom:714.885000px;}
.y76{bottom:716.865000px;}
.y23e{bottom:717.945000px;}
.y106{bottom:719.925000px;}
.y12{bottom:720.645000px;}
.y20d{bottom:721.905000px;}
.y2c9{bottom:726.585000px;}
.ydf{bottom:726.945000px;}
.y2c2{bottom:727.305000px;}
.y229{bottom:727.845000px;}
.y84{bottom:728.925000px;}
.ya9{bottom:730.365000px;}
.y15e{bottom:731.625000px;}
.y12b{bottom:731.985000px;}
.y1b4{bottom:734.145000px;}
.yc3{bottom:734.865000px;}
.y1d6{bottom:737.925000px;}
.y23d{bottom:739.905000px;}
.y18f{bottom:740.445000px;}
.yf1{bottom:740.805000px;}
.y67{bottom:743.865000px;}
.y3e{bottom:746.565000px;}
.y1e1{bottom:747.825000px;}
.y75{bottom:749.805000px;}
.y105{bottom:752.865000px;}
.y11{bottom:753.045000px;}
.y20c{bottom:755.925000px;}
.y172{bottom:756.645000px;}
.y83{bottom:761.865000px;}
.y12a{bottom:764.925000px;}
.yc2{bottom:767.805000px;}
.ya8{bottom:770.865000px;}
.y228{bottom:771.765000px;}
.yde{bottom:771.945000px;}
.y18e{bottom:773.385000px;}
.y14d{bottom:773.925000px;}
.y66{bottom:776.805000px;}
.y20b{bottom:777.885000px;}
.y3d{bottom:778.965000px;}
.y1b3{bottom:779.145000px;}
.y15c{bottom:779.505000px;}
.y74{bottom:782.745000px;}
.y23c{bottom:783.825000px;}
.y10{bottom:785.625000px;}
.yf0{bottom:785.805000px;}
.y1e0{bottom:792.825000px;}
.y92{bottom:794.805000px;}
.y129{bottom:797.865000px;}
.y20a{bottom:799.845000px;}
.y248{bottom:800.745000px;}
.y227{bottom:805.785000px;}
.y82{bottom:806.865000px;}
.y65{bottom:809.925000px;}
.ya7{bottom:811.185000px;}
.y3c{bottom:811.365000px;}
.yc1{bottom:812.805000px;}
.y1d5{bottom:815.685000px;}
.ydd{bottom:816.945000px;}
.yf{bottom:818.025000px;}
.y18d{bottom:818.205000px;}
.y170{bottom:818.385000px;}
.yef{bottom:818.745000px;}
.y209{bottom:821.805000px;}
.y1b2{bottom:823.965000px;}
.y1df{bottom:825.765000px;}
.y2ce{bottom:826.125000px;}
.y73{bottom:827.745000px;}
.y104{bottom:830.805000px;}
.y247{bottom:833.685000px;}
.y81{bottom:839.805000px;}
.y3b{bottom:840.705000px;}
.y2ef{bottom:841.245000px;}
.y64{bottom:842.865000px;}
.yc0{bottom:845.745000px;}
.ye{bottom:847.365000px;}
.y226{bottom:849.705000px;}
.ydc{bottom:849.885000px;}
.y3a{bottom:851.145000px;}
.y18c{bottom:851.325000px;}
.ya6{bottom:851.685000px;}
.y16f{bottom:854.385000px;}
.y208{bottom:855.645000px;}
.y1b1{bottom:857.085000px;}
.yd{bottom:857.805000px;}
.y1de{bottom:858.705000px;}
.y284{bottom:859.065000px;}
.y72{bottom:860.685000px;}
.y39{bottom:863.745000px;}
.y246{bottom:866.805000px;}
.yc{bottom:870.405000px;}
.y80{bottom:872.790000px;}
.y63{bottom:875.850000px;}
.y207{bottom:877.830000px;}
.ybf{bottom:878.730000px;}
.ydb{bottom:882.870000px;}
.y225{bottom:883.770000px;}
.y18b{bottom:884.310000px;}
.yee{bottom:884.850000px;}
.y1b0{bottom:890.070000px;}
.y181{bottom:890.790000px;}
.ya5{bottom:892.230000px;}
.y71{bottom:893.670000px;}
.y38{bottom:894.705000px;}
.y103{bottom:896.730000px;}
.y206{bottom:899.790000px;}
.yb{bottom:901.365000px;}
.y255{bottom:902.130000px;}
.y1dd{bottom:904.650000px;}
.y91{bottom:905.730000px;}
.y62{bottom:908.790000px;}
.ybe{bottom:911.670000px;}
.yda{bottom:915.810000px;}
.y18a{bottom:917.250000px;}
.y37{bottom:917.610000px;}
.y7d{bottom:917.790000px;}
.ya{bottom:924.270000px;}
.y26d{bottom:925.170000px;}
.y224{bottom:927.690000px;}
.y102{bottom:929.670000px;}
.ya4{bottom:932.730000px;}
.y205{bottom:933.630000px;}
.y1af{bottom:934.890000px;}
.y36{bottom:938.310000px;}
.y70{bottom:938.670000px;}
.y23b{bottom:939.750000px;}
.y61{bottom:941.730000px;}
.y9{bottom:944.970000px;}
.y7c{bottom:950.730000px;}
.y1ac{bottom:952.890000px;}
.y204{bottom:955.590000px;}
.ybd{bottom:956.670000px;}
.y2cf{bottom:958.110000px;}
.y35{bottom:959.010000px;}
.yd9{bottom:960.810000px;}
.y223{bottom:961.710000px;}
.y189{bottom:962.250000px;}
.y101{bottom:962.610000px;}
.y8{bottom:965.670000px;}
.ya3{bottom:973.050000px;}
.y60{bottom:974.670000px;}
.y203{bottom:977.550000px;}
.y34{bottom:979.710000px;}
.y6f{bottom:983.670000px;}
.y7{bottom:986.370000px;}
.y1ae{bottom:986.550000px;}
.ybc{bottom:989.610000px;}
.y2da{bottom:991.050000px;}
.y254{bottom:992.670000px;}
.yd8{bottom:993.750000px;}
.y188{bottom:995.190000px;}
.y7f{bottom:995.550000px;}
.y33{bottom:1000.410000px;}
.y222{bottom:1005.630000px;}
.y6{bottom:1007.070000px;}
.y5f{bottom:1007.610000px;}
.y202{bottom:1011.570000px;}
.ya2{bottom:1013.550000px;}
.y6e{bottom:1016.610000px;}
.y1a9{bottom:1021.650000px;}
.ybb{bottom:1022.550000px;}
.y253{bottom:1025.610000px;}
.y187{bottom:1028.130000px;}
.y7e{bottom:1028.670000px;}
.y201{bottom:1033.530000px;}
.yd7{bottom:1038.750000px;}
.y221{bottom:1039.650000px;}
.y32{bottom:1040.190000px;}
.y5e{bottom:1040.550000px;}
.y5{bottom:1046.850000px;}
.y7b{bottom:1049.550000px;}
.ya1{bottom:1054.050000px;}
.yba{bottom:1055.490000px;}
.y31{bottom:1060.890000px;}
.y186{bottom:1061.070000px;}
.y6d{bottom:1061.610000px;}
.y4{bottom:1067.550000px;}
.yd6{bottom:1071.510000px;}
.y5d{bottom:1073.490000px;}
.y1c8{bottom:1079.430000px;}
.y23a{bottom:1083.570000px;}
.y30{bottom:1086.810000px;}
.y1ab{bottom:1088.430000px;}
.y3{bottom:1093.470000px;}
.y6c{bottom:1094.550000px;}
.y220{bottom:1095.450000px;}
.yb9{bottom:1100.490000px;}
.y185{bottom:1103.370000px;}
.yd5{bottom:1105.530000px;}
.y5c{bottom:1106.430000px;}
.y2f{bottom:1111.470000px;}
.y21f{bottom:1117.590000px;}
.y2{bottom:1119.570000px;}
.y2e{bottom:1129.290000px;}
.yb8{bottom:1133.610000px;}
.yd4{bottom:1138.500000px;}
.y5b{bottom:1139.580000px;}
.y1{bottom:1140.270000px;}
.y2d{bottom:1145.670000px;}
.h24{height:30.077578px;}
.h14{height:32.940000px;}
.h9{height:36.729492px;}
.h13{height:36.900000px;}
.h7{height:37.002327px;}
.h10{height:38.671172px;}
.ha{height:40.647305px;}
.h4{height:45.054844px;}
.hd{height:47.980898px;}
.h5{height:48.972656px;}
.h8{height:49.583118px;}
.h1a{height:52.260820px;}
.h25{height:54.914062px;}
.h3{height:57.298008px;}
.h11{height:59.439023px;}
.hf{height:62.964844px;}
.h15{height:65.880000px;}
.h18{height:65.916000px;}
.h22{height:66.060000px;}
.h23{height:66.600000px;}
.hc{height:71.613281px;}
.h12{height:71.740898px;}
.h6{height:73.458984px;}
.he{height:73.722656px;}
.h2{height:74.004654px;}
.h1f{height:77.342344px;}
.hb{height:81.784336px;}
.h1e{height:86.255508px;}
.h1d{height:98.820000px;}
.h17{height:99.000000px;}
.h16{height:99.036000px;}
.h20{height:99.540000px;}
.h1b{height:131.760000px;}
.h1c{height:131.796000px;}
.h19{height:131.940000px;}
.h21{height:132.696000px;}
.h2d{height:164.700000px;}
.h34{height:164.730000px;}
.h39{height:197.670000px;}
.h40{height:230.580000px;}
.h28{height:230.610000px;}
.h30{height:230.790000px;}
.h2e{height:263.550000px;}
.h3b{height:263.730000px;}
.h37{height:296.670000px;}
.h2b{height:296.715000px;}
.h35{height:329.610000px;}
.h36{height:329.655000px;}
.h29{height:329.835000px;}
.h27{height:362.550000px;}
.h38{height:395.490000px;}
.h3e{height:395.715000px;}
.h3f{height:428.430000px;}
.h33{height:428.475000px;}
.h26{height:428.655000px;}
.h2a{height:461.370000px;}
.h3c{height:461.415000px;}
.h32{height:461.595000px;}
.h31{height:494.355000px;}
.h2f{height:527.295000px;}
.h2c{height:560.235000px;}
.h3d{height:560.415000px;}
.h3a{height:593.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:51.120000px;}
.wb{width:103.680000px;}
.wd{width:109.980000px;}
.w14{width:143.676000px;}
.w18{width:146.340000px;}
.w15{width:146.376000px;}
.w13{width:156.600000px;}
.w11{width:157.170000px;}
.w10{width:158.760000px;}
.w17{width:158.790000px;}
.w9{width:161.820000px;}
.wf{width:163.110000px;}
.w5{width:169.050000px;}
.w12{width:172.110000px;}
.wc{width:180.570000px;}
.w16{width:194.430000px;}
.wa{width:199.155000px;}
.w19{width:199.650000px;}
.w7{width:317.730000px;}
.w8{width:317.955000px;}
.w4{width:392.475000px;}
.w6{width:527.655000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.740000px;}
.x16{left:10.620000px;}
.x1c{left:108.936000px;}
.x15{left:116.496000px;}
.x17{left:119.916000px;}
.x1{left:127.655987px;}
.x23{left:131.435987px;}
.x12{left:132.515987px;}
.x9{left:145.655987px;}
.x13{left:154.649987px;}
.xc{left:160.049987px;}
.xa{left:163.649987px;}
.x14{left:181.649987px;}
.xd{left:187.049987px;}
.xe{left:214.049987px;}
.x20{left:219.630000px;}
.x21{left:267.869973px;}
.x1d{left:271.470000px;}
.x22{left:273.989987px;}
.x26{left:277.230000px;}
.x29{left:279.435000px;}
.x24{left:283.755000px;}
.x19{left:289.695000px;}
.x2{left:308.414987px;}
.x11{left:343.694987px;}
.x3{left:361.694987px;}
.x6{left:402.194987px;}
.x27{left:421.635000px;}
.x2a{left:426.495000px;}
.xb{left:436.214987px;}
.x8{left:438.374987px;}
.x7{left:440.354987px;}
.x4{left:442.334987px;}
.x5{left:446.474987px;}
.x1e{left:471.345000px;}
.xf{left:503.384973px;}
.x10{left:509.504987px;}
.x1a{left:528.584973px;}
.x1b{left:534.704987px;}
.x28{left:568.725000px;}
.x1f{left:575.745000px;}
.x25{left:601.125000px;}
.x2b{left:626.865000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls25{letter-spacing:-1.408000pt;}
.ls2f{letter-spacing:-1.344000pt;}
.ls22{letter-spacing:-1.280000pt;}
.ls21{letter-spacing:-1.216000pt;}
.ls30{letter-spacing:-1.152000pt;}
.ls18{letter-spacing:-1.088000pt;}
.ls3c{letter-spacing:-0.960000pt;}
.ls3a{letter-spacing:-0.832000pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls1b{letter-spacing:-0.704000pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.131200pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.059733pt;}
.ls31{letter-spacing:-0.000005pt;}
.ls2{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.019840pt;}
.ls35{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls36{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.154667pt;}
.ls8{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.896000pt;}
.ls2b{letter-spacing:1.434880pt;}
.ls2d{letter-spacing:3.456000pt;}
.ls19{letter-spacing:4.096000pt;}
.ls27{letter-spacing:5.376000pt;}
.ls2e{letter-spacing:6.016000pt;}
.ls32{letter-spacing:6.656000pt;}
.lsf{letter-spacing:8.576000pt;}
.ls37{letter-spacing:9.856000pt;}
.ls28{letter-spacing:12.416000pt;}
.ls23{letter-spacing:15.616000pt;}
.ls33{letter-spacing:17.536000pt;}
.ls3e{letter-spacing:21.888000pt;}
.ls1d{letter-spacing:23.936000pt;}
.ls3d{letter-spacing:25.088000pt;}
.ls24{letter-spacing:26.368000pt;}
.ls11{letter-spacing:28.288000pt;}
.ls10{letter-spacing:31.488000pt;}
.ls12{letter-spacing:34.688000pt;}
.lsb{letter-spacing:45.573120pt;}
.lsc{letter-spacing:48.768000pt;}
.lsa{letter-spacing:48.773120pt;}
.ls1e{letter-spacing:134.533547pt;}
.ls38{letter-spacing:135.567787pt;}
.ls29{letter-spacing:142.314667pt;}
.ls0{letter-spacing:817.418667pt;}
.ws0{word-spacing:-96.000000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws13{word-spacing:-14.976000pt;}
.ws4{word-spacing:-14.784000pt;}
.ws15{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws6{word-spacing:-14.528000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.463995pt;}
.wsa{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.336000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws16{word-spacing:-14.208000pt;}
.wsb{word-spacing:-14.144000pt;}
.wsd{word-spacing:-14.016000pt;}
.ws12{word-spacing:-13.888000pt;}
.wse{word-spacing:-13.760000pt;}
.ws18{word-spacing:-13.632000pt;}
.ws17{word-spacing:-13.504000pt;}
.ws11{word-spacing:-9.690880pt;}
.ws10{word-spacing:-9.631147pt;}
.wsf{word-spacing:-9.559680pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-13.941333pt;}
._18{margin-left:-10.997333pt;}
._15{margin-left:-9.141333pt;}
._19{margin-left:-7.520000pt;}
._17{margin-left:-6.421333pt;}
._16{margin-left:-4.533333pt;}
._14{margin-left:-3.093333pt;}
._0{margin-left:-1.084160pt;}
._1{width:1.130667pt;}
._2{width:2.193493pt;}
._a{width:3.200000pt;}
._9{width:4.160000pt;}
._5{width:5.376000pt;}
._4{width:6.592000pt;}
._13{width:7.632640pt;}
._c{width:8.650667pt;}
._b{width:9.866667pt;}
._7{width:10.780160pt;}
._6{width:11.712000pt;}
._8{width:12.707840pt;}
._1b{width:15.424000pt;}
._f{width:16.640000pt;}
._11{width:17.782187pt;}
._10{width:18.761813pt;}
._12{width:19.701333pt;}
._d{width:20.736000pt;}
._3{width:21.760000pt;}
._e{width:22.784000pt;}
._23{width:23.892480pt;}
._1c{width:25.280000pt;}
._1d{width:26.442667pt;}
._1f{width:27.424000pt;}
._21{width:28.416000pt;}
._22{width:29.877333pt;}
._20{width:31.424000pt;}
._25{width:32.448000pt;}
._24{width:33.472000pt;}
._26{width:34.986667pt;}
._35{width:36.650667pt;}
._28{width:37.760000pt;}
._37{width:38.805333pt;}
._2a{width:40.512000pt;}
._34{width:42.274987pt;}
._2f{width:44.096000pt;}
._30{width:45.062827pt;}
._7a{width:46.144000pt;}
._31{width:47.040000pt;}
._2c{width:48.384000pt;}
._7c{width:49.600000pt;}
._29{width:50.616320pt;}
._1e{width:51.904000pt;}
._51{width:53.376000pt;}
._a6{width:54.336000pt;}
._5a{width:55.808000pt;}
._3f{width:56.704000pt;}
._40{width:57.792000pt;}
._84{width:58.684160pt;}
._68{width:59.587840pt;}
._49{width:61.116160pt;}
._47{width:62.016000pt;}
._60{width:63.424000pt;}
._48{width:64.640000pt;}
._69{width:65.536000pt;}
._66{width:66.464000pt;}
._ab{width:67.957333pt;}
._33{width:69.368320pt;}
._32{width:70.400000pt;}
._87{width:71.424000pt;}
._c7{width:72.405333pt;}
._46{width:73.408000pt;}
._cb{width:74.304000pt;}
._50{width:75.562667pt;}
._a9{width:77.376000pt;}
._6c{width:78.400000pt;}
._57{width:80.192000pt;}
._2b{width:81.664000pt;}
._86{width:82.944000pt;}
._80{width:83.840000pt;}
._8e{width:85.376000pt;}
._b0{width:86.272000pt;}
._88{width:87.232000pt;}
._70{width:88.384000pt;}
._6e{width:89.792000pt;}
._45{width:90.816000pt;}
._6d{width:91.840000pt;}
._a0{width:92.864000pt;}
._9a{width:94.272000pt;}
._58{width:95.488000pt;}
._2e{width:96.384000pt;}
._99{width:98.496000pt;}
._81{width:99.392000pt;}
._42{width:100.672000pt;}
._8f{width:102.464000pt;}
._bf{width:103.616000pt;}
._9d{width:104.640000pt;}
._65{width:105.536000pt;}
._c0{width:107.008000pt;}
._6b{width:108.352000pt;}
._44{width:109.632000pt;}
._73{width:111.296000pt;}
._4b{width:112.192000pt;}
._7b{width:113.216000pt;}
._71{width:114.112000pt;}
._61{width:115.264000pt;}
._54{width:117.056000pt;}
._53{width:118.080000pt;}
._bb{width:119.040000pt;}
._5d{width:120.000000pt;}
._b9{width:120.896000pt;}
._7d{width:122.368000pt;}
._4d{width:124.160000pt;}
._c4{width:125.120000pt;}
._be{width:126.528000pt;}
._b4{width:127.552000pt;}
._89{width:128.832000pt;}
._9b{width:130.048000pt;}
._92{width:132.800000pt;}
._27{width:134.421760pt;}
._36{width:135.708160pt;}
._8d{width:138.048000pt;}
._83{width:139.136000pt;}
._96{width:140.096000pt;}
._90{width:141.440000pt;}
._8b{width:142.720000pt;}
._b3{width:144.938667pt;}
._64{width:147.264000pt;}
._b8{width:148.224000pt;}
._62{width:149.760000pt;}
._a5{width:151.104000pt;}
._39{width:153.024000pt;}
._af{width:154.112000pt;}
._8c{width:155.456000pt;}
._7e{width:156.352000pt;}
._79{width:158.464000pt;}
._bd{width:159.488000pt;}
._ce{width:160.576000pt;}
._93{width:161.920000pt;}
._94{width:164.032000pt;}
._5b{width:165.440000pt;}
._78{width:167.808000pt;}
._b2{width:169.920000pt;}
._72{width:170.880000pt;}
._7f{width:174.912000pt;}
._c8{width:176.992000pt;}
._b1{width:178.240000pt;}
._a8{width:179.136000pt;}
._bc{width:180.224000pt;}
._55{width:181.312000pt;}
._a4{width:182.336000pt;}
._82{width:184.832000pt;}
._4e{width:186.922667pt;}
._2d{width:188.224000pt;}
._4f{width:189.589333pt;}
._41{width:191.104000pt;}
._cc{width:192.064000pt;}
._77{width:192.960000pt;}
._cd{width:193.984000pt;}
._ac{width:195.584000pt;}
._c2{width:197.120000pt;}
._9e{width:198.400000pt;}
._a3{width:200.320000pt;}
._b7{width:204.480000pt;}
._c6{width:205.760000pt;}
._63{width:207.040000pt;}
._a7{width:210.688000pt;}
._5e{width:213.120000pt;}
._4c{width:215.040000pt;}
._52{width:216.640000pt;}
._4a{width:222.144000pt;}
._3a{width:223.104000pt;}
._3b{width:224.412160pt;}
._8a{width:225.344000pt;}
._5f{width:227.328000pt;}
._b6{width:232.128000pt;}
._56{width:233.024000pt;}
._67{width:235.200000pt;}
._3e{width:236.640000pt;}
._3d{width:237.632000pt;}
._74{width:238.656000pt;}
._59{width:240.704000pt;}
._43{width:242.560000pt;}
._75{width:243.904000pt;}
._ba{width:245.162667pt;}
._76{width:246.464000pt;}
._c5{width:247.488000pt;}
._ad{width:248.960000pt;}
._9f{width:250.624000pt;}
._9c{width:253.440000pt;}
._91{width:255.232000pt;}
._aa{width:259.648000pt;}
._98{width:264.512000pt;}
._5c{width:277.440000pt;}
._95{width:281.024000pt;}
._6f{width:282.240000pt;}
._a2{width:283.520000pt;}
._c1{width:284.672000pt;}
._85{width:288.640000pt;}
._ca{width:305.664000pt;}
._a1{width:308.800000pt;}
._c9{width:309.952000pt;}
._b5{width:312.832000pt;}
._c3{width:318.826667pt;}
._ae{width:332.992000pt;}
._97{width:337.728000pt;}
._6a{width:342.144000pt;}
._3c{width:489.536000pt;}
._38{width:510.336000pt;}
.fsc{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:77.440000pt;}
.fs4{font-size:96.000000pt;}
.fs9{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2c8{bottom:14.074667pt;}
.y15f{bottom:14.080000pt;}
.y16c{bottom:14.120000pt;}
.y169{bottom:14.240000pt;}
.y277{bottom:14.266667pt;}
.y28c{bottom:14.280000pt;}
.y15d{bottom:17.600000pt;}
.y2e2{bottom:28.634667pt;}
.y2b6{bottom:28.640000pt;}
.y2d9{bottom:28.794667pt;}
.y2c{bottom:32.480000pt;}
.y58{bottom:32.960000pt;}
.y1a8{bottom:43.354667pt;}
.y161{bottom:43.360000pt;}
.y16b{bottom:43.400000pt;}
.y168{bottom:43.520000pt;}
.y164{bottom:43.546667pt;}
.y28b{bottom:43.560000pt;}
.y1ad{bottom:44.000000pt;}
.y2b{bottom:49.760000pt;}
.y5a{bottom:50.080000pt;}
.y57{bottom:50.240000pt;}
.y2ee{bottom:57.914667pt;}
.y2b5{bottom:57.920000pt;}
.y2d8{bottom:58.074667pt;}
.y59{bottom:64.512000pt;}
.y56{bottom:69.440000pt;}
.y2a{bottom:69.920000pt;}
.y26b{bottom:72.634667pt;}
.y175{bottom:72.640000pt;}
.y2a2{bottom:72.680000pt;}
.y167{bottom:72.800000pt;}
.y163{bottom:72.826667pt;}
.y28a{bottom:72.840000pt;}
.y1a6{bottom:73.274667pt;}
.y2ed{bottom:87.200000pt;}
.y2c3{bottom:87.240000pt;}
.y2d7{bottom:87.354667pt;}
.y2b4{bottom:87.360000pt;}
.y274{bottom:87.386667pt;}
.y55{bottom:89.600000pt;}
.y29{bottom:92.320000pt;}
.y13f{bottom:97.312000pt;}
.y1a3{bottom:99.072000pt;}
.y117{bottom:99.232000pt;}
.y26a{bottom:101.914667pt;}
.y174{bottom:101.920000pt;}
.y177{bottom:101.946667pt;}
.y2a1{bottom:101.960000pt;}
.y16e{bottom:102.080000pt;}
.y270{bottom:102.106667pt;}
.y289{bottom:102.120000pt;}
.y1aa{bottom:102.720000pt;}
.y1f2{bottom:105.312000pt;}
.y171{bottom:106.112000pt;}
.ya0{bottom:106.912000pt;}
.y1c7{bottom:107.072000pt;}
.y1a5{bottom:108.832000pt;}
.y143{bottom:109.792000pt;}
.y184{bottom:110.272000pt;}
.y13e{bottom:110.912000pt;}
.yd3{bottom:111.552000pt;}
.y54{bottom:112.000000pt;}
.y239{bottom:112.352000pt;}
.y180{bottom:112.512000pt;}
.y1ca{bottom:113.632000pt;}
.y28{bottom:114.720000pt;}
.y13d{bottom:115.552000pt;}
.y29e{bottom:116.520000pt;}
.y280{bottom:116.634667pt;}
.y2b3{bottom:116.640000pt;}
.y273{bottom:116.666667pt;}
.y2ca{bottom:117.152000pt;}
.y19f{bottom:117.312000pt;}
.y14b{bottom:117.792000pt;}
.y1c2{bottom:117.952000pt;}
.y2e4{bottom:118.432000pt;}
.y200{bottom:118.592000pt;}
.y2d6{bottom:120.832000pt;}
.y2c7{bottom:121.472000pt;}
.y183{bottom:123.872000pt;}
.y1c9{bottom:124.672000pt;}
.y13c{bottom:128.032000pt;}
.y90{bottom:128.352000pt;}
.y116{bottom:128.512000pt;}
.y15b{bottom:128.832000pt;}
.yb7{bottom:129.632000pt;}
.y269{bottom:131.194667pt;}
.y26f{bottom:131.200000pt;}
.y2db{bottom:131.226667pt;}
.y2a0{bottom:131.240000pt;}
.y2e8{bottom:131.354667pt;}
.y261{bottom:131.386667pt;}
.y288{bottom:131.400000pt;}
.y238{bottom:131.872000pt;}
.y1d4{bottom:133.786667pt;}
.y53{bottom:134.400000pt;}
.y1f1{bottom:134.586667pt;}
.y1c6{bottom:136.346667pt;}
.y27{bottom:137.120000pt;}
.y21e{bottom:137.306667pt;}
.y142{bottom:139.066667pt;}
.yd2{bottom:140.826667pt;}
.y182{bottom:140.986667pt;}
.y17f{bottom:141.786667pt;}
.y27f{bottom:145.914667pt;}
.y2ab{bottom:145.920000pt;}
.y263{bottom:145.946667pt;}
.y29c{bottom:145.960000pt;}
.y271{bottom:146.106667pt;}
.y19e{bottom:146.586667pt;}
.y9f{bottom:146.906667pt;}
.y128{bottom:147.066667pt;}
.y1c1{bottom:147.226667pt;}
.y1ff{bottom:147.866667pt;}
.y122{bottom:155.066667pt;}
.y52{bottom:156.826667pt;}
.y115{bottom:157.786667pt;}
.y26{bottom:159.546667pt;}
.y279{bottom:160.474667pt;}
.y26e{bottom:160.480000pt;}
.y2d0{bottom:160.506667pt;}
.y294{bottom:160.520000pt;}
.y268{bottom:160.634667pt;}
.y260{bottom:160.666667pt;}
.y287{bottom:160.680000pt;}
.yed{bottom:161.306667pt;}
.y15a{bottom:161.626667pt;}
.y237{bottom:162.106667pt;}
.y1d3{bottom:163.066667pt;}
.y1f0{bottom:163.866667pt;}
.y1c5{bottom:165.786667pt;}
.y21d{bottom:167.386667pt;}
.y1a7{bottom:168.026667pt;}
.y8f{bottom:168.186667pt;}
.y141{bottom:168.346667pt;}
.y2c6{bottom:169.146667pt;}
.yb6{bottom:169.626667pt;}
.yd1{bottom:170.106667pt;}
.y17a{bottom:171.226667pt;}
.y27e{bottom:175.194667pt;}
.y2aa{bottom:175.200000pt;}
.y258{bottom:175.226667pt;}
.y29b{bottom:175.240000pt;}
.y272{bottom:175.386667pt;}
.y19d{bottom:175.866667pt;}
.y127{bottom:176.346667pt;}
.y2be{bottom:176.986667pt;}
.y16d{bottom:177.466667pt;}
.y51{bottom:179.226667pt;}
.y236{bottom:181.626667pt;}
.y17e{bottom:181.786667pt;}
.y25{bottom:181.946667pt;}
.y121{bottom:184.346667pt;}
.y9e{bottom:186.906667pt;}
.y100{bottom:187.066667pt;}
.y1c0{bottom:187.226667pt;}
.y1fe{bottom:187.866667pt;}
.y2a3{bottom:189.760000pt;}
.y13a{bottom:189.786667pt;}
.y2cc{bottom:189.794667pt;}
.y293{bottom:189.800000pt;}
.y267{bottom:189.914667pt;}
.y25f{bottom:189.946667pt;}
.y278{bottom:189.954667pt;}
.y286{bottom:189.960000pt;}
.y1d2{bottom:192.346667pt;}
.y13b{bottom:195.066667pt;}
.y1a2{bottom:197.626667pt;}
.y114{bottom:197.786667pt;}
.y1a4{bottom:197.946667pt;}
.yec{bottom:201.306667pt;}
.y50{bottom:201.626667pt;}
.y1da{bottom:202.906667pt;}
.y1ef{bottom:203.866667pt;}
.y24{bottom:204.346667pt;}
.y2a9{bottom:204.480000pt;}
.y2de{bottom:204.506667pt;}
.y27d{bottom:204.514667pt;}
.y29a{bottom:204.520000pt;}
.y257{bottom:204.666667pt;}
.y126{bottom:205.626667pt;}
.y21c{bottom:206.426667pt;}
.y8e{bottom:208.186667pt;}
.y1db{bottom:208.346667pt;}
.y2c5{bottom:209.146667pt;}
.yb5{bottom:209.626667pt;}
.yd0{bottom:211.066667pt;}
.y235{bottom:211.866667pt;}
.y120{bottom:213.626667pt;}
.y252{bottom:213.786667pt;}
.y19c{bottom:215.866667pt;}
.yff{bottom:216.346667pt;}
.y1fd{bottom:217.146667pt;}
.y139{bottom:219.066667pt;}
.y2cb{bottom:219.074667pt;}
.y292{bottom:219.080000pt;}
.y25e{bottom:219.226667pt;}
.y266{bottom:219.234667pt;}
.y285{bottom:219.240000pt;}
.y4f{bottom:224.026667pt;}
.y159{bottom:224.346667pt;}
.y21b{bottom:226.106667pt;}
.y23{bottom:226.746667pt;}
.y9d{bottom:226.906667pt;}
.y113{bottom:227.066667pt;}
.y234{bottom:231.386667pt;}
.y1d1{bottom:232.186667pt;}
.y1ee{bottom:233.146667pt;}
.y2a8{bottom:233.786667pt;}
.y27c{bottom:233.794667pt;}
.y299{bottom:233.800000pt;}
.y262{bottom:233.946667pt;}
.y2c0{bottom:233.960000pt;}
.y1a1{bottom:234.906667pt;}
.y148{bottom:237.626667pt;}
.y17d{bottom:240.346667pt;}
.yeb{bottom:241.306667pt;}
.y11f{bottom:242.906667pt;}
.y251{bottom:243.066667pt;}
.y19b{bottom:245.146667pt;}
.yfe{bottom:245.626667pt;}
.y4e{bottom:246.426667pt;}
.y8d{bottom:248.186667pt;}
.y138{bottom:248.346667pt;}
.y291{bottom:248.360000pt;}
.y25d{bottom:248.506667pt;}
.y265{bottom:248.514667pt;}
.y2bd{bottom:248.520000pt;}
.y276{bottom:248.546667pt;}
.y2c4{bottom:248.986667pt;}
.y22{bottom:249.146667pt;}
.yb4{bottom:249.466667pt;}
.ycf{bottom:250.906667pt;}
.y158{bottom:253.626667pt;}
.y21a{bottom:256.186667pt;}
.y112{bottom:256.346667pt;}
.y1bf{bottom:256.506667pt;}
.y1d0{bottom:261.626667pt;}
.y1ed{bottom:262.426667pt;}
.y2a7{bottom:263.066667pt;}
.y27b{bottom:263.074667pt;}
.y298{bottom:263.080000pt;}
.y2ea{bottom:263.226667pt;}
.y2bf{bottom:263.240000pt;}
.y245{bottom:263.386667pt;}
.y1c4{bottom:264.186667pt;}
.y28d{bottom:264.986667pt;}
.y9c{bottom:266.746667pt;}
.y147{bottom:266.906667pt;}
.y2d5{bottom:268.026667pt;}
.y4d{bottom:268.826667pt;}
.y21{bottom:271.546667pt;}
.y11e{bottom:272.186667pt;}
.y250{bottom:272.346667pt;}
.y19a{bottom:274.426667pt;}
.yfd{bottom:274.906667pt;}
.y1fc{bottom:275.706667pt;}
.y25c{bottom:277.786667pt;}
.y264{bottom:277.794667pt;}
.y2bc{bottom:277.800000pt;}
.y290{bottom:277.826667pt;}
.y275{bottom:277.986667pt;}
.yce{bottom:280.186667pt;}
.yea{bottom:281.146667pt;}
.y157{bottom:282.906667pt;}
.y111{bottom:285.626667pt;}
.y8c{bottom:288.186667pt;}
.y137{bottom:288.346667pt;}
.y179{bottom:288.986667pt;}
.yb3{bottom:289.466667pt;}
.y1cf{bottom:290.906667pt;}
.y4c{bottom:291.226667pt;}
.y1ec{bottom:291.706667pt;}
.y2a6{bottom:292.346667pt;}
.y27a{bottom:292.354667pt;}
.y297{bottom:292.386667pt;}
.y2e9{bottom:292.514667pt;}
.y1c3{bottom:293.626667pt;}
.y20{bottom:293.946667pt;}
.y16a{bottom:295.386667pt;}
.y140{bottom:296.186667pt;}
.y1be{bottom:296.346667pt;}
.y233{bottom:300.706667pt;}
.y1d9{bottom:301.506667pt;}
.y24f{bottom:301.666667pt;}
.y244{bottom:302.466667pt;}
.y199{bottom:303.746667pt;}
.yfc{bottom:304.226667pt;}
.y219{bottom:305.986667pt;}
.y9b{bottom:306.786667pt;}
.y25b{bottom:307.066667pt;}
.y26c{bottom:307.074667pt;}
.y2bb{bottom:307.080000pt;}
.y28f{bottom:307.106667pt;}
.y2ec{bottom:307.266667pt;}
.ycd{bottom:309.666667pt;}
.ye9{bottom:310.466667pt;}
.y11d{bottom:312.226667pt;}
.y4b{bottom:313.146667pt;}
.y14c{bottom:314.946667pt;}
.y2d4{bottom:315.586667pt;}
.y1fb{bottom:315.746667pt;}
.y1f{bottom:316.346667pt;}
.y136{bottom:317.666667pt;}
.y232{bottom:320.226667pt;}
.y1eb{bottom:321.026667pt;}
.y2a5{bottom:321.626667pt;}
.y296{bottom:321.666667pt;}
.y2dd{bottom:321.786667pt;}
.y156{bottom:322.946667pt;}
.y2a4{bottom:323.586667pt;}
.yb2{bottom:325.506667pt;}
.y110{bottom:325.666667pt;}
.y8b{bottom:328.226667pt;}
.y1ce{bottom:330.786667pt;}
.y24e{bottom:330.946667pt;}
.y243{bottom:332.706667pt;}
.yfb{bottom:333.506667pt;}
.y4a{bottom:335.546667pt;}
.y25a{bottom:336.346667pt;}
.y281{bottom:336.354667pt;}
.y2ba{bottom:336.360000pt;}
.y28e{bottom:336.386667pt;}
.y2eb{bottom:336.546667pt;}
.y1e{bottom:338.746667pt;}
.ycc{bottom:338.946667pt;}
.ye8{bottom:339.746667pt;}
.y11c{bottom:341.506667pt;}
.y198{bottom:343.746667pt;}
.y14a{bottom:344.226667pt;}
.y1fa{bottom:345.026667pt;}
.y9a{bottom:346.786667pt;}
.y135{bottom:346.946667pt;}
.y178{bottom:348.386667pt;}
.y1ea{bottom:350.306667pt;}
.y231{bottom:350.466667pt;}
.y295{bottom:350.946667pt;}
.y2b2{bottom:351.066667pt;}
.y155{bottom:352.226667pt;}
.y2dc{bottom:352.866667pt;}
.y166{bottom:354.626667pt;}
.y49{bottom:354.746667pt;}
.y10f{bottom:354.946667pt;}
.y2d3{bottom:355.586667pt;}
.y1cd{bottom:360.226667pt;}
.y1d{bottom:361.146667pt;}
.yb1{bottom:361.506667pt;}
.y1a0{bottom:362.786667pt;}
.y218{bottom:364.546667pt;}
.y146{bottom:365.506667pt;}
.y2ae{bottom:365.626667pt;}
.y283{bottom:365.634667pt;}
.y2b9{bottom:365.640000pt;}
.y1bd{bottom:365.666667pt;}
.y259{bottom:365.826667pt;}
.y8a{bottom:368.066667pt;}
.ycb{bottom:368.226667pt;}
.y230{bottom:369.986667pt;}
.y11b{bottom:370.786667pt;}
.y242{bottom:371.746667pt;}
.y197{bottom:373.026667pt;}
.yfa{bottom:373.506667pt;}
.y134{bottom:376.226667pt;}
.y48{bottom:377.186667pt;}
.y1e9{bottom:379.586667pt;}
.ye7{bottom:379.746667pt;}
.y29d{bottom:380.226667pt;}
.y2b1{bottom:380.346667pt;}
.y154{bottom:381.506667pt;}
.y1c{bottom:383.586667pt;}
.y217{bottom:384.066667pt;}
.y10e{bottom:384.226667pt;}
.y99{bottom:386.786667pt;}
.y24d{bottom:389.506667pt;}
.y1f9{bottom:390.306667pt;}
.y241{bottom:391.266667pt;}
.y1dc{bottom:392.226667pt;}
.y145{bottom:394.786667pt;}
.y2ad{bottom:394.906667pt;}
.y282{bottom:394.914667pt;}
.y2b8{bottom:394.920000pt;}
.y29f{bottom:394.946667pt;}
.y2c1{bottom:395.106667pt;}
.y2d2{bottom:395.586667pt;}
.y1bc{bottom:395.906667pt;}
.yb0{bottom:397.346667pt;}
.y17c{bottom:397.506667pt;}
.y1cc{bottom:400.066667pt;}
.y47{bottom:401.826667pt;}
.y196{bottom:402.306667pt;}
.yf9{bottom:402.786667pt;}
.y216{bottom:403.586667pt;}
.y133{bottom:405.506667pt;}
.y1b{bottom:405.986667pt;}
.y89{bottom:408.066667pt;}
.yca{bottom:408.226667pt;}
.ye6{bottom:409.026667pt;}
.y2b0{bottom:409.626667pt;}
.y11a{bottom:410.786667pt;}
.y2d1{bottom:411.426667pt;}
.y10d{bottom:413.506667pt;}
.y24c{bottom:418.786667pt;}
.y22f{bottom:419.586667pt;}
.y256{bottom:420.226667pt;}
.y153{bottom:421.506667pt;}
.y2ac{bottom:424.186667pt;}
.y144{bottom:424.226667pt;}
.y2e7{bottom:424.381333pt;}
.y1bb{bottom:426.146667pt;}
.y98{bottom:426.786667pt;}
.y1a{bottom:428.386667pt;}
.y1cb{bottom:429.346667pt;}
.y1f8{bottom:430.306667pt;}
.y195{bottom:431.586667pt;}
.y125{bottom:432.066667pt;}
.y46{bottom:433.186667pt;}
.yaf{bottom:433.346667pt;}
.y215{bottom:433.826667pt;}
.y132{bottom:434.786667pt;}
.y176{bottom:436.866667pt;}
.yc9{bottom:437.506667pt;}
.y1e8{bottom:438.306667pt;}
.y2af{bottom:438.906667pt;}
.y22e{bottom:439.106667pt;}
.y119{bottom:440.066667pt;}
.y2cd{bottom:440.706667pt;}
.yf8{bottom:442.786667pt;}
.y165{bottom:443.266667pt;}
.y88{bottom:448.066667pt;}
.ye5{bottom:449.026667pt;}
.y240{bottom:449.826667pt;}
.y19{bottom:450.786667pt;}
.y214{bottom:453.346667pt;}
.y10c{bottom:453.506667pt;}
.y2e6{bottom:453.661333pt;}
.y2e1{bottom:453.666667pt;}
.y1ba{bottom:455.426667pt;}
.y1d8{bottom:458.786667pt;}
.y1f7{bottom:459.586667pt;}
.y14f{bottom:461.346667pt;}
.y45{bottom:461.986667pt;}
.y97{bottom:466.626667pt;}
.yc8{bottom:466.786667pt;}
.y1e7{bottom:467.586667pt;}
.yae{bottom:469.346667pt;}
.y6b{bottom:469.986667pt;}
.y194{bottom:471.586667pt;}
.yf7{bottom:472.066667pt;}
.y213{bottom:472.866667pt;}
.y18{bottom:473.186667pt;}
.y131{bottom:474.786667pt;}
.y24b{bottom:477.346667pt;}
.ye4{bottom:478.306667pt;}
.y152{bottom:480.066667pt;}
.y10b{bottom:482.786667pt;}
.y2e5{bottom:482.941333pt;}
.y2e0{bottom:482.946667pt;}
.y1b9{bottom:484.706667pt;}
.y87{bottom:488.066667pt;}
.y22d{bottom:488.866667pt;}
.y44{bottom:490.786667pt;}
.yc7{bottom:496.066667pt;}
.y17{bottom:496.546667pt;}
.y7a{bottom:498.626667pt;}
.y6a{bottom:499.266667pt;}
.y1f6{bottom:499.586667pt;}
.yf6{bottom:501.346667pt;}
.y162{bottom:502.466667pt;}
.y212{bottom:503.106667pt;}
.y130{bottom:504.066667pt;}
.yad{bottom:505.346667pt;}
.y96{bottom:506.626667pt;}
.y24a{bottom:506.786667pt;}
.y1e6{bottom:507.586667pt;}
.y193{bottom:508.866667pt;}
.y118{bottom:509.346667pt;}
.y10a{bottom:512.066667pt;}
.y2df{bottom:512.226667pt;}
.y1b8{bottom:513.986667pt;}
.ye3{bottom:518.306667pt;}
.y22c{bottom:519.106667pt;}
.y43{bottom:519.586667pt;}
.y14e{bottom:520.066667pt;}
.y211{bottom:522.626667pt;}
.y16{bottom:525.346667pt;}
.y86{bottom:527.906667pt;}
.y69{bottom:528.546667pt;}
.y1f5{bottom:528.866667pt;}
.yf5{bottom:530.626667pt;}
.y12f{bottom:533.346667pt;}
.y249{bottom:536.066667pt;}
.y1e5{bottom:536.893333pt;}
.y79{bottom:538.653333pt;}
.yac{bottom:541.373333pt;}
.y1b7{bottom:543.293333pt;}
.y95{bottom:546.653333pt;}
.ye2{bottom:547.613333pt;}
.y42{bottom:548.386667pt;}
.y192{bottom:548.893333pt;}
.y151{bottom:549.373333pt;}
.y109{bottom:552.093333pt;}
.y210{bottom:552.893333pt;}
.y68{bottom:553.533333pt;}
.y15{bottom:554.146667pt;}
.yc6{bottom:554.653333pt;}
.y173{bottom:554.813333pt;}
.y1d7{bottom:557.373333pt;}
.y1f4{bottom:558.173333pt;}
.yf4{bottom:559.933333pt;}
.y12e{bottom:562.653333pt;}
.y17b{bottom:565.373333pt;}
.y1e4{bottom:566.173333pt;}
.y78{bottom:567.933333pt;}
.y23f{bottom:568.893333pt;}
.y124{bottom:570.653333pt;}
.y20f{bottom:572.413333pt;}
.ye1{bottom:576.893333pt;}
.y41{bottom:577.186667pt;}
.yab{bottom:577.213333pt;}
.y22b{bottom:577.693333pt;}
.y191{bottom:578.173333pt;}
.y150{bottom:578.653333pt;}
.y108{bottom:581.373333pt;}
.y14{bottom:582.946667pt;}
.y1b6{bottom:583.293333pt;}
.y94{bottom:586.653333pt;}
.y2b7{bottom:587.933333pt;}
.y1f3{bottom:588.413333pt;}
.yf3{bottom:589.373333pt;}
.y160{bottom:591.133333pt;}
.y12d{bottom:591.933333pt;}
.yc5{bottom:594.653333pt;}
.y77{bottom:597.213333pt;}
.y123{bottom:599.933333pt;}
.y40{bottom:606.013333pt;}
.y1e3{bottom:606.173333pt;}
.y85{bottom:607.933333pt;}
.y107{bottom:610.653333pt;}
.y13{bottom:611.773333pt;}
.y1b5{bottom:612.573333pt;}
.yaa{bottom:613.213333pt;}
.ye0{bottom:616.893333pt;}
.y2e3{bottom:617.213333pt;}
.y190{bottom:618.173333pt;}
.y149{bottom:618.653333pt;}
.y12c{bottom:621.373333pt;}
.y20e{bottom:622.173333pt;}
.yc4{bottom:623.933333pt;}
.y93{bottom:626.493333pt;}
.y22a{bottom:627.453333pt;}
.yf2{bottom:629.213333pt;}
.y3f{bottom:634.813333pt;}
.y1e2{bottom:635.453333pt;}
.y76{bottom:637.213333pt;}
.y23e{bottom:638.173333pt;}
.y106{bottom:639.933333pt;}
.y12{bottom:640.573333pt;}
.y20d{bottom:641.693333pt;}
.y2c9{bottom:645.853333pt;}
.ydf{bottom:646.173333pt;}
.y2c2{bottom:646.493333pt;}
.y229{bottom:646.973333pt;}
.y84{bottom:647.933333pt;}
.ya9{bottom:649.213333pt;}
.y15e{bottom:650.333333pt;}
.y12b{bottom:650.653333pt;}
.y1b4{bottom:652.573333pt;}
.yc3{bottom:653.213333pt;}
.y1d6{bottom:655.933333pt;}
.y23d{bottom:657.693333pt;}
.y18f{bottom:658.173333pt;}
.yf1{bottom:658.493333pt;}
.y67{bottom:661.213333pt;}
.y3e{bottom:663.613333pt;}
.y1e1{bottom:664.733333pt;}
.y75{bottom:666.493333pt;}
.y105{bottom:669.213333pt;}
.y11{bottom:669.373333pt;}
.y20c{bottom:671.933333pt;}
.y172{bottom:672.573333pt;}
.y83{bottom:677.213333pt;}
.y12a{bottom:679.933333pt;}
.yc2{bottom:682.493333pt;}
.ya8{bottom:685.213333pt;}
.y228{bottom:686.013333pt;}
.yde{bottom:686.173333pt;}
.y18e{bottom:687.453333pt;}
.y14d{bottom:687.933333pt;}
.y66{bottom:690.493333pt;}
.y20b{bottom:691.453333pt;}
.y3d{bottom:692.413333pt;}
.y1b3{bottom:692.573333pt;}
.y15c{bottom:692.893333pt;}
.y74{bottom:695.773333pt;}
.y23c{bottom:696.733333pt;}
.y10{bottom:698.333333pt;}
.yf0{bottom:698.493333pt;}
.y1e0{bottom:704.733333pt;}
.y92{bottom:706.493333pt;}
.y129{bottom:709.213333pt;}
.y20a{bottom:710.973333pt;}
.y248{bottom:711.773333pt;}
.y227{bottom:716.253333pt;}
.y82{bottom:717.213333pt;}
.y65{bottom:719.933333pt;}
.ya7{bottom:721.053333pt;}
.y3c{bottom:721.213333pt;}
.yc1{bottom:722.493333pt;}
.y1d5{bottom:725.053333pt;}
.ydd{bottom:726.173333pt;}
.yf{bottom:727.133333pt;}
.y18d{bottom:727.293333pt;}
.y170{bottom:727.453333pt;}
.yef{bottom:727.773333pt;}
.y209{bottom:730.493333pt;}
.y1b2{bottom:732.413333pt;}
.y1df{bottom:734.013333pt;}
.y2ce{bottom:734.333333pt;}
.y73{bottom:735.773333pt;}
.y104{bottom:738.493333pt;}
.y247{bottom:741.053333pt;}
.y81{bottom:746.493333pt;}
.y3b{bottom:747.293333pt;}
.y2ef{bottom:747.773333pt;}
.y64{bottom:749.213333pt;}
.yc0{bottom:751.773333pt;}
.ye{bottom:753.213333pt;}
.y226{bottom:755.293333pt;}
.ydc{bottom:755.453333pt;}
.y3a{bottom:756.573333pt;}
.y18c{bottom:756.733333pt;}
.ya6{bottom:757.053333pt;}
.y16f{bottom:759.453333pt;}
.y208{bottom:760.573333pt;}
.y1b1{bottom:761.853333pt;}
.yd{bottom:762.493333pt;}
.y1de{bottom:763.293333pt;}
.y284{bottom:763.613333pt;}
.y72{bottom:765.053333pt;}
.y39{bottom:767.773333pt;}
.y246{bottom:770.493333pt;}
.yc{bottom:773.693333pt;}
.y80{bottom:775.813333pt;}
.y63{bottom:778.533333pt;}
.y207{bottom:780.293333pt;}
.ybf{bottom:781.093333pt;}
.ydb{bottom:784.773333pt;}
.y225{bottom:785.573333pt;}
.y18b{bottom:786.053333pt;}
.yee{bottom:786.533333pt;}
.y1b0{bottom:791.173333pt;}
.y181{bottom:791.813333pt;}
.ya5{bottom:793.093333pt;}
.y71{bottom:794.373333pt;}
.y38{bottom:795.293333pt;}
.y103{bottom:797.093333pt;}
.y206{bottom:799.813333pt;}
.yb{bottom:801.213333pt;}
.y255{bottom:801.893333pt;}
.y1dd{bottom:804.133333pt;}
.y91{bottom:805.093333pt;}
.y62{bottom:807.813333pt;}
.ybe{bottom:810.373333pt;}
.yda{bottom:814.053333pt;}
.y18a{bottom:815.333333pt;}
.y37{bottom:815.653333pt;}
.y7d{bottom:815.813333pt;}
.ya{bottom:821.573333pt;}
.y26d{bottom:822.373333pt;}
.y224{bottom:824.613333pt;}
.y102{bottom:826.373333pt;}
.ya4{bottom:829.093333pt;}
.y205{bottom:829.893333pt;}
.y1af{bottom:831.013333pt;}
.y36{bottom:834.053333pt;}
.y70{bottom:834.373333pt;}
.y23b{bottom:835.333333pt;}
.y61{bottom:837.093333pt;}
.y9{bottom:839.973333pt;}
.y7c{bottom:845.093333pt;}
.y1ac{bottom:847.013333pt;}
.y204{bottom:849.413333pt;}
.ybd{bottom:850.373333pt;}
.y2cf{bottom:851.653333pt;}
.y35{bottom:852.453333pt;}
.yd9{bottom:854.053333pt;}
.y223{bottom:854.853333pt;}
.y189{bottom:855.333333pt;}
.y101{bottom:855.653333pt;}
.y8{bottom:858.373333pt;}
.ya3{bottom:864.933333pt;}
.y60{bottom:866.373333pt;}
.y203{bottom:868.933333pt;}
.y34{bottom:870.853333pt;}
.y6f{bottom:874.373333pt;}
.y7{bottom:876.773333pt;}
.y1ae{bottom:876.933333pt;}
.ybc{bottom:879.653333pt;}
.y2da{bottom:880.933333pt;}
.y254{bottom:882.373333pt;}
.yd8{bottom:883.333333pt;}
.y188{bottom:884.613333pt;}
.y7f{bottom:884.933333pt;}
.y33{bottom:889.253333pt;}
.y222{bottom:893.893333pt;}
.y6{bottom:895.173333pt;}
.y5f{bottom:895.653333pt;}
.y202{bottom:899.173333pt;}
.ya2{bottom:900.933333pt;}
.y6e{bottom:903.653333pt;}
.y1a9{bottom:908.133333pt;}
.ybb{bottom:908.933333pt;}
.y253{bottom:911.653333pt;}
.y187{bottom:913.893333pt;}
.y7e{bottom:914.373333pt;}
.y201{bottom:918.693333pt;}
.yd7{bottom:923.333333pt;}
.y221{bottom:924.133333pt;}
.y32{bottom:924.613333pt;}
.y5e{bottom:924.933333pt;}
.y5{bottom:930.533333pt;}
.y7b{bottom:932.933333pt;}
.ya1{bottom:936.933333pt;}
.yba{bottom:938.213333pt;}
.y31{bottom:943.013333pt;}
.y186{bottom:943.173333pt;}
.y6d{bottom:943.653333pt;}
.y4{bottom:948.933333pt;}
.yd6{bottom:952.453333pt;}
.y5d{bottom:954.213333pt;}
.y1c8{bottom:959.493333pt;}
.y23a{bottom:963.173333pt;}
.y30{bottom:966.053333pt;}
.y1ab{bottom:967.493333pt;}
.y3{bottom:971.973333pt;}
.y6c{bottom:972.933333pt;}
.y220{bottom:973.733333pt;}
.yb9{bottom:978.213333pt;}
.y185{bottom:980.773333pt;}
.yd5{bottom:982.693333pt;}
.y5c{bottom:983.493333pt;}
.y2f{bottom:987.973333pt;}
.y21f{bottom:993.413333pt;}
.y2{bottom:995.173333pt;}
.y2e{bottom:1003.813333pt;}
.yb8{bottom:1007.653333pt;}
.yd4{bottom:1012.000000pt;}
.y5b{bottom:1012.960000pt;}
.y1{bottom:1013.573333pt;}
.y2d{bottom:1018.373333pt;}
.h24{height:26.735625pt;}
.h14{height:29.280000pt;}
.h9{height:32.648438pt;}
.h13{height:32.800000pt;}
.h7{height:32.890957pt;}
.h10{height:34.374375pt;}
.ha{height:36.130938pt;}
.h4{height:40.048750pt;}
.hd{height:42.649687pt;}
.h5{height:43.531250pt;}
.h8{height:44.073883pt;}
.h1a{height:46.454062pt;}
.h25{height:48.812500pt;}
.h3{height:50.931562pt;}
.h11{height:52.834688pt;}
.hf{height:55.968750pt;}
.h15{height:58.560000pt;}
.h18{height:58.592000pt;}
.h22{height:58.720000pt;}
.h23{height:59.200000pt;}
.hc{height:63.656250pt;}
.h12{height:63.769687pt;}
.h6{height:65.296875pt;}
.he{height:65.531250pt;}
.h2{height:65.781915pt;}
.h1f{height:68.748750pt;}
.hb{height:72.697187pt;}
.h1e{height:76.671562pt;}
.h1d{height:87.840000pt;}
.h17{height:88.000000pt;}
.h16{height:88.032000pt;}
.h20{height:88.480000pt;}
.h1b{height:117.120000pt;}
.h1c{height:117.152000pt;}
.h19{height:117.280000pt;}
.h21{height:117.952000pt;}
.h2d{height:146.400000pt;}
.h34{height:146.426667pt;}
.h39{height:175.706667pt;}
.h40{height:204.960000pt;}
.h28{height:204.986667pt;}
.h30{height:205.146667pt;}
.h2e{height:234.266667pt;}
.h3b{height:234.426667pt;}
.h37{height:263.706667pt;}
.h2b{height:263.746667pt;}
.h35{height:292.986667pt;}
.h36{height:293.026667pt;}
.h29{height:293.186667pt;}
.h27{height:322.266667pt;}
.h38{height:351.546667pt;}
.h3e{height:351.746667pt;}
.h3f{height:380.826667pt;}
.h33{height:380.866667pt;}
.h26{height:381.026667pt;}
.h2a{height:410.106667pt;}
.h3c{height:410.146667pt;}
.h32{height:410.306667pt;}
.h31{height:439.426667pt;}
.h2f{height:468.706667pt;}
.h2c{height:497.986667pt;}
.h3d{height:498.146667pt;}
.h3a{height:527.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:45.440000pt;}
.wb{width:92.160000pt;}
.wd{width:97.760000pt;}
.w14{width:127.712000pt;}
.w18{width:130.080000pt;}
.w15{width:130.112000pt;}
.w13{width:139.200000pt;}
.w11{width:139.706667pt;}
.w10{width:141.120000pt;}
.w17{width:141.146667pt;}
.w9{width:143.840000pt;}
.wf{width:144.986667pt;}
.w5{width:150.266667pt;}
.w12{width:152.986667pt;}
.wc{width:160.506667pt;}
.w16{width:172.826667pt;}
.wa{width:177.026667pt;}
.w19{width:177.466667pt;}
.w7{width:282.426667pt;}
.w8{width:282.626667pt;}
.w4{width:348.866667pt;}
.w6{width:469.026667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.880000pt;}
.x16{left:9.440000pt;}
.x1c{left:96.832000pt;}
.x15{left:103.552000pt;}
.x17{left:106.592000pt;}
.x1{left:113.471988pt;}
.x23{left:116.831988pt;}
.x12{left:117.791988pt;}
.x9{left:129.471988pt;}
.x13{left:137.466655pt;}
.xc{left:142.266655pt;}
.xa{left:145.466655pt;}
.x14{left:161.466655pt;}
.xd{left:166.266655pt;}
.xe{left:190.266655pt;}
.x20{left:195.226667pt;}
.x21{left:238.106643pt;}
.x1d{left:241.306667pt;}
.x22{left:243.546655pt;}
.x26{left:246.426667pt;}
.x29{left:248.386667pt;}
.x24{left:252.226667pt;}
.x19{left:257.506667pt;}
.x2{left:274.146655pt;}
.x11{left:305.506655pt;}
.x3{left:321.506655pt;}
.x6{left:357.506655pt;}
.x27{left:374.786667pt;}
.x2a{left:379.106667pt;}
.xb{left:387.746655pt;}
.x8{left:389.666655pt;}
.x7{left:391.426655pt;}
.x4{left:393.186655pt;}
.x5{left:396.866655pt;}
.x1e{left:418.973333pt;}
.xf{left:447.453310pt;}
.x10{left:452.893322pt;}
.x1a{left:469.853310pt;}
.x1b{left:475.293322pt;}
.x28{left:505.533333pt;}
.x1f{left:511.773333pt;}
.x25{left:534.333333pt;}
.x2b{left:557.213333pt;}
}




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