
    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_3ba67dabc30c8504381da63f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_30c12585fe1e20694274baf3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.679688;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_ce2e76d761a0b4aabc2e7563.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.000000;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_0ce2b2d2900a1443d72dcb2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.703000;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_24c79af07893b8854f2a5622.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.890000;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_97e8061122828b20d307c25e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;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_da8dc36974bc242c3d6da28e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_66b7549f88733385d8e45fb9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.746094;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_7981de6cda08f50ef0021f2d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025879;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_a88a6c621473bbc58102022e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.838000;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;}
.m11{transform:matrix(0.136392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136392,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236151,0.000000,-0.080761,0.236596,0,0);-ms-transform:matrix(0.236151,0.000000,-0.080761,0.236596,0,0);-webkit-transform:matrix(0.236151,0.000000,-0.080761,0.236596,0,0);}
.md{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249562,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.147439px;}
.ls8{letter-spacing:0.230575px;}
.ls2{letter-spacing:0.234260px;}
.lsa{letter-spacing:0.286025px;}
.ls14{letter-spacing:0.304238px;}
.ls6{letter-spacing:0.304320px;}
.ls1{letter-spacing:0.456754px;}
.ls18{letter-spacing:0.557023px;}
.ls0{letter-spacing:1.179898px;}
.ls11{letter-spacing:11.545546px;}
.ls5{letter-spacing:14.010294px;}
.lsb{letter-spacing:26.000160px;}
.lsc{letter-spacing:29.538753px;}
.ls7{letter-spacing:32.465197px;}
.ls9{letter-spacing:36.072036px;}
.ls19{letter-spacing:63.119073px;}
.ls1a{letter-spacing:63.840455px;}
.ls12{letter-spacing:91.706821px;}
.ls13{letter-spacing:91.777708px;}
.ls15{letter-spacing:95.110726px;}
.ls17{letter-spacing:96.160829px;}
.ls16{letter-spacing:99.811073px;}
.ls10{letter-spacing:99.893694px;}
.lse{letter-spacing:99.914868px;}
.lsf{letter-spacing:103.790045px;}
.lsd{letter-spacing:103.809719px;}
.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;}
}
.wse{word-spacing:-123.681411px;}
.ws18{word-spacing:-123.669387px;}
.ws14{word-spacing:-119.786560px;}
.ws1e{word-spacing:-119.773036px;}
.ws40{word-spacing:-118.434765px;}
.ws41{word-spacing:-114.784522px;}
.ws32{word-spacing:-112.115919px;}
.ws2e{word-spacing:-108.782901px;}
.ws26{word-spacing:-108.746365px;}
.ws10{word-spacing:-99.154179px;}
.ws1a{word-spacing:-99.143050px;}
.ws31{word-spacing:-90.475790px;}
.ws45{word-spacing:-80.612098px;}
.ws44{word-spacing:-79.890717px;}
.ws9{word-spacing:-49.789700px;}
.ws8{word-spacing:-48.378487px;}
.ws1{word-spacing:-28.255789px;}
.ws0{word-spacing:-20.472892px;}
.ws4{word-spacing:-19.795792px;}
.ws2{word-spacing:-18.273593px;}
.ws5{word-spacing:-15.565794px;}
.ws3{word-spacing:-14.889414px;}
.ws48{word-spacing:-13.366435px;}
.ws7{word-spacing:-9.813596px;}
.ws6{word-spacing:0.000000px;}
.ws34{word-spacing:19.616511px;}
.ws2f{word-spacing:20.338211px;}
.ws27{word-spacing:20.379294px;}
.ws36{word-spacing:32.386244px;}
.ws43{word-spacing:46.347430px;}
.ws21{word-spacing:56.366127px;}
.ws29{word-spacing:56.464724px;}
.ws3d{word-spacing:56.990443px;}
.ws37{word-spacing:58.677954px;}
.ws1c{word-spacing:59.384843px;}
.ws12{word-spacing:59.411670px;}
.ws1b{word-spacing:60.106383px;}
.ws11{word-spacing:60.133330px;}
.ws35{word-spacing:61.879313px;}
.ws24{word-spacing:74.667278px;}
.ws2c{word-spacing:74.772515px;}
.ws22{word-spacing:78.007029px;}
.ws2a{word-spacing:78.105533px;}
.ws20{word-spacing:80.014352px;}
.ws16{word-spacing:80.043176px;}
.ws3f{word-spacing:80.740730px;}
.ws19{word-spacing:83.910703px;}
.wsf{word-spacing:83.938027px;}
.ws3a{word-spacing:84.257626px;}
.ws23{word-spacing:99.648612px;}
.ws2b{word-spacing:99.745661px;}
.ws3e{word-spacing:100.296237px;}
.wsd{word-spacing:105.184692px;}
.ws3c{word-spacing:116.187281px;}
.wsc{word-spacing:189.381691px;}
.wsb{word-spacing:203.087617px;}
.ws1f{word-spacing:223.563081px;}
.ws15{word-spacing:223.597074px;}
.ws3b{word-spacing:247.642339px;}
.ws38{word-spacing:265.363431px;}
.ws28{word-spacing:332.918595px;}
.ws30{word-spacing:333.014059px;}
.wsa{word-spacing:339.203639px;}
.ws39{word-spacing:418.293589px;}
.ws17{word-spacing:604.221848px;}
.ws1d{word-spacing:604.891005px;}
.ws13{word-spacing:604.942793px;}
.ws25{word-spacing:675.958678px;}
.ws2d{word-spacing:676.065263px;}
.ws46{word-spacing:772.350315px;}
.ws47{word-spacing:772.384155px;}
.ws33{word-spacing:804.468076px;}
.ws42{word-spacing:988.553050px;}
._19{margin-left:-103.087979px;}
._1d{margin-left:-99.914868px;}
._3a{margin-left:-96.882683px;}
._2a{margin-left:-95.110726px;}
._27{margin-left:-91.706821px;}
._3f{margin-left:-64.696445px;}
._3d{margin-left:-62.704526px;}
._16{margin-left:-29.538753px;}
._15{margin-left:-26.721554px;}
._39{margin-left:-24.526658px;}
._38{margin-left:-23.084439px;}
._29{margin-left:-21.640809px;}
._37{margin-left:-10.819261px;}
._3e{margin-left:-6.492236px;}
._31{margin-left:-5.098898px;}
._12{margin-left:-2.029404px;}
._1{margin-left:-1.028353px;}
._0{width:1.077576px;}
._4{width:2.925968px;}
._3{width:4.413066px;}
._2{width:5.529868px;}
._6{width:6.653016px;}
._b{width:8.177385px;}
._10{width:9.591680px;}
._d{width:11.028847px;}
._c{width:12.275486px;}
._11{width:13.795633px;}
._7{width:15.391186px;}
._8{width:16.411029px;}
._9{width:17.524662px;}
._a{width:18.670692px;}
._2c{width:19.890230px;}
._13{width:20.985681px;}
._14{width:22.005225px;}
._5{width:25.858596px;}
._40{width:47.063332px;}
._e{width:54.603972px;}
._f{width:56.154959px;}
._3b{width:57.348219px;}
._3c{width:64.561837px;}
._24{width:72.684557px;}
._23{width:74.127466px;}
._1b{width:80.005022px;}
._2d{width:88.111505px;}
._21{width:95.046572px;}
._25{width:96.489480px;}
._1c{width:103.809719px;}
._30{width:106.135837px;}
._28{width:116.220748px;}
._22{width:117.409268px;}
._1a{width:128.336951px;}
._33{width:131.619098px;}
._34{width:147.488892px;}
._1f{width:161.360199px;}
._20{width:187.859207px;}
._35{width:199.520058px;}
._26{width:220.832480px;}
._1e{width:244.189711px;}
._2f{width:273.545815px;}
._36{width:288.246981px;}
._32{width:298.973984px;}
._2e{width:338.828788px;}
._18{width:368.390092px;}
._17{width:392.917113px;}
._2b{width:1233.123707px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:5.414398px;}
.fsf{font-size:11.503435px;}
.fs13{font-size:16.919993px;}
.fse{font-size:22.334391px;}
.fs10{font-size:28.423429px;}
.fs8{font-size:33.839986px;}
.fs23{font-size:36.545745px;}
.fs19{font-size:38.784224px;}
.fsd{font-size:39.254384px;}
.fs1c{font-size:39.810944px;}
.fs7{font-size:45.343422px;}
.fs6{font-size:48.051341px;}
.fsc{font-size:50.759980px;}
.fs24{font-size:53.465739px;}
.fs0{font-size:56.174378px;}
.fs9{font-size:59.557656px;}
.fsa{font-size:62.263175px;}
.fs1a{font-size:67.086573px;}
.fs1{font-size:67.679973px;}
.fs18{font-size:68.020773px;}
.fs17{font-size:68.158173px;}
.fs1d{font-size:68.864372px;}
.fs1e{font-size:72.765575px;}
.fs5{font-size:73.094371px;}
.fs22{font-size:74.494770px;}
.fs21{font-size:76.463369px;}
.fsb{font-size:79.183168px;}
.fs14{font-size:79.486768px;}
.fs16{font-size:79.517368px;}
.fs3{font-size:81.891567px;}
.fs12{font-size:85.198766px;}
.fs4{font-size:90.014364px;}
.fs11{font-size:95.158162px;}
.fs1b{font-size:100.628360px;}
.fs1f{font-size:103.297759px;}
.fs20{font-size:103.741759px;}
.fs2{font-size:113.023155px;}
.y177{bottom:-11.160091px;}
.y0{bottom:0.000000px;}
.y25e{bottom:2.339908px;}
.y260{bottom:2.339913px;}
.y188{bottom:3.779598px;}
.y18a{bottom:3.779604px;}
.y18c{bottom:3.779611px;}
.y18d{bottom:3.779618px;}
.y190{bottom:3.779624px;}
.y192{bottom:3.779628px;}
.y194{bottom:3.779631px;}
.y196{bottom:3.779637px;}
.y198{bottom:3.779638px;}
.y224{bottom:3.779640px;}
.y19a{bottom:3.779644px;}
.y227{bottom:3.779647px;}
.y19c{bottom:3.779648px;}
.y19e{bottom:3.779650px;}
.y22a{bottom:3.779653px;}
.y22c{bottom:3.779660px;}
.y22f{bottom:3.779666px;}
.y232{bottom:3.779673px;}
.y233{bottom:3.779679px;}
.y235{bottom:3.779680px;}
.y237{bottom:3.779686px;}
.y23a{bottom:3.779692px;}
.y23c{bottom:3.779699px;}
.y23e{bottom:3.779701px;}
.y240{bottom:3.779702px;}
.y2b3{bottom:3.779705px;}
.y2b5{bottom:3.779712px;}
.y2b7{bottom:3.779718px;}
.y2b9{bottom:3.779725px;}
.y2bb{bottom:3.779731px;}
.y2bd{bottom:3.779738px;}
.y1b9{bottom:3.779739px;}
.y2be{bottom:3.779744px;}
.y1bb{bottom:3.779746px;}
.y2c0{bottom:3.779748px;}
.y1be{bottom:3.779752px;}
.y1c0{bottom:3.779759px;}
.y1c3{bottom:3.779766px;}
.y1c5{bottom:3.779770px;}
.y1c7{bottom:3.779772px;}
.y1c9{bottom:3.779779px;}
.y1cb{bottom:3.779780px;}
.y1cd{bottom:3.779785px;}
.y1cf{bottom:3.779790px;}
.y1d1{bottom:3.779792px;}
.y1d3{bottom:3.779798px;}
.y1d5{bottom:3.779800px;}
.y1d7{bottom:3.779802px;}
.y1ee{bottom:3.779866px;}
.y1f1{bottom:3.779873px;}
.y1f3{bottom:3.779876px;}
.y1f5{bottom:3.779880px;}
.y1f7{bottom:3.779886px;}
.y1fa{bottom:3.779893px;}
.y1fc{bottom:3.779899px;}
.y1fe{bottom:3.779906px;}
.y200{bottom:3.779907px;}
.y202{bottom:3.779912px;}
.y205{bottom:3.779919px;}
.y207{bottom:3.779925px;}
.y209{bottom:3.779927px;}
.y20b{bottom:3.779929px;}
.y271{bottom:3.779942px;}
.y262{bottom:3.959911px;}
.y17b{bottom:4.139597px;}
.y17d{bottom:4.139608px;}
.y17f{bottom:4.139618px;}
.y181{bottom:4.139628px;}
.y183{bottom:4.139638px;}
.y216{bottom:4.139640px;}
.y185{bottom:4.139648px;}
.y218{bottom:4.139650px;}
.y21a{bottom:4.139660px;}
.y21c{bottom:4.139670px;}
.y21e{bottom:4.139680px;}
.y2a2{bottom:4.139686px;}
.y220{bottom:4.139691px;}
.y2a4{bottom:4.139696px;}
.y222{bottom:4.139701px;}
.y2a6{bottom:4.139706px;}
.y2a8{bottom:4.139716px;}
.y2aa{bottom:4.139726px;}
.y2ac{bottom:4.139736px;}
.y1aa{bottom:4.139739px;}
.y2ae{bottom:4.139746px;}
.y1ac{bottom:4.139749px;}
.y285{bottom:4.139755px;}
.y1ae{bottom:4.139759px;}
.y287{bottom:4.139762px;}
.y1b0{bottom:4.139770px;}
.y28b{bottom:4.139777px;}
.y1b2{bottom:4.139780px;}
.y28e{bottom:4.139784px;}
.y1b4{bottom:4.139790px;}
.y291{bottom:4.139791px;}
.y293{bottom:4.139798px;}
.y1b6{bottom:4.139800px;}
.y296{bottom:4.139801px;}
.y1e0{bottom:4.139866px;}
.y174{bottom:4.139872px;}
.y1e2{bottom:4.139876px;}
.y1e4{bottom:4.139886px;}
.y1e6{bottom:4.139897px;}
.y1e8{bottom:4.139907px;}
.y1ea{bottom:4.139917px;}
.y1ec{bottom:4.139927px;}
.y26c{bottom:4.139942px;}
.y11a{bottom:4.319582px;}
.y11c{bottom:4.319590px;}
.y11f{bottom:4.319597px;}
.y121{bottom:4.319605px;}
.y124{bottom:4.319613px;}
.y126{bottom:4.319617px;}
.y128{bottom:4.319620px;}
.y12a{bottom:4.319628px;}
.y12c{bottom:4.319629px;}
.y12e{bottom:4.319631px;}
.y146{bottom:4.319708px;}
.y148{bottom:4.319716px;}
.y14b{bottom:4.319723px;}
.y14d{bottom:4.319731px;}
.y150{bottom:4.319739px;}
.y152{bottom:4.319743px;}
.y154{bottom:4.319746px;}
.y156{bottom:4.319754px;}
.y158{bottom:4.319755px;}
.y15a{bottom:4.319762px;}
.y15d{bottom:4.319769px;}
.yee{bottom:4.319790px;}
.yf0{bottom:4.319798px;}
.yf3{bottom:4.319805px;}
.yf5{bottom:4.319813px;}
.yf8{bottom:4.319821px;}
.yfa{bottom:4.319825px;}
.yfc{bottom:4.319828px;}
.yfe{bottom:4.319836px;}
.y100{bottom:4.319837px;}
.y102{bottom:4.319839px;}
.y279{bottom:4.319946px;}
.y27b{bottom:4.499755px;}
.y27d{bottom:4.499766px;}
.y27f{bottom:4.499777px;}
.y281{bottom:4.499788px;}
.y283{bottom:4.499799px;}
.yd4{bottom:4.679729px;}
.yd6{bottom:4.679737px;}
.yd8{bottom:4.679745px;}
.ydb{bottom:4.679754px;}
.ydd{bottom:4.679762px;}
.ydf{bottom:4.679769px;}
.y276{bottom:4.679946px;}
.y110{bottom:4.859582px;}
.y112{bottom:4.859593px;}
.y114{bottom:4.859605px;}
.y116{bottom:4.859617px;}
.y118{bottom:4.859629px;}
.y13a{bottom:4.859708px;}
.y13c{bottom:4.859719px;}
.y13e{bottom:4.859731px;}
.y140{bottom:4.859743px;}
.y142{bottom:4.859755px;}
.y144{bottom:4.859767px;}
.ye4{bottom:4.859789px;}
.ye6{bottom:4.859801px;}
.ye8{bottom:4.859813px;}
.yea{bottom:4.859825px;}
.yec{bottom:4.859837px;}
.ycc{bottom:5.039728px;}
.yce{bottom:5.039741px;}
.yd0{bottom:5.039754px;}
.yd2{bottom:5.039767px;}
.ybb{bottom:5.219636px;}
.ybd{bottom:5.219645px;}
.ybf{bottom:5.219655px;}
.yc1{bottom:5.219664px;}
.yc3{bottom:5.219673px;}
.yc5{bottom:5.219681px;}
.y264{bottom:5.579913px;}
.y274{bottom:5.579946px;}
.yb3{bottom:5.759636px;}
.yb5{bottom:5.759650px;}
.yb7{bottom:5.759664px;}
.yb9{bottom:5.759678px;}
.y3{bottom:91.259963px;}
.y2{bottom:109.979956px;}
.y268{bottom:124.379950px;}
.y71{bottom:126.899949px;}
.y26a{bottom:128.159949px;}
.y273{bottom:128.340000px;}
.y275{bottom:130.860000px;}
.y278{bottom:131.220000px;}
.y20e{bottom:133.019947px;}
.y277{bottom:135.539946px;}
.y70{bottom:135.899946px;}
.yab{bottom:137.519945px;}
.y2fc{bottom:139.499944px;}
.y2d0{bottom:139.679944px;}
.y171{bottom:139.859944px;}
.y26e{bottom:140.039944px;}
.y26b{bottom:140.400000px;}
.y272{bottom:140.579944px;}
.y270{bottom:140.760000px;}
.y26f{bottom:144.539942px;}
.y2ea{bottom:146.699941px;}
.y321{bottom:149.759940px;}
.y20d{bottom:150.839940px;}
.y6f{bottom:151.559939px;}
.y26d{bottom:152.099939px;}
.y6e{bottom:153.719939px;}
.yaa{bottom:155.159938px;}
.y2fb{bottom:155.699938px;}
.y2cf{bottom:155.879938px;}
.y170{bottom:157.499937px;}
.y38{bottom:160.559936px;}
.y269{bottom:161.999935px;}
.y2e9{bottom:164.519934px;}
.y2fa{bottom:171.899931px;}
.ya9{bottom:173.159931px;}
.y20c{bottom:173.519931px;}
.y16f{bottom:173.879930px;}
.y20a{bottom:174.060000px;}
.y320{bottom:174.419930px;}
.y266{bottom:176.759929px;}
.y1eb{bottom:177.660000px;}
.y6d{bottom:177.839929px;}
.y208{bottom:178.020000px;}
.y37{bottom:178.379929px;}
.y6c{bottom:179.999928px;}
.y2e8{bottom:182.519927px;}
.y206{bottom:183.060000px;}
.y267{bottom:183.779926px;}
.y2f9{bottom:188.279925px;}
.ya8{bottom:190.979924px;}
.y16e{bottom:191.519923px;}
.y6b{bottom:195.299922px;}
.y36{bottom:196.199922px;}
.y31f{bottom:199.079920px;}
.y204{bottom:199.260000px;}
.y2e7{bottom:200.159920px;}
.y265{bottom:203.039919px;}
.y1e9{bottom:203.040000px;}
.y2f8{bottom:204.299918px;}
.y6a{bottom:204.479918px;}
.y25b{bottom:206.639917px;}
.y203{bottom:207.179917px;}
.ya7{bottom:208.619917px;}
.y2ce{bottom:209.519916px;}
.y263{bottom:213.120000px;}
.y35{bottom:214.019914px;}
.y201{bottom:215.640000px;}
.y25f{bottom:216.000000px;}
.y16d{bottom:217.799913px;}
.y2e6{bottom:218.159913px;}
.y261{bottom:218.700000px;}
.y69{bottom:219.959912px;}
.y2f7{bottom:220.499912px;}
.y68{bottom:222.119911px;}
.y10e{bottom:222.479911px;}
.y25c{bottom:222.659911px;}
.y31e{bottom:223.739911px;}
.ya6{bottom:226.619909px;}
.y2cd{bottom:227.339909px;}
.y25d{bottom:227.700000px;}
.y1e7{bottom:228.600000px;}
.y1ff{bottom:228.960000px;}
.y34{bottom:231.839907px;}
.y1fd{bottom:231.840000px;}
.y2f6{bottom:233.099907px;}
.y2e5{bottom:235.979906px;}
.y176{bottom:237.420000px;}
.y25a{bottom:239.579904px;}
.y67{bottom:239.939904px;}
.y10d{bottom:240.479904px;}
.y16c{bottom:242.639903px;}
.ya5{bottom:244.439902px;}
.y2cb{bottom:244.979902px;}
.y175{bottom:245.699902px;}
.y1fb{bottom:248.220000px;}
.y31d{bottom:248.399901px;}
.y33{bottom:249.839900px;}
.y2cc{bottom:252.179899px;}
.y2e4{bottom:253.619899px;}
.y259{bottom:253.799898px;}
.y1e5{bottom:254.160000px;}
.y66{bottom:257.939897px;}
.y10c{bottom:258.299897px;}
.y16b{bottom:260.459896px;}
.ya4{bottom:262.259895px;}
.y2ca{bottom:262.979895px;}
.y1f9{bottom:264.420000px;}
.y32{bottom:267.479893px;}
.y258{bottom:270.179892px;}
.y2e3{bottom:271.619891px;}
.y31c{bottom:273.059891px;}
.y65{bottom:275.579890px;}
.y10b{bottom:276.119890px;}
.y16a{bottom:278.279889px;}
.ya3{bottom:279.359888px;}
.y1e3{bottom:279.720000px;}
.y1f8{bottom:280.080000px;}
.y2c9{bottom:280.259888px;}
.y1f6{bottom:280.800000px;}
.y31{bottom:285.299886px;}
.y257{bottom:287.999885px;}
.y2e2{bottom:289.439884px;}
.y31b{bottom:289.799884px;}
.y64{bottom:293.579883px;}
.y10a{bottom:293.939882px;}
.y169{bottom:296.099882px;}
.ya2{bottom:296.999881px;}
.y1f4{bottom:297.180000px;}
.y2c8{bottom:297.719881px;}
.y30{bottom:303.299879px;}
.y256{bottom:304.199878px;}
.y1e1{bottom:305.100000px;}
.y1f2{bottom:305.460000px;}
.y31a{bottom:306.179878px;}
.y2e1{bottom:307.259877px;}
.y109{bottom:309.239876px;}
.y63{bottom:311.399875px;}
.y1f0{bottom:313.380000px;}
.y168{bottom:313.919874px;}
.y173{bottom:314.820000px;}
.y108{bottom:318.239873px;}
.ya1{bottom:318.599873px;}
.y172{bottom:318.959872px;}
.y2c7{bottom:319.679872px;}
.y2f{bottom:320.939872px;}
.y255{bottom:322.199871px;}
.y2e0{bottom:325.079870px;}
.y62{bottom:328.859868px;}
.y1ef{bottom:329.760000px;}
.y1df{bottom:330.660000px;}
.y1ed{bottom:331.020000px;}
.y167{bottom:331.919867px;}
.y2c6{bottom:335.879866px;}
.y107{bottom:336.059866px;}
.ya0{bottom:337.499865px;}
.y319{bottom:338.399865px;}
.y2e{bottom:338.939864px;}
.y254{bottom:340.019864px;}
.y2df{bottom:342.899863px;}
.y61{bottom:347.759861px;}
.y166{bottom:349.559860px;}
.y106{bottom:351.359859px;}
.y2c4{bottom:353.699859px;}
.y318{bottom:354.599858px;}
.y2d{bottom:356.759857px;}
.y9f{bottom:356.939857px;}
.y253{bottom:357.659857px;}
.y105{bottom:360.359856px;}
.y2c5{bottom:360.719856px;}
.y1de{bottom:364.319854px;}
.y60{bottom:369.719852px;}
.y317{bottom:370.979852px;}
.y2c{bottom:374.399850px;}
.y104{bottom:374.759850px;}
.y252{bottom:375.659850px;}
.y165{bottom:376.019850px;}
.y9e{bottom:376.379849px;}
.y2c3{bottom:376.739849px;}
.y2de{bottom:378.539849px;}
.y103{bottom:379.979848px;}
.y1dd{bottom:382.139847px;}
.y2c2{bottom:386.279845px;}
.y316{bottom:387.179845px;}
.y5f{bottom:387.539845px;}
.y2b{bottom:392.399843px;}
.y251{bottom:393.479843px;}
.y9d{bottom:395.819842px;}
.y2dd{bottom:396.539841px;}
.ye2{bottom:397.619841px;}
.y101{bottom:398.340000px;}
.y164{bottom:402.299839px;}
.yeb{bottom:402.300000px;}
.yff{bottom:402.840000px;}
.y315{bottom:403.199839px;}
.y5e{bottom:405.359838px;}
.yfd{bottom:406.260000px;}
.y1dc{bottom:408.419837px;}
.y250{bottom:409.859836px;}
.y2a{bottom:410.219836px;}
.y9c{bottom:413.999834px;}
.y314{bottom:419.399832px;}
.y5d{bottom:423.179831px;}
.yfb{bottom:425.340000px;}
.y1db{bottom:426.239830px;}
.y29{bottom:428.039829px;}
.y163{bottom:428.399829px;}
.y24f{bottom:428.939828px;}
.y2dc{bottom:430.379828px;}
.y9b{bottom:430.919828px;}
.ye9{bottom:432.180000px;}
.yf9{bottom:432.720000px;}
.y313{bottom:435.779826px;}
.y5c{bottom:441.179824px;}
.y1da{bottom:442.439823px;}
.y2db{bottom:442.979823px;}
.yf7{bottom:444.420000px;}
.y24e{bottom:445.319822px;}
.y28{bottom:445.859822px;}
.y312{bottom:451.979819px;}
.y162{bottom:454.859818px;}
.y9a{bottom:456.839817px;}
.y5b{bottom:458.999816px;}
.ye7{bottom:462.060000px;}
.yf6{bottom:462.600000px;}
.y24d{bottom:463.139815px;}
.yf4{bottom:463.500000px;}
.y27{bottom:464.399814px;}
.y99{bottom:464.579814px;}
.y98{bottom:466.919813px;}
.y311{bottom:468.179813px;}
.y1d9{bottom:468.899812px;}
.y5a{bottom:476.639809px;}
.y161{bottom:481.139808px;}
.yf2{bottom:482.580000px;}
.y310{bottom:484.379806px;}
.y97{bottom:484.739806px;}
.y26{bottom:486.539805px;}
.y24c{bottom:489.599804px;}
.y1d8{bottom:491.399803px;}
.ye5{bottom:491.760000px;}
.y1d6{bottom:491.940000px;}
.y295{bottom:492.840000px;}
.y59{bottom:494.459802px;}
.y1b5{bottom:495.540000px;}
.y1d4{bottom:495.900000px;}
.yf1{bottom:496.619801px;}
.y282{bottom:496.800000px;}
.y294{bottom:497.160000px;}
.y2f5{bottom:498.779800px;}
.y96{bottom:500.399800px;}
.y292{bottom:500.400000px;}
.y30f{bottom:500.579800px;}
.y1d2{bottom:500.940000px;}
.yef{bottom:501.480000px;}
.y95{bottom:502.559799px;}
.y25{bottom:503.999798px;}
.y160{bottom:507.419797px;}
.y58{bottom:510.839796px;}
.y24b{bottom:515.699794px;}
.y2f4{bottom:516.599793px;}
.y30e{bottom:516.779793px;}
.y1d0{bottom:517.140000px;}
.y94{bottom:518.219793px;}
.y290{bottom:518.220000px;}
.y24{bottom:520.379792px;}
.yed{bottom:520.560000px;}
.y1b3{bottom:520.920000px;}
.y1ce{bottom:521.280000px;}
.ye3{bottom:521.640000px;}
.y280{bottom:524.700000px;}
.y15f{bottom:525.239790px;}
.y57{bottom:526.679789px;}
.y28f{bottom:529.199788px;}
.y30d{bottom:532.979787px;}
.y1cc{bottom:533.520000px;}
.y2f3{bottom:534.419786px;}
.y28d{bottom:536.040000px;}
.y23{bottom:536.759785px;}
.y93{bottom:538.199785px;}
.y56{bottom:538.379785px;}
.y24a{bottom:541.979783px;}
.y1b1{bottom:546.480000px;}
.y2f2{bottom:546.839781px;}
.y1ca{bottom:546.840000px;}
.ye1{bottom:547.739781px;}
.y30c{bottom:549.179780px;}
.y1c8{bottom:549.720000px;}
.y15e{bottom:551.519779px;}
.y27e{bottom:552.600000px;}
.y28a{bottom:553.860000px;}
.y22{bottom:554.759778px;}
.ye0{bottom:554.939778px;}
.y92{bottom:555.479778px;}
.y55{bottom:556.019778px;}
.y28c{bottom:557.099777px;}
.y30b{bottom:565.559774px;}
.y1c6{bottom:566.100000px;}
.y249{bottom:568.439773px;}
.y289{bottom:571.680000px;}
.y1af{bottom:572.040000px;}
.y54{bottom:572.399771px;}
.y1c4{bottom:572.400000px;}
.yca{bottom:572.939771px;}
.y15c{bottom:573.120000px;}
.yde{bottom:573.660000px;}
.y21{bottom:575.639770px;}
.y143{bottom:577.080000px;}
.yd1{bottom:578.160000px;}
.y27c{bottom:580.680000px;}
.y30a{bottom:581.759767px;}
.y15b{bottom:581.939767px;}
.y1c2{bottom:582.300000px;}
.y288{bottom:585.179766px;}
.y286{bottom:589.680000px;}
.y53{bottom:590.219764px;}
.y248{bottom:591.119764px;}
.ydc{bottom:591.120000px;}
.y91{bottom:591.479763px;}
.y159{bottom:591.840000px;}
.y20{bottom:593.459763px;}
.y1ad{bottom:597.600000px;}
.y1c1{bottom:597.960000px;}
.y1bf{bottom:598.680000px;}
.y2c1{bottom:599.579760px;}
.y309{bottom:606.419757px;}
.y141{bottom:606.960000px;}
.y157{bottom:607.500000px;}
.y90{bottom:608.039757px;}
.y52{bottom:608.219757px;}
.y27a{bottom:608.580000px;}
.y1f{bottom:609.479756px;}
.ycf{bottom:610.200000px;}
.y155{bottom:610.920000px;}
.yda{bottom:611.460000px;}
.y284{bottom:613.079755px;}
.y247{bottom:614.699754px;}
.y1bd{bottom:615.060000px;}
.y1ab{bottom:622.980000px;}
.y308{bottom:624.419750px;}
.y1e{bottom:625.679750px;}
.y51{bottom:625.859750px;}
.y2bf{bottom:626.220000px;}
.y1bc{bottom:627.119749px;}
.y2ad{bottom:629.820000px;}
.y153{bottom:630.000000px;}
.y1ba{bottom:631.260000px;}
.yd9{bottom:631.439747px;}
.yd7{bottom:631.980000px;}
.y246{bottom:632.519747px;}
.y13f{bottom:636.840000px;}
.y151{bottom:637.380000px;}
.y8f{bottom:641.519743px;}
.y1d{bottom:642.059743px;}
.ycd{bottom:642.060000px;}
.y50{bottom:643.679743px;}
.y1b8{bottom:647.640000px;}
.y1a9{bottom:648.540000px;}
.y14f{bottom:649.080000px;}
.y245{bottom:650.519740px;}
.y2bc{bottom:652.140000px;}
.yd5{bottom:652.320000px;}
.y1b7{bottom:652.679739px;}
.y2ab{bottom:655.200000px;}
.y1c{bottom:658.259737px;}
.y4f{bottom:659.879736px;}
.y307{bottom:661.679735px;}
.y13d{bottom:666.540000px;}
.y14e{bottom:667.080000px;}
.y8e{bottom:667.619733px;}
.y244{bottom:668.159733px;}
.y14c{bottom:668.160000px;}
.y2ba{bottom:668.340000px;}
.y8d{bottom:669.959732px;}
.yd3{bottom:672.840000px;}
.ycb{bottom:674.100000px;}
.y1b{bottom:674.459730px;}
.y4e{bottom:677.879729px;}
.y306{bottom:679.319728px;}
.y2a9{bottom:680.580000px;}
.y1a8{bottom:682.199727px;}
.y243{bottom:684.539726px;}
.y2b8{bottom:684.720000px;}
.y14a{bottom:687.060000px;}
.y1a{bottom:690.479724px;}
.y8c{bottom:692.999723px;}
.y4d{bottom:695.699722px;}
.y13b{bottom:696.420000px;}
.y8b{bottom:697.319721px;}
.y8a{bottom:699.479720px;}
.y1a7{bottom:700.199720px;}
.y2b6{bottom:700.920000px;}
.y149{bottom:701.279719px;}
.y242{bottom:702.359719px;}
.yc9{bottom:704.159718px;}
.y2a7{bottom:705.960000px;}
.y147{bottom:706.140000px;}
.y19{bottom:706.859717px;}
.y4c{bottom:713.519715px;}
.y89{bottom:715.139714px;}
.y2b4{bottom:717.120000px;}
.y88{bottom:717.299713px;}
.y1a6{bottom:717.839713px;}
.yc8{bottom:721.979711px;}
.y18{bottom:723.059711px;}
.y145{bottom:725.220000px;}
.y241{bottom:726.119710px;}
.y139{bottom:726.300000px;}
.y4b{bottom:731.339707px;}
.y2a5{bottom:731.340000px;}
.y305{bottom:732.419707px;}
.y2b2{bottom:733.320000px;}
.y1a5{bottom:734.219706px;}
.y87{bottom:735.119706px;}
.y17{bottom:739.259704px;}
.yc7{bottom:739.799704px;}
.y23f{bottom:740.340000px;}
.y221{bottom:743.940000px;}
.y23d{bottom:744.300000px;}
.y2f1{bottom:745.379702px;}
.y4a{bottom:749.159700px;}
.y23b{bottom:749.340000px;}
.y2b1{bottom:749.520000px;}
.y2da{bottom:750.059700px;}
.y86{bottom:750.779700px;}
.y1a4{bottom:752.039699px;}
.y85{bottom:752.939699px;}
.y16{bottom:755.459698px;}
.y2a3{bottom:756.720000px;}
.y2d9{bottom:759.059696px;}
.y138{bottom:761.399695px;}
.y2f0{bottom:763.199695px;}
.y239{bottom:765.540000px;}
.y2b0{bottom:765.720000px;}
.yc6{bottom:766.259693px;}
.y49{bottom:766.979693px;}
.y331{bottom:767.519693px;}
.y304{bottom:767.699693px;}
.y21f{bottom:769.320000px;}
.y1a3{bottom:769.859692px;}
.y137{bottom:771.659691px;}
.y15{bottom:771.839691px;}
.y238{bottom:773.459691px;}
.y84{bottom:776.699689px;}
.y2d8{bottom:777.059689px;}
.y2ef{bottom:779.219688px;}
.y2af{bottom:781.200000px;}
.y330{bottom:781.919687px;}
.y236{bottom:781.920000px;}
.y2a1{bottom:782.100000px;}
.y48{bottom:784.799686px;}
.y83{bottom:785.879686px;}
.y1a2{bottom:787.679685px;}
.y14{bottom:789.839684px;}
.yb1{bottom:792.359683px;}
.yc4{bottom:793.080000px;}
.y303{bottom:794.519682px;}
.y2d7{bottom:794.699682px;}
.y21d{bottom:794.880000px;}
.y234{bottom:795.240000px;}
.y2ee{bottom:795.599682px;}
.y136{bottom:797.759681px;}
.yb8{bottom:798.120000px;}
.y47{bottom:802.799679px;}
.y32f{bottom:805.319678px;}
.y1a1{bottom:805.499678px;}
.y13{bottom:809.999676px;}
.y82{bottom:811.079676px;}
.y302{bottom:812.339675px;}
.y2d6{bottom:812.699675px;}
.yc2{bottom:812.700000px;}
.y2ed{bottom:813.419675px;}
.y231{bottom:814.500000px;}
.y2a0{bottom:815.219674px;}
.y135{bottom:815.759674px;}
.y81{bottom:820.079672px;}
.y32e{bottom:820.259672px;}
.y46{bottom:820.439672px;}
.y21b{bottom:820.440000px;}
.y1a0{bottom:821.699671px;}
.y12{bottom:822.779671px;}
.y230{bottom:824.579670px;}
.y29f{bottom:829.799668px;}
.y301{bottom:830.159668px;}
.y2d5{bottom:830.519668px;}
.y22e{bottom:830.700000px;}
.y2ec{bottom:831.239668px;}
.y134{bottom:833.579667px;}
.yb6{bottom:833.760000px;}
.y29e{bottom:834.659666px;}
.yc0{bottom:835.380000px;}
.y80{bottom:835.739666px;}
.y32d{bottom:836.639665px;}
.y11{bottom:836.819665px;}
.y7f{bottom:837.899665px;}
.y45{bottom:838.259665px;}
.y10{bottom:844.739662px;}
.y300{bottom:845.099662px;}
.y2eb{bottom:845.279662px;}
.y219{bottom:846.000000px;}
.y22d{bottom:846.360000px;}
.y22b{bottom:847.080000px;}
.y2ff{bottom:847.619661px;}
.y19f{bottom:848.159661px;}
.y133{bottom:851.219660px;}
.y29d{bottom:852.659659px;}
.y32c{bottom:852.839659px;}
.yf{bottom:853.739659px;}
.y7e{bottom:855.899658px;}
.y44{bottom:856.259657px;}
.ybe{bottom:858.240000px;}
.y229{bottom:863.460000px;}
.ye{bottom:865.979654px;}
.y2d4{bottom:866.159654px;}
.y132{bottom:867.599653px;}
.y32b{bottom:869.039652px;}
.yb4{bottom:869.400000px;}
.y29c{bottom:870.479652px;}
.y179{bottom:870.659652px;}
.y19d{bottom:871.020000px;}
.y217{bottom:871.380000px;}
.y228{bottom:871.740000px;}
.y7d{bottom:873.539651px;}
.yd{bottom:873.719651px;}
.y43{bottom:873.899650px;}
.y184{bottom:874.620000px;}
.y19b{bottom:874.980000px;}
.y226{bottom:879.660000px;}
.y2d3{bottom:880.199648px;}
.ybc{bottom:881.100000px;}
.yc{bottom:884.699646px;}
.y32a{bottom:885.239646px;}
.y131{bottom:885.419646px;}
.y199{bottom:887.040000px;}
.y7c{bottom:887.579645px;}
.y29b{bottom:888.119645px;}
.y7b{bottom:889.919644px;}
.y42{bottom:891.899643px;}
.y225{bottom:896.040000px;}
.y215{bottom:896.940000px;}
.y223{bottom:897.300000px;}
.y182{bottom:900.180000px;}
.y197{bottom:900.540000px;}
.y329{bottom:901.439639px;}
.ya{bottom:901.799639px;}
.y130{bottom:903.239639px;}
.y195{bottom:903.420000px;}
.yba{bottom:903.780000px;}
.yb2{bottom:905.220000px;}
.y7a{bottom:905.399638px;}
.y79{bottom:907.559637px;}
.y41{bottom:909.719636px;}
.yb{bottom:910.259636px;}
.y29a{bottom:912.959635px;}
.y12f{bottom:917.279633px;}
.y328{bottom:917.639633px;}
.y12d{bottom:918.000000px;}
.y193{bottom:919.800000px;}
.y117{bottom:921.960000px;}
.y214{bottom:922.319631px;}
.y12b{bottom:922.500000px;}
.y8{bottom:922.859631px;}
.y78{bottom:923.399631px;}
.y77{bottom:925.559630px;}
.y180{bottom:925.740000px;}
.y129{bottom:925.920000px;}
.y191{bottom:926.100000px;}
.y40{bottom:927.359629px;}
.y299{bottom:930.599628px;}
.y9{bottom:931.319627px;}
.y327{bottom:933.839626px;}
.y18f{bottom:936.180000px;}
.yb0{bottom:938.339625px;}
.y213{bottom:940.139624px;}
.y76{bottom:943.379623px;}
.y127{bottom:945.000000px;}
.y3f{bottom:945.359622px;}
.y7{bottom:946.799621px;}
.y326{bottom:950.039620px;}
.y17e{bottom:951.300000px;}
.y18e{bottom:951.660000px;}
.y115{bottom:951.840000px;}
.y125{bottom:952.380000px;}
.yaf{bottom:956.339617px;}
.y75{bottom:961.199616px;}
.y3e{bottom:963.179615px;}
.y123{bottom:964.080000px;}
.y298{bottom:964.799614px;}
.y212{bottom:966.419613px;}
.y18b{bottom:968.760000px;}
.yae{bottom:974.159610px;}
.y17c{bottom:976.860000px;}
.y6{bottom:978.479609px;}
.y74{bottom:979.019608px;}
.y3d{bottom:980.999608px;}
.y113{bottom:981.720000px;}
.y122{bottom:982.260000px;}
.y297{bottom:982.619607px;}
.y120{bottom:983.160000px;}
.y211{bottom:984.059606px;}
.y189{bottom:985.140000px;}
.yad{bottom:991.979603px;}
.y73{bottom:997.019601px;}
.y325{bottom:998.639601px;}
.y3c{bottom:998.819600px;}
.y210{bottom:1000.439600px;}
.y187{bottom:1001.340000px;}
.y11e{bottom:1002.240000px;}
.y17a{bottom:1002.420000px;}
.y186{bottom:1006.559597px;}
.y5{bottom:1010.339596px;}
.y111{bottom:1011.420000px;}
.y324{bottom:1014.839594px;}
.y11d{bottom:1016.279593px;}
.y3b{bottom:1016.639593px;}
.y20f{bottom:1018.079593px;}
.yac{bottom:1018.979592px;}
.y11b{bottom:1021.140000px;}
.y72{bottom:1022.939591px;}
.y323{bottom:1031.399587px;}
.y3a{bottom:1034.459586px;}
.y178{bottom:1036.079586px;}
.y119{bottom:1040.220000px;}
.y2d2{bottom:1041.119584px;}
.y10f{bottom:1041.300000px;}
.y4{bottom:1042.019583px;}
.y2fe{bottom:1043.819582px;}
.y322{bottom:1050.839580px;}
.y39{bottom:1052.279579px;}
.y2d1{bottom:1053.899578px;}
.y2fd{bottom:1060.199576px;}
.y1{bottom:1086.659565px;}
.ha{height:0.000000px;}
.h2b{height:3.725106px;}
.h31{height:3.960000px;}
.h16{height:7.914364px;}
.h3e{height:10.980000px;}
.h25{height:11.640955px;}
.h13{height:15.366061px;}
.h3f{height:18.900000px;}
.h30{height:19.260000px;}
.h32{height:19.440000px;}
.h2c{height:19.555319px;}
.h46{height:19.620000px;}
.h19{height:19.669013px;}
.h39{height:20.880000px;}
.h35{height:21.060000px;}
.h4c{height:21.240000px;}
.h51{height:21.780000px;}
.h26{height:22.500000px;}
.h58{height:22.860000px;}
.h9{height:23.281911px;}
.h54{height:23.400000px;}
.h20{height:23.940000px;}
.h28{height:24.300000px;}
.h5b{height:25.143473px;}
.h22{height:26.100000px;}
.h41{height:26.101783px;}
.h3d{height:26.489625px;}
.h3b{height:26.683546px;}
.h4b{height:26.792765px;}
.h15{height:26.810744px;}
.h1c{height:27.000000px;}
.h12{height:27.007016px;}
.h18{height:27.164034px;}
.h48{height:27.190875px;}
.h45{height:27.389930px;}
.h4f{height:27.900000px;}
.h1e{height:28.980000px;}
.h43{height:30.780000px;}
.h8{height:31.196274px;}
.h7{height:33.059322px;}
.h11{height:34.922866px;}
.h1b{height:35.125906px;}
.h5c{height:36.998291px;}
.he{height:38.367100px;}
.h1{height:38.647972px;}
.h17{height:38.872669px;}
.hc{height:40.796994px;}
.hd{height:42.837064px;}
.h10{height:43.086117px;}
.h42{height:45.149264px;}
.h38{height:45.777980px;}
.h40{height:45.820129px;}
.h34{height:45.870450px;}
.h3c{height:46.155562px;}
.h4d{height:46.345723px;}
.h2{height:46.563821px;}
.h37{height:46.798292px;}
.h14{height:46.834541px;}
.h33{height:46.892823px;}
.h49{height:47.034366px;}
.h47{height:47.378688px;}
.h4a{height:48.971232px;}
.hb{height:50.069644px;}
.h57{height:50.134980px;}
.h6{height:50.288927px;}
.h56{height:51.252402px;}
.h55{height:51.459848px;}
.h53{height:52.224481px;}
.h52{height:52.606798px;}
.h2a{height:53.494595px;}
.h2f{height:53.515189px;}
.h1a{height:54.478020px;}
.h5{height:54.581049px;}
.h27{height:54.686897px;}
.h2d{height:54.707949px;}
.hf{height:54.794752px;}
.h24{height:57.338769px;}
.h21{height:58.616751px;}
.h4{height:59.994925px;}
.h5a{height:62.689897px;}
.h3a{height:63.005569px;}
.h36{height:63.132839px;}
.h1d{height:65.468815px;}
.h59{height:69.002236px;}
.h50{height:69.818203px;}
.h29{height:73.626172px;}
.h2e{height:73.654515px;}
.h3{height:75.330374px;}
.h23{height:78.917021px;}
.h1f{height:88.142106px;}
.h44{height:93.208984px;}
.h4e{height:95.681567px;}
.h0{height:1188.000000px;}
.w25{width:3.600000px;}
.w24{width:4.140000px;}
.w11{width:6.480000px;}
.w10{width:7.380000px;}
.w13{width:7.740000px;}
.w12{width:8.460000px;}
.w1e{width:9.180000px;}
.w1f{width:30.780000px;}
.w26{width:44.100000px;}
.w27{width:60.660000px;}
.w21{width:79.740000px;}
.wa{width:102.060000px;}
.w2{width:113.040000px;}
.w1{width:116.460000px;}
.w17{width:124.200000px;}
.w3{width:128.160000px;}
.w1d{width:154.980000px;}
.w20{width:161.280000px;}
.wd{width:163.440000px;}
.w8{width:163.620000px;}
.wc{width:169.380000px;}
.w7{width:169.560000px;}
.wf{width:173.700000px;}
.wb{width:173.880000px;}
.w14{width:179.460000px;}
.we{width:181.800000px;}
.w9{width:181.980000px;}
.w15{width:184.860000px;}
.w22{width:187.020000px;}
.w18{width:188.640000px;}
.w16{width:195.840000px;}
.w19{width:210.240000px;}
.w23{width:212.040000px;}
.w1a{width:215.640000px;}
.w2b{width:219.060000px;}
.w1b{width:219.420000px;}
.w1c{width:226.620000px;}
.w28{width:257.400000px;}
.w5{width:258.120000px;}
.w4{width:261.540000px;}
.w2a{width:267.300000px;}
.w6{width:273.060000px;}
.w29{width:274.860000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x94{left:2.879847px;}
.x86{left:153.719881px;}
.x2{left:158.760040px;}
.x7e{left:162.719935px;}
.x5c{left:166.679933px;}
.x23{left:170.999932px;}
.x25{left:173.699931px;}
.x26{left:177.659929px;}
.x85{left:179.099928px;}
.x5d{left:182.339927px;}
.x17{left:184.319926px;}
.x27{left:185.399926px;}
.xb9{left:190.620454px;}
.x68{left:191.879923px;}
.x2c{left:192.959923px;}
.x4{left:195.659478px;}
.x87{left:204.479826px;}
.x1{left:208.979916px;}
.x3b{left:219.779912px;}
.x38{left:221.939911px;}
.x8d{left:223.019911px;}
.x20{left:226.619909px;}
.x2d{left:228.779908px;}
.xba{left:230.939908px;}
.x5e{left:234.539906px;}
.x10{left:236.159906px;}
.x3c{left:237.959905px;}
.x3d{left:240.659904px;}
.x24{left:242.639903px;}
.xb8{left:251.279899px;}
.x5f{left:252.719899px;}
.xa8{left:255.059898px;}
.x39{left:260.279896px;}
.x45{left:264.239894px;}
.x46{left:266.939893px;}
.xa9{left:269.279892px;}
.x69{left:271.259891px;}
.x3e{left:280.619888px;}
.x5{left:282.959887px;}
.x3a{left:285.659886px;}
.x2e{left:288.179885px;}
.x9b{left:289.799884px;}
.x21{left:293.219883px;}
.x47{left:295.379882px;}
.x22{left:298.979880px;}
.x57{left:300.599880px;}
.x28{left:303.299879px;}
.x6{left:306.359877px;}
.x9c{left:309.420000px;}
.xb7{left:311.759875px;}
.x7{left:318.959872px;}
.x8{left:324.539870px;}
.x4d{left:330.659868px;}
.x97{left:331.739867px;}
.x4e{left:333.359867px;}
.x58{left:334.619866px;}
.xa2{left:337.680000px;}
.x75{left:339.300896px;}
.x18{left:340.559864px;}
.xa1{left:345.239862px;}
.x19{left:346.679861px;}
.x2f{left:349.199860px;}
.x59{left:350.459860px;}
.x8f{left:351.900000px;}
.x9a{left:354.059881px;}
.xa0{left:355.140000px;}
.x8e{left:359.100000px;}
.x30{left:363.419855px;}
.x4f{left:364.679854px;}
.x50{left:367.559853px;}
.xa3{left:370.440000px;}
.x83{left:371.700000px;}
.x80{left:374.400000px;}
.x70{left:375.839850px;}
.x8b{left:378.000000px;}
.x84{left:379.800000px;}
.x71{left:381.419748px;}
.x11{left:382.859847px;}
.x7a{left:384.479846px;}
.x53{left:385.739846px;}
.x7f{left:386.820000px;}
.x12{left:388.439845px;}
.x54{left:390.779844px;}
.x60{left:392.759843px;}
.x99{left:393.839842px;}
.x93{left:398.339841px;}
.x6a{left:399.599840px;}
.x9{left:401.219840px;}
.x76{left:402.660000px;}
.xaa{left:403.919838px;}
.xa{left:406.799837px;}
.x61{left:408.959836px;}
.x5a{left:412.559835px;}
.x55{left:413.999834px;}
.x73{left:417.780000px;}
.x34{left:422.099831px;}
.x90{left:423.540000px;}
.x1e{left:429.660545px;}
.x2a{left:431.639827px;}
.x72{left:432.900000px;}
.x35{left:435.779826px;}
.x2b{left:437.219825px;}
.x8a{left:438.840000px;}
.x36{left:440.819824px;}
.x13{left:443.699823px;}
.x7d{left:445.320000px;}
.x14{left:449.279820px;}
.x5b{left:452.159819px;}
.x81{left:454.139818px;}
.x7b{left:455.580000px;}
.x56{left:456.839817px;}
.x62{left:458.999816px;}
.x51{left:461.519815px;}
.x3{left:463.679815px;}
.x52{left:466.019814px;}
.x96{left:471.059816px;}
.x98{left:472.859811px;}
.x95{left:474.479810px;}
.x31{left:475.739810px;}
.x63{left:478.259809px;}
.x92{left:480.959814px;}
.x91{left:482.759807px;}
.x32{left:490.139804px;}
.x1f{left:491.759803px;}
.x88{left:493.199803px;}
.x3f{left:495.539802px;}
.x37{left:500.399800px;}
.x79{left:501.839220px;}
.x1a{left:507.419797px;}
.x40{left:511.379795px;}
.x1b{left:513.539795px;}
.x6b{left:515.879794px;}
.x7c{left:517.139793px;}
.x77{left:518.219793px;}
.xbb{left:519.659792px;}
.x48{left:521.279791px;}
.x49{left:523.979790px;}
.x6c{left:530.099788px;}
.x6e{left:533.159787px;}
.x41{left:536.759785px;}
.x89{left:541.440000px;}
.x74{left:545.939782px;}
.x15{left:549.179780px;}
.x42{left:552.779779px;}
.x16{left:554.759778px;}
.x82{left:556.199778px;}
.x4a{left:558.359777px;}
.x8c{left:562.859775px;}
.x9d{left:567.180000px;}
.xb{left:572.039771px;}
.xc{left:577.619769px;}
.x64{left:581.579767px;}
.x33{left:586.619765px;}
.xa4{left:589.499764px;}
.xb4{left:592.379763px;}
.xae{left:594.719762px;}
.x65{left:597.779761px;}
.xb5{left:599.579760px;}
.x9e{left:609.660000px;}
.xa5{left:615.599754px;}
.x9f{left:616.679753px;}
.x6d{left:618.839752px;}
.xb1{left:621.539751px;}
.xb2{left:629.459748px;}
.xab{left:639.539744px;}
.x4b{left:640.979744px;}
.x4c{left:645.479742px;}
.xac{left:647.279741px;}
.x1c{left:653.399739px;}
.x1d{left:659.519736px;}
.x78{left:664.199734px;}
.x6f{left:671.399731px;}
.xd{left:682.019727px;}
.x43{left:693.359723px;}
.xe{left:701.279719px;}
.x44{left:709.199716px;}
.xb3{left:710.279716px;}
.xf{left:731.699707px;}
.x66{left:736.019706px;}
.xad{left:743.939702px;}
.x67{left:745.919702px;}
.x29{left:754.559646px;}
.xa6{left:755.819698px;}
.xb0{left:762.299695px;}
.xa7{left:763.559695px;}
.xb6{left:766.619693px;}
.xaf{left:768.059693px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.131057pt;}
.ls8{letter-spacing:0.204956pt;}
.ls2{letter-spacing:0.208231pt;}
.lsa{letter-spacing:0.254244pt;}
.ls14{letter-spacing:0.270434pt;}
.ls6{letter-spacing:0.270507pt;}
.ls1{letter-spacing:0.406003pt;}
.ls18{letter-spacing:0.495132pt;}
.ls0{letter-spacing:1.048798pt;}
.ls11{letter-spacing:10.262707pt;}
.ls5{letter-spacing:12.453595pt;}
.lsb{letter-spacing:23.111253pt;}
.lsc{letter-spacing:26.256669pt;}
.ls7{letter-spacing:28.857953pt;}
.ls9{letter-spacing:32.064032pt;}
.ls19{letter-spacing:56.105843pt;}
.ls1a{letter-spacing:56.747071pt;}
.ls12{letter-spacing:81.517175pt;}
.ls13{letter-spacing:81.580185pt;}
.ls15{letter-spacing:84.542867pt;}
.ls17{letter-spacing:85.476293pt;}
.ls16{letter-spacing:88.720954pt;}
.ls10{letter-spacing:88.794394pt;}
.lse{letter-spacing:88.813216pt;}
.lsf{letter-spacing:92.257818pt;}
.lsd{letter-spacing:92.275306pt;}
.wse{word-spacing:-109.939032pt;}
.ws18{word-spacing:-109.928344pt;}
.ws14{word-spacing:-106.476942pt;}
.ws1e{word-spacing:-106.464921pt;}
.ws40{word-spacing:-105.275347pt;}
.ws41{word-spacing:-102.030686pt;}
.ws32{word-spacing:-99.658595pt;}
.ws2e{word-spacing:-96.695912pt;}
.ws26{word-spacing:-96.663435pt;}
.ws10{word-spacing:-88.137048pt;}
.ws1a{word-spacing:-88.127155pt;}
.ws31{word-spacing:-80.422925pt;}
.ws45{word-spacing:-71.655199pt;}
.ws44{word-spacing:-71.013970pt;}
.ws9{word-spacing:-44.257511pt;}
.ws8{word-spacing:-43.003100pt;}
.ws1{word-spacing:-25.116257pt;}
.ws0{word-spacing:-18.198126pt;}
.ws4{word-spacing:-17.596260pt;}
.ws2{word-spacing:-16.243194pt;}
.ws5{word-spacing:-13.836261pt;}
.ws3{word-spacing:-13.235035pt;}
.ws48{word-spacing:-11.881275pt;}
.ws7{word-spacing:-8.723197pt;}
.ws6{word-spacing:0.000000pt;}
.ws34{word-spacing:17.436898pt;}
.ws2f{word-spacing:18.078410pt;}
.ws27{word-spacing:18.114928pt;}
.ws36{word-spacing:28.787773pt;}
.ws43{word-spacing:41.197715pt;}
.ws21{word-spacing:50.103224pt;}
.ws29{word-spacing:50.190866pt;}
.ws3d{word-spacing:50.658172pt;}
.ws37{word-spacing:52.158182pt;}
.ws1c{word-spacing:52.786527pt;}
.ws12{word-spacing:52.810373pt;}
.ws1b{word-spacing:53.427896pt;}
.ws11{word-spacing:53.451849pt;}
.ws35{word-spacing:55.003834pt;}
.ws24{word-spacing:66.370914pt;}
.ws2c{word-spacing:66.464458pt;}
.ws22{word-spacing:69.339581pt;}
.ws2a{word-spacing:69.427140pt;}
.ws20{word-spacing:71.123868pt;}
.ws16{word-spacing:71.149489pt;}
.ws3f{word-spacing:71.769538pt;}
.ws19{word-spacing:74.587291pt;}
.wsf{word-spacing:74.611580pt;}
.ws3a{word-spacing:74.895667pt;}
.ws23{word-spacing:88.576544pt;}
.ws2b{word-spacing:88.662810pt;}
.ws3e{word-spacing:89.152211pt;}
.wsd{word-spacing:93.497504pt;}
.ws3c{word-spacing:103.277583pt;}
.wsc{word-spacing:168.339281pt;}
.wsb{word-spacing:180.522326pt;}
.ws1f{word-spacing:198.722738pt;}
.ws15{word-spacing:198.752955pt;}
.ws3b{word-spacing:220.126523pt;}
.ws38{word-spacing:235.878605pt;}
.ws28{word-spacing:295.927640pt;}
.ws30{word-spacing:296.012497pt;}
.wsa{word-spacing:301.514346pt;}
.ws39{word-spacing:371.816524pt;}
.ws17{word-spacing:537.086087pt;}
.ws1d{word-spacing:537.680894pt;}
.ws13{word-spacing:537.726927pt;}
.ws25{word-spacing:600.852158pt;}
.ws2d{word-spacing:600.946900pt;}
.ws46{word-spacing:686.533613pt;}
.ws47{word-spacing:686.563693pt;}
.ws33{word-spacing:715.082734pt;}
.ws42{word-spacing:878.713822pt;}
._19{margin-left:-91.633759pt;}
._1d{margin-left:-88.813216pt;}
._3a{margin-left:-86.117941pt;}
._2a{margin-left:-84.542867pt;}
._27{margin-left:-81.517175pt;}
._3f{margin-left:-57.507951pt;}
._3d{margin-left:-55.737357pt;}
._16{margin-left:-26.256669pt;}
._15{margin-left:-23.752492pt;}
._39{margin-left:-21.801474pt;}
._38{margin-left:-20.519502pt;}
._29{margin-left:-19.236275pt;}
._37{margin-left:-9.617121pt;}
._3e{margin-left:-5.770876pt;}
._31{margin-left:-4.532354pt;}
._12{margin-left:-1.803915pt;}
._1{margin-left:-0.914092pt;}
._0{width:0.957845pt;}
._4{width:2.600860pt;}
._3{width:3.922725pt;}
._2{width:4.915438pt;}
._6{width:5.913792pt;}
._b{width:7.268787pt;}
._10{width:8.525938pt;}
._d{width:9.803419pt;}
._c{width:10.911543pt;}
._11{width:12.262785pt;}
._7{width:13.681054pt;}
._8{width:14.587581pt;}
._9{width:15.577478pt;}
._a{width:16.596171pt;}
._2c{width:17.680204pt;}
._13{width:18.653939pt;}
._14{width:19.560200pt;}
._5{width:22.985418pt;}
._40{width:41.834073pt;}
._e{width:48.536864pt;}
._f{width:49.915519pt;}
._3b{width:50.976195pt;}
._3c{width:57.388300pt;}
._24{width:64.608495pt;}
._23{width:65.891080pt;}
._1b{width:71.115575pt;}
._2d{width:78.321338pt;}
._21{width:84.485842pt;}
._25{width:85.768427pt;}
._1c{width:92.275306pt;}
._30{width:94.342966pt;}
._28{width:103.307332pt;}
._22{width:104.363794pt;}
._1a{width:114.077290pt;}
._33{width:116.994754pt;}
._34{width:131.101238pt;}
._1f{width:143.431288pt;}
._20{width:166.985961pt;}
._35{width:177.351162pt;}
._26{width:196.295537pt;}
._1e{width:217.057521pt;}
._2f{width:243.151835pt;}
._36{width:256.219539pt;}
._32{width:265.754653pt;}
._2e{width:301.181145pt;}
._18{width:327.457860pt;}
._17{width:349.259656pt;}
._2b{width:1096.109962pt;}
.fs15{font-size:4.812798pt;}
.fsf{font-size:10.225276pt;}
.fs13{font-size:15.039994pt;}
.fse{font-size:19.852792pt;}
.fs10{font-size:25.265270pt;}
.fs8{font-size:30.079988pt;}
.fs23{font-size:32.485107pt;}
.fs19{font-size:34.474866pt;}
.fsd{font-size:34.892786pt;}
.fs1c{font-size:35.387506pt;}
.fs7{font-size:40.305264pt;}
.fs6{font-size:42.712303pt;}
.fsc{font-size:45.119982pt;}
.fs24{font-size:47.525101pt;}
.fs0{font-size:49.932780pt;}
.fs9{font-size:52.940139pt;}
.fsa{font-size:55.345045pt;}
.fs1a{font-size:59.632509pt;}
.fs1{font-size:60.159976pt;}
.fs18{font-size:60.462909pt;}
.fs17{font-size:60.585042pt;}
.fs1d{font-size:61.212776pt;}
.fs1e{font-size:64.680511pt;}
.fs5{font-size:64.972774pt;}
.fs22{font-size:66.217574pt;}
.fs21{font-size:67.967439pt;}
.fsb{font-size:70.385039pt;}
.fs14{font-size:70.654905pt;}
.fs16{font-size:70.682105pt;}
.fs3{font-size:72.792504pt;}
.fs12{font-size:75.732236pt;}
.fs4{font-size:80.012768pt;}
.fs11{font-size:84.585033pt;}
.fs1b{font-size:89.447431pt;}
.fs1f{font-size:91.820230pt;}
.fs20{font-size:92.214896pt;}
.fs2{font-size:100.465026pt;}
.y177{bottom:-9.920080pt;}
.y0{bottom:0.000000pt;}
.y25e{bottom:2.079918pt;}
.y260{bottom:2.079922pt;}
.y188{bottom:3.359643pt;}
.y18a{bottom:3.359648pt;}
.y18c{bottom:3.359654pt;}
.y18d{bottom:3.359660pt;}
.y190{bottom:3.359666pt;}
.y192{bottom:3.359669pt;}
.y194{bottom:3.359672pt;}
.y196{bottom:3.359677pt;}
.y198{bottom:3.359678pt;}
.y224{bottom:3.359680pt;}
.y19a{bottom:3.359683pt;}
.y227{bottom:3.359686pt;}
.y19c{bottom:3.359688pt;}
.y19e{bottom:3.359689pt;}
.y22a{bottom:3.359692pt;}
.y22c{bottom:3.359697pt;}
.y22f{bottom:3.359703pt;}
.y232{bottom:3.359709pt;}
.y233{bottom:3.359715pt;}
.y235{bottom:3.359716pt;}
.y237{bottom:3.359721pt;}
.y23a{bottom:3.359726pt;}
.y23c{bottom:3.359732pt;}
.y23e{bottom:3.359734pt;}
.y240{bottom:3.359735pt;}
.y2b3{bottom:3.359738pt;}
.y2b5{bottom:3.359744pt;}
.y2b7{bottom:3.359749pt;}
.y2b9{bottom:3.359755pt;}
.y2bb{bottom:3.359761pt;}
.y2bd{bottom:3.359767pt;}
.y1b9{bottom:3.359768pt;}
.y2be{bottom:3.359772pt;}
.y1bb{bottom:3.359774pt;}
.y2c0{bottom:3.359776pt;}
.y1be{bottom:3.359780pt;}
.y1c0{bottom:3.359786pt;}
.y1c3{bottom:3.359792pt;}
.y1c5{bottom:3.359795pt;}
.y1c7{bottom:3.359797pt;}
.y1c9{bottom:3.359803pt;}
.y1cb{bottom:3.359804pt;}
.y1cd{bottom:3.359809pt;}
.y1cf{bottom:3.359813pt;}
.y1d1{bottom:3.359815pt;}
.y1d3{bottom:3.359821pt;}
.y1d5{bottom:3.359822pt;}
.y1d7{bottom:3.359824pt;}
.y1ee{bottom:3.359881pt;}
.y1f1{bottom:3.359887pt;}
.y1f3{bottom:3.359890pt;}
.y1f5{bottom:3.359893pt;}
.y1f7{bottom:3.359899pt;}
.y1fa{bottom:3.359905pt;}
.y1fc{bottom:3.359910pt;}
.y1fe{bottom:3.359916pt;}
.y200{bottom:3.359917pt;}
.y202{bottom:3.359922pt;}
.y205{bottom:3.359928pt;}
.y207{bottom:3.359934pt;}
.y209{bottom:3.359935pt;}
.y20b{bottom:3.359937pt;}
.y271{bottom:3.359949pt;}
.y262{bottom:3.519921pt;}
.y17b{bottom:3.679642pt;}
.y17d{bottom:3.679651pt;}
.y17f{bottom:3.679660pt;}
.y181{bottom:3.679669pt;}
.y183{bottom:3.679678pt;}
.y216{bottom:3.679680pt;}
.y185{bottom:3.679688pt;}
.y218{bottom:3.679689pt;}
.y21a{bottom:3.679698pt;}
.y21c{bottom:3.679707pt;}
.y21e{bottom:3.679716pt;}
.y2a2{bottom:3.679720pt;}
.y220{bottom:3.679725pt;}
.y2a4{bottom:3.679729pt;}
.y222{bottom:3.679734pt;}
.y2a6{bottom:3.679738pt;}
.y2a8{bottom:3.679748pt;}
.y2aa{bottom:3.679757pt;}
.y2ac{bottom:3.679766pt;}
.y1aa{bottom:3.679768pt;}
.y2ae{bottom:3.679775pt;}
.y1ac{bottom:3.679777pt;}
.y285{bottom:3.679783pt;}
.y1ae{bottom:3.679786pt;}
.y287{bottom:3.679789pt;}
.y1b0{bottom:3.679795pt;}
.y28b{bottom:3.679802pt;}
.y1b2{bottom:3.679804pt;}
.y28e{bottom:3.679808pt;}
.y1b4{bottom:3.679813pt;}
.y291{bottom:3.679814pt;}
.y293{bottom:3.679821pt;}
.y1b6{bottom:3.679822pt;}
.y296{bottom:3.679823pt;}
.y1e0{bottom:3.679881pt;}
.y174{bottom:3.679887pt;}
.y1e2{bottom:3.679890pt;}
.y1e4{bottom:3.679899pt;}
.y1e6{bottom:3.679908pt;}
.y1e8{bottom:3.679917pt;}
.y1ea{bottom:3.679926pt;}
.y1ec{bottom:3.679935pt;}
.y26c{bottom:3.679949pt;}
.y11a{bottom:3.839629pt;}
.y11c{bottom:3.839635pt;}
.y11f{bottom:3.839642pt;}
.y121{bottom:3.839649pt;}
.y124{bottom:3.839656pt;}
.y126{bottom:3.839660pt;}
.y128{bottom:3.839662pt;}
.y12a{bottom:3.839669pt;}
.y12c{bottom:3.839670pt;}
.y12e{bottom:3.839672pt;}
.y146{bottom:3.839741pt;}
.y148{bottom:3.839747pt;}
.y14b{bottom:3.839754pt;}
.y14d{bottom:3.839761pt;}
.y150{bottom:3.839768pt;}
.y152{bottom:3.839772pt;}
.y154{bottom:3.839774pt;}
.y156{bottom:3.839781pt;}
.y158{bottom:3.839782pt;}
.y15a{bottom:3.839788pt;}
.y15d{bottom:3.839795pt;}
.yee{bottom:3.839813pt;}
.yf0{bottom:3.839820pt;}
.yf3{bottom:3.839827pt;}
.yf5{bottom:3.839834pt;}
.yf8{bottom:3.839840pt;}
.yfa{bottom:3.839845pt;}
.yfc{bottom:3.839847pt;}
.yfe{bottom:3.839854pt;}
.y100{bottom:3.839855pt;}
.y102{bottom:3.839857pt;}
.y279{bottom:3.839952pt;}
.y27b{bottom:3.999782pt;}
.y27d{bottom:3.999792pt;}
.y27f{bottom:3.999802pt;}
.y281{bottom:3.999812pt;}
.y283{bottom:3.999822pt;}
.yd4{bottom:4.159759pt;}
.yd6{bottom:4.159766pt;}
.yd8{bottom:4.159774pt;}
.ydb{bottom:4.159781pt;}
.ydd{bottom:4.159788pt;}
.ydf{bottom:4.159794pt;}
.y276{bottom:4.159952pt;}
.y110{bottom:4.319628pt;}
.y112{bottom:4.319639pt;}
.y114{bottom:4.319649pt;}
.y116{bottom:4.319660pt;}
.y118{bottom:4.319670pt;}
.y13a{bottom:4.319740pt;}
.y13c{bottom:4.319751pt;}
.y13e{bottom:4.319761pt;}
.y140{bottom:4.319772pt;}
.y142{bottom:4.319782pt;}
.y144{bottom:4.319793pt;}
.ye4{bottom:4.319813pt;}
.ye6{bottom:4.319823pt;}
.ye8{bottom:4.319834pt;}
.yea{bottom:4.319845pt;}
.yec{bottom:4.319855pt;}
.ycc{bottom:4.479759pt;}
.yce{bottom:4.479770pt;}
.yd0{bottom:4.479781pt;}
.yd2{bottom:4.479793pt;}
.ybb{bottom:4.639677pt;}
.ybd{bottom:4.639685pt;}
.ybf{bottom:4.639693pt;}
.yc1{bottom:4.639701pt;}
.yc3{bottom:4.639709pt;}
.yc5{bottom:4.639716pt;}
.y264{bottom:4.959922pt;}
.y274{bottom:4.959952pt;}
.yb3{bottom:5.119676pt;}
.yb5{bottom:5.119689pt;}
.yb7{bottom:5.119702pt;}
.yb9{bottom:5.119714pt;}
.y3{bottom:81.119968pt;}
.y2{bottom:97.759961pt;}
.y268{bottom:110.559956pt;}
.y71{bottom:112.799955pt;}
.y26a{bottom:113.919954pt;}
.y273{bottom:114.080000pt;}
.y275{bottom:116.320000pt;}
.y278{bottom:116.640000pt;}
.y20e{bottom:118.239953pt;}
.y277{bottom:120.479952pt;}
.y70{bottom:120.799952pt;}
.yab{bottom:122.239951pt;}
.y2fc{bottom:123.999950pt;}
.y2d0{bottom:124.159950pt;}
.y171{bottom:124.319950pt;}
.y26e{bottom:124.479950pt;}
.y26b{bottom:124.800000pt;}
.y272{bottom:124.959950pt;}
.y270{bottom:125.120000pt;}
.y26f{bottom:128.479949pt;}
.y2ea{bottom:130.399948pt;}
.y321{bottom:133.119947pt;}
.y20d{bottom:134.079946pt;}
.y6f{bottom:134.719946pt;}
.y26d{bottom:135.199946pt;}
.y6e{bottom:136.639945pt;}
.yaa{bottom:137.919945pt;}
.y2fb{bottom:138.399945pt;}
.y2cf{bottom:138.559945pt;}
.y170{bottom:139.999944pt;}
.y38{bottom:142.719943pt;}
.y269{bottom:143.999942pt;}
.y2e9{bottom:146.239942pt;}
.y2fa{bottom:152.799939pt;}
.ya9{bottom:153.919938pt;}
.y20c{bottom:154.239938pt;}
.y16f{bottom:154.559938pt;}
.y20a{bottom:154.720000pt;}
.y320{bottom:155.039938pt;}
.y266{bottom:157.119937pt;}
.y1eb{bottom:157.920000pt;}
.y6d{bottom:158.079937pt;}
.y208{bottom:158.240000pt;}
.y37{bottom:158.559937pt;}
.y6c{bottom:159.999936pt;}
.y2e8{bottom:162.239935pt;}
.y206{bottom:162.720000pt;}
.y267{bottom:163.359935pt;}
.y2f9{bottom:167.359933pt;}
.ya8{bottom:169.759932pt;}
.y16e{bottom:170.239932pt;}
.y6b{bottom:173.599931pt;}
.y36{bottom:174.399930pt;}
.y31f{bottom:176.959929pt;}
.y204{bottom:177.120000pt;}
.y2e7{bottom:177.919929pt;}
.y265{bottom:180.479928pt;}
.y1e9{bottom:180.480000pt;}
.y2f8{bottom:181.599927pt;}
.y6a{bottom:181.759927pt;}
.y25b{bottom:183.679927pt;}
.y203{bottom:184.159926pt;}
.ya7{bottom:185.439926pt;}
.y2ce{bottom:186.239926pt;}
.y263{bottom:189.440000pt;}
.y35{bottom:190.239924pt;}
.y201{bottom:191.680000pt;}
.y25f{bottom:192.000000pt;}
.y16d{bottom:193.599923pt;}
.y2e6{bottom:193.919922pt;}
.y261{bottom:194.400000pt;}
.y69{bottom:195.519922pt;}
.y2f7{bottom:195.999922pt;}
.y68{bottom:197.439921pt;}
.y10e{bottom:197.759921pt;}
.y25c{bottom:197.919921pt;}
.y31e{bottom:198.879920pt;}
.ya6{bottom:201.439919pt;}
.y2cd{bottom:202.079919pt;}
.y25d{bottom:202.400000pt;}
.y1e7{bottom:203.200000pt;}
.y1ff{bottom:203.520000pt;}
.y34{bottom:206.079918pt;}
.y1fd{bottom:206.080000pt;}
.y2f6{bottom:207.199917pt;}
.y2e5{bottom:209.759916pt;}
.y176{bottom:211.040000pt;}
.y25a{bottom:212.959915pt;}
.y67{bottom:213.279915pt;}
.y10d{bottom:213.759914pt;}
.y16c{bottom:215.679914pt;}
.ya5{bottom:217.279913pt;}
.y2cb{bottom:217.759913pt;}
.y175{bottom:218.399913pt;}
.y1fb{bottom:220.640000pt;}
.y31d{bottom:220.799912pt;}
.y33{bottom:222.079911pt;}
.y2cc{bottom:224.159910pt;}
.y2e4{bottom:225.439910pt;}
.y259{bottom:225.599910pt;}
.y1e5{bottom:225.920000pt;}
.y66{bottom:229.279908pt;}
.y10c{bottom:229.599908pt;}
.y16b{bottom:231.519907pt;}
.ya4{bottom:233.119907pt;}
.y2ca{bottom:233.759906pt;}
.y1f9{bottom:235.040000pt;}
.y32{bottom:237.759905pt;}
.y258{bottom:240.159904pt;}
.y2e3{bottom:241.439903pt;}
.y31c{bottom:242.719903pt;}
.y65{bottom:244.959902pt;}
.y10b{bottom:245.439902pt;}
.y16a{bottom:247.359901pt;}
.ya3{bottom:248.319901pt;}
.y1e3{bottom:248.640000pt;}
.y1f8{bottom:248.960000pt;}
.y2c9{bottom:249.119900pt;}
.y1f6{bottom:249.600000pt;}
.y31{bottom:253.599899pt;}
.y257{bottom:255.999898pt;}
.y2e2{bottom:257.279897pt;}
.y31b{bottom:257.599897pt;}
.y64{bottom:260.959896pt;}
.y10a{bottom:261.279895pt;}
.y169{bottom:263.199895pt;}
.ya2{bottom:263.999894pt;}
.y1f4{bottom:264.160000pt;}
.y2c8{bottom:264.639894pt;}
.y30{bottom:269.599892pt;}
.y256{bottom:270.399892pt;}
.y1e1{bottom:271.200000pt;}
.y1f2{bottom:271.520000pt;}
.y31a{bottom:272.159891pt;}
.y2e1{bottom:273.119891pt;}
.y109{bottom:274.879890pt;}
.y63{bottom:276.799889pt;}
.y1f0{bottom:278.560000pt;}
.y168{bottom:279.039888pt;}
.y173{bottom:279.840000pt;}
.y108{bottom:282.879887pt;}
.ya1{bottom:283.199887pt;}
.y172{bottom:283.519887pt;}
.y2c7{bottom:284.159886pt;}
.y2f{bottom:285.279886pt;}
.y255{bottom:286.399885pt;}
.y2e0{bottom:288.959884pt;}
.y62{bottom:292.319883pt;}
.y1ef{bottom:293.120000pt;}
.y1df{bottom:293.920000pt;}
.y1ed{bottom:294.240000pt;}
.y167{bottom:295.039882pt;}
.y2c6{bottom:298.559881pt;}
.y107{bottom:298.719881pt;}
.ya0{bottom:299.999880pt;}
.y319{bottom:300.799880pt;}
.y2e{bottom:301.279879pt;}
.y254{bottom:302.239879pt;}
.y2df{bottom:304.799878pt;}
.y61{bottom:309.119876pt;}
.y166{bottom:310.719876pt;}
.y106{bottom:312.319875pt;}
.y2c4{bottom:314.399874pt;}
.y318{bottom:315.199874pt;}
.y2d{bottom:317.119873pt;}
.y9f{bottom:317.279873pt;}
.y253{bottom:317.919873pt;}
.y105{bottom:320.319872pt;}
.y2c5{bottom:320.639872pt;}
.y1de{bottom:323.839870pt;}
.y60{bottom:328.639869pt;}
.y317{bottom:329.759868pt;}
.y2c{bottom:332.799867pt;}
.y104{bottom:333.119867pt;}
.y252{bottom:333.919866pt;}
.y165{bottom:334.239866pt;}
.y9e{bottom:334.559866pt;}
.y2c3{bottom:334.879866pt;}
.y2de{bottom:336.479865pt;}
.y103{bottom:337.759865pt;}
.y1dd{bottom:339.679864pt;}
.y2c2{bottom:343.359863pt;}
.y316{bottom:344.159862pt;}
.y5f{bottom:344.479862pt;}
.y2b{bottom:348.799860pt;}
.y251{bottom:349.759860pt;}
.y9d{bottom:351.839859pt;}
.y2dd{bottom:352.479859pt;}
.ye2{bottom:353.439859pt;}
.y101{bottom:354.080000pt;}
.y164{bottom:357.599857pt;}
.yeb{bottom:357.600000pt;}
.yff{bottom:358.080000pt;}
.y315{bottom:358.399857pt;}
.y5e{bottom:360.319856pt;}
.yfd{bottom:361.120000pt;}
.y1dc{bottom:363.039855pt;}
.y250{bottom:364.319854pt;}
.y2a{bottom:364.639854pt;}
.y9c{bottom:367.999853pt;}
.y314{bottom:372.799851pt;}
.y5d{bottom:376.159850pt;}
.yfb{bottom:378.080000pt;}
.y1db{bottom:378.879848pt;}
.y29{bottom:380.479848pt;}
.y163{bottom:380.799848pt;}
.y24f{bottom:381.279847pt;}
.y2dc{bottom:382.559847pt;}
.y9b{bottom:383.039847pt;}
.ye9{bottom:384.160000pt;}
.yf9{bottom:384.640000pt;}
.y313{bottom:387.359845pt;}
.y5c{bottom:392.159843pt;}
.y1da{bottom:393.279843pt;}
.y2db{bottom:393.759842pt;}
.yf7{bottom:395.040000pt;}
.y24e{bottom:395.839842pt;}
.y28{bottom:396.319841pt;}
.y312{bottom:401.759839pt;}
.y162{bottom:404.319838pt;}
.y9a{bottom:406.079838pt;}
.y5b{bottom:407.999837pt;}
.ye7{bottom:410.720000pt;}
.yf6{bottom:411.200000pt;}
.y24d{bottom:411.679835pt;}
.yf4{bottom:412.000000pt;}
.y27{bottom:412.799835pt;}
.y99{bottom:412.959835pt;}
.y98{bottom:415.039834pt;}
.y311{bottom:416.159834pt;}
.y1d9{bottom:416.799833pt;}
.y5a{bottom:423.679831pt;}
.y161{bottom:427.679829pt;}
.yf2{bottom:428.960000pt;}
.y310{bottom:430.559828pt;}
.y97{bottom:430.879828pt;}
.y26{bottom:432.479827pt;}
.y24c{bottom:435.199826pt;}
.y1d8{bottom:436.799825pt;}
.ye5{bottom:437.120000pt;}
.y1d6{bottom:437.280000pt;}
.y295{bottom:438.080000pt;}
.y59{bottom:439.519824pt;}
.y1b5{bottom:440.480000pt;}
.y1d4{bottom:440.800000pt;}
.yf1{bottom:441.439823pt;}
.y282{bottom:441.600000pt;}
.y294{bottom:441.920000pt;}
.y2f5{bottom:443.359823pt;}
.y96{bottom:444.799822pt;}
.y292{bottom:444.800000pt;}
.y30f{bottom:444.959822pt;}
.y1d2{bottom:445.280000pt;}
.yef{bottom:445.760000pt;}
.y95{bottom:446.719821pt;}
.y25{bottom:447.999821pt;}
.y160{bottom:451.039820pt;}
.y58{bottom:454.079818pt;}
.y24b{bottom:458.399817pt;}
.y2f4{bottom:459.199816pt;}
.y30e{bottom:459.359816pt;}
.y1d0{bottom:459.680000pt;}
.y94{bottom:460.639816pt;}
.y290{bottom:460.640000pt;}
.y24{bottom:462.559815pt;}
.yed{bottom:462.720000pt;}
.y1b3{bottom:463.040000pt;}
.y1ce{bottom:463.360000pt;}
.ye3{bottom:463.680000pt;}
.y280{bottom:466.400000pt;}
.y15f{bottom:466.879813pt;}
.y57{bottom:468.159813pt;}
.y28f{bottom:470.399812pt;}
.y30d{bottom:473.759810pt;}
.y1cc{bottom:474.240000pt;}
.y2f3{bottom:475.039810pt;}
.y28d{bottom:476.480000pt;}
.y23{bottom:477.119809pt;}
.y93{bottom:478.399809pt;}
.y56{bottom:478.559809pt;}
.y24a{bottom:481.759807pt;}
.y1b1{bottom:485.760000pt;}
.y2f2{bottom:486.079806pt;}
.y1ca{bottom:486.080000pt;}
.ye1{bottom:486.879805pt;}
.y30c{bottom:488.159805pt;}
.y1c8{bottom:488.640000pt;}
.y15e{bottom:490.239804pt;}
.y27e{bottom:491.200000pt;}
.y28a{bottom:492.320000pt;}
.y22{bottom:493.119803pt;}
.ye0{bottom:493.279803pt;}
.y92{bottom:493.759802pt;}
.y55{bottom:494.239802pt;}
.y28c{bottom:495.199802pt;}
.y30b{bottom:502.719799pt;}
.y1c6{bottom:503.200000pt;}
.y249{bottom:505.279798pt;}
.y289{bottom:508.160000pt;}
.y1af{bottom:508.480000pt;}
.y54{bottom:508.799796pt;}
.y1c4{bottom:508.800000pt;}
.yca{bottom:509.279796pt;}
.y15c{bottom:509.440000pt;}
.yde{bottom:509.920000pt;}
.y21{bottom:511.679795pt;}
.y143{bottom:512.960000pt;}
.yd1{bottom:513.920000pt;}
.y27c{bottom:516.160000pt;}
.y30a{bottom:517.119793pt;}
.y15b{bottom:517.279793pt;}
.y1c2{bottom:517.600000pt;}
.y288{bottom:520.159792pt;}
.y286{bottom:524.160000pt;}
.y53{bottom:524.639790pt;}
.y248{bottom:525.439790pt;}
.ydc{bottom:525.440000pt;}
.y91{bottom:525.759790pt;}
.y159{bottom:526.080000pt;}
.y20{bottom:527.519789pt;}
.y1ad{bottom:531.200000pt;}
.y1c1{bottom:531.520000pt;}
.y1bf{bottom:532.160000pt;}
.y2c1{bottom:532.959787pt;}
.y309{bottom:539.039784pt;}
.y141{bottom:539.520000pt;}
.y157{bottom:540.000000pt;}
.y90{bottom:540.479784pt;}
.y52{bottom:540.639784pt;}
.y27a{bottom:540.960000pt;}
.y1f{bottom:541.759783pt;}
.ycf{bottom:542.400000pt;}
.y155{bottom:543.040000pt;}
.yda{bottom:543.520000pt;}
.y284{bottom:544.959782pt;}
.y247{bottom:546.399781pt;}
.y1bd{bottom:546.720000pt;}
.y1ab{bottom:553.760000pt;}
.y308{bottom:555.039778pt;}
.y1e{bottom:556.159778pt;}
.y51{bottom:556.319777pt;}
.y2bf{bottom:556.640000pt;}
.y1bc{bottom:557.439777pt;}
.y2ad{bottom:559.840000pt;}
.y153{bottom:560.000000pt;}
.y1ba{bottom:561.120000pt;}
.yd9{bottom:561.279775pt;}
.yd7{bottom:561.760000pt;}
.y246{bottom:562.239775pt;}
.y13f{bottom:566.080000pt;}
.y151{bottom:566.560000pt;}
.y8f{bottom:570.239772pt;}
.y1d{bottom:570.719772pt;}
.ycd{bottom:570.720000pt;}
.y50{bottom:572.159771pt;}
.y1b8{bottom:575.680000pt;}
.y1a9{bottom:576.480000pt;}
.y14f{bottom:576.960000pt;}
.y245{bottom:578.239769pt;}
.y2bc{bottom:579.680000pt;}
.yd5{bottom:579.840000pt;}
.y1b7{bottom:580.159768pt;}
.y2ab{bottom:582.400000pt;}
.y1c{bottom:585.119766pt;}
.y4f{bottom:586.559765pt;}
.y307{bottom:588.159765pt;}
.y13d{bottom:592.480000pt;}
.y14e{bottom:592.960000pt;}
.y8e{bottom:593.439763pt;}
.y244{bottom:593.919762pt;}
.y14c{bottom:593.920000pt;}
.y2ba{bottom:594.080000pt;}
.y8d{bottom:595.519762pt;}
.yd3{bottom:598.080000pt;}
.ycb{bottom:599.200000pt;}
.y1b{bottom:599.519760pt;}
.y4e{bottom:602.559759pt;}
.y306{bottom:603.839758pt;}
.y2a9{bottom:604.960000pt;}
.y1a8{bottom:606.399757pt;}
.y243{bottom:608.479757pt;}
.y2b8{bottom:608.640000pt;}
.y14a{bottom:610.720000pt;}
.y1a{bottom:613.759754pt;}
.y8c{bottom:615.999754pt;}
.y4d{bottom:618.399753pt;}
.y13b{bottom:619.040000pt;}
.y8b{bottom:619.839752pt;}
.y8a{bottom:621.759751pt;}
.y1a7{bottom:622.399751pt;}
.y2b6{bottom:623.040000pt;}
.y149{bottom:623.359751pt;}
.y242{bottom:624.319750pt;}
.yc9{bottom:625.919750pt;}
.y2a7{bottom:627.520000pt;}
.y147{bottom:627.680000pt;}
.y19{bottom:628.319749pt;}
.y4c{bottom:634.239746pt;}
.y89{bottom:635.679746pt;}
.y2b4{bottom:637.440000pt;}
.y88{bottom:637.599745pt;}
.y1a6{bottom:638.079745pt;}
.yc8{bottom:641.759743pt;}
.y18{bottom:642.719743pt;}
.y145{bottom:644.640000pt;}
.y241{bottom:645.439742pt;}
.y139{bottom:645.600000pt;}
.y4b{bottom:650.079740pt;}
.y2a5{bottom:650.080000pt;}
.y305{bottom:651.039740pt;}
.y2b2{bottom:651.840000pt;}
.y1a5{bottom:652.639739pt;}
.y87{bottom:653.439739pt;}
.y17{bottom:657.119737pt;}
.yc7{bottom:657.599737pt;}
.y23f{bottom:658.080000pt;}
.y221{bottom:661.280000pt;}
.y23d{bottom:661.600000pt;}
.y2f1{bottom:662.559735pt;}
.y4a{bottom:665.919734pt;}
.y23b{bottom:666.080000pt;}
.y2b1{bottom:666.240000pt;}
.y2da{bottom:666.719733pt;}
.y86{bottom:667.359733pt;}
.y1a4{bottom:668.479733pt;}
.y85{bottom:669.279732pt;}
.y16{bottom:671.519731pt;}
.y2a3{bottom:672.640000pt;}
.y2d9{bottom:674.719730pt;}
.y138{bottom:676.799729pt;}
.y2f0{bottom:678.399729pt;}
.y239{bottom:680.480000pt;}
.y2b0{bottom:680.640000pt;}
.yc6{bottom:681.119728pt;}
.y49{bottom:681.759727pt;}
.y331{bottom:682.239727pt;}
.y304{bottom:682.399727pt;}
.y21f{bottom:683.840000pt;}
.y1a3{bottom:684.319726pt;}
.y137{bottom:685.919726pt;}
.y15{bottom:686.079726pt;}
.y238{bottom:687.519725pt;}
.y84{bottom:690.399724pt;}
.y2d8{bottom:690.719724pt;}
.y2ef{bottom:692.639723pt;}
.y2af{bottom:694.400000pt;}
.y330{bottom:695.039722pt;}
.y236{bottom:695.040000pt;}
.y2a1{bottom:695.200000pt;}
.y48{bottom:697.599721pt;}
.y83{bottom:698.559721pt;}
.y1a2{bottom:700.159720pt;}
.y14{bottom:702.079719pt;}
.yb1{bottom:704.319718pt;}
.yc4{bottom:704.960000pt;}
.y303{bottom:706.239718pt;}
.y2d7{bottom:706.399717pt;}
.y21d{bottom:706.560000pt;}
.y234{bottom:706.880000pt;}
.y2ee{bottom:707.199717pt;}
.y136{bottom:709.119716pt;}
.yb8{bottom:709.440000pt;}
.y47{bottom:713.599715pt;}
.y32f{bottom:715.839714pt;}
.y1a1{bottom:715.999714pt;}
.y13{bottom:719.999712pt;}
.y82{bottom:720.959712pt;}
.y302{bottom:722.079711pt;}
.y2d6{bottom:722.399711pt;}
.yc2{bottom:722.400000pt;}
.y2ed{bottom:723.039711pt;}
.y231{bottom:724.000000pt;}
.y2a0{bottom:724.639710pt;}
.y135{bottom:725.119710pt;}
.y81{bottom:728.959708pt;}
.y32e{bottom:729.119708pt;}
.y46{bottom:729.279708pt;}
.y21b{bottom:729.280000pt;}
.y1a0{bottom:730.399708pt;}
.y12{bottom:731.359707pt;}
.y230{bottom:732.959707pt;}
.y29f{bottom:737.599705pt;}
.y301{bottom:737.919705pt;}
.y2d5{bottom:738.239705pt;}
.y22e{bottom:738.400000pt;}
.y2ec{bottom:738.879704pt;}
.y134{bottom:740.959704pt;}
.yb6{bottom:741.120000pt;}
.y29e{bottom:741.919703pt;}
.yc0{bottom:742.560000pt;}
.y80{bottom:742.879703pt;}
.y32d{bottom:743.679703pt;}
.y11{bottom:743.839702pt;}
.y7f{bottom:744.799702pt;}
.y45{bottom:745.119702pt;}
.y10{bottom:750.879700pt;}
.y300{bottom:751.199700pt;}
.y2eb{bottom:751.359699pt;}
.y219{bottom:752.000000pt;}
.y22d{bottom:752.320000pt;}
.y22b{bottom:752.960000pt;}
.y2ff{bottom:753.439699pt;}
.y19f{bottom:753.919698pt;}
.y133{bottom:756.639697pt;}
.y29d{bottom:757.919697pt;}
.y32c{bottom:758.079697pt;}
.yf{bottom:758.879696pt;}
.y7e{bottom:760.799696pt;}
.y44{bottom:761.119696pt;}
.ybe{bottom:762.880000pt;}
.y229{bottom:767.520000pt;}
.ye{bottom:769.759692pt;}
.y2d4{bottom:769.919692pt;}
.y132{bottom:771.199692pt;}
.y32b{bottom:772.479691pt;}
.yb4{bottom:772.800000pt;}
.y29c{bottom:773.759690pt;}
.y179{bottom:773.919690pt;}
.y19d{bottom:774.240000pt;}
.y217{bottom:774.560000pt;}
.y228{bottom:774.880000pt;}
.y7d{bottom:776.479689pt;}
.yd{bottom:776.639689pt;}
.y43{bottom:776.799689pt;}
.y184{bottom:777.440000pt;}
.y19b{bottom:777.760000pt;}
.y226{bottom:781.920000pt;}
.y2d3{bottom:782.399687pt;}
.ybc{bottom:783.200000pt;}
.yc{bottom:786.399685pt;}
.y32a{bottom:786.879685pt;}
.y131{bottom:787.039685pt;}
.y199{bottom:788.480000pt;}
.y7c{bottom:788.959684pt;}
.y29b{bottom:789.439684pt;}
.y7b{bottom:791.039684pt;}
.y42{bottom:792.799683pt;}
.y225{bottom:796.480000pt;}
.y215{bottom:797.280000pt;}
.y223{bottom:797.600000pt;}
.y182{bottom:800.160000pt;}
.y197{bottom:800.480000pt;}
.y329{bottom:801.279679pt;}
.ya{bottom:801.599679pt;}
.y130{bottom:802.879679pt;}
.y195{bottom:803.040000pt;}
.yba{bottom:803.360000pt;}
.yb2{bottom:804.640000pt;}
.y7a{bottom:804.799678pt;}
.y79{bottom:806.719677pt;}
.y41{bottom:808.639677pt;}
.yb{bottom:809.119676pt;}
.y29a{bottom:811.519675pt;}
.y12f{bottom:815.359674pt;}
.y328{bottom:815.679674pt;}
.y12d{bottom:816.000000pt;}
.y193{bottom:817.600000pt;}
.y117{bottom:819.520000pt;}
.y214{bottom:819.839672pt;}
.y12b{bottom:820.000000pt;}
.y8{bottom:820.319672pt;}
.y78{bottom:820.799672pt;}
.y77{bottom:822.719671pt;}
.y180{bottom:822.880000pt;}
.y129{bottom:823.040000pt;}
.y191{bottom:823.200000pt;}
.y40{bottom:824.319670pt;}
.y299{bottom:827.199669pt;}
.y9{bottom:827.839669pt;}
.y327{bottom:830.079668pt;}
.y18f{bottom:832.160000pt;}
.yb0{bottom:834.079666pt;}
.y213{bottom:835.679666pt;}
.y76{bottom:838.559665pt;}
.y127{bottom:840.000000pt;}
.y3f{bottom:840.319664pt;}
.y7{bottom:841.599663pt;}
.y326{bottom:844.479662pt;}
.y17e{bottom:845.600000pt;}
.y18e{bottom:845.920000pt;}
.y115{bottom:846.080000pt;}
.y125{bottom:846.560000pt;}
.yaf{bottom:850.079660pt;}
.y75{bottom:854.399658pt;}
.y3e{bottom:856.159658pt;}
.y123{bottom:856.960000pt;}
.y298{bottom:857.599657pt;}
.y212{bottom:859.039656pt;}
.y18b{bottom:861.120000pt;}
.yae{bottom:865.919654pt;}
.y17c{bottom:868.320000pt;}
.y6{bottom:869.759652pt;}
.y74{bottom:870.239652pt;}
.y3d{bottom:871.999651pt;}
.y113{bottom:872.640000pt;}
.y122{bottom:873.120000pt;}
.y297{bottom:873.439651pt;}
.y120{bottom:873.920000pt;}
.y211{bottom:874.719650pt;}
.y189{bottom:875.680000pt;}
.yad{bottom:881.759647pt;}
.y73{bottom:886.239646pt;}
.y325{bottom:887.679645pt;}
.y3c{bottom:887.839645pt;}
.y210{bottom:889.279644pt;}
.y187{bottom:890.080000pt;}
.y11e{bottom:890.880000pt;}
.y17a{bottom:891.040000pt;}
.y186{bottom:894.719642pt;}
.y5{bottom:898.079641pt;}
.y111{bottom:899.040000pt;}
.y324{bottom:902.079639pt;}
.y11d{bottom:903.359639pt;}
.y3b{bottom:903.679639pt;}
.y20f{bottom:904.959638pt;}
.yac{bottom:905.759638pt;}
.y11b{bottom:907.680000pt;}
.y72{bottom:909.279636pt;}
.y323{bottom:916.799633pt;}
.y3a{bottom:919.519632pt;}
.y178{bottom:920.959632pt;}
.y119{bottom:924.640000pt;}
.y2d2{bottom:925.439630pt;}
.y10f{bottom:925.600000pt;}
.y4{bottom:926.239630pt;}
.y2fe{bottom:927.839629pt;}
.y322{bottom:934.079626pt;}
.y39{bottom:935.359626pt;}
.y2d1{bottom:936.799625pt;}
.y2fd{bottom:942.399623pt;}
.y1{bottom:965.919614pt;}
.ha{height:0.000000pt;}
.h2b{height:3.311205pt;}
.h31{height:3.520000pt;}
.h16{height:7.034990pt;}
.h3e{height:9.760000pt;}
.h25{height:10.347516pt;}
.h13{height:13.658721pt;}
.h3f{height:16.800000pt;}
.h30{height:17.120000pt;}
.h32{height:17.280000pt;}
.h2c{height:17.382506pt;}
.h46{height:17.440000pt;}
.h19{height:17.483567pt;}
.h39{height:18.560000pt;}
.h35{height:18.720000pt;}
.h4c{height:18.880000pt;}
.h51{height:19.360000pt;}
.h26{height:20.000000pt;}
.h58{height:20.320000pt;}
.h9{height:20.695032pt;}
.h54{height:20.800000pt;}
.h20{height:21.280000pt;}
.h28{height:21.600000pt;}
.h5b{height:22.349754pt;}
.h22{height:23.200000pt;}
.h41{height:23.201585pt;}
.h3d{height:23.546334pt;}
.h3b{height:23.718708pt;}
.h4b{height:23.815791pt;}
.h15{height:23.831773pt;}
.h1c{height:24.000000pt;}
.h12{height:24.006237pt;}
.h18{height:24.145808pt;}
.h48{height:24.169666pt;}
.h45{height:24.346604pt;}
.h4f{height:24.800000pt;}
.h1e{height:25.760000pt;}
.h43{height:27.360000pt;}
.h8{height:27.730022pt;}
.h7{height:29.386064pt;}
.h11{height:31.042548pt;}
.h1b{height:31.223028pt;}
.h5c{height:32.887370pt;}
.he{height:34.104089pt;}
.h1{height:34.353753pt;}
.h17{height:34.553484pt;}
.hc{height:36.263995pt;}
.hd{height:38.077391pt;}
.h10{height:38.298771pt;}
.h42{height:40.132679pt;}
.h38{height:40.691538pt;}
.h40{height:40.729004pt;}
.h34{height:40.773734pt;}
.h3c{height:41.027167pt;}
.h4d{height:41.196198pt;}
.h2{height:41.390063pt;}
.h37{height:41.598481pt;}
.h14{height:41.630703pt;}
.h33{height:41.682509pt;}
.h49{height:41.808326pt;}
.h47{height:42.114390pt;}
.h4a{height:43.529984pt;}
.hb{height:44.506350pt;}
.h57{height:44.564427pt;}
.h6{height:44.701269pt;}
.h56{height:45.557691pt;}
.h55{height:45.742087pt;}
.h53{height:46.421761pt;}
.h52{height:46.761598pt;}
.h2a{height:47.550751pt;}
.h2f{height:47.569057pt;}
.h1a{height:48.424906pt;}
.h5{height:48.516488pt;}
.h27{height:48.610575pt;}
.h2d{height:48.629288pt;}
.hf{height:48.706447pt;}
.h24{height:50.967795pt;}
.h21{height:52.103779pt;}
.h4{height:53.328822pt;}
.h5a{height:55.724353pt;}
.h3a{height:56.004951pt;}
.h36{height:56.118079pt;}
.h1d{height:58.194503pt;}
.h59{height:61.335321pt;}
.h50{height:62.060625pt;}
.h29{height:65.445486pt;}
.h2e{height:65.470680pt;}
.h3{height:66.960333pt;}
.h23{height:70.148463pt;}
.h1f{height:78.348539pt;}
.h44{height:82.852430pt;}
.h4e{height:85.050281pt;}
.h0{height:1056.000000pt;}
.w25{width:3.200000pt;}
.w24{width:3.680000pt;}
.w11{width:5.760000pt;}
.w10{width:6.560000pt;}
.w13{width:6.880000pt;}
.w12{width:7.520000pt;}
.w1e{width:8.160000pt;}
.w1f{width:27.360000pt;}
.w26{width:39.200000pt;}
.w27{width:53.920000pt;}
.w21{width:70.880000pt;}
.wa{width:90.720000pt;}
.w2{width:100.480000pt;}
.w1{width:103.520000pt;}
.w17{width:110.400000pt;}
.w3{width:113.920000pt;}
.w1d{width:137.760000pt;}
.w20{width:143.360000pt;}
.wd{width:145.280000pt;}
.w8{width:145.440000pt;}
.wc{width:150.560000pt;}
.w7{width:150.720000pt;}
.wf{width:154.400000pt;}
.wb{width:154.560000pt;}
.w14{width:159.520000pt;}
.we{width:161.600000pt;}
.w9{width:161.760000pt;}
.w15{width:164.320000pt;}
.w22{width:166.240000pt;}
.w18{width:167.680000pt;}
.w16{width:174.080000pt;}
.w19{width:186.880000pt;}
.w23{width:188.480000pt;}
.w1a{width:191.680000pt;}
.w2b{width:194.720000pt;}
.w1b{width:195.040000pt;}
.w1c{width:201.440000pt;}
.w28{width:228.800000pt;}
.w5{width:229.440000pt;}
.w4{width:232.480000pt;}
.w2a{width:237.600000pt;}
.w6{width:242.720000pt;}
.w29{width:244.320000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x94{left:2.559864pt;}
.x86{left:136.639894pt;}
.x2{left:141.120036pt;}
.x7e{left:144.639942pt;}
.x5c{left:148.159941pt;}
.x23{left:151.999939pt;}
.x25{left:154.399938pt;}
.x26{left:157.919937pt;}
.x85{left:159.199936pt;}
.x5d{left:162.079935pt;}
.x17{left:163.839934pt;}
.x27{left:164.799934pt;}
.xb9{left:169.440403pt;}
.x68{left:170.559932pt;}
.x2c{left:171.519931pt;}
.x4{left:173.919536pt;}
.x87{left:181.759846pt;}
.x1{left:185.759926pt;}
.x3b{left:195.359922pt;}
.x38{left:197.279921pt;}
.x8d{left:198.239921pt;}
.x20{left:201.439919pt;}
.x2d{left:203.359919pt;}
.xba{left:205.279918pt;}
.x5e{left:208.479917pt;}
.x10{left:209.919916pt;}
.x3c{left:211.519915pt;}
.x3d{left:213.919914pt;}
.x24{left:215.679914pt;}
.xb8{left:223.359911pt;}
.x5f{left:224.639910pt;}
.xa8{left:226.719909pt;}
.x39{left:231.359907pt;}
.x45{left:234.879906pt;}
.x46{left:237.279905pt;}
.xa9{left:239.359904pt;}
.x69{left:241.119904pt;}
.x3e{left:249.439900pt;}
.x5{left:251.519899pt;}
.x3a{left:253.919898pt;}
.x2e{left:256.159898pt;}
.x9b{left:257.599897pt;}
.x21{left:260.639896pt;}
.x47{left:262.559895pt;}
.x22{left:265.759894pt;}
.x57{left:267.199893pt;}
.x28{left:269.599892pt;}
.x6{left:272.319891pt;}
.x9c{left:275.040000pt;}
.xb7{left:277.119889pt;}
.x7{left:283.519887pt;}
.x8{left:288.479885pt;}
.x4d{left:293.919882pt;}
.x97{left:294.879882pt;}
.x4e{left:296.319881pt;}
.x58{left:297.439881pt;}
.xa2{left:300.160000pt;}
.x75{left:301.600796pt;}
.x18{left:302.719879pt;}
.xa1{left:306.879877pt;}
.x19{left:308.159877pt;}
.x2f{left:310.399876pt;}
.x59{left:311.519875pt;}
.x8f{left:312.800000pt;}
.x9a{left:314.719894pt;}
.xa0{left:315.680000pt;}
.x8e{left:319.200000pt;}
.x30{left:323.039871pt;}
.x4f{left:324.159870pt;}
.x50{left:326.719869pt;}
.xa3{left:329.280000pt;}
.x83{left:330.400000pt;}
.x80{left:332.800000pt;}
.x70{left:334.079866pt;}
.x8b{left:336.000000pt;}
.x84{left:337.600000pt;}
.x71{left:339.039776pt;}
.x11{left:340.319864pt;}
.x7a{left:341.759863pt;}
.x53{left:342.879863pt;}
.x7f{left:343.840000pt;}
.x12{left:345.279862pt;}
.x54{left:347.359861pt;}
.x60{left:349.119860pt;}
.x99{left:350.079860pt;}
.x93{left:354.079858pt;}
.x6a{left:355.199858pt;}
.x9{left:356.639857pt;}
.x76{left:357.920000pt;}
.xaa{left:359.039856pt;}
.xa{left:361.599855pt;}
.x61{left:363.519855pt;}
.x5a{left:366.719853pt;}
.x55{left:367.999853pt;}
.x73{left:371.360000pt;}
.x34{left:375.199850pt;}
.x90{left:376.480000pt;}
.x1e{left:381.920485pt;}
.x2a{left:383.679847pt;}
.x72{left:384.800000pt;}
.x35{left:387.359845pt;}
.x2b{left:388.639845pt;}
.x8a{left:390.080000pt;}
.x36{left:391.839843pt;}
.x13{left:394.399842pt;}
.x7d{left:395.840000pt;}
.x14{left:399.359840pt;}
.x5b{left:401.919839pt;}
.x81{left:403.679839pt;}
.x7b{left:404.960000pt;}
.x56{left:406.079838pt;}
.x62{left:407.999837pt;}
.x51{left:410.239836pt;}
.x3{left:412.159835pt;}
.x52{left:414.239834pt;}
.x96{left:418.719837pt;}
.x98{left:420.319832pt;}
.x95{left:421.759831pt;}
.x31{left:422.879831pt;}
.x63{left:425.119830pt;}
.x92{left:427.519835pt;}
.x91{left:429.119828pt;}
.x32{left:435.679826pt;}
.x1f{left:437.119825pt;}
.x88{left:438.399825pt;}
.x3f{left:440.479824pt;}
.x37{left:444.799822pt;}
.x79{left:446.079306pt;}
.x1a{left:451.039820pt;}
.x40{left:454.559818pt;}
.x1b{left:456.479817pt;}
.x6b{left:458.559817pt;}
.x7c{left:459.679816pt;}
.x77{left:460.639816pt;}
.xbb{left:461.919815pt;}
.x48{left:463.359815pt;}
.x49{left:465.759814pt;}
.x6c{left:471.199812pt;}
.x6e{left:473.919810pt;}
.x41{left:477.119809pt;}
.x89{left:481.280000pt;}
.x74{left:485.279806pt;}
.x15{left:488.159805pt;}
.x42{left:491.359803pt;}
.x16{left:493.119803pt;}
.x82{left:494.399802pt;}
.x4a{left:496.319801pt;}
.x8c{left:500.319800pt;}
.x9d{left:504.160000pt;}
.xb{left:508.479797pt;}
.xc{left:513.439795pt;}
.x64{left:516.959793pt;}
.x33{left:521.439791pt;}
.xa4{left:523.999790pt;}
.xb4{left:526.559789pt;}
.xae{left:528.639789pt;}
.x65{left:531.359787pt;}
.xb5{left:532.959787pt;}
.x9e{left:541.920000pt;}
.xa5{left:547.199781pt;}
.x9f{left:548.159781pt;}
.x6d{left:550.079780pt;}
.xb1{left:552.479779pt;}
.xb2{left:559.519776pt;}
.xab{left:568.479773pt;}
.x4b{left:569.759772pt;}
.x4c{left:573.759770pt;}
.xac{left:575.359770pt;}
.x1c{left:580.799768pt;}
.x1d{left:586.239766pt;}
.x78{left:590.399764pt;}
.x6f{left:596.799761pt;}
.xd{left:606.239758pt;}
.x43{left:616.319753pt;}
.xe{left:623.359751pt;}
.x44{left:630.399748pt;}
.xb3{left:631.359747pt;}
.xf{left:650.399740pt;}
.x66{left:654.239738pt;}
.xad{left:661.279735pt;}
.x67{left:663.039735pt;}
.x29{left:670.719686pt;}
.xa6{left:671.839731pt;}
.xb0{left:677.599729pt;}
.xa7{left:678.719729pt;}
.xb6{left:681.439727pt;}
.xaf{left:682.719727pt;}
}




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