
    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_235906955f3523222a2e76ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_47d68fc77bee10b98196dca3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_fbb1d9885f57881251dea2f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_da8f377c86329cb34b365457.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_9aa98dda98e687037ee0e8ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_05f4ca08450c12823b4fc76a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3ba45ad2995de53baee75361.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.776855;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_996d52c90b96c660bcd8a4c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_7007227b4a20df259bf9e068.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ca8cf6cf2bed31c0538610ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_36efbc4be9986369ac7705e0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23805564300200e5b088b99a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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_7e7d9335f3ef2a74df4f2f10.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_7acd96c1216d84fba53fef50.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.040000px;}
.v1{vertical-align:56.280000px;}
.v3{vertical-align:69.120000px;}
.lsd{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.072000px;}
.ls26{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls1f{letter-spacing:0.206640px;}
.ls1{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.298800px;}
.ls27{letter-spacing:0.306600px;}
.ls2a{letter-spacing:0.311760px;}
.ls15{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.431760px;}
.ls23{letter-spacing:0.491760px;}
.ls25{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.720000px;}
.lse{letter-spacing:0.864000px;}
.ls19{letter-spacing:1.800000px;}
.ls2d{letter-spacing:1.980000px;}
.ls2c{letter-spacing:4.140000px;}
.ls29{letter-spacing:5.220000px;}
.ls7{letter-spacing:8.640000px;}
.lsc{letter-spacing:9.360000px;}
.ls2b{letter-spacing:10.956000px;}
.lsb{letter-spacing:23.760000px;}
.ls11{letter-spacing:31.080000px;}
.ls3{letter-spacing:33.960000px;}
.ls6{letter-spacing:50.616000px;}
.ls2e{letter-spacing:54.840000px;}
.ls12{letter-spacing:64.200000px;}
.ls18{letter-spacing:99.840000px;}
.ls17{letter-spacing:99.900000px;}
.ls1a{letter-spacing:354.402000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws19{word-spacing:-59.760000px;}
.ws0{word-spacing:-27.000000px;}
.wsa{word-spacing:-18.864000px;}
.ws7{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.488000px;}
.ws10{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.246600px;}
.ws18{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.ws16{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.580000px;}
.ws15{word-spacing:-3.780000px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:86.220000px;}
.ws14{word-spacing:110.790000px;}
._20{margin-left:-5.290560px;}
._8{margin-left:-4.213440px;}
._a{margin-left:-2.986560px;}
._3{margin-left:-1.080000px;}
._2{width:1.632000px;}
._14{width:2.712000px;}
._17{width:3.744000px;}
._c{width:4.824000px;}
._d{width:6.192000px;}
._b{width:7.248000px;}
._e{width:8.388000px;}
._11{width:10.056000px;}
._10{width:11.304000px;}
._f{width:12.528000px;}
._1f{width:13.536000px;}
._15{width:14.544000px;}
._16{width:16.320000px;}
._41{width:17.784480px;}
._50{width:19.003680px;}
._19{width:20.088000px;}
._18{width:21.240000px;}
._1b{width:22.800000px;}
._1c{width:24.120000px;}
._4c{width:25.226640px;}
._1a{width:26.496000px;}
._12{width:27.720000px;}
._13{width:29.232000px;}
._34{width:30.477600px;}
._1d{width:32.016000px;}
._1e{width:33.396000px;}
._60{width:34.463040px;}
._35{width:35.658240px;}
._7c{width:36.669600px;}
._3f{width:38.306160px;}
._4{width:40.219200px;}
._28{width:41.860800px;}
._49{width:43.517760px;}
._4d{width:45.280800px;}
._2e{width:46.732320px;}
._32{width:48.679920px;}
._27{width:50.616720px;}
._69{width:52.032480px;}
._26{width:53.784000px;}
._2a{width:54.792000px;}
._2b{width:55.944000px;}
._63{width:58.505040px;}
._36{width:60.417360px;}
._4e{width:61.437120px;}
._5c{width:62.857440px;}
._2f{width:64.182240px;}
._5a{width:65.198160px;}
._74{width:66.393360px;}
._4f{width:67.827600px;}
._57{width:68.903280px;}
._23{width:70.677600px;}
._33{width:72.070560px;}
._7e{width:74.089440px;}
._62{width:75.265680px;}
._5e{width:77.807520px;}
._43{width:78.984240px;}
._65{width:80.949840px;}
._66{width:82.198080px;}
._75{width:83.406480px;}
._6f{width:84.918960px;}
._37{width:85.994640px;}
._3b{width:89.161920px;}
._2d{width:90.954720px;}
._31{width:92.209680px;}
._46{width:93.933360px;}
._40{width:95.974560px;}
._4a{width:97.050240px;}
._29{width:101.427840px;}
._9{width:102.554880px;}
._45{width:104.407920px;}
._6{width:106.485120px;}
._7a{width:107.908080px;}
._61{width:109.626960px;}
._6c{width:110.800800px;}
._47{width:119.878560px;}
._5{width:121.902480px;}
._51{width:123.045840px;}
._38{width:125.597040px;}
._3d{width:129.006720px;}
._4b{width:130.217040px;}
._71{width:131.382480px;}
._42{width:132.607440px;}
._3c{width:135.954000px;}
._56{width:137.907600px;}
._3a{width:140.118720px;}
._79{width:142.509120px;}
._22{width:143.861280px;}
._72{width:150.995040px;}
._68{width:152.833440px;}
._6e{width:156.134400px;}
._44{width:158.106480px;}
._39{width:159.600480px;}
._77{width:161.692080px;}
._55{width:164.680080px;}
._25{width:171.152640px;}
._30{width:174.899040px;}
._53{width:176.949360px;}
._6d{width:179.967840px;}
._6a{width:182.488560px;}
._76{width:188.225520px;}
._58{width:191.710080px;}
._5d{width:193.424640px;}
._52{width:194.619840px;}
._78{width:196.113840px;}
._2c{width:197.805600px;}
._3e{width:211.233120px;}
._5b{width:213.855120px;}
._6b{width:215.912880px;}
._7d{width:216.914640px;}
._7b{width:217.926240px;}
._48{width:230.613840px;}
._67{width:232.107840px;}
._21{width:233.523600px;}
._7{width:238.538160px;}
._59{width:242.726640px;}
._24{width:257.386320px;}
._64{width:267.506640px;}
._5f{width:288.043200px;}
._70{width:312.526320px;}
._54{width:323.100000px;}
._73{width:326.767680px;}
._80{width:552.060000px;}
._0{width:605.064000px;}
._82{width:872.064000px;}
._81{width:882.000000px;}
._1{width:1635.684000px;}
._7f{width:2168.280000px;}
.fc2{color:transparent;}
.fc1{color:rgb(31,73,125);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:216.000000px;}
.y2ac{bottom:-58.350000px;}
.y1dc{bottom:-58.320000px;}
.y61{bottom:-56.550000px;}
.y1ff{bottom:-56.520000px;}
.y19a{bottom:-51.840000px;}
.y197{bottom:-51.660000px;}
.y19f{bottom:-45.900000px;}
.y199{bottom:-25.560000px;}
.y196{bottom:-25.380000px;}
.y19e{bottom:-19.620000px;}
.y189{bottom:-18.210000px;}
.y37{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y195{bottom:0.720000px;}
.y1d7{bottom:0.900000px;}
.y21d{bottom:5.760000px;}
.y1db{bottom:5.790000px;}
.y1f9{bottom:5.940000px;}
.y1d2{bottom:6.630000px;}
.y19d{bottom:6.660000px;}
.y60{bottom:7.560000px;}
.y1fe{bottom:7.590000px;}
.y188{bottom:11.160000px;}
.y36{bottom:11.880000px;}
.y1a1{bottom:12.060000px;}
.y185{bottom:12.240000px;}
.y1c0{bottom:12.750000px;}
.y1c4{bottom:12.960000px;}
.y182{bottom:14.040000px;}
.y1e2{bottom:14.760000px;}
.y246{bottom:14.940000px;}
.y21e{bottom:16.740000px;}
.y194{bottom:18.000000px;}
.y22{bottom:18.045000px;}
.y141{bottom:20.700000px;}
.y3b{bottom:20.880000px;}
.y15b{bottom:20.910000px;}
.y1d6{bottom:21.600000px;}
.y290{bottom:21.960000px;}
.y30{bottom:23.760000px;}
.y19c{bottom:23.940000px;}
.y18e{bottom:24.330000px;}
.y2e{bottom:25.560000px;}
.y1f8{bottom:25.734000px;}
.y21c{bottom:25.740000px;}
.y187{bottom:28.440000px;}
.y1cf{bottom:29.130000px;}
.y184{bottom:29.520000px;}
.y2ab{bottom:31.140000px;}
.y1da{bottom:31.170000px;}
.y181{bottom:31.320000px;}
.y1bb{bottom:32.070000px;}
.y26b{bottom:32.940000px;}
.y5f{bottom:33.120000px;}
.y1fd{bottom:33.150000px;}
.y209{bottom:33.300000px;}
.y1c3{bottom:33.660000px;}
.y190{bottom:34.200000px;}
.y1e1{bottom:34.560000px;}
.y245{bottom:34.740000px;}
.y232{bottom:34.770000px;}
.y27a{bottom:36.540000px;}
.y35{bottom:39.060000px;}
.y28e{bottom:40.860000px;}
.y1d1{bottom:41.010000px;}
.y28f{bottom:41.940000px;}
.y1d5{bottom:42.345000px;}
.y266{bottom:43.740000px;}
.y227{bottom:43.785000px;}
.y1f6{bottom:45.534000px;}
.y21b{bottom:45.540000px;}
.y1b7{bottom:46.335000px;}
.y1ce{bottom:46.410000px;}
.y13d{bottom:46.620000px;}
.y152{bottom:46.800000px;}
.y15a{bottom:46.830000px;}
.y1fb{bottom:47.334000px;}
.y21{bottom:50.085000px;}
.y26a{bottom:52.740000px;}
.y208{bottom:53.100000px;}
.y2d{bottom:53.310000px;}
.y1e0{bottom:54.360000px;}
.y244{bottom:54.534000px;}
.y1ee{bottom:54.540000px;}
.y231{bottom:54.570000px;}
.y217{bottom:54.585000px;}
.y3a{bottom:54.720000px;}
.y1f0{bottom:56.340000px;}
.y296{bottom:59.394000px;}
.y1bc{bottom:60.735000px;}
.y28d{bottom:61.734000px;}
.y265{bottom:63.534000px;}
.y226{bottom:63.585000px;}
.y1f5{bottom:65.334000px;}
.y1c9{bottom:65.550000px;}
.y34{bottom:66.414000px;}
.y3d{bottom:66.996000px;}
.y1c7{bottom:71.310000px;}
.y269{bottom:72.534000px;}
.y140{bottom:72.540000px;}
.y159{bottom:72.750000px;}
.y151{bottom:72.765000px;}
.y207{bottom:72.900000px;}
.y1b8{bottom:73.620000px;}
.y1ea{bottom:74.160000px;}
.y243{bottom:74.334000px;}
.y1df{bottom:74.340000px;}
.y230{bottom:74.370000px;}
.y216{bottom:74.385000px;}
.y1fa{bottom:76.134000px;}
.y20a{bottom:76.140000px;}
.y295{bottom:80.274000px;}
.y2c{bottom:80.850000px;}
.y28c{bottom:81.534000px;}
.y264{bottom:83.334000px;}
.y225{bottom:83.385000px;}
.y24b{bottom:83.874000px;}
.y1f4{bottom:85.134000px;}
.y1ef{bottom:85.140000px;}
.y22c{bottom:85.170000px;}
.y23c{bottom:87.114000px;}
.y31{bottom:89.316000px;}
.y1bd{bottom:89.355000px;}
.y20{bottom:90.045000px;}
.y1ca{bottom:91.590000px;}
.y268{bottom:92.334000px;}
.y206{bottom:92.880000px;}
.y33{bottom:93.774000px;}
.y242{bottom:94.134000px;}
.y1e9{bottom:94.140000px;}
.y22f{bottom:94.170000px;}
.y215{bottom:94.185000px;}
.y21a{bottom:94.716000px;}
.y233{bottom:95.970000px;}
.y1f7{bottom:96.114000px;}
.y260{bottom:97.236000px;}
.y3c{bottom:97.956000px;}
.y15e{bottom:98.460000px;}
.y158{bottom:98.490000px;}
.y294{bottom:100.074000px;}
.y1b0{bottom:100.470000px;}
.y28b{bottom:101.334000px;}
.y1b9{bottom:102.270000px;}
.y267{bottom:103.134000px;}
.y224{bottom:103.185000px;}
.y24a{bottom:103.674000px;}
.y25e{bottom:103.680000px;}
.y203{bottom:104.940000px;}
.y22b{bottom:104.970000px;}
.y250{bottom:104.985000px;}
.y1f3{bottom:105.114000px;}
.y39{bottom:105.120000px;}
.y1c8{bottom:110.340000px;}
.y263{bottom:112.134000px;}
.y205{bottom:112.680000px;}
.y27c{bottom:113.040000px;}
.y1e8{bottom:113.940000px;}
.y22e{bottom:113.970000px;}
.y214{bottom:113.985000px;}
.y241{bottom:114.114000px;}
.y277{bottom:114.120000px;}
.y283{bottom:114.150000px;}
.y1af{bottom:114.630000px;}
.y234{bottom:115.236000px;}
.y1ec{bottom:115.740000px;}
.y252{bottom:115.785000px;}
.y23b{bottom:115.914000px;}
.y2b{bottom:117.390000px;}
.y1cb{bottom:117.570000px;}
.y1be{bottom:118.005000px;}
.y293{bottom:119.874000px;}
.y28a{bottom:121.134000px;}
.y1b1{bottom:122.040000px;}
.y32{bottom:122.934000px;}
.y223{bottom:122.985000px;}
.y297{bottom:123.114000px;}
.y25d{bottom:123.480000px;}
.y249{bottom:123.699000px;}
.y15d{bottom:124.380000px;}
.y157{bottom:124.410000px;}
.y24f{bottom:124.785000px;}
.y27d{bottom:124.920000px;}
.y22d{bottom:124.950000px;}
.y1f1{bottom:124.956000px;}
.y1f2{bottom:124.959000px;}
.y1ac{bottom:128.700000px;}
.y1f{bottom:130.185000px;}
.y1ba{bottom:130.890000px;}
.y262{bottom:132.114000px;}
.y204{bottom:132.660000px;}
.y1e7{bottom:133.740000px;}
.y213{bottom:133.785000px;}
.y276{bottom:133.920000px;}
.y22a{bottom:133.950000px;}
.y240{bottom:133.959000px;}
.y7f{bottom:134.316000px;}
.y281{bottom:135.750000px;}
.y23a{bottom:135.759000px;}
.y279{bottom:135.765000px;}
.y14f{bottom:136.656000px;}
.y5c{bottom:139.356000px;}
.y292{bottom:139.719000px;}
.y2e5{bottom:140.616000px;}
.y289{bottom:141.159000px;}
.y2d5{bottom:142.056000px;}
.y222{bottom:142.965000px;}
.y248{bottom:143.499000px;}
.y1b2{bottom:143.565000px;}
.y1cc{bottom:143.610000px;}
.y25c{bottom:143.640000px;}
.y1eb{bottom:144.540000px;}
.y25a{bottom:144.720000px;}
.y251{bottom:144.765000px;}
.y1bf{bottom:146.625000px;}
.yee{bottom:148.536000px;}
.y2fe{bottom:149.256000px;}
.y1ae{bottom:150.270000px;}
.y156{bottom:150.330000px;}
.y261{bottom:151.959000px;}
.y2a3{bottom:152.460000px;}
.y171{bottom:153.030000px;}
.y1e6{bottom:153.540000px;}
.y202{bottom:153.585000px;}
.y275{bottom:153.720000px;}
.y229{bottom:153.750000px;}
.y23f{bottom:153.759000px;}
.y212{bottom:153.765000px;}
.y2a{bottom:154.110000px;}
.y32a{bottom:155.910000px;}
.y314{bottom:156.990000px;}
.yd0{bottom:158.070000px;}
.y291{bottom:159.879000px;}
.y288{bottom:160.959000px;}
.y2c4{bottom:161.130000px;}
.y221{bottom:162.765000px;}
.y247{bottom:163.479000px;}
.y7e{bottom:164.010000px;}
.y272{bottom:164.520000px;}
.y259{bottom:164.550000px;}
.y239{bottom:164.559000px;}
.y210{bottom:164.565000px;}
.y17f{bottom:164.730000px;}
.y1b3{bottom:165.135000px;}
.y14e{bottom:167.790000px;}
.y1cd{bottom:169.590000px;}
.yb6{bottom:170.490000px;}
.y1aa{bottom:171.390000px;}
.y2e4{bottom:171.750000px;}
.y1ad{bottom:171.825000px;}
.y1c1{bottom:172.230000px;}
.y2a2{bottom:172.260000px;}
.y2d4{bottom:173.010000px;}
.y1e5{bottom:173.340000px;}
.y274{bottom:173.520000px;}
.y136{bottom:173.550000px;}
.y23e{bottom:173.559000px;}
.y211{bottom:173.565000px;}
.y9b{bottom:174.090000px;}
.y278{bottom:175.320000px;}
.y24d{bottom:175.359000px;}
.y219{bottom:175.365000px;}
.y123{bottom:175.530000px;}
.y155{bottom:176.250000px;}
.y5b{bottom:179.310000px;}
.yed{bottom:179.490000px;}
.y287{bottom:180.759000px;}
.y29{bottom:181.650000px;}
.y220{bottom:182.565000px;}
.y20b{bottom:183.810000px;}
.y1d3{bottom:183.855000px;}
.y170{bottom:183.990000px;}
.y271{bottom:184.320000px;}
.y258{bottom:184.350000px;}
.y238{bottom:184.359000px;}
.y20f{bottom:184.365000px;}
.y1b4{bottom:186.690000px;}
.y329{bottom:187.050000px;}
.y313{bottom:188.130000px;}
.y2c3{bottom:192.090000px;}
.y2a1{bottom:192.105000px;}
.y25b{bottom:193.350000px;}
.y23d{bottom:193.359000px;}
.y1e4{bottom:193.365000px;}
.y7d{bottom:193.710000px;}
.y2fd{bottom:194.430000px;}
.y107{bottom:195.150000px;}
.y285{bottom:195.330000px;}
.y1a0{bottom:197.490000px;}
.y286{bottom:200.559000px;}
.y154{bottom:201.990000px;}
.y1a9{bottom:202.530000px;}
.y2e3{bottom:202.710000px;}
.y2d3{bottom:204.150000px;}
.y218{bottom:204.165000px;}
.y280{bottom:204.330000px;}
.y24c{bottom:204.339000px;}
.y273{bottom:204.345000px;}
.y17e{bottom:204.690000px;}
.y122{bottom:206.490000px;}
.ycf{bottom:206.670000px;}
.y14d{bottom:207.750000px;}
.y28{bottom:209.190000px;}
.yec{bottom:210.630000px;}
.y2a0{bottom:211.905000px;}
.y1b5{bottom:213.120000px;}
.y257{bottom:213.150000px;}
.y20e{bottom:213.165000px;}
.y282{bottom:213.330000px;}
.y237{bottom:213.339000px;}
.y270{bottom:213.345000px;}
.yb5{bottom:213.690000px;}
.y9a{bottom:214.050000px;}
.y16f{bottom:215.130000px;}
.y2a5{bottom:215.145000px;}
.y328{bottom:218.010000px;}
.y312{bottom:219.090000px;}
.y5a{bottom:219.450000px;}
.y2c2{bottom:223.230000px;}
.y7c{bottom:223.410000px;}
.y25f{bottom:223.950000px;}
.y284{bottom:224.130000px;}
.y29b{bottom:224.145000px;}
.y106{bottom:226.110000px;}
.y135{bottom:229.170000px;}
.y2fc{bottom:231.330000px;}
.y29f{bottom:231.885000px;}
.y256{bottom:232.950000px;}
.y20d{bottom:232.965000px;}
.y27f{bottom:233.130000px;}
.y236{bottom:233.139000px;}
.y26f{bottom:233.145000px;}
.y1a8{bottom:233.490000px;}
.y2e2{bottom:233.850000px;}
.y2d2{bottom:235.110000px;}
.y1d{bottom:236.190000px;}
.y121{bottom:237.630000px;}
.yeb{bottom:241.590000px;}
.y2a4{bottom:243.945000px;}
.yb4{bottom:244.650000px;}
.y17d{bottom:244.830000px;}
.y27{bottom:245.370000px;}
.y15f{bottom:245.910000px;}
.y16e{bottom:246.090000px;}
.yce{bottom:246.810000px;}
.y14c{bottom:247.890000px;}
.y327{bottom:249.150000px;}
.y311{bottom:250.050000px;}
.y59{bottom:250.410000px;}
.y29e{bottom:251.685000px;}
.y255{bottom:252.930000px;}
.y235{bottom:252.939000px;}
.y26e{bottom:252.945000px;}
.y20c{bottom:252.975000px;}
.y7b{bottom:253.110000px;}
.y99{bottom:254.190000px;}
.y105{bottom:257.250000px;}
.y192{bottom:259.815000px;}
.y2e1{bottom:264.810000px;}
.y1c{bottom:267.150000px;}
.y2fb{bottom:268.410000px;}
.y120{bottom:268.590000px;}
.y29d{bottom:271.485000px;}
.y254{bottom:272.730000px;}
.y29a{bottom:272.745000px;}
.y253{bottom:272.955000px;}
.y1a7{bottom:273.630000px;}
.y1ed{bottom:273.675000px;}
.y2d1{bottom:275.250000px;}
.yb3{bottom:275.790000px;}
.y26{bottom:276.870000px;}
.y2a9{bottom:276.915000px;}
.y14b{bottom:278.850000px;}
.y326{bottom:280.110000px;}
.y310{bottom:281.190000px;}
.y58{bottom:281.550000px;}
.yea{bottom:281.730000px;}
.y7a{bottom:282.810000px;}
.y134{bottom:284.610000px;}
.y17c{bottom:284.790000px;}
.y98{bottom:285.150000px;}
.y2c1{bottom:285.330000px;}
.ycd{bottom:286.770000px;}
.y104{bottom:288.210000px;}
.y1c6{bottom:290.520000px;}
.y18b{bottom:291.270000px;}
.y29c{bottom:291.465000px;}
.y299{bottom:292.545000px;}
.y1d4{bottom:294.690000px;}
.y1d0{bottom:295.920000px;}
.y2e0{bottom:295.950000px;}
.y1b{bottom:298.110000px;}
.y11f{bottom:299.730000px;}
.y25{bottom:304.410000px;}
.y2fa{bottom:305.310000px;}
.y2d0{bottom:306.210000px;}
.yb2{bottom:306.750000px;}
.y14a{bottom:309.810000px;}
.y325{bottom:311.250000px;}
.y30f{bottom:312.150000px;}
.y57{bottom:312.510000px;}
.ye9{bottom:312.690000px;}
.y2a8{bottom:313.815000px;}
.y2c0{bottom:316.290000px;}
.y1e{bottom:318.270000px;}
.y16d{bottom:319.350000px;}
.y27e{bottom:321.555000px;}
.y17b{bottom:324.930000px;}
.y97{bottom:325.290000px;}
.ycc{bottom:326.910000px;}
.y103{bottom:328.395000px;}
.y1a{bottom:329.115000px;}
.y11e{bottom:330.735000px;}
.y24{bottom:331.995000px;}
.y2cf{bottom:337.395000px;}
.yb1{bottom:337.935000px;}
.y133{bottom:340.275000px;}
.y79{bottom:342.255000px;}
.y30e{bottom:343.335000px;}
.y56{bottom:343.695000px;}
.ye8{bottom:343.875000px;}
.y2bf{bottom:347.475000px;}
.y18c{bottom:347.655000px;}
.y2f9{bottom:348.735000px;}
.y149{bottom:349.995000px;}
.y16c{bottom:350.355000px;}
.y2a7{bottom:354.315000px;}
.y96{bottom:356.295000px;}
.y2df{bottom:358.095000px;}
.y102{bottom:359.355000px;}
.y19{bottom:360.075000px;}
.y11d{bottom:361.875000px;}
.y17a{bottom:364.935000px;}
.y191{bottom:365.835000px;}
.ycb{bottom:366.915000px;}
.y2ce{bottom:368.355000px;}
.yb0{bottom:368.895000px;}
.y78{bottom:371.955000px;}
.y324{bottom:373.395000px;}
.y30d{bottom:374.295000px;}
.y55{bottom:374.655000px;}
.ye7{bottom:374.835000px;}
.y2be{bottom:378.435000px;}
.y2f8{bottom:379.875000px;}
.y16b{bottom:381.495000px;}
.y95{bottom:387.435000px;}
.y2de{bottom:389.055000px;}
.y148{bottom:389.955000px;}
.y101{bottom:390.495000px;}
.y18{bottom:391.035000px;}
.y228{bottom:391.935000px;}
.y11c{bottom:392.835000px;}
.y2a6{bottom:394.275000px;}
.y132{bottom:395.895000px;}
.yca{bottom:398.055000px;}
.y2cd{bottom:399.495000px;}
.yaf{bottom:399.855000px;}
.y77{bottom:401.655000px;}
.y323{bottom:404.355000px;}
.y18a{bottom:404.535000px;}
.y179{bottom:405.075000px;}
.y30c{bottom:405.435000px;}
.y54{bottom:405.795000px;}
.ye6{bottom:405.975000px;}
.y1a6{bottom:407.235000px;}
.y2f7{bottom:410.835000px;}
.y16a{bottom:412.455000px;}
.y94{bottom:418.395000px;}
.y2bd{bottom:418.575000px;}
.y2dd{bottom:420.195000px;}
.y26d{bottom:420.765000px;}
.y147{bottom:421.095000px;}
.y100{bottom:421.455000px;}
.y17{bottom:421.995000px;}
.y11b{bottom:423.975000px;}
.yc9{bottom:429.015000px;}
.yae{bottom:430.995000px;}
.y76{bottom:431.355000px;}
.y1e3{bottom:431.385000px;}
.y322{bottom:435.495000px;}
.y30b{bottom:436.395000px;}
.y53{bottom:436.755000px;}
.ye5{bottom:436.935000px;}
.y2cc{bottom:439.455000px;}
.y2f6{bottom:441.975000px;}
.y169{bottom:443.595000px;}
.y178{bottom:445.035000px;}
.y1a5{bottom:447.195000px;}
.y93{bottom:449.535000px;}
.y131{bottom:451.515000px;}
.y146{bottom:452.055000px;}
.yff{bottom:452.595000px;}
.y16{bottom:453.135000px;}
.y11a{bottom:454.935000px;}
.y32d{bottom:456.555000px;}
.yc8{bottom:460.155000px;}
.y201{bottom:460.545000px;}
.y75{bottom:461.055000px;}
.y321{bottom:466.455000px;}
.y30a{bottom:467.535000px;}
.y52{bottom:467.895000px;}
.ye4{bottom:468.075000px;}
.y2cb{bottom:470.595000px;}
.yad{bottom:470.955000px;}
.y2f5{bottom:472.935000px;}
.y168{bottom:474.555000px;}
.y18f{bottom:475.560000px;}
.y145{bottom:483.195000px;}
.yfe{bottom:483.555000px;}
.y15{bottom:484.095000px;}
.y177{bottom:485.175000px;}
.y1a4{bottom:487.335000px;}
.y92{bottom:489.495000px;}
.y2bc{bottom:489.675000px;}
.y15c{bottom:490.395000px;}
.y74{bottom:490.755000px;}
.y2dc{bottom:491.295000px;}
.y320{bottom:497.595000px;}
.y309{bottom:498.495000px;}
.y51{bottom:498.855000px;}
.yc7{bottom:500.115000px;}
.y2ca{bottom:501.555000px;}
.y119{bottom:501.915000px;}
.yac{bottom:502.095000px;}
.y130{bottom:503.175000px;}
.y2f4{bottom:504.075000px;}
.y167{bottom:505.695000px;}
.ye3{bottom:508.035000px;}
.y1c2{bottom:512.895000px;}
.y144{bottom:514.155000px;}
.y14{bottom:515.055000px;}
.y32c{bottom:515.235000px;}
.y1c5{bottom:516.135000px;}
.y183{bottom:516.315000px;}
.y73{bottom:520.455000px;}
.y91{bottom:520.635000px;}
.y2db{bottom:522.255000px;}
.yfd{bottom:523.695000px;}
.y176{bottom:525.135000px;}
.y31f{bottom:528.555000px;}
.y308{bottom:529.635000px;}
.y50{bottom:529.995000px;}
.yc6{bottom:531.255000px;}
.y2c9{bottom:532.695000px;}
.yab{bottom:533.055000px;}
.y12f{bottom:534.135000px;}
.y2f3{bottom:535.035000px;}
.y166{bottom:536.655000px;}
.ye2{bottom:539.175000px;}
.y143{bottom:545.295000px;}
.y13{bottom:546.015000px;}
.y23{bottom:549.615000px;}
.y72{bottom:550.155000px;}
.y118{bottom:550.695000px;}
.y90{bottom:551.595000px;}
.y2bb{bottom:551.775000px;}
.y2da{bottom:553.395000px;}
.yfc{bottom:554.655000px;}
.y31e{bottom:559.695000px;}
.y307{bottom:560.595000px;}
.y4f{bottom:560.955000px;}
.yc5{bottom:562.215000px;}
.yaa{bottom:564.195000px;}
.y12e{bottom:565.275000px;}
.y2f2{bottom:566.175000px;}
.y24e{bottom:569.445000px;}
.ye1{bottom:570.135000px;}
.y2c8{bottom:572.655000px;}
.y32b{bottom:573.735000px;}
.y165{bottom:576.615000px;}
.y12{bottom:576.975000px;}
.y71{bottom:579.855000px;}
.y1ab{bottom:581.220000px;}
.y117{bottom:581.655000px;}
.y8f{bottom:582.735000px;}
.y2d9{bottom:584.355000px;}
.y142{bottom:585.255000px;}
.yfb{bottom:585.615000px;}
.y153{bottom:586.695000px;}
.y21f{bottom:589.245000px;}
.y31d{bottom:590.655000px;}
.y306{bottom:591.735000px;}
.y4e{bottom:591.915000px;}
.yc4{bottom:593.355000px;}
.y186{bottom:595.005000px;}
.ya9{bottom:595.185000px;}
.y2f1{bottom:597.165000px;}
.y18d{bottom:600.300000px;}
.ye0{bottom:601.305000px;}
.y1a3{bottom:603.465000px;}
.y2c7{bottom:603.645000px;}
.y12d{bottom:605.265000px;}
.y164{bottom:607.785000px;}
.y11{bottom:607.965000px;}
.y70{bottom:609.585000px;}
.y13f{bottom:611.925000px;}
.y116{bottom:612.645000px;}
.y8e{bottom:613.725000px;}
.y2ba{bottom:613.905000px;}
.yfa{bottom:616.785000px;}
.y27b{bottom:618.090000px;}
.y2d8{bottom:620.205000px;}
.y1b6{bottom:620.640000px;}
.y31c{bottom:621.645000px;}
.y305{bottom:622.725000px;}
.y4d{bottom:623.085000px;}
.y2f0{bottom:628.305000px;}
.ydf{bottom:632.265000px;}
.yc3{bottom:633.345000px;}
.y2c6{bottom:634.785000px;}
.ya8{bottom:635.325000px;}
.y200{bottom:638.070000px;}
.y163{bottom:638.745000px;}
.y10{bottom:638.925000px;}
.y6f{bottom:639.285000px;}
.y180{bottom:640.545000px;}
.y115{bottom:643.785000px;}
.y2b9{bottom:644.865000px;}
.y12c{bottom:645.405000px;}
.y1de{bottom:648.510000px;}
.y31b{bottom:652.785000px;}
.y8d{bottom:653.865000px;}
.y4c{bottom:654.045000px;}
.yf9{bottom:656.745000px;}
.y2ef{bottom:659.265000px;}
.yc2{bottom:664.485000px;}
.y2c5{bottom:665.745000px;}
.ya7{bottom:666.285000px;}
.y6e{bottom:668.985000px;}
.yf{bottom:669.885000px;}
.yde{bottom:672.405000px;}
.y114{bottom:674.745000px;}
.y2b8{bottom:676.005000px;}
.y12b{bottom:676.365000px;}
.y31a{bottom:683.745000px;}
.y8c{bottom:684.825000px;}
.y4b{bottom:685.185000px;}
.y175{bottom:685.365000px;}
.y2d7{bottom:687.885000px;}
.y2ee{bottom:690.405000px;}
.yc1{bottom:695.445000px;}
.yf8{bottom:696.885000px;}
.ya6{bottom:697.425000px;}
.y26c{bottom:697.470000px;}
.y6d{bottom:698.685000px;}
.ye{bottom:700.845000px;}
.ydd{bottom:703.365000px;}
.y113{bottom:705.885000px;}
.y38{bottom:706.965000px;}
.y13e{bottom:708.225000px;}
.y162{bottom:709.845000px;}
.y319{bottom:714.885000px;}
.y8b{bottom:715.965000px;}
.y4a{bottom:716.145000px;}
.y12a{bottom:716.505000px;}
.y2d6{bottom:718.845000px;}
.y2ed{bottom:721.365000px;}
.y174{bottom:725.505000px;}
.yc0{bottom:726.585000px;}
.yf7{bottom:727.845000px;}
.y6c{bottom:728.385000px;}
.yd{bottom:731.805000px;}
.y19b{bottom:733.605000px;}
.ydc{bottom:734.505000px;}
.y112{bottom:736.845000px;}
.y298{bottom:737.250000px;}
.y198{bottom:738.285000px;}
.y193{bottom:739.185000px;}
.y318{bottom:745.845000px;}
.y8a{bottom:746.925000px;}
.y2b7{bottom:747.105000px;}
.y49{bottom:747.285000px;}
.y161{bottom:749.985000px;}
.y2ec{bottom:752.505000px;}
.y13c{bottom:752.865000px;}
.ybf{bottom:757.545000px;}
.y6b{bottom:758.085000px;}
.yf6{bottom:758.985000px;}
.ya5{bottom:759.525000px;}
.y1dd{bottom:761.370000px;}
.yc{bottom:762.765000px;}
.y129{bottom:763.305000px;}
.ydb{bottom:765.465000px;}
.y111{bottom:767.985000px;}
.y317{bottom:776.985000px;}
.y89{bottom:778.065000px;}
.y48{bottom:778.245000px;}
.y160{bottom:780.945000px;}
.y2eb{bottom:783.465000px;}
.yf5{bottom:789.945000px;}
.yb{bottom:793.725000px;}
.y1d9{bottom:794.310000px;}
.y1fc{bottom:796.110000px;}
.yda{bottom:796.605000px;}
.ybe{bottom:797.685000px;}
.y6a{bottom:798.045000px;}
.y110{bottom:798.945000px;}
.ya4{bottom:799.485000px;}
.y173{bottom:805.605000px;}
.y316{bottom:807.945000px;}
.y304{bottom:809.025000px;}
.y2b6{bottom:809.205000px;}
.y47{bottom:809.385000px;}
.y128{bottom:812.085000px;}
.y150{bottom:812.445000px;}
.y1d8{bottom:813.780000px;}
.y2ea{bottom:814.605000px;}
.y88{bottom:818.025000px;}
.yf4{bottom:821.085000px;}
.ya{bottom:824.685000px;}
.yd9{bottom:827.565000px;}
.ybd{bottom:828.645000px;}
.y10f{bottom:830.085000px;}
.ya3{bottom:830.625000px;}
.y172{bottom:836.565000px;}
.y69{bottom:838.185000px;}
.y315{bottom:839.085000px;}
.y2b5{bottom:840.165000px;}
.y46{bottom:840.345000px;}
.y127{bottom:843.045000px;}
.y2e9{bottom:845.565000px;}
.y87{bottom:849.165000px;}
.y13b{bottom:849.705000px;}
.yf3{bottom:852.045000px;}
.y9{bottom:855.645000px;}
.ybc{bottom:859.785000px;}
.y1a2{bottom:861.045000px;}
.ya2{bottom:861.585000px;}
.yd8{bottom:867.750000px;}
.y10e{bottom:870.090000px;}
.y303{bottom:871.170000px;}
.y2b4{bottom:871.350000px;}
.y45{bottom:871.530000px;}
.y2e8{bottom:876.750000px;}
.y68{bottom:878.190000px;}
.y86{bottom:880.170000px;}
.y126{bottom:883.230000px;}
.y8{bottom:886.830000px;}
.y13a{bottom:889.710000px;}
.ybb{bottom:890.790000px;}
.yf2{bottom:892.230000px;}
.ya1{bottom:892.770000px;}
.yd7{bottom:898.710000px;}
.y10d{bottom:901.230000px;}
.y2b3{bottom:902.310000px;}
.y44{bottom:902.490000px;}
.y2e7{bottom:907.710000px;}
.y85{bottom:911.310000px;}
.y125{bottom:914.190000px;}
.y7{bottom:917.790000px;}
.y67{bottom:918.330000px;}
.yba{bottom:921.930000px;}
.yf1{bottom:923.190000px;}
.ya0{bottom:923.730000px;}
.yd6{bottom:929.850000px;}
.y10c{bottom:932.190000px;}
.y302{bottom:933.270000px;}
.y2b2{bottom:933.450000px;}
.y43{bottom:933.630000px;}
.y2e6{bottom:938.850000px;}
.y84{bottom:942.270000px;}
.y124{bottom:945.330000px;}
.y6{bottom:948.750000px;}
.yf0{bottom:954.330000px;}
.y66{bottom:958.290000px;}
.yd5{bottom:960.810000px;}
.y10b{bottom:963.330000px;}
.y2b1{bottom:964.410000px;}
.y42{bottom:964.590000px;}
.yb9{bottom:964.950000px;}
.y9f{bottom:966.750000px;}
.y139{bottom:969.810000px;}
.y5{bottom:979.710000px;}
.y83{bottom:985.290000px;}
.yd4{bottom:991.950000px;}
.y10a{bottom:994.290000px;}
.y301{bottom:995.370000px;}
.y2b0{bottom:995.550000px;}
.y41{bottom:995.730000px;}
.yb8{bottom:995.910000px;}
.y9e{bottom:997.890000px;}
.y65{bottom:998.430000px;}
.y138{bottom:1000.950000px;}
.y4{bottom:1010.670000px;}
.y82{bottom:1016.430000px;}
.yd3{bottom:1022.910000px;}
.y2f{bottom:1024.170000px;}
.y109{bottom:1025.430000px;}
.y300{bottom:1026.510000px;}
.y40{bottom:1026.690000px;}
.yb7{bottom:1028.490000px;}
.y9d{bottom:1028.850000px;}
.y137{bottom:1031.910000px;}
.y2af{bottom:1035.510000px;}
.y64{bottom:1038.390000px;}
.y3{bottom:1041.630000px;}
.y81{bottom:1047.390000px;}
.y108{bottom:1056.390000px;}
.y3f{bottom:1057.830000px;}
.y9c{bottom:1059.990000px;}
.yd2{bottom:1063.050000px;}
.y2ff{bottom:1063.770000px;}
.y2{bottom:1072.590000px;}
.y2ae{bottom:1072.950000px;}
.y63{bottom:1078.530000px;}
.yef{bottom:1087.530000px;}
.y1{bottom:1103.910000px;}
.y3e{bottom:1107.150000px;}
.yd1{bottom:1109.850000px;}
.y80{bottom:1110.030000px;}
.y2ad{bottom:1118.130000px;}
.y62{bottom:1118.490000px;}
.y2aa{bottom:1164.240000px;}
.y5e{bottom:1166.040000px;}
.y5d{bottom:1183.680000px;}
.h2b{height:37.800000px;}
.h29{height:41.040000px;}
.h19{height:43.920000px;}
.h2a{height:46.800000px;}
.h30{height:46.801758px;}
.h3c{height:48.496641px;}
.h4c{height:48.600000px;}
.h24{height:51.480000px;}
.h25{height:52.380000px;}
.h23{height:52.560000px;}
.h26{height:52.596000px;}
.h2d{height:52.998047px;}
.h4e{height:53.100000px;}
.h39{height:53.136000px;}
.h1e{height:53.573906px;}
.h11{height:53.709961px;}
.h22{height:54.360000px;}
.h10{height:55.080000px;}
.h40{height:55.116000px;}
.h7{height:58.140000px;}
.h35{height:58.500000px;}
.h3d{height:58.621992px;}
.h18{height:58.651172px;}
.h31{height:59.400000px;}
.h9{height:59.439023px;}
.h17{height:60.226875px;}
.h1b{height:64.546875px;}
.h36{height:68.076000px;}
.h16{height:69.660000px;}
.h21{height:70.628906px;}
.he{height:70.664062px;}
.h3{height:71.613281px;}
.hf{height:72.562500px;}
.h15{height:74.004654px;}
.hd{height:74.953125px;}
.h33{height:79.749961px;}
.h43{height:88.380000px;}
.h4f{height:93.983203px;}
.h1a{height:95.580000px;}
.h20{height:95.616000px;}
.h1c{height:95.796000px;}
.h2{height:96.508125px;}
.h3a{height:97.380000px;}
.h5{height:105.996094px;}
.h14{height:108.843750px;}
.h2e{height:109.278047px;}
.h13{height:112.429688px;}
.hc{height:121.179375px;}
.h34{height:127.771172px;}
.h28{height:136.080000px;}
.hb{height:141.328125px;}
.h1f{height:147.420000px;}
.ha{height:147.780000px;}
.h3f{height:147.996000px;}
.h3e{height:156.810000px;}
.h8{height:157.140000px;}
.h4{height:164.370000px;}
.h49{height:167.760000px;}
.h27{height:169.560000px;}
.h47{height:174.990000px;}
.h41{height:176.610000px;}
.h44{height:196.590000px;}
.h2f{height:197.640000px;}
.h32{height:209.340000px;}
.h12{height:214.839844px;}
.h3b{height:216.390000px;}
.h4b{height:223.590000px;}
.h1d{height:225.030000px;}
.h48{height:236.190000px;}
.h2c{height:238.500000px;}
.h45{height:275.970000px;}
.h42{height:276.015000px;}
.h46{height:295.770000px;}
.h4a{height:295.815000px;}
.h4d{height:315.570000px;}
.h6{height:363.315000px;}
.h37{height:892.980000px;}
.h38{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:27.720000px;}
.w15{width:29.700000px;}
.w29{width:50.616000px;}
.w2a{width:84.960000px;}
.w2b{width:95.040000px;}
.w28{width:116.100000px;}
.w2f{width:126.720000px;}
.w2c{width:129.636000px;}
.w17{width:135.216000px;}
.w18{width:146.340000px;}
.w19{width:146.376000px;}
.w2d{width:154.980000px;}
.wb{width:158.400000px;}
.wc{width:158.430000px;}
.wd{width:158.610000px;}
.w10{width:172.110000px;}
.w2e{width:180.030000px;}
.w27{width:182.370000px;}
.w14{width:190.290000px;}
.w7{width:199.470000px;}
.w12{width:201.630000px;}
.w13{width:212.070000px;}
.w11{width:217.830000px;}
.wf{width:246.630000px;}
.we{width:248.790000px;}
.w22{width:294.870000px;}
.w9{width:317.730000px;}
.wa{width:317.775000px;}
.w21{width:330.840000px;}
.w1b{width:356.220000px;}
.w1d{width:357.870000px;}
.w1c{width:360.540000px;}
.w1e{width:360.795000px;}
.w3{width:361.830000px;}
.w20{width:399.060000px;}
.w1f{width:419.040000px;}
.w4{width:438.915000px;}
.w26{width:541.515000px;}
.w8{width:541.545000px;}
.w1a{width:569.265000px;}
.w6{width:721.905000px;}
.w5{width:721.950000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w25{width:1262.879981px;}
.w23{width:1262.880000px;}
.w24{width:1263.000000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x3{left:10.800000px;}
.xb{left:12.780000px;}
.x28{left:13.860000px;}
.x29{left:14.940000px;}
.x2a{left:16.380000px;}
.xa{left:22.140000px;}
.x21{left:23.220000px;}
.x23{left:30.780000px;}
.x26{left:32.760000px;}
.x3a{left:35.850000px;}
.x44{left:39.096000px;}
.x30{left:43.200000px;}
.x2c{left:45.000000px;}
.x1e{left:47.880000px;}
.x33{left:48.990000px;}
.x35{left:52.560000px;}
.x32{left:56.340000px;}
.x11{left:60.345000px;}
.x1f{left:62.100000px;}
.x38{left:66.990000px;}
.x42{left:70.815000px;}
.x53{left:74.700000px;}
.x3c{left:78.630000px;}
.x24{left:86.040000px;}
.x7{left:96.336000px;}
.xc{left:99.714000px;}
.x2{left:106.415987px;}
.x2d{left:112.140000px;}
.x2e{left:115.560000px;}
.x46{left:126.180000px;}
.x4f{left:127.619981px;}
.x39{left:130.425000px;}
.xe{left:133.415987px;}
.x2f{left:135.431987px;}
.x5{left:137.016000px;}
.x45{left:143.820000px;}
.x3d{left:148.470000px;}
.x4d{left:149.760000px;}
.xf{left:160.409987px;}
.x1a{left:162.569987px;}
.x3b{left:164.310000px;}
.x1b{left:167.069987px;}
.x4a{left:194.400000px;}
.x8{left:205.599000px;}
.x49{left:210.675000px;}
.x3e{left:218.310000px;}
.x47{left:220.935000px;}
.x48{left:229.755000px;}
.x6{left:234.219000px;}
.x4b{left:248.145000px;}
.x3f{left:253.230000px;}
.x54{left:257.790000px;}
.x10{left:266.430000px;}
.x40{left:288.150000px;}
.x1d{left:296.535000px;}
.x20{left:299.775000px;}
.x31{left:303.735000px;}
.x25{left:311.655000px;}
.x2b{left:317.235000px;}
.x4{left:322.815000px;}
.x4c{left:331.125000px;}
.x1{left:333.794987px;}
.x43{left:357.090000px;}
.x9{left:360.939000px;}
.x55{left:374.610000px;}
.x52{left:393.735000px;}
.x12{left:416.460000px;}
.x17{left:425.595000px;}
.x16{left:452.775000px;}
.x41{left:467.175000px;}
.x37{left:473.040000px;}
.x56{left:511.635000px;}
.x13{left:530.760000px;}
.x4e{left:535.065000px;}
.x36{left:540.644987px;}
.x27{left:562.065000px;}
.x22{left:566.565000px;}
.x18{left:584.925000px;}
.x51{left:593.895000px;}
.x34{left:605.805000px;}
.x57{left:607.395000px;}
.x1c{left:690.269987px;}
.x58{left:737.745000px;}
.x19{left:766.229987px;}
.x14{left:789.989987px;}
.xd{left:798.989987px;}
.x59{left:893.445000px;}
.x5a{left:1074.390000px;}
.x50{left:1117.229981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.146667pt;}
.v1{vertical-align:50.026667pt;}
.v3{vertical-align:61.440000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls26{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls1f{letter-spacing:0.183680pt;}
.ls1{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls27{letter-spacing:0.272533pt;}
.ls2a{letter-spacing:0.277120pt;}
.ls15{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.383787pt;}
.ls23{letter-spacing:0.437120pt;}
.ls25{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.768000pt;}
.ls19{letter-spacing:1.600000pt;}
.ls2d{letter-spacing:1.760000pt;}
.ls2c{letter-spacing:3.680000pt;}
.ls29{letter-spacing:4.640000pt;}
.ls7{letter-spacing:7.680000pt;}
.lsc{letter-spacing:8.320000pt;}
.ls2b{letter-spacing:9.738667pt;}
.lsb{letter-spacing:21.120000pt;}
.ls11{letter-spacing:27.626667pt;}
.ls3{letter-spacing:30.186667pt;}
.ls6{letter-spacing:44.992000pt;}
.ls2e{letter-spacing:48.746667pt;}
.ls12{letter-spacing:57.066667pt;}
.ls18{letter-spacing:88.746667pt;}
.ls17{letter-spacing:88.800000pt;}
.ls1a{letter-spacing:315.024000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws19{word-spacing:-53.120000pt;}
.ws0{word-spacing:-24.000000pt;}
.wsa{word-spacing:-16.768000pt;}
.ws7{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.360000pt;}
.wsd{word-spacing:-14.656000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.552533pt;}
.ws18{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.ws12{word-spacing:-12.960000pt;}
.ws15{word-spacing:-3.360000pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:76.640000pt;}
.ws14{word-spacing:98.480000pt;}
._20{margin-left:-4.702720pt;}
._8{margin-left:-3.745280pt;}
._a{margin-left:-2.654720pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.450667pt;}
._14{width:2.410667pt;}
._17{width:3.328000pt;}
._c{width:4.288000pt;}
._d{width:5.504000pt;}
._b{width:6.442667pt;}
._e{width:7.456000pt;}
._11{width:8.938667pt;}
._10{width:10.048000pt;}
._f{width:11.136000pt;}
._1f{width:12.032000pt;}
._15{width:12.928000pt;}
._16{width:14.506667pt;}
._41{width:15.808427pt;}
._50{width:16.892160pt;}
._19{width:17.856000pt;}
._18{width:18.880000pt;}
._1b{width:20.266667pt;}
._1c{width:21.440000pt;}
._4c{width:22.423680pt;}
._1a{width:23.552000pt;}
._12{width:24.640000pt;}
._13{width:25.984000pt;}
._34{width:27.091200pt;}
._1d{width:28.458667pt;}
._1e{width:29.685333pt;}
._60{width:30.633813pt;}
._35{width:31.696213pt;}
._7c{width:32.595200pt;}
._3f{width:34.049920pt;}
._4{width:35.750400pt;}
._28{width:37.209600pt;}
._49{width:38.682453pt;}
._4d{width:40.249600pt;}
._2e{width:41.539840pt;}
._32{width:43.271040pt;}
._27{width:44.992640pt;}
._69{width:46.251093pt;}
._26{width:47.808000pt;}
._2a{width:48.704000pt;}
._2b{width:49.728000pt;}
._63{width:52.004480pt;}
._36{width:53.704320pt;}
._4e{width:54.610773pt;}
._5c{width:55.873280pt;}
._2f{width:57.050880pt;}
._5a{width:57.953920pt;}
._74{width:59.016320pt;}
._4f{width:60.291200pt;}
._57{width:61.247360pt;}
._23{width:62.824533pt;}
._33{width:64.062720pt;}
._7e{width:65.857280pt;}
._62{width:66.902827pt;}
._5e{width:69.162240pt;}
._43{width:70.208213pt;}
._65{width:71.955413pt;}
._66{width:73.064960pt;}
._75{width:74.139093pt;}
._6f{width:75.483520pt;}
._37{width:76.439680pt;}
._3b{width:79.255040pt;}
._2d{width:80.848640pt;}
._31{width:81.964160pt;}
._46{width:83.496320pt;}
._40{width:85.310720pt;}
._4a{width:86.266880pt;}
._29{width:90.158080pt;}
._9{width:91.159893pt;}
._45{width:92.807040pt;}
._6{width:94.653440pt;}
._7a{width:95.918293pt;}
._61{width:97.446187pt;}
._6c{width:98.489600pt;}
._47{width:106.558720pt;}
._5{width:108.357760pt;}
._51{width:109.374080pt;}
._38{width:111.641813pt;}
._3d{width:114.672640pt;}
._4b{width:115.748480pt;}
._71{width:116.784427pt;}
._42{width:117.873280pt;}
._3c{width:120.848000pt;}
._56{width:122.584533pt;}
._3a{width:124.549973pt;}
._79{width:126.674773pt;}
._22{width:127.876693pt;}
._72{width:134.217813pt;}
._68{width:135.851947pt;}
._6e{width:138.786133pt;}
._44{width:140.539093pt;}
._39{width:141.867093pt;}
._77{width:143.726293pt;}
._55{width:146.382293pt;}
._25{width:152.135680pt;}
._30{width:155.465813pt;}
._53{width:157.288320pt;}
._6d{width:159.971413pt;}
._6a{width:162.212053pt;}
._76{width:167.311573pt;}
._58{width:170.408960pt;}
._5d{width:171.933013pt;}
._52{width:172.995413pt;}
._78{width:174.323413pt;}
._2c{width:175.827200pt;}
._3e{width:187.762773pt;}
._5b{width:190.093440pt;}
._6b{width:191.922560pt;}
._7d{width:192.813013pt;}
._7b{width:193.712213pt;}
._48{width:204.990080pt;}
._67{width:206.318080pt;}
._21{width:207.576533pt;}
._7{width:212.033920pt;}
._59{width:215.757013pt;}
._24{width:228.787840pt;}
._64{width:237.783680pt;}
._5f{width:256.038400pt;}
._70{width:277.801173pt;}
._54{width:287.200000pt;}
._73{width:290.460160pt;}
._80{width:490.720000pt;}
._0{width:537.834667pt;}
._82{width:775.168000pt;}
._81{width:784.000000pt;}
._1{width:1453.941333pt;}
._7f{width:1927.360000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:192.000000pt;}
.y2ac{bottom:-51.866667pt;}
.y1dc{bottom:-51.840000pt;}
.y61{bottom:-50.266667pt;}
.y1ff{bottom:-50.240000pt;}
.y19a{bottom:-46.080000pt;}
.y197{bottom:-45.920000pt;}
.y19f{bottom:-40.800000pt;}
.y199{bottom:-22.720000pt;}
.y196{bottom:-22.560000pt;}
.y19e{bottom:-17.440000pt;}
.y189{bottom:-16.186667pt;}
.y37{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y195{bottom:0.640000pt;}
.y1d7{bottom:0.800000pt;}
.y21d{bottom:5.120000pt;}
.y1db{bottom:5.146667pt;}
.y1f9{bottom:5.280000pt;}
.y1d2{bottom:5.893333pt;}
.y19d{bottom:5.920000pt;}
.y60{bottom:6.720000pt;}
.y1fe{bottom:6.746667pt;}
.y188{bottom:9.920000pt;}
.y36{bottom:10.560000pt;}
.y1a1{bottom:10.720000pt;}
.y185{bottom:10.880000pt;}
.y1c0{bottom:11.333333pt;}
.y1c4{bottom:11.520000pt;}
.y182{bottom:12.480000pt;}
.y1e2{bottom:13.120000pt;}
.y246{bottom:13.280000pt;}
.y21e{bottom:14.880000pt;}
.y194{bottom:16.000000pt;}
.y22{bottom:16.040000pt;}
.y141{bottom:18.400000pt;}
.y3b{bottom:18.560000pt;}
.y15b{bottom:18.586667pt;}
.y1d6{bottom:19.200000pt;}
.y290{bottom:19.520000pt;}
.y30{bottom:21.120000pt;}
.y19c{bottom:21.280000pt;}
.y18e{bottom:21.626667pt;}
.y2e{bottom:22.720000pt;}
.y1f8{bottom:22.874667pt;}
.y21c{bottom:22.880000pt;}
.y187{bottom:25.280000pt;}
.y1cf{bottom:25.893333pt;}
.y184{bottom:26.240000pt;}
.y2ab{bottom:27.680000pt;}
.y1da{bottom:27.706667pt;}
.y181{bottom:27.840000pt;}
.y1bb{bottom:28.506667pt;}
.y26b{bottom:29.280000pt;}
.y5f{bottom:29.440000pt;}
.y1fd{bottom:29.466667pt;}
.y209{bottom:29.600000pt;}
.y1c3{bottom:29.920000pt;}
.y190{bottom:30.400000pt;}
.y1e1{bottom:30.720000pt;}
.y245{bottom:30.880000pt;}
.y232{bottom:30.906667pt;}
.y27a{bottom:32.480000pt;}
.y35{bottom:34.720000pt;}
.y28e{bottom:36.320000pt;}
.y1d1{bottom:36.453333pt;}
.y28f{bottom:37.280000pt;}
.y1d5{bottom:37.640000pt;}
.y266{bottom:38.880000pt;}
.y227{bottom:38.920000pt;}
.y1f6{bottom:40.474667pt;}
.y21b{bottom:40.480000pt;}
.y1b7{bottom:41.186667pt;}
.y1ce{bottom:41.253333pt;}
.y13d{bottom:41.440000pt;}
.y152{bottom:41.600000pt;}
.y15a{bottom:41.626667pt;}
.y1fb{bottom:42.074667pt;}
.y21{bottom:44.520000pt;}
.y26a{bottom:46.880000pt;}
.y208{bottom:47.200000pt;}
.y2d{bottom:47.386667pt;}
.y1e0{bottom:48.320000pt;}
.y244{bottom:48.474667pt;}
.y1ee{bottom:48.480000pt;}
.y231{bottom:48.506667pt;}
.y217{bottom:48.520000pt;}
.y3a{bottom:48.640000pt;}
.y1f0{bottom:50.080000pt;}
.y296{bottom:52.794667pt;}
.y1bc{bottom:53.986667pt;}
.y28d{bottom:54.874667pt;}
.y265{bottom:56.474667pt;}
.y226{bottom:56.520000pt;}
.y1f5{bottom:58.074667pt;}
.y1c9{bottom:58.266667pt;}
.y34{bottom:59.034667pt;}
.y3d{bottom:59.552000pt;}
.y1c7{bottom:63.386667pt;}
.y269{bottom:64.474667pt;}
.y140{bottom:64.480000pt;}
.y159{bottom:64.666667pt;}
.y151{bottom:64.680000pt;}
.y207{bottom:64.800000pt;}
.y1b8{bottom:65.440000pt;}
.y1ea{bottom:65.920000pt;}
.y243{bottom:66.074667pt;}
.y1df{bottom:66.080000pt;}
.y230{bottom:66.106667pt;}
.y216{bottom:66.120000pt;}
.y1fa{bottom:67.674667pt;}
.y20a{bottom:67.680000pt;}
.y295{bottom:71.354667pt;}
.y2c{bottom:71.866667pt;}
.y28c{bottom:72.474667pt;}
.y264{bottom:74.074667pt;}
.y225{bottom:74.120000pt;}
.y24b{bottom:74.554667pt;}
.y1f4{bottom:75.674667pt;}
.y1ef{bottom:75.680000pt;}
.y22c{bottom:75.706667pt;}
.y23c{bottom:77.434667pt;}
.y31{bottom:79.392000pt;}
.y1bd{bottom:79.426667pt;}
.y20{bottom:80.040000pt;}
.y1ca{bottom:81.413333pt;}
.y268{bottom:82.074667pt;}
.y206{bottom:82.560000pt;}
.y33{bottom:83.354667pt;}
.y242{bottom:83.674667pt;}
.y1e9{bottom:83.680000pt;}
.y22f{bottom:83.706667pt;}
.y215{bottom:83.720000pt;}
.y21a{bottom:84.192000pt;}
.y233{bottom:85.306667pt;}
.y1f7{bottom:85.434667pt;}
.y260{bottom:86.432000pt;}
.y3c{bottom:87.072000pt;}
.y15e{bottom:87.520000pt;}
.y158{bottom:87.546667pt;}
.y294{bottom:88.954667pt;}
.y1b0{bottom:89.306667pt;}
.y28b{bottom:90.074667pt;}
.y1b9{bottom:90.906667pt;}
.y267{bottom:91.674667pt;}
.y224{bottom:91.720000pt;}
.y24a{bottom:92.154667pt;}
.y25e{bottom:92.160000pt;}
.y203{bottom:93.280000pt;}
.y22b{bottom:93.306667pt;}
.y250{bottom:93.320000pt;}
.y1f3{bottom:93.434667pt;}
.y39{bottom:93.440000pt;}
.y1c8{bottom:98.080000pt;}
.y263{bottom:99.674667pt;}
.y205{bottom:100.160000pt;}
.y27c{bottom:100.480000pt;}
.y1e8{bottom:101.280000pt;}
.y22e{bottom:101.306667pt;}
.y214{bottom:101.320000pt;}
.y241{bottom:101.434667pt;}
.y277{bottom:101.440000pt;}
.y283{bottom:101.466667pt;}
.y1af{bottom:101.893333pt;}
.y234{bottom:102.432000pt;}
.y1ec{bottom:102.880000pt;}
.y252{bottom:102.920000pt;}
.y23b{bottom:103.034667pt;}
.y2b{bottom:104.346667pt;}
.y1cb{bottom:104.506667pt;}
.y1be{bottom:104.893333pt;}
.y293{bottom:106.554667pt;}
.y28a{bottom:107.674667pt;}
.y1b1{bottom:108.480000pt;}
.y32{bottom:109.274667pt;}
.y223{bottom:109.320000pt;}
.y297{bottom:109.434667pt;}
.y25d{bottom:109.760000pt;}
.y249{bottom:109.954667pt;}
.y15d{bottom:110.560000pt;}
.y157{bottom:110.586667pt;}
.y24f{bottom:110.920000pt;}
.y27d{bottom:111.040000pt;}
.y22d{bottom:111.066667pt;}
.y1f1{bottom:111.072000pt;}
.y1f2{bottom:111.074667pt;}
.y1ac{bottom:114.400000pt;}
.y1f{bottom:115.720000pt;}
.y1ba{bottom:116.346667pt;}
.y262{bottom:117.434667pt;}
.y204{bottom:117.920000pt;}
.y1e7{bottom:118.880000pt;}
.y213{bottom:118.920000pt;}
.y276{bottom:119.040000pt;}
.y22a{bottom:119.066667pt;}
.y240{bottom:119.074667pt;}
.y7f{bottom:119.392000pt;}
.y281{bottom:120.666667pt;}
.y23a{bottom:120.674667pt;}
.y279{bottom:120.680000pt;}
.y14f{bottom:121.472000pt;}
.y5c{bottom:123.872000pt;}
.y292{bottom:124.194667pt;}
.y2e5{bottom:124.992000pt;}
.y289{bottom:125.474667pt;}
.y2d5{bottom:126.272000pt;}
.y222{bottom:127.080000pt;}
.y248{bottom:127.554667pt;}
.y1b2{bottom:127.613333pt;}
.y1cc{bottom:127.653333pt;}
.y25c{bottom:127.680000pt;}
.y1eb{bottom:128.480000pt;}
.y25a{bottom:128.640000pt;}
.y251{bottom:128.680000pt;}
.y1bf{bottom:130.333333pt;}
.yee{bottom:132.032000pt;}
.y2fe{bottom:132.672000pt;}
.y1ae{bottom:133.573333pt;}
.y156{bottom:133.626667pt;}
.y261{bottom:135.074667pt;}
.y2a3{bottom:135.520000pt;}
.y171{bottom:136.026667pt;}
.y1e6{bottom:136.480000pt;}
.y202{bottom:136.520000pt;}
.y275{bottom:136.640000pt;}
.y229{bottom:136.666667pt;}
.y23f{bottom:136.674667pt;}
.y212{bottom:136.680000pt;}
.y2a{bottom:136.986667pt;}
.y32a{bottom:138.586667pt;}
.y314{bottom:139.546667pt;}
.yd0{bottom:140.506667pt;}
.y291{bottom:142.114667pt;}
.y288{bottom:143.074667pt;}
.y2c4{bottom:143.226667pt;}
.y221{bottom:144.680000pt;}
.y247{bottom:145.314667pt;}
.y7e{bottom:145.786667pt;}
.y272{bottom:146.240000pt;}
.y259{bottom:146.266667pt;}
.y239{bottom:146.274667pt;}
.y210{bottom:146.280000pt;}
.y17f{bottom:146.426667pt;}
.y1b3{bottom:146.786667pt;}
.y14e{bottom:149.146667pt;}
.y1cd{bottom:150.746667pt;}
.yb6{bottom:151.546667pt;}
.y1aa{bottom:152.346667pt;}
.y2e4{bottom:152.666667pt;}
.y1ad{bottom:152.733333pt;}
.y1c1{bottom:153.093333pt;}
.y2a2{bottom:153.120000pt;}
.y2d4{bottom:153.786667pt;}
.y1e5{bottom:154.080000pt;}
.y274{bottom:154.240000pt;}
.y136{bottom:154.266667pt;}
.y23e{bottom:154.274667pt;}
.y211{bottom:154.280000pt;}
.y9b{bottom:154.746667pt;}
.y278{bottom:155.840000pt;}
.y24d{bottom:155.874667pt;}
.y219{bottom:155.880000pt;}
.y123{bottom:156.026667pt;}
.y155{bottom:156.666667pt;}
.y5b{bottom:159.386667pt;}
.yed{bottom:159.546667pt;}
.y287{bottom:160.674667pt;}
.y29{bottom:161.466667pt;}
.y220{bottom:162.280000pt;}
.y20b{bottom:163.386667pt;}
.y1d3{bottom:163.426667pt;}
.y170{bottom:163.546667pt;}
.y271{bottom:163.840000pt;}
.y258{bottom:163.866667pt;}
.y238{bottom:163.874667pt;}
.y20f{bottom:163.880000pt;}
.y1b4{bottom:165.946667pt;}
.y329{bottom:166.266667pt;}
.y313{bottom:167.226667pt;}
.y2c3{bottom:170.746667pt;}
.y2a1{bottom:170.760000pt;}
.y25b{bottom:171.866667pt;}
.y23d{bottom:171.874667pt;}
.y1e4{bottom:171.880000pt;}
.y7d{bottom:172.186667pt;}
.y2fd{bottom:172.826667pt;}
.y107{bottom:173.466667pt;}
.y285{bottom:173.626667pt;}
.y1a0{bottom:175.546667pt;}
.y286{bottom:178.274667pt;}
.y154{bottom:179.546667pt;}
.y1a9{bottom:180.026667pt;}
.y2e3{bottom:180.186667pt;}
.y2d3{bottom:181.466667pt;}
.y218{bottom:181.480000pt;}
.y280{bottom:181.626667pt;}
.y24c{bottom:181.634667pt;}
.y273{bottom:181.640000pt;}
.y17e{bottom:181.946667pt;}
.y122{bottom:183.546667pt;}
.ycf{bottom:183.706667pt;}
.y14d{bottom:184.666667pt;}
.y28{bottom:185.946667pt;}
.yec{bottom:187.226667pt;}
.y2a0{bottom:188.360000pt;}
.y1b5{bottom:189.440000pt;}
.y257{bottom:189.466667pt;}
.y20e{bottom:189.480000pt;}
.y282{bottom:189.626667pt;}
.y237{bottom:189.634667pt;}
.y270{bottom:189.640000pt;}
.yb5{bottom:189.946667pt;}
.y9a{bottom:190.266667pt;}
.y16f{bottom:191.226667pt;}
.y2a5{bottom:191.240000pt;}
.y328{bottom:193.786667pt;}
.y312{bottom:194.746667pt;}
.y5a{bottom:195.066667pt;}
.y2c2{bottom:198.426667pt;}
.y7c{bottom:198.586667pt;}
.y25f{bottom:199.066667pt;}
.y284{bottom:199.226667pt;}
.y29b{bottom:199.240000pt;}
.y106{bottom:200.986667pt;}
.y135{bottom:203.706667pt;}
.y2fc{bottom:205.626667pt;}
.y29f{bottom:206.120000pt;}
.y256{bottom:207.066667pt;}
.y20d{bottom:207.080000pt;}
.y27f{bottom:207.226667pt;}
.y236{bottom:207.234667pt;}
.y26f{bottom:207.240000pt;}
.y1a8{bottom:207.546667pt;}
.y2e2{bottom:207.866667pt;}
.y2d2{bottom:208.986667pt;}
.y1d{bottom:209.946667pt;}
.y121{bottom:211.226667pt;}
.yeb{bottom:214.746667pt;}
.y2a4{bottom:216.840000pt;}
.yb4{bottom:217.466667pt;}
.y17d{bottom:217.626667pt;}
.y27{bottom:218.106667pt;}
.y15f{bottom:218.586667pt;}
.y16e{bottom:218.746667pt;}
.yce{bottom:219.386667pt;}
.y14c{bottom:220.346667pt;}
.y327{bottom:221.466667pt;}
.y311{bottom:222.266667pt;}
.y59{bottom:222.586667pt;}
.y29e{bottom:223.720000pt;}
.y255{bottom:224.826667pt;}
.y235{bottom:224.834667pt;}
.y26e{bottom:224.840000pt;}
.y20c{bottom:224.866667pt;}
.y7b{bottom:224.986667pt;}
.y99{bottom:225.946667pt;}
.y105{bottom:228.666667pt;}
.y192{bottom:230.946667pt;}
.y2e1{bottom:235.386667pt;}
.y1c{bottom:237.466667pt;}
.y2fb{bottom:238.586667pt;}
.y120{bottom:238.746667pt;}
.y29d{bottom:241.320000pt;}
.y254{bottom:242.426667pt;}
.y29a{bottom:242.440000pt;}
.y253{bottom:242.626667pt;}
.y1a7{bottom:243.226667pt;}
.y1ed{bottom:243.266667pt;}
.y2d1{bottom:244.666667pt;}
.yb3{bottom:245.146667pt;}
.y26{bottom:246.106667pt;}
.y2a9{bottom:246.146667pt;}
.y14b{bottom:247.866667pt;}
.y326{bottom:248.986667pt;}
.y310{bottom:249.946667pt;}
.y58{bottom:250.266667pt;}
.yea{bottom:250.426667pt;}
.y7a{bottom:251.386667pt;}
.y134{bottom:252.986667pt;}
.y17c{bottom:253.146667pt;}
.y98{bottom:253.466667pt;}
.y2c1{bottom:253.626667pt;}
.ycd{bottom:254.906667pt;}
.y104{bottom:256.186667pt;}
.y1c6{bottom:258.240000pt;}
.y18b{bottom:258.906667pt;}
.y29c{bottom:259.080000pt;}
.y299{bottom:260.040000pt;}
.y1d4{bottom:261.946667pt;}
.y1d0{bottom:263.040000pt;}
.y2e0{bottom:263.066667pt;}
.y1b{bottom:264.986667pt;}
.y11f{bottom:266.426667pt;}
.y25{bottom:270.586667pt;}
.y2fa{bottom:271.386667pt;}
.y2d0{bottom:272.186667pt;}
.yb2{bottom:272.666667pt;}
.y14a{bottom:275.386667pt;}
.y325{bottom:276.666667pt;}
.y30f{bottom:277.466667pt;}
.y57{bottom:277.786667pt;}
.ye9{bottom:277.946667pt;}
.y2a8{bottom:278.946667pt;}
.y2c0{bottom:281.146667pt;}
.y1e{bottom:282.906667pt;}
.y16d{bottom:283.866667pt;}
.y27e{bottom:285.826667pt;}
.y17b{bottom:288.826667pt;}
.y97{bottom:289.146667pt;}
.ycc{bottom:290.586667pt;}
.y103{bottom:291.906667pt;}
.y1a{bottom:292.546667pt;}
.y11e{bottom:293.986667pt;}
.y24{bottom:295.106667pt;}
.y2cf{bottom:299.906667pt;}
.yb1{bottom:300.386667pt;}
.y133{bottom:302.466667pt;}
.y79{bottom:304.226667pt;}
.y30e{bottom:305.186667pt;}
.y56{bottom:305.506667pt;}
.ye8{bottom:305.666667pt;}
.y2bf{bottom:308.866667pt;}
.y18c{bottom:309.026667pt;}
.y2f9{bottom:309.986667pt;}
.y149{bottom:311.106667pt;}
.y16c{bottom:311.426667pt;}
.y2a7{bottom:314.946667pt;}
.y96{bottom:316.706667pt;}
.y2df{bottom:318.306667pt;}
.y102{bottom:319.426667pt;}
.y19{bottom:320.066667pt;}
.y11d{bottom:321.666667pt;}
.y17a{bottom:324.386667pt;}
.y191{bottom:325.186667pt;}
.ycb{bottom:326.146667pt;}
.y2ce{bottom:327.426667pt;}
.yb0{bottom:327.906667pt;}
.y78{bottom:330.626667pt;}
.y324{bottom:331.906667pt;}
.y30d{bottom:332.706667pt;}
.y55{bottom:333.026667pt;}
.ye7{bottom:333.186667pt;}
.y2be{bottom:336.386667pt;}
.y2f8{bottom:337.666667pt;}
.y16b{bottom:339.106667pt;}
.y95{bottom:344.386667pt;}
.y2de{bottom:345.826667pt;}
.y148{bottom:346.626667pt;}
.y101{bottom:347.106667pt;}
.y18{bottom:347.586667pt;}
.y228{bottom:348.386667pt;}
.y11c{bottom:349.186667pt;}
.y2a6{bottom:350.466667pt;}
.y132{bottom:351.906667pt;}
.yca{bottom:353.826667pt;}
.y2cd{bottom:355.106667pt;}
.yaf{bottom:355.426667pt;}
.y77{bottom:357.026667pt;}
.y323{bottom:359.426667pt;}
.y18a{bottom:359.586667pt;}
.y179{bottom:360.066667pt;}
.y30c{bottom:360.386667pt;}
.y54{bottom:360.706667pt;}
.ye6{bottom:360.866667pt;}
.y1a6{bottom:361.986667pt;}
.y2f7{bottom:365.186667pt;}
.y16a{bottom:366.626667pt;}
.y94{bottom:371.906667pt;}
.y2bd{bottom:372.066667pt;}
.y2dd{bottom:373.506667pt;}
.y26d{bottom:374.013333pt;}
.y147{bottom:374.306667pt;}
.y100{bottom:374.626667pt;}
.y17{bottom:375.106667pt;}
.y11b{bottom:376.866667pt;}
.yc9{bottom:381.346667pt;}
.yae{bottom:383.106667pt;}
.y76{bottom:383.426667pt;}
.y1e3{bottom:383.453333pt;}
.y322{bottom:387.106667pt;}
.y30b{bottom:387.906667pt;}
.y53{bottom:388.226667pt;}
.ye5{bottom:388.386667pt;}
.y2cc{bottom:390.626667pt;}
.y2f6{bottom:392.866667pt;}
.y169{bottom:394.306667pt;}
.y178{bottom:395.586667pt;}
.y1a5{bottom:397.506667pt;}
.y93{bottom:399.586667pt;}
.y131{bottom:401.346667pt;}
.y146{bottom:401.826667pt;}
.yff{bottom:402.306667pt;}
.y16{bottom:402.786667pt;}
.y11a{bottom:404.386667pt;}
.y32d{bottom:405.826667pt;}
.yc8{bottom:409.026667pt;}
.y201{bottom:409.373333pt;}
.y75{bottom:409.826667pt;}
.y321{bottom:414.626667pt;}
.y30a{bottom:415.586667pt;}
.y52{bottom:415.906667pt;}
.ye4{bottom:416.066667pt;}
.y2cb{bottom:418.306667pt;}
.yad{bottom:418.626667pt;}
.y2f5{bottom:420.386667pt;}
.y168{bottom:421.826667pt;}
.y18f{bottom:422.720000pt;}
.y145{bottom:429.506667pt;}
.yfe{bottom:429.826667pt;}
.y15{bottom:430.306667pt;}
.y177{bottom:431.266667pt;}
.y1a4{bottom:433.186667pt;}
.y92{bottom:435.106667pt;}
.y2bc{bottom:435.266667pt;}
.y15c{bottom:435.906667pt;}
.y74{bottom:436.226667pt;}
.y2dc{bottom:436.706667pt;}
.y320{bottom:442.306667pt;}
.y309{bottom:443.106667pt;}
.y51{bottom:443.426667pt;}
.yc7{bottom:444.546667pt;}
.y2ca{bottom:445.826667pt;}
.y119{bottom:446.146667pt;}
.yac{bottom:446.306667pt;}
.y130{bottom:447.266667pt;}
.y2f4{bottom:448.066667pt;}
.y167{bottom:449.506667pt;}
.ye3{bottom:451.586667pt;}
.y1c2{bottom:455.906667pt;}
.y144{bottom:457.026667pt;}
.y14{bottom:457.826667pt;}
.y32c{bottom:457.986667pt;}
.y1c5{bottom:458.786667pt;}
.y183{bottom:458.946667pt;}
.y73{bottom:462.626667pt;}
.y91{bottom:462.786667pt;}
.y2db{bottom:464.226667pt;}
.yfd{bottom:465.506667pt;}
.y176{bottom:466.786667pt;}
.y31f{bottom:469.826667pt;}
.y308{bottom:470.786667pt;}
.y50{bottom:471.106667pt;}
.yc6{bottom:472.226667pt;}
.y2c9{bottom:473.506667pt;}
.yab{bottom:473.826667pt;}
.y12f{bottom:474.786667pt;}
.y2f3{bottom:475.586667pt;}
.y166{bottom:477.026667pt;}
.ye2{bottom:479.266667pt;}
.y143{bottom:484.706667pt;}
.y13{bottom:485.346667pt;}
.y23{bottom:488.546667pt;}
.y72{bottom:489.026667pt;}
.y118{bottom:489.506667pt;}
.y90{bottom:490.306667pt;}
.y2bb{bottom:490.466667pt;}
.y2da{bottom:491.906667pt;}
.yfc{bottom:493.026667pt;}
.y31e{bottom:497.506667pt;}
.y307{bottom:498.306667pt;}
.y4f{bottom:498.626667pt;}
.yc5{bottom:499.746667pt;}
.yaa{bottom:501.506667pt;}
.y12e{bottom:502.466667pt;}
.y2f2{bottom:503.266667pt;}
.y24e{bottom:506.173333pt;}
.ye1{bottom:506.786667pt;}
.y2c8{bottom:509.026667pt;}
.y32b{bottom:509.986667pt;}
.y165{bottom:512.546667pt;}
.y12{bottom:512.866667pt;}
.y71{bottom:515.426667pt;}
.y1ab{bottom:516.640000pt;}
.y117{bottom:517.026667pt;}
.y8f{bottom:517.986667pt;}
.y2d9{bottom:519.426667pt;}
.y142{bottom:520.226667pt;}
.yfb{bottom:520.546667pt;}
.y153{bottom:521.506667pt;}
.y21f{bottom:523.773333pt;}
.y31d{bottom:525.026667pt;}
.y306{bottom:525.986667pt;}
.y4e{bottom:526.146667pt;}
.yc4{bottom:527.426667pt;}
.y186{bottom:528.893333pt;}
.ya9{bottom:529.053333pt;}
.y2f1{bottom:530.813333pt;}
.y18d{bottom:533.600000pt;}
.ye0{bottom:534.493333pt;}
.y1a3{bottom:536.413333pt;}
.y2c7{bottom:536.573333pt;}
.y12d{bottom:538.013333pt;}
.y164{bottom:540.253333pt;}
.y11{bottom:540.413333pt;}
.y70{bottom:541.853333pt;}
.y13f{bottom:543.933333pt;}
.y116{bottom:544.573333pt;}
.y8e{bottom:545.533333pt;}
.y2ba{bottom:545.693333pt;}
.yfa{bottom:548.253333pt;}
.y27b{bottom:549.413333pt;}
.y2d8{bottom:551.293333pt;}
.y1b6{bottom:551.680000pt;}
.y31c{bottom:552.573333pt;}
.y305{bottom:553.533333pt;}
.y4d{bottom:553.853333pt;}
.y2f0{bottom:558.493333pt;}
.ydf{bottom:562.013333pt;}
.yc3{bottom:562.973333pt;}
.y2c6{bottom:564.253333pt;}
.ya8{bottom:564.733333pt;}
.y200{bottom:567.173333pt;}
.y163{bottom:567.773333pt;}
.y10{bottom:567.933333pt;}
.y6f{bottom:568.253333pt;}
.y180{bottom:569.373333pt;}
.y115{bottom:572.253333pt;}
.y2b9{bottom:573.213333pt;}
.y12c{bottom:573.693333pt;}
.y1de{bottom:576.453333pt;}
.y31b{bottom:580.253333pt;}
.y8d{bottom:581.213333pt;}
.y4c{bottom:581.373333pt;}
.yf9{bottom:583.773333pt;}
.y2ef{bottom:586.013333pt;}
.yc2{bottom:590.653333pt;}
.y2c5{bottom:591.773333pt;}
.ya7{bottom:592.253333pt;}
.y6e{bottom:594.653333pt;}
.yf{bottom:595.453333pt;}
.yde{bottom:597.693333pt;}
.y114{bottom:599.773333pt;}
.y2b8{bottom:600.893333pt;}
.y12b{bottom:601.213333pt;}
.y31a{bottom:607.773333pt;}
.y8c{bottom:608.733333pt;}
.y4b{bottom:609.053333pt;}
.y175{bottom:609.213333pt;}
.y2d7{bottom:611.453333pt;}
.y2ee{bottom:613.693333pt;}
.yc1{bottom:618.173333pt;}
.yf8{bottom:619.453333pt;}
.ya6{bottom:619.933333pt;}
.y26c{bottom:619.973333pt;}
.y6d{bottom:621.053333pt;}
.ye{bottom:622.973333pt;}
.ydd{bottom:625.213333pt;}
.y113{bottom:627.453333pt;}
.y38{bottom:628.413333pt;}
.y13e{bottom:629.533333pt;}
.y162{bottom:630.973333pt;}
.y319{bottom:635.453333pt;}
.y8b{bottom:636.413333pt;}
.y4a{bottom:636.573333pt;}
.y12a{bottom:636.893333pt;}
.y2d6{bottom:638.973333pt;}
.y2ed{bottom:641.213333pt;}
.y174{bottom:644.893333pt;}
.yc0{bottom:645.853333pt;}
.yf7{bottom:646.973333pt;}
.y6c{bottom:647.453333pt;}
.yd{bottom:650.493333pt;}
.y19b{bottom:652.093333pt;}
.ydc{bottom:652.893333pt;}
.y112{bottom:654.973333pt;}
.y298{bottom:655.333333pt;}
.y198{bottom:656.253333pt;}
.y193{bottom:657.053333pt;}
.y318{bottom:662.973333pt;}
.y8a{bottom:663.933333pt;}
.y2b7{bottom:664.093333pt;}
.y49{bottom:664.253333pt;}
.y161{bottom:666.653333pt;}
.y2ec{bottom:668.893333pt;}
.y13c{bottom:669.213333pt;}
.ybf{bottom:673.373333pt;}
.y6b{bottom:673.853333pt;}
.yf6{bottom:674.653333pt;}
.ya5{bottom:675.133333pt;}
.y1dd{bottom:676.773333pt;}
.yc{bottom:678.013333pt;}
.y129{bottom:678.493333pt;}
.ydb{bottom:680.413333pt;}
.y111{bottom:682.653333pt;}
.y317{bottom:690.653333pt;}
.y89{bottom:691.613333pt;}
.y48{bottom:691.773333pt;}
.y160{bottom:694.173333pt;}
.y2eb{bottom:696.413333pt;}
.yf5{bottom:702.173333pt;}
.yb{bottom:705.533333pt;}
.y1d9{bottom:706.053333pt;}
.y1fc{bottom:707.653333pt;}
.yda{bottom:708.093333pt;}
.ybe{bottom:709.053333pt;}
.y6a{bottom:709.373333pt;}
.y110{bottom:710.173333pt;}
.ya4{bottom:710.653333pt;}
.y173{bottom:716.093333pt;}
.y316{bottom:718.173333pt;}
.y304{bottom:719.133333pt;}
.y2b6{bottom:719.293333pt;}
.y47{bottom:719.453333pt;}
.y128{bottom:721.853333pt;}
.y150{bottom:722.173333pt;}
.y1d8{bottom:723.360000pt;}
.y2ea{bottom:724.093333pt;}
.y88{bottom:727.133333pt;}
.yf4{bottom:729.853333pt;}
.ya{bottom:733.053333pt;}
.yd9{bottom:735.613333pt;}
.ybd{bottom:736.573333pt;}
.y10f{bottom:737.853333pt;}
.ya3{bottom:738.333333pt;}
.y172{bottom:743.613333pt;}
.y69{bottom:745.053333pt;}
.y315{bottom:745.853333pt;}
.y2b5{bottom:746.813333pt;}
.y46{bottom:746.973333pt;}
.y127{bottom:749.373333pt;}
.y2e9{bottom:751.613333pt;}
.y87{bottom:754.813333pt;}
.y13b{bottom:755.293333pt;}
.yf3{bottom:757.373333pt;}
.y9{bottom:760.573333pt;}
.ybc{bottom:764.253333pt;}
.y1a2{bottom:765.373333pt;}
.ya2{bottom:765.853333pt;}
.yd8{bottom:771.333333pt;}
.y10e{bottom:773.413333pt;}
.y303{bottom:774.373333pt;}
.y2b4{bottom:774.533333pt;}
.y45{bottom:774.693333pt;}
.y2e8{bottom:779.333333pt;}
.y68{bottom:780.613333pt;}
.y86{bottom:782.373333pt;}
.y126{bottom:785.093333pt;}
.y8{bottom:788.293333pt;}
.y13a{bottom:790.853333pt;}
.ybb{bottom:791.813333pt;}
.yf2{bottom:793.093333pt;}
.ya1{bottom:793.573333pt;}
.yd7{bottom:798.853333pt;}
.y10d{bottom:801.093333pt;}
.y2b3{bottom:802.053333pt;}
.y44{bottom:802.213333pt;}
.y2e7{bottom:806.853333pt;}
.y85{bottom:810.053333pt;}
.y125{bottom:812.613333pt;}
.y7{bottom:815.813333pt;}
.y67{bottom:816.293333pt;}
.yba{bottom:819.493333pt;}
.yf1{bottom:820.613333pt;}
.ya0{bottom:821.093333pt;}
.yd6{bottom:826.533333pt;}
.y10c{bottom:828.613333pt;}
.y302{bottom:829.573333pt;}
.y2b2{bottom:829.733333pt;}
.y43{bottom:829.893333pt;}
.y2e6{bottom:834.533333pt;}
.y84{bottom:837.573333pt;}
.y124{bottom:840.293333pt;}
.y6{bottom:843.333333pt;}
.yf0{bottom:848.293333pt;}
.y66{bottom:851.813333pt;}
.yd5{bottom:854.053333pt;}
.y10b{bottom:856.293333pt;}
.y2b1{bottom:857.253333pt;}
.y42{bottom:857.413333pt;}
.yb9{bottom:857.733333pt;}
.y9f{bottom:859.333333pt;}
.y139{bottom:862.053333pt;}
.y5{bottom:870.853333pt;}
.y83{bottom:875.813333pt;}
.yd4{bottom:881.733333pt;}
.y10a{bottom:883.813333pt;}
.y301{bottom:884.773333pt;}
.y2b0{bottom:884.933333pt;}
.y41{bottom:885.093333pt;}
.yb8{bottom:885.253333pt;}
.y9e{bottom:887.013333pt;}
.y65{bottom:887.493333pt;}
.y138{bottom:889.733333pt;}
.y4{bottom:898.373333pt;}
.y82{bottom:903.493333pt;}
.yd3{bottom:909.253333pt;}
.y2f{bottom:910.373333pt;}
.y109{bottom:911.493333pt;}
.y300{bottom:912.453333pt;}
.y40{bottom:912.613333pt;}
.yb7{bottom:914.213333pt;}
.y9d{bottom:914.533333pt;}
.y137{bottom:917.253333pt;}
.y2af{bottom:920.453333pt;}
.y64{bottom:923.013333pt;}
.y3{bottom:925.893333pt;}
.y81{bottom:931.013333pt;}
.y108{bottom:939.013333pt;}
.y3f{bottom:940.293333pt;}
.y9c{bottom:942.213333pt;}
.yd2{bottom:944.933333pt;}
.y2ff{bottom:945.573333pt;}
.y2{bottom:953.413333pt;}
.y2ae{bottom:953.733333pt;}
.y63{bottom:958.693333pt;}
.yef{bottom:966.693333pt;}
.y1{bottom:981.253333pt;}
.y3e{bottom:984.133333pt;}
.yd1{bottom:986.533333pt;}
.y80{bottom:986.693333pt;}
.y2ad{bottom:993.893333pt;}
.y62{bottom:994.213333pt;}
.y2aa{bottom:1034.880000pt;}
.y5e{bottom:1036.480000pt;}
.y5d{bottom:1052.160000pt;}
.h2b{height:33.600000pt;}
.h29{height:36.480000pt;}
.h19{height:39.040000pt;}
.h2a{height:41.600000pt;}
.h30{height:41.601562pt;}
.h3c{height:43.108125pt;}
.h4c{height:43.200000pt;}
.h24{height:45.760000pt;}
.h25{height:46.560000pt;}
.h23{height:46.720000pt;}
.h26{height:46.752000pt;}
.h2d{height:47.109375pt;}
.h4e{height:47.200000pt;}
.h39{height:47.232000pt;}
.h1e{height:47.621250pt;}
.h11{height:47.742188pt;}
.h22{height:48.320000pt;}
.h10{height:48.960000pt;}
.h40{height:48.992000pt;}
.h7{height:51.680000pt;}
.h35{height:52.000000pt;}
.h3d{height:52.108438pt;}
.h18{height:52.134375pt;}
.h31{height:52.800000pt;}
.h9{height:52.834688pt;}
.h17{height:53.535000pt;}
.h1b{height:57.375000pt;}
.h36{height:60.512000pt;}
.h16{height:61.920000pt;}
.h21{height:62.781250pt;}
.he{height:62.812500pt;}
.h3{height:63.656250pt;}
.hf{height:64.500000pt;}
.h15{height:65.781915pt;}
.hd{height:66.625000pt;}
.h33{height:70.888854pt;}
.h43{height:78.560000pt;}
.h4f{height:83.540625pt;}
.h1a{height:84.960000pt;}
.h20{height:84.992000pt;}
.h1c{height:85.152000pt;}
.h2{height:85.785000pt;}
.h3a{height:86.560000pt;}
.h5{height:94.218750pt;}
.h14{height:96.750000pt;}
.h2e{height:97.136042pt;}
.h13{height:99.937500pt;}
.hc{height:107.715000pt;}
.h34{height:113.574375pt;}
.h28{height:120.960000pt;}
.hb{height:125.625000pt;}
.h1f{height:131.040000pt;}
.ha{height:131.360000pt;}
.h3f{height:131.552000pt;}
.h3e{height:139.386667pt;}
.h8{height:139.680000pt;}
.h4{height:146.106667pt;}
.h49{height:149.120000pt;}
.h27{height:150.720000pt;}
.h47{height:155.546667pt;}
.h41{height:156.986667pt;}
.h44{height:174.746667pt;}
.h2f{height:175.680000pt;}
.h32{height:186.080000pt;}
.h12{height:190.968750pt;}
.h3b{height:192.346667pt;}
.h4b{height:198.746667pt;}
.h1d{height:200.026667pt;}
.h48{height:209.946667pt;}
.h2c{height:212.000000pt;}
.h45{height:245.306667pt;}
.h42{height:245.346667pt;}
.h46{height:262.906667pt;}
.h4a{height:262.946667pt;}
.h4d{height:280.506667pt;}
.h6{height:322.946667pt;}
.h37{height:793.760000pt;}
.h38{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:24.640000pt;}
.w15{width:26.400000pt;}
.w29{width:44.992000pt;}
.w2a{width:75.520000pt;}
.w2b{width:84.480000pt;}
.w28{width:103.200000pt;}
.w2f{width:112.640000pt;}
.w2c{width:115.232000pt;}
.w17{width:120.192000pt;}
.w18{width:130.080000pt;}
.w19{width:130.112000pt;}
.w2d{width:137.760000pt;}
.wb{width:140.800000pt;}
.wc{width:140.826667pt;}
.wd{width:140.986667pt;}
.w10{width:152.986667pt;}
.w2e{width:160.026667pt;}
.w27{width:162.106667pt;}
.w14{width:169.146667pt;}
.w7{width:177.306667pt;}
.w12{width:179.226667pt;}
.w13{width:188.506667pt;}
.w11{width:193.626667pt;}
.wf{width:219.226667pt;}
.we{width:221.146667pt;}
.w22{width:262.106667pt;}
.w9{width:282.426667pt;}
.wa{width:282.466667pt;}
.w21{width:294.080000pt;}
.w1b{width:316.640000pt;}
.w1d{width:318.106667pt;}
.w1c{width:320.480000pt;}
.w1e{width:320.706667pt;}
.w3{width:321.626667pt;}
.w20{width:354.720000pt;}
.w1f{width:372.480000pt;}
.w4{width:390.146667pt;}
.w26{width:481.346667pt;}
.w8{width:481.373333pt;}
.w1a{width:506.013333pt;}
.w6{width:641.693333pt;}
.w5{width:641.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w25{width:1122.559983pt;}
.w23{width:1122.560000pt;}
.w24{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x3{left:9.600000pt;}
.xb{left:11.360000pt;}
.x28{left:12.320000pt;}
.x29{left:13.280000pt;}
.x2a{left:14.560000pt;}
.xa{left:19.680000pt;}
.x21{left:20.640000pt;}
.x23{left:27.360000pt;}
.x26{left:29.120000pt;}
.x3a{left:31.866667pt;}
.x44{left:34.752000pt;}
.x30{left:38.400000pt;}
.x2c{left:40.000000pt;}
.x1e{left:42.560000pt;}
.x33{left:43.546667pt;}
.x35{left:46.720000pt;}
.x32{left:50.080000pt;}
.x11{left:53.640000pt;}
.x1f{left:55.200000pt;}
.x38{left:59.546667pt;}
.x42{left:62.946667pt;}
.x53{left:66.400000pt;}
.x3c{left:69.893333pt;}
.x24{left:76.480000pt;}
.x7{left:85.632000pt;}
.xc{left:88.634667pt;}
.x2{left:94.591988pt;}
.x2d{left:99.680000pt;}
.x2e{left:102.720000pt;}
.x46{left:112.160000pt;}
.x4f{left:113.439983pt;}
.x39{left:115.933333pt;}
.xe{left:118.591988pt;}
.x2f{left:120.383988pt;}
.x5{left:121.792000pt;}
.x45{left:127.840000pt;}
.x3d{left:131.973333pt;}
.x4d{left:133.120000pt;}
.xf{left:142.586655pt;}
.x1a{left:144.506655pt;}
.x3b{left:146.053333pt;}
.x1b{left:148.506655pt;}
.x4a{left:172.800000pt;}
.x8{left:182.754667pt;}
.x49{left:187.266667pt;}
.x3e{left:194.053333pt;}
.x47{left:196.386667pt;}
.x48{left:204.226667pt;}
.x6{left:208.194667pt;}
.x4b{left:220.573333pt;}
.x3f{left:225.093333pt;}
.x54{left:229.146667pt;}
.x10{left:236.826667pt;}
.x40{left:256.133333pt;}
.x1d{left:263.586667pt;}
.x20{left:266.466667pt;}
.x31{left:269.986667pt;}
.x25{left:277.026667pt;}
.x2b{left:281.986667pt;}
.x4{left:286.946667pt;}
.x4c{left:294.333333pt;}
.x1{left:296.706655pt;}
.x43{left:317.413333pt;}
.x9{left:320.834667pt;}
.x55{left:332.986667pt;}
.x52{left:349.986667pt;}
.x12{left:370.186667pt;}
.x17{left:378.306667pt;}
.x16{left:402.466667pt;}
.x41{left:415.266667pt;}
.x37{left:420.480000pt;}
.x56{left:454.786667pt;}
.x13{left:471.786667pt;}
.x4e{left:475.613333pt;}
.x36{left:480.573322pt;}
.x27{left:499.613333pt;}
.x22{left:503.613333pt;}
.x18{left:519.933333pt;}
.x51{left:527.906667pt;}
.x34{left:538.493333pt;}
.x57{left:539.906667pt;}
.x1c{left:613.573322pt;}
.x58{left:655.773333pt;}
.x19{left:681.093322pt;}
.x14{left:702.213322pt;}
.xd{left:710.213322pt;}
.x59{left:794.173333pt;}
.x5a{left:955.013333pt;}
.x50{left:993.093317pt;}
}




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