
    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_9b15797d3ea3bb8211407e0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_014bbf1c9d16cc2cf08e3b33.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.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:ff5;src:url('chunks/assets/font_6cf022e7529fa29e127748f8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.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:ff6;src:url('chunks/assets/font_0a1ab4aa9e86d4a7d7e489d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.048000;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_a1beeb5e72f3e4b94358bf84.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.028000;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_6ddcfced83ed008301d0c975.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.048000;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_2b729dcecd996d486c7e4ad3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025000;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_60b6d7896bb6ea1375255eb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.028000;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_014bbf1c9d16cc2cf08e3b33.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.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:ffc;src:url('chunks/assets/font_bffd6a68d76d7fb02b0e5b84.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9a149e41b90a49f0a63d6d50.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_6ef577d6ff676c351daa13cb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_242d7d39fde3ba3a4d0e8421.woff2')format("woff");}.fff{font-family:fff;line-height:0.948242;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_29bb92bd22e1748145119257.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_1e38035f80e68ac940145ccd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a1beeb5e72f3e4b94358bf84.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.028000;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:ff13;src:url('chunks/assets/font_6c526feb4059ffffb5830925.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.048000;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:ff14;src:url('chunks/assets/font_2b729dcecd996d486c7e4ad3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.025000;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:ff15;src:url('chunks/assets/font_8d93d924203bfbc7c697ae71.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.028000;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-19.439762px;}
.v7{vertical-align:-18.000000px;}
.vb{vertical-align:-10.080094px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.867328px;}
.v4{vertical-align:5.751231px;}
.v2{vertical-align:7.198333px;}
.vc{vertical-align:10.079955px;}
.v5{vertical-align:14.400054px;}
.v9{vertical-align:20.879995px;}
.v6{vertical-align:23.759991px;}
.vd{vertical-align:30.960018px;}
.va{vertical-align:38.160050px;}
.v1{vertical-align:49.675645px;}
.ls2{letter-spacing:-3.120000px;}
.ls1{letter-spacing:-2.610000px;}
.ls3{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.005865px;}
.ls1e{letter-spacing:0.010948px;}
.ls4{letter-spacing:0.012071px;}
.lsc{letter-spacing:0.023666px;}
.lsf{letter-spacing:0.034087px;}
.ls18{letter-spacing:0.044845px;}
.lsa{letter-spacing:0.083214px;}
.ls7{letter-spacing:0.083218px;}
.ls6{letter-spacing:0.215999px;}
.ls21{letter-spacing:0.253679px;}
.ls5{letter-spacing:0.253751px;}
.ls13{letter-spacing:0.253782px;}
.ls15{letter-spacing:0.253814px;}
.ls1d{letter-spacing:0.253818px;}
.ls22{letter-spacing:0.253958px;}
.ls8{letter-spacing:2.583403px;}
.lse{letter-spacing:7.234047px;}
.lsb{letter-spacing:12.994110px;}
.ls1f{letter-spacing:18.253953px;}
.ls20{letter-spacing:18.973832px;}
.ls16{letter-spacing:25.954133px;}
.ls19{letter-spacing:52.030183px;}
.lsd{letter-spacing:142.246266px;}
.ls12{letter-spacing:207.369712px;}
.ls10{letter-spacing:234.729788px;}
.ls11{letter-spacing:246.969653px;}
.ls14{letter-spacing:307.477892px;}
.ls1c{letter-spacing:361.630264px;}
.ls1a{letter-spacing:388.270323px;}
.ls1b{letter-spacing:388.270458px;}
.ls17{letter-spacing:1071.550309px;}
.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;}
}
.ws15{word-spacing:-19.917179px;}
.ws4{word-spacing:-19.906231px;}
.ws10{word-spacing:-18.313703px;}
.ws13{word-spacing:-16.584932px;}
.ws12{word-spacing:-16.522108px;}
.wsd{word-spacing:-15.810003px;}
.ws5{word-spacing:-15.173961px;}
.ws14{word-spacing:-14.986420px;}
.wsb{word-spacing:-14.957961px;}
.ws11{word-spacing:-14.929704px;}
.wsf{word-spacing:-13.337176px;}
.wse{word-spacing:-11.225115px;}
.ws1{word-spacing:-11.178000px;}
.ws3{word-spacing:-9.936000px;}
.ws2{word-spacing:-5.046000px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:631.636370px;}
.ws7{word-spacing:660.176520px;}
.ws6{word-spacing:660.885265px;}
.ws8{word-spacing:660.911658px;}
.wsa{word-spacing:691.583418px;}
.ws9{word-spacing:691.590096px;}
._4{margin-left:-28.392000px;}
._5{margin-left:-9.030600px;}
._6{margin-left:-5.460000px;}
._2{margin-left:-3.612000px;}
._1{margin-left:-2.592000px;}
._0{margin-left:-1.242000px;}
._3{width:1.872000px;}
._10{width:3.133993px;}
._8{width:4.998316px;}
._7{width:6.052758px;}
._d{width:7.728256px;}
._c{width:8.909970px;}
._11{width:10.218604px;}
._b{width:11.229295px;}
._a{width:12.399461px;}
._9{width:13.964567px;}
._16{width:15.834355px;}
._f{width:17.686599px;}
._e{width:18.790380px;}
._14{width:21.704396px;}
._24{width:23.249509px;}
._1e{width:24.535926px;}
._1c{width:26.292375px;}
._1d{width:27.716879px;}
._1f{width:29.000281px;}
._21{width:30.439375px;}
._19{width:31.749451px;}
._18{width:32.875094px;}
._17{width:34.112987px;}
._12{width:35.764019px;}
._13{width:37.042147px;}
._ad{width:38.195393px;}
._1b{width:39.835481px;}
._1a{width:41.138852px;}
._26{width:42.505384px;}
._8d{width:44.071364px;}
._9d{width:45.669845px;}
._92{width:49.834810px;}
._25{width:51.598311px;}
._15{width:52.749814px;}
._51{width:54.414432px;}
._22{width:55.588709px;}
._23{width:56.830146px;}
._af{width:58.066717px;}
._49{width:59.428206px;}
._48{width:61.331964px;}
._31{width:67.351801px;}
._66{width:72.244114px;}
._98{width:74.036276px;}
._64{width:75.221958px;}
._65{width:76.306543px;}
._55{width:78.907204px;}
._4a{width:80.646342px;}
._6b{width:86.047760px;}
._4d{width:89.080234px;}
._39{width:94.884849px;}
._63{width:96.738554px;}
._53{width:98.640676px;}
._54{width:100.042841px;}
._67{width:101.734028px;}
._b0{width:103.657805px;}
._40{width:104.960908px;}
._3d{width:106.293929px;}
._45{width:107.372728px;}
._75{width:108.711398px;}
._a9{width:112.885271px;}
._94{width:116.300402px;}
._5c{width:119.660940px;}
._4c{width:122.756596px;}
._3c{width:123.774097px;}
._3a{width:124.834789px;}
._36{width:126.732650px;}
._57{width:128.976554px;}
._5b{width:131.310084px;}
._42{width:133.509925px;}
._32{width:138.895354px;}
._56{width:141.266556px;}
._3e{width:143.230731px;}
._33{width:145.981222px;}
._20{width:148.426247px;}
._35{width:149.495877px;}
._46{width:151.450439px;}
._3b{width:152.646080px;}
._4e{width:154.378860px;}
._27{width:155.576340px;}
._a2{width:157.040128px;}
._aa{width:160.587652px;}
._68{width:162.576374px;}
._69{width:163.773842px;}
._2b{width:164.900543px;}
._52{width:166.341083px;}
._29{width:167.798474px;}
._44{width:169.633377px;}
._6a{width:172.178824px;}
._a1{width:173.272650px;}
._a6{width:174.432166px;}
._3f{width:175.769100px;}
._ab{width:177.616896px;}
._a0{width:180.134081px;}
._30{width:182.993692px;}
._a8{width:184.992428px;}
._6e{width:186.136344px;}
._4f{width:187.419668px;}
._76{width:188.662196px;}
._2c{width:190.013446px;}
._a5{width:195.097729px;}
._6d{width:196.825851px;}
._6c{width:198.119677px;}
._38{width:200.042460px;}
._a3{width:201.541734px;}
._41{width:202.727078px;}
._4b{width:205.412917px;}
._34{width:207.648214px;}
._47{width:208.799850px;}
._2e{width:212.491842px;}
._61{width:213.694269px;}
._ac{width:214.880225px;}
._37{width:216.050917px;}
._9f{width:218.093062px;}
._5d{width:219.275569px;}
._60{width:221.445725px;}
._9a{width:222.838345px;}
._99{width:224.545812px;}
._43{width:229.379775px;}
._ae{width:230.896468px;}
._5e{width:232.821671px;}
._5f{width:234.232927px;}
._9e{width:235.731160px;}
._a4{width:237.084990px;}
._59{width:239.003274px;}
._62{width:242.016469px;}
._8c{width:244.695030px;}
._90{width:248.403184px;}
._5a{width:254.881532px;}
._9c{width:256.758657px;}
._50{width:260.002807px;}
._8f{width:272.333830px;}
._a7{width:274.793237px;}
._9b{width:282.860000px;}
._95{width:283.941243px;}
._93{width:297.799993px;}
._84{width:298.946524px;}
._85{width:305.626944px;}
._7b{width:306.707588px;}
._7f{width:307.903904px;}
._81{width:312.662229px;}
._91{width:317.284637px;}
._7d{width:324.021052px;}
._88{width:329.234431px;}
._8a{width:331.378696px;}
._83{width:340.602807px;}
._2a{width:341.719766px;}
._7e{width:347.223579px;}
._89{width:354.226357px;}
._82{width:360.777464px;}
._80{width:367.085897px;}
._86{width:375.741195px;}
._7a{width:377.511486px;}
._7c{width:379.300884px;}
._58{width:383.815263px;}
._96{width:387.816464px;}
._97{width:389.215417px;}
._74{width:393.915233px;}
._77{width:395.704631px;}
._28{width:401.916744px;}
._87{width:416.831162px;}
._8b{width:425.764920px;}
._2d{width:463.581478px;}
._73{width:544.752398px;}
._78{width:546.541796px;}
._79{width:547.734728px;}
._72{width:578.299993px;}
._2f{width:584.670226px;}
._6f{width:659.591208px;}
._71{width:667.241695px;}
._70{width:843.894842px;}
._8e{width:1057.330250px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:12.216825px;}
.fs13{font-size:38.806380px;}
.fs17{font-size:38.953800px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.000000px;}
.fs11{font-size:48.148650px;}
.fs12{font-size:51.023250px;}
.fs14{font-size:53.897850px;}
.fsf{font-size:53.999861px;}
.fs6{font-size:54.000000px;}
.fs19{font-size:54.102600px;}
.fsd{font-size:59.646600px;}
.fs10{font-size:59.759492px;}
.fs15{font-size:59.873400px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:66.114450px;}
.fs5{font-size:69.000000px;}
.fsc{font-size:71.863650px;}
.fs0{font-size:72.000000px;}
.fs16{font-size:72.136796px;}
.fsa{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:156.000000px;}
.fs7{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y19d{bottom:1.800007px;}
.y1dd{bottom:2.879997px;}
.y123{bottom:2.879998px;}
.y121{bottom:2.880014px;}
.y21b{bottom:2.880031px;}
.y1b3{bottom:3.239937px;}
.y158{bottom:3.239972px;}
.y14e{bottom:3.239988px;}
.y14b{bottom:3.240005px;}
.yc4{bottom:3.240006px;}
.yff{bottom:3.419975px;}
.yfa{bottom:3.419993px;}
.y102{bottom:3.599980px;}
.yfd{bottom:3.600013px;}
.yc0{bottom:3.960004px;}
.yea{bottom:20.519989px;}
.ye9{bottom:24.120002px;}
.ye7{bottom:31.500000px;}
.y28{bottom:40.493774px;}
.ye4{bottom:44.279984px;}
.y24{bottom:53.314124px;}
.y42{bottom:53.320350px;}
.y27{bottom:56.993774px;}
.y9f{bottom:57.240006px;}
.y6{bottom:66.525004px;}
.y26{bottom:73.493774px;}
.y25{bottom:89.993774px;}
.y5{bottom:97.125005px;}
.yf6{bottom:111.240006px;}
.yf2{bottom:120.240006px;}
.y9e{bottom:122.580025px;}
.yf5{bottom:128.519989px;}
.ybd{bottom:131.580025px;}
.y246{bottom:131.940033px;}
.y1d5{bottom:134.279983px;}
.yd3{bottom:136.080025px;}
.y23{bottom:139.264499px;}
.yf4{bottom:145.799973px;}
.yf1{bottom:151.379998px;}
.y26b{bottom:152.279983px;}
.y11f{bottom:152.820030px;}
.y9d{bottom:153.720017px;}
.ybc{bottom:162.720017px;}
.yf3{bottom:162.899986px;}
.y245{bottom:163.080025px;}
.y1d4{bottom:165.240006px;}
.yd2{bottom:167.039977px;}
.y143{bottom:167.220017px;}
.y26a{bottom:172.980011px;}
.yf0{bottom:182.340019px;}
.y11e{bottom:183.960022px;}
.y9c{bottom:184.679970px;}
.y1c1{bottom:186.120002px;}
.ybb{bottom:193.679970px;}
.y244{bottom:194.039977px;}
.y1d3{bottom:196.379998px;}
.y1a{bottom:196.933500px;}
.yd1{bottom:198.179970px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.yef{bottom:213.840019px;}
.y269{bottom:214.379998px;}
.y11d{bottom:214.919975px;}
.y9b{bottom:215.820030px;}
.y1c0{bottom:217.080025px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.yba{bottom:224.820030px;}
.y243{bottom:225.179970px;}
.y1d2{bottom:227.340019px;}
.yd0{bottom:229.139992px;}
.y142{bottom:229.320030px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y268{bottom:235.080025px;}
.y1bf{bottom:237.240006px;}
.yee{bottom:244.980011px;}
.y11c{bottom:246.059967px;}
.y9a{bottom:246.779983px;}
.y238{bottom:251.279983px;}
.y1be{bottom:254.519989px;}
.yb9{bottom:255.779983px;}
.y242{bottom:256.139992px;}
.y1d1{bottom:258.480011px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ycf{bottom:260.279983px;}
.y16d{bottom:263.700027px;}
.y237{bottom:271.440033px;}
.y1bd{bottom:271.799973px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.yed{bottom:276.120002px;}
.y267{bottom:276.480011px;}
.y11b{bottom:277.019989px;}
.y99{bottom:277.919975px;}
.y203{bottom:278.639992px;}
.y256{bottom:281.879998px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yb8{bottom:286.919975px;}
.y241{bottom:287.279983px;}
.y236{bottom:288.720017px;}
.y1bc{bottom:289.080025px;}
.y1d0{bottom:289.440033px;}
.yce{bottom:291.240006px;}
.y141{bottom:291.419975px;}
.y16c{bottom:294.659981px;}
.y266{bottom:297.179970px;}
.y202{bottom:298.440033px;}
.yec{bottom:307.080025px;}
.y11a{bottom:308.159981px;}
.y98{bottom:308.879998px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y234{bottom:312.480011px;}
.y235{bottom:315.360008px;}
.y199{bottom:317.159981px;}
.yb7{bottom:317.879998px;}
.y201{bottom:318.240006px;}
.y1cf{bottom:320.580025px;}
.y1bb{bottom:321.840019px;}
.ycd{bottom:322.379998px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.ye8{bottom:324.000000px;}
.y255{bottom:325.080025px;}
.y16b{bottom:325.799973px;}
.y232{bottom:327.960022px;}
.y233{bottom:330.840019px;}
.y140{bottom:332.100013px;}
.ye3{bottom:335.519989px;}
.y200{bottom:338.220017px;}
.y265{bottom:338.580025px;}
.y119{bottom:339.120002px;}
.y97{bottom:340.019989px;}
.y4a{bottom:341.550150px;}
.y230{bottom:343.439999px;}
.yeb{bottom:344.519989px;}
.ye6{bottom:344.700027px;}
.y231{bottom:346.319995px;}
.y11{bottom:348.133500px;}
.y198{bottom:348.299973px;}
.yb6{bottom:349.019989px;}
.y240{bottom:349.379998px;}
.y183{bottom:351.360008px;}
.y1ce{bottom:351.539977px;}
.y13f{bottom:351.899986px;}
.ycc{bottom:353.340019px;}
.y16a{bottom:356.759994px;}
.y49{bottom:357.750150px;}
.y264{bottom:359.279983px;}
.y22f{bottom:361.980011px;}
.y1ff{bottom:362.340019px;}
.y1ba{bottom:367.740006px;}
.y254{bottom:368.100013px;}
.y1fe{bottom:368.820030px;}
.y118{bottom:370.259994px;}
.y96{bottom:370.980011px;}
.y182{bottom:371.519989px;}
.y13e{bottom:371.700027px;}
.y48{bottom:373.950150px;}
.y22d{bottom:374.579990px;}
.ye5{bottom:376.200027px;}
.y22e{bottom:377.459988px;}
.y197{bottom:379.259994px;}
.yb5{bottom:379.980011px;}
.y23f{bottom:380.340019px;}
.y1cd{bottom:382.500000px;}
.y1fd{bottom:384.299973px;}
.ycb{bottom:384.480011px;}
.y10{bottom:386.785499px;}
.y169{bottom:387.899986px;}
.y181{bottom:388.800007px;}
.y22b{bottom:390.060001px;}
.y47{bottom:390.150150px;}
.y1b9{bottom:390.600013px;}
.y13d{bottom:391.500000px;}
.y22c{bottom:392.939999px;}
.y253{bottom:399.419975px;}
.y1fc{bottom:399.960022px;}
.y263{bottom:400.679970px;}
.y117{bottom:401.220017px;}
.y95{bottom:402.120002px;}
.y5c{bottom:403.200150px;}
.y229{bottom:405.540012px;}
.y46{bottom:406.350150px;}
.yf{bottom:408.044999px;}
.y22a{bottom:408.420010px;}
.y196{bottom:410.399986px;}
.yb4{bottom:411.120002px;}
.y13c{bottom:411.480011px;}
.y1b8{bottom:413.639992px;}
.yca{bottom:415.440033px;}
.y3f{bottom:417.894074px;}
.y168{bottom:418.860008px;}
.y180{bottom:420.660015px;}
.y5b{bottom:421.200150px;}
.y262{bottom:421.379998px;}
.y45{bottom:422.550150px;}
.y41{bottom:423.404924px;}
.y228{bottom:424.079990px;}
.y252{bottom:430.559967px;}
.y1fa{bottom:430.919975px;}
.y13b{bottom:431.279983px;}
.y116{bottom:432.360008px;}
.y1fb{bottom:432.899986px;}
.y94{bottom:433.080025px;}
.y1b7{bottom:436.500000px;}
.y227{bottom:437.399986px;}
.y17f{bottom:437.939999px;}
.y44{bottom:438.750150px;}
.y5a{bottom:439.200150px;}
.y195{bottom:441.360008px;}
.yb3{bottom:442.080025px;}
.y23e{bottom:442.440033px;}
.y1cc{bottom:444.600013px;}
.y1f9{bottom:446.399986px;}
.yc9{bottom:446.580025px;}
.y167{bottom:450.000000px;}
.y225{bottom:453.600013px;}
.y43{bottom:454.950150px;}
.y17e{bottom:455.220017px;}
.y226{bottom:456.480011px;}
.y59{bottom:457.200150px;}
.y13a{bottom:457.919975px;}
.y1b6{bottom:459.539977px;}
.y251{bottom:461.519989px;}
.y1f7{bottom:462.779983px;}
.y115{bottom:463.320030px;}
.y93{bottom:464.220017px;}
.y7a{bottom:467.264100px;}
.y3e{bottom:468.894074px;}
.y40{bottom:470.468924px;}
.y1f6{bottom:470.519989px;}
.y224{bottom:472.139992px;}
.y17d{bottom:472.500000px;}
.yb2{bottom:473.220017px;}
.y23d{bottom:473.580025px;}
.y58{bottom:475.200150px;}
.y1cb{bottom:475.740006px;}
.y139{bottom:477.179970px;}
.yc8{bottom:477.539977px;}
.y1f8{bottom:478.259994px;}
.y166{bottom:480.960022px;}
.y8e{bottom:481.500000px;}
.y79{bottom:482.264100px;}
.y1b5{bottom:482.399986px;}
.y261{bottom:483.480011px;}
.y222{bottom:484.740006px;}
.ye{bottom:484.864502px;}
.y223{bottom:487.620002px;}
.y17c{bottom:490.319995px;}
.y250{bottom:492.659981px;}
.y57{bottom:493.200150px;}
.y1f4{bottom:493.740006px;}
.y114{bottom:494.460022px;}
.y92{bottom:495.179970px;}
.y138{bottom:496.440033px;}
.y78{bottom:497.264100px;}
.y220{bottom:500.220017px;}
.y1f3{bottom:501.480011px;}
.y8d{bottom:502.200027px;}
.yd{bottom:502.864502px;}
.y221{bottom:503.100013px;}
.y194{bottom:503.460022px;}
.yb1{bottom:504.179970px;}
.y23c{bottom:504.539977px;}
.y17b{bottom:504.899986px;}
.y1b4{bottom:505.440033px;}
.y1ca{bottom:506.700027px;}
.yc7{bottom:508.679970px;}
.y1f5{bottom:509.220017px;}
.y56{bottom:511.200150px;}
.y165{bottom:512.100013px;}
.y51{bottom:515.244300px;}
.y21e{bottom:515.699993px;}
.y137{bottom:515.879998px;}
.y21f{bottom:518.579990px;}
.yc{bottom:520.864502px;}
.y8c{bottom:522.899986px;}
.y24f{bottom:523.620002px;}
.y1f1{bottom:524.879998px;}
.y77{bottom:525.019950px;}
.y113{bottom:525.419975px;}
.y91{bottom:526.320030px;}
.y1c9{bottom:526.860008px;}
.y1b2{bottom:529.019989px;}
.y55{bottom:529.200150px;}
.y17a{bottom:531.180004px;}
.y1f0{bottom:532.620002px;}
.y21d{bottom:534.240006px;}
.y136{bottom:535.139992px;}
.yb0{bottom:535.320030px;}
.y23b{bottom:535.679970px;}
.yb{bottom:538.864499px;}
.yc6{bottom:539.639992px;}
.y1f2{bottom:540.360008px;}
.y164{bottom:543.059967px;}
.y8b{bottom:543.600013px;}
.y1c8{bottom:544.139992px;}
.y260{bottom:545.580025px;}
.y50{bottom:546.000150px;}
.y193{bottom:546.480011px;}
.y21a{bottom:546.839985px;}
.y54{bottom:547.200150px;}
.y179{bottom:548.459988px;}
.y21c{bottom:549.720017px;}
.y76{bottom:552.775950px;}
.y1b1{bottom:552.779983px;}
.y135{bottom:554.399986px;}
.y24e{bottom:554.759994px;}
.y1ee{bottom:555.840019px;}
.y112{bottom:556.559967px;}
.ya{bottom:556.864499px;}
.y90{bottom:557.279983px;}
.y218{bottom:562.319995px;}
.y1ed{bottom:563.580025px;}
.y4f{bottom:564.000150px;}
.y219{bottom:565.199993px;}
.y53{bottom:565.200150px;}
.y178{bottom:565.740006px;}
.yaf{bottom:566.279983px;}
.y23a{bottom:566.639992px;}
.y75{bottom:567.775950px;}
.yc5{bottom:570.779983px;}
.y1ef{bottom:571.320030px;}
.y1c7{bottom:571.500000px;}
.y134{bottom:573.659981px;}
.y163{bottom:574.200027px;}
.y1b0{bottom:575.639992px;}
.y8a{bottom:576.360008px;}
.y192{bottom:577.620002px;}
.y217{bottom:581.579990px;}
.y4e{bottom:582.000150px;}
.y74{bottom:582.775950px;}
.y177{bottom:582.839985px;}
.y52{bottom:583.200150px;}
.y24d{bottom:585.720017px;}
.y1c5{bottom:586.799973px;}
.y1eb{bottom:586.980011px;}
.y111{bottom:587.519989px;}
.yc3{bottom:587.700027px;}
.y8f{bottom:588.419975px;}
.y1c6{bottom:590.399986px;}
.y133{bottom:590.759994px;}
.yc2{bottom:590.940033px;}
.y1ea{bottom:594.720017px;}
.y215{bottom:594.899987px;}
.yae{bottom:597.419975px;}
.y216{bottom:597.779983px;}
.y1af{bottom:598.679970px;}
.y176{bottom:601.379998px;}
.y1ec{bottom:602.460022px;}
.y162{bottom:605.159981px;}
.y1c3{bottom:606.600013px;}
.y3d{bottom:607.343924px;}
.y25f{bottom:607.679970px;}
.yc1{bottom:608.039977px;}
.y191{bottom:608.580025px;}
.y213{bottom:610.379998px;}
.y73{bottom:610.531800px;}
.y214{bottom:613.259994px;}
.y132{bottom:613.620002px;}
.y175{bottom:616.139992px;}
.y24c{bottom:616.860008px;}
.y1e8{bottom:617.939999px;}
.y89{bottom:619.379998px;}
.y1c2{bottom:619.560001px;}
.y1ae{bottom:621.540012px;}
.y72{bottom:625.531800px;}
.y110{bottom:625.680004px;}
.y211{bottom:625.860008px;}
.y3c{bottom:628.343924px;}
.yad{bottom:628.379998px;}
.y212{bottom:628.740006px;}
.y1c4{bottom:629.100013px;}
.y131{bottom:632.879998px;}
.y1e9{bottom:633.420010px;}
.y161{bottom:636.300007px;}
.ye2{bottom:638.639992px;}
.ye1{bottom:638.818225px;}
.y190{bottom:639.720017px;}
.y71{bottom:640.531800px;}
.y174{bottom:642.240006px;}
.y210{bottom:644.400003px;}
.y1ad{bottom:644.579990px;}
.y9{bottom:645.510000px;}
.y1e6{bottom:649.079990px;}
.y88{bottom:650.519989px;}
.y130{bottom:652.139992px;}
.y1e5{bottom:656.819995px;}
.y20e{bottom:657.000000px;}
.y10f{bottom:658.439999px;}
.yac{bottom:659.519989px;}
.y173{bottom:659.520006px;}
.y20f{bottom:659.879998px;}
.y1e7{bottom:664.560001px;}
.y8{bottom:666.771000px;}
.y160{bottom:667.259994px;}
.y1ac{bottom:667.439999px;}
.y26c{bottom:668.160015px;}
.y70{bottom:668.287650px;}
.y25e{bottom:669.779983px;}
.y18f{bottom:670.680004px;}
.ydf{bottom:670.862507px;}
.y12f{bottom:671.579990px;}
.y20c{bottom:672.479994px;}
.y4d{bottom:675.000000px;}
.y20d{bottom:675.360008px;}
.y3b{bottom:676.343924px;}
.y172{bottom:676.800007px;}
.y1e3{bottom:680.040012px;}
.y10e{bottom:680.759994px;}
.y87{bottom:681.480011px;}
.y6f{bottom:683.287650px;}
.yd8{bottom:686.880525px;}
.y1e2{bottom:687.779983px;}
.y20a{bottom:687.960004px;}
.yab{bottom:690.480011px;}
.y12e{bottom:690.839985px;}
.y20b{bottom:690.840002px;}
.y171{bottom:695.340002px;}
.y1e4{bottom:695.519989px;}
.y6e{bottom:698.287650px;}
.y15f{bottom:698.399986px;}
.y10d{bottom:700.560001px;}
.y18e{bottom:701.819995px;}
.y37{bottom:701.994074px;}
.y209{bottom:706.500000px;}
.y4c{bottom:707.400000px;}
.y12d{bottom:710.100013px;}
.y1e0{bottom:711.180004px;}
.y86{bottom:712.620002px;}
.y6d{bottom:713.287650px;}
.y1ab{bottom:713.339985px;}
.yd7{bottom:715.501218px;}
.y1df{bottom:718.920010px;}
.y10c{bottom:719.459988px;}
.y208{bottom:719.819996px;}
.y36{bottom:719.994074px;}
.yaa{bottom:721.620002px;}
.yd9{bottom:723.419601px;}
.y10b{bottom:725.040012px;}
.y7{bottom:726.298500px;}
.y1e1{bottom:726.660015px;}
.y1a9{bottom:727.379998px;}
.y12c{bottom:729.360008px;}
.y3a{bottom:731.843924px;}
.y25d{bottom:731.879998px;}
.y18d{bottom:732.779983px;}
.y170{bottom:733.139992px;}
.y207{bottom:736.020006px;}
.y1aa{bottom:736.379998px;}
.y35{bottom:737.994074px;}
.y10a{bottom:740.339985px;}
.y6c{bottom:741.043650px;}
.y85{bottom:743.579990px;}
.y109{bottom:743.939999px;}
.y12b{bottom:746.459988px;}
.y205{bottom:747.180004px;}
.y1de{bottom:748.259994px;}
.y206{bottom:752.400003px;}
.ya9{bottom:752.579990px;}
.y4{bottom:752.599495px;}
.y16f{bottom:753.840002px;}
.y34{bottom:755.994074px;}
.y6b{bottom:756.043650px;}
.yda{bottom:759.962782px;}
.y1a8{bottom:760.139992px;}
.y15e{bottom:760.500000px;}
.y18c{bottom:763.920010px;}
.y1da{bottom:764.100013px;}
.y1dc{bottom:766.980011px;}
.y108{bottom:768.959988px;}
.y12a{bottom:769.319995px;}
.y204{bottom:772.379998px;}
.ye0{bottom:772.740094px;}
.y25c{bottom:773.279983px;}
.y84{bottom:774.720017px;}
.y15d{bottom:783.180004px;}
.ya8{bottom:783.720017px;}
.y6a{bottom:783.799500px;}
.y18b{bottom:784.079990px;}
.y1db{bottom:785.339985px;}
.y39{bottom:787.343924px;}
.y129{bottom:788.579990px;}
.y107{bottom:791.100013px;}
.y33{bottom:791.993924px;}
.y16e{bottom:793.079999px;}
.y25b{bottom:793.980011px;}
.ydb{bottom:796.323023px;}
.yd6{bottom:797.219495px;}
.y69{bottom:798.799500px;}
.y15c{bottom:800.459988px;}
.y18a{bottom:801.180004px;}
.y1d9{bottom:804.420010px;}
.y83{bottom:805.680004px;}
.y1a7{bottom:806.759994px;}
.y106{bottom:807.480011px;}
.y128{bottom:807.839985px;}
.y68{bottom:813.799500px;}
.ya7{bottom:814.680004px;}
.y105{bottom:826.199993px;}
.y127{bottom:827.279983px;}
.y189{bottom:828.180004px;}
.y1d8{bottom:828.540012px;}
.y1a6{bottom:829.620002px;}
.y104{bottom:829.800007px;}
.ydc{bottom:832.861254px;}
.y25a{bottom:835.379998px;}
.y82{bottom:836.819995px;}
.y15b{bottom:837.000000px;}
.y103{bottom:839.879998px;}
.y15a{bottom:840.240006px;}
.y67{bottom:841.555350px;}
.y38{bottom:842.843924px;}
.y188{bottom:845.459988px;}
.ya6{bottom:845.819995px;}
.y126{bottom:846.540012px;}
.yd4{bottom:851.219366px;}
.y1a5{bottom:851.579990px;}
.y157{bottom:854.100013px;}
.y101{bottom:855.360008px;}
.y1d7{bottom:856.079990px;}
.y66{bottom:856.555350px;}
.y159{bottom:857.339985px;}
.y100{bottom:858.959988px;}
.y187{bottom:862.740006px;}
.y125{bottom:865.800007px;}
.y81{bottom:867.779983px;}
.ydd{bottom:869.399506px;}
.y1a4{bottom:873.360008px;}
.yfe{bottom:875.160015px;}
.ya5{bottom:876.779983px;}
.y155{bottom:878.939999px;}
.y3{bottom:879.369000px;}
.yd5{bottom:880.018854px;}
.y186{bottom:880.019989px;}
.y32{bottom:881.993924px;}
.y65{bottom:884.311350px;}
.y124{bottom:885.060001px;}
.y156{bottom:889.740006px;}
.yfc{bottom:894.060001px;}
.y185{bottom:894.779983px;}
.y1a3{bottom:896.220017px;}
.y1d6{bottom:897.480011px;}
.yfb{bottom:897.660015px;}
.y153{bottom:897.839985px;}
.y80{bottom:898.920010px;}
.y64{bottom:899.311350px;}
.y31{bottom:899.993924px;}
.y4b{bottom:901.200300px;}
.y122{bottom:902.159998px;}
.yde{bottom:905.759747px;}
.ya4{bottom:907.919992px;}
.y154{bottom:908.639992px;}
.yf9{bottom:913.860008px;}
.y63{bottom:914.311350px;}
.y30{bottom:917.993924px;}
.y151{bottom:918.180004px;}
.y1a2{bottom:919.259994px;}
.y120{bottom:922.139992px;}
.y184{bottom:926.819996px;}
.y152{bottom:928.979994px;}
.y7f{bottom:929.879998px;}
.y2f{bottom:935.993924px;}
.yf8{bottom:936.360008px;}
.y14f{bottom:938.340002px;}
.ya3{bottom:938.879998px;}
.y24b{bottom:939.240006px;}
.y1a1{bottom:940.139992px;}
.y62{bottom:942.067200px;}
.y2{bottom:945.126001px;}
.ybf{bottom:948.060001px;}
.y150{bottom:949.139992px;}
.ybe{bottom:952.020006px;}
.y2e{bottom:953.993924px;}
.y19f{bottom:954.180004px;}
.y259{bottom:959.580008px;}
.y7e{bottom:961.020006px;}
.y14c{bottom:961.379998px;}
.y1a0{bottom:963.180004px;}
.yf7{bottom:966.599997px;}
.y1{bottom:966.726000px;}
.y61{bottom:969.823200px;}
.ya2{bottom:970.020006px;}
.y24a{bottom:970.379998px;}
.y2d{bottom:971.993924px;}
.y14d{bottom:972.180004px;}
.y19c{bottom:977.939999px;}
.y258{bottom:980.280001px;}
.y60{bottom:984.823200px;}
.y149{bottom:985.680004px;}
.y19e{bottom:986.759994px;}
.y2c{bottom:989.993924px;}
.y7d{bottom:991.979994px;}
.y14a{bottom:996.479994px;}
.y5f{bottom:999.823200px;}
.ya1{bottom:1000.979994px;}
.y249{bottom:1001.340002px;}
.y147{bottom:1005.840002px;}
.y2b{bottom:1007.993924px;}
.y19b{bottom:1010.520006px;}
.y5e{bottom:1014.823200px;}
.y148{bottom:1016.639992px;}
.y145{bottom:1020.599997px;}
.y257{bottom:1021.680004px;}
.y7c{bottom:1023.120002px;}
.y146{bottom:1023.840002px;}
.ya0{bottom:1032.120002px;}
.y248{bottom:1032.479994px;}
.y19a{bottom:1034.280001px;}
.y144{bottom:1042.379998px;}
.y2a{bottom:1043.993924px;}
.y5d{bottom:1044.823200px;}
.y239{bottom:1062.900003px;}
.y7b{bottom:1063.079999px;}
.y247{bottom:1063.439999px;}
.y29{bottom:1065.593924px;}
.h40{height:3.239988px;}
.h3f{height:3.240005px;}
.h3e{height:3.240006px;}
.h54{height:9.013488px;}
.h49{height:10.620002px;}
.h5a{height:14.939964px;}
.h59{height:14.939998px;}
.h37{height:14.939999px;}
.h3a{height:14.940033px;}
.h4f{height:15.479976px;}
.h56{height:15.479994px;}
.h35{height:15.480010px;}
.h1a{height:16.559967px;}
.h41{height:16.560001px;}
.h3b{height:17.099997px;}
.h48{height:17.100015px;}
.h32{height:18.359974px;}
.h33{height:18.539979px;}
.h31{height:18.539995px;}
.h34{height:18.540012px;}
.h4d{height:18.540046px;}
.h2f{height:18.899986px;}
.h4c{height:19.079991px;}
.h1c{height:19.979943px;}
.h19{height:20.159998px;}
.h4a{height:28.631074px;}
.h7{height:32.130000px;}
.h2d{height:35.501369px;}
.h14{height:38.400000px;}
.h15{height:38.544000px;}
.h38{height:39.765455px;}
.h57{height:39.916518px;}
.h36{height:40.528657px;}
.h55{height:40.682619px;}
.h25{height:43.001040px;}
.h22{height:43.188022px;}
.hb{height:43.200000px;}
.hc{height:43.362000px;}
.h3d{height:43.424356px;}
.h1b{height:44.006842px;}
.h46{height:44.174174px;}
.h3c{height:44.851447px;}
.h6{height:45.900000px;}
.hf{height:48.000000px;}
.he{height:48.180000px;}
.h3{height:48.195000px;}
.h39{height:48.344898px;}
.h1d{height:48.436398px;}
.h58{height:48.528553px;}
.h45{height:49.239427px;}
.h30{height:49.714967px;}
.h2c{height:49.897515px;}
.h4e{height:50.608612px;}
.h26{height:52.199960px;}
.h2a{height:53.020496px;}
.h18{height:53.501369px;}
.h21{height:53.602630px;}
.h43{height:53.704803px;}
.h16{height:54.038096px;}
.h20{height:54.187630px;}
.h44{height:54.243489px;}
.h2{height:55.080000px;}
.ha{height:55.200000px;}
.hd{height:57.600000px;}
.h2e{height:59.302854px;}
.h28{height:60.299973px;}
.h24{height:60.564775px;}
.h23{height:61.379998px;}
.h50{height:62.128738px;}
.h17{height:64.459729px;}
.h47{height:64.704733px;}
.h2b{height:66.948013px;}
.h13{height:67.200000px;}
.h27{height:72.899987px;}
.h5{height:78.030000px;}
.h29{height:78.859783px;}
.h51{height:79.304916px;}
.h52{height:79.304920px;}
.h12{height:86.400000px;}
.h4b{height:87.875017px;}
.h1e{height:98.112043px;}
.h1f{height:98.112123px;}
.h53{height:110.264938px;}
.h4{height:119.055004px;}
.h11{height:124.800000px;}
.h10{height:139.200000px;}
.h42{height:918.000000px;}
.h8{height:1187.993774px;}
.h9{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w1b{width:3.960022px;}
.w24{width:4.500000px;}
.w58{width:5.400003px;}
.w28{width:5.580025px;}
.w3a{width:6.840002px;}
.w26{width:6.840020px;}
.wf{width:7.379997px;}
.wb{width:7.379998px;}
.w37{width:7.559967px;}
.w2c{width:7.560001px;}
.w32{width:7.560002px;}
.w34{width:7.560036px;}
.w48{width:7.919975px;}
.w3f{width:8.099997px;}
.w44{width:8.279983px;}
.w43{width:8.279984px;}
.w45{width:8.280000px;}
.w40{width:8.280001px;}
.w41{width:8.280017px;}
.w42{width:8.280018px;}
.w46{width:8.280052px;}
.w1d{width:8.460023px;}
.w4{width:8.640060px;}
.w20{width:9.000000px;}
.w25{width:9.179970px;}
.w5a{width:9.179971px;}
.w22{width:9.179988px;}
.w1f{width:9.180003px;}
.w2a{width:9.180038px;}
.w5b{width:9.180039px;}
.w6{width:10.080025px;}
.w9{width:10.800007px;}
.w19{width:10.979976px;}
.wa{width:10.979993px;}
.w14{width:10.980010px;}
.we{width:10.980011px;}
.w38{width:12.780053px;}
.w6c{width:12.959997px;}
.w8{width:13.500000px;}
.wc{width:15.840002px;}
.w12{width:16.019989px;}
.w10{width:16.019990px;}
.w17{width:16.020024px;}
.w1c{width:18.000000px;}
.w4c{width:19.080008px;}
.w13{width:19.980011px;}
.w27{width:21.059967px;}
.w11{width:22.319997px;}
.w15{width:23.400020px;}
.w69{width:24.659998px;}
.w30{width:25.560001px;}
.w65{width:26.279983px;}
.w63{width:26.280000px;}
.w66{width:26.280017px;}
.w64{width:26.280018px;}
.w67{width:26.280052px;}
.w68{width:28.799998px;}
.w2f{width:30.060002px;}
.w6a{width:30.599997px;}
.w31{width:31.500000px;}
.wd{width:32.399987px;}
.w16{width:33.120002px;}
.w1a{width:33.300007px;}
.w18{width:33.480011px;}
.w6d{width:33.840002px;}
.w2d{width:34.560001px;}
.w2e{width:35.280001px;}
.w3b{width:36.719999px;}
.w6b{width:37.439999px;}
.w5e{width:38.879998px;}
.w35{width:39.059966px;}
.w39{width:39.060001px;}
.w36{width:39.060035px;}
.w57{width:41.039995px;}
.w33{width:41.219982px;}
.w1e{width:41.220017px;}
.w47{width:41.760003px;}
.w56{width:43.200010px;}
.w51{width:43.560001px;}
.w7{width:45.539996px;}
.w50{width:46.620002px;}
.w2b{width:52.560001px;}
.w4d{width:59.939998px;}
.w62{width:61.560035px;}
.w21{width:65.340002px;}
.w3e{width:66.780001px;}
.w53{width:70.199960px;}
.w55{width:70.200027px;}
.w61{width:70.559967px;}
.w5f{width:70.560001px;}
.w60{width:70.560002px;}
.w3d{width:71.460005px;}
.w4b{width:72.719999px;}
.w4e{width:72.720000px;}
.w4a{width:75.780001px;}
.w5c{width:77.039978px;}
.w59{width:77.040012px;}
.w52{width:79.920009px;}
.w54{width:84.960021px;}
.w23{width:92.699993px;}
.w4f{width:100.080008px;}
.w3c{width:133.740006px;}
.w5d{width:138.599997px;}
.w29{width:202.679970px;}
.w5{width:205.920010px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.w49{width:1188.000000px;}
.x6{left:-864.000000px;}
.x0{left:0.000000px;}
.x9{left:32.179650px;}
.xa{left:43.581300px;}
.x5{left:44.644200px;}
.xbf{left:54.000000px;}
.x74{left:89.099997px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:108.000000px;}
.x53{left:111.060001px;}
.x11{left:116.640000px;}
.xba{left:120.780001px;}
.xb{left:128.250000px;}
.x1c{left:129.957926px;}
.xb8{left:131.939999px;}
.x57{left:133.920001px;}
.x87{left:135.180005px;}
.xb7{left:136.439999px;}
.xb9{left:138.060001px;}
.x1a{left:141.301396px;}
.xa3{left:145.800007px;}
.xb5{left:147.060001px;}
.x58{left:151.199993px;}
.x98{left:152.819996px;}
.x1f{left:154.620002px;}
.x19{left:156.238372px;}
.x96{left:159.300007px;}
.x10{left:162.000000px;}
.x97{left:166.860008px;}
.x62{left:168.659998px;}
.x7{left:170.799750px;}
.x75{left:172.080008px;}
.xbb{left:179.460005px;}
.x99{left:180.719999px;}
.x71{left:187.560001px;}
.xb6{left:190.620002px;}
.x85{left:191.879998px;}
.x63{left:193.680005px;}
.x1d{left:194.938717px;}
.x20{left:199.080008px;}
.x52{left:202.319996px;}
.x4{left:203.484001px;}
.xe{left:208.505250px;}
.x76{left:210.419992px;}
.x21{left:215.280001px;}
.x59{left:216.360008px;}
.x16{left:217.436445px;}
.x84{left:224.099997px;}
.x64{left:228.240006px;}
.x8{left:229.497750px;}
.xaa{left:230.759994px;}
.x22{left:233.819996px;}
.x95{left:238.500000px;}
.x89{left:240.479994px;}
.xbc{left:244.620002px;}
.xa0{left:246.599997px;}
.x23{left:249.120002px;}
.x72{left:252.719999px;}
.x1b{left:256.136800px;}
.x17{left:259.920476px;}
.x65{left:261.900003px;}
.x86{left:264.599997px;}
.x24{left:266.580008px;}
.x88{left:267.840002px;}
.x5a{left:272.699993px;}
.x25{left:276.120002px;}
.x26{left:284.219999px;}
.x41{left:290.699993px;}
.x61{left:292.860008px;}
.x77{left:295.379998px;}
.x66{left:297.180005px;}
.x27{left:300.240006px;}
.xa4{left:304.379998px;}
.x18{left:305.997014px;}
.x42{left:308.699993px;}
.x94{left:309.959988px;}
.x8a{left:311.939999px;}
.xab{left:319.860008px;}
.x43{left:324.899987px;}
.x28{left:331.560001px;}
.x67{left:333.360008px;}
.x78{left:335.160015px;}
.x73{left:345.420010px;}
.x29{left:346.860008px;}
.x44{left:356.399987px;}
.x8b{left:358.560001px;}
.x1e{left:360.899987px;}
.x2a{left:364.319996px;}
.x5b{left:365.399987px;}
.x8c{left:366.839985px;}
.x79{left:368.459988px;}
.x45{left:371.519989px;}
.x2b{left:374.220017px;}
.x2c{left:382.319996px;}
.x46{left:388.980011px;}
.xac{left:390.240006px;}
.x83{left:394.379998px;}
.xbd{left:397.439999px;}
.x2d{left:398.519989px;}
.x13{left:402.300007px;}
.xa5{left:405.360008px;}
.x47{left:406.980011px;}
.xf{left:409.500000px;}
.x7a{left:414.180005px;}
.xad{left:416.519989px;}
.x2e{left:420.480011px;}
.x48{left:423.180005px;}
.x68{left:433.259994px;}
.x2f{left:435.600014px;}
.x7b{left:442.439999px;}
.x51{left:450.540012px;}
.x30{left:453.060001px;}
.x3{left:454.959000px;}
.x49{left:456.480011px;}
.x31{left:462.959988px;}
.x8d{left:464.399987px;}
.x32{left:471.060001px;}
.x5d{left:473.579990px;}
.x69{left:476.819996px;}
.xae{left:479.339985px;}
.xd{left:486.000000px;}
.x33{left:487.259994px;}
.x54{left:488.699993px;}
.x4a{left:493.019989px;}
.x9a{left:501.480011px;}
.x4b{left:502.920010px;}
.x34{left:505.800007px;}
.x6a{left:508.319996px;}
.x4c{left:511.019989px;}
.xa1{left:518.579990px;}
.x35{left:520.920010px;}
.xa6{left:522.899987px;}
.x4d{left:527.939999px;}
.x55{left:529.920010px;}
.x36{left:538.379998px;}
.x4e{left:543.060001px;}
.x8e{left:544.319996px;}
.x37{left:547.560001px;}
.x8f{left:552.600014px;}
.x38{left:555.660015px;}
.x4f{left:560.519989px;}
.x56{left:562.860008px;}
.x5c{left:567.360008px;}
.x50{left:568.980011px;}
.x39{left:572.040012px;}
.x5e{left:583.919975px;}
.x6b{left:585.179970px;}
.x9b{left:587.700027px;}
.x5f{left:589.500000px;}
.x3a{left:593.460023px;}
.xaf{left:594.539978px;}
.x14{left:608.220017px;}
.x15{left:616.679970px;}
.x7c{left:617.940033px;}
.x90{left:622.799973px;}
.x3b{left:626.039978px;}
.x3c{left:635.940033px;}
.x91{left:639.899987px;}
.x3d{left:644.039978px;}
.x7d{left:651.059967px;}
.xa9{left:655.200027px;}
.x6c{left:656.279983px;}
.x3e{left:660.240006px;}
.xb0{left:664.919975px;}
.x9c{left:672.840019px;}
.x9d{left:674.279983px;}
.x9e{left:683.460023px;}
.x6d{left:685.799973px;}
.xa2{left:690.840019px;}
.x3f{left:692.639992px;}
.x7e{left:694.440033px;}
.x40{left:707.759994px;}
.xa7{left:717.120002px;}
.x6e{left:724.860008px;}
.x7f{left:730.080025px;}
.x92{left:733.139992px;}
.x9f{left:760.500000px;}
.x6f{left:770.039978px;}
.x80{left:773.460023px;}
.x12{left:775.799973px;}
.x70{left:782.820030px;}
.xa8{left:787.679970px;}
.x60{left:792.179970px;}
.x93{left:803.340019px;}
.x81{left:809.100014px;}
.x82{left:846.720017px;}
.xb1{left:853.919975px;}
.xb2{left:880.200027px;}
.xb3{left:950.759994px;}
.xbe{left:962.644200px;}
.xb4{left:977.039978px;}
.xc0{left:1088.799750px;}
.xc1{left:1147.497750px;}
@media print{
.ve{vertical-align:-17.279788pt;}
.v7{vertical-align:-16.000000pt;}
.vb{vertical-align:-8.960084pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.548736pt;}
.v4{vertical-align:5.112206pt;}
.v2{vertical-align:6.398518pt;}
.vc{vertical-align:8.959960pt;}
.v5{vertical-align:12.800048pt;}
.v9{vertical-align:18.559996pt;}
.v6{vertical-align:21.119992pt;}
.vd{vertical-align:27.520016pt;}
.va{vertical-align:33.920044pt;}
.v1{vertical-align:44.156128pt;}
.ls2{letter-spacing:-2.773333pt;}
.ls1{letter-spacing:-2.320000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005213pt;}
.ls1e{letter-spacing:0.009732pt;}
.ls4{letter-spacing:0.010730pt;}
.lsc{letter-spacing:0.021037pt;}
.lsf{letter-spacing:0.030300pt;}
.ls18{letter-spacing:0.039862pt;}
.lsa{letter-spacing:0.073968pt;}
.ls7{letter-spacing:0.073972pt;}
.ls6{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.225492pt;}
.ls5{letter-spacing:0.225556pt;}
.ls13{letter-spacing:0.225584pt;}
.ls15{letter-spacing:0.225612pt;}
.ls1d{letter-spacing:0.225616pt;}
.ls22{letter-spacing:0.225740pt;}
.ls8{letter-spacing:2.296358pt;}
.lse{letter-spacing:6.430264pt;}
.lsb{letter-spacing:11.550320pt;}
.ls1f{letter-spacing:16.225736pt;}
.ls20{letter-spacing:16.865628pt;}
.ls16{letter-spacing:23.070340pt;}
.ls19{letter-spacing:46.249052pt;}
.lsd{letter-spacing:126.441125pt;}
.ls12{letter-spacing:184.328633pt;}
.ls10{letter-spacing:208.648701pt;}
.ls11{letter-spacing:219.528581pt;}
.ls14{letter-spacing:273.313682pt;}
.ls1c{letter-spacing:321.449124pt;}
.ls1a{letter-spacing:345.129176pt;}
.ls1b{letter-spacing:345.129296pt;}
.ls17{letter-spacing:952.489164pt;}
.ws15{word-spacing:-17.704159pt;}
.ws4{word-spacing:-17.694428pt;}
.ws10{word-spacing:-16.278847pt;}
.ws13{word-spacing:-14.742162pt;}
.ws12{word-spacing:-14.686318pt;}
.wsd{word-spacing:-14.053336pt;}
.ws5{word-spacing:-13.487965pt;}
.ws14{word-spacing:-13.321262pt;}
.wsb{word-spacing:-13.295966pt;}
.ws11{word-spacing:-13.270848pt;}
.wsf{word-spacing:-11.855268pt;}
.wse{word-spacing:-9.977880pt;}
.ws1{word-spacing:-9.936000pt;}
.ws3{word-spacing:-8.832000pt;}
.ws2{word-spacing:-4.485333pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:561.454551pt;}
.ws7{word-spacing:586.823573pt;}
.ws6{word-spacing:587.453569pt;}
.ws8{word-spacing:587.477029pt;}
.wsa{word-spacing:614.740816pt;}
.ws9{word-spacing:614.746752pt;}
._4{margin-left:-25.237333pt;}
._5{margin-left:-8.027200pt;}
._6{margin-left:-4.853333pt;}
._2{margin-left:-3.210667pt;}
._1{margin-left:-2.304000pt;}
._0{margin-left:-1.104000pt;}
._3{width:1.664000pt;}
._10{width:2.785772pt;}
._8{width:4.442947pt;}
._7{width:5.380229pt;}
._d{width:6.869561pt;}
._c{width:7.919973pt;}
._11{width:9.083204pt;}
._b{width:9.981596pt;}
._a{width:11.021743pt;}
._9{width:12.412948pt;}
._16{width:14.074983pt;}
._f{width:15.721421pt;}
._e{width:16.702560pt;}
._14{width:19.292797pt;}
._24{width:20.666230pt;}
._1e{width:21.809712pt;}
._1c{width:23.371000pt;}
._1d{width:24.637226pt;}
._1f{width:25.778028pt;}
._21{width:27.057222pt;}
._19{width:28.221734pt;}
._18{width:29.222305pt;}
._17{width:30.322655pt;}
._12{width:31.790239pt;}
._13{width:32.926353pt;}
._ad{width:33.951460pt;}
._1b{width:35.409316pt;}
._1a{width:36.567868pt;}
._26{width:37.782564pt;}
._8d{width:39.174546pt;}
._9d{width:40.595418pt;}
._92{width:44.297609pt;}
._25{width:45.865166pt;}
._15{width:46.888724pt;}
._51{width:48.368384pt;}
._22{width:49.412186pt;}
._23{width:50.515685pt;}
._af{width:51.614859pt;}
._49{width:52.825072pt;}
._48{width:54.517301pt;}
._31{width:59.868268pt;}
._66{width:64.216990pt;}
._98{width:65.810024pt;}
._64{width:66.863962pt;}
._65{width:67.828039pt;}
._55{width:70.139737pt;}
._4a{width:71.685638pt;}
._6b{width:76.486897pt;}
._4d{width:79.182430pt;}
._39{width:84.342088pt;}
._63{width:85.989826pt;}
._53{width:87.680601pt;}
._54{width:88.926970pt;}
._67{width:90.430247pt;}
._b0{width:92.140271pt;}
._40{width:93.298584pt;}
._3d{width:94.483492pt;}
._45{width:95.442425pt;}
._75{width:96.632354pt;}
._a9{width:100.342463pt;}
._94{width:103.378135pt;}
._5c{width:106.365280pt;}
._4c{width:109.116974pt;}
._3c{width:110.021419pt;}
._3a{width:110.964257pt;}
._36{width:112.651244pt;}
._57{width:114.645826pt;}
._5b{width:116.720074pt;}
._42{width:118.675489pt;}
._32{width:123.462537pt;}
._56{width:125.570272pt;}
._3e{width:127.316205pt;}
._33{width:129.761086pt;}
._20{width:131.934442pt;}
._35{width:132.885224pt;}
._46{width:134.622613pt;}
._3b{width:135.685404pt;}
._4e{width:137.225653pt;}
._27{width:138.290080pt;}
._a2{width:139.591225pt;}
._aa{width:142.744580pt;}
._68{width:144.512332pt;}
._69{width:145.576748pt;}
._2b{width:146.578261pt;}
._52{width:147.858741pt;}
._29{width:149.154199pt;}
._44{width:150.785224pt;}
._6a{width:153.047843pt;}
._a1{width:154.020133pt;}
._a6{width:155.050814pt;}
._3f{width:156.239200pt;}
._ab{width:157.881685pt;}
._a0{width:160.119183pt;}
._30{width:162.661060pt;}
._a8{width:164.437714pt;}
._6e{width:165.454528pt;}
._4f{width:166.595260pt;}
._76{width:167.699730pt;}
._2c{width:168.900841pt;}
._a5{width:173.420204pt;}
._6d{width:174.956312pt;}
._6c{width:176.106379pt;}
._38{width:177.815520pt;}
._a3{width:179.148208pt;}
._41{width:180.201847pt;}
._4b{width:182.589260pt;}
._34{width:184.576190pt;}
._47{width:185.599867pt;}
._2e{width:188.881638pt;}
._61{width:189.950462pt;}
._ac{width:191.004644pt;}
._37{width:192.045260pt;}
._9f{width:193.860500pt;}
._5d{width:194.911617pt;}
._60{width:196.840645pt;}
._9a{width:198.078529pt;}
._99{width:199.596277pt;}
._43{width:203.893134pt;}
._ae{width:205.241305pt;}
._5e{width:206.952597pt;}
._5f{width:208.207046pt;}
._9e{width:209.538809pt;}
._a4{width:210.742213pt;}
._59{width:212.447355pt;}
._62{width:215.125750pt;}
._8c{width:217.506693pt;}
._90{width:220.802830pt;}
._5a{width:226.561361pt;}
._9c{width:228.229918pt;}
._50{width:231.113607pt;}
._8f{width:242.074515pt;}
._a7{width:244.260655pt;}
._9b{width:251.431111pt;}
._95{width:252.392216pt;}
._93{width:264.711105pt;}
._84{width:265.730244pt;}
._85{width:271.668394pt;}
._7b{width:272.628967pt;}
._7f{width:273.692359pt;}
._81{width:277.921982pt;}
._91{width:282.030788pt;}
._7d{width:288.018713pt;}
._88{width:292.652828pt;}
._8a{width:294.558841pt;}
._83{width:302.758050pt;}
._2a{width:303.750903pt;}
._7e{width:308.643182pt;}
._89{width:314.867873pt;}
._82{width:320.691079pt;}
._80{width:326.298575pt;}
._86{width:333.992173pt;}
._7a{width:335.565766pt;}
._7c{width:337.156342pt;}
._58{width:341.169122pt;}
._96{width:344.725746pt;}
._97{width:345.969260pt;}
._74{width:350.146874pt;}
._77{width:351.737450pt;}
._28{width:357.259328pt;}
._87{width:370.516588pt;}
._8b{width:378.457707pt;}
._2d{width:412.072425pt;}
._73{width:484.224354pt;}
._78{width:485.814930pt;}
._79{width:486.875314pt;}
._72{width:514.044439pt;}
._2f{width:519.706867pt;}
._6f{width:586.303296pt;}
._71{width:593.103729pt;}
._70{width:750.128748pt;}
._8e{width:939.849111pt;}
.fs18{font-size:10.859400pt;}
.fs13{font-size:34.494560pt;}
.fs17{font-size:34.625600pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.666667pt;}
.fs11{font-size:42.798800pt;}
.fs12{font-size:45.354000pt;}
.fs14{font-size:47.909200pt;}
.fsf{font-size:47.999876pt;}
.fs6{font-size:48.000000pt;}
.fs19{font-size:48.091200pt;}
.fsd{font-size:53.019200pt;}
.fs10{font-size:53.119548pt;}
.fs15{font-size:53.220800pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.768400pt;}
.fs5{font-size:61.333333pt;}
.fsc{font-size:63.878800pt;}
.fs0{font-size:64.000000pt;}
.fs16{font-size:64.121596pt;}
.fsa{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:138.666667pt;}
.fs7{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y19d{bottom:1.600006pt;}
.y1dd{bottom:2.559997pt;}
.y123{bottom:2.559998pt;}
.y121{bottom:2.560012pt;}
.y21b{bottom:2.560028pt;}
.y1b3{bottom:2.879944pt;}
.y158{bottom:2.879975pt;}
.y14e{bottom:2.879989pt;}
.y14b{bottom:2.880004pt;}
.yc4{bottom:2.880005pt;}
.yff{bottom:3.039978pt;}
.yfa{bottom:3.039994pt;}
.y102{bottom:3.199982pt;}
.yfd{bottom:3.200012pt;}
.yc0{bottom:3.520004pt;}
.yea{bottom:18.239990pt;}
.ye9{bottom:21.440002pt;}
.ye7{bottom:28.000000pt;}
.y28{bottom:35.994466pt;}
.ye4{bottom:39.359986pt;}
.y24{bottom:47.390333pt;}
.y42{bottom:47.395867pt;}
.y27{bottom:50.661133pt;}
.y9f{bottom:50.880005pt;}
.y6{bottom:59.133337pt;}
.y26{bottom:65.327799pt;}
.y25{bottom:79.994466pt;}
.y5{bottom:86.333337pt;}
.yf6{bottom:98.880005pt;}
.yf2{bottom:106.880005pt;}
.y9e{bottom:108.960022pt;}
.yf5{bottom:114.239990pt;}
.ybd{bottom:116.960022pt;}
.y246{bottom:117.280029pt;}
.y1d5{bottom:119.359985pt;}
.yd3{bottom:120.960022pt;}
.y23{bottom:123.790666pt;}
.yf4{bottom:129.599976pt;}
.yf1{bottom:134.559998pt;}
.y26b{bottom:135.359985pt;}
.y11f{bottom:135.840027pt;}
.y9d{bottom:136.640015pt;}
.ybc{bottom:144.640015pt;}
.yf3{bottom:144.799988pt;}
.y245{bottom:144.960022pt;}
.y1d4{bottom:146.880005pt;}
.yd2{bottom:148.479980pt;}
.y143{bottom:148.640015pt;}
.y26a{bottom:153.760010pt;}
.yf0{bottom:162.080017pt;}
.y11e{bottom:163.520020pt;}
.y9c{bottom:164.159973pt;}
.y1c1{bottom:165.440002pt;}
.ybb{bottom:172.159973pt;}
.y244{bottom:172.479980pt;}
.y1d3{bottom:174.559998pt;}
.y1a{bottom:175.052000pt;}
.yd1{bottom:176.159973pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.yef{bottom:190.080017pt;}
.y269{bottom:190.559998pt;}
.y11d{bottom:191.039978pt;}
.y9b{bottom:191.840027pt;}
.y1c0{bottom:192.960022pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.yba{bottom:199.840027pt;}
.y243{bottom:200.159973pt;}
.y1d2{bottom:202.080017pt;}
.yd0{bottom:203.679993pt;}
.y142{bottom:203.840027pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y268{bottom:208.960022pt;}
.y1bf{bottom:210.880005pt;}
.yee{bottom:217.760010pt;}
.y11c{bottom:218.719971pt;}
.y9a{bottom:219.359985pt;}
.y238{bottom:223.359985pt;}
.y1be{bottom:226.239990pt;}
.yb9{bottom:227.359985pt;}
.y242{bottom:227.679993pt;}
.y1d1{bottom:229.760010pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ycf{bottom:231.359985pt;}
.y16d{bottom:234.400024pt;}
.y237{bottom:241.280029pt;}
.y1bd{bottom:241.599976pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.yed{bottom:245.440002pt;}
.y267{bottom:245.760010pt;}
.y11b{bottom:246.239990pt;}
.y99{bottom:247.039978pt;}
.y203{bottom:247.679993pt;}
.y256{bottom:250.559998pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yb8{bottom:255.039978pt;}
.y241{bottom:255.359985pt;}
.y236{bottom:256.640015pt;}
.y1bc{bottom:256.960022pt;}
.y1d0{bottom:257.280029pt;}
.yce{bottom:258.880005pt;}
.y141{bottom:259.039978pt;}
.y16c{bottom:261.919983pt;}
.y266{bottom:264.159973pt;}
.y202{bottom:265.280029pt;}
.yec{bottom:272.960022pt;}
.y11a{bottom:273.919983pt;}
.y98{bottom:274.559998pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y234{bottom:277.760010pt;}
.y235{bottom:280.320007pt;}
.y199{bottom:281.919983pt;}
.yb7{bottom:282.559998pt;}
.y201{bottom:282.880005pt;}
.y1cf{bottom:284.960022pt;}
.y1bb{bottom:286.080017pt;}
.ycd{bottom:286.559998pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.ye8{bottom:288.000000pt;}
.y255{bottom:288.960022pt;}
.y16b{bottom:289.599976pt;}
.y232{bottom:291.520020pt;}
.y233{bottom:294.080017pt;}
.y140{bottom:295.200012pt;}
.ye3{bottom:298.239990pt;}
.y200{bottom:300.640015pt;}
.y265{bottom:300.960022pt;}
.y119{bottom:301.440002pt;}
.y97{bottom:302.239990pt;}
.y4a{bottom:303.600133pt;}
.y230{bottom:305.279999pt;}
.yeb{bottom:306.239990pt;}
.ye6{bottom:306.400024pt;}
.y231{bottom:307.839996pt;}
.y11{bottom:309.452000pt;}
.y198{bottom:309.599976pt;}
.yb6{bottom:310.239990pt;}
.y240{bottom:310.559998pt;}
.y183{bottom:312.320007pt;}
.y1ce{bottom:312.479980pt;}
.y13f{bottom:312.799988pt;}
.ycc{bottom:314.080017pt;}
.y16a{bottom:317.119995pt;}
.y49{bottom:318.000133pt;}
.y264{bottom:319.359985pt;}
.y22f{bottom:321.760010pt;}
.y1ff{bottom:322.080017pt;}
.y1ba{bottom:326.880005pt;}
.y254{bottom:327.200012pt;}
.y1fe{bottom:327.840027pt;}
.y118{bottom:329.119995pt;}
.y96{bottom:329.760010pt;}
.y182{bottom:330.239990pt;}
.y13e{bottom:330.400024pt;}
.y48{bottom:332.400133pt;}
.y22d{bottom:332.959991pt;}
.ye5{bottom:334.400024pt;}
.y22e{bottom:335.519989pt;}
.y197{bottom:337.119995pt;}
.yb5{bottom:337.760010pt;}
.y23f{bottom:338.080017pt;}
.y1cd{bottom:340.000000pt;}
.y1fd{bottom:341.599976pt;}
.ycb{bottom:341.760010pt;}
.y10{bottom:343.809333pt;}
.y169{bottom:344.799988pt;}
.y181{bottom:345.600006pt;}
.y22b{bottom:346.720001pt;}
.y47{bottom:346.800133pt;}
.y1b9{bottom:347.200012pt;}
.y13d{bottom:348.000000pt;}
.y22c{bottom:349.279999pt;}
.y253{bottom:355.039978pt;}
.y1fc{bottom:355.520020pt;}
.y263{bottom:356.159973pt;}
.y117{bottom:356.640015pt;}
.y95{bottom:357.440002pt;}
.y5c{bottom:358.400133pt;}
.y229{bottom:360.480011pt;}
.y46{bottom:361.200133pt;}
.yf{bottom:362.706666pt;}
.y22a{bottom:363.040009pt;}
.y196{bottom:364.799988pt;}
.yb4{bottom:365.440002pt;}
.y13c{bottom:365.760010pt;}
.y1b8{bottom:367.679993pt;}
.yca{bottom:369.280029pt;}
.y3f{bottom:371.461399pt;}
.y168{bottom:372.320007pt;}
.y180{bottom:373.920013pt;}
.y5b{bottom:374.400133pt;}
.y262{bottom:374.559998pt;}
.y45{bottom:375.600133pt;}
.y41{bottom:376.359933pt;}
.y228{bottom:376.959991pt;}
.y252{bottom:382.719971pt;}
.y1fa{bottom:383.039978pt;}
.y13b{bottom:383.359985pt;}
.y116{bottom:384.320007pt;}
.y1fb{bottom:384.799988pt;}
.y94{bottom:384.960022pt;}
.y1b7{bottom:388.000000pt;}
.y227{bottom:388.799988pt;}
.y17f{bottom:389.279999pt;}
.y44{bottom:390.000133pt;}
.y5a{bottom:390.400133pt;}
.y195{bottom:392.320007pt;}
.yb3{bottom:392.960022pt;}
.y23e{bottom:393.280029pt;}
.y1cc{bottom:395.200012pt;}
.y1f9{bottom:396.799988pt;}
.yc9{bottom:396.960022pt;}
.y167{bottom:400.000000pt;}
.y225{bottom:403.200012pt;}
.y43{bottom:404.400133pt;}
.y17e{bottom:404.640015pt;}
.y226{bottom:405.760010pt;}
.y59{bottom:406.400133pt;}
.y13a{bottom:407.039978pt;}
.y1b6{bottom:408.479980pt;}
.y251{bottom:410.239990pt;}
.y1f7{bottom:411.359985pt;}
.y115{bottom:411.840027pt;}
.y93{bottom:412.640015pt;}
.y7a{bottom:415.345867pt;}
.y3e{bottom:416.794733pt;}
.y40{bottom:418.194599pt;}
.y1f6{bottom:418.239990pt;}
.y224{bottom:419.679993pt;}
.y17d{bottom:420.000000pt;}
.yb2{bottom:420.640015pt;}
.y23d{bottom:420.960022pt;}
.y58{bottom:422.400133pt;}
.y1cb{bottom:422.880005pt;}
.y139{bottom:424.159973pt;}
.yc8{bottom:424.479980pt;}
.y1f8{bottom:425.119995pt;}
.y166{bottom:427.520020pt;}
.y8e{bottom:428.000000pt;}
.y79{bottom:428.679200pt;}
.y1b5{bottom:428.799988pt;}
.y261{bottom:429.760010pt;}
.y222{bottom:430.880005pt;}
.ye{bottom:430.990669pt;}
.y223{bottom:433.440002pt;}
.y17c{bottom:435.839996pt;}
.y250{bottom:437.919983pt;}
.y57{bottom:438.400133pt;}
.y1f4{bottom:438.880005pt;}
.y114{bottom:439.520020pt;}
.y92{bottom:440.159973pt;}
.y138{bottom:441.280029pt;}
.y78{bottom:442.012533pt;}
.y220{bottom:444.640015pt;}
.y1f3{bottom:445.760010pt;}
.y8d{bottom:446.400024pt;}
.yd{bottom:446.990669pt;}
.y221{bottom:447.200012pt;}
.y194{bottom:447.520020pt;}
.yb1{bottom:448.159973pt;}
.y23c{bottom:448.479980pt;}
.y17b{bottom:448.799988pt;}
.y1b4{bottom:449.280029pt;}
.y1ca{bottom:450.400024pt;}
.yc7{bottom:452.159973pt;}
.y1f5{bottom:452.640015pt;}
.y56{bottom:454.400133pt;}
.y165{bottom:455.200012pt;}
.y51{bottom:457.994933pt;}
.y21e{bottom:458.399994pt;}
.y137{bottom:458.559998pt;}
.y21f{bottom:460.959991pt;}
.yc{bottom:462.990669pt;}
.y8c{bottom:464.799988pt;}
.y24f{bottom:465.440002pt;}
.y1f1{bottom:466.559998pt;}
.y77{bottom:466.684400pt;}
.y113{bottom:467.039978pt;}
.y91{bottom:467.840027pt;}
.y1c9{bottom:468.320007pt;}
.y1b2{bottom:470.239990pt;}
.y55{bottom:470.400133pt;}
.y17a{bottom:472.160004pt;}
.y1f0{bottom:473.440002pt;}
.y21d{bottom:474.880005pt;}
.y136{bottom:475.679993pt;}
.yb0{bottom:475.840027pt;}
.y23b{bottom:476.159973pt;}
.yb{bottom:478.990666pt;}
.yc6{bottom:479.679993pt;}
.y1f2{bottom:480.320007pt;}
.y164{bottom:482.719971pt;}
.y8b{bottom:483.200012pt;}
.y1c8{bottom:483.679993pt;}
.y260{bottom:484.960022pt;}
.y50{bottom:485.333467pt;}
.y193{bottom:485.760010pt;}
.y21a{bottom:486.079987pt;}
.y54{bottom:486.400133pt;}
.y179{bottom:487.519989pt;}
.y21c{bottom:488.640015pt;}
.y76{bottom:491.356400pt;}
.y1b1{bottom:491.359985pt;}
.y135{bottom:492.799988pt;}
.y24e{bottom:493.119995pt;}
.y1ee{bottom:494.080017pt;}
.y112{bottom:494.719971pt;}
.ya{bottom:494.990666pt;}
.y90{bottom:495.359985pt;}
.y218{bottom:499.839996pt;}
.y1ed{bottom:500.960022pt;}
.y4f{bottom:501.333467pt;}
.y219{bottom:502.399994pt;}
.y53{bottom:502.400133pt;}
.y178{bottom:502.880005pt;}
.yaf{bottom:503.359985pt;}
.y23a{bottom:503.679993pt;}
.y75{bottom:504.689733pt;}
.yc5{bottom:507.359985pt;}
.y1ef{bottom:507.840027pt;}
.y1c7{bottom:508.000000pt;}
.y134{bottom:509.919983pt;}
.y163{bottom:510.400024pt;}
.y1b0{bottom:511.679993pt;}
.y8a{bottom:512.320007pt;}
.y192{bottom:513.440002pt;}
.y217{bottom:516.959991pt;}
.y4e{bottom:517.333467pt;}
.y74{bottom:518.023067pt;}
.y177{bottom:518.079987pt;}
.y52{bottom:518.400133pt;}
.y24d{bottom:520.640015pt;}
.y1c5{bottom:521.599976pt;}
.y1eb{bottom:521.760010pt;}
.y111{bottom:522.239990pt;}
.yc3{bottom:522.400024pt;}
.y8f{bottom:523.039978pt;}
.y1c6{bottom:524.799988pt;}
.y133{bottom:525.119995pt;}
.yc2{bottom:525.280029pt;}
.y1ea{bottom:528.640015pt;}
.y215{bottom:528.799988pt;}
.yae{bottom:531.039978pt;}
.y216{bottom:531.359985pt;}
.y1af{bottom:532.159973pt;}
.y176{bottom:534.559998pt;}
.y1ec{bottom:535.520020pt;}
.y162{bottom:537.919983pt;}
.y1c3{bottom:539.200012pt;}
.y3d{bottom:539.861266pt;}
.y25f{bottom:540.159973pt;}
.yc1{bottom:540.479980pt;}
.y191{bottom:540.960022pt;}
.y213{bottom:542.559998pt;}
.y73{bottom:542.694933pt;}
.y214{bottom:545.119995pt;}
.y132{bottom:545.440002pt;}
.y175{bottom:547.679993pt;}
.y24c{bottom:548.320007pt;}
.y1e8{bottom:549.279999pt;}
.y89{bottom:550.559998pt;}
.y1c2{bottom:550.720001pt;}
.y1ae{bottom:552.480011pt;}
.y72{bottom:556.028267pt;}
.y110{bottom:556.160004pt;}
.y211{bottom:556.320007pt;}
.y3c{bottom:558.527933pt;}
.yad{bottom:558.559998pt;}
.y212{bottom:558.880005pt;}
.y1c4{bottom:559.200012pt;}
.y131{bottom:562.559998pt;}
.y1e9{bottom:563.040009pt;}
.y161{bottom:565.600006pt;}
.ye2{bottom:567.679993pt;}
.ye1{bottom:567.838422pt;}
.y190{bottom:568.640015pt;}
.y71{bottom:569.361600pt;}
.y174{bottom:570.880005pt;}
.y210{bottom:572.800003pt;}
.y1ad{bottom:572.959991pt;}
.y9{bottom:573.786667pt;}
.y1e6{bottom:576.959991pt;}
.y88{bottom:578.239990pt;}
.y130{bottom:579.679993pt;}
.y1e5{bottom:583.839996pt;}
.y20e{bottom:584.000000pt;}
.y10f{bottom:585.279999pt;}
.yac{bottom:586.239990pt;}
.y173{bottom:586.240005pt;}
.y20f{bottom:586.559998pt;}
.y1e7{bottom:590.720001pt;}
.y8{bottom:592.685334pt;}
.y160{bottom:593.119995pt;}
.y1ac{bottom:593.279999pt;}
.y26c{bottom:593.920013pt;}
.y70{bottom:594.033467pt;}
.y25e{bottom:595.359985pt;}
.y18f{bottom:596.160004pt;}
.ydf{bottom:596.322229pt;}
.y12f{bottom:596.959991pt;}
.y20c{bottom:597.759995pt;}
.y4d{bottom:600.000000pt;}
.y20d{bottom:600.320007pt;}
.y3b{bottom:601.194599pt;}
.y172{bottom:601.600006pt;}
.y1e3{bottom:604.480011pt;}
.y10e{bottom:605.119995pt;}
.y87{bottom:605.760010pt;}
.y6f{bottom:607.366800pt;}
.yd8{bottom:610.560466pt;}
.y1e2{bottom:611.359985pt;}
.y20a{bottom:611.520004pt;}
.yab{bottom:613.760010pt;}
.y12e{bottom:614.079987pt;}
.y20b{bottom:614.080002pt;}
.y171{bottom:618.080002pt;}
.y1e4{bottom:618.239990pt;}
.y6e{bottom:620.700133pt;}
.y15f{bottom:620.799988pt;}
.y10d{bottom:622.720001pt;}
.y18e{bottom:623.839996pt;}
.y37{bottom:623.994733pt;}
.y209{bottom:628.000000pt;}
.y4c{bottom:628.800000pt;}
.y12d{bottom:631.200012pt;}
.y1e0{bottom:632.160004pt;}
.y86{bottom:633.440002pt;}
.y6d{bottom:634.033467pt;}
.y1ab{bottom:634.079987pt;}
.yd7{bottom:636.001082pt;}
.y1df{bottom:639.040009pt;}
.y10c{bottom:639.519989pt;}
.y208{bottom:639.839996pt;}
.y36{bottom:639.994733pt;}
.yaa{bottom:641.440002pt;}
.yd9{bottom:643.039646pt;}
.y10b{bottom:644.480011pt;}
.y7{bottom:645.598667pt;}
.y1e1{bottom:645.920013pt;}
.y1a9{bottom:646.559998pt;}
.y12c{bottom:648.320007pt;}
.y3a{bottom:650.527933pt;}
.y25d{bottom:650.559998pt;}
.y18d{bottom:651.359985pt;}
.y170{bottom:651.679993pt;}
.y207{bottom:654.240005pt;}
.y1aa{bottom:654.559998pt;}
.y35{bottom:655.994733pt;}
.y10a{bottom:658.079987pt;}
.y6c{bottom:658.705467pt;}
.y85{bottom:660.959991pt;}
.y109{bottom:661.279999pt;}
.y12b{bottom:663.519989pt;}
.y205{bottom:664.160004pt;}
.y1de{bottom:665.119995pt;}
.y206{bottom:668.800003pt;}
.ya9{bottom:668.959991pt;}
.y4{bottom:668.977329pt;}
.y16f{bottom:670.080002pt;}
.y34{bottom:671.994733pt;}
.y6b{bottom:672.038800pt;}
.yda{bottom:675.522473pt;}
.y1a8{bottom:675.679993pt;}
.y15e{bottom:676.000000pt;}
.y18c{bottom:679.040009pt;}
.y1da{bottom:679.200012pt;}
.y1dc{bottom:681.760010pt;}
.y108{bottom:683.519989pt;}
.y12a{bottom:683.839996pt;}
.y204{bottom:686.559998pt;}
.ye0{bottom:686.880084pt;}
.y25c{bottom:687.359985pt;}
.y84{bottom:688.640015pt;}
.y15d{bottom:696.160004pt;}
.ya8{bottom:696.640015pt;}
.y6a{bottom:696.710667pt;}
.y18b{bottom:696.959991pt;}
.y1db{bottom:698.079987pt;}
.y39{bottom:699.861266pt;}
.y129{bottom:700.959991pt;}
.y107{bottom:703.200012pt;}
.y33{bottom:703.994599pt;}
.y16e{bottom:704.959999pt;}
.y25b{bottom:705.760010pt;}
.ydb{bottom:707.842687pt;}
.yd6{bottom:708.639551pt;}
.y69{bottom:710.044000pt;}
.y15c{bottom:711.519989pt;}
.y18a{bottom:712.160004pt;}
.y1d9{bottom:715.040009pt;}
.y83{bottom:716.160004pt;}
.y1a7{bottom:717.119995pt;}
.y106{bottom:717.760010pt;}
.y128{bottom:718.079987pt;}
.y68{bottom:723.377333pt;}
.ya7{bottom:724.160004pt;}
.y105{bottom:734.399994pt;}
.y127{bottom:735.359985pt;}
.y189{bottom:736.160004pt;}
.y1d8{bottom:736.480011pt;}
.y1a6{bottom:737.440002pt;}
.y104{bottom:737.600006pt;}
.ydc{bottom:740.321115pt;}
.y25a{bottom:742.559998pt;}
.y82{bottom:743.839996pt;}
.y15b{bottom:744.000000pt;}
.y103{bottom:746.559998pt;}
.y15a{bottom:746.880005pt;}
.y67{bottom:748.049200pt;}
.y38{bottom:749.194599pt;}
.y188{bottom:751.519989pt;}
.ya6{bottom:751.839996pt;}
.y126{bottom:752.480011pt;}
.yd4{bottom:756.639436pt;}
.y1a5{bottom:756.959991pt;}
.y157{bottom:759.200012pt;}
.y101{bottom:760.320007pt;}
.y1d7{bottom:760.959991pt;}
.y66{bottom:761.382533pt;}
.y159{bottom:762.079987pt;}
.y100{bottom:763.519989pt;}
.y187{bottom:766.880005pt;}
.y125{bottom:769.600006pt;}
.y81{bottom:771.359985pt;}
.ydd{bottom:772.799561pt;}
.y1a4{bottom:776.320007pt;}
.yfe{bottom:777.920013pt;}
.ya5{bottom:779.359985pt;}
.y155{bottom:781.279999pt;}
.y3{bottom:781.661334pt;}
.yd5{bottom:782.238981pt;}
.y186{bottom:782.239990pt;}
.y32{bottom:783.994599pt;}
.y65{bottom:786.054533pt;}
.y124{bottom:786.720001pt;}
.y156{bottom:790.880005pt;}
.yfc{bottom:794.720001pt;}
.y185{bottom:795.359985pt;}
.y1a3{bottom:796.640015pt;}
.y1d6{bottom:797.760010pt;}
.yfb{bottom:797.920013pt;}
.y153{bottom:798.079987pt;}
.y80{bottom:799.040009pt;}
.y64{bottom:799.387867pt;}
.y31{bottom:799.994599pt;}
.y4b{bottom:801.066933pt;}
.y122{bottom:801.919998pt;}
.yde{bottom:805.119775pt;}
.ya4{bottom:807.039993pt;}
.y154{bottom:807.679993pt;}
.yf9{bottom:812.320007pt;}
.y63{bottom:812.721200pt;}
.y30{bottom:815.994599pt;}
.y151{bottom:816.160004pt;}
.y1a2{bottom:817.119995pt;}
.y120{bottom:819.679993pt;}
.y184{bottom:823.839996pt;}
.y152{bottom:825.759995pt;}
.y7f{bottom:826.559998pt;}
.y2f{bottom:831.994599pt;}
.yf8{bottom:832.320007pt;}
.y14f{bottom:834.080002pt;}
.ya3{bottom:834.559998pt;}
.y24b{bottom:834.880005pt;}
.y1a1{bottom:835.679993pt;}
.y62{bottom:837.393067pt;}
.y2{bottom:840.112001pt;}
.ybf{bottom:842.720001pt;}
.y150{bottom:843.679993pt;}
.ybe{bottom:846.240005pt;}
.y2e{bottom:847.994599pt;}
.y19f{bottom:848.160004pt;}
.y259{bottom:852.960007pt;}
.y7e{bottom:854.240005pt;}
.y14c{bottom:854.559998pt;}
.y1a0{bottom:856.160004pt;}
.yf7{bottom:859.199997pt;}
.y1{bottom:859.312000pt;}
.y61{bottom:862.065067pt;}
.ya2{bottom:862.240005pt;}
.y24a{bottom:862.559998pt;}
.y2d{bottom:863.994599pt;}
.y14d{bottom:864.160004pt;}
.y19c{bottom:869.279999pt;}
.y258{bottom:871.360001pt;}
.y60{bottom:875.398400pt;}
.y149{bottom:876.160004pt;}
.y19e{bottom:877.119995pt;}
.y2c{bottom:879.994599pt;}
.y7d{bottom:881.759995pt;}
.y14a{bottom:885.759995pt;}
.y5f{bottom:888.731733pt;}
.ya1{bottom:889.759995pt;}
.y249{bottom:890.080002pt;}
.y147{bottom:894.080002pt;}
.y2b{bottom:895.994599pt;}
.y19b{bottom:898.240005pt;}
.y5e{bottom:902.065067pt;}
.y148{bottom:903.679993pt;}
.y145{bottom:907.199997pt;}
.y257{bottom:908.160004pt;}
.y7c{bottom:909.440002pt;}
.y146{bottom:910.080002pt;}
.ya0{bottom:917.440002pt;}
.y248{bottom:917.759995pt;}
.y19a{bottom:919.360001pt;}
.y144{bottom:926.559998pt;}
.y2a{bottom:927.994599pt;}
.y5d{bottom:928.731733pt;}
.y239{bottom:944.800003pt;}
.y7b{bottom:944.959999pt;}
.y247{bottom:945.279999pt;}
.y29{bottom:947.194599pt;}
.h40{height:2.879989pt;}
.h3f{height:2.880004pt;}
.h3e{height:2.880005pt;}
.h54{height:8.011989pt;}
.h49{height:9.440002pt;}
.h5a{height:13.279968pt;}
.h59{height:13.279998pt;}
.h37{height:13.279999pt;}
.h3a{height:13.280029pt;}
.h4f{height:13.759979pt;}
.h56{height:13.759995pt;}
.h35{height:13.760009pt;}
.h1a{height:14.719971pt;}
.h41{height:14.720001pt;}
.h3b{height:15.199997pt;}
.h48{height:15.200013pt;}
.h32{height:16.319977pt;}
.h33{height:16.479981pt;}
.h31{height:16.479996pt;}
.h34{height:16.480011pt;}
.h4d{height:16.480041pt;}
.h2f{height:16.799988pt;}
.h4c{height:16.959992pt;}
.h1c{height:17.759949pt;}
.h19{height:17.919998pt;}
.h4a{height:25.449844pt;}
.h7{height:28.560000pt;}
.h2d{height:31.556773pt;}
.h14{height:34.133333pt;}
.h15{height:34.261333pt;}
.h38{height:35.347071pt;}
.h57{height:35.481349pt;}
.h36{height:36.025473pt;}
.h55{height:36.162328pt;}
.h25{height:38.223146pt;}
.h22{height:38.389353pt;}
.hb{height:38.400000pt;}
.hc{height:38.544000pt;}
.h3d{height:38.599427pt;}
.h1b{height:39.117193pt;}
.h46{height:39.265932pt;}
.h3c{height:39.867953pt;}
.h6{height:40.800000pt;}
.hf{height:42.666667pt;}
.he{height:42.826667pt;}
.h3{height:42.840000pt;}
.h39{height:42.973242pt;}
.h1d{height:43.054576pt;}
.h58{height:43.136491pt;}
.h45{height:43.768380pt;}
.h30{height:44.191082pt;}
.h2c{height:44.353346pt;}
.h4e{height:44.985433pt;}
.h26{height:46.399964pt;}
.h2a{height:47.129329pt;}
.h18{height:47.556773pt;}
.h21{height:47.646782pt;}
.h43{height:47.737602pt;}
.h16{height:48.033863pt;}
.h20{height:48.166782pt;}
.h44{height:48.216434pt;}
.h2{height:48.960000pt;}
.ha{height:49.066667pt;}
.hd{height:51.200000pt;}
.h2e{height:52.713648pt;}
.h28{height:53.599976pt;}
.h24{height:53.835356pt;}
.h23{height:54.559998pt;}
.h50{height:55.225545pt;}
.h17{height:57.297537pt;}
.h47{height:57.515318pt;}
.h2b{height:59.509345pt;}
.h13{height:59.733333pt;}
.h27{height:64.799988pt;}
.h5{height:69.360000pt;}
.h29{height:70.097585pt;}
.h51{height:70.493258pt;}
.h52{height:70.493262pt;}
.h12{height:76.800000pt;}
.h4b{height:78.111126pt;}
.h1e{height:87.210705pt;}
.h1f{height:87.210776pt;}
.h53{height:98.013278pt;}
.h4{height:105.826671pt;}
.h11{height:110.933333pt;}
.h10{height:123.733333pt;}
.h42{height:816.000000pt;}
.h8{height:1055.994466pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w1b{width:3.520020pt;}
.w24{width:4.000000pt;}
.w58{width:4.800003pt;}
.w28{width:4.960022pt;}
.w3a{width:6.080002pt;}
.w26{width:6.080018pt;}
.wf{width:6.559997pt;}
.wb{width:6.559998pt;}
.w37{width:6.719971pt;}
.w2c{width:6.720001pt;}
.w32{width:6.720002pt;}
.w34{width:6.720032pt;}
.w48{width:7.039978pt;}
.w3f{width:7.199997pt;}
.w44{width:7.359985pt;}
.w43{width:7.359986pt;}
.w45{width:7.360000pt;}
.w40{width:7.360001pt;}
.w41{width:7.360015pt;}
.w42{width:7.360016pt;}
.w46{width:7.360046pt;}
.w1d{width:7.520020pt;}
.w4{width:7.680053pt;}
.w20{width:8.000000pt;}
.w25{width:8.159973pt;}
.w5a{width:8.159974pt;}
.w22{width:8.159989pt;}
.w1f{width:8.160003pt;}
.w2a{width:8.160034pt;}
.w5b{width:8.160035pt;}
.w6{width:8.960022pt;}
.w9{width:9.600006pt;}
.w19{width:9.759979pt;}
.wa{width:9.759994pt;}
.w14{width:9.760009pt;}
.we{width:9.760010pt;}
.w38{width:11.360047pt;}
.w6c{width:11.519997pt;}
.w8{width:12.000000pt;}
.wc{width:14.080002pt;}
.w12{width:14.239990pt;}
.w10{width:14.239991pt;}
.w17{width:14.240021pt;}
.w1c{width:16.000000pt;}
.w4c{width:16.960007pt;}
.w13{width:17.760010pt;}
.w27{width:18.719971pt;}
.w11{width:19.839997pt;}
.w15{width:20.800018pt;}
.w69{width:21.919998pt;}
.w30{width:22.720001pt;}
.w65{width:23.359985pt;}
.w63{width:23.360000pt;}
.w66{width:23.360015pt;}
.w64{width:23.360016pt;}
.w67{width:23.360046pt;}
.w68{width:25.599998pt;}
.w2f{width:26.720002pt;}
.w6a{width:27.199997pt;}
.w31{width:28.000000pt;}
.wd{width:28.799988pt;}
.w16{width:29.440002pt;}
.w1a{width:29.600006pt;}
.w18{width:29.760010pt;}
.w6d{width:30.080002pt;}
.w2d{width:30.720001pt;}
.w2e{width:31.360001pt;}
.w3b{width:32.639999pt;}
.w6b{width:33.279999pt;}
.w5e{width:34.559998pt;}
.w35{width:34.719970pt;}
.w39{width:34.720001pt;}
.w36{width:34.720031pt;}
.w57{width:36.479996pt;}
.w33{width:36.639984pt;}
.w1e{width:36.640015pt;}
.w47{width:37.120003pt;}
.w56{width:38.400009pt;}
.w51{width:38.720001pt;}
.w7{width:40.479996pt;}
.w50{width:41.440002pt;}
.w2b{width:46.720001pt;}
.w4d{width:53.279998pt;}
.w62{width:54.720031pt;}
.w21{width:58.080002pt;}
.w3e{width:59.360001pt;}
.w53{width:62.399964pt;}
.w55{width:62.400024pt;}
.w61{width:62.719971pt;}
.w5f{width:62.720001pt;}
.w60{width:62.720002pt;}
.w3d{width:63.520004pt;}
.w4b{width:64.639999pt;}
.w4e{width:64.640000pt;}
.w4a{width:67.360001pt;}
.w5c{width:68.479980pt;}
.w59{width:68.480011pt;}
.w52{width:71.040008pt;}
.w54{width:75.520019pt;}
.w23{width:82.399994pt;}
.w4f{width:88.960007pt;}
.w3c{width:118.880005pt;}
.w5d{width:123.199997pt;}
.w29{width:180.159973pt;}
.w5{width:183.040009pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.w49{width:1056.000000pt;}
.x6{left:-768.000000pt;}
.x0{left:0.000000pt;}
.x9{left:28.604133pt;}
.xa{left:38.738933pt;}
.x5{left:39.683733pt;}
.xbf{left:48.000000pt;}
.x74{left:79.199997pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:96.000000pt;}
.x53{left:98.720001pt;}
.x11{left:103.680000pt;}
.xba{left:107.360001pt;}
.xb{left:114.000000pt;}
.x1c{left:115.518157pt;}
.xb8{left:117.279999pt;}
.x57{left:119.040001pt;}
.x87{left:120.160004pt;}
.xb7{left:121.279999pt;}
.xb9{left:122.720001pt;}
.x1a{left:125.601241pt;}
.xa3{left:129.600006pt;}
.xb5{left:130.720001pt;}
.x58{left:134.399994pt;}
.x98{left:135.839996pt;}
.x1f{left:137.440002pt;}
.x19{left:138.878553pt;}
.x96{left:141.600006pt;}
.x10{left:144.000000pt;}
.x97{left:148.320007pt;}
.x62{left:149.919998pt;}
.x7{left:151.822000pt;}
.x75{left:152.960007pt;}
.xbb{left:159.520004pt;}
.x99{left:160.639999pt;}
.x71{left:166.720001pt;}
.xb6{left:169.440002pt;}
.x85{left:170.559998pt;}
.x63{left:172.160004pt;}
.x1d{left:173.278860pt;}
.x20{left:176.960007pt;}
.x52{left:179.839996pt;}
.x4{left:180.874667pt;}
.xe{left:185.338000pt;}
.x76{left:187.039993pt;}
.x21{left:191.360001pt;}
.x59{left:192.320007pt;}
.x16{left:193.276840pt;}
.x84{left:199.199997pt;}
.x64{left:202.880005pt;}
.x8{left:203.998000pt;}
.xaa{left:205.119995pt;}
.x22{left:207.839996pt;}
.x95{left:212.000000pt;}
.x89{left:213.759995pt;}
.xbc{left:217.440002pt;}
.xa0{left:219.199997pt;}
.x23{left:221.440002pt;}
.x72{left:224.639999pt;}
.x1b{left:227.677156pt;}
.x17{left:231.040423pt;}
.x65{left:232.800003pt;}
.x86{left:235.199997pt;}
.x24{left:236.960007pt;}
.x88{left:238.080002pt;}
.x5a{left:242.399994pt;}
.x25{left:245.440002pt;}
.x26{left:252.639999pt;}
.x41{left:258.399994pt;}
.x61{left:260.320007pt;}
.x77{left:262.559998pt;}
.x66{left:264.160004pt;}
.x27{left:266.880005pt;}
.xa4{left:270.559998pt;}
.x18{left:271.997346pt;}
.x42{left:274.399994pt;}
.x94{left:275.519989pt;}
.x8a{left:277.279999pt;}
.xab{left:284.320007pt;}
.x43{left:288.799988pt;}
.x28{left:294.720001pt;}
.x67{left:296.320007pt;}
.x78{left:297.920013pt;}
.x73{left:307.040009pt;}
.x29{left:308.320007pt;}
.x44{left:316.799988pt;}
.x8b{left:318.720001pt;}
.x1e{left:320.799988pt;}
.x2a{left:323.839996pt;}
.x5b{left:324.799988pt;}
.x8c{left:326.079987pt;}
.x79{left:327.519989pt;}
.x45{left:330.239990pt;}
.x2b{left:332.640015pt;}
.x2c{left:339.839996pt;}
.x46{left:345.760010pt;}
.xac{left:346.880005pt;}
.x83{left:350.559998pt;}
.xbd{left:353.279999pt;}
.x2d{left:354.239990pt;}
.x13{left:357.600006pt;}
.xa5{left:360.320007pt;}
.x47{left:361.760010pt;}
.xf{left:364.000000pt;}
.x7a{left:368.160004pt;}
.xad{left:370.239990pt;}
.x2e{left:373.760010pt;}
.x48{left:376.160004pt;}
.x68{left:385.119995pt;}
.x2f{left:387.200012pt;}
.x7b{left:393.279999pt;}
.x51{left:400.480011pt;}
.x30{left:402.720001pt;}
.x3{left:404.408000pt;}
.x49{left:405.760010pt;}
.x31{left:411.519989pt;}
.x8d{left:412.799988pt;}
.x32{left:418.720001pt;}
.x5d{left:420.959991pt;}
.x69{left:423.839996pt;}
.xae{left:426.079987pt;}
.xd{left:432.000000pt;}
.x33{left:433.119995pt;}
.x54{left:434.399994pt;}
.x4a{left:438.239990pt;}
.x9a{left:445.760010pt;}
.x4b{left:447.040009pt;}
.x34{left:449.600006pt;}
.x6a{left:451.839996pt;}
.x4c{left:454.239990pt;}
.xa1{left:460.959991pt;}
.x35{left:463.040009pt;}
.xa6{left:464.799988pt;}
.x4d{left:469.279999pt;}
.x55{left:471.040009pt;}
.x36{left:478.559998pt;}
.x4e{left:482.720001pt;}
.x8e{left:483.839996pt;}
.x37{left:486.720001pt;}
.x8f{left:491.200012pt;}
.x38{left:493.920013pt;}
.x4f{left:498.239990pt;}
.x56{left:500.320007pt;}
.x5c{left:504.320007pt;}
.x50{left:505.760010pt;}
.x39{left:508.480011pt;}
.x5e{left:519.039978pt;}
.x6b{left:520.159973pt;}
.x9b{left:522.400024pt;}
.x5f{left:524.000000pt;}
.x3a{left:527.520020pt;}
.xaf{left:528.479980pt;}
.x14{left:540.640015pt;}
.x15{left:548.159973pt;}
.x7c{left:549.280029pt;}
.x90{left:553.599976pt;}
.x3b{left:556.479980pt;}
.x3c{left:565.280029pt;}
.x91{left:568.799988pt;}
.x3d{left:572.479980pt;}
.x7d{left:578.719971pt;}
.xa9{left:582.400024pt;}
.x6c{left:583.359985pt;}
.x3e{left:586.880005pt;}
.xb0{left:591.039978pt;}
.x9c{left:598.080017pt;}
.x9d{left:599.359985pt;}
.x9e{left:607.520020pt;}
.x6d{left:609.599976pt;}
.xa2{left:614.080017pt;}
.x3f{left:615.679993pt;}
.x7e{left:617.280029pt;}
.x40{left:629.119995pt;}
.xa7{left:637.440002pt;}
.x6e{left:644.320007pt;}
.x7f{left:648.960022pt;}
.x92{left:651.679993pt;}
.x9f{left:676.000000pt;}
.x6f{left:684.479980pt;}
.x80{left:687.520020pt;}
.x12{left:689.599976pt;}
.x70{left:695.840027pt;}
.xa8{left:700.159973pt;}
.x60{left:704.159973pt;}
.x93{left:714.080017pt;}
.x81{left:719.200012pt;}
.x82{left:752.640015pt;}
.xb1{left:759.039978pt;}
.xb2{left:782.400024pt;}
.xb3{left:845.119995pt;}
.xbe{left:855.683733pt;}
.xb4{left:868.479980pt;}
.xc0{left:967.822000pt;}
.xc1{left:1019.998000pt;}
}




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