
    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_55aaf426130255b6341a181e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_d914affe8a5aa1db89f0b6a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_cd457468d684459a3fd593d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_9d7842c572d8bcb45ae616e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0c590e53262b516c718afa29.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.892578;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_5f3e334f9845d8c6016394fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e00242cba52a57ca9efd255b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_d6b969778caa12984a34e911.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_80e286886b5d28f74691e3ad.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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_c12d26e02c21f75061ea06e7.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;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_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7950a4223edc6d0b7be84fa5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.697754;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:ff12;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-15.660000px;}
.lsb{letter-spacing:-14.220000px;}
.ls15{letter-spacing:-12.780000px;}
.ls17{letter-spacing:-12.060000px;}
.lsa{letter-spacing:-7.740000px;}
.ls25{letter-spacing:-1.332000px;}
.ls24{letter-spacing:-1.260000px;}
.ls2a{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.349800px;}
.ls14{letter-spacing:-0.315600px;}
.ls1a{letter-spacing:-0.269400px;}
.lse{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.089400px;}
.ls1c{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.119520px;}
.ls1b{letter-spacing:0.136200px;}
.ls2{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.153360px;}
.lsd{letter-spacing:0.178800px;}
.lsf{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.226080px;}
.ls13{letter-spacing:0.226200px;}
.ls11{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.298800px;}
.ls27{letter-spacing:0.324000px;}
.ls2c{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.370200px;}
.ls23{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.900000px;}
.ls2d{letter-spacing:21.780000px;}
.ls1{letter-spacing:48.420000px;}
.ls29{letter-spacing:66.882720px;}
.ls28{letter-spacing:66.906720px;}
.ls22{letter-spacing:97.122720px;}
.ls20{letter-spacing:97.146720px;}
.ls26{letter-spacing:105.948000px;}
.ls1e{letter-spacing:126.642720px;}
.ls1f{letter-spacing:126.666720px;}
.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;}
}
.ws10{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199800px;}
.ws15{word-spacing:-14.993280px;}
.wsd{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.220000px;}
.ws19{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.824000px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.790600px;}
.ws12{word-spacing:-11.710200px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws11{word-spacing:-10.990200px;}
.ws4{word-spacing:-10.980000px;}
.wsf{word-spacing:-10.666200px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-10.350600px;}
.ws9{word-spacing:-10.213800px;}
.wse{word-spacing:-10.124400px;}
.ws6{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
._2f{margin-left:-2819.376000px;}
._1b{margin-left:-2774.016000px;}
._30{margin-left:-2762.059680px;}
._1c{margin-left:-2717.387520px;}
._7{margin-left:-60.300000px;}
._14{margin-left:-4.220640px;}
._13{margin-left:-2.646000px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._4{width:2.328240px;}
._2{width:3.332640px;}
._12{width:4.751760px;}
._11{width:5.832240px;}
._10{width:7.119360px;}
._c{width:8.724960px;}
._25{width:10.218960px;}
._19{width:11.441520px;}
._18{width:12.456000px;}
._2b{width:13.772400px;}
._17{width:14.880000px;}
._9{width:16.064400px;}
._b{width:17.091360px;}
._a{width:18.167040px;}
._16{width:19.599840px;}
._15{width:20.628000px;}
._22{width:22.051440px;}
._21{width:23.246640px;}
._26{width:24.322320px;}
._f{width:25.512000px;}
._1d{width:26.832240px;}
._28{width:27.863760px;}
._32{width:29.037840px;}
._2a{width:30.417840px;}
._29{width:32.091120px;}
._1f{width:33.640080px;}
._20{width:34.785120px;}
._39{width:35.834160px;}
._35{width:37.045680px;}
._38{width:38.599440px;}
._33{width:39.615360px;}
._27{width:40.631280px;}
._37{width:41.946000px;}
._1e{width:43.141200px;}
._2e{width:44.999280px;}
._34{width:46.566720px;}
._23{width:48.106800px;}
._3b{width:49.285440px;}
._e{width:50.388720px;}
._d{width:51.746640px;}
._3a{width:52.827840px;}
._42{width:54.376080px;}
._24{width:55.810320px;}
._31{width:56.826240px;}
._3c{width:58.499520px;}
._49{width:59.819760px;}
._40{width:60.889920px;}
._3e{width:62.324160px;}
._3f{width:63.584640px;}
._5{width:65.496000px;}
._4a{width:67.063200px;}
._36{width:69.017280px;}
._3{width:71.160720px;}
._55{width:72.310800px;}
._44{width:73.320000px;}
._41{width:78.703920px;}
._2d{width:80.329920px;}
._2c{width:81.452880px;}
._48{width:83.600640px;}
._3d{width:85.929360px;}
._57{width:87.249600px;}
._46{width:88.284960px;}
._4e{width:90.935520px;}
._59{width:96.930240px;}
._58{width:98.066160px;}
._5a{width:100.193760px;}
._51{width:102.300720px;}
._43{width:105.834960px;}
._56{width:108.687840px;}
._4d{width:112.454160px;}
._47{width:115.934400px;}
._4f{width:121.731120px;}
._54{width:123.412560px;}
._52{width:125.610000px;}
._53{width:128.782800px;}
._4c{width:130.934160px;}
._45{width:139.300560px;}
._5d{width:161.112960px;}
._5c{width:165.181680px;}
._5b{width:166.491360px;}
._6{width:199.620000px;}
._1a{width:285.870000px;}
._50{width:317.385360px;}
._4b{width:353.487840px;}
._8{width:755.976000px;}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs13{font-size:6.000000px;}
.fsf{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs10{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs12{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs11{font-size:75.893905px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4e{bottom:-246.630000px;}
.y4d{bottom:-212.970000px;}
.y4c{bottom:-179.130000px;}
.y87{bottom:-169.605000px;}
.y4b{bottom:-145.470000px;}
.y86{bottom:-135.945000px;}
.y4a{bottom:-111.810000px;}
.y85{bottom:-102.105000px;}
.y49{bottom:-77.970000px;}
.y84{bottom:-68.445000px;}
.y48{bottom:-44.280000px;}
.y83{bottom:-34.560000px;}
.y89{bottom:-17.922750px;}
.y47{bottom:-10.440000px;}
.y82{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y39b{bottom:1.837500px;}
.y6f{bottom:2.340000px;}
.y13c{bottom:2.385000px;}
.y134{bottom:2.520000px;}
.y6{bottom:3.780000px;}
.y22e{bottom:4.500000px;}
.y140{bottom:4.680000px;}
.y77{bottom:5.370000px;}
.y160{bottom:5.760000px;}
.y165{bottom:6.480000px;}
.y154{bottom:6.840000px;}
.y75{bottom:7.020000px;}
.y149{bottom:7.380000px;}
.y46{bottom:7.740000px;}
.y145{bottom:8.100000px;}
.y130{bottom:8.280000px;}
.y168{bottom:8.310000px;}
.y13a{bottom:8.325000px;}
.y135{bottom:8.460000px;}
.y1cb{bottom:9.000000px;}
.y176{bottom:9.180000px;}
.y9{bottom:12.420000px;}
.y163{bottom:12.600000px;}
.y156{bottom:12.960000px;}
.y143{bottom:14.220000px;}
.y12d{bottom:14.400000px;}
.y14d{bottom:14.430000px;}
.y13b{bottom:14.445000px;}
.y132{bottom:14.580000px;}
.y1ed{bottom:15.300000px;}
.y1cc{bottom:15.480000px;}
.y234{bottom:16.200000px;}
.y180{bottom:16.380000px;}
.y6e{bottom:17.820000px;}
.y164{bottom:18.540000px;}
.y152{bottom:18.900000px;}
.y144{bottom:20.160000px;}
.y74{bottom:20.190000px;}
.y12b{bottom:20.520000px;}
.y45{bottom:21.600000px;}
.ya{bottom:21.780000px;}
.y225{bottom:21.960000px;}
.y175{bottom:23.040000px;}
.y7{bottom:23.220000px;}
.y8{bottom:24.480000px;}
.y155{bottom:25.020000px;}
.y12c{bottom:26.460000px;}
.y133{bottom:26.640000px;}
.y1ec{bottom:28.260000px;}
.y1d2{bottom:28.440000px;}
.y81{bottom:30.060000px;}
.y17f{bottom:30.240000px;}
.y153{bottom:30.960000px;}
.y236{bottom:32.040000px;}
.y73{bottom:33.150000px;}
.y6d{bottom:33.300000px;}
.y1ce{bottom:34.920000px;}
.yc{bottom:35.100000px;}
.y44{bottom:35.640000px;}
.y174{bottom:36.720000px;}
.y17a{bottom:37.080000px;}
.y23d{bottom:37.980000px;}
.y238{bottom:38.025000px;}
.y12e{bottom:38.520000px;}
.y1eb{bottom:41.220000px;}
.y1d1{bottom:41.400000px;}
.y80{bottom:43.200000px;}
.y17e{bottom:43.920000px;}
.y23b{bottom:43.965000px;}
.y230{bottom:44.820000px;}
.y6c{bottom:45.720000px;}
.y23f{bottom:45.900000px;}
.y72{bottom:46.290000px;}
.y8d{bottom:47.520000px;}
.y228{bottom:47.730000px;}
.y224{bottom:47.880000px;}
.y43{bottom:49.500000px;}
.y170{bottom:50.580000px;}
.y179{bottom:50.940000px;}
.y1ea{bottom:54.180000px;}
.y229{bottom:54.210000px;}
.y1d0{bottom:54.360000px;}
.y21b{bottom:54.405000px;}
.y7f{bottom:56.160000px;}
.y5{bottom:57.420000px;}
.y233{bottom:57.600000px;}
.y17d{bottom:57.780000px;}
.y242{bottom:57.810000px;}
.y23a{bottom:57.825000px;}
.y227{bottom:60.690000px;}
.y223{bottom:60.840000px;}
.y42{bottom:62.460000px;}
.y71{bottom:63.390000px;}
.y6b{bottom:63.540000px;}
.y88{bottom:63.780000px;}
.y173{bottom:64.440000px;}
.y178{bottom:64.620000px;}
.y8c{bottom:66.420000px;}
.y1e9{bottom:67.140000px;}
.y211{bottom:67.170000px;}
.y1cf{bottom:67.320000px;}
.y21a{bottom:67.365000px;}
.y7e{bottom:69.120000px;}
.y232{bottom:71.460000px;}
.y241{bottom:71.490000px;}
.y239{bottom:71.505000px;}
.y17c{bottom:71.640000px;}
.y222{bottom:73.800000px;}
.y172{bottom:78.120000px;}
.y1e8{bottom:80.100000px;}
.y210{bottom:80.130000px;}
.y221{bottom:80.280000px;}
.y219{bottom:80.325000px;}
.y6a{bottom:81.360000px;}
.y7d{bottom:82.260000px;}
.y231{bottom:85.320000px;}
.y17b{bottom:85.365000px;}
.y213{bottom:86.610000px;}
.y171{bottom:91.980000px;}
.y1e7{bottom:93.060000px;}
.y208{bottom:93.090000px;}
.y218{bottom:93.105000px;}
.y220{bottom:93.240000px;}
.y7c{bottom:95.220000px;}
.y207{bottom:99.000000px;}
.y69{bottom:99.180000px;}
.y212{bottom:99.570000px;}
.yd5{bottom:100.080000px;}
.y281{bottom:101.160000px;}
.y1c9{bottom:101.340000px;}
.y253{bottom:101.700000px;}
.ybf{bottom:103.320000px;}
.y261{bottom:105.660000px;}
.y1e6{bottom:106.020000px;}
.y20f{bottom:106.050000px;}
.y204{bottom:106.065000px;}
.y127{bottom:106.560000px;}
.y7b{bottom:108.180000px;}
.y378{bottom:109.260000px;}
.y16a{bottom:110.160000px;}
.y22c{bottom:110.340000px;}
.y399{bottom:111.240000px;}
.y1f3{bottom:112.320000px;}
.y21e{bottom:112.545000px;}
.yd4{bottom:112.860000px;}
.y106{bottom:115.200000px;}
.y40{bottom:116.280000px;}
.y68{bottom:117.000000px;}
.y1e5{bottom:118.800000px;}
.y20e{bottom:119.010000px;}
.y203{bottom:119.025000px;}
.y126{bottom:119.340000px;}
.y1c8{bottom:119.700000px;}
.y280{bottom:120.960000px;}
.y122{bottom:121.140000px;}
.y7a{bottom:121.320000px;}
.y252{bottom:121.500000px;}
.y2bf{bottom:122.760000px;}
.ybe{bottom:123.120000px;}
.y1f2{bottom:125.280000px;}
.y260{bottom:125.460000px;}
.y21d{bottom:125.505000px;}
.y22b{bottom:125.820000px;}
.y2f1{bottom:126.540000px;}
.y30b{bottom:127.440000px;}
.y377{bottom:129.240000px;}
.yd3{bottom:129.960000px;}
.y1e4{bottom:131.760000px;}
.y20d{bottom:131.970000px;}
.y202{bottom:131.985000px;}
.y79{bottom:133.560000px;}
.y169{bottom:134.280000px;}
.y67{bottom:134.820000px;}
.y105{bottom:135.000000px;}
.y3f{bottom:136.080000px;}
.y125{bottom:136.260000px;}
.y19f{bottom:136.620000px;}
.y1f1{bottom:138.240000px;}
.y21c{bottom:138.465000px;}
.y2be{bottom:138.600000px;}
.y1c7{bottom:139.500000px;}
.y27f{bottom:140.760000px;}
.y121{bottom:140.940000px;}
.y251{bottom:141.300000px;}
.ybd{bottom:142.920000px;}
.y2f0{bottom:143.820000px;}
.y1e3{bottom:144.720000px;}
.y20c{bottom:144.930000px;}
.y201{bottom:144.945000px;}
.y25f{bottom:145.260000px;}
.yd2{bottom:145.620000px;}
.y376{bottom:146.340000px;}
.y356{bottom:147.240000px;}
.y32f{bottom:150.660000px;}
.y1d5{bottom:151.200000px;}
.y124{bottom:151.740000px;}
.y66{bottom:152.865000px;}
.y104{bottom:154.800000px;}
.y3e{bottom:155.880000px;}
.y19e{bottom:156.420000px;}
.y1e2{bottom:157.680000px;}
.y20b{bottom:157.890000px;}
.y200{bottom:157.905000px;}
.y167{bottom:158.580000px;}
.y1c6{bottom:159.300000px;}
.y120{bottom:160.740000px;}
.y250{bottom:161.100000px;}
.y30a{bottom:162.000000px;}
.ybc{bottom:162.750000px;}
.y375{bottom:163.650000px;}
.y1d4{bottom:164.160000px;}
.y206{bottom:164.205000px;}
.y355{bottom:164.550000px;}
.y25e{bottom:165.270000px;}
.y65{bottom:166.365000px;}
.y32e{bottom:167.970000px;}
.y1e1{bottom:170.640000px;}
.y20a{bottom:170.670000px;}
.y1f5{bottom:170.685000px;}
.y217{bottom:170.865000px;}
.y2bd{bottom:173.190000px;}
.y103{bottom:174.630000px;}
.y64{bottom:175.005000px;}
.y3d{bottom:175.710000px;}
.y19d{bottom:176.250000px;}
.y1f0{bottom:177.120000px;}
.y205{bottom:177.165000px;}
.y2ef{bottom:178.410000px;}
.y1c5{bottom:179.310000px;}
.y27e{bottom:180.570000px;}
.y11f{bottom:180.750000px;}
.y374{bottom:180.930000px;}
.y24f{bottom:181.110000px;}
.y398{bottom:181.470000px;}
.y354{bottom:181.830000px;}
.ybb{bottom:182.730000px;}
.y1e0{bottom:183.600000px;}
.y209{bottom:183.630000px;}
.y1ff{bottom:183.645000px;}
.y216{bottom:183.825000px;}
.y25d{bottom:185.070000px;}
.y32d{bottom:185.250000px;}
.y1ef{bottom:190.080000px;}
.y2bc{bottom:190.470000px;}
.y63{bottom:192.825000px;}
.y102{bottom:194.610000px;}
.y3c{bottom:195.690000px;}
.y19c{bottom:196.050000px;}
.y309{bottom:196.410000px;}
.y1df{bottom:196.560000px;}
.y1fe{bottom:196.605000px;}
.y397{bottom:197.310000px;}
.y373{bottom:198.210000px;}
.y1c4{bottom:199.110000px;}
.y27d{bottom:200.370000px;}
.y11e{bottom:200.550000px;}
.y24e{bottom:200.910000px;}
.y299{bottom:201.810000px;}
.yba{bottom:202.530000px;}
.y1ee{bottom:203.040000px;}
.y25c{bottom:204.870000px;}
.y166{bottom:206.850000px;}
.y2bb{bottom:207.750000px;}
.y1de{bottom:209.340000px;}
.y1fd{bottom:209.565000px;}
.y62{bottom:210.645000px;}
.y2ee{bottom:212.790000px;}
.y308{bottom:213.690000px;}
.y101{bottom:214.410000px;}
.y396{bottom:214.590000px;}
.y372{bottom:215.490000px;}
.y19b{bottom:215.850000px;}
.y353{bottom:216.390000px;}
.y3b{bottom:216.750000px;}
.y1c3{bottom:218.910000px;}
.y32c{bottom:219.810000px;}
.y27c{bottom:220.170000px;}
.y11d{bottom:220.350000px;}
.y24d{bottom:220.710000px;}
.yb9{bottom:222.330000px;}
.y1dd{bottom:222.345000px;}
.y1fc{bottom:222.525000px;}
.y25b{bottom:224.670000px;}
.y298{bottom:224.850000px;}
.y61{bottom:228.465000px;}
.y2ed{bottom:230.070000px;}
.y162{bottom:230.970000px;}
.y395{bottom:231.870000px;}
.y371{bottom:232.770000px;}
.y352{bottom:233.490000px;}
.y3a{bottom:234.030000px;}
.y100{bottom:234.210000px;}
.y1dc{bottom:235.305000px;}
.y1fb{bottom:235.485000px;}
.y19a{bottom:235.830000px;}
.y32b{bottom:237.090000px;}
.y1c2{bottom:238.710000px;}
.y27b{bottom:239.970000px;}
.y11c{bottom:240.150000px;}
.y24c{bottom:240.510000px;}
.yb8{bottom:242.130000px;}
.y39{bottom:242.490000px;}
.y25a{bottom:244.470000px;}
.y4f{bottom:244.830000px;}
.y297{bottom:246.090000px;}
.y60{bottom:246.465000px;}
.y2ec{bottom:247.350000px;}
.y307{bottom:248.250000px;}
.y1db{bottom:248.265000px;}
.y1fa{bottom:248.445000px;}
.y394{bottom:249.150000px;}
.y370{bottom:249.870000px;}
.y351{bottom:250.770000px;}
.yff{bottom:254.010000px;}
.y32a{bottom:254.190000px;}
.y199{bottom:255.630000px;}
.y1c1{bottom:258.510000px;}
.y2ba{bottom:259.410000px;}
.y11b{bottom:259.950000px;}
.y24b{bottom:260.310000px;}
.y1da{bottom:261.225000px;}
.y1f9{bottom:261.405000px;}
.yb7{bottom:261.930000px;}
.y38{bottom:262.650000px;}
.y161{bottom:263.370000px;}
.y5f{bottom:264.285000px;}
.y259{bottom:264.450000px;}
.y2eb{bottom:264.630000px;}
.y306{bottom:265.530000px;}
.y296{bottom:265.890000px;}
.y393{bottom:266.250000px;}
.y36f{bottom:267.150000px;}
.y350{bottom:268.050000px;}
.y329{bottom:271.110000px;}
.yfe{bottom:273.810000px;}
.y1d9{bottom:274.185000px;}
.y198{bottom:275.430000px;}
.y37{bottom:275.610000px;}
.y2b9{bottom:276.690000px;}
.y15f{bottom:278.310000px;}
.y1c0{bottom:278.490000px;}
.y27a{bottom:279.750000px;}
.y11a{bottom:279.930000px;}
.y24a{bottom:280.290000px;}
.yb6{bottom:281.910000px;}
.y5e{bottom:282.105000px;}
.y305{bottom:282.810000px;}
.y392{bottom:283.530000px;}
.y258{bottom:284.250000px;}
.y36e{bottom:284.430000px;}
.y34f{bottom:285.330000px;}
.y295{bottom:285.870000px;}
.y328{bottom:286.770000px;}
.y1d8{bottom:287.145000px;}
.y36{bottom:291.270000px;}
.y1f4{bottom:293.070000px;}
.yfd{bottom:293.790000px;}
.y2b8{bottom:293.970000px;}
.y197{bottom:295.230000px;}
.y15e{bottom:297.210000px;}
.y5d{bottom:297.585000px;}
.y1bf{bottom:298.290000px;}
.y2ea{bottom:299.190000px;}
.y279{bottom:299.550000px;}
.y119{bottom:299.730000px;}
.y304{bottom:299.910000px;}
.y249{bottom:300.090000px;}
.y1d7{bottom:300.105000px;}
.y391{bottom:300.810000px;}
.yb5{bottom:301.710000px;}
.y327{bottom:302.610000px;}
.y257{bottom:304.050000px;}
.y294{bottom:305.670000px;}
.y35{bottom:308.010000px;}
.y5c{bottom:309.825000px;}
.y2b7{bottom:311.250000px;}
.y1d6{bottom:312.885000px;}
.y1f8{bottom:313.065000px;}
.yfc{bottom:313.590000px;}
.y196{bottom:315.030000px;}
.y2e9{bottom:316.290000px;}
.y303{bottom:317.190000px;}
.y1be{bottom:318.090000px;}
.y36d{bottom:318.990000px;}
.y278{bottom:319.350000px;}
.y118{bottom:319.530000px;}
.y37b{bottom:319.710000px;}
.y248{bottom:319.890000px;}
.y15d{bottom:321.330000px;}
.yb4{bottom:321.510000px;}
.y256{bottom:323.850000px;}
.y293{bottom:325.470000px;}
.y1f7{bottom:326.025000px;}
.y5b{bottom:327.645000px;}
.y2b6{bottom:328.350000px;}
.y34{bottom:331.770000px;}
.yfb{bottom:333.390000px;}
.y2e8{bottom:333.570000px;}
.y302{bottom:334.470000px;}
.y195{bottom:335.010000px;}
.y390{bottom:335.370000px;}
.y36c{bottom:336.270000px;}
.y326{bottom:336.990000px;}
.y1bd{bottom:337.890000px;}
.y1f6{bottom:339.015000px;}
.y277{bottom:339.150000px;}
.y117{bottom:339.330000px;}
.y247{bottom:339.690000px;}
.yb3{bottom:341.310000px;}
.y255{bottom:343.650000px;}
.y292{bottom:345.270000px;}
.y15c{bottom:345.450000px;}
.y2b5{bottom:345.630000px;}
.y5a{bottom:345.645000px;}
.y2e7{bottom:350.850000px;}
.y301{bottom:351.750000px;}
.y38f{bottom:352.650000px;}
.yfa{bottom:353.190000px;}
.y36b{bottom:353.370000px;}
.y325{bottom:354.270000px;}
.y194{bottom:354.810000px;}
.y33{bottom:355.530000px;}
.y1bc{bottom:357.690000px;}
.y276{bottom:358.950000px;}
.y116{bottom:359.130000px;}
.y246{bottom:360.930000px;}
.yb2{bottom:361.110000px;}
.y2b4{bottom:362.910000px;}
.y59{bottom:363.465000px;}
.y254{bottom:363.630000px;}
.y291{bottom:365.070000px;}
.y2e6{bottom:368.130000px;}
.y300{bottom:369.030000px;}
.y15b{bottom:369.570000px;}
.y38e{bottom:369.750000px;}
.y36a{bottom:370.650000px;}
.y324{bottom:371.550000px;}
.yf9{bottom:372.990000px;}
.y193{bottom:374.610000px;}
.y1bb{bottom:377.670000px;}
.y275{bottom:378.930000px;}
.y115{bottom:379.110000px;}
.y32{bottom:379.470000px;}
.y2b3{bottom:380.190000px;}
.yb1{bottom:381.090000px;}
.y58{bottom:381.315000px;}
.y245{bottom:384.690000px;}
.y290{bottom:385.050000px;}
.y2e5{bottom:385.410000px;}
.y2ff{bottom:386.130000px;}
.y38d{bottom:387.030000px;}
.y369{bottom:387.930000px;}
.y323{bottom:388.830000px;}
.yf8{bottom:393.015000px;}
.y15a{bottom:393.735000px;}
.y192{bottom:394.455000px;}
.y1ba{bottom:397.515000px;}
.y274{bottom:398.775000px;}
.y114{bottom:398.955000px;}
.y57{bottom:399.135000px;}
.yb0{bottom:400.935000px;}
.y2e4{bottom:402.555000px;}
.y31{bottom:403.275000px;}
.y2fe{bottom:403.455000px;}
.y244{bottom:403.635000px;}
.y38c{bottom:404.355000px;}
.y28f{bottom:404.895000px;}
.y368{bottom:405.255000px;}
.y322{bottom:406.155000px;}
.yf7{bottom:412.815000px;}
.y191{bottom:414.255000px;}
.y2b2{bottom:414.795000px;}
.y56{bottom:416.955000px;}
.y1b9{bottom:417.315000px;}
.y159{bottom:417.855000px;}
.y273{bottom:418.575000px;}
.y113{bottom:418.755000px;}
.y2e3{bottom:419.835000px;}
.yaf{bottom:420.735000px;}
.y38b{bottom:421.635000px;}
.y367{bottom:422.535000px;}
.y321{bottom:423.255000px;}
.y28e{bottom:424.695000px;}
.y30{bottom:427.035000px;}
.y55{bottom:430.455000px;}
.y2b1{bottom:431.895000px;}
.yf6{bottom:432.615000px;}
.y190{bottom:434.235000px;}
.y78{bottom:435.135000px;}
.y1b8{bottom:437.115000px;}
.y2fd{bottom:438.015000px;}
.y272{bottom:438.375000px;}
.y112{bottom:438.555000px;}
.y38a{bottom:438.915000px;}
.y54{bottom:439.095000px;}
.y366{bottom:439.815000px;}
.yae{bottom:440.535000px;}
.y158{bottom:441.975000px;}
.y28d{bottom:444.495000px;}
.y2f{bottom:447.735000px;}
.y2b0{bottom:449.175000px;}
.yf5{bottom:452.415000px;}
.y18f{bottom:454.035000px;}
.y157{bottom:454.215000px;}
.y2e2{bottom:454.395000px;}
.y2fc{bottom:455.295000px;}
.y389{bottom:456.195000px;}
.y1b7{bottom:456.915000px;}
.y53{bottom:457.095000px;}
.yd1{bottom:457.455000px;}
.y320{bottom:457.815000px;}
.y271{bottom:458.175000px;}
.y111{bottom:458.355000px;}
.yad{bottom:460.335000px;}
.y22a{bottom:463.935000px;}
.y28c{bottom:464.295000px;}
.y2af{bottom:466.455000px;}
.y2e{bottom:467.355000px;}
.y2e1{bottom:471.675000px;}
.yf4{bottom:472.215000px;}
.y2fb{bottom:472.575000px;}
.y388{bottom:473.295000px;}
.y18e{bottom:473.835000px;}
.y365{bottom:474.195000px;}
.y52{bottom:474.915000px;}
.y31f{bottom:475.095000px;}
.y1b6{bottom:476.895000px;}
.yd0{bottom:477.255000px;}
.y270{bottom:478.155000px;}
.y110{bottom:478.335000px;}
.yac{bottom:480.315000px;}
.y2d{bottom:481.395000px;}
.y2ae{bottom:483.735000px;}
.y28b{bottom:485.535000px;}
.y243{bottom:486.435000px;}
.y2e0{bottom:488.955000px;}
.y2fa{bottom:489.675000px;}
.y2c{bottom:489.855000px;}
.y387{bottom:490.575000px;}
.y364{bottom:491.475000px;}
.yf3{bottom:492.195000px;}
.y31e{bottom:492.375000px;}
.y51{bottom:492.735000px;}
.y18d{bottom:493.635000px;}
.y1b5{bottom:496.695000px;}
.ycf{bottom:497.055000px;}
.y26f{bottom:497.955000px;}
.y10f{bottom:498.135000px;}
.yab{bottom:500.115000px;}
.y2ad{bottom:501.015000px;}
.y151{bottom:502.455000px;}
.y2df{bottom:506.055000px;}
.y2f9{bottom:506.955000px;}
.y386{bottom:507.855000px;}
.y363{bottom:508.755000px;}
.y28a{bottom:509.295000px;}
.y31d{bottom:509.655000px;}
.y50{bottom:510.555000px;}
.yf2{bottom:511.995000px;}
.y2b{bottom:513.075000px;}
.y18c{bottom:513.435000px;}
.y1b4{bottom:516.495000px;}
.yce{bottom:516.855000px;}
.y26e{bottom:517.755000px;}
.y10e{bottom:517.935000px;}
.y2ac{bottom:518.295000px;}
.yaa{bottom:519.915000px;}
.y2de{bottom:523.335000px;}
.y2f8{bottom:524.235000px;}
.y385{bottom:525.135000px;}
.y362{bottom:526.035000px;}
.y31c{bottom:526.755000px;}
.yf1{bottom:531.795000px;}
.y289{bottom:532.335000px;}
.y18b{bottom:533.415000px;}
.y2ab{bottom:535.395000px;}
.y1b3{bottom:536.295000px;}
.y2a{bottom:536.475000px;}
.ycd{bottom:536.655000px;}
.y26d{bottom:537.555000px;}
.y10d{bottom:537.735000px;}
.ya9{bottom:539.715000px;}
.y2dd{bottom:540.615000px;}
.y2f7{bottom:541.515000px;}
.y384{bottom:542.415000px;}
.y361{bottom:543.135000px;}
.y31b{bottom:544.035000px;}
.y150{bottom:547.635000px;}
.yf0{bottom:551.595000px;}
.y2aa{bottom:552.675000px;}
.y18a{bottom:553.215000px;}
.y288{bottom:553.575000px;}
.y1b2{bottom:556.095000px;}
.ycc{bottom:556.635000px;}
.y26c{bottom:557.355000px;}
.y10c{bottom:557.535000px;}
.y2dc{bottom:557.895000px;}
.y2f6{bottom:558.795000px;}
.ya8{bottom:559.515000px;}
.y29{bottom:559.695000px;}
.y360{bottom:560.415000px;}
.y31a{bottom:561.315000px;}
.y240{bottom:569.235000px;}
.y2a9{bottom:569.955000px;}
.yef{bottom:571.395000px;}
.y14f{bottom:571.755000px;}
.y16c{bottom:572.655000px;}
.y189{bottom:573.015000px;}
.y287{bottom:573.375000px;}
.y2db{bottom:575.175000px;}
.y1b1{bottom:575.895000px;}
.y2f5{bottom:576.075000px;}
.ycb{bottom:576.435000px;}
.y383{bottom:576.795000px;}
.y26b{bottom:577.335000px;}
.y10b{bottom:577.515000px;}
.y35f{bottom:577.695000px;}
.y319{bottom:578.595000px;}
.ya7{bottom:579.495000px;}
.y226{bottom:580.395000px;}
.y14e{bottom:583.815000px;}
.y2a8{bottom:587.235000px;}
.yee{bottom:591.375000px;}
.y2da{bottom:592.455000px;}
.y188{bottom:592.815000px;}
.y2f4{bottom:593.175000px;}
.y286{bottom:593.355000px;}
.y16b{bottom:594.075000px;}
.y35e{bottom:594.975000px;}
.y1b0{bottom:595.875000px;}
.yca{bottom:596.235000px;}
.y26a{bottom:597.135000px;}
.y10a{bottom:597.315000px;}
.ya6{bottom:599.295000px;}
.y2a7{bottom:604.515000px;}
.y14c{bottom:608.115000px;}
.y2d9{bottom:609.555000px;}
.y2f3{bottom:610.455000px;}
.yed{bottom:611.175000px;}
.y37a{bottom:611.355000px;}
.y35d{bottom:612.255000px;}
.y187{bottom:612.615000px;}
.y318{bottom:612.795000px;}
.y70{bottom:613.155000px;}
.y28{bottom:614.955000px;}
.y1af{bottom:615.675000px;}
.yc9{bottom:616.035000px;}
.y269{bottom:616.935000px;}
.y109{bottom:618.375000px;}
.ya5{bottom:619.095000px;}
.y2a6{bottom:621.615000px;}
.y2d8{bottom:626.865000px;}
.y2f2{bottom:627.585000px;}
.y338{bottom:627.765000px;}
.y317{bottom:628.665000px;}
.y35c{bottom:629.565000px;}
.y34e{bottom:630.285000px;}
.y27{bottom:630.465000px;}
.yec{bottom:631.005000px;}
.y14b{bottom:632.265000px;}
.y186{bottom:632.625000px;}
.y285{bottom:632.985000px;}
.y1ae{bottom:635.505000px;}
.yc8{bottom:635.865000px;}
.y268{bottom:636.765000px;}
.ya4{bottom:638.925000px;}
.y108{bottom:642.165000px;}
.y1d3{bottom:642.525000px;}
.y2d7{bottom:644.145000px;}
.y337{bottom:645.045000px;}
.y26{bottom:645.945000px;}
.y35b{bottom:646.665000px;}
.y34d{bottom:647.565000px;}
.y123{bottom:650.445000px;}
.yeb{bottom:650.805000px;}
.y23e{bottom:652.065000px;}
.y185{bottom:652.425000px;}
.y284{bottom:652.785000px;}
.y1ad{bottom:655.305000px;}
.yc7{bottom:655.845000px;}
.y14a{bottom:656.385000px;}
.y267{bottom:656.565000px;}
.ya3{bottom:658.725000px;}
.y2a5{bottom:659.985000px;}
.y25{bottom:661.425000px;}
.y336{bottom:662.325000px;}
.y107{bottom:663.045000px;}
.y35a{bottom:663.945000px;}
.y34c{bottom:664.845000px;}
.yea{bottom:670.605000px;}
.y184{bottom:672.225000px;}
.y283{bottom:673.845000px;}
.y1ac{bottom:675.105000px;}
.yc6{bottom:675.645000px;}
.y266{bottom:676.545000px;}
.y24{bottom:677.085000px;}
.ya2{bottom:678.705000px;}
.y335{bottom:679.425000px;}
.y316{bottom:680.325000px;}
.y148{bottom:680.505000px;}
.y359{bottom:681.225000px;}
.y34b{bottom:682.125000px;}
.y2a4{bottom:682.665000px;}
.y23{bottom:687.705000px;}
.ye9{bottom:690.585000px;}
.y183{bottom:692.025000px;}
.y1ab{bottom:695.085000px;}
.yc5{bottom:695.445000px;}
.y2d6{bottom:695.985000px;}
.y265{bottom:696.345000px;}
.y21f{bottom:696.705000px;}
.y282{bottom:697.065000px;}
.y41{bottom:697.245000px;}
.y315{bottom:697.605000px;}
.ya1{bottom:698.505000px;}
.y34a{bottom:699.405000px;}
.y2a3{bottom:702.465000px;}
.y22{bottom:702.645000px;}
.y147{bottom:702.825000px;}
.ye8{bottom:710.385000px;}
.y182{bottom:711.825000px;}
.y2d5{bottom:713.085000px;}
.y334{bottom:713.985000px;}
.y1aa{bottom:714.885000px;}
.yc4{bottom:715.245000px;}
.y358{bottom:715.785000px;}
.y264{bottom:716.145000px;}
.y349{bottom:716.685000px;}
.ya0{bottom:718.305000px;}
.y21{bottom:720.465000px;}
.y2a2{bottom:722.265000px;}
.y146{bottom:726.945000px;}
.ye7{bottom:730.185000px;}
.y2d4{bottom:730.365000px;}
.y39a{bottom:731.085000px;}
.y333{bottom:731.265000px;}
.y379{bottom:731.805000px;}
.y314{bottom:732.165000px;}
.y181{bottom:733.065000px;}
.y20{bottom:733.245000px;}
.y348{bottom:733.785000px;}
.y23c{bottom:734.865000px;}
.yc3{bottom:735.045000px;}
.y1a9{bottom:735.945000px;}
.y9f{bottom:738.105000px;}
.y142{bottom:739.005000px;}
.y2a1{bottom:743.325000px;}
.y1f{bottom:746.205000px;}
.y2d3{bottom:747.645000px;}
.y332{bottom:748.545000px;}
.y313{bottom:749.445000px;}
.ye6{bottom:749.985000px;}
.y347{bottom:751.065000px;}
.yc2{bottom:755.025000px;}
.y263{bottom:755.745000px;}
.y9e{bottom:757.905000px;}
.y1a8{bottom:759.705000px;}
.y1e{bottom:760.245000px;}
.y2d2{bottom:764.925000px;}
.y2a0{bottom:765.825000px;}
.y312{bottom:766.545000px;}
.y346{bottom:768.345000px;}
.ye5{bottom:769.785000px;}
.y141{bottom:774.825000px;}
.y1d{bottom:775.185000px;}
.yc1{bottom:776.085000px;}
.y262{bottom:776.985000px;}
.y9d{bottom:777.885000px;}
.y177{bottom:779.685000px;}
.y2d1{bottom:782.205000px;}
.y1a7{bottom:782.385000px;}
.y331{bottom:782.925000px;}
.y311{bottom:783.825000px;}
.y345{bottom:785.625000px;}
.y29f{bottom:785.805000px;}
.y1c{bottom:786.345000px;}
.ye4{bottom:789.765000px;}
.yc0{bottom:796.785000px;}
.y9c{bottom:797.685000px;}
.y13f{bottom:798.945000px;}
.y2d0{bottom:799.305000px;}
.y215{bottom:800.205000px;}
.y310{bottom:801.105000px;}
.y1a6{bottom:802.185000px;}
.y344{bottom:802.905000px;}
.y29e{bottom:805.605000px;}
.y1b{bottom:809.025000px;}
.ye3{bottom:809.565000px;}
.y13e{bottom:815.865000px;}
.y2cf{bottom:816.585000px;}
.y330{bottom:817.305000px;}
.y9b{bottom:817.485000px;}
.y237{bottom:817.665000px;}
.y357{bottom:818.025000px;}
.y30f{bottom:818.385000px;}
.y343{bottom:820.005000px;}
.y1a5{bottom:821.985000px;}
.y29d{bottom:826.665000px;}
.y13d{bottom:827.925000px;}
.y1a{bottom:828.285000px;}
.ye2{bottom:829.365000px;}
.y2ce{bottom:833.865000px;}
.y30e{bottom:835.665000px;}
.y9a{bottom:837.285000px;}
.y1a4{bottom:843.045000px;}
.y19{bottom:846.645000px;}
.ye1{bottom:849.165000px;}
.y2cd{bottom:851.145000px;}
.y139{bottom:852.045000px;}
.y30d{bottom:852.990000px;}
.y342{bottom:854.610000px;}
.y99{bottom:857.130000px;}
.y18{bottom:860.550000px;}
.y1a3{bottom:866.850000px;}
.y2cc{bottom:868.470000px;}
.ye0{bottom:869.010000px;}
.y30c{bottom:869.910000px;}
.y382{bottom:870.090000px;}
.y341{bottom:871.890000px;}
.y17{bottom:874.230000px;}
.y138{bottom:876.210000px;}
.y16f{bottom:876.390000px;}
.y98{bottom:877.110000px;}
.y2cb{bottom:885.750000px;}
.y1a2{bottom:886.650000px;}
.y381{bottom:887.370000px;}
.ydf{bottom:888.990000px;}
.y16{bottom:889.170000px;}
.y1a1{bottom:896.550000px;}
.y97{bottom:896.910000px;}
.y15{bottom:899.610000px;}
.y137{bottom:900.330000px;}
.y235{bottom:900.510000px;}
.y2ca{bottom:902.850000px;}
.y380{bottom:904.650000px;}
.y340{bottom:906.450000px;}
.yde{bottom:908.790000px;}
.y14{bottom:914.010000px;}
.y96{bottom:916.710000px;}
.y2c9{bottom:920.130000px;}
.y37f{bottom:921.930000px;}
.y33f{bottom:923.550000px;}
.y136{bottom:924.450000px;}
.ydd{bottom:928.590000px;}
.y13{bottom:935.250000px;}
.y95{bottom:936.510000px;}
.y2c8{bottom:937.410000px;}
.y37e{bottom:939.210000px;}
.y33e{bottom:940.830000px;}
.ydc{bottom:948.390000px;}
.y131{bottom:948.570000px;}
.y12{bottom:954.510000px;}
.y2c7{bottom:954.690000px;}
.y22f{bottom:955.770000px;}
.y94{bottom:956.310000px;}
.y33d{bottom:958.110000px;}
.y1cd{bottom:965.850000px;}
.ydb{bottom:968.190000px;}
.y2c6{bottom:971.970000px;}
.y37d{bottom:973.590000px;}
.y33c{bottom:975.390000px;}
.y93{bottom:976.290000px;}
.y11{bottom:982.050000px;}
.y12f{bottom:984.930000px;}
.yda{bottom:988.170000px;}
.y16e{bottom:988.530000px;}
.y2c5{bottom:989.250000px;}
.y37c{bottom:990.510000px;}
.y33b{bottom:992.670000px;}
.y92{bottom:996.090000px;}
.y1a0{bottom:1003.110000px;}
.y2c4{bottom:1006.350000px;}
.y10{bottom:1006.890000px;}
.yd9{bottom:1007.970000px;}
.y12a{bottom:1009.050000px;}
.y29c{bottom:1009.230000px;}
.y33a{bottom:1009.590000px;}
.y91{bottom:1015.890000px;}
.y16d{bottom:1018.590000px;}
.yf{bottom:1021.110000px;}
.y2c3{bottom:1023.630000px;}
.y339{bottom:1025.070000px;}
.yd8{bottom:1027.770000px;}
.y29b{bottom:1031.730000px;}
.y76{bottom:1031.760000px;}
.y90{bottom:1035.690000px;}
.ye{bottom:1036.590000px;}
.y2c2{bottom:1040.910000px;}
.y1ca{bottom:1045.770000px;}
.yd7{bottom:1048.830000px;}
.y29a{bottom:1051.530000px;}
.yd{bottom:1052.250000px;}
.y22d{bottom:1054.590000px;}
.y8f{bottom:1055.490000px;}
.y2c1{bottom:1058.190000px;}
.y129{bottom:1059.630000px;}
.y214{bottom:1061.250000px;}
.y4{bottom:1069.350000px;}
.yd6{bottom:1072.590000px;}
.y8e{bottom:1075.290000px;}
.y2c0{bottom:1075.470000px;}
.y128{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.yb{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y8b{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y8a{bottom:1122.660000px;}
.h20{height:4.064063px;}
.h9{height:5.163750px;}
.h57{height:6.257812px;}
.h30{height:12.060000px;}
.h3a{height:12.240000px;}
.h5{height:13.500000px;}
.h3c{height:14.940000px;}
.h50{height:15.840000px;}
.h35{height:16.920000px;}
.h3b{height:18.900000px;}
.h1c{height:21.300469px;}
.h42{height:21.912188px;}
.h26{height:22.140000px;}
.h37{height:22.320000px;}
.h3e{height:23.580000px;}
.h32{height:24.120000px;}
.h34{height:24.156000px;}
.h38{height:24.300000px;}
.h1f{height:25.400391px;}
.h45{height:25.920000px;}
.h4b{height:25.956000px;}
.h1a{height:26.144116px;}
.h12{height:27.109688px;}
.h1d{height:29.464453px;}
.h25{height:30.410156px;}
.h16{height:30.963516px;}
.h46{height:32.004492px;}
.h3d{height:32.400000px;}
.h22{height:32.868281px;}
.h11{height:32.942109px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h2e{height:34.419375px;}
.hd{height:35.120039px;}
.h36{height:35.820000px;}
.h33{height:36.360000px;}
.h8{height:37.437188px;}
.h44{height:38.100586px;}
.hc{height:39.313477px;}
.h18{height:40.664531px;}
.h2c{height:41.493516px;}
.hf{height:42.164648px;}
.h13{height:43.246406px;}
.h39{height:45.180000px;}
.h3{height:45.828281px;}
.h19{height:45.992812px;}
.hb{height:48.224531px;}
.h31{height:48.240000px;}
.h1b{height:48.410156px;}
.h2a{height:49.255313px;}
.h15{height:50.800781px;}
.h56{height:50.992031px;}
.h2b{height:52.171875px;}
.h2d{height:52.288232px;}
.h28{height:52.998047px;}
.h6{height:53.573906px;}
.h52{height:55.260000px;}
.h17{height:55.291992px;}
.h55{height:59.383125px;}
.h2{height:59.436914px;}
.h10{height:61.197188px;}
.h43{height:64.546875px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h14{height:67.824844px;}
.ha{height:68.400000px;}
.h24{height:71.496000px;}
.h21{height:72.900000px;}
.h29{height:75.093750px;}
.h41{height:75.519844px;}
.h47{height:77.760000px;}
.h54{height:82.800000px;}
.h53{height:82.836000px;}
.h2f{height:85.847344px;}
.h51{height:96.480000px;}
.h40{height:96.696000px;}
.h4d{height:103.500000px;}
.h3f{height:109.980000px;}
.h4e{height:116.316000px;}
.h4f{height:116.460000px;}
.h27{height:144.720000px;}
.h4a{height:194.070000px;}
.h4c{height:258.870000px;}
.h48{height:323.310000px;}
.h49{height:349.455000px;}
.h23{height:523.155000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.we{width:39.996000px;}
.wc{width:61.236000px;}
.w10{width:63.360000px;}
.w12{width:67.500000px;}
.w19{width:74.160000px;}
.wd{width:81.000000px;}
.w4{width:82.080000px;}
.w17{width:87.660000px;}
.w11{width:91.116000px;}
.w6{width:101.160000px;}
.w15{width:141.840000px;}
.w7{width:154.470000px;}
.w1a{width:155.010000px;}
.w13{width:161.670000px;}
.wb{width:180.390000px;}
.w14{width:182.370000px;}
.w9{width:182.550000px;}
.wf{width:378.975000px;}
.w16{width:513.150000px;}
.w18{width:526.650000px;}
.w8{width:532.725000px;}
.w1b{width:565.665000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x63{left:4.252500px;}
.x8{left:8.100000px;}
.x2f{left:9.360000px;}
.x16{left:10.800000px;}
.x29{left:12.780000px;}
.x2b{left:14.760000px;}
.x2d{left:16.560000px;}
.x30{left:17.820000px;}
.x36{left:19.800000px;}
.x1b{left:21.255000px;}
.x32{left:23.400000px;}
.x38{left:25.020000px;}
.x33{left:26.280000px;}
.x2e{left:27.354000px;}
.x44{left:28.974000px;}
.x34{left:30.054000px;}
.x39{left:31.140000px;}
.xd{left:33.659987px;}
.x46{left:35.094000px;}
.x4f{left:36.360000px;}
.x40{left:39.060000px;}
.x3e{left:41.760000px;}
.x59{left:43.740000px;}
.xa{left:50.580000px;}
.x3f{left:52.380000px;}
.x49{left:55.260000px;}
.x48{left:59.400000px;}
.x23{left:67.499987px;}
.x6{left:73.974000px;}
.x50{left:76.860000px;}
.x9{left:79.416000px;}
.x18{left:80.460000px;}
.x4d{left:83.880000px;}
.x5{left:87.654000px;}
.x47{left:92.340000px;}
.x15{left:93.456000px;}
.x1a{left:94.896000px;}
.x42{left:101.160000px;}
.x45{left:105.120000px;}
.x4{left:108.035987px;}
.x4a{left:110.880000px;}
.xb{left:117.935987px;}
.x21{left:121.535987px;}
.x24{left:128.376000px;}
.x4b{left:132.660000px;}
.x35{left:133.920000px;}
.x3a{left:137.520000px;}
.xe{left:140.435987px;}
.x51{left:145.440000px;}
.x4c{left:147.240000px;}
.x43{left:151.020000px;}
.x4e{left:154.260000px;}
.x3d{left:155.700000px;}
.xc{left:161.309987px;}
.x27{left:163.830000px;}
.x3c{left:164.910000px;}
.x41{left:168.870000px;}
.x3b{left:173.550000px;}
.x31{left:174.810000px;}
.x37{left:176.250000px;}
.x11{left:181.649987px;}
.x7{left:190.110000px;}
.x25{left:209.370000px;}
.x57{left:237.135000px;}
.x1{left:239.969987px;}
.x56{left:242.670000px;}
.x5a{left:243.975000px;}
.x26{left:249.375000px;}
.xf{left:254.594987px;}
.x5d{left:263.415000px;}
.x10{left:299.594987px;}
.x17{left:303.195000px;}
.x19{left:314.895000px;}
.x3{left:354.494987px;}
.x2{left:401.654987px;}
.x55{left:443.804987px;}
.x12{left:460.004987px;}
.x60{left:465.404987px;}
.x1e{left:468.644987px;}
.x5e{left:487.544987px;}
.x13{left:489.164987px;}
.x14{left:490.784987px;}
.x62{left:494.384987px;}
.x1c{left:620.253000px;}
.x28{left:628.350000px;}
.x52{left:652.470000px;}
.x2a{left:691.710000px;}
.x58{left:755.820000px;}
.x53{left:759.959987px;}
.x54{left:764.459987px;}
.x5b{left:769.320000px;}
.x5c{left:779.579987px;}
.x2c{left:782.820000px;}
.x5f{left:789.659987px;}
.x1d{left:793.079987px;}
.x61{left:795.239987px;}
.x1f{left:798.659987px;}
.x22{left:814.139987px;}
.x20{left:822.059987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-13.920000pt;}
.lsb{letter-spacing:-12.640000pt;}
.ls15{letter-spacing:-11.360000pt;}
.ls17{letter-spacing:-10.720000pt;}
.lsa{letter-spacing:-6.880000pt;}
.ls25{letter-spacing:-1.184000pt;}
.ls24{letter-spacing:-1.120000pt;}
.ls2a{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.310933pt;}
.ls14{letter-spacing:-0.280533pt;}
.ls1a{letter-spacing:-0.239467pt;}
.lse{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.079467pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.106240pt;}
.ls1b{letter-spacing:0.121067pt;}
.ls2{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.136320pt;}
.lsd{letter-spacing:0.158933pt;}
.lsf{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.200960pt;}
.ls13{letter-spacing:0.201067pt;}
.ls11{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.265600pt;}
.ls27{letter-spacing:0.288000pt;}
.ls2c{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.329067pt;}
.ls23{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.800000pt;}
.ls2d{letter-spacing:19.360000pt;}
.ls1{letter-spacing:43.040000pt;}
.ls29{letter-spacing:59.451307pt;}
.ls28{letter-spacing:59.472640pt;}
.ls22{letter-spacing:86.331307pt;}
.ls20{letter-spacing:86.352640pt;}
.ls26{letter-spacing:94.176000pt;}
.ls1e{letter-spacing:112.571307pt;}
.ls1f{letter-spacing:112.592640pt;}
.ws10{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.327360pt;}
.wsd{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws16{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.640000pt;}
.ws19{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.288000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.480533pt;}
.ws12{word-spacing:-10.409067pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws11{word-spacing:-9.769067pt;}
.ws4{word-spacing:-9.760000pt;}
.wsf{word-spacing:-9.481067pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-9.200533pt;}
.ws9{word-spacing:-9.078933pt;}
.wse{word-spacing:-8.999467pt;}
.ws6{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
._2f{margin-left:-2506.112000pt;}
._1b{margin-left:-2465.792000pt;}
._30{margin-left:-2455.164160pt;}
._1c{margin-left:-2415.455573pt;}
._7{margin-left:-53.600000pt;}
._14{margin-left:-3.751680pt;}
._13{margin-left:-2.352000pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._4{width:2.069547pt;}
._2{width:2.962347pt;}
._12{width:4.223787pt;}
._11{width:5.184213pt;}
._10{width:6.328320pt;}
._c{width:7.755520pt;}
._25{width:9.083520pt;}
._19{width:10.170240pt;}
._18{width:11.072000pt;}
._2b{width:12.242133pt;}
._17{width:13.226667pt;}
._9{width:14.279467pt;}
._b{width:15.192320pt;}
._a{width:16.148480pt;}
._16{width:17.422080pt;}
._15{width:18.336000pt;}
._22{width:19.601280pt;}
._21{width:20.663680pt;}
._26{width:21.619840pt;}
._f{width:22.677333pt;}
._1d{width:23.850880pt;}
._28{width:24.767787pt;}
._32{width:25.811413pt;}
._2a{width:27.038080pt;}
._29{width:28.525440pt;}
._1f{width:29.902293pt;}
._20{width:30.920107pt;}
._39{width:31.852587pt;}
._35{width:32.929493pt;}
._38{width:34.310613pt;}
._33{width:35.213653pt;}
._27{width:36.116693pt;}
._37{width:37.285333pt;}
._1e{width:38.347733pt;}
._2e{width:39.999360pt;}
._34{width:41.392640pt;}
._23{width:42.761600pt;}
._3b{width:43.809280pt;}
._e{width:44.789973pt;}
._d{width:45.997013pt;}
._3a{width:46.958080pt;}
._42{width:48.334293pt;}
._24{width:49.609173pt;}
._31{width:50.512213pt;}
._3c{width:51.999573pt;}
._49{width:53.173120pt;}
._40{width:54.124373pt;}
._3e{width:55.399253pt;}
._3f{width:56.519680pt;}
._5{width:58.218667pt;}
._4a{width:59.611733pt;}
._36{width:61.348693pt;}
._3{width:63.253973pt;}
._55{width:64.276267pt;}
._44{width:65.173333pt;}
._41{width:69.959040pt;}
._2d{width:71.404373pt;}
._2c{width:72.402560pt;}
._48{width:74.311680pt;}
._3d{width:76.381653pt;}
._57{width:77.555200pt;}
._46{width:78.475520pt;}
._4e{width:80.831573pt;}
._59{width:86.160213pt;}
._58{width:87.169920pt;}
._5a{width:89.061120pt;}
._51{width:90.933973pt;}
._43{width:94.075520pt;}
._56{width:96.611413pt;}
._4d{width:99.959253pt;}
._47{width:103.052800pt;}
._4f{width:108.205440pt;}
._54{width:109.700053pt;}
._52{width:111.653333pt;}
._53{width:114.473600pt;}
._4c{width:116.385920pt;}
._45{width:123.822720pt;}
._5d{width:143.211520pt;}
._5c{width:146.828160pt;}
._5b{width:147.992320pt;}
._6{width:177.440000pt;}
._1a{width:254.106667pt;}
._50{width:282.120320pt;}
._4b{width:314.211413pt;}
._8{width:671.978667pt;}
.fs8{font-size:5.120000pt;}
.fs13{font-size:5.333333pt;}
.fsf{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs10{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs12{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs11{font-size:67.461249pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4e{bottom:-219.226667pt;}
.y4d{bottom:-189.306667pt;}
.y4c{bottom:-159.226667pt;}
.y87{bottom:-150.760000pt;}
.y4b{bottom:-129.306667pt;}
.y86{bottom:-120.840000pt;}
.y4a{bottom:-99.386667pt;}
.y85{bottom:-90.760000pt;}
.y49{bottom:-69.306667pt;}
.y84{bottom:-60.840000pt;}
.y48{bottom:-39.360000pt;}
.y83{bottom:-30.720000pt;}
.y89{bottom:-15.931333pt;}
.y47{bottom:-9.280000pt;}
.y82{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y39b{bottom:1.633333pt;}
.y6f{bottom:2.080000pt;}
.y13c{bottom:2.120000pt;}
.y134{bottom:2.240000pt;}
.y6{bottom:3.360000pt;}
.y22e{bottom:4.000000pt;}
.y140{bottom:4.160000pt;}
.y77{bottom:4.773333pt;}
.y160{bottom:5.120000pt;}
.y165{bottom:5.760000pt;}
.y154{bottom:6.080000pt;}
.y75{bottom:6.240000pt;}
.y149{bottom:6.560000pt;}
.y46{bottom:6.880000pt;}
.y145{bottom:7.200000pt;}
.y130{bottom:7.360000pt;}
.y168{bottom:7.386667pt;}
.y13a{bottom:7.400000pt;}
.y135{bottom:7.520000pt;}
.y1cb{bottom:8.000000pt;}
.y176{bottom:8.160000pt;}
.y9{bottom:11.040000pt;}
.y163{bottom:11.200000pt;}
.y156{bottom:11.520000pt;}
.y143{bottom:12.640000pt;}
.y12d{bottom:12.800000pt;}
.y14d{bottom:12.826667pt;}
.y13b{bottom:12.840000pt;}
.y132{bottom:12.960000pt;}
.y1ed{bottom:13.600000pt;}
.y1cc{bottom:13.760000pt;}
.y234{bottom:14.400000pt;}
.y180{bottom:14.560000pt;}
.y6e{bottom:15.840000pt;}
.y164{bottom:16.480000pt;}
.y152{bottom:16.800000pt;}
.y144{bottom:17.920000pt;}
.y74{bottom:17.946667pt;}
.y12b{bottom:18.240000pt;}
.y45{bottom:19.200000pt;}
.ya{bottom:19.360000pt;}
.y225{bottom:19.520000pt;}
.y175{bottom:20.480000pt;}
.y7{bottom:20.640000pt;}
.y8{bottom:21.760000pt;}
.y155{bottom:22.240000pt;}
.y12c{bottom:23.520000pt;}
.y133{bottom:23.680000pt;}
.y1ec{bottom:25.120000pt;}
.y1d2{bottom:25.280000pt;}
.y81{bottom:26.720000pt;}
.y17f{bottom:26.880000pt;}
.y153{bottom:27.520000pt;}
.y236{bottom:28.480000pt;}
.y73{bottom:29.466667pt;}
.y6d{bottom:29.600000pt;}
.y1ce{bottom:31.040000pt;}
.yc{bottom:31.200000pt;}
.y44{bottom:31.680000pt;}
.y174{bottom:32.640000pt;}
.y17a{bottom:32.960000pt;}
.y23d{bottom:33.760000pt;}
.y238{bottom:33.800000pt;}
.y12e{bottom:34.240000pt;}
.y1eb{bottom:36.640000pt;}
.y1d1{bottom:36.800000pt;}
.y80{bottom:38.400000pt;}
.y17e{bottom:39.040000pt;}
.y23b{bottom:39.080000pt;}
.y230{bottom:39.840000pt;}
.y6c{bottom:40.640000pt;}
.y23f{bottom:40.800000pt;}
.y72{bottom:41.146667pt;}
.y8d{bottom:42.240000pt;}
.y228{bottom:42.426667pt;}
.y224{bottom:42.560000pt;}
.y43{bottom:44.000000pt;}
.y170{bottom:44.960000pt;}
.y179{bottom:45.280000pt;}
.y1ea{bottom:48.160000pt;}
.y229{bottom:48.186667pt;}
.y1d0{bottom:48.320000pt;}
.y21b{bottom:48.360000pt;}
.y7f{bottom:49.920000pt;}
.y5{bottom:51.040000pt;}
.y233{bottom:51.200000pt;}
.y17d{bottom:51.360000pt;}
.y242{bottom:51.386667pt;}
.y23a{bottom:51.400000pt;}
.y227{bottom:53.946667pt;}
.y223{bottom:54.080000pt;}
.y42{bottom:55.520000pt;}
.y71{bottom:56.346667pt;}
.y6b{bottom:56.480000pt;}
.y88{bottom:56.693333pt;}
.y173{bottom:57.280000pt;}
.y178{bottom:57.440000pt;}
.y8c{bottom:59.040000pt;}
.y1e9{bottom:59.680000pt;}
.y211{bottom:59.706667pt;}
.y1cf{bottom:59.840000pt;}
.y21a{bottom:59.880000pt;}
.y7e{bottom:61.440000pt;}
.y232{bottom:63.520000pt;}
.y241{bottom:63.546667pt;}
.y239{bottom:63.560000pt;}
.y17c{bottom:63.680000pt;}
.y222{bottom:65.600000pt;}
.y172{bottom:69.440000pt;}
.y1e8{bottom:71.200000pt;}
.y210{bottom:71.226667pt;}
.y221{bottom:71.360000pt;}
.y219{bottom:71.400000pt;}
.y6a{bottom:72.320000pt;}
.y7d{bottom:73.120000pt;}
.y231{bottom:75.840000pt;}
.y17b{bottom:75.880000pt;}
.y213{bottom:76.986667pt;}
.y171{bottom:81.760000pt;}
.y1e7{bottom:82.720000pt;}
.y208{bottom:82.746667pt;}
.y218{bottom:82.760000pt;}
.y220{bottom:82.880000pt;}
.y7c{bottom:84.640000pt;}
.y207{bottom:88.000000pt;}
.y69{bottom:88.160000pt;}
.y212{bottom:88.506667pt;}
.yd5{bottom:88.960000pt;}
.y281{bottom:89.920000pt;}
.y1c9{bottom:90.080000pt;}
.y253{bottom:90.400000pt;}
.ybf{bottom:91.840000pt;}
.y261{bottom:93.920000pt;}
.y1e6{bottom:94.240000pt;}
.y20f{bottom:94.266667pt;}
.y204{bottom:94.280000pt;}
.y127{bottom:94.720000pt;}
.y7b{bottom:96.160000pt;}
.y378{bottom:97.120000pt;}
.y16a{bottom:97.920000pt;}
.y22c{bottom:98.080000pt;}
.y399{bottom:98.880000pt;}
.y1f3{bottom:99.840000pt;}
.y21e{bottom:100.040000pt;}
.yd4{bottom:100.320000pt;}
.y106{bottom:102.400000pt;}
.y40{bottom:103.360000pt;}
.y68{bottom:104.000000pt;}
.y1e5{bottom:105.600000pt;}
.y20e{bottom:105.786667pt;}
.y203{bottom:105.800000pt;}
.y126{bottom:106.080000pt;}
.y1c8{bottom:106.400000pt;}
.y280{bottom:107.520000pt;}
.y122{bottom:107.680000pt;}
.y7a{bottom:107.840000pt;}
.y252{bottom:108.000000pt;}
.y2bf{bottom:109.120000pt;}
.ybe{bottom:109.440000pt;}
.y1f2{bottom:111.360000pt;}
.y260{bottom:111.520000pt;}
.y21d{bottom:111.560000pt;}
.y22b{bottom:111.840000pt;}
.y2f1{bottom:112.480000pt;}
.y30b{bottom:113.280000pt;}
.y377{bottom:114.880000pt;}
.yd3{bottom:115.520000pt;}
.y1e4{bottom:117.120000pt;}
.y20d{bottom:117.306667pt;}
.y202{bottom:117.320000pt;}
.y79{bottom:118.720000pt;}
.y169{bottom:119.360000pt;}
.y67{bottom:119.840000pt;}
.y105{bottom:120.000000pt;}
.y3f{bottom:120.960000pt;}
.y125{bottom:121.120000pt;}
.y19f{bottom:121.440000pt;}
.y1f1{bottom:122.880000pt;}
.y21c{bottom:123.080000pt;}
.y2be{bottom:123.200000pt;}
.y1c7{bottom:124.000000pt;}
.y27f{bottom:125.120000pt;}
.y121{bottom:125.280000pt;}
.y251{bottom:125.600000pt;}
.ybd{bottom:127.040000pt;}
.y2f0{bottom:127.840000pt;}
.y1e3{bottom:128.640000pt;}
.y20c{bottom:128.826667pt;}
.y201{bottom:128.840000pt;}
.y25f{bottom:129.120000pt;}
.yd2{bottom:129.440000pt;}
.y376{bottom:130.080000pt;}
.y356{bottom:130.880000pt;}
.y32f{bottom:133.920000pt;}
.y1d5{bottom:134.400000pt;}
.y124{bottom:134.880000pt;}
.y66{bottom:135.880000pt;}
.y104{bottom:137.600000pt;}
.y3e{bottom:138.560000pt;}
.y19e{bottom:139.040000pt;}
.y1e2{bottom:140.160000pt;}
.y20b{bottom:140.346667pt;}
.y200{bottom:140.360000pt;}
.y167{bottom:140.960000pt;}
.y1c6{bottom:141.600000pt;}
.y120{bottom:142.880000pt;}
.y250{bottom:143.200000pt;}
.y30a{bottom:144.000000pt;}
.ybc{bottom:144.666667pt;}
.y375{bottom:145.466667pt;}
.y1d4{bottom:145.920000pt;}
.y206{bottom:145.960000pt;}
.y355{bottom:146.266667pt;}
.y25e{bottom:146.906667pt;}
.y65{bottom:147.880000pt;}
.y32e{bottom:149.306667pt;}
.y1e1{bottom:151.680000pt;}
.y20a{bottom:151.706667pt;}
.y1f5{bottom:151.720000pt;}
.y217{bottom:151.880000pt;}
.y2bd{bottom:153.946667pt;}
.y103{bottom:155.226667pt;}
.y64{bottom:155.560000pt;}
.y3d{bottom:156.186667pt;}
.y19d{bottom:156.666667pt;}
.y1f0{bottom:157.440000pt;}
.y205{bottom:157.480000pt;}
.y2ef{bottom:158.586667pt;}
.y1c5{bottom:159.386667pt;}
.y27e{bottom:160.506667pt;}
.y11f{bottom:160.666667pt;}
.y374{bottom:160.826667pt;}
.y24f{bottom:160.986667pt;}
.y398{bottom:161.306667pt;}
.y354{bottom:161.626667pt;}
.ybb{bottom:162.426667pt;}
.y1e0{bottom:163.200000pt;}
.y209{bottom:163.226667pt;}
.y1ff{bottom:163.240000pt;}
.y216{bottom:163.400000pt;}
.y25d{bottom:164.506667pt;}
.y32d{bottom:164.666667pt;}
.y1ef{bottom:168.960000pt;}
.y2bc{bottom:169.306667pt;}
.y63{bottom:171.400000pt;}
.y102{bottom:172.986667pt;}
.y3c{bottom:173.946667pt;}
.y19c{bottom:174.266667pt;}
.y309{bottom:174.586667pt;}
.y1df{bottom:174.720000pt;}
.y1fe{bottom:174.760000pt;}
.y397{bottom:175.386667pt;}
.y373{bottom:176.186667pt;}
.y1c4{bottom:176.986667pt;}
.y27d{bottom:178.106667pt;}
.y11e{bottom:178.266667pt;}
.y24e{bottom:178.586667pt;}
.y299{bottom:179.386667pt;}
.yba{bottom:180.026667pt;}
.y1ee{bottom:180.480000pt;}
.y25c{bottom:182.106667pt;}
.y166{bottom:183.866667pt;}
.y2bb{bottom:184.666667pt;}
.y1de{bottom:186.080000pt;}
.y1fd{bottom:186.280000pt;}
.y62{bottom:187.240000pt;}
.y2ee{bottom:189.146667pt;}
.y308{bottom:189.946667pt;}
.y101{bottom:190.586667pt;}
.y396{bottom:190.746667pt;}
.y372{bottom:191.546667pt;}
.y19b{bottom:191.866667pt;}
.y353{bottom:192.346667pt;}
.y3b{bottom:192.666667pt;}
.y1c3{bottom:194.586667pt;}
.y32c{bottom:195.386667pt;}
.y27c{bottom:195.706667pt;}
.y11d{bottom:195.866667pt;}
.y24d{bottom:196.186667pt;}
.yb9{bottom:197.626667pt;}
.y1dd{bottom:197.640000pt;}
.y1fc{bottom:197.800000pt;}
.y25b{bottom:199.706667pt;}
.y298{bottom:199.866667pt;}
.y61{bottom:203.080000pt;}
.y2ed{bottom:204.506667pt;}
.y162{bottom:205.306667pt;}
.y395{bottom:206.106667pt;}
.y371{bottom:206.906667pt;}
.y352{bottom:207.546667pt;}
.y3a{bottom:208.026667pt;}
.y100{bottom:208.186667pt;}
.y1dc{bottom:209.160000pt;}
.y1fb{bottom:209.320000pt;}
.y19a{bottom:209.626667pt;}
.y32b{bottom:210.746667pt;}
.y1c2{bottom:212.186667pt;}
.y27b{bottom:213.306667pt;}
.y11c{bottom:213.466667pt;}
.y24c{bottom:213.786667pt;}
.yb8{bottom:215.226667pt;}
.y39{bottom:215.546667pt;}
.y25a{bottom:217.306667pt;}
.y4f{bottom:217.626667pt;}
.y297{bottom:218.746667pt;}
.y60{bottom:219.080000pt;}
.y2ec{bottom:219.866667pt;}
.y307{bottom:220.666667pt;}
.y1db{bottom:220.680000pt;}
.y1fa{bottom:220.840000pt;}
.y394{bottom:221.466667pt;}
.y370{bottom:222.106667pt;}
.y351{bottom:222.906667pt;}
.yff{bottom:225.786667pt;}
.y32a{bottom:225.946667pt;}
.y199{bottom:227.226667pt;}
.y1c1{bottom:229.786667pt;}
.y2ba{bottom:230.586667pt;}
.y11b{bottom:231.066667pt;}
.y24b{bottom:231.386667pt;}
.y1da{bottom:232.200000pt;}
.y1f9{bottom:232.360000pt;}
.yb7{bottom:232.826667pt;}
.y38{bottom:233.466667pt;}
.y161{bottom:234.106667pt;}
.y5f{bottom:234.920000pt;}
.y259{bottom:235.066667pt;}
.y2eb{bottom:235.226667pt;}
.y306{bottom:236.026667pt;}
.y296{bottom:236.346667pt;}
.y393{bottom:236.666667pt;}
.y36f{bottom:237.466667pt;}
.y350{bottom:238.266667pt;}
.y329{bottom:240.986667pt;}
.yfe{bottom:243.386667pt;}
.y1d9{bottom:243.720000pt;}
.y198{bottom:244.826667pt;}
.y37{bottom:244.986667pt;}
.y2b9{bottom:245.946667pt;}
.y15f{bottom:247.386667pt;}
.y1c0{bottom:247.546667pt;}
.y27a{bottom:248.666667pt;}
.y11a{bottom:248.826667pt;}
.y24a{bottom:249.146667pt;}
.yb6{bottom:250.586667pt;}
.y5e{bottom:250.760000pt;}
.y305{bottom:251.386667pt;}
.y392{bottom:252.026667pt;}
.y258{bottom:252.666667pt;}
.y36e{bottom:252.826667pt;}
.y34f{bottom:253.626667pt;}
.y295{bottom:254.106667pt;}
.y328{bottom:254.906667pt;}
.y1d8{bottom:255.240000pt;}
.y36{bottom:258.906667pt;}
.y1f4{bottom:260.506667pt;}
.yfd{bottom:261.146667pt;}
.y2b8{bottom:261.306667pt;}
.y197{bottom:262.426667pt;}
.y15e{bottom:264.186667pt;}
.y5d{bottom:264.520000pt;}
.y1bf{bottom:265.146667pt;}
.y2ea{bottom:265.946667pt;}
.y279{bottom:266.266667pt;}
.y119{bottom:266.426667pt;}
.y304{bottom:266.586667pt;}
.y249{bottom:266.746667pt;}
.y1d7{bottom:266.760000pt;}
.y391{bottom:267.386667pt;}
.yb5{bottom:268.186667pt;}
.y327{bottom:268.986667pt;}
.y257{bottom:270.266667pt;}
.y294{bottom:271.706667pt;}
.y35{bottom:273.786667pt;}
.y5c{bottom:275.400000pt;}
.y2b7{bottom:276.666667pt;}
.y1d6{bottom:278.120000pt;}
.y1f8{bottom:278.280000pt;}
.yfc{bottom:278.746667pt;}
.y196{bottom:280.026667pt;}
.y2e9{bottom:281.146667pt;}
.y303{bottom:281.946667pt;}
.y1be{bottom:282.746667pt;}
.y36d{bottom:283.546667pt;}
.y278{bottom:283.866667pt;}
.y118{bottom:284.026667pt;}
.y37b{bottom:284.186667pt;}
.y248{bottom:284.346667pt;}
.y15d{bottom:285.626667pt;}
.yb4{bottom:285.786667pt;}
.y256{bottom:287.866667pt;}
.y293{bottom:289.306667pt;}
.y1f7{bottom:289.800000pt;}
.y5b{bottom:291.240000pt;}
.y2b6{bottom:291.866667pt;}
.y34{bottom:294.906667pt;}
.yfb{bottom:296.346667pt;}
.y2e8{bottom:296.506667pt;}
.y302{bottom:297.306667pt;}
.y195{bottom:297.786667pt;}
.y390{bottom:298.106667pt;}
.y36c{bottom:298.906667pt;}
.y326{bottom:299.546667pt;}
.y1bd{bottom:300.346667pt;}
.y1f6{bottom:301.346667pt;}
.y277{bottom:301.466667pt;}
.y117{bottom:301.626667pt;}
.y247{bottom:301.946667pt;}
.yb3{bottom:303.386667pt;}
.y255{bottom:305.466667pt;}
.y292{bottom:306.906667pt;}
.y15c{bottom:307.066667pt;}
.y2b5{bottom:307.226667pt;}
.y5a{bottom:307.240000pt;}
.y2e7{bottom:311.866667pt;}
.y301{bottom:312.666667pt;}
.y38f{bottom:313.466667pt;}
.yfa{bottom:313.946667pt;}
.y36b{bottom:314.106667pt;}
.y325{bottom:314.906667pt;}
.y194{bottom:315.386667pt;}
.y33{bottom:316.026667pt;}
.y1bc{bottom:317.946667pt;}
.y276{bottom:319.066667pt;}
.y116{bottom:319.226667pt;}
.y246{bottom:320.826667pt;}
.yb2{bottom:320.986667pt;}
.y2b4{bottom:322.586667pt;}
.y59{bottom:323.080000pt;}
.y254{bottom:323.226667pt;}
.y291{bottom:324.506667pt;}
.y2e6{bottom:327.226667pt;}
.y300{bottom:328.026667pt;}
.y15b{bottom:328.506667pt;}
.y38e{bottom:328.666667pt;}
.y36a{bottom:329.466667pt;}
.y324{bottom:330.266667pt;}
.yf9{bottom:331.546667pt;}
.y193{bottom:332.986667pt;}
.y1bb{bottom:335.706667pt;}
.y275{bottom:336.826667pt;}
.y115{bottom:336.986667pt;}
.y32{bottom:337.306667pt;}
.y2b3{bottom:337.946667pt;}
.yb1{bottom:338.746667pt;}
.y58{bottom:338.946667pt;}
.y245{bottom:341.946667pt;}
.y290{bottom:342.266667pt;}
.y2e5{bottom:342.586667pt;}
.y2ff{bottom:343.226667pt;}
.y38d{bottom:344.026667pt;}
.y369{bottom:344.826667pt;}
.y323{bottom:345.626667pt;}
.yf8{bottom:349.346667pt;}
.y15a{bottom:349.986667pt;}
.y192{bottom:350.626667pt;}
.y1ba{bottom:353.346667pt;}
.y274{bottom:354.466667pt;}
.y114{bottom:354.626667pt;}
.y57{bottom:354.786667pt;}
.yb0{bottom:356.386667pt;}
.y2e4{bottom:357.826667pt;}
.y31{bottom:358.466667pt;}
.y2fe{bottom:358.626667pt;}
.y244{bottom:358.786667pt;}
.y38c{bottom:359.426667pt;}
.y28f{bottom:359.906667pt;}
.y368{bottom:360.226667pt;}
.y322{bottom:361.026667pt;}
.yf7{bottom:366.946667pt;}
.y191{bottom:368.226667pt;}
.y2b2{bottom:368.706667pt;}
.y56{bottom:370.626667pt;}
.y1b9{bottom:370.946667pt;}
.y159{bottom:371.426667pt;}
.y273{bottom:372.066667pt;}
.y113{bottom:372.226667pt;}
.y2e3{bottom:373.186667pt;}
.yaf{bottom:373.986667pt;}
.y38b{bottom:374.786667pt;}
.y367{bottom:375.586667pt;}
.y321{bottom:376.226667pt;}
.y28e{bottom:377.506667pt;}
.y30{bottom:379.586667pt;}
.y55{bottom:382.626667pt;}
.y2b1{bottom:383.906667pt;}
.yf6{bottom:384.546667pt;}
.y190{bottom:385.986667pt;}
.y78{bottom:386.786667pt;}
.y1b8{bottom:388.546667pt;}
.y2fd{bottom:389.346667pt;}
.y272{bottom:389.666667pt;}
.y112{bottom:389.826667pt;}
.y38a{bottom:390.146667pt;}
.y54{bottom:390.306667pt;}
.y366{bottom:390.946667pt;}
.yae{bottom:391.586667pt;}
.y158{bottom:392.866667pt;}
.y28d{bottom:395.106667pt;}
.y2f{bottom:397.986667pt;}
.y2b0{bottom:399.266667pt;}
.yf5{bottom:402.146667pt;}
.y18f{bottom:403.586667pt;}
.y157{bottom:403.746667pt;}
.y2e2{bottom:403.906667pt;}
.y2fc{bottom:404.706667pt;}
.y389{bottom:405.506667pt;}
.y1b7{bottom:406.146667pt;}
.y53{bottom:406.306667pt;}
.yd1{bottom:406.626667pt;}
.y320{bottom:406.946667pt;}
.y271{bottom:407.266667pt;}
.y111{bottom:407.426667pt;}
.yad{bottom:409.186667pt;}
.y22a{bottom:412.386667pt;}
.y28c{bottom:412.706667pt;}
.y2af{bottom:414.626667pt;}
.y2e{bottom:415.426667pt;}
.y2e1{bottom:419.266667pt;}
.yf4{bottom:419.746667pt;}
.y2fb{bottom:420.066667pt;}
.y388{bottom:420.706667pt;}
.y18e{bottom:421.186667pt;}
.y365{bottom:421.506667pt;}
.y52{bottom:422.146667pt;}
.y31f{bottom:422.306667pt;}
.y1b6{bottom:423.906667pt;}
.yd0{bottom:424.226667pt;}
.y270{bottom:425.026667pt;}
.y110{bottom:425.186667pt;}
.yac{bottom:426.946667pt;}
.y2d{bottom:427.906667pt;}
.y2ae{bottom:429.986667pt;}
.y28b{bottom:431.586667pt;}
.y243{bottom:432.386667pt;}
.y2e0{bottom:434.626667pt;}
.y2fa{bottom:435.266667pt;}
.y2c{bottom:435.426667pt;}
.y387{bottom:436.066667pt;}
.y364{bottom:436.866667pt;}
.yf3{bottom:437.506667pt;}
.y31e{bottom:437.666667pt;}
.y51{bottom:437.986667pt;}
.y18d{bottom:438.786667pt;}
.y1b5{bottom:441.506667pt;}
.ycf{bottom:441.826667pt;}
.y26f{bottom:442.626667pt;}
.y10f{bottom:442.786667pt;}
.yab{bottom:444.546667pt;}
.y2ad{bottom:445.346667pt;}
.y151{bottom:446.626667pt;}
.y2df{bottom:449.826667pt;}
.y2f9{bottom:450.626667pt;}
.y386{bottom:451.426667pt;}
.y363{bottom:452.226667pt;}
.y28a{bottom:452.706667pt;}
.y31d{bottom:453.026667pt;}
.y50{bottom:453.826667pt;}
.yf2{bottom:455.106667pt;}
.y2b{bottom:456.066667pt;}
.y18c{bottom:456.386667pt;}
.y1b4{bottom:459.106667pt;}
.yce{bottom:459.426667pt;}
.y26e{bottom:460.226667pt;}
.y10e{bottom:460.386667pt;}
.y2ac{bottom:460.706667pt;}
.yaa{bottom:462.146667pt;}
.y2de{bottom:465.186667pt;}
.y2f8{bottom:465.986667pt;}
.y385{bottom:466.786667pt;}
.y362{bottom:467.586667pt;}
.y31c{bottom:468.226667pt;}
.yf1{bottom:472.706667pt;}
.y289{bottom:473.186667pt;}
.y18b{bottom:474.146667pt;}
.y2ab{bottom:475.906667pt;}
.y1b3{bottom:476.706667pt;}
.y2a{bottom:476.866667pt;}
.ycd{bottom:477.026667pt;}
.y26d{bottom:477.826667pt;}
.y10d{bottom:477.986667pt;}
.ya9{bottom:479.746667pt;}
.y2dd{bottom:480.546667pt;}
.y2f7{bottom:481.346667pt;}
.y384{bottom:482.146667pt;}
.y361{bottom:482.786667pt;}
.y31b{bottom:483.586667pt;}
.y150{bottom:486.786667pt;}
.yf0{bottom:490.306667pt;}
.y2aa{bottom:491.266667pt;}
.y18a{bottom:491.746667pt;}
.y288{bottom:492.066667pt;}
.y1b2{bottom:494.306667pt;}
.ycc{bottom:494.786667pt;}
.y26c{bottom:495.426667pt;}
.y10c{bottom:495.586667pt;}
.y2dc{bottom:495.906667pt;}
.y2f6{bottom:496.706667pt;}
.ya8{bottom:497.346667pt;}
.y29{bottom:497.506667pt;}
.y360{bottom:498.146667pt;}
.y31a{bottom:498.946667pt;}
.y240{bottom:505.986667pt;}
.y2a9{bottom:506.626667pt;}
.yef{bottom:507.906667pt;}
.y14f{bottom:508.226667pt;}
.y16c{bottom:509.026667pt;}
.y189{bottom:509.346667pt;}
.y287{bottom:509.666667pt;}
.y2db{bottom:511.266667pt;}
.y1b1{bottom:511.906667pt;}
.y2f5{bottom:512.066667pt;}
.ycb{bottom:512.386667pt;}
.y383{bottom:512.706667pt;}
.y26b{bottom:513.186667pt;}
.y10b{bottom:513.346667pt;}
.y35f{bottom:513.506667pt;}
.y319{bottom:514.306667pt;}
.ya7{bottom:515.106667pt;}
.y226{bottom:515.906667pt;}
.y14e{bottom:518.946667pt;}
.y2a8{bottom:521.986667pt;}
.yee{bottom:525.666667pt;}
.y2da{bottom:526.626667pt;}
.y188{bottom:526.946667pt;}
.y2f4{bottom:527.266667pt;}
.y286{bottom:527.426667pt;}
.y16b{bottom:528.066667pt;}
.y35e{bottom:528.866667pt;}
.y1b0{bottom:529.666667pt;}
.yca{bottom:529.986667pt;}
.y26a{bottom:530.786667pt;}
.y10a{bottom:530.946667pt;}
.ya6{bottom:532.706667pt;}
.y2a7{bottom:537.346667pt;}
.y14c{bottom:540.546667pt;}
.y2d9{bottom:541.826667pt;}
.y2f3{bottom:542.626667pt;}
.yed{bottom:543.266667pt;}
.y37a{bottom:543.426667pt;}
.y35d{bottom:544.226667pt;}
.y187{bottom:544.546667pt;}
.y318{bottom:544.706667pt;}
.y70{bottom:545.026667pt;}
.y28{bottom:546.626667pt;}
.y1af{bottom:547.266667pt;}
.yc9{bottom:547.586667pt;}
.y269{bottom:548.386667pt;}
.y109{bottom:549.666667pt;}
.ya5{bottom:550.306667pt;}
.y2a6{bottom:552.546667pt;}
.y2d8{bottom:557.213333pt;}
.y2f2{bottom:557.853333pt;}
.y338{bottom:558.013333pt;}
.y317{bottom:558.813333pt;}
.y35c{bottom:559.613333pt;}
.y34e{bottom:560.253333pt;}
.y27{bottom:560.413333pt;}
.yec{bottom:560.893333pt;}
.y14b{bottom:562.013333pt;}
.y186{bottom:562.333333pt;}
.y285{bottom:562.653333pt;}
.y1ae{bottom:564.893333pt;}
.yc8{bottom:565.213333pt;}
.y268{bottom:566.013333pt;}
.ya4{bottom:567.933333pt;}
.y108{bottom:570.813333pt;}
.y1d3{bottom:571.133333pt;}
.y2d7{bottom:572.573333pt;}
.y337{bottom:573.373333pt;}
.y26{bottom:574.173333pt;}
.y35b{bottom:574.813333pt;}
.y34d{bottom:575.613333pt;}
.y123{bottom:578.173333pt;}
.yeb{bottom:578.493333pt;}
.y23e{bottom:579.613333pt;}
.y185{bottom:579.933333pt;}
.y284{bottom:580.253333pt;}
.y1ad{bottom:582.493333pt;}
.yc7{bottom:582.973333pt;}
.y14a{bottom:583.453333pt;}
.y267{bottom:583.613333pt;}
.ya3{bottom:585.533333pt;}
.y2a5{bottom:586.653333pt;}
.y25{bottom:587.933333pt;}
.y336{bottom:588.733333pt;}
.y107{bottom:589.373333pt;}
.y35a{bottom:590.173333pt;}
.y34c{bottom:590.973333pt;}
.yea{bottom:596.093333pt;}
.y184{bottom:597.533333pt;}
.y283{bottom:598.973333pt;}
.y1ac{bottom:600.093333pt;}
.yc6{bottom:600.573333pt;}
.y266{bottom:601.373333pt;}
.y24{bottom:601.853333pt;}
.ya2{bottom:603.293333pt;}
.y335{bottom:603.933333pt;}
.y316{bottom:604.733333pt;}
.y148{bottom:604.893333pt;}
.y359{bottom:605.533333pt;}
.y34b{bottom:606.333333pt;}
.y2a4{bottom:606.813333pt;}
.y23{bottom:611.293333pt;}
.ye9{bottom:613.853333pt;}
.y183{bottom:615.133333pt;}
.y1ab{bottom:617.853333pt;}
.yc5{bottom:618.173333pt;}
.y2d6{bottom:618.653333pt;}
.y265{bottom:618.973333pt;}
.y21f{bottom:619.293333pt;}
.y282{bottom:619.613333pt;}
.y41{bottom:619.773333pt;}
.y315{bottom:620.093333pt;}
.ya1{bottom:620.893333pt;}
.y34a{bottom:621.693333pt;}
.y2a3{bottom:624.413333pt;}
.y22{bottom:624.573333pt;}
.y147{bottom:624.733333pt;}
.ye8{bottom:631.453333pt;}
.y182{bottom:632.733333pt;}
.y2d5{bottom:633.853333pt;}
.y334{bottom:634.653333pt;}
.y1aa{bottom:635.453333pt;}
.yc4{bottom:635.773333pt;}
.y358{bottom:636.253333pt;}
.y264{bottom:636.573333pt;}
.y349{bottom:637.053333pt;}
.ya0{bottom:638.493333pt;}
.y21{bottom:640.413333pt;}
.y2a2{bottom:642.013333pt;}
.y146{bottom:646.173333pt;}
.ye7{bottom:649.053333pt;}
.y2d4{bottom:649.213333pt;}
.y39a{bottom:649.853333pt;}
.y333{bottom:650.013333pt;}
.y379{bottom:650.493333pt;}
.y314{bottom:650.813333pt;}
.y181{bottom:651.613333pt;}
.y20{bottom:651.773333pt;}
.y348{bottom:652.253333pt;}
.y23c{bottom:653.213333pt;}
.yc3{bottom:653.373333pt;}
.y1a9{bottom:654.173333pt;}
.y9f{bottom:656.093333pt;}
.y142{bottom:656.893333pt;}
.y2a1{bottom:660.733333pt;}
.y1f{bottom:663.293333pt;}
.y2d3{bottom:664.573333pt;}
.y332{bottom:665.373333pt;}
.y313{bottom:666.173333pt;}
.ye6{bottom:666.653333pt;}
.y347{bottom:667.613333pt;}
.yc2{bottom:671.133333pt;}
.y263{bottom:671.773333pt;}
.y9e{bottom:673.693333pt;}
.y1a8{bottom:675.293333pt;}
.y1e{bottom:675.773333pt;}
.y2d2{bottom:679.933333pt;}
.y2a0{bottom:680.733333pt;}
.y312{bottom:681.373333pt;}
.y346{bottom:682.973333pt;}
.ye5{bottom:684.253333pt;}
.y141{bottom:688.733333pt;}
.y1d{bottom:689.053333pt;}
.yc1{bottom:689.853333pt;}
.y262{bottom:690.653333pt;}
.y9d{bottom:691.453333pt;}
.y177{bottom:693.053333pt;}
.y2d1{bottom:695.293333pt;}
.y1a7{bottom:695.453333pt;}
.y331{bottom:695.933333pt;}
.y311{bottom:696.733333pt;}
.y345{bottom:698.333333pt;}
.y29f{bottom:698.493333pt;}
.y1c{bottom:698.973333pt;}
.ye4{bottom:702.013333pt;}
.yc0{bottom:708.253333pt;}
.y9c{bottom:709.053333pt;}
.y13f{bottom:710.173333pt;}
.y2d0{bottom:710.493333pt;}
.y215{bottom:711.293333pt;}
.y310{bottom:712.093333pt;}
.y1a6{bottom:713.053333pt;}
.y344{bottom:713.693333pt;}
.y29e{bottom:716.093333pt;}
.y1b{bottom:719.133333pt;}
.ye3{bottom:719.613333pt;}
.y13e{bottom:725.213333pt;}
.y2cf{bottom:725.853333pt;}
.y330{bottom:726.493333pt;}
.y9b{bottom:726.653333pt;}
.y237{bottom:726.813333pt;}
.y357{bottom:727.133333pt;}
.y30f{bottom:727.453333pt;}
.y343{bottom:728.893333pt;}
.y1a5{bottom:730.653333pt;}
.y29d{bottom:734.813333pt;}
.y13d{bottom:735.933333pt;}
.y1a{bottom:736.253333pt;}
.ye2{bottom:737.213333pt;}
.y2ce{bottom:741.213333pt;}
.y30e{bottom:742.813333pt;}
.y9a{bottom:744.253333pt;}
.y1a4{bottom:749.373333pt;}
.y19{bottom:752.573333pt;}
.ye1{bottom:754.813333pt;}
.y2cd{bottom:756.573333pt;}
.y139{bottom:757.373333pt;}
.y30d{bottom:758.213333pt;}
.y342{bottom:759.653333pt;}
.y99{bottom:761.893333pt;}
.y18{bottom:764.933333pt;}
.y1a3{bottom:770.533333pt;}
.y2cc{bottom:771.973333pt;}
.ye0{bottom:772.453333pt;}
.y30c{bottom:773.253333pt;}
.y382{bottom:773.413333pt;}
.y341{bottom:775.013333pt;}
.y17{bottom:777.093333pt;}
.y138{bottom:778.853333pt;}
.y16f{bottom:779.013333pt;}
.y98{bottom:779.653333pt;}
.y2cb{bottom:787.333333pt;}
.y1a2{bottom:788.133333pt;}
.y381{bottom:788.773333pt;}
.ydf{bottom:790.213333pt;}
.y16{bottom:790.373333pt;}
.y1a1{bottom:796.933333pt;}
.y97{bottom:797.253333pt;}
.y15{bottom:799.653333pt;}
.y137{bottom:800.293333pt;}
.y235{bottom:800.453333pt;}
.y2ca{bottom:802.533333pt;}
.y380{bottom:804.133333pt;}
.y340{bottom:805.733333pt;}
.yde{bottom:807.813333pt;}
.y14{bottom:812.453333pt;}
.y96{bottom:814.853333pt;}
.y2c9{bottom:817.893333pt;}
.y37f{bottom:819.493333pt;}
.y33f{bottom:820.933333pt;}
.y136{bottom:821.733333pt;}
.ydd{bottom:825.413333pt;}
.y13{bottom:831.333333pt;}
.y95{bottom:832.453333pt;}
.y2c8{bottom:833.253333pt;}
.y37e{bottom:834.853333pt;}
.y33e{bottom:836.293333pt;}
.ydc{bottom:843.013333pt;}
.y131{bottom:843.173333pt;}
.y12{bottom:848.453333pt;}
.y2c7{bottom:848.613333pt;}
.y22f{bottom:849.573333pt;}
.y94{bottom:850.053333pt;}
.y33d{bottom:851.653333pt;}
.y1cd{bottom:858.533333pt;}
.ydb{bottom:860.613333pt;}
.y2c6{bottom:863.973333pt;}
.y37d{bottom:865.413333pt;}
.y33c{bottom:867.013333pt;}
.y93{bottom:867.813333pt;}
.y11{bottom:872.933333pt;}
.y12f{bottom:875.493333pt;}
.yda{bottom:878.373333pt;}
.y16e{bottom:878.693333pt;}
.y2c5{bottom:879.333333pt;}
.y37c{bottom:880.453333pt;}
.y33b{bottom:882.373333pt;}
.y92{bottom:885.413333pt;}
.y1a0{bottom:891.653333pt;}
.y2c4{bottom:894.533333pt;}
.y10{bottom:895.013333pt;}
.yd9{bottom:895.973333pt;}
.y12a{bottom:896.933333pt;}
.y29c{bottom:897.093333pt;}
.y33a{bottom:897.413333pt;}
.y91{bottom:903.013333pt;}
.y16d{bottom:905.413333pt;}
.yf{bottom:907.653333pt;}
.y2c3{bottom:909.893333pt;}
.y339{bottom:911.173333pt;}
.yd8{bottom:913.573333pt;}
.y29b{bottom:917.093333pt;}
.y76{bottom:917.120000pt;}
.y90{bottom:920.613333pt;}
.ye{bottom:921.413333pt;}
.y2c2{bottom:925.253333pt;}
.y1ca{bottom:929.573333pt;}
.yd7{bottom:932.293333pt;}
.y29a{bottom:934.693333pt;}
.yd{bottom:935.333333pt;}
.y22d{bottom:937.413333pt;}
.y8f{bottom:938.213333pt;}
.y2c1{bottom:940.613333pt;}
.y129{bottom:941.893333pt;}
.y214{bottom:943.333333pt;}
.y4{bottom:950.533333pt;}
.yd6{bottom:953.413333pt;}
.y8e{bottom:955.813333pt;}
.y2c0{bottom:955.973333pt;}
.y128{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.yb{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y8b{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y8a{bottom:997.920000pt;}
.h20{height:3.612500pt;}
.h9{height:4.590000pt;}
.h57{height:5.562500pt;}
.h30{height:10.720000pt;}
.h3a{height:10.880000pt;}
.h5{height:12.000000pt;}
.h3c{height:13.280000pt;}
.h50{height:14.080000pt;}
.h35{height:15.040000pt;}
.h3b{height:16.800000pt;}
.h1c{height:18.933750pt;}
.h42{height:19.477500pt;}
.h26{height:19.680000pt;}
.h37{height:19.840000pt;}
.h3e{height:20.960000pt;}
.h32{height:21.440000pt;}
.h34{height:21.472000pt;}
.h38{height:21.600000pt;}
.h1f{height:22.578125pt;}
.h45{height:23.040000pt;}
.h4b{height:23.072000pt;}
.h1a{height:23.239214pt;}
.h12{height:24.097500pt;}
.h1d{height:26.190625pt;}
.h25{height:27.031250pt;}
.h16{height:27.523125pt;}
.h46{height:28.448437pt;}
.h3d{height:28.800000pt;}
.h22{height:29.216250pt;}
.h11{height:29.281875pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h2e{height:30.595000pt;}
.hd{height:31.217812pt;}
.h36{height:31.840000pt;}
.h33{height:32.320000pt;}
.h8{height:33.277500pt;}
.h44{height:33.867188pt;}
.hc{height:34.945312pt;}
.h18{height:36.146250pt;}
.h2c{height:36.883125pt;}
.hf{height:37.479688pt;}
.h13{height:38.441250pt;}
.h39{height:40.160000pt;}
.h3{height:40.736250pt;}
.h19{height:40.882500pt;}
.hb{height:42.866250pt;}
.h31{height:42.880000pt;}
.h1b{height:43.031250pt;}
.h2a{height:43.782500pt;}
.h15{height:45.156250pt;}
.h56{height:45.326250pt;}
.h2b{height:46.375000pt;}
.h2d{height:46.478429pt;}
.h28{height:47.109375pt;}
.h6{height:47.621250pt;}
.h52{height:49.120000pt;}
.h17{height:49.148438pt;}
.h55{height:52.785000pt;}
.h2{height:52.832812pt;}
.h10{height:54.397500pt;}
.h43{height:57.375000pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h14{height:60.288750pt;}
.ha{height:60.800000pt;}
.h24{height:63.552000pt;}
.h21{height:64.800000pt;}
.h29{height:66.750000pt;}
.h41{height:67.128750pt;}
.h47{height:69.120000pt;}
.h54{height:73.600000pt;}
.h53{height:73.632000pt;}
.h2f{height:76.308750pt;}
.h51{height:85.760000pt;}
.h40{height:85.952000pt;}
.h4d{height:92.000000pt;}
.h3f{height:97.760000pt;}
.h4e{height:103.392000pt;}
.h4f{height:103.520000pt;}
.h27{height:128.640000pt;}
.h4a{height:172.506667pt;}
.h4c{height:230.106667pt;}
.h48{height:287.386667pt;}
.h49{height:310.626667pt;}
.h23{height:465.026667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.we{width:35.552000pt;}
.wc{width:54.432000pt;}
.w10{width:56.320000pt;}
.w12{width:60.000000pt;}
.w19{width:65.920000pt;}
.wd{width:72.000000pt;}
.w4{width:72.960000pt;}
.w17{width:77.920000pt;}
.w11{width:80.992000pt;}
.w6{width:89.920000pt;}
.w15{width:126.080000pt;}
.w7{width:137.306667pt;}
.w1a{width:137.786667pt;}
.w13{width:143.706667pt;}
.wb{width:160.346667pt;}
.w14{width:162.106667pt;}
.w9{width:162.266667pt;}
.wf{width:336.866667pt;}
.w16{width:456.133333pt;}
.w18{width:468.133333pt;}
.w8{width:473.533333pt;}
.w1b{width:502.813333pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x63{left:3.780000pt;}
.x8{left:7.200000pt;}
.x2f{left:8.320000pt;}
.x16{left:9.600000pt;}
.x29{left:11.360000pt;}
.x2b{left:13.120000pt;}
.x2d{left:14.720000pt;}
.x30{left:15.840000pt;}
.x36{left:17.600000pt;}
.x1b{left:18.893333pt;}
.x32{left:20.800000pt;}
.x38{left:22.240000pt;}
.x33{left:23.360000pt;}
.x2e{left:24.314667pt;}
.x44{left:25.754667pt;}
.x34{left:26.714667pt;}
.x39{left:27.680000pt;}
.xd{left:29.919988pt;}
.x46{left:31.194667pt;}
.x4f{left:32.320000pt;}
.x40{left:34.720000pt;}
.x3e{left:37.120000pt;}
.x59{left:38.880000pt;}
.xa{left:44.960000pt;}
.x3f{left:46.560000pt;}
.x49{left:49.120000pt;}
.x48{left:52.800000pt;}
.x23{left:59.999988pt;}
.x6{left:65.754667pt;}
.x50{left:68.320000pt;}
.x9{left:70.592000pt;}
.x18{left:71.520000pt;}
.x4d{left:74.560000pt;}
.x5{left:77.914667pt;}
.x47{left:82.080000pt;}
.x15{left:83.072000pt;}
.x1a{left:84.352000pt;}
.x42{left:89.920000pt;}
.x45{left:93.440000pt;}
.x4{left:96.031988pt;}
.x4a{left:98.560000pt;}
.xb{left:104.831988pt;}
.x21{left:108.031988pt;}
.x24{left:114.112000pt;}
.x4b{left:117.920000pt;}
.x35{left:119.040000pt;}
.x3a{left:122.240000pt;}
.xe{left:124.831988pt;}
.x51{left:129.280000pt;}
.x4c{left:130.880000pt;}
.x43{left:134.240000pt;}
.x4e{left:137.120000pt;}
.x3d{left:138.400000pt;}
.xc{left:143.386655pt;}
.x27{left:145.626667pt;}
.x3c{left:146.586667pt;}
.x41{left:150.106667pt;}
.x3b{left:154.266667pt;}
.x31{left:155.386667pt;}
.x37{left:156.666667pt;}
.x11{left:161.466655pt;}
.x7{left:168.986667pt;}
.x25{left:186.106667pt;}
.x57{left:210.786667pt;}
.x1{left:213.306655pt;}
.x56{left:215.706667pt;}
.x5a{left:216.866667pt;}
.x26{left:221.666667pt;}
.xf{left:226.306655pt;}
.x5d{left:234.146667pt;}
.x10{left:266.306655pt;}
.x17{left:269.506667pt;}
.x19{left:279.906667pt;}
.x3{left:315.106655pt;}
.x2{left:357.026655pt;}
.x55{left:394.493322pt;}
.x12{left:408.893322pt;}
.x60{left:413.693322pt;}
.x1e{left:416.573322pt;}
.x5e{left:433.373322pt;}
.x13{left:434.813322pt;}
.x14{left:436.253322pt;}
.x62{left:439.453322pt;}
.x1c{left:551.336000pt;}
.x28{left:558.533333pt;}
.x52{left:579.973333pt;}
.x2a{left:614.853333pt;}
.x58{left:671.840000pt;}
.x53{left:675.519988pt;}
.x54{left:679.519988pt;}
.x5b{left:683.840000pt;}
.x5c{left:692.959988pt;}
.x2c{left:695.840000pt;}
.x5f{left:701.919988pt;}
.x1d{left:704.959988pt;}
.x61{left:706.879988pt;}
.x1f{left:709.919988pt;}
.x22{left:723.679988pt;}
.x20{left:730.719988pt;}
}




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