
    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_50374727de849fcf3020d7d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_3df816e59d0018afa5358520.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_617ddc3fb96d061aa3e71898.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9f0ce135391acda661ea67d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_c1e9aa8a25a9a5c4e72a1c4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_fb25b2c4f98b8ae34bbf9335.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c86adfda87d7ad1eefa34cec.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5d4e5e708983f7bc8675c440.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dbabadcb8b46c41e3d97be9d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_cf9ca34873d3be5b90b1c9c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_6fe9225d7ad7548665455f1b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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_f8bbde26022c9295bd024aea.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_d5fc69f52f65392103bdbc27.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_42631ff546164ba346d851f9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_76573d1112b8bfff07adc1c1.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls26{letter-spacing:-4.896000px;}
.ls1{letter-spacing:-2.760420px;}
.ls24{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.234000px;}
.ls14{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.153600px;}
.ls5{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.139800px;}
.ls25{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.018000px;}
.lsc{letter-spacing:-0.013320px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018000px;}
.ls22{letter-spacing:0.026640px;}
.ls2{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.090600px;}
.ls12{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.252000px;}
.ls1e{letter-spacing:0.261000px;}
.ls16{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.378000px;}
.ls20{letter-spacing:0.414000px;}
.ls18{letter-spacing:0.468000px;}
.ls19{letter-spacing:0.504000px;}
.ls13{letter-spacing:1.278000px;}
.lse{letter-spacing:1.386000px;}
.ls17{letter-spacing:44.424000px;}
.ls8{letter-spacing:63.864000px;}
.ls6{letter-spacing:844.104000px;}
.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;}
}
.ws17{word-spacing:-72.000000px;}
.ws18{word-spacing:-54.000000px;}
.wsb{word-spacing:-34.712640px;}
.ws0{word-spacing:-33.326640px;}
.ws12{word-spacing:-27.999360px;}
.ws5{word-spacing:-26.721360px;}
.ws6{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws8{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.ws13{word-spacing:-19.800000px;}
.ws16{word-spacing:-18.864000px;}
.ws2{word-spacing:-18.405240px;}
.ws22{word-spacing:-17.928000px;}
.ws1f{word-spacing:-17.766000px;}
.ws23{word-spacing:-17.694000px;}
.ws20{word-spacing:-17.568000px;}
.ws1d{word-spacing:-17.514000px;}
.ws21{word-spacing:-17.406000px;}
.ws9{word-spacing:-16.766640px;}
.ws25{word-spacing:-16.740000px;}
.ws24{word-spacing:-16.713360px;}
.wsa{word-spacing:-16.700040px;}
.ws26{word-spacing:-16.573560px;}
.ws7{word-spacing:-16.559760px;}
.ws11{word-spacing:-16.362000px;}
.ws14{word-spacing:-16.254000px;}
.ws1b{word-spacing:-15.264000px;}
.ws1a{word-spacing:-15.228000px;}
.ws15{word-spacing:-15.138000px;}
.ws19{word-spacing:-15.120000px;}
.ws1c{word-spacing:-15.030000px;}
.wsd{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.994000px;}
.wsf{word-spacing:-14.904000px;}
.ws10{word-spacing:-14.868000px;}
.wse{word-spacing:-14.778000px;}
.ws1e{word-spacing:-11.709360px;}
.ws1{word-spacing:0.000000px;}
._1e{margin-left:-28.078560px;}
._18{margin-left:-19.032000px;}
._12{margin-left:-18.024000px;}
._1a{margin-left:-17.016000px;}
._16{margin-left:-15.984960px;}
._17{margin-left:-14.980200px;}
._13{margin-left:-13.512000px;}
._19{margin-left:-12.408000px;}
._14{margin-left:-10.632000px;}
._1c{margin-left:-9.456000px;}
._15{margin-left:-8.345040px;}
._6{margin-left:-7.312680px;}
._1b{margin-left:-5.352000px;}
._10{margin-left:-4.104000px;}
._a{margin-left:-2.376000px;}
._0{margin-left:-1.022040px;}
._3{width:1.193520px;}
._5{width:2.233560px;}
._1f{width:3.388680px;}
._7{width:4.463040px;}
._11{width:5.620800px;}
._21{width:6.696000px;}
._f{width:8.352000px;}
._31{width:9.354120px;}
._e{width:10.416000px;}
._4{width:12.078720px;}
._d{width:13.176000px;}
._22{width:15.120000px;}
._9{width:16.776000px;}
._2a{width:17.784000px;}
._24{width:18.806040px;}
._42{width:19.922760px;}
._29{width:21.096000px;}
._2c{width:22.262040px;}
._23{width:23.544000px;}
._2d{width:24.552000px;}
._2e{width:25.662480px;}
._25{width:27.648000px;}
._2b{width:28.800000px;}
._33{width:30.000000px;}
._5e{width:31.543920px;}
._3c{width:32.544000px;}
._43{width:34.749360px;}
._45{width:36.913680px;}
._5c{width:38.116080px;}
._40{width:41.963760px;}
._41{width:43.106040px;}
._20{width:44.424000px;}
._3b{width:45.576000px;}
._8{width:47.313360px;}
._5f{width:48.336480px;}
._6a{width:49.478760px;}
._66{width:50.801400px;}
._6b{width:52.579440px;}
._67{width:53.592480px;}
._36{width:54.864000px;}
._4b{width:55.877040px;}
._70{width:57.414600px;}
._5d{width:59.158080px;}
._27{width:60.264000px;}
._28{width:61.272000px;}
._64{width:63.116280px;}
._4c{width:64.548480px;}
._55{width:66.761280px;}
._3a{width:68.148000px;}
._6c{width:69.845400px;}
._26{width:71.136000px;}
._47{width:73.947600px;}
._4e{width:75.089880px;}
._51{width:78.636960px;}
._2f{width:79.670880px;}
._30{width:81.921960px;}
._52{width:85.250160px;}
._4d{width:86.753160px;}
._3e{width:88.436520px;}
._6f{width:90.068040px;}
._2{width:91.494360px;}
._1{width:93.046800px;}
._4f{width:94.208040px;}
._68{width:95.831280px;}
._50{width:98.476560px;}
._6d{width:100.039680px;}
._35{width:107.712000px;}
._59{width:115.129800px;}
._60{width:125.951400px;}
._72{width:138.336120px;}
._74{width:140.199840px;}
._5b{width:141.943320px;}
._46{width:143.887080px;}
._44{width:145.730880px;}
._6e{width:151.682760px;}
._71{width:154.989360px;}
._63{width:158.175720px;}
._34{width:159.552000px;}
._39{width:161.784000px;}
._48{width:164.668680px;}
._53{width:165.931200px;}
._b{width:172.473120px;}
._4a{width:175.249800px;}
._57{width:181.742760px;}
._5a{width:184.979880px;}
._49{width:194.969160px;}
._54{width:198.456120px;}
._c{width:202.412880px;}
._56{width:204.768720px;}
._73{width:210.239640px;}
._69{width:214.207560px;}
._62{width:218.115360px;}
._61{width:227.133360px;}
._58{width:238.075200px;}
._65{width:271.682280px;}
._3d{width:312.082920px;}
._3f{width:328.074840px;}
._1d{width:844.104000px;}
._37{width:966.024000px;}
._32{width:1389.504000px;}
._38{width:1584.384000px;}
.fca{color:rgb(5,99,193);}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(7,62,135);}
.fc6{color:rgb(33,116,54);}
.fc4{color:transparent;}
.fcb{color:rgb(17,85,204);}
.fc7{color:rgb(82,104,20);}
.fc2{color:rgb(243,149,120);}
.fcc{color:rgb(74,74,74);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(38,38,38);}
.fs9{font-size:6.120000px;}
.fsb{font-size:42.120000px;}
.fs4{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fsa{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs6{font-size:69.120000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.fs7{font-size:96.120000px;}
.fs2{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.yae{bottom:0.000092px;}
.ydd{bottom:2.880000px;}
.y2ac{bottom:2.910000px;}
.ye0{bottom:2.970000px;}
.ybf{bottom:4.950000px;}
.y15d{bottom:9.120000px;}
.y2a6{bottom:11.100000px;}
.y30f{bottom:11.790000px;}
.y319{bottom:11.880000px;}
.ybc{bottom:12.690000px;}
.y27d{bottom:12.870000px;}
.ye2{bottom:13.140000px;}
.ye8{bottom:13.230000px;}
.y153{bottom:13.320000px;}
.ye5{bottom:13.410000px;}
.yc7{bottom:13.590000px;}
.y18{bottom:14.130000px;}
.y14{bottom:14.160000px;}
.y175{bottom:14.310000px;}
.yd6{bottom:14.670000px;}
.y22f{bottom:14.850000px;}
.y35{bottom:15.210000px;}
.y14e{bottom:15.300000px;}
.yc4{bottom:15.390000px;}
.y172{bottom:15.750000px;}
.yc1{bottom:16.380000px;}
.ycb{bottom:16.470000px;}
.y108{bottom:16.560000px;}
.y179{bottom:16.920000px;}
.y10f{bottom:17.730000px;}
.y177{bottom:17.820000px;}
.ydf{bottom:18.450000px;}
.ydc{bottom:18.480000px;}
.y150{bottom:18.990000px;}
.y24c{bottom:19.980000px;}
.y158{bottom:20.070000px;}
.ycf{bottom:20.340000px;}
.ybd{bottom:20.430000px;}
.y2c2{bottom:20.790000px;}
.y2cf{bottom:20.880000px;}
.ye3{bottom:23.310000px;}
.ye9{bottom:23.490000px;}
.yd3{bottom:23.580000px;}
.ye6{bottom:23.940000px;}
.y2dc{bottom:24.030000px;}
.yc8{bottom:24.120000px;}
.y139{bottom:24.570000px;}
.y15c{bottom:24.690000px;}
.y155{bottom:25.380000px;}
.y10c{bottom:25.560000px;}
.y105{bottom:25.590000px;}
.y16c{bottom:25.680000px;}
.yd7{bottom:26.400000px;}
.y16f{bottom:26.460000px;}
.yc5{bottom:27.810000px;}
.ybb{bottom:28.260000px;}
.y27c{bottom:28.350000px;}
.y152{bottom:28.890000px;}
.y174{bottom:29.790000px;}
.yc2{bottom:29.880000px;}
.ycc{bottom:29.970000px;}
.y13c{bottom:30.600000px;}
.y171{bottom:31.320000px;}
.y107{bottom:32.220000px;}
.y1c6{bottom:33.930000px;}
.ydb{bottom:33.960000px;}
.y11{bottom:34.020000px;}
.y280{bottom:34.050000px;}
.y157{bottom:35.640000px;}
.yce{bottom:35.910000px;}
.ybe{bottom:36.000000px;}
.y2c1{bottom:36.450000px;}
.y322{bottom:37.620000px;}
.y30e{bottom:37.710000px;}
.y318{bottom:37.740000px;}
.yba{bottom:37.980000px;}
.yd2{bottom:39.150000px;}
.y10a{bottom:39.330000px;}
.y2db{bottom:39.600000px;}
.y15b{bottom:40.170000px;}
.yf1{bottom:41.490000px;}
.y23f{bottom:41.579908px;}
.y16e{bottom:41.940000px;}
.y27b{bottom:43.920000px;}
.y17{bottom:45.180000px;}
.yb1{bottom:45.629908px;}
.y5{bottom:45.630000px;}
.y22e{bottom:47.790000px;}
.y24a{bottom:49.410000px;}
.y2ab{bottom:49.440000px;}
.y1c5{bottom:49.500000px;}
.yda{bottom:49.530000px;}
.y2c0{bottom:51.930000px;}
.y2ce{bottom:52.020000px;}
.yd0{bottom:53.370000px;}
.y2da{bottom:55.080000px;}
.y15a{bottom:55.740000px;}
.y27a{bottom:59.400000px;}
.yd4{bottom:59.760000px;}
.y30d{bottom:63.540000px;}
.y333{bottom:63.570000px;}
.y31f{bottom:63.630000px;}
.y317{bottom:63.660000px;}
.y249{bottom:64.980000px;}
.yd9{bottom:65.010000px;}
.y1cc{bottom:65.070000px;}
.y27f{bottom:65.100000px;}
.yf0{bottom:67.320000px;}
.y23e{bottom:67.409908px;}
.y2bf{bottom:67.500000px;}
.y2d9{bottom:70.650000px;}
.y4{bottom:71.460000px;}
.yb0{bottom:71.549908px;}
.y16{bottom:76.230000px;}
.y251{bottom:78.210000px;}
.y248{bottom:80.460000px;}
.y19d{bottom:80.490000px;}
.y1cb{bottom:80.550000px;}
.y259{bottom:80.580000px;}
.y2be{bottom:82.980000px;}
.y2cd{bottom:83.070000px;}
.y2d8{bottom:86.160000px;}
.y321{bottom:89.370000px;}
.y343{bottom:89.400000px;}
.y31c{bottom:89.460000px;}
.y316{bottom:89.490000px;}
.yd5{bottom:90.090000px;}
.y156{bottom:90.630000px;}
.y250{bottom:93.690000px;}
.y327{bottom:94.140000px;}
.y102{bottom:94.410000px;}
.y32f{bottom:94.860000px;}
.y340{bottom:95.670000px;}
.y247{bottom:96.030000px;}
.y271{bottom:96.060000px;}
.y1ca{bottom:96.120000px;}
.y258{bottom:96.150000px;}
.y28b{bottom:97.020000px;}
.y3{bottom:97.380000px;}
.y379{bottom:97.650000px;}
.y293{bottom:97.830000px;}
.y2fe{bottom:97.920000px;}
.y276{bottom:98.550000px;}
.y2a0{bottom:99.270000px;}
.y29b{bottom:100.800000px;}
.y1bb{bottom:104.130000px;}
.y18c{bottom:105.120000px;}
.y2a5{bottom:105.210000px;}
.y1c3{bottom:105.300000px;}
.y210{bottom:105.570000px;}
.y1fd{bottom:105.930000px;}
.y24f{bottom:109.260000px;}
.y309{bottom:109.440000px;}
.y135{bottom:109.980000px;}
.y246{bottom:111.510000px;}
.y288{bottom:111.540000px;}
.y1c9{bottom:111.600000px;}
.y257{bottom:111.630000px;}
.y2bd{bottom:114.030000px;}
.y2aa{bottom:114.120000px;}
.y2d4{bottom:114.840000px;}
.y31b{bottom:115.290000px;}
.y338{bottom:115.320000px;}
.y324{bottom:115.380000px;}
.y315{bottom:115.410000px;}
.y282{bottom:119.010000px;}
.yad{bottom:119.970000px;}
.y7d{bottom:120.420000px;}
.y33d{bottom:120.810000px;}
.y1c2{bottom:122.940000px;}
.y24e{bottom:124.740000px;}
.y1a2{bottom:125.550000px;}
.y378{bottom:126.990000px;}
.y245{bottom:127.080000px;}
.y270{bottom:127.110000px;}
.y1c8{bottom:127.170000px;}
.y256{bottom:127.200000px;}
.y2c3{bottom:127.650000px;}
.y218{bottom:128.430000px;}
.y101{bottom:129.150000px;}
.y382{bottom:129.330000px;}
.y2bc{bottom:129.600000px;}
.y2a4{bottom:129.630000px;}
.y25d{bottom:129.720000px;}
.yd1{bottom:129.810000px;}
.y275{bottom:130.350000px;}
.y5b{bottom:134.640000px;}
.y11b{bottom:134.910000px;}
.y1ba{bottom:135.180000px;}
.y18b{bottom:136.080000px;}
.y20f{bottom:136.620000px;}
.y1fc{bottom:136.980000px;}
.y35f{bottom:137.430000px;}
.y1c1{bottom:139.230000px;}
.y154{bottom:139.590000px;}
.y24d{bottom:140.310000px;}
.y308{bottom:140.490000px;}
.y32e{bottom:141.120000px;}
.y342{bottom:141.150000px;}
.y326{bottom:141.210000px;}
.y314{bottom:141.240000px;}
.y2f{bottom:142.380000px;}
.y244{bottom:142.560000px;}
.y292{bottom:142.650000px;}
.y255{bottom:142.680000px;}
.y1a1{bottom:143.190000px;}
.y28a{bottom:144.390000px;}
.y134{bottom:144.900000px;}
.y2bb{bottom:145.080000px;}
.y2cc{bottom:145.170000px;}
.y2af{bottom:145.920000px;}
.y325{bottom:146.640000px;}
.y32d{bottom:147.450000px;}
.y2ef{bottom:149.220000px;}
.yac{bottom:151.020000px;}
.y7c{bottom:151.470000px;}
.y31d{bottom:151.950000px;}
.y377{bottom:152.100000px;}
.y1c0{bottom:155.520000px;}
.y229{bottom:156.510000px;}
.y243{bottom:158.130000px;}
.y26f{bottom:158.160000px;}
.y291{bottom:158.220000px;}
.y254{bottom:158.250000px;}
.y1a0{bottom:159.480000px;}
.y381{bottom:160.380000px;}
.y2ba{bottom:160.650000px;}
.y1dd{bottom:161.280000px;}
.y25c{bottom:161.580000px;}
.y373{bottom:161.640000px;}
.y1b9{bottom:166.500000px;}
.y33c{bottom:167.040000px;}
.y32c{bottom:167.070000px;}
.y18a{bottom:167.130000px;}
.y313{bottom:167.160000px;}
.y35e{bottom:168.480000px;}
.y1fb{bottom:169.200000px;}
.y11a{bottom:169.740000px;}
.y307{bottom:169.830000px;}
.y2f9{bottom:171.360000px;}
.y345{bottom:173.280000px;}
.y242{bottom:173.610000px;}
.y29d{bottom:173.700000px;}
.y253{bottom:173.730000px;}
.y20e{bottom:175.500000px;}
.y19f{bottom:175.680000px;}
.y2b9{bottom:176.130000px;}
.y2cb{bottom:176.220000px;}
.y2e7{bottom:176.850000px;}
.y274{bottom:177.690000px;}
.y151{bottom:178.290000px;}
.y2ee{bottom:178.470000px;}
.y2e{bottom:178.830000px;}
.yd{bottom:181.890000px;}
.yab{bottom:182.070000px;}
.y7b{bottom:182.520000px;}
.y2a8{bottom:189.180000px;}
.y26e{bottom:189.210000px;}
.y5a{bottom:190.440000px;}
.y217{bottom:190.530000px;}
.y380{bottom:191.430000px;}
.y2b8{bottom:191.700000px;}
.y1f1{bottom:191.880000px;}
.y1dc{bottom:192.330000px;}
.y2a9{bottom:192.450000px;}
.y372{bottom:192.690000px;}
.y341{bottom:192.900000px;}
.y329{bottom:192.960000px;}
.y312{bottom:192.990000px;}
.y2d2{bottom:193.260000px;}
.y1bf{bottom:193.770000px;}
.y16b{bottom:195.030000px;}
.y228{bottom:195.390000px;}
.y2f8{bottom:196.470000px;}
.y1fa{bottom:196.560000px;}
.y306{bottom:197.010000px;}
.y1b8{bottom:197.550000px;}
.y189{bottom:198.180000px;}
.y332{bottom:198.390000px;}
.y304{bottom:199.080000px;}
.y35d{bottom:199.530000px;}
.ycd{bottom:204.420000px;}
.y2d3{bottom:204.660000px;}
.y2b1{bottom:204.750000px;}
.y26d{bottom:204.780000px;}
.y2ed{bottom:205.650000px;}
.y2e6{bottom:206.190000px;}
.y2b7{bottom:207.180000px;}
.y290{bottom:207.210000px;}
.y2ca{bottom:207.270000px;}
.y2a3{bottom:208.020000px;}
.y25b{bottom:208.830000px;}
.y1db{bottom:210.060000px;}
.y20d{bottom:212.940000px;}
.yaa{bottom:213.120000px;}
.y7a{bottom:213.570000px;}
.y2d{bottom:215.280000px;}
.yc{bottom:218.070000px;}
.y344{bottom:218.790000px;}
.y32b{bottom:218.820000px;}
.y311{bottom:218.910000px;}
.y2b0{bottom:220.230000px;}
.y26c{bottom:220.260000px;}
.y14f{bottom:220.500000px;}
.y37f{bottom:220.770000px;}
.y216{bottom:221.580000px;}
.y305{bottom:222.120000px;}
.y2b6{bottom:222.750000px;}
.y1f0{bottom:222.930000px;}
.y19e{bottom:223.020000px;}
.y371{bottom:223.740000px;}
.y273{bottom:225.030000px;}
.y303{bottom:226.260000px;}
.y1b7{bottom:228.510000px;}
.y188{bottom:229.230000px;}
.y227{bottom:230.220000px;}
.y35c{bottom:230.580000px;}
.y2ec{bottom:230.760000px;}
.y1be{bottom:231.210000px;}
.y2e5{bottom:233.370000px;}
.y16a{bottom:233.910000px;}
.y59{bottom:234.270000px;}
.y26b{bottom:235.830000px;}
.y2b5{bottom:238.230000px;}
.y2c9{bottom:238.320000px;}
.y29f{bottom:239.790000px;}
.ya9{bottom:244.170000px;}
.y79{bottom:244.620000px;}
.y33f{bottom:244.650000px;}
.y348{bottom:244.710000px;}
.y20c{bottom:247.860000px;}
.y337{bottom:250.140000px;}
.y1ef{bottom:250.200000px;}
.y26a{bottom:251.310000px;}
.y2c{bottom:251.730000px;}
.y215{bottom:252.630000px;}
.y14d{bottom:252.810000px;}
.y302{bottom:253.440000px;}
.y2b4{bottom:253.800000px;}
.yb{bottom:254.340000px;}
.y370{bottom:254.790000px;}
.y19c{bottom:254.880000px;}
.y25a{bottom:256.170000px;}
.y2e4{bottom:258.480000px;}
.y1b6{bottom:259.830000px;}
.y35b{bottom:261.630000px;}
.y1bd{bottom:266.040000px;}
.y269{bottom:266.880000px;}
.y187{bottom:268.200000px;}
.y169{bottom:268.830000px;}
.y2b3{bottom:269.280000px;}
.y2c8{bottom:269.370000px;}
.y347{bottom:270.570000px;}
.yca{bottom:272.640000px;}
.y1da{bottom:272.880000px;}
.y37e{bottom:272.970000px;}
.ya8{bottom:275.220000px;}
.y78{bottom:275.670000px;}
.y58{bottom:278.220000px;}
.y301{bottom:278.580000px;}
.y31a{bottom:282.090000px;}
.y268{bottom:282.360000px;}
.y2c7{bottom:284.850000px;}
.y289{bottom:284.880000px;}
.y36f{bottom:285.870000px;}
.y272{bottom:287.850000px;}
.y2b{bottom:288.210000px;}
.y1d9{bottom:289.200000px;}
.y281{bottom:290.460000px;}
.ya{bottom:290.550000px;}
.y1b5{bottom:290.910000px;}
.y214{bottom:291.630000px;}
.y35a{bottom:292.710000px;}
.y346{bottom:296.490000px;}
.y267{bottom:297.930000px;}
.y2c6{bottom:300.420000px;}
.y298{bottom:301.170000px;}
.y2a2{bottom:301.890000px;}
.y323{bottom:302.610000px;}
.y186{bottom:302.970000px;}
.y32a{bottom:303.420000px;}
.y14c{bottom:303.510000px;}
.y57{bottom:304.050000px;}
.y1d8{bottom:305.490000px;}
.ya7{bottom:306.300000px;}
.y77{bottom:306.750000px;}
.y266{bottom:313.410000px;}
.y2c5{bottom:315.930000px;}
.y36e{bottom:316.920000px;}
.yc9{bottom:317.460000px;}
.y1b4{bottom:321.960000px;}
.y359{bottom:323.760000px;}
.y2a{bottom:324.660000px;}
.y213{bottom:326.370000px;}
.y9{bottom:326.820000px;}
.y265{bottom:328.980000px;}
.y2c4{bottom:331.500000px;}
.y25e{bottom:335.190000px;}
.ya6{bottom:337.350000px;}
.y76{bottom:337.800000px;}
.y14b{bottom:342.120000px;}
.y264{bottom:344.460000px;}
.y36d{bottom:347.970000px;}
.y252{bottom:350.040000px;}
.y56{bottom:350.220000px;}
.y1d7{bottom:352.740000px;}
.y1b3{bottom:353.010000px;}
.y331{bottom:354.360000px;}
.y358{bottom:354.810000px;}
.y263{bottom:360.030000px;}
.y29{bottom:361.200000px;}
.yc6{bottom:362.190000px;}
.y8{bottom:363.000000px;}
.y29e{bottom:364.710000px;}
.ya5{bottom:368.400000px;}
.y75{bottom:368.850000px;}
.y19b{bottom:370.740000px;}
.y14a{bottom:373.170000px;}
.y262{bottom:375.510000px;}
.y28f{bottom:378.750000px;}
.y36c{bottom:379.020000px;}
.y2ae{bottom:379.470000px;}
.y1b2{bottom:384.060000px;}
.y357{bottom:385.860000px;}
.y196{bottom:390.360000px;}
.y261{bottom:391.080000px;}
.y100{bottom:391.170000px;}
.y74{bottom:392.610000px;}
.y287{bottom:394.320000px;}
.y28{bottom:397.650000px;}
.ya4{bottom:399.450000px;}
.y1ee{bottom:400.080000px;}
.y27e{bottom:400.620000px;}
.yc3{bottom:401.160000px;}
.y149{bottom:404.220000px;}
.y11e{bottom:405.930000px;}
.y55{bottom:406.020000px;}
.y336{bottom:406.110000px;}
.y260{bottom:406.560000px;}
.y19a{bottom:408.180000px;}
.y36b{bottom:410.070000px;}
.y2a1{bottom:411.330000px;}
.y29a{bottom:412.050000px;}
.y310{bottom:412.140000px;}
.y1b1{bottom:415.110000px;}
.y356{bottom:416.910000px;}
.y7{bottom:418.260000px;}
.y195{bottom:421.410000px;}
.y25f{bottom:422.160000px;}
.y226{bottom:422.850000px;}
.y73{bottom:423.660000px;}
.y2f6{bottom:427.350000px;}
.yff{bottom:429.690000px;}
.y34e{bottom:429.869908px;}
.ya3{bottom:430.500000px;}
.y1ed{bottom:431.130000px;}
.y349{bottom:432.780000px;}
.y27{bottom:434.100000px;}
.y148{bottom:435.270000px;}
.y199{bottom:437.340000px;}
.y11d{bottom:440.760000px;}
.y36a{bottom:441.120000px;}
.y28e{bottom:441.600000px;}
.yc0{bottom:443.850000px;}
.y355{bottom:447.960000px;}
.y1b0{bottom:449.490000px;}
.y54{bottom:449.850000px;}
.y194{bottom:452.460000px;}
.y1d6{bottom:453.090000px;}
.y72{bottom:454.710000px;}
.y2f5{bottom:456.690000px;}
.y33a{bottom:458.700000px;}
.y34d{bottom:460.949908px;}
.ya2{bottom:461.550000px;}
.y147{bottom:466.320000px;}
.y1af{bottom:467.130000px;}
.y6{bottom:470.010000px;}
.y26{bottom:470.550000px;}
.y2d5{bottom:471.299908px;}
.y2f3{bottom:472.170000px;}
.y2b2{bottom:472.470000px;}
.y297{bottom:472.650000px;}
.y1ec{bottom:474.150000px;}
.y2d1{bottom:474.180000px;}
.y223{bottom:474.690000px;}
.y133{bottom:474.870000px;}
.y354{bottom:479.010000px;}
.y2f4{bottom:481.800000px;}
.y1ae{bottom:483.420000px;}
.y193{bottom:483.510000px;}
.y20b{bottom:484.140000px;}
.y33b{bottom:484.530000px;}
.y71{bottom:485.760000px;}
.yb9{bottom:488.580000px;}
.y2a7{bottom:488.940000px;}
.y1d5{bottom:490.620000px;}
.y34c{bottom:491.999908px;}
.ya1{bottom:492.600000px;}
.y53{bottom:493.770000px;}
.y119{bottom:495.570000px;}
.y146{bottom:497.370000px;}
.y1ad{bottom:499.710000px;}
.y2f2{bottom:501.510000px;}
.y369{bottom:503.220000px;}
.y1eb{bottom:505.200000px;}
.y222{bottom:505.740000px;}
.y132{bottom:505.830000px;}
.y25{bottom:507.000000px;}
.y2{bottom:507.720000px;}
.y34b{bottom:509.640000px;}
.y353{bottom:510.060000px;}
.y279{bottom:510.090000px;}
.y320{bottom:510.450000px;}
.y192{bottom:514.560000px;}
.y20a{bottom:515.190000px;}
.y70{bottom:516.810000px;}
.y34f{bottom:518.250000px;}
.y286{bottom:519.270000px;}
.y2fd{bottom:519.690000px;}
.y29c{bottom:520.710000px;}
.ya0{bottom:523.650000px;}
.y118{bottom:526.620000px;}
.y1d4{bottom:527.880000px;}
.y145{bottom:528.420000px;}
.y2f1{bottom:528.690000px;}
.y368{bottom:534.180000px;}
.y1ea{bottom:536.340000px;}
.y221{bottom:536.790000px;}
.y131{bottom:536.880000px;}
.y328{bottom:537.000000px;}
.y241{bottom:537.180000px;}
.y1ac{bottom:537.960000px;}
.y52{bottom:539.940000px;}
.y352{bottom:541.110000px;}
.y24{bottom:543.540000px;}
.y191{bottom:545.610000px;}
.y209{bottom:546.240000px;}
.y6f{bottom:547.860000px;}
.yea{bottom:548.519908px;}
.y2fc{bottom:549.030000px;}
.y1d3{bottom:549.120000px;}
.y2ad{bottom:551.040000px;}
.y2d0{bottom:552.570000px;}
.y2f0{bottom:553.800000px;}
.y9f{bottom:554.700000px;}
.y117{bottom:557.670000px;}
.y144{bottom:559.470000px;}
.y335{bottom:562.110000px;}
.y33e{bottom:562.920000px;}
.yb8{bottom:563.369908px;}
.ye7{bottom:563.460000px;}
.y367{bottom:565.230000px;}
.y296{bottom:566.610000px;}
.y23{bottom:567.570000px;}
.y220{bottom:567.840000px;}
.y130{bottom:567.930000px;}
.y1e9{bottom:568.560000px;}
.y351{bottom:572.160000px;}
.y1ab{bottom:575.400000px;}
.y2fb{bottom:576.210000px;}
.y190{bottom:576.660000px;}
.y208{bottom:577.290000px;}
.y300{bottom:577.380000px;}
.y6e{bottom:578.910000px;}
.y28d{bottom:582.090000px;}
.y278{bottom:582.810000px;}
.y116{bottom:588.720000px;}
.y143{bottom:590.520000px;}
.y51{bottom:595.650000px;}
.y366{bottom:596.280000px;}
.y285{bottom:597.660000px;}
.y1d2{bottom:598.710000px;}
.y21f{bottom:598.890000px;}
.y12f{bottom:598.980000px;}
.y22{bottom:599.340000px;}
.y1e8{bottom:600.780000px;}
.y2fa{bottom:601.050000px;}
.ye4{bottom:601.800000px;}
.yb7{bottom:601.979908px;}
.y350{bottom:603.210000px;}
.y9e{bottom:603.750000px;}
.y1aa{bottom:604.470000px;}
.y376{bottom:605.010000px;}
.y18f{bottom:607.710000px;}
.y6d{bottom:609.960000px;}
.y339{bottom:614.670000px;}
.y207{bottom:616.170000px;}
.y225{bottom:617.700000px;}
.y115{bottom:619.770000px;}
.y142{bottom:621.570000px;}
.y365{bottom:627.330000px;}
.y28c{bottom:629.430000px;}
.y2ff{bottom:629.670000px;}
.y1d1{bottom:629.760000px;}
.y21e{bottom:629.940000px;}
.y12e{bottom:630.030000px;}
.y277{bottom:630.150000px;}
.yfe{bottom:630.480000px;}
.y21{bottom:631.110000px;}
.y1e7{bottom:631.830000px;}
.yb6{bottom:633.029908px;}
.y375{bottom:634.350000px;}
.y9d{bottom:634.800000px;}
.y50{bottom:639.480000px;}
.y34a{bottom:639.780000px;}
.y31e{bottom:640.500000px;}
.ye1{bottom:640.590000px;}
.y6c{bottom:641.010000px;}
.y168{bottom:641.460000px;}
.y295{bottom:644.910000px;}
.y30c{bottom:645.810000px;}
.y18e{bottom:646.590000px;}
.y114{bottom:650.730000px;}
.y206{bottom:651.000000px;}
.y2eb{bottom:652.170000px;}
.y141{bottom:652.530000px;}
.y1bc{bottom:652.800000px;}
.y8e{bottom:655.950000px;}
.y364{bottom:658.380000px;}
.y374{bottom:659.460000px;}
.y284{bottom:660.480000px;}
.y1d0{bottom:660.810000px;}
.y21d{bottom:660.990000px;}
.y12d{bottom:661.080000px;}
.yfd{bottom:661.530000px;}
.y1e6{bottom:662.880000px;}
.y20{bottom:662.970000px;}
.yb5{bottom:664.079908px;}
.y9c{bottom:665.850000px;}
.y330{bottom:666.420000px;}
.y1f9{bottom:667.650000px;}
.y6b{bottom:672.060000px;}
.y167{bottom:672.510000px;}
.y8d{bottom:673.590000px;}
.yde{bottom:678.750000px;}
.y18d{bottom:681.450000px;}
.y2ea{bottom:681.540000px;}
.y113{bottom:681.810000px;}
.y4f{bottom:683.430000px;}
.y140{bottom:683.610000px;}
.y363{bottom:689.460000px;}
.y24b{bottom:690.810000px;}
.y21c{bottom:692.070000px;}
.y12c{bottom:692.160000px;}
.yfc{bottom:692.610000px;}
.y37d{bottom:694.410000px;}
.y1f{bottom:694.770000px;}
.yb4{bottom:695.129908px;}
.y1e5{bottom:695.130000px;}
.y9b{bottom:696.840000px;}
.y1f8{bottom:698.730000px;}
.y6a{bottom:703.140000px;}
.y166{bottom:703.590000px;}
.y8c{bottom:705.390000px;}
.y283{bottom:707.820000px;}
.y2e9{bottom:708.720000px;}
.y2f7{bottom:710.880000px;}
.y112{bottom:712.860000px;}
.y13f{bottom:714.660000px;}
.y334{bottom:718.170000px;}
.y362{bottom:720.510000px;}
.y21b{bottom:723.120000px;}
.y12b{bottom:723.210000px;}
.y299{bottom:723.300000px;}
.yfb{bottom:723.660000px;}
.y37c{bottom:723.750000px;}
.y1e4{bottom:726.270000px;}
.y1e{bottom:726.540000px;}
.y4e{bottom:727.260000px;}
.yd8{bottom:727.620000px;}
.y9a{bottom:728.160000px;}
.y1f7{bottom:729.780000px;}
.y2e8{bottom:733.830000px;}
.y69{bottom:734.190000px;}
.y165{bottom:734.640000px;}
.y8b{bottom:737.250000px;}
.y294{bottom:738.870000px;}
.y185{bottom:738.960000px;}
.y111{bottom:743.910000px;}
.y13e{bottom:745.710000px;}
.y240{bottom:746.189908px;}
.yb3{bottom:748.979908px;}
.y37b{bottom:750.930000px;}
.y361{bottom:751.560000px;}
.y30b{bottom:754.260000px;}
.yfa{bottom:754.710000px;}
.y1d{bottom:758.400000px;}
.y1e3{bottom:758.490000px;}
.y99{bottom:759.210000px;}
.y1f6{bottom:760.830000px;}
.y21a{bottom:762.000000px;}
.y68{bottom:765.240000px;}
.y164{bottom:765.690000px;}
.y8a{bottom:769.020000px;}
.y184{bottom:770.010000px;}
.y4d{bottom:771.180000px;}
.y37a{bottom:776.040000px;}
.y23d{bottom:776.969908px;}
.y12a{bottom:777.030000px;}
.y360{bottom:782.610000px;}
.y198{bottom:783.150000px;}
.y30a{bottom:785.310000px;}
.yf9{bottom:785.760000px;}
.y17b{bottom:787.200000px;}
.y1e2{bottom:789.540000px;}
.y1c{bottom:790.170000px;}
.y98{bottom:790.260000px;}
.y1f5{bottom:791.880000px;}
.y11c{bottom:794.940000px;}
.y67{bottom:796.290000px;}
.y163{bottom:796.740000px;}
.y219{bottom:796.830000px;}
.y110{bottom:797.730000px;}
.y13d{bottom:799.530000px;}
.y89{bottom:800.790000px;}
.y183{bottom:801.060000px;}
.y238{bottom:803.760000px;}
.y1cf{bottom:804.930000px;}
.y23c{bottom:805.499908px;}
.yb2{bottom:809.280000px;}
.y197{bottom:810.420000px;}
.y3c{bottom:812.760000px;}
.y129{bottom:813.660000px;}
.y224{bottom:816.360000px;}
.yf8{bottom:816.810000px;}
.y4c{bottom:817.350000px;}
.y97{bottom:821.310000px;}
.y1e1{bottom:821.760000px;}
.y23b{bottom:822.059908px;}
.y1f4{bottom:822.930000px;}
.y23a{bottom:824.669908px;}
.y17a{bottom:825.360000px;}
.y239{bottom:827.279908px;}
.y66{bottom:827.340000px;}
.y162{bottom:827.790000px;}
.y182{bottom:832.110000px;}
.y88{bottom:832.650000px;}
.y237{bottom:834.810000px;}
.y2e3{bottom:835.440000px;}
.y1b{bottom:836.070000px;}
.y1ce{bottom:836.700000px;}
.y3b{bottom:840.210000px;}
.yaf{bottom:843.029908px;}
.y46{bottom:844.080000px;}
.y128{bottom:844.710000px;}
.y212{bottom:847.410000px;}
.yf7{bottom:847.860000px;}
.y96{bottom:852.630000px;}
.y1e0{bottom:852.810000px;}
.y1cd{bottom:852.990000px;}
.y1a{bottom:853.800000px;}
.y10e{bottom:857.040000px;}
.y65{bottom:858.390000px;}
.y13b{bottom:858.840000px;}
.y178{bottom:860.010000px;}
.y1f3{bottom:861.810000px;}
.y181{bottom:863.160000px;}
.y3a{bottom:864.240000px;}
.y2e2{bottom:866.490000px;}
.y231{bottom:866.580000px;}
.y45{bottom:872.250000px;}
.y4b{bottom:873.060000px;}
.y127{bottom:875.760000px;}
.y211{bottom:878.460000px;}
.y87{bottom:878.550000px;}
.yf6{bottom:878.910000px;}
.y1{bottom:879.900000px;}
.y95{bottom:883.680000px;}
.y1df{bottom:883.860000px;}
.y1c7{bottom:884.760000px;}
.y19{bottom:885.570000px;}
.y10d{bottom:888.180000px;}
.y236{bottom:888.630000px;}
.y64{bottom:889.440000px;}
.y161{bottom:889.890000px;}
.y176{bottom:890.250000px;}
.y205{bottom:892.410000px;}
.y180{bottom:894.210000px;}
.y39{bottom:896.100000px;}
.y2e1{bottom:897.540000px;}
.y230{bottom:897.630000px;}
.y1f2{bottom:899.250000px;}
.y13a{bottom:902.940000px;}
.y126{bottom:906.810000px;}
.y1a9{bottom:909.510000px;}
.y86{bottom:909.600000px;}
.yf5{bottom:909.960000px;}
.y44{bottom:912.300000px;}
.y94{bottom:914.730000px;}
.y22d{bottom:915.270000px;}
.y4a{bottom:919.230000px;}
.y63{bottom:920.490000px;}
.y160{bottom:920.850000px;}
.y173{bottom:921.480000px;}
.y204{bottom:923.460000px;}
.y17f{bottom:925.260000px;}
.y10b{bottom:927.240000px;}
.y38{bottom:927.870000px;}
.y2e0{bottom:928.590000px;}
.y1de{bottom:937.680000px;}
.y125{bottom:937.860000px;}
.y1a8{bottom:940.560000px;}
.y85{bottom:940.650000px;}
.yf4{bottom:941.010000px;}
.y138{bottom:941.910000px;}
.y43{bottom:943.350000px;}
.y93{bottom:945.780000px;}
.y2df{bottom:946.230000px;}
.y62{bottom:951.540000px;}
.y203{bottom:954.510000px;}
.y37{bottom:959.640000px;}
.y235{bottom:961.260000px;}
.y2de{bottom:962.520000px;}
.y170{bottom:964.680000px;}
.y109{bottom:966.210000px;}
.y124{bottom:968.910000px;}
.y1a7{bottom:971.610000px;}
.y84{bottom:971.700000px;}
.y42{bottom:974.400000px;}
.y15f{bottom:974.670000px;}
.y61{bottom:975.300000px;}
.y22c{bottom:976.380000px;}
.y92{bottom:976.830000px;}
.y49{bottom:977.280000px;}
.y2dd{bottom:978.810000px;}
.y17e{bottom:979.080000px;}
.y15{bottom:979.440000px;}
.y137{bottom:979.980000px;}
.y36{bottom:991.500000px;}
.y234{bottom:992.310000px;}
.y22b{bottom:992.670000px;}
.yf3{bottom:994.830000px;}
.y2d7{bottom:995.100000px;}
.y202{bottom:997.530000px;}
.y123{bottom:999.960000px;}
.y1a6{bottom:1002.660000px;}
.y83{bottom:1002.750000px;}
.y41{bottom:1005.450000px;}
.y60{bottom:1006.350000px;}
.y91{bottom:1007.880000px;}
.y22a{bottom:1008.960000px;}
.y16d{bottom:1009.320000px;}
.y106{bottom:1018.950000px;}
.y34{bottom:1023.270000px;}
.y233{bottom:1023.360000px;}
.y1c4{bottom:1025.250000px;}
.y136{bottom:1025.610000px;}
.y201{bottom:1028.670000px;}
.y5f{bottom:1030.200000px;}
.y122{bottom:1031.010000px;}
.y48{bottom:1033.080000px;}
.y1a5{bottom:1033.710000px;}
.y82{bottom:1033.800000px;}
.y40{bottom:1036.500000px;}
.y15e{bottom:1037.400000px;}
.y232{bottom:1054.410000px;}
.y33{bottom:1056.120000px;}
.y90{bottom:1057.200000px;}
.y200{bottom:1060.890000px;}
.y17d{bottom:1061.160000px;}
.y5e{bottom:1061.250000px;}
.y121{bottom:1062.060000px;}
.y104{bottom:1064.580000px;}
.y1a4{bottom:1064.760000px;}
.y81{bottom:1064.850000px;}
.y3f{bottom:1067.550000px;}
.y159{bottom:1072.050000px;}
.y13{bottom:1073.310000px;}
.yf2{bottom:1076.940000px;}
.y47{bottom:1079.280000px;}
.y8f{bottom:1088.280000px;}
.y1ff{bottom:1091.880000px;}
.y120{bottom:1093.140000px;}
.y80{bottom:1095.930000px;}
.y3e{bottom:1098.630000px;}
.y32{bottom:1101.510000px;}
.y17c{bottom:1112.940000px;}
.y2d6{bottom:1116.630000px;}
.y5d{bottom:1116.990000px;}
.y1a3{bottom:1118.610000px;}
.y1fe{bottom:1123.020000px;}
.y11f{bottom:1124.190000px;}
.y103{bottom:1125.630000px;}
.y7f{bottom:1126.980000px;}
.y31{bottom:1131.210000px;}
.y12{bottom:1146.780000px;}
.yef{bottom:1147.410000px;}
.y3d{bottom:1152.450000px;}
.y7e{bottom:1158.030000px;}
.y30{bottom:1160.640000px;}
.y5c{bottom:1160.910000px;}
.yee{bottom:1175.940000px;}
.y10{bottom:1179.720000px;}
.yed{bottom:1192.500000px;}
.yec{bottom:1195.110000px;}
.yeb{bottom:1197.720000px;}
.ye{bottom:1202.970000px;}
.yf{bottom:1213.470000px;}
.h23{height:6.290396px;}
.h39{height:15.480000px;}
.h3a{height:15.570000px;}
.h3f{height:15.600000px;}
.h59{height:23.700000px;}
.h2c{height:27.930000px;}
.h36{height:29.520000px;}
.h29{height:30.420000px;}
.hc{height:31.050000px;}
.ha{height:31.080000px;}
.h2d{height:31.590000px;}
.hf{height:32.130000px;}
.h44{height:32.580000px;}
.h20{height:35.910000px;}
.h22{height:36.090000px;}
.h21{height:36.540000px;}
.h19{height:36.720000px;}
.h2a{height:37.260000px;}
.h2f{height:37.980000px;}
.h28{height:38.250000px;}
.h24{height:38.280000px;}
.h1d{height:39.000000px;}
.h18{height:40.440000px;}
.h25{height:41.106445px;}
.h2e{height:41.490000px;}
.h35{height:42.390000px;}
.h17{height:42.480000px;}
.h1a{height:42.570000px;}
.h2b{height:43.290000px;}
.h34{height:43.920000px;}
.h26{height:44.910000px;}
.h3e{height:46.530000px;}
.h1f{height:46.620000px;}
.h50{height:46.650000px;}
.h30{height:48.240000px;}
.h3c{height:48.436523px;}
.h32{height:48.882960px;}
.h8{height:49.500000px;}
.h6{height:50.062500px;}
.h15{height:50.580000px;}
.h68{height:51.780000px;}
.h27{height:52.020000px;}
.h7{height:53.925996px;}
.h37{height:54.140625px;}
.h33{height:54.540000px;}
.h16{height:56.320312px;}
.h62{height:56.324707px;}
.hd{height:59.797090px;}
.h42{height:60.390000px;}
.h40{height:62.100000px;}
.h4c{height:62.130000px;}
.h3{height:62.703281px;}
.h11{height:64.582031px;}
.h61{height:65.707031px;}
.h1b{height:65.970000px;}
.h31{height:68.340000px;}
.h2{height:68.710781px;}
.h49{height:72.000000px;}
.he{height:72.090000px;}
.h1c{height:72.360000px;}
.h9{height:75.093750px;}
.h4d{height:77.580000px;}
.h1e{height:77.610000px;}
.h3d{height:77.670000px;}
.h70{height:77.700000px;}
.h41{height:86.217012px;}
.h5{height:87.484219px;}
.h38{height:93.090000px;}
.hb{height:93.150000px;}
.h60{height:98.760000px;}
.h10{height:100.250156px;}
.h6b{height:103.530000px;}
.h4f{height:108.630000px;}
.h52{height:108.660000px;}
.h4a{height:108.750000px;}
.h4e{height:124.140000px;}
.h57{height:124.200000px;}
.h4{height:125.031094px;}
.h64{height:129.330000px;}
.h72{height:129.420000px;}
.h65{height:129.450000px;}
.h3b{height:139.770000px;}
.h48{height:139.800000px;}
.h45{height:152.910000px;}
.h6a{height:155.160000px;}
.h67{height:155.250000px;}
.h56{height:155.280000px;}
.h4b{height:170.730000px;}
.h53{height:170.760000px;}
.h51{height:170.820000px;}
.h5a{height:170.850000px;}
.h6c{height:181.080000px;}
.h6d{height:181.200000px;}
.h43{height:186.210000px;}
.h55{height:186.300000px;}
.h46{height:186.330000px;}
.h6f{height:206.940000px;}
.h66{height:207.030000px;}
.h5f{height:217.260000px;}
.h5e{height:217.380000px;}
.h5b{height:232.830000px;}
.h69{height:232.860000px;}
.h63{height:232.950000px;}
.h58{height:248.430000px;}
.h6e{height:258.690000px;}
.h71{height:258.780000px;}
.h5c{height:297.480000px;}
.h54{height:310.530000px;}
.h5d{height:344.100000px;}
.h47{height:434.760000px;}
.h13{height:892.500000px;}
.h14{height:892.529908px;}
.h12{height:892.530000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w3c{width:31.140000px;}
.w39{width:31.860000px;}
.w38{width:35.370000px;}
.w3b{width:41.760000px;}
.w2d{width:44.130000px;}
.w37{width:44.550000px;}
.w2e{width:46.170000px;}
.w31{width:46.620000px;}
.w30{width:47.610000px;}
.w8{width:52.110000px;}
.w3e{width:52.380000px;}
.w3d{width:52.470000px;}
.w3a{width:55.470000px;}
.w33{width:63.090000px;}
.w46{width:63.540000px;}
.w41{width:73.350000px;}
.w35{width:73.620000px;}
.w34{width:73.740000px;}
.w2f{width:76.050000px;}
.w36{width:81.810000px;}
.w47{width:84.330000px;}
.w2c{width:85.410000px;}
.w43{width:95.040000px;}
.w13{width:104.850000px;}
.w44{width:105.480000px;}
.w42{width:105.510000px;}
.w9{width:116.220000px;}
.w19{width:120.420000px;}
.w18{width:120.450000px;}
.w1c{width:121.140000px;}
.w17{width:123.660000px;}
.w23{width:123.690000px;}
.w1b{width:124.380000px;}
.w28{width:126.810000px;}
.w1d{width:132.060000px;}
.w15{width:134.490000px;}
.w16{width:135.180000px;}
.w21{width:135.210000px;}
.w1f{width:137.190000px;}
.w29{width:137.550000px;}
.w14{width:150.300000px;}
.w3f{width:157.230000px;}
.w1a{width:167.880000px;}
.w12{width:168.960000px;}
.wa{width:178.740000px;}
.w25{width:179.580000px;}
.w40{width:179.670000px;}
.w2b{width:182.280000px;}
.w48{width:209.370000px;}
.w45{width:221.970000px;}
.w6{width:251.130000px;}
.w4{width:253.830000px;}
.w2a{width:354.990000px;}
.wc{width:360.480000px;}
.wd{width:360.510000px;}
.wb{width:393.990000px;}
.w27{width:445.470000px;}
.w32{width:467.220000px;}
.w5{width:479.580000px;}
.w7{width:482.910000px;}
.w26{width:540.600000px;}
.w20{width:583.980000px;}
.w22{width:585.060000px;}
.w1e{width:588.210000px;}
.w24{width:596.580000px;}
.w11{width:747.150000px;}
.w3{width:747.270000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.w10{width:1262.969981px;}
.we{width:1262.970000px;}
.wf{width:1263.000000px;}
.x0{left:0.000000px;}
.xb{left:4.860000px;}
.x28{left:7.470000px;}
.x17{left:8.550000px;}
.xa{left:10.800000px;}
.x1c{left:14.400000px;}
.x31{left:17.460000px;}
.x29{left:19.350000px;}
.x19{left:21.600000px;}
.x1d{left:24.120000px;}
.x2d{left:26.460000px;}
.x2b{left:29.520000px;}
.x26{left:31.320000px;}
.x1a{left:33.660000px;}
.x21{left:35.640000px;}
.x20{left:37.170000px;}
.x6a{left:39.150000px;}
.x2a{left:42.480000px;}
.x2f{left:44.730000px;}
.x33{left:48.240000px;}
.x24{left:49.320000px;}
.x30{left:51.210000px;}
.x32{left:53.100000px;}
.x2c{left:56.910000px;}
.x36{left:58.410000px;}
.x37{left:62.190000px;}
.x35{left:63.570000px;}
.x2e{left:67.260000px;}
.x34{left:71.370000px;}
.x4{left:85.049987px;}
.x9{left:87.750000px;}
.x9d{left:91.259987px;}
.x38{left:94.589987px;}
.x82{left:100.799987px;}
.x85{left:104.399987px;}
.x15{left:106.379981px;}
.x27{left:107.460000px;}
.x14{left:109.080000px;}
.x5c{left:110.519987px;}
.x10{left:112.049987px;}
.xe{left:138.600000px;}
.x83{left:139.679987px;}
.x95{left:159.930000px;}
.x7{left:163.199987px;}
.x2{left:164.279987px;}
.x9c{left:168.239987px;}
.x8b{left:169.319987px;}
.x70{left:171.990000px;}
.x8f{left:187.139987px;}
.x90{left:191.549987px;}
.x6d{left:193.439981px;}
.x69{left:197.669987px;}
.x12{left:202.529981px;}
.x99{left:204.059987px;}
.x4a{left:210.180000px;}
.x71{left:216.840000px;}
.x3d{left:218.550000px;}
.x46{left:221.700000px;}
.x44{left:223.680000px;}
.x41{left:226.649987px;}
.x9a{left:239.249987px;}
.x45{left:251.399987px;}
.x3{left:255.089987px;}
.x8{left:262.469987px;}
.x72{left:263.730000px;}
.x4f{left:266.160000px;}
.x89{left:268.139987px;}
.x18{left:277.590000px;}
.x6c{left:279.839981px;}
.x51{left:283.079987px;}
.x62{left:289.469987px;}
.x3c{left:295.859987px;}
.x56{left:305.489987px;}
.x4e{left:307.829987px;}
.x43{left:312.329987px;}
.x5b{left:314.219987px;}
.x48{left:321.599987px;}
.x4c{left:324.299987px;}
.x57{left:327.089987px;}
.x5a{left:333.479987px;}
.x5f{left:335.819987px;}
.xd{left:337.620000px;}
.xc{left:340.410000px;}
.x49{left:341.759987px;}
.x4b{left:344.459987px;}
.x3a{left:351.299987px;}
.x65{left:355.889987px;}
.x8d{left:359.579987px;}
.x3f{left:362.819987px;}
.x40{left:370.559987px;}
.x91{left:378.029987px;}
.x1b{left:383.160000px;}
.x73{left:388.830000px;}
.x5e{left:402.239987px;}
.x61{left:403.409987px;}
.x87{left:408.179987px;}
.x50{left:412.589987px;}
.x93{left:416.999987px;}
.xf{left:435.000000px;}
.x74{left:436.170000px;}
.x58{left:441.480000px;}
.x6{left:446.249987px;}
.x16{left:456.779981px;}
.x94{left:467.849981px;}
.x5d{left:482.189987px;}
.x6f{left:491.609981px;}
.x79{left:517.530000px;}
.x52{left:532.050000px;}
.x1e{left:534.180000px;}
.x7a{left:550.200000px;}
.x8c{left:574.529987px;}
.x6e{left:602.879981px;}
.x7b{left:606.480000px;}
.x13{left:611.969981px;}
.x3b{left:620.699987px;}
.x59{left:624.480000px;}
.x6b{left:631.499981px;}
.x8a{left:635.279987px;}
.x39{left:637.619987px;}
.x11{left:640.679981px;}
.x7c{left:648.960000px;}
.x81{left:657.779987px;}
.x53{left:659.580000px;}
.x3e{left:664.619987px;}
.x1f{left:669.480000px;}
.x5{left:678.000000px;}
.x7d{left:680.820000px;}
.x63{left:688.559987px;}
.x96{left:690.990000px;}
.x88{left:693.779987px;}
.x92{left:704.129987px;}
.x42{left:708.179987px;}
.x84{left:717.449987px;}
.x7e{left:734.010000px;}
.x9b{left:751.199987px;}
.x97{left:755.340000px;}
.x66{left:758.129987px;}
.x67{left:759.299987px;}
.x68{left:761.009987px;}
.x60{left:765.149987px;}
.x4d{left:772.169987px;}
.x47{left:775.499987px;}
.x64{left:777.059987px;}
.x8e{left:781.919987px;}
.x55{left:784.889987px;}
.x54{left:787.319987px;}
.x7f{left:797.820000px;}
.x22{left:805.380000px;}
.x1{left:807.479987px;}
.x80{left:850.920000px;}
.x86{left:868.139987px;}
.x98{left:882.870000px;}
.x75{left:904.110000px;}
.x23{left:930.480000px;}
.x76{left:967.920000px;}
.x77{left:1042.380000px;}
.x25{left:1052.370000px;}
.x78{left:1116.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls26{letter-spacing:-4.352000pt;}
.ls1{letter-spacing:-2.453707pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.208000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.136533pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.124267pt;}
.ls25{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.016000pt;}
.lsc{letter-spacing:-0.011840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls22{letter-spacing:0.023680pt;}
.ls2{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.080533pt;}
.ls12{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.224000pt;}
.ls1e{letter-spacing:0.232000pt;}
.ls16{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.336000pt;}
.ls20{letter-spacing:0.368000pt;}
.ls18{letter-spacing:0.416000pt;}
.ls19{letter-spacing:0.448000pt;}
.ls13{letter-spacing:1.136000pt;}
.lse{letter-spacing:1.232000pt;}
.ls17{letter-spacing:39.488000pt;}
.ls8{letter-spacing:56.768000pt;}
.ls6{letter-spacing:750.314667pt;}
.ws17{word-spacing:-64.000000pt;}
.ws18{word-spacing:-48.000000pt;}
.wsb{word-spacing:-30.855680pt;}
.ws0{word-spacing:-29.623680pt;}
.ws12{word-spacing:-24.888320pt;}
.ws5{word-spacing:-23.752320pt;}
.ws6{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws8{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.ws13{word-spacing:-17.600000pt;}
.ws16{word-spacing:-16.768000pt;}
.ws2{word-spacing:-16.360213pt;}
.ws22{word-spacing:-15.936000pt;}
.ws1f{word-spacing:-15.792000pt;}
.ws23{word-spacing:-15.728000pt;}
.ws20{word-spacing:-15.616000pt;}
.ws1d{word-spacing:-15.568000pt;}
.ws21{word-spacing:-15.472000pt;}
.ws9{word-spacing:-14.903680pt;}
.ws25{word-spacing:-14.880000pt;}
.ws24{word-spacing:-14.856320pt;}
.wsa{word-spacing:-14.844480pt;}
.ws26{word-spacing:-14.732053pt;}
.ws7{word-spacing:-14.719787pt;}
.ws11{word-spacing:-14.544000pt;}
.ws14{word-spacing:-14.448000pt;}
.ws1b{word-spacing:-13.568000pt;}
.ws1a{word-spacing:-13.536000pt;}
.ws15{word-spacing:-13.456000pt;}
.ws19{word-spacing:-13.440000pt;}
.ws1c{word-spacing:-13.360000pt;}
.wsd{word-spacing:-13.344000pt;}
.wsc{word-spacing:-13.328000pt;}
.wsf{word-spacing:-13.248000pt;}
.ws10{word-spacing:-13.216000pt;}
.wse{word-spacing:-13.136000pt;}
.ws1e{word-spacing:-10.408320pt;}
.ws1{word-spacing:0.000000pt;}
._1e{margin-left:-24.958720pt;}
._18{margin-left:-16.917333pt;}
._12{margin-left:-16.021333pt;}
._1a{margin-left:-15.125333pt;}
._16{margin-left:-14.208853pt;}
._17{margin-left:-13.315733pt;}
._13{margin-left:-12.010667pt;}
._19{margin-left:-11.029333pt;}
._14{margin-left:-9.450667pt;}
._1c{margin-left:-8.405333pt;}
._15{margin-left:-7.417813pt;}
._6{margin-left:-6.500160pt;}
._1b{margin-left:-4.757333pt;}
._10{margin-left:-3.648000pt;}
._a{margin-left:-2.112000pt;}
._0{margin-left:-0.908480pt;}
._3{width:1.060907pt;}
._5{width:1.985387pt;}
._1f{width:3.012160pt;}
._7{width:3.967147pt;}
._11{width:4.996267pt;}
._21{width:5.952000pt;}
._f{width:7.424000pt;}
._31{width:8.314773pt;}
._e{width:9.258667pt;}
._4{width:10.736640pt;}
._d{width:11.712000pt;}
._22{width:13.440000pt;}
._9{width:14.912000pt;}
._2a{width:15.808000pt;}
._24{width:16.716480pt;}
._42{width:17.709120pt;}
._29{width:18.752000pt;}
._2c{width:19.788480pt;}
._23{width:20.928000pt;}
._2d{width:21.824000pt;}
._2e{width:22.811093pt;}
._25{width:24.576000pt;}
._2b{width:25.600000pt;}
._33{width:26.666667pt;}
._5e{width:28.039040pt;}
._3c{width:28.928000pt;}
._43{width:30.888320pt;}
._45{width:32.812160pt;}
._5c{width:33.880960pt;}
._40{width:37.301120pt;}
._41{width:38.316480pt;}
._20{width:39.488000pt;}
._3b{width:40.512000pt;}
._8{width:42.056320pt;}
._5f{width:42.965760pt;}
._6a{width:43.981120pt;}
._66{width:45.156800pt;}
._6b{width:46.737280pt;}
._67{width:47.637760pt;}
._36{width:48.768000pt;}
._4b{width:49.668480pt;}
._70{width:51.035200pt;}
._5d{width:52.584960pt;}
._27{width:53.568000pt;}
._28{width:54.464000pt;}
._64{width:56.103360pt;}
._4c{width:57.376427pt;}
._55{width:59.343360pt;}
._3a{width:60.576000pt;}
._6c{width:62.084800pt;}
._26{width:63.232000pt;}
._47{width:65.731200pt;}
._4e{width:66.746560pt;}
._51{width:69.899520pt;}
._2f{width:70.818560pt;}
._30{width:72.819520pt;}
._52{width:75.777920pt;}
._4d{width:77.113920pt;}
._3e{width:78.610240pt;}
._6f{width:80.060480pt;}
._2{width:81.328320pt;}
._1{width:82.708267pt;}
._4f{width:83.740480pt;}
._68{width:85.183360pt;}
._50{width:87.534720pt;}
._6d{width:88.924160pt;}
._35{width:95.744000pt;}
._59{width:102.337600pt;}
._60{width:111.956800pt;}
._72{width:122.965440pt;}
._74{width:124.622080pt;}
._5b{width:126.171840pt;}
._46{width:127.899627pt;}
._44{width:129.538560pt;}
._6e{width:134.829120pt;}
._71{width:137.768320pt;}
._63{width:140.600640pt;}
._34{width:141.824000pt;}
._39{width:143.808000pt;}
._48{width:146.372160pt;}
._53{width:147.494400pt;}
._b{width:153.309440pt;}
._4a{width:155.777600pt;}
._57{width:161.549120pt;}
._5a{width:164.426560pt;}
._49{width:173.305920pt;}
._54{width:176.405440pt;}
._c{width:179.922560pt;}
._56{width:182.016640pt;}
._73{width:186.879680pt;}
._69{width:190.406720pt;}
._62{width:193.880320pt;}
._61{width:201.896320pt;}
._58{width:211.622400pt;}
._65{width:241.495360pt;}
._3d{width:277.407040pt;}
._3f{width:291.622080pt;}
._1d{width:750.314667pt;}
._37{width:858.688000pt;}
._32{width:1235.114667pt;}
._38{width:1408.341333pt;}
.fs9{font-size:5.440000pt;}
.fsb{font-size:37.440000pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fsa{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:61.440000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.fs7{font-size:85.440000pt;}
.fs2{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:0.000081pt;}
.ydd{bottom:2.560000pt;}
.y2ac{bottom:2.586667pt;}
.ye0{bottom:2.640000pt;}
.ybf{bottom:4.400000pt;}
.y15d{bottom:8.106667pt;}
.y2a6{bottom:9.866667pt;}
.y30f{bottom:10.480000pt;}
.y319{bottom:10.560000pt;}
.ybc{bottom:11.280000pt;}
.y27d{bottom:11.440000pt;}
.ye2{bottom:11.680000pt;}
.ye8{bottom:11.760000pt;}
.y153{bottom:11.840000pt;}
.ye5{bottom:11.920000pt;}
.yc7{bottom:12.080000pt;}
.y18{bottom:12.560000pt;}
.y14{bottom:12.586667pt;}
.y175{bottom:12.720000pt;}
.yd6{bottom:13.040000pt;}
.y22f{bottom:13.200000pt;}
.y35{bottom:13.520000pt;}
.y14e{bottom:13.600000pt;}
.yc4{bottom:13.680000pt;}
.y172{bottom:14.000000pt;}
.yc1{bottom:14.560000pt;}
.ycb{bottom:14.640000pt;}
.y108{bottom:14.720000pt;}
.y179{bottom:15.040000pt;}
.y10f{bottom:15.760000pt;}
.y177{bottom:15.840000pt;}
.ydf{bottom:16.400000pt;}
.ydc{bottom:16.426667pt;}
.y150{bottom:16.880000pt;}
.y24c{bottom:17.760000pt;}
.y158{bottom:17.840000pt;}
.ycf{bottom:18.080000pt;}
.ybd{bottom:18.160000pt;}
.y2c2{bottom:18.480000pt;}
.y2cf{bottom:18.560000pt;}
.ye3{bottom:20.720000pt;}
.ye9{bottom:20.880000pt;}
.yd3{bottom:20.960000pt;}
.ye6{bottom:21.280000pt;}
.y2dc{bottom:21.360000pt;}
.yc8{bottom:21.440000pt;}
.y139{bottom:21.840000pt;}
.y15c{bottom:21.946667pt;}
.y155{bottom:22.560000pt;}
.y10c{bottom:22.720000pt;}
.y105{bottom:22.746667pt;}
.y16c{bottom:22.826667pt;}
.yd7{bottom:23.466667pt;}
.y16f{bottom:23.520000pt;}
.yc5{bottom:24.720000pt;}
.ybb{bottom:25.120000pt;}
.y27c{bottom:25.200000pt;}
.y152{bottom:25.680000pt;}
.y174{bottom:26.480000pt;}
.yc2{bottom:26.560000pt;}
.ycc{bottom:26.640000pt;}
.y13c{bottom:27.200000pt;}
.y171{bottom:27.840000pt;}
.y107{bottom:28.640000pt;}
.y1c6{bottom:30.160000pt;}
.ydb{bottom:30.186667pt;}
.y11{bottom:30.240000pt;}
.y280{bottom:30.266667pt;}
.y157{bottom:31.680000pt;}
.yce{bottom:31.920000pt;}
.ybe{bottom:32.000000pt;}
.y2c1{bottom:32.400000pt;}
.y322{bottom:33.440000pt;}
.y30e{bottom:33.520000pt;}
.y318{bottom:33.546667pt;}
.yba{bottom:33.760000pt;}
.yd2{bottom:34.800000pt;}
.y10a{bottom:34.960000pt;}
.y2db{bottom:35.200000pt;}
.y15b{bottom:35.706667pt;}
.yf1{bottom:36.880000pt;}
.y23f{bottom:36.959919pt;}
.y16e{bottom:37.280000pt;}
.y27b{bottom:39.040000pt;}
.y17{bottom:40.160000pt;}
.yb1{bottom:40.559919pt;}
.y5{bottom:40.560000pt;}
.y22e{bottom:42.480000pt;}
.y24a{bottom:43.920000pt;}
.y2ab{bottom:43.946667pt;}
.y1c5{bottom:44.000000pt;}
.yda{bottom:44.026667pt;}
.y2c0{bottom:46.160000pt;}
.y2ce{bottom:46.240000pt;}
.yd0{bottom:47.440000pt;}
.y2da{bottom:48.960000pt;}
.y15a{bottom:49.546667pt;}
.y27a{bottom:52.800000pt;}
.yd4{bottom:53.120000pt;}
.y30d{bottom:56.480000pt;}
.y333{bottom:56.506667pt;}
.y31f{bottom:56.560000pt;}
.y317{bottom:56.586667pt;}
.y249{bottom:57.760000pt;}
.yd9{bottom:57.786667pt;}
.y1cc{bottom:57.840000pt;}
.y27f{bottom:57.866667pt;}
.yf0{bottom:59.840000pt;}
.y23e{bottom:59.919919pt;}
.y2bf{bottom:60.000000pt;}
.y2d9{bottom:62.800000pt;}
.y4{bottom:63.520000pt;}
.yb0{bottom:63.599919pt;}
.y16{bottom:67.760000pt;}
.y251{bottom:69.520000pt;}
.y248{bottom:71.520000pt;}
.y19d{bottom:71.546667pt;}
.y1cb{bottom:71.600000pt;}
.y259{bottom:71.626667pt;}
.y2be{bottom:73.760000pt;}
.y2cd{bottom:73.840000pt;}
.y2d8{bottom:76.586667pt;}
.y321{bottom:79.440000pt;}
.y343{bottom:79.466667pt;}
.y31c{bottom:79.520000pt;}
.y316{bottom:79.546667pt;}
.yd5{bottom:80.080000pt;}
.y156{bottom:80.560000pt;}
.y250{bottom:83.280000pt;}
.y327{bottom:83.680000pt;}
.y102{bottom:83.920000pt;}
.y32f{bottom:84.320000pt;}
.y340{bottom:85.040000pt;}
.y247{bottom:85.360000pt;}
.y271{bottom:85.386667pt;}
.y1ca{bottom:85.440000pt;}
.y258{bottom:85.466667pt;}
.y28b{bottom:86.240000pt;}
.y3{bottom:86.560000pt;}
.y379{bottom:86.800000pt;}
.y293{bottom:86.960000pt;}
.y2fe{bottom:87.040000pt;}
.y276{bottom:87.600000pt;}
.y2a0{bottom:88.240000pt;}
.y29b{bottom:89.600000pt;}
.y1bb{bottom:92.560000pt;}
.y18c{bottom:93.440000pt;}
.y2a5{bottom:93.520000pt;}
.y1c3{bottom:93.600000pt;}
.y210{bottom:93.840000pt;}
.y1fd{bottom:94.160000pt;}
.y24f{bottom:97.120000pt;}
.y309{bottom:97.280000pt;}
.y135{bottom:97.760000pt;}
.y246{bottom:99.120000pt;}
.y288{bottom:99.146667pt;}
.y1c9{bottom:99.200000pt;}
.y257{bottom:99.226667pt;}
.y2bd{bottom:101.360000pt;}
.y2aa{bottom:101.440000pt;}
.y2d4{bottom:102.080000pt;}
.y31b{bottom:102.480000pt;}
.y338{bottom:102.506667pt;}
.y324{bottom:102.560000pt;}
.y315{bottom:102.586667pt;}
.y282{bottom:105.786667pt;}
.yad{bottom:106.640000pt;}
.y7d{bottom:107.040000pt;}
.y33d{bottom:107.386667pt;}
.y1c2{bottom:109.280000pt;}
.y24e{bottom:110.880000pt;}
.y1a2{bottom:111.600000pt;}
.y378{bottom:112.880000pt;}
.y245{bottom:112.960000pt;}
.y270{bottom:112.986667pt;}
.y1c8{bottom:113.040000pt;}
.y256{bottom:113.066667pt;}
.y2c3{bottom:113.466667pt;}
.y218{bottom:114.160000pt;}
.y101{bottom:114.800000pt;}
.y382{bottom:114.960000pt;}
.y2bc{bottom:115.200000pt;}
.y2a4{bottom:115.226667pt;}
.y25d{bottom:115.306667pt;}
.yd1{bottom:115.386667pt;}
.y275{bottom:115.866667pt;}
.y5b{bottom:119.680000pt;}
.y11b{bottom:119.920000pt;}
.y1ba{bottom:120.160000pt;}
.y18b{bottom:120.960000pt;}
.y20f{bottom:121.440000pt;}
.y1fc{bottom:121.760000pt;}
.y35f{bottom:122.160000pt;}
.y1c1{bottom:123.760000pt;}
.y154{bottom:124.080000pt;}
.y24d{bottom:124.720000pt;}
.y308{bottom:124.880000pt;}
.y32e{bottom:125.440000pt;}
.y342{bottom:125.466667pt;}
.y326{bottom:125.520000pt;}
.y314{bottom:125.546667pt;}
.y2f{bottom:126.560000pt;}
.y244{bottom:126.720000pt;}
.y292{bottom:126.800000pt;}
.y255{bottom:126.826667pt;}
.y1a1{bottom:127.280000pt;}
.y28a{bottom:128.346667pt;}
.y134{bottom:128.800000pt;}
.y2bb{bottom:128.960000pt;}
.y2cc{bottom:129.040000pt;}
.y2af{bottom:129.706667pt;}
.y325{bottom:130.346667pt;}
.y32d{bottom:131.066667pt;}
.y2ef{bottom:132.640000pt;}
.yac{bottom:134.240000pt;}
.y7c{bottom:134.640000pt;}
.y31d{bottom:135.066667pt;}
.y377{bottom:135.200000pt;}
.y1c0{bottom:138.240000pt;}
.y229{bottom:139.120000pt;}
.y243{bottom:140.560000pt;}
.y26f{bottom:140.586667pt;}
.y291{bottom:140.640000pt;}
.y254{bottom:140.666667pt;}
.y1a0{bottom:141.760000pt;}
.y381{bottom:142.560000pt;}
.y2ba{bottom:142.800000pt;}
.y1dd{bottom:143.360000pt;}
.y25c{bottom:143.626667pt;}
.y373{bottom:143.680000pt;}
.y1b9{bottom:148.000000pt;}
.y33c{bottom:148.480000pt;}
.y32c{bottom:148.506667pt;}
.y18a{bottom:148.560000pt;}
.y313{bottom:148.586667pt;}
.y35e{bottom:149.760000pt;}
.y1fb{bottom:150.400000pt;}
.y11a{bottom:150.880000pt;}
.y307{bottom:150.960000pt;}
.y2f9{bottom:152.320000pt;}
.y345{bottom:154.026667pt;}
.y242{bottom:154.320000pt;}
.y29d{bottom:154.400000pt;}
.y253{bottom:154.426667pt;}
.y20e{bottom:156.000000pt;}
.y19f{bottom:156.160000pt;}
.y2b9{bottom:156.560000pt;}
.y2cb{bottom:156.640000pt;}
.y2e7{bottom:157.200000pt;}
.y274{bottom:157.946667pt;}
.y151{bottom:158.480000pt;}
.y2ee{bottom:158.640000pt;}
.y2e{bottom:158.960000pt;}
.yd{bottom:161.680000pt;}
.yab{bottom:161.840000pt;}
.y7b{bottom:162.240000pt;}
.y2a8{bottom:168.160000pt;}
.y26e{bottom:168.186667pt;}
.y5a{bottom:169.280000pt;}
.y217{bottom:169.360000pt;}
.y380{bottom:170.160000pt;}
.y2b8{bottom:170.400000pt;}
.y1f1{bottom:170.560000pt;}
.y1dc{bottom:170.960000pt;}
.y2a9{bottom:171.066667pt;}
.y372{bottom:171.280000pt;}
.y341{bottom:171.466667pt;}
.y329{bottom:171.520000pt;}
.y312{bottom:171.546667pt;}
.y2d2{bottom:171.786667pt;}
.y1bf{bottom:172.240000pt;}
.y16b{bottom:173.360000pt;}
.y228{bottom:173.680000pt;}
.y2f8{bottom:174.640000pt;}
.y1fa{bottom:174.720000pt;}
.y306{bottom:175.120000pt;}
.y1b8{bottom:175.600000pt;}
.y189{bottom:176.160000pt;}
.y332{bottom:176.346667pt;}
.y304{bottom:176.960000pt;}
.y35d{bottom:177.360000pt;}
.ycd{bottom:181.706667pt;}
.y2d3{bottom:181.920000pt;}
.y2b1{bottom:182.000000pt;}
.y26d{bottom:182.026667pt;}
.y2ed{bottom:182.800000pt;}
.y2e6{bottom:183.280000pt;}
.y2b7{bottom:184.160000pt;}
.y290{bottom:184.186667pt;}
.y2ca{bottom:184.240000pt;}
.y2a3{bottom:184.906667pt;}
.y25b{bottom:185.626667pt;}
.y1db{bottom:186.720000pt;}
.y20d{bottom:189.280000pt;}
.yaa{bottom:189.440000pt;}
.y7a{bottom:189.840000pt;}
.y2d{bottom:191.360000pt;}
.yc{bottom:193.840000pt;}
.y344{bottom:194.480000pt;}
.y32b{bottom:194.506667pt;}
.y311{bottom:194.586667pt;}
.y2b0{bottom:195.760000pt;}
.y26c{bottom:195.786667pt;}
.y14f{bottom:196.000000pt;}
.y37f{bottom:196.240000pt;}
.y216{bottom:196.960000pt;}
.y305{bottom:197.440000pt;}
.y2b6{bottom:198.000000pt;}
.y1f0{bottom:198.160000pt;}
.y19e{bottom:198.240000pt;}
.y371{bottom:198.880000pt;}
.y273{bottom:200.026667pt;}
.y303{bottom:201.120000pt;}
.y1b7{bottom:203.120000pt;}
.y188{bottom:203.760000pt;}
.y227{bottom:204.640000pt;}
.y35c{bottom:204.960000pt;}
.y2ec{bottom:205.120000pt;}
.y1be{bottom:205.520000pt;}
.y2e5{bottom:207.440000pt;}
.y16a{bottom:207.920000pt;}
.y59{bottom:208.240000pt;}
.y26b{bottom:209.626667pt;}
.y2b5{bottom:211.760000pt;}
.y2c9{bottom:211.840000pt;}
.y29f{bottom:213.146667pt;}
.ya9{bottom:217.040000pt;}
.y79{bottom:217.440000pt;}
.y33f{bottom:217.466667pt;}
.y348{bottom:217.520000pt;}
.y20c{bottom:220.320000pt;}
.y337{bottom:222.346667pt;}
.y1ef{bottom:222.400000pt;}
.y26a{bottom:223.386667pt;}
.y2c{bottom:223.760000pt;}
.y215{bottom:224.560000pt;}
.y14d{bottom:224.720000pt;}
.y302{bottom:225.280000pt;}
.y2b4{bottom:225.600000pt;}
.yb{bottom:226.080000pt;}
.y370{bottom:226.480000pt;}
.y19c{bottom:226.560000pt;}
.y25a{bottom:227.706667pt;}
.y2e4{bottom:229.760000pt;}
.y1b6{bottom:230.960000pt;}
.y35b{bottom:232.560000pt;}
.y1bd{bottom:236.480000pt;}
.y269{bottom:237.226667pt;}
.y187{bottom:238.400000pt;}
.y169{bottom:238.960000pt;}
.y2b3{bottom:239.360000pt;}
.y2c8{bottom:239.440000pt;}
.y347{bottom:240.506667pt;}
.yca{bottom:242.346667pt;}
.y1da{bottom:242.560000pt;}
.y37e{bottom:242.640000pt;}
.ya8{bottom:244.640000pt;}
.y78{bottom:245.040000pt;}
.y58{bottom:247.306667pt;}
.y301{bottom:247.626667pt;}
.y31a{bottom:250.746667pt;}
.y268{bottom:250.986667pt;}
.y2c7{bottom:253.200000pt;}
.y289{bottom:253.226667pt;}
.y36f{bottom:254.106667pt;}
.y272{bottom:255.866667pt;}
.y2b{bottom:256.186667pt;}
.y1d9{bottom:257.066667pt;}
.y281{bottom:258.186667pt;}
.ya{bottom:258.266667pt;}
.y1b5{bottom:258.586667pt;}
.y214{bottom:259.226667pt;}
.y35a{bottom:260.186667pt;}
.y346{bottom:263.546667pt;}
.y267{bottom:264.826667pt;}
.y2c6{bottom:267.040000pt;}
.y298{bottom:267.706667pt;}
.y2a2{bottom:268.346667pt;}
.y323{bottom:268.986667pt;}
.y186{bottom:269.306667pt;}
.y32a{bottom:269.706667pt;}
.y14c{bottom:269.786667pt;}
.y57{bottom:270.266667pt;}
.y1d8{bottom:271.546667pt;}
.ya7{bottom:272.266667pt;}
.y77{bottom:272.666667pt;}
.y266{bottom:278.586667pt;}
.y2c5{bottom:280.826667pt;}
.y36e{bottom:281.706667pt;}
.yc9{bottom:282.186667pt;}
.y1b4{bottom:286.186667pt;}
.y359{bottom:287.786667pt;}
.y2a{bottom:288.586667pt;}
.y213{bottom:290.106667pt;}
.y9{bottom:290.506667pt;}
.y265{bottom:292.426667pt;}
.y2c4{bottom:294.666667pt;}
.y25e{bottom:297.946667pt;}
.ya6{bottom:299.866667pt;}
.y76{bottom:300.266667pt;}
.y14b{bottom:304.106667pt;}
.y264{bottom:306.186667pt;}
.y36d{bottom:309.306667pt;}
.y252{bottom:311.146667pt;}
.y56{bottom:311.306667pt;}
.y1d7{bottom:313.546667pt;}
.y1b3{bottom:313.786667pt;}
.y331{bottom:314.986667pt;}
.y358{bottom:315.386667pt;}
.y263{bottom:320.026667pt;}
.y29{bottom:321.066667pt;}
.yc6{bottom:321.946667pt;}
.y8{bottom:322.666667pt;}
.y29e{bottom:324.186667pt;}
.ya5{bottom:327.466667pt;}
.y75{bottom:327.866667pt;}
.y19b{bottom:329.546667pt;}
.y14a{bottom:331.706667pt;}
.y262{bottom:333.786667pt;}
.y28f{bottom:336.666667pt;}
.y36c{bottom:336.906667pt;}
.y2ae{bottom:337.306667pt;}
.y1b2{bottom:341.386667pt;}
.y357{bottom:342.986667pt;}
.y196{bottom:346.986667pt;}
.y261{bottom:347.626667pt;}
.y100{bottom:347.706667pt;}
.y74{bottom:348.986667pt;}
.y287{bottom:350.506667pt;}
.y28{bottom:353.466667pt;}
.ya4{bottom:355.066667pt;}
.y1ee{bottom:355.626667pt;}
.y27e{bottom:356.106667pt;}
.yc3{bottom:356.586667pt;}
.y149{bottom:359.306667pt;}
.y11e{bottom:360.826667pt;}
.y55{bottom:360.906667pt;}
.y336{bottom:360.986667pt;}
.y260{bottom:361.386667pt;}
.y19a{bottom:362.826667pt;}
.y36b{bottom:364.506667pt;}
.y2a1{bottom:365.626667pt;}
.y29a{bottom:366.266667pt;}
.y310{bottom:366.346667pt;}
.y1b1{bottom:368.986667pt;}
.y356{bottom:370.586667pt;}
.y7{bottom:371.786667pt;}
.y195{bottom:374.586667pt;}
.y25f{bottom:375.253333pt;}
.y226{bottom:375.866667pt;}
.y73{bottom:376.586667pt;}
.y2f6{bottom:379.866667pt;}
.yff{bottom:381.946667pt;}
.y34e{bottom:382.106585pt;}
.ya3{bottom:382.666667pt;}
.y1ed{bottom:383.226667pt;}
.y349{bottom:384.693333pt;}
.y27{bottom:385.866667pt;}
.y148{bottom:386.906667pt;}
.y199{bottom:388.746667pt;}
.y11d{bottom:391.786667pt;}
.y36a{bottom:392.106667pt;}
.y28e{bottom:392.533333pt;}
.yc0{bottom:394.533333pt;}
.y355{bottom:398.186667pt;}
.y1b0{bottom:399.546667pt;}
.y54{bottom:399.866667pt;}
.y194{bottom:402.186667pt;}
.y1d6{bottom:402.746667pt;}
.y72{bottom:404.186667pt;}
.y2f5{bottom:405.946667pt;}
.y33a{bottom:407.733333pt;}
.y34d{bottom:409.733252pt;}
.ya2{bottom:410.266667pt;}
.y147{bottom:414.506667pt;}
.y1af{bottom:415.226667pt;}
.y6{bottom:417.786667pt;}
.y26{bottom:418.266667pt;}
.y2d5{bottom:418.933252pt;}
.y2f3{bottom:419.706667pt;}
.y2b2{bottom:419.973333pt;}
.y297{bottom:420.133333pt;}
.y1ec{bottom:421.466667pt;}
.y2d1{bottom:421.493333pt;}
.y223{bottom:421.946667pt;}
.y133{bottom:422.106667pt;}
.y354{bottom:425.786667pt;}
.y2f4{bottom:428.266667pt;}
.y1ae{bottom:429.706667pt;}
.y193{bottom:429.786667pt;}
.y20b{bottom:430.346667pt;}
.y33b{bottom:430.693333pt;}
.y71{bottom:431.786667pt;}
.yb9{bottom:434.293333pt;}
.y2a7{bottom:434.613333pt;}
.y1d5{bottom:436.106667pt;}
.y34c{bottom:437.333252pt;}
.ya1{bottom:437.866667pt;}
.y53{bottom:438.906667pt;}
.y119{bottom:440.506667pt;}
.y146{bottom:442.106667pt;}
.y1ad{bottom:444.186667pt;}
.y2f2{bottom:445.786667pt;}
.y369{bottom:447.306667pt;}
.y1eb{bottom:449.066667pt;}
.y222{bottom:449.546667pt;}
.y132{bottom:449.626667pt;}
.y25{bottom:450.666667pt;}
.y2{bottom:451.306667pt;}
.y34b{bottom:453.013333pt;}
.y353{bottom:453.386667pt;}
.y279{bottom:453.413333pt;}
.y320{bottom:453.733333pt;}
.y192{bottom:457.386667pt;}
.y20a{bottom:457.946667pt;}
.y70{bottom:459.386667pt;}
.y34f{bottom:460.666667pt;}
.y286{bottom:461.573333pt;}
.y2fd{bottom:461.946667pt;}
.y29c{bottom:462.853333pt;}
.ya0{bottom:465.466667pt;}
.y118{bottom:468.106667pt;}
.y1d4{bottom:469.226667pt;}
.y145{bottom:469.706667pt;}
.y2f1{bottom:469.946667pt;}
.y368{bottom:474.826667pt;}
.y1ea{bottom:476.746667pt;}
.y221{bottom:477.146667pt;}
.y131{bottom:477.226667pt;}
.y328{bottom:477.333333pt;}
.y241{bottom:477.493333pt;}
.y1ac{bottom:478.186667pt;}
.y52{bottom:479.946667pt;}
.y352{bottom:480.986667pt;}
.y24{bottom:483.146667pt;}
.y191{bottom:484.986667pt;}
.y209{bottom:485.546667pt;}
.y6f{bottom:486.986667pt;}
.yea{bottom:487.573252pt;}
.y2fc{bottom:488.026667pt;}
.y1d3{bottom:488.106667pt;}
.y2ad{bottom:489.813333pt;}
.y2d0{bottom:491.173333pt;}
.y2f0{bottom:492.266667pt;}
.y9f{bottom:493.066667pt;}
.y117{bottom:495.706667pt;}
.y144{bottom:497.306667pt;}
.y335{bottom:499.653333pt;}
.y33e{bottom:500.373333pt;}
.yb8{bottom:500.773252pt;}
.ye7{bottom:500.853333pt;}
.y367{bottom:502.426667pt;}
.y296{bottom:503.653333pt;}
.y23{bottom:504.506667pt;}
.y220{bottom:504.746667pt;}
.y130{bottom:504.826667pt;}
.y1e9{bottom:505.386667pt;}
.y351{bottom:508.586667pt;}
.y1ab{bottom:511.466667pt;}
.y2fb{bottom:512.186667pt;}
.y190{bottom:512.586667pt;}
.y208{bottom:513.146667pt;}
.y300{bottom:513.226667pt;}
.y6e{bottom:514.586667pt;}
.y28d{bottom:517.413333pt;}
.y278{bottom:518.053333pt;}
.y116{bottom:523.306667pt;}
.y143{bottom:524.906667pt;}
.y51{bottom:529.466667pt;}
.y366{bottom:530.026667pt;}
.y285{bottom:531.253333pt;}
.y1d2{bottom:532.186667pt;}
.y21f{bottom:532.346667pt;}
.y12f{bottom:532.426667pt;}
.y22{bottom:532.746667pt;}
.y1e8{bottom:534.026667pt;}
.y2fa{bottom:534.266667pt;}
.ye4{bottom:534.933333pt;}
.yb7{bottom:535.093252pt;}
.y350{bottom:536.186667pt;}
.y9e{bottom:536.666667pt;}
.y1aa{bottom:537.306667pt;}
.y376{bottom:537.786667pt;}
.y18f{bottom:540.186667pt;}
.y6d{bottom:542.186667pt;}
.y339{bottom:546.373333pt;}
.y207{bottom:547.706667pt;}
.y225{bottom:549.066667pt;}
.y115{bottom:550.906667pt;}
.y142{bottom:552.506667pt;}
.y365{bottom:557.626667pt;}
.y28c{bottom:559.493333pt;}
.y2ff{bottom:559.706667pt;}
.y1d1{bottom:559.786667pt;}
.y21e{bottom:559.946667pt;}
.y12e{bottom:560.026667pt;}
.y277{bottom:560.133333pt;}
.yfe{bottom:560.426667pt;}
.y21{bottom:560.986667pt;}
.y1e7{bottom:561.626667pt;}
.yb6{bottom:562.693252pt;}
.y375{bottom:563.866667pt;}
.y9d{bottom:564.266667pt;}
.y50{bottom:568.426667pt;}
.y34a{bottom:568.693333pt;}
.y31e{bottom:569.333333pt;}
.ye1{bottom:569.413333pt;}
.y6c{bottom:569.786667pt;}
.y168{bottom:570.186667pt;}
.y295{bottom:573.253333pt;}
.y30c{bottom:574.053333pt;}
.y18e{bottom:574.746667pt;}
.y114{bottom:578.426667pt;}
.y206{bottom:578.666667pt;}
.y2eb{bottom:579.706667pt;}
.y141{bottom:580.026667pt;}
.y1bc{bottom:580.266667pt;}
.y8e{bottom:583.066667pt;}
.y364{bottom:585.226667pt;}
.y374{bottom:586.186667pt;}
.y284{bottom:587.093333pt;}
.y1d0{bottom:587.386667pt;}
.y21d{bottom:587.546667pt;}
.y12d{bottom:587.626667pt;}
.yfd{bottom:588.026667pt;}
.y1e6{bottom:589.226667pt;}
.y20{bottom:589.306667pt;}
.yb5{bottom:590.293252pt;}
.y9c{bottom:591.866667pt;}
.y330{bottom:592.373333pt;}
.y1f9{bottom:593.466667pt;}
.y6b{bottom:597.386667pt;}
.y167{bottom:597.786667pt;}
.y8d{bottom:598.746667pt;}
.yde{bottom:603.333333pt;}
.y18d{bottom:605.733333pt;}
.y2ea{bottom:605.813333pt;}
.y113{bottom:606.053333pt;}
.y4f{bottom:607.493333pt;}
.y140{bottom:607.653333pt;}
.y363{bottom:612.853333pt;}
.y24b{bottom:614.053333pt;}
.y21c{bottom:615.173333pt;}
.y12c{bottom:615.253333pt;}
.yfc{bottom:615.653333pt;}
.y37d{bottom:617.253333pt;}
.y1f{bottom:617.573333pt;}
.yb4{bottom:617.893252pt;}
.y1e5{bottom:617.893333pt;}
.y9b{bottom:619.413333pt;}
.y1f8{bottom:621.093333pt;}
.y6a{bottom:625.013333pt;}
.y166{bottom:625.413333pt;}
.y8c{bottom:627.013333pt;}
.y283{bottom:629.173333pt;}
.y2e9{bottom:629.973333pt;}
.y2f7{bottom:631.893333pt;}
.y112{bottom:633.653333pt;}
.y13f{bottom:635.253333pt;}
.y334{bottom:638.373333pt;}
.y362{bottom:640.453333pt;}
.y21b{bottom:642.773333pt;}
.y12b{bottom:642.853333pt;}
.y299{bottom:642.933333pt;}
.yfb{bottom:643.253333pt;}
.y37c{bottom:643.333333pt;}
.y1e4{bottom:645.573333pt;}
.y1e{bottom:645.813333pt;}
.y4e{bottom:646.453333pt;}
.yd8{bottom:646.773333pt;}
.y9a{bottom:647.253333pt;}
.y1f7{bottom:648.693333pt;}
.y2e8{bottom:652.293333pt;}
.y69{bottom:652.613333pt;}
.y165{bottom:653.013333pt;}
.y8b{bottom:655.333333pt;}
.y294{bottom:656.773333pt;}
.y185{bottom:656.853333pt;}
.y111{bottom:661.253333pt;}
.y13e{bottom:662.853333pt;}
.y240{bottom:663.279919pt;}
.yb3{bottom:665.759919pt;}
.y37b{bottom:667.493333pt;}
.y361{bottom:668.053333pt;}
.y30b{bottom:670.453333pt;}
.yfa{bottom:670.853333pt;}
.y1d{bottom:674.133333pt;}
.y1e3{bottom:674.213333pt;}
.y99{bottom:674.853333pt;}
.y1f6{bottom:676.293333pt;}
.y21a{bottom:677.333333pt;}
.y68{bottom:680.213333pt;}
.y164{bottom:680.613333pt;}
.y8a{bottom:683.573333pt;}
.y184{bottom:684.453333pt;}
.y4d{bottom:685.493333pt;}
.y37a{bottom:689.813333pt;}
.y23d{bottom:690.639919pt;}
.y12a{bottom:690.693333pt;}
.y360{bottom:695.653333pt;}
.y198{bottom:696.133333pt;}
.y30a{bottom:698.053333pt;}
.yf9{bottom:698.453333pt;}
.y17b{bottom:699.733333pt;}
.y1e2{bottom:701.813333pt;}
.y1c{bottom:702.373333pt;}
.y98{bottom:702.453333pt;}
.y1f5{bottom:703.893333pt;}
.y11c{bottom:706.613333pt;}
.y67{bottom:707.813333pt;}
.y163{bottom:708.213333pt;}
.y219{bottom:708.293333pt;}
.y110{bottom:709.093333pt;}
.y13d{bottom:710.693333pt;}
.y89{bottom:711.813333pt;}
.y183{bottom:712.053333pt;}
.y238{bottom:714.453333pt;}
.y1cf{bottom:715.493333pt;}
.y23c{bottom:715.999919pt;}
.yb2{bottom:719.360000pt;}
.y197{bottom:720.373333pt;}
.y3c{bottom:722.453333pt;}
.y129{bottom:723.253333pt;}
.y224{bottom:725.653333pt;}
.yf8{bottom:726.053333pt;}
.y4c{bottom:726.533333pt;}
.y97{bottom:730.053333pt;}
.y1e1{bottom:730.453333pt;}
.y23b{bottom:730.719919pt;}
.y1f4{bottom:731.493333pt;}
.y23a{bottom:733.039919pt;}
.y17a{bottom:733.653333pt;}
.y239{bottom:735.359919pt;}
.y66{bottom:735.413333pt;}
.y162{bottom:735.813333pt;}
.y182{bottom:739.653333pt;}
.y88{bottom:740.133333pt;}
.y237{bottom:742.053333pt;}
.y2e3{bottom:742.613333pt;}
.y1b{bottom:743.173333pt;}
.y1ce{bottom:743.733333pt;}
.y3b{bottom:746.853333pt;}
.yaf{bottom:749.359919pt;}
.y46{bottom:750.293333pt;}
.y128{bottom:750.853333pt;}
.y212{bottom:753.253333pt;}
.yf7{bottom:753.653333pt;}
.y96{bottom:757.893333pt;}
.y1e0{bottom:758.053333pt;}
.y1cd{bottom:758.213333pt;}
.y1a{bottom:758.933333pt;}
.y10e{bottom:761.813333pt;}
.y65{bottom:763.013333pt;}
.y13b{bottom:763.413333pt;}
.y178{bottom:764.453333pt;}
.y1f3{bottom:766.053333pt;}
.y181{bottom:767.253333pt;}
.y3a{bottom:768.213333pt;}
.y2e2{bottom:770.213333pt;}
.y231{bottom:770.293333pt;}
.y45{bottom:775.333333pt;}
.y4b{bottom:776.053333pt;}
.y127{bottom:778.453333pt;}
.y211{bottom:780.853333pt;}
.y87{bottom:780.933333pt;}
.yf6{bottom:781.253333pt;}
.y1{bottom:782.133333pt;}
.y95{bottom:785.493333pt;}
.y1df{bottom:785.653333pt;}
.y1c7{bottom:786.453333pt;}
.y19{bottom:787.173333pt;}
.y10d{bottom:789.493333pt;}
.y236{bottom:789.893333pt;}
.y64{bottom:790.613333pt;}
.y161{bottom:791.013333pt;}
.y176{bottom:791.333333pt;}
.y205{bottom:793.253333pt;}
.y180{bottom:794.853333pt;}
.y39{bottom:796.533333pt;}
.y2e1{bottom:797.813333pt;}
.y230{bottom:797.893333pt;}
.y1f2{bottom:799.333333pt;}
.y13a{bottom:802.613333pt;}
.y126{bottom:806.053333pt;}
.y1a9{bottom:808.453333pt;}
.y86{bottom:808.533333pt;}
.yf5{bottom:808.853333pt;}
.y44{bottom:810.933333pt;}
.y94{bottom:813.093333pt;}
.y22d{bottom:813.573333pt;}
.y4a{bottom:817.093333pt;}
.y63{bottom:818.213333pt;}
.y160{bottom:818.533333pt;}
.y173{bottom:819.093333pt;}
.y204{bottom:820.853333pt;}
.y17f{bottom:822.453333pt;}
.y10b{bottom:824.213333pt;}
.y38{bottom:824.773333pt;}
.y2e0{bottom:825.413333pt;}
.y1de{bottom:833.493333pt;}
.y125{bottom:833.653333pt;}
.y1a8{bottom:836.053333pt;}
.y85{bottom:836.133333pt;}
.yf4{bottom:836.453333pt;}
.y138{bottom:837.253333pt;}
.y43{bottom:838.533333pt;}
.y93{bottom:840.693333pt;}
.y2df{bottom:841.093333pt;}
.y62{bottom:845.813333pt;}
.y203{bottom:848.453333pt;}
.y37{bottom:853.013333pt;}
.y235{bottom:854.453333pt;}
.y2de{bottom:855.573333pt;}
.y170{bottom:857.493333pt;}
.y109{bottom:858.853333pt;}
.y124{bottom:861.253333pt;}
.y1a7{bottom:863.653333pt;}
.y84{bottom:863.733333pt;}
.y42{bottom:866.133333pt;}
.y15f{bottom:866.373333pt;}
.y61{bottom:866.933333pt;}
.y22c{bottom:867.893333pt;}
.y92{bottom:868.293333pt;}
.y49{bottom:868.693333pt;}
.y2dd{bottom:870.053333pt;}
.y17e{bottom:870.293333pt;}
.y15{bottom:870.613333pt;}
.y137{bottom:871.093333pt;}
.y36{bottom:881.333333pt;}
.y234{bottom:882.053333pt;}
.y22b{bottom:882.373333pt;}
.yf3{bottom:884.293333pt;}
.y2d7{bottom:884.533333pt;}
.y202{bottom:886.693333pt;}
.y123{bottom:888.853333pt;}
.y1a6{bottom:891.253333pt;}
.y83{bottom:891.333333pt;}
.y41{bottom:893.733333pt;}
.y60{bottom:894.533333pt;}
.y91{bottom:895.893333pt;}
.y22a{bottom:896.853333pt;}
.y16d{bottom:897.173333pt;}
.y106{bottom:905.733333pt;}
.y34{bottom:909.573333pt;}
.y233{bottom:909.653333pt;}
.y1c4{bottom:911.333333pt;}
.y136{bottom:911.653333pt;}
.y201{bottom:914.373333pt;}
.y5f{bottom:915.733333pt;}
.y122{bottom:916.453333pt;}
.y48{bottom:918.293333pt;}
.y1a5{bottom:918.853333pt;}
.y82{bottom:918.933333pt;}
.y40{bottom:921.333333pt;}
.y15e{bottom:922.133333pt;}
.y232{bottom:937.253333pt;}
.y33{bottom:938.773333pt;}
.y90{bottom:939.733333pt;}
.y200{bottom:943.013333pt;}
.y17d{bottom:943.253333pt;}
.y5e{bottom:943.333333pt;}
.y121{bottom:944.053333pt;}
.y104{bottom:946.293333pt;}
.y1a4{bottom:946.453333pt;}
.y81{bottom:946.533333pt;}
.y3f{bottom:948.933333pt;}
.y159{bottom:952.933333pt;}
.y13{bottom:954.053333pt;}
.yf2{bottom:957.280000pt;}
.y47{bottom:959.360000pt;}
.y8f{bottom:967.360000pt;}
.y1ff{bottom:970.560000pt;}
.y120{bottom:971.680000pt;}
.y80{bottom:974.160000pt;}
.y3e{bottom:976.560000pt;}
.y32{bottom:979.120000pt;}
.y17c{bottom:989.280000pt;}
.y2d6{bottom:992.560000pt;}
.y5d{bottom:992.880000pt;}
.y1a3{bottom:994.320000pt;}
.y1fe{bottom:998.240000pt;}
.y11f{bottom:999.280000pt;}
.y103{bottom:1000.560000pt;}
.y7f{bottom:1001.760000pt;}
.y31{bottom:1005.520000pt;}
.y12{bottom:1019.360000pt;}
.yef{bottom:1019.920000pt;}
.y3d{bottom:1024.400000pt;}
.y7e{bottom:1029.360000pt;}
.y30{bottom:1031.680000pt;}
.y5c{bottom:1031.920000pt;}
.yee{bottom:1045.280000pt;}
.y10{bottom:1048.640000pt;}
.yed{bottom:1060.000000pt;}
.yec{bottom:1062.320000pt;}
.yeb{bottom:1064.640000pt;}
.ye{bottom:1069.306667pt;}
.yf{bottom:1078.640000pt;}
.h23{height:5.591463pt;}
.h39{height:13.760000pt;}
.h3a{height:13.840000pt;}
.h3f{height:13.866667pt;}
.h59{height:21.066667pt;}
.h2c{height:24.826667pt;}
.h36{height:26.240000pt;}
.h29{height:27.040000pt;}
.hc{height:27.600000pt;}
.ha{height:27.626667pt;}
.h2d{height:28.080000pt;}
.hf{height:28.560000pt;}
.h44{height:28.960000pt;}
.h20{height:31.920000pt;}
.h22{height:32.080000pt;}
.h21{height:32.480000pt;}
.h19{height:32.640000pt;}
.h2a{height:33.120000pt;}
.h2f{height:33.760000pt;}
.h28{height:34.000000pt;}
.h24{height:34.026667pt;}
.h1d{height:34.666667pt;}
.h18{height:35.946667pt;}
.h25{height:36.539062pt;}
.h2e{height:36.880000pt;}
.h35{height:37.680000pt;}
.h17{height:37.760000pt;}
.h1a{height:37.840000pt;}
.h2b{height:38.480000pt;}
.h34{height:39.040000pt;}
.h26{height:39.920000pt;}
.h3e{height:41.360000pt;}
.h1f{height:41.440000pt;}
.h50{height:41.466667pt;}
.h30{height:42.880000pt;}
.h3c{height:43.054688pt;}
.h32{height:43.451520pt;}
.h8{height:44.000000pt;}
.h6{height:44.500000pt;}
.h15{height:44.960000pt;}
.h68{height:46.026667pt;}
.h27{height:46.240000pt;}
.h7{height:47.934219pt;}
.h37{height:48.125000pt;}
.h33{height:48.480000pt;}
.h16{height:50.062500pt;}
.h62{height:50.066406pt;}
.hd{height:53.152969pt;}
.h42{height:53.680000pt;}
.h40{height:55.200000pt;}
.h4c{height:55.226667pt;}
.h3{height:55.736250pt;}
.h11{height:57.406250pt;}
.h61{height:58.406250pt;}
.h1b{height:58.640000pt;}
.h31{height:60.746667pt;}
.h2{height:61.076250pt;}
.h49{height:64.000000pt;}
.he{height:64.080000pt;}
.h1c{height:64.320000pt;}
.h9{height:66.750000pt;}
.h4d{height:68.960000pt;}
.h1e{height:68.986667pt;}
.h3d{height:69.040000pt;}
.h70{height:69.066667pt;}
.h41{height:76.637344pt;}
.h5{height:77.763750pt;}
.h38{height:82.746667pt;}
.hb{height:82.800000pt;}
.h60{height:87.786667pt;}
.h10{height:89.111250pt;}
.h6b{height:92.026667pt;}
.h4f{height:96.560000pt;}
.h52{height:96.586667pt;}
.h4a{height:96.666667pt;}
.h4e{height:110.346667pt;}
.h57{height:110.400000pt;}
.h4{height:111.138750pt;}
.h64{height:114.960000pt;}
.h72{height:115.040000pt;}
.h65{height:115.066667pt;}
.h3b{height:124.240000pt;}
.h48{height:124.266667pt;}
.h45{height:135.920000pt;}
.h6a{height:137.920000pt;}
.h67{height:138.000000pt;}
.h56{height:138.026667pt;}
.h4b{height:151.760000pt;}
.h53{height:151.786667pt;}
.h51{height:151.840000pt;}
.h5a{height:151.866667pt;}
.h6c{height:160.960000pt;}
.h6d{height:161.066667pt;}
.h43{height:165.520000pt;}
.h55{height:165.600000pt;}
.h46{height:165.626667pt;}
.h6f{height:183.946667pt;}
.h66{height:184.026667pt;}
.h5f{height:193.120000pt;}
.h5e{height:193.226667pt;}
.h5b{height:206.960000pt;}
.h69{height:206.986667pt;}
.h63{height:207.066667pt;}
.h58{height:220.826667pt;}
.h6e{height:229.946667pt;}
.h71{height:230.026667pt;}
.h5c{height:264.426667pt;}
.h54{height:276.026667pt;}
.h5d{height:305.866667pt;}
.h47{height:386.453333pt;}
.h13{height:793.333333pt;}
.h14{height:793.359919pt;}
.h12{height:793.360000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w3c{width:27.680000pt;}
.w39{width:28.320000pt;}
.w38{width:31.440000pt;}
.w3b{width:37.120000pt;}
.w2d{width:39.226667pt;}
.w37{width:39.600000pt;}
.w2e{width:41.040000pt;}
.w31{width:41.440000pt;}
.w30{width:42.320000pt;}
.w8{width:46.320000pt;}
.w3e{width:46.560000pt;}
.w3d{width:46.640000pt;}
.w3a{width:49.306667pt;}
.w33{width:56.080000pt;}
.w46{width:56.480000pt;}
.w41{width:65.200000pt;}
.w35{width:65.440000pt;}
.w34{width:65.546667pt;}
.w2f{width:67.600000pt;}
.w36{width:72.720000pt;}
.w47{width:74.960000pt;}
.w2c{width:75.920000pt;}
.w43{width:84.480000pt;}
.w13{width:93.200000pt;}
.w44{width:93.760000pt;}
.w42{width:93.786667pt;}
.w9{width:103.306667pt;}
.w19{width:107.040000pt;}
.w18{width:107.066667pt;}
.w1c{width:107.680000pt;}
.w17{width:109.920000pt;}
.w23{width:109.946667pt;}
.w1b{width:110.560000pt;}
.w28{width:112.720000pt;}
.w1d{width:117.386667pt;}
.w15{width:119.546667pt;}
.w16{width:120.160000pt;}
.w21{width:120.186667pt;}
.w1f{width:121.946667pt;}
.w29{width:122.266667pt;}
.w14{width:133.600000pt;}
.w3f{width:139.760000pt;}
.w1a{width:149.226667pt;}
.w12{width:150.186667pt;}
.wa{width:158.880000pt;}
.w25{width:159.626667pt;}
.w40{width:159.706667pt;}
.w2b{width:162.026667pt;}
.w48{width:186.106667pt;}
.w45{width:197.306667pt;}
.w6{width:223.226667pt;}
.w4{width:225.626667pt;}
.w2a{width:315.546667pt;}
.wc{width:320.426667pt;}
.wd{width:320.453333pt;}
.wb{width:350.213333pt;}
.w27{width:395.973333pt;}
.w32{width:415.306667pt;}
.w5{width:426.293333pt;}
.w7{width:429.253333pt;}
.w26{width:480.533333pt;}
.w20{width:519.093333pt;}
.w22{width:520.053333pt;}
.w1e{width:522.853333pt;}
.w24{width:530.293333pt;}
.w11{width:664.133333pt;}
.w3{width:664.240000pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.w10{width:1122.639983pt;}
.we{width:1122.640000pt;}
.wf{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xb{left:4.320000pt;}
.x28{left:6.640000pt;}
.x17{left:7.600000pt;}
.xa{left:9.600000pt;}
.x1c{left:12.800000pt;}
.x31{left:15.520000pt;}
.x29{left:17.200000pt;}
.x19{left:19.200000pt;}
.x1d{left:21.440000pt;}
.x2d{left:23.520000pt;}
.x2b{left:26.240000pt;}
.x26{left:27.840000pt;}
.x1a{left:29.920000pt;}
.x21{left:31.680000pt;}
.x20{left:33.040000pt;}
.x6a{left:34.800000pt;}
.x2a{left:37.760000pt;}
.x2f{left:39.760000pt;}
.x33{left:42.880000pt;}
.x24{left:43.840000pt;}
.x30{left:45.520000pt;}
.x32{left:47.200000pt;}
.x2c{left:50.586667pt;}
.x36{left:51.920000pt;}
.x37{left:55.280000pt;}
.x35{left:56.506667pt;}
.x2e{left:59.786667pt;}
.x34{left:63.440000pt;}
.x4{left:75.599988pt;}
.x9{left:78.000000pt;}
.x9d{left:81.119988pt;}
.x38{left:84.079988pt;}
.x82{left:89.599988pt;}
.x85{left:92.799988pt;}
.x15{left:94.559983pt;}
.x27{left:95.520000pt;}
.x14{left:96.960000pt;}
.x5c{left:98.239988pt;}
.x10{left:99.599988pt;}
.xe{left:123.200000pt;}
.x83{left:124.159988pt;}
.x95{left:142.160000pt;}
.x7{left:145.066655pt;}
.x2{left:146.026655pt;}
.x9c{left:149.546655pt;}
.x8b{left:150.506655pt;}
.x70{left:152.880000pt;}
.x8f{left:166.346655pt;}
.x90{left:170.266655pt;}
.x6d{left:171.946650pt;}
.x69{left:175.706655pt;}
.x12{left:180.026650pt;}
.x99{left:181.386655pt;}
.x4a{left:186.826667pt;}
.x71{left:192.746667pt;}
.x3d{left:194.266667pt;}
.x46{left:197.066667pt;}
.x44{left:198.826667pt;}
.x41{left:201.466655pt;}
.x9a{left:212.666655pt;}
.x45{left:223.466655pt;}
.x3{left:226.746655pt;}
.x8{left:233.306655pt;}
.x72{left:234.426667pt;}
.x4f{left:236.586667pt;}
.x89{left:238.346655pt;}
.x18{left:246.746667pt;}
.x6c{left:248.746650pt;}
.x51{left:251.626655pt;}
.x62{left:257.306655pt;}
.x3c{left:262.986655pt;}
.x56{left:271.546655pt;}
.x4e{left:273.626655pt;}
.x43{left:277.626655pt;}
.x5b{left:279.306655pt;}
.x48{left:285.866655pt;}
.x4c{left:288.266655pt;}
.x57{left:290.746655pt;}
.x5a{left:296.426655pt;}
.x5f{left:298.506655pt;}
.xd{left:300.106667pt;}
.xc{left:302.586667pt;}
.x49{left:303.786655pt;}
.x4b{left:306.186655pt;}
.x3a{left:312.266655pt;}
.x65{left:316.346655pt;}
.x8d{left:319.626655pt;}
.x3f{left:322.506655pt;}
.x40{left:329.386655pt;}
.x91{left:336.026655pt;}
.x1b{left:340.586667pt;}
.x73{left:345.626667pt;}
.x5e{left:357.546655pt;}
.x61{left:358.586655pt;}
.x87{left:362.826655pt;}
.x50{left:366.746655pt;}
.x93{left:370.666655pt;}
.xf{left:386.666667pt;}
.x74{left:387.706667pt;}
.x58{left:392.426667pt;}
.x6{left:396.666655pt;}
.x16{left:406.026650pt;}
.x94{left:415.866650pt;}
.x5d{left:428.613322pt;}
.x6f{left:436.986650pt;}
.x79{left:460.026667pt;}
.x52{left:472.933333pt;}
.x1e{left:474.826667pt;}
.x7a{left:489.066667pt;}
.x8c{left:510.693322pt;}
.x6e{left:535.893317pt;}
.x7b{left:539.093333pt;}
.x13{left:543.973317pt;}
.x3b{left:551.733322pt;}
.x59{left:555.093333pt;}
.x6b{left:561.333317pt;}
.x8a{left:564.693322pt;}
.x39{left:566.773322pt;}
.x11{left:569.493317pt;}
.x7c{left:576.853333pt;}
.x81{left:584.693322pt;}
.x53{left:586.293333pt;}
.x3e{left:590.773322pt;}
.x1f{left:595.093333pt;}
.x5{left:602.666667pt;}
.x7d{left:605.173333pt;}
.x63{left:612.053322pt;}
.x96{left:614.213333pt;}
.x88{left:616.693322pt;}
.x92{left:625.893322pt;}
.x42{left:629.493322pt;}
.x84{left:637.733322pt;}
.x7e{left:652.453333pt;}
.x9b{left:667.733322pt;}
.x97{left:671.413333pt;}
.x66{left:673.893322pt;}
.x67{left:674.933322pt;}
.x68{left:676.453322pt;}
.x60{left:680.133322pt;}
.x4d{left:686.373322pt;}
.x47{left:689.333322pt;}
.x64{left:690.719988pt;}
.x8e{left:695.039988pt;}
.x55{left:697.679988pt;}
.x54{left:699.839988pt;}
.x7f{left:709.173333pt;}
.x22{left:715.893333pt;}
.x1{left:717.759988pt;}
.x80{left:756.373333pt;}
.x86{left:771.679988pt;}
.x98{left:784.773333pt;}
.x75{left:803.653333pt;}
.x23{left:827.093333pt;}
.x76{left:860.373333pt;}
.x77{left:926.560000pt;}
.x25{left:935.440000pt;}
.x78{left:992.640000pt;}
}




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