
    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_711facdd789fb36b4944696c.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_9ebfb506d19bf466ecc9d316.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_f9d6daedcebf3f1836228561.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_8030ee21f830baaf6284bf43.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_d398350718ab9b404274be6a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901855;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_726a48894981bcea3291d86b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966797;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b0f1a86a98f6649edd868b0e.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9591850e1dd68342437d9fd4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.901855;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_1c4ee6fcaed4c017cb46fa4d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_2e5fc3d75455f2c85cfc9f3f.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_82230dd6a4c34b8092a6ca5b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;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);}
.v4{vertical-align:-75.600000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls28{letter-spacing:-19.260000px;}
.ls1b{letter-spacing:-16.380000px;}
.ls1c{letter-spacing:-15.660000px;}
.lsc{letter-spacing:-9.720000px;}
.ls1a{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.269400px;}
.lsb{letter-spacing:-0.226200px;}
.ls19{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.181200px;}
.ls5{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.178800px;}
.ls9{letter-spacing:-0.089400px;}
.ls1d{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2e{letter-spacing:0.089400px;}
.ls17{letter-spacing:0.106800px;}
.lse{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls8{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls25{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.900000px;}
.ls24{letter-spacing:3.705120px;}
.ls12{letter-spacing:14.400000px;}
.ls20{letter-spacing:15.066720px;}
.ls26{letter-spacing:15.238800px;}
.ls27{letter-spacing:15.955920px;}
.ls1f{letter-spacing:16.020000px;}
.ls23{letter-spacing:16.506720px;}
.ls29{letter-spacing:16.673040px;}
.lsd{letter-spacing:17.460000px;}
.ls10{letter-spacing:19.386720px;}
.ls21{letter-spacing:19.541520px;}
.ls22{letter-spacing:19.620000px;}
.ls2a{letter-spacing:31.075200px;}
.ls2c{letter-spacing:33.226560px;}
.ls2b{letter-spacing:45.477360px;}
.ls1e{letter-spacing:46.026720px;}
.ls1{letter-spacing:48.420000px;}
.ls2d{letter-spacing:296.100000px;}
.ls15{letter-spacing:373.320000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.ws15{word-spacing:-15.876000px;}
.ws16{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.wsc{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.733600px;}
.ws1d{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws1b{word-spacing:-13.447440px;}
.ws11{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.878800px;}
.ws10{word-spacing:-11.790600px;}
.ws1{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.980000px;}
.ws1e{word-spacing:-10.529400px;}
.ws6{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.350600px;}
.ws8{word-spacing:-10.261200px;}
.wsa{word-spacing:-10.213800px;}
.ws5{word-spacing:-9.000000px;}
.ws2{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.ws14{word-spacing:119.556000px;}
.ws17{word-spacing:142.524000px;}
.ws18{word-spacing:210.660000px;}
.ws19{word-spacing:210.672000px;}
._36{margin-left:-2875.536000px;}
._1b{margin-left:-2849.256960px;}
._1a{margin-left:-2845.656000px;}
._43{margin-left:-294.209280px;}
._3b{margin-left:-221.171040px;}
._38{margin-left:-211.858560px;}
._39{margin-left:-207.403200px;}
._3f{margin-left:-190.686240px;}
._3d{margin-left:-169.806240px;}
._37{margin-left:-156.150720px;}
._3a{margin-left:-153.812160px;}
._3e{margin-left:-148.926240px;}
._40{margin-left:-139.864320px;}
._42{margin-left:-138.486240px;}
._3c{margin-left:-115.560000px;}
._44{margin-left:-94.680000px;}
._41{margin-left:-88.833600px;}
._6{margin-left:-60.300000px;}
._62{margin-left:-58.541040px;}
._5f{margin-left:-47.188080px;}
._63{margin-left:-44.760240px;}
._64{margin-left:-34.128240px;}
._61{margin-left:-33.091200px;}
._60{margin-left:-31.878720px;}
._56{margin-left:-30.611520px;}
._5e{margin-left:-29.238480px;}
._54{margin-left:-19.412880px;}
._58{margin-left:-18.141360px;}
._57{margin-left:-15.955920px;}
._53{margin-left:-14.716080px;}
._55{margin-left:-11.571840px;}
._2a{margin-left:-4.289040px;}
._b{margin-left:-2.775600px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._13{width:2.270880px;}
._2{width:3.332640px;}
._15{width:4.659600px;}
._11{width:5.850960px;}
._17{width:7.185360px;}
._18{width:8.779200px;}
._14{width:9.914640px;}
._9{width:11.473920px;}
._8{width:12.549600px;}
._a{width:13.733760px;}
._16{width:14.808000px;}
._28{width:16.135200px;}
._e{width:17.145600px;}
._22{width:18.324960px;}
._1f{width:19.416480px;}
._23{width:20.547360px;}
._1c{width:21.627600px;}
._24{width:23.246640px;}
._27{width:24.376560px;}
._33{width:25.398000px;}
._30{width:26.413920px;}
._1d{width:27.728640px;}
._1e{width:29.575680px;}
._d{width:30.923520px;}
._c{width:31.971600px;}
._20{width:33.101520px;}
._35{width:34.122960px;}
._12{width:35.258400px;}
._21{width:36.306960px;}
._29{width:38.007360px;}
._45{width:39.262320px;}
._2c{width:40.272720px;}
._2f{width:41.712480px;}
._2d{width:43.200960px;}
._2e{width:45.292560px;}
._34{width:46.493280px;}
._46{width:47.873280px;}
._26{width:49.953840px;}
._25{width:51.214320px;}
._59{width:52.344240px;}
._2b{width:53.898000px;}
._32{width:54.924960px;}
._4b{width:57.011040px;}
._4d{width:58.266000px;}
._52{width:60.144720px;}
._4f{width:62.802240px;}
._49{width:64.297200px;}
._4{width:65.496000px;}
._50{width:67.224480px;}
._4e{width:70.180080px;}
._3{width:71.923680px;}
._31{width:73.678560px;}
._4a{width:75.531120px;}
._10{width:77.807520px;}
._f{width:79.122240px;}
._4c{width:82.044960px;}
._5d{width:83.245680px;}
._48{width:84.554880px;}
._5c{width:97.289280px;}
._47{width:152.736000px;}
._5b{width:193.656000px;}
._51{width:197.485200px;}
._5{width:199.620000px;}
._5a{width:213.701760px;}
._19{width:278.610000px;}
._65{width:296.392560px;}
._7{width:755.976000px;}
._66{width:1516.025760px;}
.fcc{color:rgb(0,112,192);}
.fc8{color:transparent;}
.fcb{color:rgb(15,17,21);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fca{color:rgb(89,89,89);}
.fc9{color:rgb(64,64,64);}
.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;}
.fs15{font-size:6.000000px;}
.fs10{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fs11{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fsf{font-size:50.848916px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs14{font-size:54.144000px;}
.fs7{font-size:59.760000px;}
.fs13{font-size:63.360000px;}
.fs12{font-size:63.504000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4c{bottom:-246.810000px;}
.y4b{bottom:-212.970000px;}
.y4a{bottom:-179.310000px;}
.y86{bottom:-169.605000px;}
.y49{bottom:-145.650000px;}
.y85{bottom:-135.765000px;}
.y48{bottom:-111.810000px;}
.y84{bottom:-102.105000px;}
.y47{bottom:-78.120000px;}
.y83{bottom:-68.265000px;}
.y46{bottom:-44.280000px;}
.y6c{bottom:-39.420000px;}
.y82{bottom:-34.560000px;}
.y88{bottom:-17.922750px;}
.y45{bottom:-10.620000px;}
.y81{bottom:-0.720000px;}
.y0{bottom:0.000000px;}
.y38f{bottom:1.837500px;}
.y1c9{bottom:2.340000px;}
.y168{bottom:2.520000px;}
.y363{bottom:2.700000px;}
.y202{bottom:3.060000px;}
.y6b{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y74{bottom:5.400000px;}
.y76{bottom:5.550000px;}
.y19d{bottom:6.840000px;}
.y1a2{bottom:7.020000px;}
.y44{bottom:7.560000px;}
.y1f4{bottom:8.280000px;}
.y360{bottom:8.820000px;}
.y198{bottom:9.360000px;}
.y1b9{bottom:11.340000px;}
.y8{bottom:12.420000px;}
.y22c{bottom:12.525000px;}
.y19f{bottom:13.680000px;}
.y1a5{bottom:13.860000px;}
.y1ea{bottom:14.220000px;}
.y1f2{bottom:14.400000px;}
.y36b{bottom:14.445000px;}
.y369{bottom:14.580000px;}
.y361{bottom:14.760000px;}
.y200{bottom:15.120000px;}
.y19b{bottom:16.200000px;}
.y1a4{bottom:16.380000px;}
.y1b7{bottom:16.560000px;}
.y6a{bottom:19.080000px;}
.y73{bottom:19.800000px;}
.y1ec{bottom:20.160000px;}
.y1ee{bottom:20.340000px;}
.y35f{bottom:20.880000px;}
.y43{bottom:21.600000px;}
.y9{bottom:21.780000px;}
.y6{bottom:23.220000px;}
.y1cb{bottom:23.400000px;}
.y1dd{bottom:23.430000px;}
.y7{bottom:24.480000px;}
.y1e8{bottom:26.280000px;}
.y1f1{bottom:26.460000px;}
.y378{bottom:26.490000px;}
.y362{bottom:26.820000px;}
.y35e{bottom:27.360000px;}
.y195{bottom:30.060000px;}
.y80{bottom:30.240000px;}
.y69{bottom:31.320000px;}
.y1eb{bottom:32.220000px;}
.y72{bottom:32.790000px;}
.yb{bottom:35.100000px;}
.y42{bottom:35.460000px;}
.y166{bottom:36.720000px;}
.y196{bottom:36.900000px;}
.y1e9{bottom:38.340000px;}
.y1f0{bottom:38.520000px;}
.y173{bottom:41.220000px;}
.y22b{bottom:42.270000px;}
.y7f{bottom:43.200000px;}
.y19a{bottom:43.920000px;}
.y71{bottom:45.930000px;}
.y8b{bottom:47.520000px;}
.y1b5{bottom:48.105000px;}
.y175{bottom:48.240000px;}
.y68{bottom:49.320000px;}
.y41{bottom:49.500000px;}
.y227{bottom:50.040000px;}
.y197{bottom:50.760000px;}
.y172{bottom:55.080000px;}
.y7e{bottom:56.160000px;}
.y4{bottom:57.420000px;}
.y199{bottom:57.600000px;}
.y70{bottom:58.890000px;}
.y16c{bottom:59.400000px;}
.y17a{bottom:59.580000px;}
.y223{bottom:61.020000px;}
.y40{bottom:62.460000px;}
.y87{bottom:63.780000px;}
.y226{bottom:64.620000px;}
.y22a{bottom:64.800000px;}
.y8a{bottom:66.420000px;}
.y67{bottom:67.140000px;}
.y7d{bottom:69.300000px;}
.y6f{bottom:72.030000px;}
.y7c{bottom:82.260000px;}
.y66{bottom:84.960000px;}
.y6e{bottom:89.130000px;}
.y22f{bottom:91.830000px;}
.y7b{bottom:95.400000px;}
.y130{bottom:96.480000px;}
.y65{bottom:98.460000px;}
.y116{bottom:98.820000px;}
.y25c{bottom:99.720000px;}
.y21f{bottom:101.160000px;}
.y1c7{bottom:101.520000px;}
.y192{bottom:103.140000px;}
.y222{bottom:105.660000px;}
.y359{bottom:105.840000px;}
.y2c4{bottom:106.200000px;}
.y161{bottom:107.100000px;}
.y64{bottom:107.145000px;}
.y7a{bottom:108.360000px;}
.y12f{bottom:109.260000px;}
.y27b{bottom:109.980000px;}
.y22e{bottom:118.110000px;}
.y206{bottom:118.260000px;}
.y115{bottom:118.620000px;}
.y25b{bottom:119.520000px;}
.y3e{bottom:120.420000px;}
.y309{bottom:120.780000px;}
.y21e{bottom:120.960000px;}
.y79{bottom:121.320000px;}
.ybc{bottom:123.120000px;}
.ye3{bottom:124.920000px;}
.y63{bottom:124.965000px;}
.y29f{bottom:126.000000px;}
.y2c3{bottom:126.180000px;}
.y160{bottom:126.900000px;}
.y12e{bottom:129.060000px;}
.y27a{bottom:129.780000px;}
.y203{bottom:130.320000px;}
.y332{bottom:132.300000px;}
.y78{bottom:133.560000px;}
.y23c{bottom:135.825000px;}
.y233{bottom:136.830000px;}
.y114{bottom:138.420000px;}
.y25a{bottom:139.500000px;}
.y21d{bottom:140.220000px;}
.y3d{bottom:140.400000px;}
.y225{bottom:140.580000px;}
.y308{bottom:140.760000px;}
.y1c6{bottom:141.120000px;}
.y205{bottom:142.380000px;}
.y62{bottom:142.785000px;}
.ybb{bottom:142.920000px;}
.y22d{bottom:144.390000px;}
.ye2{bottom:144.720000px;}
.y29e{bottom:145.800000px;}
.y358{bottom:145.980000px;}
.y2c2{bottom:146.160000px;}
.y15f{bottom:146.700000px;}
.y12d{bottom:148.860000px;}
.y279{bottom:149.760000px;}
.y238{bottom:152.100000px;}
.y38e{bottom:152.280000px;}
.y204{bottom:154.440000px;}
.y229{bottom:154.875000px;}
.y23b{bottom:155.670000px;}
.y331{bottom:155.700000px;}
.y21c{bottom:158.040000px;}
.y113{bottom:158.220000px;}
.y191{bottom:159.300000px;}
.y3c{bottom:160.200000px;}
.y2ee{bottom:160.380000px;}
.y307{bottom:160.740000px;}
.y61{bottom:160.785000px;}
.y1c5{bottom:160.920000px;}
.yba{bottom:162.750000px;}
.ye1{bottom:164.730000px;}
.y29d{bottom:165.630000px;}
.y2c1{bottom:166.170000px;}
.y1ff{bottom:166.530000px;}
.y15e{bottom:166.710000px;}
.y237{bottom:167.370000px;}
.y38d{bottom:168.510000px;}
.y12c{bottom:168.690000px;}
.y278{bottom:169.590000px;}
.y190{bottom:171.390000px;}
.y21b{bottom:173.730000px;}
.y23a{bottom:175.500000px;}
.y230{bottom:175.680000px;}
.y112{bottom:178.230000px;}
.y60{bottom:178.605000px;}
.y330{bottom:178.950000px;}
.y259{bottom:179.130000px;}
.y232{bottom:179.205000px;}
.y3b{bottom:180.030000px;}
.y2ed{bottom:180.390000px;}
.y38c{bottom:180.570000px;}
.y1c4{bottom:180.750000px;}
.y236{bottom:182.595000px;}
.yb9{bottom:182.730000px;}
.y18f{bottom:183.450000px;}
.ye0{bottom:184.530000px;}
.y2c0{bottom:186.150000px;}
.y357{bottom:186.330000px;}
.y15d{bottom:186.510000px;}
.y29c{bottom:186.690000px;}
.y228{bottom:187.485000px;}
.y12b{bottom:188.670000px;}
.y277{bottom:189.390000px;}
.y201{bottom:192.090000px;}
.y224{bottom:194.190000px;}
.y5f{bottom:196.425000px;}
.y239{bottom:197.850000px;}
.y111{bottom:198.030000px;}
.y258{bottom:198.930000px;}
.y3a{bottom:199.830000px;}
.y18e{bottom:200.010000px;}
.y234{bottom:200.370000px;}
.y1c3{bottom:200.730000px;}
.y32f{bottom:202.350000px;}
.yb8{bottom:202.530000px;}
.y1fd{bottom:204.150000px;}
.ydf{bottom:204.330000px;}
.y38b{bottom:204.690000px;}
.y2bf{bottom:206.130000px;}
.y15c{bottom:206.310000px;}
.y356{bottom:206.490000px;}
.y12a{bottom:208.470000px;}
.y276{bottom:209.190000px;}
.y5e{bottom:214.245000px;}
.y1fe{bottom:216.210000px;}
.y110{bottom:217.830000px;}
.y257{bottom:218.730000px;}
.y39{bottom:219.630000px;}
.y2ec{bottom:220.350000px;}
.y1c2{bottom:220.530000px;}
.y306{bottom:220.710000px;}
.yb7{bottom:222.330000px;}
.y189{bottom:222.690000px;}
.yde{bottom:224.130000px;}
.y221{bottom:225.210000px;}
.y32e{bottom:225.750000px;}
.y15b{bottom:226.110000px;}
.y355{bottom:226.650000px;}
.y29b{bottom:227.370000px;}
.y129{bottom:228.270000px;}
.y38a{bottom:228.810000px;}
.y275{bottom:228.990000px;}
.y5d{bottom:232.065000px;}
.y235{bottom:232.170000px;}
.y10f{bottom:237.630000px;}
.y256{bottom:238.710000px;}
.y38{bottom:239.610000px;}
.y1c1{bottom:240.330000px;}
.y2eb{bottom:240.690000px;}
.y389{bottom:240.870000px;}
.yb6{bottom:242.130000px;}
.ydd{bottom:243.930000px;}
.y18d{bottom:245.550000px;}
.y15a{bottom:245.910000px;}
.y354{bottom:246.810000px;}
.y5c{bottom:247.545000px;}
.y128{bottom:248.070000px;}
.y29a{bottom:248.430000px;}
.y274{bottom:248.970000px;}
.y1fc{bottom:252.390000px;}
.y10e{bottom:257.430000px;}
.y255{bottom:258.510000px;}
.y5b{bottom:259.965000px;}
.y1c0{bottom:260.130000px;}
.y37{bottom:260.670000px;}
.yb5{bottom:261.930000px;}
.y231{bottom:262.290000px;}
.y2be{bottom:263.550000px;}
.ydc{bottom:263.910000px;}
.y1fb{bottom:264.450000px;}
.y388{bottom:264.990000px;}
.y159{bottom:265.890000px;}
.y353{bottom:266.970000px;}
.y127{bottom:267.870000px;}
.y18c{bottom:268.410000px;}
.y273{bottom:268.770000px;}
.y299{bottom:272.190000px;}
.y32d{bottom:272.370000px;}
.y1f8{bottom:276.510000px;}
.y10d{bottom:277.410000px;}
.y5a{bottom:277.785000px;}
.y36{bottom:277.950000px;}
.y254{bottom:278.310000px;}
.y1bf{bottom:279.930000px;}
.y305{bottom:280.470000px;}
.y2ea{bottom:280.650000px;}
.y2bd{bottom:280.830000px;}
.yb4{bottom:281.910000px;}
.ydb{bottom:284.970000px;}
.y158{bottom:285.690000px;}
.y35{bottom:286.410000px;}
.y352{bottom:287.130000px;}
.y126{bottom:287.850000px;}
.y1fa{bottom:288.570000px;}
.y387{bottom:289.290000px;}
.y18b{bottom:291.090000px;}
.y4d{bottom:292.530000px;}
.y32c{bottom:295.590000px;}
.y59{bottom:295.605000px;}
.y10c{bottom:297.210000px;}
.y253{bottom:298.110000px;}
.y1be{bottom:299.910000px;}
.y1f9{bottom:300.630000px;}
.y304{bottom:300.810000px;}
.yb3{bottom:301.710000px;}
.yda{bottom:305.130000px;}
.y157{bottom:305.490000px;}
.y34{bottom:306.570000px;}
.y351{bottom:307.290000px;}
.y125{bottom:307.650000px;}
.y272{bottom:308.370000px;}
.y298{bottom:312.690000px;}
.y1f5{bottom:312.870000px;}
.y386{bottom:313.410000px;}
.y58{bottom:313.425000px;}
.y18a{bottom:313.950000px;}
.y2bc{bottom:315.390000px;}
.y10b{bottom:317.010000px;}
.y252{bottom:317.910000px;}
.y32b{bottom:318.990000px;}
.yd9{bottom:319.350000px;}
.y33{bottom:319.530000px;}
.y1bd{bottom:319.710000px;}
.y2e9{bottom:320.430000px;}
.y303{bottom:320.790000px;}
.yb2{bottom:321.510000px;}
.y1f7{bottom:324.930000px;}
.y156{bottom:325.290000px;}
.y385{bottom:325.470000px;}
.y124{bottom:327.450000px;}
.y271{bottom:328.170000px;}
.y57{bottom:331.275000px;}
.y297{bottom:332.490000px;}
.y2bb{bottom:335.370000px;}
.y184{bottom:336.630000px;}
.y10a{bottom:336.810000px;}
.y1f6{bottom:336.990000px;}
.y384{bottom:337.530000px;}
.y251{bottom:337.890000px;}
.y32{bottom:339.150000px;}
.y1bc{bottom:339.510000px;}
.y2e8{bottom:340.770000px;}
.yb1{bottom:341.310000px;}
.y32a{bottom:342.390000px;}
.y155{bottom:345.090000px;}
.y123{bottom:347.250000px;}
.y350{bottom:347.430000px;}
.y270{bottom:348.150000px;}
.y1ed{bottom:349.050000px;}
.y56{bottom:349.275000px;}
.y296{bottom:352.470000px;}
.y2ba{bottom:355.350000px;}
.y1bb{bottom:355.890000px;}
.y109{bottom:356.610000px;}
.y250{bottom:357.690000px;}
.yd8{bottom:358.950000px;}
.y188{bottom:359.490000px;}
.y2e7{bottom:360.750000px;}
.yb0{bottom:361.110000px;}
.y383{bottom:361.650000px;}
.y154{bottom:365.070000px;}
.y329{bottom:365.610000px;}
.y31{bottom:365.790000px;}
.y122{bottom:367.050000px;}
.y55{bottom:367.095000px;}
.y34f{bottom:367.590000px;}
.y1ba{bottom:367.950000px;}
.y295{bottom:372.270000px;}
.y1f3{bottom:373.170000px;}
.y2b9{bottom:375.330000px;}
.y108{bottom:376.590000px;}
.y24f{bottom:377.490000px;}
.yd7{bottom:378.930000px;}
.y2e6{bottom:380.730000px;}
.yaf{bottom:381.090000px;}
.y187{bottom:382.350000px;}
.y1b4{bottom:384.510000px;}
.y153{bottom:384.870000px;}
.y54{bottom:384.915000px;}
.y1ef{bottom:385.230000px;}
.y382{bottom:385.770000px;}
.y121{bottom:387.030000px;}
.y26f{bottom:387.750000px;}
.y328{bottom:389.010000px;}
.y30{bottom:389.550000px;}
.y294{bottom:392.070000px;}
.y2b8{bottom:395.355000px;}
.y107{bottom:396.435000px;}
.y24e{bottom:397.335000px;}
.y53{bottom:398.415000px;}
.yd6{bottom:398.775000px;}
.y1e7{bottom:399.675000px;}
.y2e5{bottom:400.755000px;}
.yae{bottom:400.935000px;}
.y302{bottom:401.115000px;}
.y152{bottom:404.715000px;}
.y186{bottom:405.075000px;}
.y120{bottom:406.875000px;}
.y52{bottom:407.055000px;}
.y1b8{bottom:407.235000px;}
.y26e{bottom:407.595000px;}
.y34e{bottom:407.955000px;}
.y381{bottom:409.935000px;}
.y327{bottom:410.655000px;}
.y293{bottom:411.915000px;}
.y2f{bottom:413.355000px;}
.y2b7{bottom:415.335000px;}
.y106{bottom:416.235000px;}
.y24d{bottom:417.135000px;}
.yd5{bottom:418.575000px;}
.yad{bottom:420.735000px;}
.y301{bottom:421.095000px;}
.y151{bottom:424.515000px;}
.y51{bottom:424.875000px;}
.y11f{bottom:426.675000px;}
.y26d{bottom:427.395000px;}
.y185{bottom:427.935000px;}
.y34d{bottom:428.115000px;}
.y326{bottom:430.635000px;}
.y292{bottom:431.715000px;}
.y380{bottom:434.235000px;}
.y2b6{bottom:435.315000px;}
.y105{bottom:436.035000px;}
.y24c{bottom:437.115000px;}
.y2e{bottom:437.295000px;}
.yd4{bottom:438.375000px;}
.yac{bottom:440.535000px;}
.y2e4{bottom:441.075000px;}
.y50{bottom:442.695000px;}
.y150{bottom:444.315000px;}
.y77{bottom:445.395000px;}
.y11e{bottom:446.475000px;}
.y26c{bottom:447.375000px;}
.y1b6{bottom:447.555000px;}
.y34c{bottom:448.275000px;}
.y325{bottom:450.615000px;}
.y180{bottom:450.795000px;}
.y291{bottom:452.955000px;}
.y2b5{bottom:455.295000px;}
.y104{bottom:455.835000px;}
.y24b{bottom:456.915000px;}
.y2d{bottom:457.995000px;}
.yd3{bottom:458.175000px;}
.y37f{bottom:458.355000px;}
.y21a{bottom:458.535000px;}
.yab{bottom:460.335000px;}
.y4f{bottom:460.695000px;}
.y300{bottom:460.875000px;}
.y2e3{bottom:461.055000px;}
.y14f{bottom:464.295000px;}
.y1e6{bottom:465.915000px;}
.y11d{bottom:466.275000px;}
.y26b{bottom:467.175000px;}
.y34b{bottom:468.435000px;}
.y324{bottom:470.595000px;}
.y183{bottom:473.475000px;}
.y2b4{bottom:475.275000px;}
.y103{bottom:475.815000px;}
.y24a{bottom:476.715000px;}
.y2c{bottom:477.615000px;}
.yd2{bottom:478.155000px;}
.y4e{bottom:478.515000px;}
.yaa{bottom:480.315000px;}
.y2e2{bottom:481.035000px;}
.y2ff{bottom:481.215000px;}
.y1e5{bottom:482.115000px;}
.y14e{bottom:484.095000px;}
.y11c{bottom:486.255000px;}
.y26a{bottom:486.975000px;}
.y34a{bottom:488.595000px;}
.y323{bottom:490.575000px;}
.y2b{bottom:491.475000px;}
.y1e4{bottom:492.915000px;}
.y290{bottom:493.455000px;}
.y37e{bottom:494.535000px;}
.y2b3{bottom:495.255000px;}
.y102{bottom:495.615000px;}
.y182{bottom:496.335000px;}
.y249{bottom:496.515000px;}
.y219{bottom:497.775000px;}
.yd1{bottom:497.955000px;}
.y2a{bottom:499.935000px;}
.ya9{bottom:500.115000px;}
.y1b3{bottom:500.655000px;}
.y2e1{bottom:501.015000px;}
.y2fe{bottom:501.195000px;}
.y14d{bottom:503.895000px;}
.y1e3{bottom:504.975000px;}
.y11b{bottom:506.055000px;}
.y37d{bottom:506.595000px;}
.y269{bottom:506.775000px;}
.y349{bottom:508.755000px;}
.y322{bottom:510.375000px;}
.y28f{bottom:513.255000px;}
.y2b2{bottom:515.235000px;}
.y101{bottom:515.415000px;}
.y218{bottom:515.595000px;}
.y248{bottom:516.315000px;}
.yd0{bottom:517.755000px;}
.y37c{bottom:518.655000px;}
.y181{bottom:519.195000px;}
.ya8{bottom:519.915000px;}
.y2e0{bottom:520.995000px;}
.y2fd{bottom:521.175000px;}
.y1e2{bottom:521.355000px;}
.y29{bottom:523.335000px;}
.y14c{bottom:523.695000px;}
.y1b2{bottom:524.235000px;}
.y11a{bottom:525.855000px;}
.y268{bottom:526.575000px;}
.y348{bottom:528.915000px;}
.y321{bottom:530.715000px;}
.y217{bottom:531.255000px;}
.y220{bottom:532.620000px;}
.y28e{bottom:533.055000px;}
.y100{bottom:535.215000px;}
.y247{bottom:536.295000px;}
.ycf{bottom:537.555000px;}
.ya7{bottom:539.715000px;}
.y2df{bottom:540.795000px;}
.y2fc{bottom:541.155000px;}
.y179{bottom:541.875000px;}
.y1e1{bottom:542.415000px;}
.y1b1{bottom:542.595000px;}
.y37b{bottom:542.775000px;}
.y14b{bottom:543.495000px;}
.y119{bottom:545.655000px;}
.y28{bottom:546.555000px;}
.y347{bottom:548.895000px;}
.y320{bottom:550.695000px;}
.y28d{bottom:553.035000px;}
.yff{bottom:555.015000px;}
.y2b1{bottom:555.195000px;}
.y246{bottom:556.095000px;}
.yce{bottom:557.355000px;}
.ya6{bottom:559.515000px;}
.y2de{bottom:561.135000px;}
.y1af{bottom:562.395000px;}
.y14a{bottom:563.475000px;}
.y17f{bottom:564.735000px;}
.y267{bottom:566.355000px;}
.y118{bottom:566.715000px;}
.y37a{bottom:566.895000px;}
.y346{bottom:569.055000px;}
.y27{bottom:569.955000px;}
.y31f{bottom:570.675000px;}
.y28c{bottom:572.835000px;}
.yfe{bottom:574.995000px;}
.y2b0{bottom:575.175000px;}
.y245{bottom:575.895000px;}
.ycd{bottom:577.335000px;}
.y379{bottom:578.955000px;}
.ya5{bottom:579.495000px;}
.y2dd{bottom:581.115000px;}
.y1ae{bottom:582.195000px;}
.y149{bottom:583.275000px;}
.y1e0{bottom:584.535000px;}
.y266{bottom:586.155000px;}
.y117{bottom:586.515000px;}
.y17e{bottom:587.595000px;}
.y345{bottom:589.215000px;}
.y31e{bottom:590.655000px;}
.y28b{bottom:592.635000px;}
.y2af{bottom:593.175000px;}
.yfd{bottom:594.795000px;}
.y244{bottom:595.695000px;}
.ycc{bottom:598.395000px;}
.ya4{bottom:599.295000px;}
.y6d{bottom:600.375000px;}
.y2dc{bottom:601.095000px;}
.y1ad{bottom:601.995000px;}
.y148{bottom:603.075000px;}
.y377{bottom:603.255000px;}
.y1dc{bottom:605.775000px;}
.y265{bottom:605.955000px;}
.y344{bottom:609.375000px;}
.y17d{bottom:610.275000px;}
.y31d{bottom:610.635000px;}
.y28a{bottom:612.435000px;}
.yfc{bottom:614.595000px;}
.y243{bottom:615.495000px;}
.ycb{bottom:618.555000px;}
.ya3{bottom:619.095000px;}
.y2db{bottom:621.075000px;}
.y1b0{bottom:621.795000px;}
.y1ac{bottom:621.975000px;}
.y147{bottom:624.165000px;}
.y26{bottom:625.065000px;}
.y264{bottom:625.785000px;}
.y1df{bottom:626.865000px;}
.y31c{bottom:630.645000px;}
.y343{bottom:631.005000px;}
.y2ae{bottom:631.185000px;}
.y289{bottom:632.265000px;}
.yca{bottom:632.805000px;}
.y17c{bottom:633.165000px;}
.yfb{bottom:634.425000px;}
.y242{bottom:635.505000px;}
.ya2{bottom:638.925000px;}
.y376{bottom:639.465000px;}
.y25{bottom:640.545000px;}
.y2da{bottom:641.085000px;}
.y1ab{bottom:641.805000px;}
.y263{bottom:645.765000px;}
.y1de{bottom:647.925000px;}
.y2ad{bottom:648.465000px;}
.y31b{bottom:650.625000px;}
.y342{bottom:650.985000px;}
.y288{bottom:652.245000px;}
.yc9{bottom:652.605000px;}
.yfa{bottom:654.225000px;}
.y241{bottom:655.305000px;}
.y17b{bottom:656.025000px;}
.y24{bottom:656.205000px;}
.ya1{bottom:658.725000px;}
.y2d9{bottom:661.065000px;}
.y1aa{bottom:661.605000px;}
.y375{bottom:663.585000px;}
.y146{bottom:664.665000px;}
.y262{bottom:665.565000px;}
.y1da{bottom:668.985000px;}
.y31a{bottom:670.605000px;}
.y341{bottom:670.965000px;}
.y287{bottom:672.045000px;}
.yc8{bottom:672.585000px;}
.y23{bottom:674.205000px;}
.y240{bottom:675.105000px;}
.y374{bottom:675.645000px;}
.y1a9{bottom:677.985000px;}
.ya0{bottom:678.705000px;}
.y2d8{bottom:681.045000px;}
.y2fb{bottom:681.405000px;}
.y145{bottom:684.645000px;}
.y261{bottom:685.365000px;}
.y2ac{bottom:686.625000px;}
.y373{bottom:687.705000px;}
.y1a8{bottom:690.045000px;}
.y319{bottom:690.945000px;}
.y286{bottom:691.845000px;}
.y22{bottom:692.385000px;}
.yf9{bottom:694.005000px;}
.y23f{bottom:694.905000px;}
.y9f{bottom:698.505000px;}
.y372{bottom:699.765000px;}
.y2d7{bottom:701.025000px;}
.y2fa{bottom:701.385000px;}
.y178{bottom:701.565000px;}
.y21{bottom:703.005000px;}
.y144{bottom:704.445000px;}
.y260{bottom:705.165000px;}
.y1a7{bottom:706.605000px;}
.y318{bottom:710.925000px;}
.y1db{bottom:711.105000px;}
.y285{bottom:711.645000px;}
.y371{bottom:711.825000px;}
.yc7{bottom:712.185000px;}
.y3f{bottom:712.725000px;}
.yf8{bottom:713.805000px;}
.y23e{bottom:714.705000px;}
.y20{bottom:717.945000px;}
.y9e{bottom:718.305000px;}
.y2d6{bottom:721.005000px;}
.y2f9{bottom:721.365000px;}
.y143{bottom:724.245000px;}
.y177{bottom:724.425000px;}
.y25f{bottom:724.965000px;}
.y2ab{bottom:727.305000px;}
.y1a6{bottom:729.285000px;}
.y317{bottom:730.905000px;}
.y284{bottom:731.445000px;}
.yc6{bottom:731.985000px;}
.y1d7{bottom:732.165000px;}
.y23d{bottom:732.705000px;}
.yf7{bottom:733.605000px;}
.y1f{bottom:735.765000px;}
.y370{bottom:735.945000px;}
.y9d{bottom:738.105000px;}
.y2d5{bottom:740.985000px;}
.y2f8{bottom:741.165000px;}
.y142{bottom:744.045000px;}
.y25e{bottom:744.945000px;}
.y176{bottom:747.105000px;}
.y36f{bottom:748.185000px;}
.y1e{bottom:748.725000px;}
.y316{bottom:750.885000px;}
.y283{bottom:751.245000px;}
.yc5{bottom:751.785000px;}
.y1a3{bottom:752.145000px;}
.y1d9{bottom:753.225000px;}
.yf6{bottom:753.405000px;}
.y9c{bottom:757.905000px;}
.y2d4{bottom:761.325000px;}
.y2f7{bottom:761.505000px;}
.y1d{bottom:761.685000px;}
.y141{bottom:763.845000px;}
.y25d{bottom:764.745000px;}
.y2aa{bottom:766.905000px;}
.y174{bottom:769.965000px;}
.y340{bottom:770.865000px;}
.y282{bottom:771.225000px;}
.yc4{bottom:771.765000px;}
.y36e{bottom:772.305000px;}
.yf5{bottom:773.385000px;}
.y1d8{bottom:774.285000px;}
.y1c{bottom:775.725000px;}
.y9b{bottom:777.885000px;}
.y2d3{bottom:781.305000px;}
.y2f6{bottom:781.485000px;}
.y140{bottom:783.825000px;}
.y216{bottom:784.545000px;}
.y2a9{bottom:787.965000px;}
.y1a1{bottom:788.685000px;}
.y1b{bottom:790.485000px;}
.y33f{bottom:790.845000px;}
.y281{bottom:791.025000px;}
.y315{bottom:791.205000px;}
.yc3{bottom:791.565000px;}
.y16b{bottom:792.825000px;}
.yf4{bottom:793.185000px;}
.y1d4{bottom:795.345000px;}
.y36d{bottom:796.425000px;}
.y9a{bottom:797.685000px;}
.y2d2{bottom:801.285000px;}
.y2f5{bottom:801.465000px;}
.y1a{bottom:801.645000px;}
.y13f{bottom:803.625000px;}
.y215{bottom:804.345000px;}
.y280{bottom:810.825000px;}
.y314{bottom:811.185000px;}
.yc2{bottom:811.365000px;}
.y1a0{bottom:811.545000px;}
.yf3{bottom:812.985000px;}
.y171{bottom:815.505000px;}
.y1d6{bottom:816.405000px;}
.y99{bottom:817.485000px;}
.y36c{bottom:820.545000px;}
.y2d1{bottom:821.265000px;}
.y2f4{bottom:821.445000px;}
.y13e{bottom:823.425000px;}
.y214{bottom:824.145000px;}
.y19{bottom:825.945000px;}
.y2a8{bottom:828.465000px;}
.y27f{bottom:830.625000px;}
.y33e{bottom:830.805000px;}
.yc1{bottom:831.165000px;}
.yf2{bottom:832.785000px;}
.y19e{bottom:834.405000px;}
.y98{bottom:837.285000px;}
.y1d5{bottom:837.465000px;}
.y170{bottom:838.365000px;}
.y2d0{bottom:841.065000px;}
.y2f3{bottom:841.425000px;}
.y213{bottom:844.125000px;}
.y13d{bottom:844.485000px;}
.y36a{bottom:844.665000px;}
.y2a7{bottom:848.445000px;}
.y18{bottom:849.525000px;}
.y27e{bottom:850.425000px;}
.y33d{bottom:850.785000px;}
.yc0{bottom:850.965000px;}
.y313{bottom:851.145000px;}
.yf1{bottom:852.585000px;}
.y97{bottom:857.130000px;}
.y1d1{bottom:858.750000px;}
.y16f{bottom:861.270000px;}
.y2cf{bottom:861.450000px;}
.y13c{bottom:863.610000px;}
.y212{bottom:863.970000px;}
.y17{bottom:864.510000px;}
.y2a6{bottom:868.290000px;}
.y368{bottom:868.830000px;}
.y27d{bottom:870.450000px;}
.y33c{bottom:870.810000px;}
.ybf{bottom:870.990000px;}
.y312{bottom:871.170000px;}
.yf0{bottom:872.610000px;}
.y13b{bottom:874.950000px;}
.y96{bottom:877.110000px;}
.y16{bottom:879.450000px;}
.y1d3{bottom:879.810000px;}
.y2ce{bottom:881.430000px;}
.y211{bottom:883.770000px;}
.y16e{bottom:883.950000px;}
.y2a5{bottom:888.090000px;}
.y15{bottom:889.890000px;}
.y33b{bottom:890.790000px;}
.y311{bottom:891.150000px;}
.y27c{bottom:891.510000px;}
.ybe{bottom:892.050000px;}
.yef{bottom:892.410000px;}
.y367{bottom:893.130000px;}
.y19c{bottom:893.850000px;}
.y13a{bottom:894.930000px;}
.y95{bottom:896.910000px;}
.y1d2{bottom:900.870000px;}
.y2cd{bottom:901.410000px;}
.y210{bottom:903.570000px;}
.y14{bottom:904.290000px;}
.y16d{bottom:906.810000px;}
.y2a4{bottom:907.890000px;}
.y33a{bottom:910.770000px;}
.y310{bottom:911.130000px;}
.yee{bottom:912.210000px;}
.y139{bottom:914.730000px;}
.ybd{bottom:915.810000px;}
.y94{bottom:916.710000px;}
.y366{bottom:917.250000px;}
.y194{bottom:918.870000px;}
.y2f2{bottom:921.390000px;}
.y2cc{bottom:921.750000px;}
.y1ce{bottom:921.930000px;}
.y20f{bottom:923.370000px;}
.y13{bottom:925.530000px;}
.y2a3{bottom:928.950000px;}
.y165{bottom:929.670000px;}
.y339{bottom:930.750000px;}
.y30f{bottom:931.110000px;}
.yed{bottom:932.010000px;}
.y138{bottom:934.530000px;}
.y93{bottom:936.510000px;}
.y365{bottom:941.370000px;}
.y2cb{bottom:941.730000px;}
.y1d0{bottom:942.990000px;}
.y20e{bottom:943.350000px;}
.y12{bottom:944.790000px;}
.y338{bottom:950.730000px;}
.y30e{bottom:951.090000px;}
.yec{bottom:951.810000px;}
.y16a{bottom:952.350000px;}
.y137{bottom:954.330000px;}
.y92{bottom:956.310000px;}
.y2ca{bottom:961.710000px;}
.y20d{bottom:963.150000px;}
.y1cf{bottom:964.050000px;}
.y2a2{bottom:969.630000px;}
.y337{bottom:970.710000px;}
.y30d{bottom:971.070000px;}
.yeb{bottom:971.790000px;}
.y11{bottom:972.330000px;}
.y136{bottom:974.130000px;}
.y169{bottom:975.210000px;}
.y91{bottom:976.290000px;}
.y364{bottom:977.550000px;}
.y2c9{bottom:981.510000px;}
.y2f1{bottom:981.690000px;}
.y20c{bottom:982.950000px;}
.y1ca{bottom:985.110000px;}
.y2a1{bottom:989.430000px;}
.y336{bottom:990.690000px;}
.y30c{bottom:991.050000px;}
.yea{bottom:991.590000px;}
.y135{bottom:994.110000px;}
.y90{bottom:996.090000px;}
.y193{bottom:997.530000px;}
.y167{bottom:998.070000px;}
.y10{bottom:1000.050000px;}
.y2f0{bottom:1001.490000px;}
.y2c8{bottom:1001.850000px;}
.y20b{bottom:1002.750000px;}
.y35d{bottom:1004.010000px;}
.y1cd{bottom:1006.170000px;}
.y2a0{bottom:1010.490000px;}
.y335{bottom:1010.670000px;}
.y30b{bottom:1011.030000px;}
.ye9{bottom:1011.390000px;}
.y134{bottom:1013.910000px;}
.y8f{bottom:1015.890000px;}
.y2c7{bottom:1021.830000px;}
.y20a{bottom:1022.550000px;}
.y164{bottom:1023.090000px;}
.yf{bottom:1024.890000px;}
.y1cc{bottom:1027.230000px;}
.y334{bottom:1030.650000px;}
.y30a{bottom:1031.010000px;}
.ye8{bottom:1031.190000px;}
.y133{bottom:1033.710000px;}
.y8e{bottom:1035.690000px;}
.ye{bottom:1039.110000px;}
.y2c6{bottom:1041.810000px;}
.y209{bottom:1042.530000px;}
.y35c{bottom:1046.490000px;}
.y75{bottom:1049.580000px;}
.y1c8{bottom:1050.630000px;}
.ye7{bottom:1050.990000px;}
.y132{bottom:1053.510000px;}
.yd{bottom:1054.590000px;}
.y8d{bottom:1055.490000px;}
.y163{bottom:1056.750000px;}
.y2c5{bottom:1061.790000px;}
.y208{bottom:1062.330000px;}
.y35b{bottom:1063.410000px;}
.yc{bottom:1070.070000px;}
.y333{bottom:1070.610000px;}
.ye6{bottom:1070.970000px;}
.y162{bottom:1072.410000px;}
.y131{bottom:1073.850000px;}
.y8c{bottom:1075.290000px;}
.y35a{bottom:1080.510000px;}
.y2ef{bottom:1081.770000px;}
.y207{bottom:1082.130000px;}
.y3{bottom:1087.560000px;}
.ya{bottom:1088.100000px;}
.ye5{bottom:1088.280000px;}
.y2{bottom:1101.240000px;}
.ye4{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y89{bottom:1122.660000px;}
.h20{height:4.064063px;}
.h9{height:4.165313px;}
.h5f{height:6.257812px;}
.h43{height:12.060000px;}
.h4d{height:12.096000px;}
.h47{height:12.240000px;}
.h5{height:13.500000px;}
.h33{height:13.680000px;}
.h3b{height:13.680150px;}
.h39{height:13.716000px;}
.h34{height:13.860000px;}
.h37{height:13.896000px;}
.h1d{height:17.181914px;}
.h12{height:21.867891px;}
.h2f{height:21.912188px;}
.h25{height:22.320000px;}
.h31{height:24.120000px;}
.h5e{height:24.156000px;}
.h5d{height:24.300000px;}
.h49{height:25.136719px;}
.h1f{height:25.400391px;}
.h1a{height:25.699425px;}
.h2c{height:26.033203px;}
.h3e{height:27.540000px;}
.h3d{height:27.576000px;}
.h4b{height:28.281797px;}
.h4e{height:29.158594px;}
.h44{height:29.464453px;}
.h2d{height:29.671875px;}
.h8{height:30.198516px;}
.h15{height:30.963516px;}
.h42{height:31.320000px;}
.h17{height:32.801836px;}
.h22{height:32.868281px;}
.h11{height:32.942109px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h27{height:34.419375px;}
.h1b{height:34.437230px;}
.h19{height:34.884492px;}
.hd{height:35.120039px;}
.h4f{height:36.180000px;}
.h52{height:36.216000px;}
.h50{height:36.360000px;}
.h3{height:36.967148px;}
.h5c{height:37.080000px;}
.h51{height:37.620000px;}
.h54{height:38.100586px;}
.h1c{height:39.049805px;}
.h58{height:39.153937px;}
.hc{height:39.313477px;}
.h41{height:41.940000px;}
.hf{height:42.164648px;}
.h6{height:43.215117px;}
.h2e{height:43.506914px;}
.h3f{height:43.935117px;}
.h56{height:44.704687px;}
.h55{height:44.806289px;}
.h59{height:45.818438px;}
.h18{height:46.251562px;}
.h30{height:47.998125px;}
.hb{height:48.224531px;}
.h4c{height:48.276000px;}
.h2a{height:49.255313px;}
.h14{height:50.800781px;}
.h5a{height:52.066406px;}
.h2b{height:52.171875px;}
.h28{height:52.998047px;}
.h10{height:53.958516px;}
.h45{height:54.180000px;}
.h48{height:54.216000px;}
.h46{height:54.360000px;}
.h16{height:55.291992px;}
.h2{height:59.436914px;}
.h5b{height:59.439023px;}
.h4a{height:59.940000px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h13{height:67.824844px;}
.ha{height:68.400000px;}
.h3c{height:68.940000px;}
.h21{height:72.900000px;}
.h29{height:75.093750px;}
.h32{height:82.080000px;}
.h24{height:97.236000px;}
.h3a{height:104.940000px;}
.h40{height:104.976000px;}
.h36{height:105.120000px;}
.h38{height:105.156000px;}
.h35{height:127.836000px;}
.h26{height:144.900000px;}
.h53{height:246.240000px;}
.h57{height:277.200000px;}
.h23{height:491.115000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w2f{width:33.300000px;}
.w22{width:39.240000px;}
.w10{width:50.040000px;}
.w33{width:54.000000px;}
.w26{width:55.080000px;}
.w1b{width:60.480000px;}
.w31{width:60.696000px;}
.w32{width:60.840000px;}
.we{width:60.876000px;}
.wf{width:67.500000px;}
.w1a{width:68.256000px;}
.w16{width:70.740000px;}
.w15{width:70.920000px;}
.w18{width:71.496000px;}
.w19{width:73.440000px;}
.w27{width:74.196000px;}
.w29{width:74.340000px;}
.w1e{width:74.556000px;}
.w2c{width:76.896000px;}
.w17{width:78.516000px;}
.w4{width:82.080000px;}
.wd{width:87.660000px;}
.w2a{width:87.696000px;}
.w1f{width:94.536000px;}
.w6{width:101.160000px;}
.w28{width:101.340000px;}
.w2b{width:112.536000px;}
.w11{width:132.156000px;}
.w1d{width:137.196000px;}
.w12{width:151.590000px;}
.w7{width:154.470000px;}
.w14{width:157.710000px;}
.wc{width:168.330000px;}
.w9{width:182.550000px;}
.wb{width:183.090000px;}
.w23{width:213.690000px;}
.w21{width:233.175000px;}
.w1c{width:260.310000px;}
.w20{width:311.295000px;}
.w25{width:373.935000px;}
.w30{width:398.415000px;}
.w24{width:423.465000px;}
.w13{width:434.415000px;}
.w8{width:532.725000px;}
.w2d{width:581.400000px;}
.w2e{width:632.340000px;}
.w5{width:639.870000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w34{width:755.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:1.260000px;}
.x88{left:4.252500px;}
.x22{left:6.840000px;}
.x8{left:8.100000px;}
.x3f{left:9.180000px;}
.x17{left:10.800000px;}
.x3a{left:11.910000px;}
.x5a{left:13.350000px;}
.x2e{left:14.400000px;}
.x39{left:15.510000px;}
.x26{left:17.460000px;}
.x2b{left:19.260000px;}
.x1b{left:21.255000px;}
.x28{left:22.680000px;}
.x24{left:24.120000px;}
.x32{left:25.920000px;}
.x5c{left:27.000000px;}
.x45{left:28.080000px;}
.x44{left:30.060000px;}
.x3e{left:31.500000px;}
.x10{left:33.659987px;}
.x42{left:35.280000px;}
.x2d{left:36.540000px;}
.x66{left:38.010000px;}
.x43{left:39.270000px;}
.x48{left:41.970000px;}
.x72{left:45.465000px;}
.x62{left:48.054000px;}
.xa{left:50.580000px;}
.x2f{left:52.605000px;}
.x35{left:54.174000px;}
.x4d{left:58.890000px;}
.x69{left:60.585000px;}
.x34{left:65.340000px;}
.x58{left:67.499987px;}
.x61{left:68.796000px;}
.x31{left:69.870000px;}
.x30{left:72.930000px;}
.x6{left:73.974000px;}
.x78{left:78.405000px;}
.x9{left:79.416000px;}
.x18{left:80.460000px;}
.x54{left:82.110000px;}
.x5{left:87.654000px;}
.x16{left:93.456000px;}
.x1a{left:94.896000px;}
.x53{left:97.590000px;}
.x51{left:100.110000px;}
.x52{left:101.550000px;}
.x4{left:108.036000px;}
.x21{left:109.656000px;}
.x80{left:114.875987px;}
.xb{left:122.975987px;}
.x75{left:130.680000px;}
.xc{left:132.155987px;}
.x67{left:135.360000px;}
.x82{left:141.336000px;}
.x11{left:142.775987px;}
.x79{left:144.615000px;}
.x60{left:146.556000px;}
.x71{left:151.380000px;}
.x6a{left:152.670000px;}
.x57{left:167.085000px;}
.x55{left:173.925000px;}
.x56{left:175.185000px;}
.x65{left:177.120000px;}
.x12{left:178.589987px;}
.x6d{left:184.575000px;}
.x13{left:187.589987px;}
.x7{left:190.110000px;}
.xf{left:198.209987px;}
.x73{left:237.270000px;}
.x1{left:239.969987px;}
.x68{left:244.365000px;}
.x76{left:252.870000px;}
.x5f{left:259.095000px;}
.x6b{left:261.690000px;}
.x36{left:265.755000px;}
.x7a{left:270.210000px;}
.x23{left:277.995000px;}
.x6e{left:293.550000px;}
.x74{left:296.640000px;}
.xd{left:302.654987px;}
.x19{left:310.395000px;}
.x77{left:319.065000px;}
.x5e{left:326.595000px;}
.x7b{left:333.030000px;}
.x37{left:336.675000px;}
.x6c{left:364.500000px;}
.x25{left:365.655000px;}
.x47{left:368.355000px;}
.x3{left:372.494987px;}
.x4e{left:381.315000px;}
.x6f{left:385.665000px;}
.x7c{left:392.400000px;}
.x2{left:401.654987px;}
.x38{left:407.415000px;}
.x27{left:426.525000px;}
.xe{left:443.084987px;}
.x70{left:457.530000px;}
.x7d{left:458.640000px;}
.x1f{left:461.984987px;}
.x20{left:468.644987px;}
.x7e{left:470.085000px;}
.x81{left:483.944987px;}
.x3b{left:485.925000px;}
.x14{left:489.164987px;}
.x15{left:490.784987px;}
.x29{left:494.025000px;}
.x7f{left:497.624987px;}
.x49{left:505.545000px;}
.x46{left:536.324987px;}
.x83{left:539.745000px;}
.x2a{left:544.065000px;}
.x3c{left:556.845000px;}
.x5d{left:562.965000px;}
.x4a{left:580.110000px;}
.x84{left:600.450000px;}
.x4f{left:614.490000px;}
.x1c{left:620.253000px;}
.x3d{left:628.350000px;}
.x5b{left:637.170000px;}
.x4b{left:647.610000px;}
.x50{left:653.730000px;}
.x85{left:661.290000px;}
.x2c{left:676.230000px;}
.x40{left:701.790000px;}
.x4c{left:735.270000px;}
.x59{left:738.510000px;}
.x86{left:755.820000px;}
.x63{left:760.139987px;}
.x41{left:770.040000px;}
.x64{left:786.059987px;}
.x1e{left:799.199987px;}
.x87{left:809.820000px;}
.x1d{left:812.159987px;}
@media print{
.v4{vertical-align:-67.200000pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls28{letter-spacing:-17.120000pt;}
.ls1b{letter-spacing:-14.560000pt;}
.ls1c{letter-spacing:-13.920000pt;}
.lsc{letter-spacing:-8.640000pt;}
.ls1a{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.239467pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls19{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.161067pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.158933pt;}
.ls9{letter-spacing:-0.079467pt;}
.ls1d{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2e{letter-spacing:0.079467pt;}
.ls17{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls8{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls25{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls24{letter-spacing:3.293440pt;}
.ls12{letter-spacing:12.800000pt;}
.ls20{letter-spacing:13.392640pt;}
.ls26{letter-spacing:13.545600pt;}
.ls27{letter-spacing:14.183040pt;}
.ls1f{letter-spacing:14.240000pt;}
.ls23{letter-spacing:14.672640pt;}
.ls29{letter-spacing:14.820480pt;}
.lsd{letter-spacing:15.520000pt;}
.ls10{letter-spacing:17.232640pt;}
.ls21{letter-spacing:17.370240pt;}
.ls22{letter-spacing:17.440000pt;}
.ls2a{letter-spacing:27.622400pt;}
.ls2c{letter-spacing:29.534720pt;}
.ls2b{letter-spacing:40.424320pt;}
.ls1e{letter-spacing:40.912640pt;}
.ls1{letter-spacing:43.040000pt;}
.ls2d{letter-spacing:263.200000pt;}
.ls15{letter-spacing:331.840000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws15{word-spacing:-14.112000pt;}
.ws16{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.096533pt;}
.ws1d{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1b{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.558933pt;}
.ws10{word-spacing:-10.480533pt;}
.ws1{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.760000pt;}
.ws1e{word-spacing:-9.359467pt;}
.ws6{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.200533pt;}
.ws8{word-spacing:-9.121067pt;}
.wsa{word-spacing:-9.078933pt;}
.ws5{word-spacing:-8.000000pt;}
.ws2{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws14{word-spacing:106.272000pt;}
.ws17{word-spacing:126.688000pt;}
.ws18{word-spacing:187.253333pt;}
.ws19{word-spacing:187.264000pt;}
._36{margin-left:-2556.032000pt;}
._1b{margin-left:-2532.672853pt;}
._1a{margin-left:-2529.472000pt;}
._43{margin-left:-261.519360pt;}
._3b{margin-left:-196.596480pt;}
._38{margin-left:-188.318720pt;}
._39{margin-left:-184.358400pt;}
._3f{margin-left:-169.498880pt;}
._3d{margin-left:-150.938880pt;}
._37{margin-left:-138.800640pt;}
._3a{margin-left:-136.721920pt;}
._3e{margin-left:-132.378880pt;}
._40{margin-left:-124.323840pt;}
._42{margin-left:-123.098880pt;}
._3c{margin-left:-102.720000pt;}
._44{margin-left:-84.160000pt;}
._41{margin-left:-78.963200pt;}
._6{margin-left:-53.600000pt;}
._62{margin-left:-52.036480pt;}
._5f{margin-left:-41.944960pt;}
._63{margin-left:-39.786880pt;}
._64{margin-left:-30.336213pt;}
._61{margin-left:-29.414400pt;}
._60{margin-left:-28.336640pt;}
._56{margin-left:-27.210240pt;}
._5e{margin-left:-25.989760pt;}
._54{margin-left:-17.255893pt;}
._58{margin-left:-16.125653pt;}
._57{margin-left:-14.183040pt;}
._53{margin-left:-13.080960pt;}
._55{margin-left:-10.286080pt;}
._2a{margin-left:-3.812480pt;}
._b{margin-left:-2.467200pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._13{width:2.018560pt;}
._2{width:2.962347pt;}
._15{width:4.141867pt;}
._11{width:5.200853pt;}
._17{width:6.386987pt;}
._18{width:7.803733pt;}
._14{width:8.813013pt;}
._9{width:10.199040pt;}
._8{width:11.155200pt;}
._a{width:12.207787pt;}
._16{width:13.162667pt;}
._28{width:14.342400pt;}
._e{width:15.240533pt;}
._22{width:16.288853pt;}
._1f{width:17.259093pt;}
._23{width:18.264320pt;}
._1c{width:19.224533pt;}
._24{width:20.663680pt;}
._27{width:21.668053pt;}
._33{width:22.576000pt;}
._30{width:23.479040pt;}
._1d{width:24.647680pt;}
._1e{width:26.289493pt;}
._d{width:27.487573pt;}
._c{width:28.419200pt;}
._20{width:29.423573pt;}
._35{width:30.331520pt;}
._12{width:31.340800pt;}
._21{width:32.272853pt;}
._29{width:33.784320pt;}
._45{width:34.899840pt;}
._2c{width:35.797973pt;}
._2f{width:37.077760pt;}
._2d{width:38.400853pt;}
._2e{width:40.260053pt;}
._34{width:41.327360pt;}
._46{width:42.554027pt;}
._26{width:44.403413pt;}
._25{width:45.523840pt;}
._59{width:46.528213pt;}
._2b{width:47.909333pt;}
._32{width:48.822187pt;}
._4b{width:50.676480pt;}
._4d{width:51.792000pt;}
._52{width:53.461973pt;}
._4f{width:55.824213pt;}
._49{width:57.153067pt;}
._4{width:58.218667pt;}
._50{width:59.755093pt;}
._4e{width:62.382293pt;}
._3{width:63.932160pt;}
._31{width:65.492053pt;}
._4a{width:67.138773pt;}
._10{width:69.162240pt;}
._f{width:70.330880pt;}
._4c{width:72.928853pt;}
._5d{width:73.996160pt;}
._48{width:75.159893pt;}
._5c{width:86.479360pt;}
._47{width:135.765333pt;}
._5b{width:172.138667pt;}
._51{width:175.542400pt;}
._5{width:177.440000pt;}
._5a{width:189.957120pt;}
._19{width:247.653333pt;}
._65{width:263.460053pt;}
._7{width:671.978667pt;}
._66{width:1347.578453pt;}
.fs8{font-size:5.120000pt;}
.fs15{font-size:5.333333pt;}
.fs10{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fs11{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fsf{font-size:45.199037pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs14{font-size:48.128000pt;}
.fs7{font-size:53.120000pt;}
.fs13{font-size:56.320000pt;}
.fs12{font-size:56.448000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4c{bottom:-219.386667pt;}
.y4b{bottom:-189.306667pt;}
.y4a{bottom:-159.386667pt;}
.y86{bottom:-150.760000pt;}
.y49{bottom:-129.466667pt;}
.y85{bottom:-120.680000pt;}
.y48{bottom:-99.386667pt;}
.y84{bottom:-90.760000pt;}
.y47{bottom:-69.440000pt;}
.y83{bottom:-60.680000pt;}
.y46{bottom:-39.360000pt;}
.y6c{bottom:-35.040000pt;}
.y82{bottom:-30.720000pt;}
.y88{bottom:-15.931333pt;}
.y45{bottom:-9.440000pt;}
.y81{bottom:-0.640000pt;}
.y0{bottom:0.000000pt;}
.y38f{bottom:1.633333pt;}
.y1c9{bottom:2.080000pt;}
.y168{bottom:2.240000pt;}
.y363{bottom:2.400000pt;}
.y202{bottom:2.720000pt;}
.y6b{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y74{bottom:4.800000pt;}
.y76{bottom:4.933333pt;}
.y19d{bottom:6.080000pt;}
.y1a2{bottom:6.240000pt;}
.y44{bottom:6.720000pt;}
.y1f4{bottom:7.360000pt;}
.y360{bottom:7.840000pt;}
.y198{bottom:8.320000pt;}
.y1b9{bottom:10.080000pt;}
.y8{bottom:11.040000pt;}
.y22c{bottom:11.133333pt;}
.y19f{bottom:12.160000pt;}
.y1a5{bottom:12.320000pt;}
.y1ea{bottom:12.640000pt;}
.y1f2{bottom:12.800000pt;}
.y36b{bottom:12.840000pt;}
.y369{bottom:12.960000pt;}
.y361{bottom:13.120000pt;}
.y200{bottom:13.440000pt;}
.y19b{bottom:14.400000pt;}
.y1a4{bottom:14.560000pt;}
.y1b7{bottom:14.720000pt;}
.y6a{bottom:16.960000pt;}
.y73{bottom:17.600000pt;}
.y1ec{bottom:17.920000pt;}
.y1ee{bottom:18.080000pt;}
.y35f{bottom:18.560000pt;}
.y43{bottom:19.200000pt;}
.y9{bottom:19.360000pt;}
.y6{bottom:20.640000pt;}
.y1cb{bottom:20.800000pt;}
.y1dd{bottom:20.826667pt;}
.y7{bottom:21.760000pt;}
.y1e8{bottom:23.360000pt;}
.y1f1{bottom:23.520000pt;}
.y378{bottom:23.546667pt;}
.y362{bottom:23.840000pt;}
.y35e{bottom:24.320000pt;}
.y195{bottom:26.720000pt;}
.y80{bottom:26.880000pt;}
.y69{bottom:27.840000pt;}
.y1eb{bottom:28.640000pt;}
.y72{bottom:29.146667pt;}
.yb{bottom:31.200000pt;}
.y42{bottom:31.520000pt;}
.y166{bottom:32.640000pt;}
.y196{bottom:32.800000pt;}
.y1e9{bottom:34.080000pt;}
.y1f0{bottom:34.240000pt;}
.y173{bottom:36.640000pt;}
.y22b{bottom:37.573333pt;}
.y7f{bottom:38.400000pt;}
.y19a{bottom:39.040000pt;}
.y71{bottom:40.826667pt;}
.y8b{bottom:42.240000pt;}
.y1b5{bottom:42.760000pt;}
.y175{bottom:42.880000pt;}
.y68{bottom:43.840000pt;}
.y41{bottom:44.000000pt;}
.y227{bottom:44.480000pt;}
.y197{bottom:45.120000pt;}
.y172{bottom:48.960000pt;}
.y7e{bottom:49.920000pt;}
.y4{bottom:51.040000pt;}
.y199{bottom:51.200000pt;}
.y70{bottom:52.346667pt;}
.y16c{bottom:52.800000pt;}
.y17a{bottom:52.960000pt;}
.y223{bottom:54.240000pt;}
.y40{bottom:55.520000pt;}
.y87{bottom:56.693333pt;}
.y226{bottom:57.440000pt;}
.y22a{bottom:57.600000pt;}
.y8a{bottom:59.040000pt;}
.y67{bottom:59.680000pt;}
.y7d{bottom:61.600000pt;}
.y6f{bottom:64.026667pt;}
.y7c{bottom:73.120000pt;}
.y66{bottom:75.520000pt;}
.y6e{bottom:79.226667pt;}
.y22f{bottom:81.626667pt;}
.y7b{bottom:84.800000pt;}
.y130{bottom:85.760000pt;}
.y65{bottom:87.520000pt;}
.y116{bottom:87.840000pt;}
.y25c{bottom:88.640000pt;}
.y21f{bottom:89.920000pt;}
.y1c7{bottom:90.240000pt;}
.y192{bottom:91.680000pt;}
.y222{bottom:93.920000pt;}
.y359{bottom:94.080000pt;}
.y2c4{bottom:94.400000pt;}
.y161{bottom:95.200000pt;}
.y64{bottom:95.240000pt;}
.y7a{bottom:96.320000pt;}
.y12f{bottom:97.120000pt;}
.y27b{bottom:97.760000pt;}
.y22e{bottom:104.986667pt;}
.y206{bottom:105.120000pt;}
.y115{bottom:105.440000pt;}
.y25b{bottom:106.240000pt;}
.y3e{bottom:107.040000pt;}
.y309{bottom:107.360000pt;}
.y21e{bottom:107.520000pt;}
.y79{bottom:107.840000pt;}
.ybc{bottom:109.440000pt;}
.ye3{bottom:111.040000pt;}
.y63{bottom:111.080000pt;}
.y29f{bottom:112.000000pt;}
.y2c3{bottom:112.160000pt;}
.y160{bottom:112.800000pt;}
.y12e{bottom:114.720000pt;}
.y27a{bottom:115.360000pt;}
.y203{bottom:115.840000pt;}
.y332{bottom:117.600000pt;}
.y78{bottom:118.720000pt;}
.y23c{bottom:120.733333pt;}
.y233{bottom:121.626667pt;}
.y114{bottom:123.040000pt;}
.y25a{bottom:124.000000pt;}
.y21d{bottom:124.640000pt;}
.y3d{bottom:124.800000pt;}
.y225{bottom:124.960000pt;}
.y308{bottom:125.120000pt;}
.y1c6{bottom:125.440000pt;}
.y205{bottom:126.560000pt;}
.y62{bottom:126.920000pt;}
.ybb{bottom:127.040000pt;}
.y22d{bottom:128.346667pt;}
.ye2{bottom:128.640000pt;}
.y29e{bottom:129.600000pt;}
.y358{bottom:129.760000pt;}
.y2c2{bottom:129.920000pt;}
.y15f{bottom:130.400000pt;}
.y12d{bottom:132.320000pt;}
.y279{bottom:133.120000pt;}
.y238{bottom:135.200000pt;}
.y38e{bottom:135.360000pt;}
.y204{bottom:137.280000pt;}
.y229{bottom:137.666667pt;}
.y23b{bottom:138.373333pt;}
.y331{bottom:138.400000pt;}
.y21c{bottom:140.480000pt;}
.y113{bottom:140.640000pt;}
.y191{bottom:141.600000pt;}
.y3c{bottom:142.400000pt;}
.y2ee{bottom:142.560000pt;}
.y307{bottom:142.880000pt;}
.y61{bottom:142.920000pt;}
.y1c5{bottom:143.040000pt;}
.yba{bottom:144.666667pt;}
.ye1{bottom:146.426667pt;}
.y29d{bottom:147.226667pt;}
.y2c1{bottom:147.706667pt;}
.y1ff{bottom:148.026667pt;}
.y15e{bottom:148.186667pt;}
.y237{bottom:148.773333pt;}
.y38d{bottom:149.786667pt;}
.y12c{bottom:149.946667pt;}
.y278{bottom:150.746667pt;}
.y190{bottom:152.346667pt;}
.y21b{bottom:154.426667pt;}
.y23a{bottom:156.000000pt;}
.y230{bottom:156.160000pt;}
.y112{bottom:158.426667pt;}
.y60{bottom:158.760000pt;}
.y330{bottom:159.066667pt;}
.y259{bottom:159.226667pt;}
.y232{bottom:159.293333pt;}
.y3b{bottom:160.026667pt;}
.y2ed{bottom:160.346667pt;}
.y38c{bottom:160.506667pt;}
.y1c4{bottom:160.666667pt;}
.y236{bottom:162.306667pt;}
.yb9{bottom:162.426667pt;}
.y18f{bottom:163.066667pt;}
.ye0{bottom:164.026667pt;}
.y2c0{bottom:165.466667pt;}
.y357{bottom:165.626667pt;}
.y15d{bottom:165.786667pt;}
.y29c{bottom:165.946667pt;}
.y228{bottom:166.653333pt;}
.y12b{bottom:167.706667pt;}
.y277{bottom:168.346667pt;}
.y201{bottom:170.746667pt;}
.y224{bottom:172.613333pt;}
.y5f{bottom:174.600000pt;}
.y239{bottom:175.866667pt;}
.y111{bottom:176.026667pt;}
.y258{bottom:176.826667pt;}
.y3a{bottom:177.626667pt;}
.y18e{bottom:177.786667pt;}
.y234{bottom:178.106667pt;}
.y1c3{bottom:178.426667pt;}
.y32f{bottom:179.866667pt;}
.yb8{bottom:180.026667pt;}
.y1fd{bottom:181.466667pt;}
.ydf{bottom:181.626667pt;}
.y38b{bottom:181.946667pt;}
.y2bf{bottom:183.226667pt;}
.y15c{bottom:183.386667pt;}
.y356{bottom:183.546667pt;}
.y12a{bottom:185.306667pt;}
.y276{bottom:185.946667pt;}
.y5e{bottom:190.440000pt;}
.y1fe{bottom:192.186667pt;}
.y110{bottom:193.626667pt;}
.y257{bottom:194.426667pt;}
.y39{bottom:195.226667pt;}
.y2ec{bottom:195.866667pt;}
.y1c2{bottom:196.026667pt;}
.y306{bottom:196.186667pt;}
.yb7{bottom:197.626667pt;}
.y189{bottom:197.946667pt;}
.yde{bottom:199.226667pt;}
.y221{bottom:200.186667pt;}
.y32e{bottom:200.666667pt;}
.y15b{bottom:200.986667pt;}
.y355{bottom:201.466667pt;}
.y29b{bottom:202.106667pt;}
.y129{bottom:202.906667pt;}
.y38a{bottom:203.386667pt;}
.y275{bottom:203.546667pt;}
.y5d{bottom:206.280000pt;}
.y235{bottom:206.373333pt;}
.y10f{bottom:211.226667pt;}
.y256{bottom:212.186667pt;}
.y38{bottom:212.986667pt;}
.y1c1{bottom:213.626667pt;}
.y2eb{bottom:213.946667pt;}
.y389{bottom:214.106667pt;}
.yb6{bottom:215.226667pt;}
.ydd{bottom:216.826667pt;}
.y18d{bottom:218.266667pt;}
.y15a{bottom:218.586667pt;}
.y354{bottom:219.386667pt;}
.y5c{bottom:220.040000pt;}
.y128{bottom:220.506667pt;}
.y29a{bottom:220.826667pt;}
.y274{bottom:221.306667pt;}
.y1fc{bottom:224.346667pt;}
.y10e{bottom:228.826667pt;}
.y255{bottom:229.786667pt;}
.y5b{bottom:231.080000pt;}
.y1c0{bottom:231.226667pt;}
.y37{bottom:231.706667pt;}
.yb5{bottom:232.826667pt;}
.y231{bottom:233.146667pt;}
.y2be{bottom:234.266667pt;}
.ydc{bottom:234.586667pt;}
.y1fb{bottom:235.066667pt;}
.y388{bottom:235.546667pt;}
.y159{bottom:236.346667pt;}
.y353{bottom:237.306667pt;}
.y127{bottom:238.106667pt;}
.y18c{bottom:238.586667pt;}
.y273{bottom:238.906667pt;}
.y299{bottom:241.946667pt;}
.y32d{bottom:242.106667pt;}
.y1f8{bottom:245.786667pt;}
.y10d{bottom:246.586667pt;}
.y5a{bottom:246.920000pt;}
.y36{bottom:247.066667pt;}
.y254{bottom:247.386667pt;}
.y1bf{bottom:248.826667pt;}
.y305{bottom:249.306667pt;}
.y2ea{bottom:249.466667pt;}
.y2bd{bottom:249.626667pt;}
.yb4{bottom:250.586667pt;}
.ydb{bottom:253.306667pt;}
.y158{bottom:253.946667pt;}
.y35{bottom:254.586667pt;}
.y352{bottom:255.226667pt;}
.y126{bottom:255.866667pt;}
.y1fa{bottom:256.506667pt;}
.y387{bottom:257.146667pt;}
.y18b{bottom:258.746667pt;}
.y4d{bottom:260.026667pt;}
.y32c{bottom:262.746667pt;}
.y59{bottom:262.760000pt;}
.y10c{bottom:264.186667pt;}
.y253{bottom:264.986667pt;}
.y1be{bottom:266.586667pt;}
.y1f9{bottom:267.226667pt;}
.y304{bottom:267.386667pt;}
.yb3{bottom:268.186667pt;}
.yda{bottom:271.226667pt;}
.y157{bottom:271.546667pt;}
.y34{bottom:272.506667pt;}
.y351{bottom:273.146667pt;}
.y125{bottom:273.466667pt;}
.y272{bottom:274.106667pt;}
.y298{bottom:277.946667pt;}
.y1f5{bottom:278.106667pt;}
.y386{bottom:278.586667pt;}
.y58{bottom:278.600000pt;}
.y18a{bottom:279.066667pt;}
.y2bc{bottom:280.346667pt;}
.y10b{bottom:281.786667pt;}
.y252{bottom:282.586667pt;}
.y32b{bottom:283.546667pt;}
.yd9{bottom:283.866667pt;}
.y33{bottom:284.026667pt;}
.y1bd{bottom:284.186667pt;}
.y2e9{bottom:284.826667pt;}
.y303{bottom:285.146667pt;}
.yb2{bottom:285.786667pt;}
.y1f7{bottom:288.826667pt;}
.y156{bottom:289.146667pt;}
.y385{bottom:289.306667pt;}
.y124{bottom:291.066667pt;}
.y271{bottom:291.706667pt;}
.y57{bottom:294.466667pt;}
.y297{bottom:295.546667pt;}
.y2bb{bottom:298.106667pt;}
.y184{bottom:299.226667pt;}
.y10a{bottom:299.386667pt;}
.y1f6{bottom:299.546667pt;}
.y384{bottom:300.026667pt;}
.y251{bottom:300.346667pt;}
.y32{bottom:301.466667pt;}
.y1bc{bottom:301.786667pt;}
.y2e8{bottom:302.906667pt;}
.yb1{bottom:303.386667pt;}
.y32a{bottom:304.346667pt;}
.y155{bottom:306.746667pt;}
.y123{bottom:308.666667pt;}
.y350{bottom:308.826667pt;}
.y270{bottom:309.466667pt;}
.y1ed{bottom:310.266667pt;}
.y56{bottom:310.466667pt;}
.y296{bottom:313.306667pt;}
.y2ba{bottom:315.866667pt;}
.y1bb{bottom:316.346667pt;}
.y109{bottom:316.986667pt;}
.y250{bottom:317.946667pt;}
.yd8{bottom:319.066667pt;}
.y188{bottom:319.546667pt;}
.y2e7{bottom:320.666667pt;}
.yb0{bottom:320.986667pt;}
.y383{bottom:321.466667pt;}
.y154{bottom:324.506667pt;}
.y329{bottom:324.986667pt;}
.y31{bottom:325.146667pt;}
.y122{bottom:326.266667pt;}
.y55{bottom:326.306667pt;}
.y34f{bottom:326.746667pt;}
.y1ba{bottom:327.066667pt;}
.y295{bottom:330.906667pt;}
.y1f3{bottom:331.706667pt;}
.y2b9{bottom:333.626667pt;}
.y108{bottom:334.746667pt;}
.y24f{bottom:335.546667pt;}
.yd7{bottom:336.826667pt;}
.y2e6{bottom:338.426667pt;}
.yaf{bottom:338.746667pt;}
.y187{bottom:339.866667pt;}
.y1b4{bottom:341.786667pt;}
.y153{bottom:342.106667pt;}
.y54{bottom:342.146667pt;}
.y1ef{bottom:342.426667pt;}
.y382{bottom:342.906667pt;}
.y121{bottom:344.026667pt;}
.y26f{bottom:344.666667pt;}
.y328{bottom:345.786667pt;}
.y30{bottom:346.266667pt;}
.y294{bottom:348.506667pt;}
.y2b8{bottom:351.426667pt;}
.y107{bottom:352.386667pt;}
.y24e{bottom:353.186667pt;}
.y53{bottom:354.146667pt;}
.yd6{bottom:354.466667pt;}
.y1e7{bottom:355.266667pt;}
.y2e5{bottom:356.226667pt;}
.yae{bottom:356.386667pt;}
.y302{bottom:356.546667pt;}
.y152{bottom:359.746667pt;}
.y186{bottom:360.066667pt;}
.y120{bottom:361.666667pt;}
.y52{bottom:361.826667pt;}
.y1b8{bottom:361.986667pt;}
.y26e{bottom:362.306667pt;}
.y34e{bottom:362.626667pt;}
.y381{bottom:364.386667pt;}
.y327{bottom:365.026667pt;}
.y293{bottom:366.146667pt;}
.y2f{bottom:367.426667pt;}
.y2b7{bottom:369.186667pt;}
.y106{bottom:369.986667pt;}
.y24d{bottom:370.786667pt;}
.yd5{bottom:372.066667pt;}
.yad{bottom:373.986667pt;}
.y301{bottom:374.306667pt;}
.y151{bottom:377.346667pt;}
.y51{bottom:377.666667pt;}
.y11f{bottom:379.266667pt;}
.y26d{bottom:379.906667pt;}
.y185{bottom:380.386667pt;}
.y34d{bottom:380.546667pt;}
.y326{bottom:382.786667pt;}
.y292{bottom:383.746667pt;}
.y380{bottom:385.986667pt;}
.y2b6{bottom:386.946667pt;}
.y105{bottom:387.586667pt;}
.y24c{bottom:388.546667pt;}
.y2e{bottom:388.706667pt;}
.yd4{bottom:389.666667pt;}
.yac{bottom:391.586667pt;}
.y2e4{bottom:392.066667pt;}
.y50{bottom:393.506667pt;}
.y150{bottom:394.946667pt;}
.y77{bottom:395.906667pt;}
.y11e{bottom:396.866667pt;}
.y26c{bottom:397.666667pt;}
.y1b6{bottom:397.826667pt;}
.y34c{bottom:398.466667pt;}
.y325{bottom:400.546667pt;}
.y180{bottom:400.706667pt;}
.y291{bottom:402.626667pt;}
.y2b5{bottom:404.706667pt;}
.y104{bottom:405.186667pt;}
.y24b{bottom:406.146667pt;}
.y2d{bottom:407.106667pt;}
.yd3{bottom:407.266667pt;}
.y37f{bottom:407.426667pt;}
.y21a{bottom:407.586667pt;}
.yab{bottom:409.186667pt;}
.y4f{bottom:409.506667pt;}
.y300{bottom:409.666667pt;}
.y2e3{bottom:409.826667pt;}
.y14f{bottom:412.706667pt;}
.y1e6{bottom:414.146667pt;}
.y11d{bottom:414.466667pt;}
.y26b{bottom:415.266667pt;}
.y34b{bottom:416.386667pt;}
.y324{bottom:418.306667pt;}
.y183{bottom:420.866667pt;}
.y2b4{bottom:422.466667pt;}
.y103{bottom:422.946667pt;}
.y24a{bottom:423.746667pt;}
.y2c{bottom:424.546667pt;}
.yd2{bottom:425.026667pt;}
.y4e{bottom:425.346667pt;}
.yaa{bottom:426.946667pt;}
.y2e2{bottom:427.586667pt;}
.y2ff{bottom:427.746667pt;}
.y1e5{bottom:428.546667pt;}
.y14e{bottom:430.306667pt;}
.y11c{bottom:432.226667pt;}
.y26a{bottom:432.866667pt;}
.y34a{bottom:434.306667pt;}
.y323{bottom:436.066667pt;}
.y2b{bottom:436.866667pt;}
.y1e4{bottom:438.146667pt;}
.y290{bottom:438.626667pt;}
.y37e{bottom:439.586667pt;}
.y2b3{bottom:440.226667pt;}
.y102{bottom:440.546667pt;}
.y182{bottom:441.186667pt;}
.y249{bottom:441.346667pt;}
.y219{bottom:442.466667pt;}
.yd1{bottom:442.626667pt;}
.y2a{bottom:444.386667pt;}
.ya9{bottom:444.546667pt;}
.y1b3{bottom:445.026667pt;}
.y2e1{bottom:445.346667pt;}
.y2fe{bottom:445.506667pt;}
.y14d{bottom:447.906667pt;}
.y1e3{bottom:448.866667pt;}
.y11b{bottom:449.826667pt;}
.y37d{bottom:450.306667pt;}
.y269{bottom:450.466667pt;}
.y349{bottom:452.226667pt;}
.y322{bottom:453.666667pt;}
.y28f{bottom:456.226667pt;}
.y2b2{bottom:457.986667pt;}
.y101{bottom:458.146667pt;}
.y218{bottom:458.306667pt;}
.y248{bottom:458.946667pt;}
.yd0{bottom:460.226667pt;}
.y37c{bottom:461.026667pt;}
.y181{bottom:461.506667pt;}
.ya8{bottom:462.146667pt;}
.y2e0{bottom:463.106667pt;}
.y2fd{bottom:463.266667pt;}
.y1e2{bottom:463.426667pt;}
.y29{bottom:465.186667pt;}
.y14c{bottom:465.506667pt;}
.y1b2{bottom:465.986667pt;}
.y11a{bottom:467.426667pt;}
.y268{bottom:468.066667pt;}
.y348{bottom:470.146667pt;}
.y321{bottom:471.746667pt;}
.y217{bottom:472.226667pt;}
.y220{bottom:473.440000pt;}
.y28e{bottom:473.826667pt;}
.y100{bottom:475.746667pt;}
.y247{bottom:476.706667pt;}
.ycf{bottom:477.826667pt;}
.ya7{bottom:479.746667pt;}
.y2df{bottom:480.706667pt;}
.y2fc{bottom:481.026667pt;}
.y179{bottom:481.666667pt;}
.y1e1{bottom:482.146667pt;}
.y1b1{bottom:482.306667pt;}
.y37b{bottom:482.466667pt;}
.y14b{bottom:483.106667pt;}
.y119{bottom:485.026667pt;}
.y28{bottom:485.826667pt;}
.y347{bottom:487.906667pt;}
.y320{bottom:489.506667pt;}
.y28d{bottom:491.586667pt;}
.yff{bottom:493.346667pt;}
.y2b1{bottom:493.506667pt;}
.y246{bottom:494.306667pt;}
.yce{bottom:495.426667pt;}
.ya6{bottom:497.346667pt;}
.y2de{bottom:498.786667pt;}
.y1af{bottom:499.906667pt;}
.y14a{bottom:500.866667pt;}
.y17f{bottom:501.986667pt;}
.y267{bottom:503.426667pt;}
.y118{bottom:503.746667pt;}
.y37a{bottom:503.906667pt;}
.y346{bottom:505.826667pt;}
.y27{bottom:506.626667pt;}
.y31f{bottom:507.266667pt;}
.y28c{bottom:509.186667pt;}
.yfe{bottom:511.106667pt;}
.y2b0{bottom:511.266667pt;}
.y245{bottom:511.906667pt;}
.ycd{bottom:513.186667pt;}
.y379{bottom:514.626667pt;}
.ya5{bottom:515.106667pt;}
.y2dd{bottom:516.546667pt;}
.y1ae{bottom:517.506667pt;}
.y149{bottom:518.466667pt;}
.y1e0{bottom:519.586667pt;}
.y266{bottom:521.026667pt;}
.y117{bottom:521.346667pt;}
.y17e{bottom:522.306667pt;}
.y345{bottom:523.746667pt;}
.y31e{bottom:525.026667pt;}
.y28b{bottom:526.786667pt;}
.y2af{bottom:527.266667pt;}
.yfd{bottom:528.706667pt;}
.y244{bottom:529.506667pt;}
.ycc{bottom:531.906667pt;}
.ya4{bottom:532.706667pt;}
.y6d{bottom:533.666667pt;}
.y2dc{bottom:534.306667pt;}
.y1ad{bottom:535.106667pt;}
.y148{bottom:536.066667pt;}
.y377{bottom:536.226667pt;}
.y1dc{bottom:538.466667pt;}
.y265{bottom:538.626667pt;}
.y344{bottom:541.666667pt;}
.y17d{bottom:542.466667pt;}
.y31d{bottom:542.786667pt;}
.y28a{bottom:544.386667pt;}
.yfc{bottom:546.306667pt;}
.y243{bottom:547.106667pt;}
.ycb{bottom:549.826667pt;}
.ya3{bottom:550.306667pt;}
.y2db{bottom:552.066667pt;}
.y1b0{bottom:552.706667pt;}
.y1ac{bottom:552.866667pt;}
.y147{bottom:554.813333pt;}
.y26{bottom:555.613333pt;}
.y264{bottom:556.253333pt;}
.y1df{bottom:557.213333pt;}
.y31c{bottom:560.573333pt;}
.y343{bottom:560.893333pt;}
.y2ae{bottom:561.053333pt;}
.y289{bottom:562.013333pt;}
.yca{bottom:562.493333pt;}
.y17c{bottom:562.813333pt;}
.yfb{bottom:563.933333pt;}
.y242{bottom:564.893333pt;}
.ya2{bottom:567.933333pt;}
.y376{bottom:568.413333pt;}
.y25{bottom:569.373333pt;}
.y2da{bottom:569.853333pt;}
.y1ab{bottom:570.493333pt;}
.y263{bottom:574.013333pt;}
.y1de{bottom:575.933333pt;}
.y2ad{bottom:576.413333pt;}
.y31b{bottom:578.333333pt;}
.y342{bottom:578.653333pt;}
.y288{bottom:579.773333pt;}
.yc9{bottom:580.093333pt;}
.yfa{bottom:581.533333pt;}
.y241{bottom:582.493333pt;}
.y17b{bottom:583.133333pt;}
.y24{bottom:583.293333pt;}
.ya1{bottom:585.533333pt;}
.y2d9{bottom:587.613333pt;}
.y1aa{bottom:588.093333pt;}
.y375{bottom:589.853333pt;}
.y146{bottom:590.813333pt;}
.y262{bottom:591.613333pt;}
.y1da{bottom:594.653333pt;}
.y31a{bottom:596.093333pt;}
.y341{bottom:596.413333pt;}
.y287{bottom:597.373333pt;}
.yc8{bottom:597.853333pt;}
.y23{bottom:599.293333pt;}
.y240{bottom:600.093333pt;}
.y374{bottom:600.573333pt;}
.y1a9{bottom:602.653333pt;}
.ya0{bottom:603.293333pt;}
.y2d8{bottom:605.373333pt;}
.y2fb{bottom:605.693333pt;}
.y145{bottom:608.573333pt;}
.y261{bottom:609.213333pt;}
.y2ac{bottom:610.333333pt;}
.y373{bottom:611.293333pt;}
.y1a8{bottom:613.373333pt;}
.y319{bottom:614.173333pt;}
.y286{bottom:614.973333pt;}
.y22{bottom:615.453333pt;}
.yf9{bottom:616.893333pt;}
.y23f{bottom:617.693333pt;}
.y9f{bottom:620.893333pt;}
.y372{bottom:622.013333pt;}
.y2d7{bottom:623.133333pt;}
.y2fa{bottom:623.453333pt;}
.y178{bottom:623.613333pt;}
.y21{bottom:624.893333pt;}
.y144{bottom:626.173333pt;}
.y260{bottom:626.813333pt;}
.y1a7{bottom:628.093333pt;}
.y318{bottom:631.933333pt;}
.y1db{bottom:632.093333pt;}
.y285{bottom:632.573333pt;}
.y371{bottom:632.733333pt;}
.yc7{bottom:633.053333pt;}
.y3f{bottom:633.533333pt;}
.yf8{bottom:634.493333pt;}
.y23e{bottom:635.293333pt;}
.y20{bottom:638.173333pt;}
.y9e{bottom:638.493333pt;}
.y2d6{bottom:640.893333pt;}
.y2f9{bottom:641.213333pt;}
.y143{bottom:643.773333pt;}
.y177{bottom:643.933333pt;}
.y25f{bottom:644.413333pt;}
.y2ab{bottom:646.493333pt;}
.y1a6{bottom:648.253333pt;}
.y317{bottom:649.693333pt;}
.y284{bottom:650.173333pt;}
.yc6{bottom:650.653333pt;}
.y1d7{bottom:650.813333pt;}
.y23d{bottom:651.293333pt;}
.yf7{bottom:652.093333pt;}
.y1f{bottom:654.013333pt;}
.y370{bottom:654.173333pt;}
.y9d{bottom:656.093333pt;}
.y2d5{bottom:658.653333pt;}
.y2f8{bottom:658.813333pt;}
.y142{bottom:661.373333pt;}
.y25e{bottom:662.173333pt;}
.y176{bottom:664.093333pt;}
.y36f{bottom:665.053333pt;}
.y1e{bottom:665.533333pt;}
.y316{bottom:667.453333pt;}
.y283{bottom:667.773333pt;}
.yc5{bottom:668.253333pt;}
.y1a3{bottom:668.573333pt;}
.y1d9{bottom:669.533333pt;}
.yf6{bottom:669.693333pt;}
.y9c{bottom:673.693333pt;}
.y2d4{bottom:676.733333pt;}
.y2f7{bottom:676.893333pt;}
.y1d{bottom:677.053333pt;}
.y141{bottom:678.973333pt;}
.y25d{bottom:679.773333pt;}
.y2aa{bottom:681.693333pt;}
.y174{bottom:684.413333pt;}
.y340{bottom:685.213333pt;}
.y282{bottom:685.533333pt;}
.yc4{bottom:686.013333pt;}
.y36e{bottom:686.493333pt;}
.yf5{bottom:687.453333pt;}
.y1d8{bottom:688.253333pt;}
.y1c{bottom:689.533333pt;}
.y9b{bottom:691.453333pt;}
.y2d3{bottom:694.493333pt;}
.y2f6{bottom:694.653333pt;}
.y140{bottom:696.733333pt;}
.y216{bottom:697.373333pt;}
.y2a9{bottom:700.413333pt;}
.y1a1{bottom:701.053333pt;}
.y1b{bottom:702.653333pt;}
.y33f{bottom:702.973333pt;}
.y281{bottom:703.133333pt;}
.y315{bottom:703.293333pt;}
.yc3{bottom:703.613333pt;}
.y16b{bottom:704.733333pt;}
.yf4{bottom:705.053333pt;}
.y1d4{bottom:706.973333pt;}
.y36d{bottom:707.933333pt;}
.y9a{bottom:709.053333pt;}
.y2d2{bottom:712.253333pt;}
.y2f5{bottom:712.413333pt;}
.y1a{bottom:712.573333pt;}
.y13f{bottom:714.333333pt;}
.y215{bottom:714.973333pt;}
.y280{bottom:720.733333pt;}
.y314{bottom:721.053333pt;}
.yc2{bottom:721.213333pt;}
.y1a0{bottom:721.373333pt;}
.yf3{bottom:722.653333pt;}
.y171{bottom:724.893333pt;}
.y1d6{bottom:725.693333pt;}
.y99{bottom:726.653333pt;}
.y36c{bottom:729.373333pt;}
.y2d1{bottom:730.013333pt;}
.y2f4{bottom:730.173333pt;}
.y13e{bottom:731.933333pt;}
.y214{bottom:732.573333pt;}
.y19{bottom:734.173333pt;}
.y2a8{bottom:736.413333pt;}
.y27f{bottom:738.333333pt;}
.y33e{bottom:738.493333pt;}
.yc1{bottom:738.813333pt;}
.yf2{bottom:740.253333pt;}
.y19e{bottom:741.693333pt;}
.y98{bottom:744.253333pt;}
.y1d5{bottom:744.413333pt;}
.y170{bottom:745.213333pt;}
.y2d0{bottom:747.613333pt;}
.y2f3{bottom:747.933333pt;}
.y213{bottom:750.333333pt;}
.y13d{bottom:750.653333pt;}
.y36a{bottom:750.813333pt;}
.y2a7{bottom:754.173333pt;}
.y18{bottom:755.133333pt;}
.y27e{bottom:755.933333pt;}
.y33d{bottom:756.253333pt;}
.yc0{bottom:756.413333pt;}
.y313{bottom:756.573333pt;}
.yf1{bottom:757.853333pt;}
.y97{bottom:761.893333pt;}
.y1d1{bottom:763.333333pt;}
.y16f{bottom:765.573333pt;}
.y2cf{bottom:765.733333pt;}
.y13c{bottom:767.653333pt;}
.y212{bottom:767.973333pt;}
.y17{bottom:768.453333pt;}
.y2a6{bottom:771.813333pt;}
.y368{bottom:772.293333pt;}
.y27d{bottom:773.733333pt;}
.y33c{bottom:774.053333pt;}
.ybf{bottom:774.213333pt;}
.y312{bottom:774.373333pt;}
.yf0{bottom:775.653333pt;}
.y13b{bottom:777.733333pt;}
.y96{bottom:779.653333pt;}
.y16{bottom:781.733333pt;}
.y1d3{bottom:782.053333pt;}
.y2ce{bottom:783.493333pt;}
.y211{bottom:785.573333pt;}
.y16e{bottom:785.733333pt;}
.y2a5{bottom:789.413333pt;}
.y15{bottom:791.013333pt;}
.y33b{bottom:791.813333pt;}
.y311{bottom:792.133333pt;}
.y27c{bottom:792.453333pt;}
.ybe{bottom:792.933333pt;}
.yef{bottom:793.253333pt;}
.y367{bottom:793.893333pt;}
.y19c{bottom:794.533333pt;}
.y13a{bottom:795.493333pt;}
.y95{bottom:797.253333pt;}
.y1d2{bottom:800.773333pt;}
.y2cd{bottom:801.253333pt;}
.y210{bottom:803.173333pt;}
.y14{bottom:803.813333pt;}
.y16d{bottom:806.053333pt;}
.y2a4{bottom:807.013333pt;}
.y33a{bottom:809.573333pt;}
.y310{bottom:809.893333pt;}
.yee{bottom:810.853333pt;}
.y139{bottom:813.093333pt;}
.ybd{bottom:814.053333pt;}
.y94{bottom:814.853333pt;}
.y366{bottom:815.333333pt;}
.y194{bottom:816.773333pt;}
.y2f2{bottom:819.013333pt;}
.y2cc{bottom:819.333333pt;}
.y1ce{bottom:819.493333pt;}
.y20f{bottom:820.773333pt;}
.y13{bottom:822.693333pt;}
.y2a3{bottom:825.733333pt;}
.y165{bottom:826.373333pt;}
.y339{bottom:827.333333pt;}
.y30f{bottom:827.653333pt;}
.yed{bottom:828.453333pt;}
.y138{bottom:830.693333pt;}
.y93{bottom:832.453333pt;}
.y365{bottom:836.773333pt;}
.y2cb{bottom:837.093333pt;}
.y1d0{bottom:838.213333pt;}
.y20e{bottom:838.533333pt;}
.y12{bottom:839.813333pt;}
.y338{bottom:845.093333pt;}
.y30e{bottom:845.413333pt;}
.yec{bottom:846.053333pt;}
.y16a{bottom:846.533333pt;}
.y137{bottom:848.293333pt;}
.y92{bottom:850.053333pt;}
.y2ca{bottom:854.853333pt;}
.y20d{bottom:856.133333pt;}
.y1cf{bottom:856.933333pt;}
.y2a2{bottom:861.893333pt;}
.y337{bottom:862.853333pt;}
.y30d{bottom:863.173333pt;}
.yeb{bottom:863.813333pt;}
.y11{bottom:864.293333pt;}
.y136{bottom:865.893333pt;}
.y169{bottom:866.853333pt;}
.y91{bottom:867.813333pt;}
.y364{bottom:868.933333pt;}
.y2c9{bottom:872.453333pt;}
.y2f1{bottom:872.613333pt;}
.y20c{bottom:873.733333pt;}
.y1ca{bottom:875.653333pt;}
.y2a1{bottom:879.493333pt;}
.y336{bottom:880.613333pt;}
.y30c{bottom:880.933333pt;}
.yea{bottom:881.413333pt;}
.y135{bottom:883.653333pt;}
.y90{bottom:885.413333pt;}
.y193{bottom:886.693333pt;}
.y167{bottom:887.173333pt;}
.y10{bottom:888.933333pt;}
.y2f0{bottom:890.213333pt;}
.y2c8{bottom:890.533333pt;}
.y20b{bottom:891.333333pt;}
.y35d{bottom:892.453333pt;}
.y1cd{bottom:894.373333pt;}
.y2a0{bottom:898.213333pt;}
.y335{bottom:898.373333pt;}
.y30b{bottom:898.693333pt;}
.ye9{bottom:899.013333pt;}
.y134{bottom:901.253333pt;}
.y8f{bottom:903.013333pt;}
.y2c7{bottom:908.293333pt;}
.y20a{bottom:908.933333pt;}
.y164{bottom:909.413333pt;}
.yf{bottom:911.013333pt;}
.y1cc{bottom:913.093333pt;}
.y334{bottom:916.133333pt;}
.y30a{bottom:916.453333pt;}
.ye8{bottom:916.613333pt;}
.y133{bottom:918.853333pt;}
.y8e{bottom:920.613333pt;}
.ye{bottom:923.653333pt;}
.y2c6{bottom:926.053333pt;}
.y209{bottom:926.693333pt;}
.y35c{bottom:930.213333pt;}
.y75{bottom:932.960000pt;}
.y1c8{bottom:933.893333pt;}
.ye7{bottom:934.213333pt;}
.y132{bottom:936.453333pt;}
.yd{bottom:937.413333pt;}
.y8d{bottom:938.213333pt;}
.y163{bottom:939.333333pt;}
.y2c5{bottom:943.813333pt;}
.y208{bottom:944.293333pt;}
.y35b{bottom:945.253333pt;}
.yc{bottom:951.173333pt;}
.y333{bottom:951.653333pt;}
.ye6{bottom:951.973333pt;}
.y162{bottom:953.253333pt;}
.y131{bottom:954.533333pt;}
.y8c{bottom:955.813333pt;}
.y35a{bottom:960.453333pt;}
.y2ef{bottom:961.573333pt;}
.y207{bottom:961.893333pt;}
.y3{bottom:966.720000pt;}
.ya{bottom:967.200000pt;}
.ye5{bottom:967.360000pt;}
.y2{bottom:978.880000pt;}
.ye4{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y89{bottom:997.920000pt;}
.h20{height:3.612500pt;}
.h9{height:3.702500pt;}
.h5f{height:5.562500pt;}
.h43{height:10.720000pt;}
.h4d{height:10.752000pt;}
.h47{height:10.880000pt;}
.h5{height:12.000000pt;}
.h33{height:12.160000pt;}
.h3b{height:12.160133pt;}
.h39{height:12.192000pt;}
.h34{height:12.320000pt;}
.h37{height:12.352000pt;}
.h1d{height:15.272812pt;}
.h12{height:19.438125pt;}
.h2f{height:19.477500pt;}
.h25{height:19.840000pt;}
.h31{height:21.440000pt;}
.h5e{height:21.472000pt;}
.h5d{height:21.600000pt;}
.h49{height:22.343750pt;}
.h1f{height:22.578125pt;}
.h1a{height:22.843934pt;}
.h2c{height:23.140625pt;}
.h3e{height:24.480000pt;}
.h3d{height:24.512000pt;}
.h4b{height:25.139375pt;}
.h4e{height:25.918750pt;}
.h44{height:26.190625pt;}
.h2d{height:26.375000pt;}
.h8{height:26.843125pt;}
.h15{height:27.523125pt;}
.h42{height:27.840000pt;}
.h17{height:29.157187pt;}
.h22{height:29.216250pt;}
.h11{height:29.281875pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h27{height:30.595000pt;}
.h1b{height:30.610871pt;}
.h19{height:31.008437pt;}
.hd{height:31.217812pt;}
.h4f{height:32.160000pt;}
.h52{height:32.192000pt;}
.h50{height:32.320000pt;}
.h3{height:32.859687pt;}
.h5c{height:32.960000pt;}
.h51{height:33.440000pt;}
.h54{height:33.867188pt;}
.h1c{height:34.710938pt;}
.h58{height:34.803500pt;}
.hc{height:34.945312pt;}
.h41{height:37.280000pt;}
.hf{height:37.479688pt;}
.h6{height:38.413438pt;}
.h2e{height:38.672812pt;}
.h3f{height:39.053437pt;}
.h56{height:39.737500pt;}
.h55{height:39.827813pt;}
.h59{height:40.727500pt;}
.h18{height:41.112500pt;}
.h30{height:42.665000pt;}
.hb{height:42.866250pt;}
.h4c{height:42.912000pt;}
.h2a{height:43.782500pt;}
.h14{height:45.156250pt;}
.h5a{height:46.281250pt;}
.h2b{height:46.375000pt;}
.h28{height:47.109375pt;}
.h10{height:47.963125pt;}
.h45{height:48.160000pt;}
.h48{height:48.192000pt;}
.h46{height:48.320000pt;}
.h16{height:49.148438pt;}
.h2{height:52.832812pt;}
.h5b{height:52.834688pt;}
.h4a{height:53.280000pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h13{height:60.288750pt;}
.ha{height:60.800000pt;}
.h3c{height:61.280000pt;}
.h21{height:64.800000pt;}
.h29{height:66.750000pt;}
.h32{height:72.960000pt;}
.h24{height:86.432000pt;}
.h3a{height:93.280000pt;}
.h40{height:93.312000pt;}
.h36{height:93.440000pt;}
.h38{height:93.472000pt;}
.h35{height:113.632000pt;}
.h26{height:128.800000pt;}
.h53{height:218.880000pt;}
.h57{height:246.400000pt;}
.h23{height:436.546667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w2f{width:29.600000pt;}
.w22{width:34.880000pt;}
.w10{width:44.480000pt;}
.w33{width:48.000000pt;}
.w26{width:48.960000pt;}
.w1b{width:53.760000pt;}
.w31{width:53.952000pt;}
.w32{width:54.080000pt;}
.we{width:54.112000pt;}
.wf{width:60.000000pt;}
.w1a{width:60.672000pt;}
.w16{width:62.880000pt;}
.w15{width:63.040000pt;}
.w18{width:63.552000pt;}
.w19{width:65.280000pt;}
.w27{width:65.952000pt;}
.w29{width:66.080000pt;}
.w1e{width:66.272000pt;}
.w2c{width:68.352000pt;}
.w17{width:69.792000pt;}
.w4{width:72.960000pt;}
.wd{width:77.920000pt;}
.w2a{width:77.952000pt;}
.w1f{width:84.032000pt;}
.w6{width:89.920000pt;}
.w28{width:90.080000pt;}
.w2b{width:100.032000pt;}
.w11{width:117.472000pt;}
.w1d{width:121.952000pt;}
.w12{width:134.746667pt;}
.w7{width:137.306667pt;}
.w14{width:140.186667pt;}
.wc{width:149.626667pt;}
.w9{width:162.266667pt;}
.wb{width:162.746667pt;}
.w23{width:189.946667pt;}
.w21{width:207.266667pt;}
.w1c{width:231.386667pt;}
.w20{width:276.706667pt;}
.w25{width:332.386667pt;}
.w30{width:354.146667pt;}
.w24{width:376.413333pt;}
.w13{width:386.146667pt;}
.w8{width:473.533333pt;}
.w2d{width:516.800000pt;}
.w2e{width:562.080000pt;}
.w5{width:568.773333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w34{width:671.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:1.120000pt;}
.x88{left:3.780000pt;}
.x22{left:6.080000pt;}
.x8{left:7.200000pt;}
.x3f{left:8.160000pt;}
.x17{left:9.600000pt;}
.x3a{left:10.586667pt;}
.x5a{left:11.866667pt;}
.x2e{left:12.800000pt;}
.x39{left:13.786667pt;}
.x26{left:15.520000pt;}
.x2b{left:17.120000pt;}
.x1b{left:18.893333pt;}
.x28{left:20.160000pt;}
.x24{left:21.440000pt;}
.x32{left:23.040000pt;}
.x5c{left:24.000000pt;}
.x45{left:24.960000pt;}
.x44{left:26.720000pt;}
.x3e{left:28.000000pt;}
.x10{left:29.919988pt;}
.x42{left:31.360000pt;}
.x2d{left:32.480000pt;}
.x66{left:33.786667pt;}
.x43{left:34.906667pt;}
.x48{left:37.306667pt;}
.x72{left:40.413333pt;}
.x62{left:42.714667pt;}
.xa{left:44.960000pt;}
.x2f{left:46.760000pt;}
.x35{left:48.154667pt;}
.x4d{left:52.346667pt;}
.x69{left:53.853333pt;}
.x34{left:58.080000pt;}
.x58{left:59.999988pt;}
.x61{left:61.152000pt;}
.x31{left:62.106667pt;}
.x30{left:64.826667pt;}
.x6{left:65.754667pt;}
.x78{left:69.693333pt;}
.x9{left:70.592000pt;}
.x18{left:71.520000pt;}
.x54{left:72.986667pt;}
.x5{left:77.914667pt;}
.x16{left:83.072000pt;}
.x1a{left:84.352000pt;}
.x53{left:86.746667pt;}
.x51{left:88.986667pt;}
.x52{left:90.266667pt;}
.x4{left:96.032000pt;}
.x21{left:97.472000pt;}
.x80{left:102.111988pt;}
.xb{left:109.311988pt;}
.x75{left:116.160000pt;}
.xc{left:117.471988pt;}
.x67{left:120.320000pt;}
.x82{left:125.632000pt;}
.x11{left:126.911988pt;}
.x79{left:128.546667pt;}
.x60{left:130.272000pt;}
.x71{left:134.560000pt;}
.x6a{left:135.706667pt;}
.x57{left:148.520000pt;}
.x55{left:154.600000pt;}
.x56{left:155.720000pt;}
.x65{left:157.440000pt;}
.x12{left:158.746655pt;}
.x6d{left:164.066667pt;}
.x13{left:166.746655pt;}
.x7{left:168.986667pt;}
.xf{left:176.186655pt;}
.x73{left:210.906667pt;}
.x1{left:213.306655pt;}
.x68{left:217.213333pt;}
.x76{left:224.773333pt;}
.x5f{left:230.306667pt;}
.x6b{left:232.613333pt;}
.x36{left:236.226667pt;}
.x7a{left:240.186667pt;}
.x23{left:247.106667pt;}
.x6e{left:260.933333pt;}
.x74{left:263.680000pt;}
.xd{left:269.026655pt;}
.x19{left:275.906667pt;}
.x77{left:283.613333pt;}
.x5e{left:290.306667pt;}
.x7b{left:296.026667pt;}
.x37{left:299.266667pt;}
.x6c{left:324.000000pt;}
.x25{left:325.026667pt;}
.x47{left:327.426667pt;}
.x3{left:331.106655pt;}
.x4e{left:338.946667pt;}
.x6f{left:342.813333pt;}
.x7c{left:348.800000pt;}
.x2{left:357.026655pt;}
.x38{left:362.146667pt;}
.x27{left:379.133333pt;}
.xe{left:393.853322pt;}
.x70{left:406.693333pt;}
.x7d{left:407.680000pt;}
.x1f{left:410.653322pt;}
.x20{left:416.573322pt;}
.x7e{left:417.853333pt;}
.x81{left:430.173322pt;}
.x3b{left:431.933333pt;}
.x14{left:434.813322pt;}
.x15{left:436.253322pt;}
.x29{left:439.133333pt;}
.x7f{left:442.333322pt;}
.x49{left:449.373333pt;}
.x46{left:476.733322pt;}
.x83{left:479.773333pt;}
.x2a{left:483.613333pt;}
.x3c{left:494.973333pt;}
.x5d{left:500.413333pt;}
.x4a{left:515.653333pt;}
.x84{left:533.733333pt;}
.x4f{left:546.213333pt;}
.x1c{left:551.336000pt;}
.x3d{left:558.533333pt;}
.x5b{left:566.373333pt;}
.x4b{left:575.653333pt;}
.x50{left:581.093333pt;}
.x85{left:587.813333pt;}
.x2c{left:601.093333pt;}
.x40{left:623.813333pt;}
.x4c{left:653.573333pt;}
.x59{left:656.453333pt;}
.x86{left:671.840000pt;}
.x63{left:675.679988pt;}
.x41{left:684.480000pt;}
.x64{left:698.719988pt;}
.x1e{left:710.399988pt;}
.x87{left:719.840000pt;}
.x1d{left:721.919988pt;}
}




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