
    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_f06b13a2804c355b941cd401.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8f7b00f06959c99d9f6d4d13.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b8b834c0ad3ff0ee827affed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e7f93618351ae8723eb5c866.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_eb17d9782f016655ec86effd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960449;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2d2c8c047e066e187e28da9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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;}
.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;}
.ls15{letter-spacing:-2.304000px;}
.ls12{letter-spacing:-1.872000px;}
.ls16{letter-spacing:-1.296000px;}
.ls7{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.132600px;}
.lsd{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.043920px;}
.ls1{letter-spacing:0.090720px;}
.ls2{letter-spacing:0.134400px;}
.lsb{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.181200px;}
.ls8{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.256200px;}
.ls9{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.305400px;}
.ls14{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.648000px;}
.ls1a{letter-spacing:65.664000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws17{word-spacing:-42.048000px;}
.ws1{word-spacing:-39.888000px;}
.ws0{word-spacing:-36.810480px;}
.ws2{word-spacing:-29.736000px;}
.ws15{word-spacing:-20.664000px;}
.wsf{word-spacing:-20.520000px;}
.ws11{word-spacing:-20.376000px;}
.ws5{word-spacing:-20.304000px;}
.ws4{word-spacing:-20.232000px;}
.wsb{word-spacing:-20.160000px;}
.wsd{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.872000px;}
.wse{word-spacing:-19.800000px;}
.ws13{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.440000px;}
.ws16{word-spacing:-19.296000px;}
.ws12{word-spacing:-19.080000px;}
.ws7{word-spacing:-18.720120px;}
.ws8{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.262320px;}
.ws14{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.837640px;}
.ws3{word-spacing:0.000000px;}
._16{margin-left:-17.737440px;}
._17{margin-left:-15.139680px;}
._19{margin-left:-14.055360px;}
._1a{margin-left:-13.028400px;}
._18{margin-left:-11.737200px;}
._15{margin-left:-10.270320px;}
._4{margin-left:-7.805040px;}
._3{margin-left:-5.624640px;}
._1b{margin-left:-4.499040px;}
._c{margin-left:-3.270960px;}
._1{margin-left:-2.187360px;}
._2{margin-left:-1.093680px;}
._0{width:1.449360px;}
._11{width:3.158640px;}
._9{width:4.488000px;}
._7{width:5.520000px;}
._8{width:6.576000px;}
._b{width:8.424000px;}
._12{width:10.368000px;}
._14{width:12.312000px;}
._13{width:13.392000px;}
._a{width:15.336000px;}
._1e{width:17.023680px;}
._d{width:18.072000px;}
._f{width:21.456000px;}
._e{width:23.040000px;}
._21{width:24.696000px;}
._1f{width:25.704000px;}
._20{width:26.834640px;}
._1d{width:28.296000px;}
._10{width:29.304000px;}
._27{width:30.834000px;}
._26{width:32.040000px;}
._29{width:34.128000px;}
._28{width:35.712000px;}
._2b{width:37.289280px;}
._2c{width:38.526720px;}
._34{width:39.730320px;}
._33{width:41.269680px;}
._25{width:42.984000px;}
._2a{width:47.016000px;}
._3d{width:48.158640px;}
._3e{width:49.920000px;}
._24{width:52.128000px;}
._1c{width:54.864000px;}
._2d{width:56.016000px;}
._23{width:59.976000px;}
._22{width:65.664000px;}
._41{width:70.704000px;}
._40{width:71.976000px;}
._32{width:77.184000px;}
._31{width:78.264000px;}
._6{width:87.025680px;}
._5{width:88.275600px;}
._3a{width:104.616000px;}
._39{width:105.960000px;}
._35{width:109.512000px;}
._2f{width:110.664000px;}
._30{width:112.248000px;}
._3f{width:134.136000px;}
._38{width:173.448000px;}
._37{width:212.616000px;}
._36{width:213.984000px;}
._3c{width:222.624000px;}
._3b{width:223.752000px;}
._2e{width:263.376000px;}
.fc5{color:rgb(55,57,60);}
.fc2{color:rgb(46,116,181);}
.fc1{color:rgb(154,0,64);}
.fc4{color:rgb(68,68,68);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs6{font-size:120.240000px;}
.fs1{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y135{bottom:14.220000px;}
.y13c{bottom:14.400000px;}
.y134{bottom:45.360000px;}
.y20f{bottom:45.390000px;}
.y138{bottom:45.405000px;}
.y2{bottom:57.600000px;}
.y133{bottom:76.320000px;}
.y13b{bottom:76.500000px;}
.y20e{bottom:76.530000px;}
.y144{bottom:76.545000px;}
.y1{bottom:77.796000px;}
.y13a{bottom:107.460000px;}
.y143{bottom:107.505000px;}
.y1a2{bottom:111.456000px;}
.y1c{bottom:111.996000px;}
.y27b{bottom:112.356000px;}
.y1c0{bottom:113.436000px;}
.y107{bottom:115.236000px;}
.y12f{bottom:116.316000px;}
.y5c{bottom:116.856000px;}
.y227{bottom:117.216000px;}
.y22c{bottom:119.376000px;}
.ye2{bottom:120.276000px;}
.y1c9{bottom:122.436000px;}
.yf0{bottom:123.336000px;}
.y242{bottom:123.696000px;}
.yb1{bottom:125.496000px;}
.y11b{bottom:129.276000px;}
.y287{bottom:131.436000px;}
.y38{bottom:133.416000px;}
.y2b3{bottom:133.956000px;}
.y217{bottom:134.316000px;}
.y92{bottom:135.936000px;}
.y290{bottom:137.196000px;}
.y25f{bottom:138.276000px;}
.y140{bottom:138.420000px;}
.y142{bottom:138.645000px;}
.y27a{bottom:143.316000px;}
.y1bf{bottom:144.396000px;}
.y1a7{bottom:145.296000px;}
.y106{bottom:146.376000px;}
.y226{bottom:148.356000px;}
.y146{bottom:150.330000px;}
.ye1{bottom:151.230000px;}
.y29d{bottom:152.490000px;}
.y1b{bottom:152.850000px;}
.y1c8{bottom:153.390000px;}
.y206{bottom:154.110000px;}
.ycc{bottom:154.290000px;}
.y5b{bottom:154.470000px;}
.y241{bottom:154.830000px;}
.yb0{bottom:156.450000px;}
.y12e{bottom:159.330000px;}
.y11a{bottom:160.230000px;}
.y286{bottom:162.390000px;}
.y216{bottom:165.450000px;}
.y91{bottom:166.890000px;}
.y175{bottom:167.070000px;}
.y145{bottom:167.790000px;}
.y2b2{bottom:168.330000px;}
.y13f{bottom:169.560000px;}
.y28f{bottom:170.130000px;}
.y25e{bottom:172.110000px;}
.y279{bottom:174.450000px;}
.y15b{bottom:174.810000px;}
.y1be{bottom:175.350000px;}
.y37{bottom:176.430000px;}
.y105{bottom:177.330000px;}
.y187{bottom:178.050000px;}
.y225{bottom:179.310000px;}
.ye0{bottom:182.370000px;}
.y1c7{bottom:184.350000px;}
.ycb{bottom:185.430000px;}
.y240{bottom:185.790000px;}
.y270{bottom:186.330000px;}
.yaf{bottom:187.590000px;}
.y5a{bottom:190.470000px;}
.y119{bottom:191.370000px;}
.y22b{bottom:193.350000px;}
.y29c{bottom:195.510000px;}
.y215{bottom:196.410000px;}
.y75{bottom:196.950000px;}
.y205{bottom:197.130000px;}
.y90{bottom:197.850000px;}
.y13e{bottom:200.550000px;}
.y12d{bottom:202.350000px;}
.y2b1{bottom:202.530000px;}
.y1a{bottom:203.790000px;}
.y28e{bottom:204.510000px;}
.y278{bottom:205.410000px;}
.y25d{bottom:205.770000px;}
.y15a{bottom:205.950000px;}
.y1bd{bottom:206.490000px;}
.yf5{bottom:207.390000px;}
.y104{bottom:208.470000px;}
.y186{bottom:209.190000px;}
.y174{bottom:210.090000px;}
.ydf{bottom:213.330000px;}
.y1cf{bottom:215.490000px;}
.yca{bottom:216.390000px;}
.y23f{bottom:216.930000px;}
.y26f{bottom:217.290000px;}
.y280{bottom:217.470000px;}
.yae{bottom:218.910000px;}
.y36{bottom:219.450000px;}
.y195{bottom:220.350000px;}
.y118{bottom:222.330000px;}
.y1c6{bottom:224.490000px;}
.y59{bottom:226.470000px;}
.y1a1{bottom:228.450000px;}
.y8f{bottom:228.990000px;}
.y74{bottom:230.790000px;}
.y13d{bottom:231.690000px;}
.y285{bottom:236.550000px;}
.y159{bottom:236.910000px;}
.y1bc{bottom:237.450000px;}
.yf4{bottom:238.350000px;}
.y28d{bottom:238.710000px;}
.y103{bottom:239.430000px;}
.y204{bottom:240.330000px;}
.y173{bottom:241.230000px;}
.yde{bottom:244.470000px;}
.y12c{bottom:245.550000px;}
.y1ce{bottom:246.450000px;}
.yc9{bottom:247.350000px;}
.y23e{bottom:247.890000px;}
.y277{bottom:248.430000px;}
.yad{bottom:250.050000px;}
.y194{bottom:251.490000px;}
.y19{bottom:252.210000px;}
.y117{bottom:253.470000px;}
.y1c5{bottom:255.450000px;}
.y2b0{bottom:259.050000px;}
.y1a0{bottom:259.590000px;}
.y26e{bottom:260.490000px;}
.y141{bottom:261.570000px;}
.y58{bottom:262.470000px;}
.y35{bottom:262.650000px;}
.y73{bottom:264.450000px;}
.y1eb{bottom:265.350000px;}
.y284{bottom:267.510000px;}
.y1bb{bottom:268.590000px;}
.yf3{bottom:269.490000px;}
.y185{bottom:269.670000px;}
.y102{bottom:270.570000px;}
.y172{bottom:272.190000px;}
.y28c{bottom:273.090000px;}
.y25c{bottom:273.270000px;}
.ydd{bottom:275.430000px;}
.yc8{bottom:278.490000px;}
.y23d{bottom:278.850000px;}
.y276{bottom:279.570000px;}
.y158{bottom:279.930000px;}
.yac{bottom:281.190000px;}
.y8e{bottom:282.450000px;}
.y203{bottom:283.350000px;}
.y116{bottom:284.430000px;}
.y1c4{bottom:286.590000px;}
.yef{bottom:287.490000px;}
.y18{bottom:288.030000px;}
.y12b{bottom:288.570000px;}
.y26d{bottom:291.450000px;}
.y2af{bottom:293.610000px;}
.y1d6{bottom:295.590000px;}
.y1ea{bottom:296.490000px;}
.y57{bottom:298.290000px;}
.y283{bottom:298.650000px;}
.y184{bottom:301.530000px;}
.y19f{bottom:302.610000px;}
.y34{bottom:305.670000px;}
.ydc{bottom:306.570000px;}
.y25b{bottom:306.930000px;}
.y28b{bottom:307.470000px;}
.y1ba{bottom:308.550000px;}
.yc7{bottom:309.450000px;}
.y23c{bottom:309.990000px;}
.y101{bottom:310.530000px;}
.y157{bottom:311.070000px;}
.yab{bottom:312.330000px;}
.y29b{bottom:312.510000px;}
.y8d{bottom:313.590000px;}
.y171{bottom:315.390000px;}
.y115{bottom:315.570000px;}
.y1c3{bottom:317.550000px;}
.yee{bottom:318.450000px;}
.y17{bottom:323.670000px;}
.y193{bottom:325.650000px;}
.y202{bottom:326.370000px;}
.y1cd{bottom:326.550000px;}
.y1e9{bottom:327.495000px;}
.y2ae{bottom:328.035000px;}
.y282{bottom:329.655000px;}
.y12a{bottom:331.635000px;}
.y72{bottom:331.995000px;}
.y183{bottom:333.435000px;}
.y56{bottom:334.335000px;}
.y26c{bottom:334.515000px;}
.y1d5{bottom:335.595000px;}
.y40{bottom:336.675000px;}
.ydb{bottom:337.575000px;}
.y1b9{bottom:339.735000px;}
.yc6{bottom:340.635000px;}
.y25a{bottom:340.815000px;}
.y23b{bottom:340.995000px;}
.y275{bottom:341.715000px;}
.y28a{bottom:341.895000px;}
.y156{bottom:342.075000px;}
.yaa{bottom:343.335000px;}
.y8c{bottom:344.595000px;}
.y19e{bottom:345.675000px;}
.y170{bottom:346.395000px;}
.y33{bottom:348.735000px;}
.yed{bottom:349.635000px;}
.y2ad{bottom:350.175000px;}
.y100{bottom:350.715000px;}
.y27f{bottom:353.595000px;}
.y114{bottom:355.575000px;}
.y29a{bottom:355.755000px;}
.y192{bottom:356.655000px;}
.y1cc{bottom:357.735000px;}
.y224{bottom:358.635000px;}
.y16{bottom:359.535000px;}
.y22a{bottom:360.795000px;}
.y129{bottom:362.595000px;}
.y182{bottom:365.115000px;}
.y26b{bottom:365.655000px;}
.y71{bottom:365.835000px;}
.y1d4{bottom:366.735000px;}
.y1e8{bottom:367.635000px;}
.yda{bottom:368.715000px;}
.y201{bottom:369.435000px;}
.y55{bottom:370.335000px;}
.y1b8{bottom:370.695000px;}
.yc5{bottom:371.595000px;}
.y23a{bottom:372.135000px;}
.y274{bottom:372.675000px;}
.y155{bottom:373.215000px;}
.ya9{bottom:374.475000px;}
.y8b{bottom:375.735000px;}
.y16f{bottom:377.355000px;}
.y3f{bottom:379.695000px;}
.yec{bottom:380.595000px;}
.yff{bottom:381.675000px;}
.y259{bottom:382.575000px;}
.y214{bottom:384.735000px;}
.y113{bottom:386.715000px;}
.y191{bottom:387.795000px;}
.y19d{bottom:388.695000px;}
.y32{bottom:391.755000px;}
.y128{bottom:393.735000px;}
.y15{bottom:395.175000px;}
.y26a{bottom:396.615000px;}
.y181{bottom:396.975000px;}
.y1cb{bottom:397.695000px;}
.y1e7{bottom:398.595000px;}
.y70{bottom:399.495000px;}
.yd9{bottom:399.675000px;}
.y200{bottom:400.395000px;}
.y223{bottom:401.655000px;}
.y1b7{bottom:401.835000px;}
.yc4{bottom:402.735000px;}
.y239{bottom:403.095000px;}
.y281{bottom:403.815000px;}
.ya8{bottom:405.435000px;}
.y54{bottom:406.335000px;}
.y8a{bottom:406.695000px;}
.y16e{bottom:408.495000px;}
.yeb{bottom:411.735000px;}
.yfe{bottom:412.815000px;}
.y258{bottom:413.535000px;}
.y273{bottom:415.695000px;}
.y154{bottom:416.235000px;}
.y112{bottom:417.675000px;}
.y190{bottom:418.755000px;}
.y2ac{bottom:418.935000px;}
.y19c{bottom:419.835000px;}
.y3e{bottom:422.895000px;}
.y127{bottom:424.695000px;}
.y269{bottom:427.755000px;}
.y180{bottom:428.835000px;}
.y1e6{bottom:429.735000px;}
.y14{bottom:430.815000px;}
.y1ff{bottom:431.535000px;}
.y222{bottom:432.795000px;}
.y6f{bottom:433.155000px;}
.yc3{bottom:433.695000px;}
.y238{bottom:434.235000px;}
.y31{bottom:434.775000px;}
.ya7{bottom:436.575000px;}
.y89{bottom:437.835000px;}
.yd8{bottom:439.815000px;}
.y2ab{bottom:441.255000px;}
.y1b6{bottom:441.795000px;}
.y53{bottom:442.155000px;}
.yea{bottom:442.695000px;}
.yfd{bottom:443.775000px;}
.y257{bottom:444.675000px;}
.y272{bottom:446.835000px;}
.y153{bottom:447.195000px;}
.y111{bottom:448.815000px;}
.y19b{bottom:450.795000px;}
.y16d{bottom:451.515000px;}
.y3d{bottom:453.855000px;}
.y211{bottom:457.815000px;}
.y289{bottom:458.895000px;}
.y1c2{bottom:459.795000px;}
.y1e5{bottom:460.695000px;}
.y18f{bottom:461.775000px;}
.y221{bottom:463.755000px;}
.yc2{bottom:464.835000px;}
.y237{bottom:465.195000px;}
.y30{bottom:465.915000px;}
.y13{bottom:466.635000px;}
.y6e{bottom:466.995000px;}
.ya6{bottom:467.895000px;}
.y88{bottom:468.795000px;}
.yd7{bottom:470.775000px;}
.y299{bottom:472.755000px;}
.y1b5{bottom:472.935000px;}
.yf2{bottom:473.835000px;}
.y1fe{bottom:474.555000px;}
.yfc{bottom:474.915000px;}
.y2aa{bottom:475.635000px;}
.y1d3{bottom:477.795000px;}
.y52{bottom:478.155000px;}
.y152{bottom:478.335000px;}
.y110{bottom:479.775000px;}
.y16c{bottom:482.655000px;}
.ye9{bottom:482.835000px;}
.y256{bottom:487.695000px;}
.y27e{bottom:489.855000px;}
.y18e{bottom:492.915000px;}
.y19a{bottom:493.995000px;}
.y220{bottom:494.895000px;}
.y213{bottom:495.795000px;}
.y236{bottom:496.335000px;}
.y3c{bottom:496.875000px;}
.y126{bottom:498.855000px;}
.y87{bottom:499.935000px;}
.y6d{bottom:500.655000px;}
.y1e4{bottom:500.835000px;}
.y268{bottom:501.735000px;}
.y12{bottom:502.275000px;}
.y1b4{bottom:503.895000px;}
.yc1{bottom:504.795000px;}
.y1fd{bottom:505.695000px;}
.ya5{bottom:507.855000px;}
.y2f{bottom:508.935000px;}
.y151{bottom:509.295000px;}
.y2a9{bottom:510.015000px;}
.yd6{bottom:510.915000px;}
.y16b{bottom:513.615000px;}
.ye8{bottom:513.795000px;}
.y51{bottom:514.155000px;}
.yfb{bottom:514.875000px;}
.y298{bottom:515.955000px;}
.y1d2{bottom:517.935000px;}
.y255{bottom:518.655000px;}
.y27d{bottom:520.995000px;}
.y17f{bottom:523.875000px;}
.y21f{bottom:525.855000px;}
.y212{bottom:526.935000px;}
.y235{bottom:527.295000px;}
.y125{bottom:529.995000px;}
.y1e3{bottom:531.795000px;}
.y2a8{bottom:532.155000px;}
.y267{bottom:532.875000px;}
.y6c{bottom:534.495000px;}
.yc0{bottom:535.935000px;}
.y1fc{bottom:536.655000px;}
.y199{bottom:537.015000px;}
.ya4{bottom:538.995000px;}
.y2e{bottom:539.895000px;}
.yd5{bottom:541.875000px;}
.y86{bottom:542.955000px;}
.y210{bottom:543.855000px;}
.y1b3{bottom:544.035000px;}
.y16a{bottom:544.755000px;}
.ye7{bottom:544.935000px;}
.yfa{bottom:546.015000px;}
.y11{bottom:546.915000px;}
.y150{bottom:547.995000px;}
.y254{bottom:549.795000px;}
.y50{bottom:550.155000px;}
.y10f{bottom:550.875000px;}
.y229{bottom:551.955000px;}
.y17e{bottom:555.015000px;}
.y21e{bottom:556.995000px;}
.y1d1{bottom:557.895000px;}
.y234{bottom:558.435000px;}
.y297{bottom:558.975000px;}
.y124{bottom:560.955000px;}
.y20d{bottom:561.315000px;}
.y1e2{bottom:562.935000px;}
.y27c{bottom:564.015000px;}
.y2a7{bottom:566.715000px;}
.y1a6{bottom:566.895000px;}
.y1fb{bottom:567.795000px;}
.y6b{bottom:568.155000px;}
.ya3{bottom:569.955000px;}
.y2d{bottom:571.035000px;}
.y85{bottom:573.915000px;}
.y1b2{bottom:574.995000px;}
.y169{bottom:575.715000px;}
.ybf{bottom:575.895000px;}
.y14f{bottom:578.955000px;}
.y198{bottom:580.035000px;}
.yd4{bottom:582.015000px;}
.y228{bottom:582.915000px;}
.yf9{bottom:585.975000px;}
.y4f{bottom:586.155000px;}
.y21d{bottom:587.955000px;}
.y1d0{bottom:589.035000px;}
.y233{bottom:589.395000px;}
.y253{bottom:592.815000px;}
.y1e1{bottom:593.895000px;}
.y10{bottom:594.435000px;}
.y271{bottom:595.005000px;}
.y1a5{bottom:598.065000px;}
.ya2{bottom:600.945000px;}
.y2a6{bottom:601.125000px;}
.y6a{bottom:601.485000px;}
.y3b{bottom:602.025000px;}
.y123{bottom:604.005000px;}
.y84{bottom:605.085000px;}
.y168{bottom:606.885000px;}
.ye6{bottom:607.065000px;}
.y14e{bottom:609.945000px;}
.y1fa{bottom:610.845000px;}
.yd3{bottom:613.005000px;}
.y2c{bottom:614.085000px;}
.y1b1{bottom:615.165000px;}
.ybe{bottom:616.065000px;}
.yf8{bottom:617.145000px;}
.y21c{bottom:618.945000px;}
.y197{bottom:620.025000px;}
.y232{bottom:620.565000px;}
.y4e{bottom:622.005000px;}
.y252{bottom:623.985000px;}
.y1e0{bottom:625.065000px;}
.y17d{bottom:626.145000px;}
.y18d{bottom:629.025000px;}
.ya1{bottom:632.085000px;}
.y122{bottom:635.145000px;}
.y2a5{bottom:635.325000px;}
.y167{bottom:637.845000px;}
.y266{bottom:638.025000px;}
.y14d{bottom:641.085000px;}
.y1f9{bottom:641.805000px;}
.yf{bottom:642.165000px;}
.yd2{bottom:644.145000px;}
.y69{bottom:644.505000px;}
.y3a{bottom:645.045000px;}
.ybd{bottom:647.025000px;}
.y83{bottom:648.105000px;}
.y21b{bottom:650.085000px;}
.y1c1{bottom:651.165000px;}
.y231{bottom:651.525000px;}
.y251{bottom:654.945000px;}
.y1b0{bottom:655.125000px;}
.y20c{bottom:655.305000px;}
.y1df{bottom:656.025000px;}
.y2b{bottom:657.105000px;}
.y4d{bottom:658.005000px;}
.y18c{bottom:660.165000px;}
.ya0{bottom:663.045000px;}
.y121{bottom:666.105000px;}
.y17c{bottom:669.165000px;}
.y14c{bottom:672.045000px;}
.y1f8{bottom:672.945000px;}
.yd1{bottom:675.105000px;}
.y68{bottom:676.545000px;}
.ybc{bottom:678.165000px;}
.y2a4{bottom:678.345000px;}
.y82{bottom:679.245000px;}
.y166{bottom:680.865000px;}
.y265{bottom:681.045000px;}
.y230{bottom:682.665000px;}
.y10e{bottom:684.105000px;}
.y250{bottom:686.085000px;}
.y1af{bottom:686.265000px;}
.y1de{bottom:687.165000px;}
.y296{bottom:688.065000px;}
.y2a{bottom:688.245000px;}
.ye{bottom:689.865000px;}
.y18b{bottom:691.125000px;}
.y21a{bottom:693.105000px;}
.y4c{bottom:694.005000px;}
.y9f{bottom:694.185000px;}
.y120{bottom:697.245000px;}
.y139{bottom:697.785000px;}
.y1ca{bottom:700.125000px;}
.y14b{bottom:703.185000px;}
.yd0{bottom:706.245000px;}
.y67{bottom:708.765000px;}
.ybb{bottom:709.125000px;}
.y81{bottom:710.205000px;}
.y165{bottom:712.005000px;}
.y17b{bottom:712.185000px;}
.y22f{bottom:713.625000px;}
.y10d{bottom:715.245000px;}
.y1f7{bottom:715.965000px;}
.y1ae{bottom:717.225000px;}
.y29{bottom:719.205000px;}
.y2a3{bottom:721.365000px;}
.y18a{bottom:722.265000px;}
.y219{bottom:724.245000px;}
.y9e{bottom:725.145000px;}
.y1dd{bottom:727.125000px;}
.y2bb{bottom:727.665000px;}
.y11f{bottom:728.205000px;}
.y24f{bottom:729.105000px;}
.y4b{bottom:730.005000px;}
.y295{bottom:731.085000px;}
.y1a4{bottom:731.265000px;}
.y14a{bottom:734.145000px;}
.ycf{bottom:737.205000px;}
.yba{bottom:740.265000px;}
.y66{bottom:740.985000px;}
.y80{bottom:741.345000px;}
.yd{bottom:742.785000px;}
.y17a{bottom:743.145000px;}
.y22e{bottom:744.765000px;}
.y2ba{bottom:745.125000px;}
.y10c{bottom:746.205000px;}
.y1f6{bottom:746.925000px;}
.y20b{bottom:749.085000px;}
.y39{bottom:750.345000px;}
.y164{bottom:751.965000px;}
.y189{bottom:753.225000px;}
.y218{bottom:755.205000px;}
.y1ad{bottom:757.365000px;}
.y1dc{bottom:758.265000px;}
.y24e{bottom:760.065000px;}
.y28{bottom:762.225000px;}
.y2a2{bottom:764.385000px;}
.y9d{bottom:765.285000px;}
.y4a{bottom:765.825000px;}
.ye5{bottom:771.225000px;}
.y7f{bottom:772.305000px;}
.y65{bottom:773.385000px;}
.y294{bottom:774.105000px;}
.y179{bottom:774.285000px;}
.y22d{bottom:775.725000px;}
.yce{bottom:777.165000px;}
.yb9{bottom:780.225000px;}
.yf7{bottom:781.305000px;}
.y188{bottom:784.365000px;}
.y264{bottom:786.165000px;}
.y10b{bottom:786.345000px;}
.yc{bottom:788.325000px;}
.y1db{bottom:789.225000px;}
.y1f5{bottom:789.945000px;}
.y24d{bottom:791.205000px;}
.y27{bottom:793.365000px;}
.y163{bottom:794.985000px;}
.y9c{bottom:796.245000px;}
.y49{bottom:801.825000px;}
.y11e{bottom:802.365000px;}
.y178{bottom:805.245000px;}
.y64{bottom:805.605000px;}
.y2a1{bottom:807.405000px;}
.y2b9{bottom:807.945000px;}
.yb8{bottom:811.365000px;}
.y7e{bottom:815.325000px;}
.y10a{bottom:817.305000px;}
.yf6{bottom:821.445000px;}
.y24c{bottom:822.165000px;}
.y137{bottom:822.885000px;}
.y26{bottom:824.325000px;}
.y162{bottom:826.125000px;}
.y9b{bottom:827.385000px;}
.y1ac{bottom:828.465000px;}
.y263{bottom:829.185000px;}
.y1da{bottom:829.365000px;}
.yb{bottom:831.885000px;}
.y1f4{bottom:833.145000px;}
.y11d{bottom:833.325000px;}
.y177{bottom:836.385000px;}
.y48{bottom:837.825000px;}
.yb7{bottom:842.325000px;}
.y20a{bottom:843.045000px;}
.y7d{bottom:846.465000px;}
.y293{bottom:848.265000px;}
.y109{bottom:848.445000px;}
.y2a0{bottom:850.425000px;}
.y24b{bottom:853.305000px;}
.y25{bottom:855.465000px;}
.y161{bottom:857.445000px;}
.y1d9{bottom:860.325000px;}
.y1f3{bottom:864.150000px;}
.y11c{bottom:864.510000px;}
.y9a{bottom:867.390000px;}
.ya{bottom:867.750000px;}
.y1ab{bottom:868.470000px;}
.y63{bottom:870.090000px;}
.y149{bottom:870.450000px;}
.yb6{bottom:873.510000px;}
.y47{bottom:873.870000px;}
.y7c{bottom:877.470000px;}
.y108{bottom:879.450000px;}
.yf1{bottom:882.510000px;}
.y136{bottom:885.750000px;}
.y196{bottom:886.470000px;}
.y160{bottom:888.810000px;}
.y292{bottom:891.330000px;}
.y1d8{bottom:891.510000px;}
.y29f{bottom:893.490000px;}
.y1f2{bottom:895.290000px;}
.y24a{bottom:896.370000px;}
.y24{bottom:898.530000px;}
.y148{bottom:901.590000px;}
.y2b8{bottom:901.950000px;}
.y62{bottom:902.490000px;}
.y9{bottom:903.390000px;}
.yb5{bottom:904.470000px;}
.y1aa{bottom:908.610000px;}
.y46{bottom:909.870000px;}
.y99{bottom:910.590000px;}
.ycd{bottom:913.470000px;}
.y15f{bottom:919.950000px;}
.y7b{bottom:920.490000px;}
.y1d7{bottom:922.470000px;}
.y249{bottom:927.330000px;}
.y23{bottom:929.490000px;}
.y147{bottom:932.550000px;}
.y262{bottom:934.350000px;}
.ye4{bottom:935.610000px;}
.y29e{bottom:936.510000px;}
.y209{bottom:937.050000px;}
.y61{bottom:938.130000px;}
.y8{bottom:939.750000px;}
.y176{bottom:941.550000px;}
.y1f1{bottom:944.250000px;}
.yb4{bottom:944.610000px;}
.y45{bottom:945.690000px;}
.y132{bottom:948.570000px;}
.y15e{bottom:951.090000px;}
.y98{bottom:953.610000px;}
.y248{bottom:958.470000px;}
.y1a3{bottom:960.630000px;}
.y7a{bottom:963.510000px;}
.y2b7{bottom:964.770000px;}
.ye3{bottom:966.570000px;}
.y22{bottom:972.510000px;}
.y1f0{bottom:975.390000px;}
.yb3{bottom:975.570000px;}
.y7{bottom:977.550000px;}
.y1a9{bottom:979.710000px;}
.y60{bottom:981.510000px;}
.y44{bottom:981.690000px;}
.y15d{bottom:982.410000px;}
.y97{bottom:984.570000px;}
.y247{bottom:989.430000px;}
.y288{bottom:991.590000px;}
.y79{bottom:994.650000px;}
.y21{bottom:1003.650000px;}
.y1ef{bottom:1006.350000px;}
.yb2{bottom:1006.710000px;}
.y261{bottom:1008.510000px;}
.y5f{bottom:1011.210000px;}
.y6{bottom:1015.530000px;}
.y96{bottom:1015.710000px;}
.y43{bottom:1017.690000px;}
.y291{bottom:1020.570000px;}
.y1a8{bottom:1022.730000px;}
.y15c{bottom:1025.610000px;}
.y2b6{bottom:1027.590000px;}
.y208{bottom:1030.830000px;}
.y246{bottom:1032.450000px;}
.y20{bottom:1034.610000px;}
.y1ee{bottom:1037.490000px;}
.y78{bottom:1037.670000px;}
.y42{bottom:1041.810000px;}
.y5e{bottom:1042.350000px;}
.y95{bottom:1046.670000px;}
.y260{bottom:1051.530000px;}
.y5{bottom:1052.430000px;}
.y131{bottom:1056.750000px;}
.y245{bottom:1063.590000px;}
.y1f{bottom:1065.750000px;}
.y1ed{bottom:1068.450000px;}
.y77{bottom:1068.810000px;}
.y5d{bottom:1073.310000px;}
.y94{bottom:1077.810000px;}
.y4{bottom:1085.370000px;}
.y2b5{bottom:1090.410000px;}
.y207{bottom:1093.650000px;}
.y244{bottom:1094.550000px;}
.y1e{bottom:1096.710000px;}
.y1ec{bottom:1099.410000px;}
.y76{bottom:1099.770000px;}
.y130{bottom:1105.710000px;}
.y93{bottom:1108.770000px;}
.y3{bottom:1126.050000px;}
.y243{bottom:1137.240000px;}
.y41{bottom:1139.760000px;}
.y1d{bottom:1139.940000px;}
.y2b4{bottom:1140.120000px;}
.h14{height:30.960000px;}
.h16{height:30.996000px;}
.h15{height:31.140000px;}
.hf{height:62.100000px;}
.h10{height:62.136000px;}
.h19{height:64.546875px;}
.h2{height:65.884219px;}
.hc{height:69.086250px;}
.h6{height:71.613281px;}
.ha{height:75.093750px;}
.hd{height:87.859687px;}
.h9{height:90.180000px;}
.hb{height:91.177734px;}
.he{height:93.060000px;}
.h18{height:93.240000px;}
.h17{height:93.276000px;}
.h8{height:108.000000px;}
.h5{height:112.640625px;}
.h7{height:117.180000px;}
.h11{height:124.200000px;}
.h3{height:137.421562px;}
.h4{height:150.187500px;}
.h13{height:155.370000px;}
.h12{height:279.390000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:158.400000px;}
.wb{width:158.790000px;}
.w9{width:169.410000px;}
.wc{width:179.490000px;}
.w8{width:179.850000px;}
.w6{width:180.030000px;}
.w3{width:190.290000px;}
.w5{width:222.150000px;}
.wa{width:296.490000px;}
.w4{width:445.395000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x13{left:95.976000px;}
.x1{left:127.655987px;}
.xb{left:144.215987px;}
.xd{left:154.649987px;}
.xe{left:181.649987px;}
.x4{left:191.189987px;}
.x2{left:226.109987px;}
.x3{left:248.969987px;}
.x14{left:255.090000px;}
.x6{left:258.509987px;}
.x9{left:286.094987px;}
.x5{left:289.694987px;}
.x11{left:319.395000px;}
.x12{left:351.255000px;}
.x8{left:409.934987px;}
.x17{left:425.775000px;}
.x15{left:435.675000px;}
.xf{left:438.014987px;}
.xc{left:442.334987px;}
.xa{left:444.494987px;}
.x18{left:585.285000px;}
.x16{left:605.805000px;}
.x7{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-2.048000pt;}
.ls12{letter-spacing:-1.664000pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.117867pt;}
.lsd{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.039040pt;}
.ls1{letter-spacing:0.080640pt;}
.ls2{letter-spacing:0.119467pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.161067pt;}
.ls8{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.227733pt;}
.ls9{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.271467pt;}
.ls14{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls1a{letter-spacing:58.368000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws17{word-spacing:-37.376000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws0{word-spacing:-32.720427pt;}
.ws2{word-spacing:-26.432000pt;}
.ws15{word-spacing:-18.368000pt;}
.wsf{word-spacing:-18.240000pt;}
.ws11{word-spacing:-18.112000pt;}
.ws5{word-spacing:-18.048000pt;}
.ws4{word-spacing:-17.984000pt;}
.wsb{word-spacing:-17.920000pt;}
.wsd{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.664000pt;}
.wse{word-spacing:-17.600000pt;}
.ws13{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.280000pt;}
.ws16{word-spacing:-17.152000pt;}
.ws12{word-spacing:-16.960000pt;}
.ws7{word-spacing:-16.640107pt;}
.ws8{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.233173pt;}
.ws14{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.189013pt;}
.ws3{word-spacing:0.000000pt;}
._16{margin-left:-15.766613pt;}
._17{margin-left:-13.457493pt;}
._19{margin-left:-12.493653pt;}
._1a{margin-left:-11.580800pt;}
._18{margin-left:-10.433067pt;}
._15{margin-left:-9.129173pt;}
._4{margin-left:-6.937813pt;}
._3{margin-left:-4.999680pt;}
._1b{margin-left:-3.999147pt;}
._c{margin-left:-2.907520pt;}
._1{margin-left:-1.944320pt;}
._2{margin-left:-0.972160pt;}
._0{width:1.288320pt;}
._11{width:2.807680pt;}
._9{width:3.989333pt;}
._7{width:4.906667pt;}
._8{width:5.845333pt;}
._b{width:7.488000pt;}
._12{width:9.216000pt;}
._14{width:10.944000pt;}
._13{width:11.904000pt;}
._a{width:13.632000pt;}
._1e{width:15.132160pt;}
._d{width:16.064000pt;}
._f{width:19.072000pt;}
._e{width:20.480000pt;}
._21{width:21.952000pt;}
._1f{width:22.848000pt;}
._20{width:23.853013pt;}
._1d{width:25.152000pt;}
._10{width:26.048000pt;}
._27{width:27.408000pt;}
._26{width:28.480000pt;}
._29{width:30.336000pt;}
._28{width:31.744000pt;}
._2b{width:33.146027pt;}
._2c{width:34.245973pt;}
._34{width:35.315840pt;}
._33{width:36.684160pt;}
._25{width:38.208000pt;}
._2a{width:41.792000pt;}
._3d{width:42.807680pt;}
._3e{width:44.373333pt;}
._24{width:46.336000pt;}
._1c{width:48.768000pt;}
._2d{width:49.792000pt;}
._23{width:53.312000pt;}
._22{width:58.368000pt;}
._41{width:62.848000pt;}
._40{width:63.978667pt;}
._32{width:68.608000pt;}
._31{width:69.568000pt;}
._6{width:77.356160pt;}
._5{width:78.467200pt;}
._3a{width:92.992000pt;}
._39{width:94.186667pt;}
._35{width:97.344000pt;}
._2f{width:98.368000pt;}
._30{width:99.776000pt;}
._3f{width:119.232000pt;}
._38{width:154.176000pt;}
._37{width:188.992000pt;}
._36{width:190.208000pt;}
._3c{width:197.888000pt;}
._3b{width:198.890667pt;}
._2e{width:234.112000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs6{font-size:106.880000pt;}
.fs1{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:12.640000pt;}
.y13c{bottom:12.800000pt;}
.y134{bottom:40.320000pt;}
.y20f{bottom:40.346667pt;}
.y138{bottom:40.360000pt;}
.y2{bottom:51.200000pt;}
.y133{bottom:67.840000pt;}
.y13b{bottom:68.000000pt;}
.y20e{bottom:68.026667pt;}
.y144{bottom:68.040000pt;}
.y1{bottom:69.152000pt;}
.y13a{bottom:95.520000pt;}
.y143{bottom:95.560000pt;}
.y1a2{bottom:99.072000pt;}
.y1c{bottom:99.552000pt;}
.y27b{bottom:99.872000pt;}
.y1c0{bottom:100.832000pt;}
.y107{bottom:102.432000pt;}
.y12f{bottom:103.392000pt;}
.y5c{bottom:103.872000pt;}
.y227{bottom:104.192000pt;}
.y22c{bottom:106.112000pt;}
.ye2{bottom:106.912000pt;}
.y1c9{bottom:108.832000pt;}
.yf0{bottom:109.632000pt;}
.y242{bottom:109.952000pt;}
.yb1{bottom:111.552000pt;}
.y11b{bottom:114.912000pt;}
.y287{bottom:116.832000pt;}
.y38{bottom:118.592000pt;}
.y2b3{bottom:119.072000pt;}
.y217{bottom:119.392000pt;}
.y92{bottom:120.832000pt;}
.y290{bottom:121.952000pt;}
.y25f{bottom:122.912000pt;}
.y140{bottom:123.040000pt;}
.y142{bottom:123.240000pt;}
.y27a{bottom:127.392000pt;}
.y1bf{bottom:128.352000pt;}
.y1a7{bottom:129.152000pt;}
.y106{bottom:130.112000pt;}
.y226{bottom:131.872000pt;}
.y146{bottom:133.626667pt;}
.ye1{bottom:134.426667pt;}
.y29d{bottom:135.546667pt;}
.y1b{bottom:135.866667pt;}
.y1c8{bottom:136.346667pt;}
.y206{bottom:136.986667pt;}
.ycc{bottom:137.146667pt;}
.y5b{bottom:137.306667pt;}
.y241{bottom:137.626667pt;}
.yb0{bottom:139.066667pt;}
.y12e{bottom:141.626667pt;}
.y11a{bottom:142.426667pt;}
.y286{bottom:144.346667pt;}
.y216{bottom:147.066667pt;}
.y91{bottom:148.346667pt;}
.y175{bottom:148.506667pt;}
.y145{bottom:149.146667pt;}
.y2b2{bottom:149.626667pt;}
.y13f{bottom:150.720000pt;}
.y28f{bottom:151.226667pt;}
.y25e{bottom:152.986667pt;}
.y279{bottom:155.066667pt;}
.y15b{bottom:155.386667pt;}
.y1be{bottom:155.866667pt;}
.y37{bottom:156.826667pt;}
.y105{bottom:157.626667pt;}
.y187{bottom:158.266667pt;}
.y225{bottom:159.386667pt;}
.ye0{bottom:162.106667pt;}
.y1c7{bottom:163.866667pt;}
.ycb{bottom:164.826667pt;}
.y240{bottom:165.146667pt;}
.y270{bottom:165.626667pt;}
.yaf{bottom:166.746667pt;}
.y5a{bottom:169.306667pt;}
.y119{bottom:170.106667pt;}
.y22b{bottom:171.866667pt;}
.y29c{bottom:173.786667pt;}
.y215{bottom:174.586667pt;}
.y75{bottom:175.066667pt;}
.y205{bottom:175.226667pt;}
.y90{bottom:175.866667pt;}
.y13e{bottom:178.266667pt;}
.y12d{bottom:179.866667pt;}
.y2b1{bottom:180.026667pt;}
.y1a{bottom:181.146667pt;}
.y28e{bottom:181.786667pt;}
.y278{bottom:182.586667pt;}
.y25d{bottom:182.906667pt;}
.y15a{bottom:183.066667pt;}
.y1bd{bottom:183.546667pt;}
.yf5{bottom:184.346667pt;}
.y104{bottom:185.306667pt;}
.y186{bottom:185.946667pt;}
.y174{bottom:186.746667pt;}
.ydf{bottom:189.626667pt;}
.y1cf{bottom:191.546667pt;}
.yca{bottom:192.346667pt;}
.y23f{bottom:192.826667pt;}
.y26f{bottom:193.146667pt;}
.y280{bottom:193.306667pt;}
.yae{bottom:194.586667pt;}
.y36{bottom:195.066667pt;}
.y195{bottom:195.866667pt;}
.y118{bottom:197.626667pt;}
.y1c6{bottom:199.546667pt;}
.y59{bottom:201.306667pt;}
.y1a1{bottom:203.066667pt;}
.y8f{bottom:203.546667pt;}
.y74{bottom:205.146667pt;}
.y13d{bottom:205.946667pt;}
.y285{bottom:210.266667pt;}
.y159{bottom:210.586667pt;}
.y1bc{bottom:211.066667pt;}
.yf4{bottom:211.866667pt;}
.y28d{bottom:212.186667pt;}
.y103{bottom:212.826667pt;}
.y204{bottom:213.626667pt;}
.y173{bottom:214.426667pt;}
.yde{bottom:217.306667pt;}
.y12c{bottom:218.266667pt;}
.y1ce{bottom:219.066667pt;}
.yc9{bottom:219.866667pt;}
.y23e{bottom:220.346667pt;}
.y277{bottom:220.826667pt;}
.yad{bottom:222.266667pt;}
.y194{bottom:223.546667pt;}
.y19{bottom:224.186667pt;}
.y117{bottom:225.306667pt;}
.y1c5{bottom:227.066667pt;}
.y2b0{bottom:230.266667pt;}
.y1a0{bottom:230.746667pt;}
.y26e{bottom:231.546667pt;}
.y141{bottom:232.506667pt;}
.y58{bottom:233.306667pt;}
.y35{bottom:233.466667pt;}
.y73{bottom:235.066667pt;}
.y1eb{bottom:235.866667pt;}
.y284{bottom:237.786667pt;}
.y1bb{bottom:238.746667pt;}
.yf3{bottom:239.546667pt;}
.y185{bottom:239.706667pt;}
.y102{bottom:240.506667pt;}
.y172{bottom:241.946667pt;}
.y28c{bottom:242.746667pt;}
.y25c{bottom:242.906667pt;}
.ydd{bottom:244.826667pt;}
.yc8{bottom:247.546667pt;}
.y23d{bottom:247.866667pt;}
.y276{bottom:248.506667pt;}
.y158{bottom:248.826667pt;}
.yac{bottom:249.946667pt;}
.y8e{bottom:251.066667pt;}
.y203{bottom:251.866667pt;}
.y116{bottom:252.826667pt;}
.y1c4{bottom:254.746667pt;}
.yef{bottom:255.546667pt;}
.y18{bottom:256.026667pt;}
.y12b{bottom:256.506667pt;}
.y26d{bottom:259.066667pt;}
.y2af{bottom:260.986667pt;}
.y1d6{bottom:262.746667pt;}
.y1ea{bottom:263.546667pt;}
.y57{bottom:265.146667pt;}
.y283{bottom:265.466667pt;}
.y184{bottom:268.026667pt;}
.y19f{bottom:268.986667pt;}
.y34{bottom:271.706667pt;}
.ydc{bottom:272.506667pt;}
.y25b{bottom:272.826667pt;}
.y28b{bottom:273.306667pt;}
.y1ba{bottom:274.266667pt;}
.yc7{bottom:275.066667pt;}
.y23c{bottom:275.546667pt;}
.y101{bottom:276.026667pt;}
.y157{bottom:276.506667pt;}
.yab{bottom:277.626667pt;}
.y29b{bottom:277.786667pt;}
.y8d{bottom:278.746667pt;}
.y171{bottom:280.346667pt;}
.y115{bottom:280.506667pt;}
.y1c3{bottom:282.266667pt;}
.yee{bottom:283.066667pt;}
.y17{bottom:287.706667pt;}
.y193{bottom:289.466667pt;}
.y202{bottom:290.106667pt;}
.y1cd{bottom:290.266667pt;}
.y1e9{bottom:291.106667pt;}
.y2ae{bottom:291.586667pt;}
.y282{bottom:293.026667pt;}
.y12a{bottom:294.786667pt;}
.y72{bottom:295.106667pt;}
.y183{bottom:296.386667pt;}
.y56{bottom:297.186667pt;}
.y26c{bottom:297.346667pt;}
.y1d5{bottom:298.306667pt;}
.y40{bottom:299.266667pt;}
.ydb{bottom:300.066667pt;}
.y1b9{bottom:301.986667pt;}
.yc6{bottom:302.786667pt;}
.y25a{bottom:302.946667pt;}
.y23b{bottom:303.106667pt;}
.y275{bottom:303.746667pt;}
.y28a{bottom:303.906667pt;}
.y156{bottom:304.066667pt;}
.yaa{bottom:305.186667pt;}
.y8c{bottom:306.306667pt;}
.y19e{bottom:307.266667pt;}
.y170{bottom:307.906667pt;}
.y33{bottom:309.986667pt;}
.yed{bottom:310.786667pt;}
.y2ad{bottom:311.266667pt;}
.y100{bottom:311.746667pt;}
.y27f{bottom:314.306667pt;}
.y114{bottom:316.066667pt;}
.y29a{bottom:316.226667pt;}
.y192{bottom:317.026667pt;}
.y1cc{bottom:317.986667pt;}
.y224{bottom:318.786667pt;}
.y16{bottom:319.586667pt;}
.y22a{bottom:320.706667pt;}
.y129{bottom:322.306667pt;}
.y182{bottom:324.546667pt;}
.y26b{bottom:325.026667pt;}
.y71{bottom:325.186667pt;}
.y1d4{bottom:325.986667pt;}
.y1e8{bottom:326.786667pt;}
.yda{bottom:327.746667pt;}
.y201{bottom:328.386667pt;}
.y55{bottom:329.186667pt;}
.y1b8{bottom:329.506667pt;}
.yc5{bottom:330.306667pt;}
.y23a{bottom:330.786667pt;}
.y274{bottom:331.266667pt;}
.y155{bottom:331.746667pt;}
.ya9{bottom:332.866667pt;}
.y8b{bottom:333.986667pt;}
.y16f{bottom:335.426667pt;}
.y3f{bottom:337.506667pt;}
.yec{bottom:338.306667pt;}
.yff{bottom:339.266667pt;}
.y259{bottom:340.066667pt;}
.y214{bottom:341.986667pt;}
.y113{bottom:343.746667pt;}
.y191{bottom:344.706667pt;}
.y19d{bottom:345.506667pt;}
.y32{bottom:348.226667pt;}
.y128{bottom:349.986667pt;}
.y15{bottom:351.266667pt;}
.y26a{bottom:352.546667pt;}
.y181{bottom:352.866667pt;}
.y1cb{bottom:353.506667pt;}
.y1e7{bottom:354.306667pt;}
.y70{bottom:355.106667pt;}
.yd9{bottom:355.266667pt;}
.y200{bottom:355.906667pt;}
.y223{bottom:357.026667pt;}
.y1b7{bottom:357.186667pt;}
.yc4{bottom:357.986667pt;}
.y239{bottom:358.306667pt;}
.y281{bottom:358.946667pt;}
.ya8{bottom:360.386667pt;}
.y54{bottom:361.186667pt;}
.y8a{bottom:361.506667pt;}
.y16e{bottom:363.106667pt;}
.yeb{bottom:365.986667pt;}
.yfe{bottom:366.946667pt;}
.y258{bottom:367.586667pt;}
.y273{bottom:369.506667pt;}
.y154{bottom:369.986667pt;}
.y112{bottom:371.266667pt;}
.y190{bottom:372.226667pt;}
.y2ac{bottom:372.386667pt;}
.y19c{bottom:373.186667pt;}
.y3e{bottom:375.906667pt;}
.y127{bottom:377.506667pt;}
.y269{bottom:380.226667pt;}
.y180{bottom:381.186667pt;}
.y1e6{bottom:381.986667pt;}
.y14{bottom:382.946667pt;}
.y1ff{bottom:383.586667pt;}
.y222{bottom:384.706667pt;}
.y6f{bottom:385.026667pt;}
.yc3{bottom:385.506667pt;}
.y238{bottom:385.986667pt;}
.y31{bottom:386.466667pt;}
.ya7{bottom:388.066667pt;}
.y89{bottom:389.186667pt;}
.yd8{bottom:390.946667pt;}
.y2ab{bottom:392.226667pt;}
.y1b6{bottom:392.706667pt;}
.y53{bottom:393.026667pt;}
.yea{bottom:393.506667pt;}
.yfd{bottom:394.466667pt;}
.y257{bottom:395.266667pt;}
.y272{bottom:397.186667pt;}
.y153{bottom:397.506667pt;}
.y111{bottom:398.946667pt;}
.y19b{bottom:400.706667pt;}
.y16d{bottom:401.346667pt;}
.y3d{bottom:403.426667pt;}
.y211{bottom:406.946667pt;}
.y289{bottom:407.906667pt;}
.y1c2{bottom:408.706667pt;}
.y1e5{bottom:409.506667pt;}
.y18f{bottom:410.466667pt;}
.y221{bottom:412.226667pt;}
.yc2{bottom:413.186667pt;}
.y237{bottom:413.506667pt;}
.y30{bottom:414.146667pt;}
.y13{bottom:414.786667pt;}
.y6e{bottom:415.106667pt;}
.ya6{bottom:415.906667pt;}
.y88{bottom:416.706667pt;}
.yd7{bottom:418.466667pt;}
.y299{bottom:420.226667pt;}
.y1b5{bottom:420.386667pt;}
.yf2{bottom:421.186667pt;}
.y1fe{bottom:421.826667pt;}
.yfc{bottom:422.146667pt;}
.y2aa{bottom:422.786667pt;}
.y1d3{bottom:424.706667pt;}
.y52{bottom:425.026667pt;}
.y152{bottom:425.186667pt;}
.y110{bottom:426.466667pt;}
.y16c{bottom:429.026667pt;}
.ye9{bottom:429.186667pt;}
.y256{bottom:433.506667pt;}
.y27e{bottom:435.426667pt;}
.y18e{bottom:438.146667pt;}
.y19a{bottom:439.106667pt;}
.y220{bottom:439.906667pt;}
.y213{bottom:440.706667pt;}
.y236{bottom:441.186667pt;}
.y3c{bottom:441.666667pt;}
.y126{bottom:443.426667pt;}
.y87{bottom:444.386667pt;}
.y6d{bottom:445.026667pt;}
.y1e4{bottom:445.186667pt;}
.y268{bottom:445.986667pt;}
.y12{bottom:446.466667pt;}
.y1b4{bottom:447.906667pt;}
.yc1{bottom:448.706667pt;}
.y1fd{bottom:449.506667pt;}
.ya5{bottom:451.426667pt;}
.y2f{bottom:452.386667pt;}
.y151{bottom:452.706667pt;}
.y2a9{bottom:453.346667pt;}
.yd6{bottom:454.146667pt;}
.y16b{bottom:456.546667pt;}
.ye8{bottom:456.706667pt;}
.y51{bottom:457.026667pt;}
.yfb{bottom:457.666667pt;}
.y298{bottom:458.626667pt;}
.y1d2{bottom:460.386667pt;}
.y255{bottom:461.026667pt;}
.y27d{bottom:463.106667pt;}
.y17f{bottom:465.666667pt;}
.y21f{bottom:467.426667pt;}
.y212{bottom:468.386667pt;}
.y235{bottom:468.706667pt;}
.y125{bottom:471.106667pt;}
.y1e3{bottom:472.706667pt;}
.y2a8{bottom:473.026667pt;}
.y267{bottom:473.666667pt;}
.y6c{bottom:475.106667pt;}
.yc0{bottom:476.386667pt;}
.y1fc{bottom:477.026667pt;}
.y199{bottom:477.346667pt;}
.ya4{bottom:479.106667pt;}
.y2e{bottom:479.906667pt;}
.yd5{bottom:481.666667pt;}
.y86{bottom:482.626667pt;}
.y210{bottom:483.426667pt;}
.y1b3{bottom:483.586667pt;}
.y16a{bottom:484.226667pt;}
.ye7{bottom:484.386667pt;}
.yfa{bottom:485.346667pt;}
.y11{bottom:486.146667pt;}
.y150{bottom:487.106667pt;}
.y254{bottom:488.706667pt;}
.y50{bottom:489.026667pt;}
.y10f{bottom:489.666667pt;}
.y229{bottom:490.626667pt;}
.y17e{bottom:493.346667pt;}
.y21e{bottom:495.106667pt;}
.y1d1{bottom:495.906667pt;}
.y234{bottom:496.386667pt;}
.y297{bottom:496.866667pt;}
.y124{bottom:498.626667pt;}
.y20d{bottom:498.946667pt;}
.y1e2{bottom:500.386667pt;}
.y27c{bottom:501.346667pt;}
.y2a7{bottom:503.746667pt;}
.y1a6{bottom:503.906667pt;}
.y1fb{bottom:504.706667pt;}
.y6b{bottom:505.026667pt;}
.ya3{bottom:506.626667pt;}
.y2d{bottom:507.586667pt;}
.y85{bottom:510.146667pt;}
.y1b2{bottom:511.106667pt;}
.y169{bottom:511.746667pt;}
.ybf{bottom:511.906667pt;}
.y14f{bottom:514.626667pt;}
.y198{bottom:515.586667pt;}
.yd4{bottom:517.346667pt;}
.y228{bottom:518.146667pt;}
.yf9{bottom:520.866667pt;}
.y4f{bottom:521.026667pt;}
.y21d{bottom:522.626667pt;}
.y1d0{bottom:523.586667pt;}
.y233{bottom:523.906667pt;}
.y253{bottom:526.946667pt;}
.y1e1{bottom:527.906667pt;}
.y10{bottom:528.386667pt;}
.y271{bottom:528.893333pt;}
.y1a5{bottom:531.613333pt;}
.ya2{bottom:534.173333pt;}
.y2a6{bottom:534.333333pt;}
.y6a{bottom:534.653333pt;}
.y3b{bottom:535.133333pt;}
.y123{bottom:536.893333pt;}
.y84{bottom:537.853333pt;}
.y168{bottom:539.453333pt;}
.ye6{bottom:539.613333pt;}
.y14e{bottom:542.173333pt;}
.y1fa{bottom:542.973333pt;}
.yd3{bottom:544.893333pt;}
.y2c{bottom:545.853333pt;}
.y1b1{bottom:546.813333pt;}
.ybe{bottom:547.613333pt;}
.yf8{bottom:548.573333pt;}
.y21c{bottom:550.173333pt;}
.y197{bottom:551.133333pt;}
.y232{bottom:551.613333pt;}
.y4e{bottom:552.893333pt;}
.y252{bottom:554.653333pt;}
.y1e0{bottom:555.613333pt;}
.y17d{bottom:556.573333pt;}
.y18d{bottom:559.133333pt;}
.ya1{bottom:561.853333pt;}
.y122{bottom:564.573333pt;}
.y2a5{bottom:564.733333pt;}
.y167{bottom:566.973333pt;}
.y266{bottom:567.133333pt;}
.y14d{bottom:569.853333pt;}
.y1f9{bottom:570.493333pt;}
.yf{bottom:570.813333pt;}
.yd2{bottom:572.573333pt;}
.y69{bottom:572.893333pt;}
.y3a{bottom:573.373333pt;}
.ybd{bottom:575.133333pt;}
.y83{bottom:576.093333pt;}
.y21b{bottom:577.853333pt;}
.y1c1{bottom:578.813333pt;}
.y231{bottom:579.133333pt;}
.y251{bottom:582.173333pt;}
.y1b0{bottom:582.333333pt;}
.y20c{bottom:582.493333pt;}
.y1df{bottom:583.133333pt;}
.y2b{bottom:584.093333pt;}
.y4d{bottom:584.893333pt;}
.y18c{bottom:586.813333pt;}
.ya0{bottom:589.373333pt;}
.y121{bottom:592.093333pt;}
.y17c{bottom:594.813333pt;}
.y14c{bottom:597.373333pt;}
.y1f8{bottom:598.173333pt;}
.yd1{bottom:600.093333pt;}
.y68{bottom:601.373333pt;}
.ybc{bottom:602.813333pt;}
.y2a4{bottom:602.973333pt;}
.y82{bottom:603.773333pt;}
.y166{bottom:605.213333pt;}
.y265{bottom:605.373333pt;}
.y230{bottom:606.813333pt;}
.y10e{bottom:608.093333pt;}
.y250{bottom:609.853333pt;}
.y1af{bottom:610.013333pt;}
.y1de{bottom:610.813333pt;}
.y296{bottom:611.613333pt;}
.y2a{bottom:611.773333pt;}
.ye{bottom:613.213333pt;}
.y18b{bottom:614.333333pt;}
.y21a{bottom:616.093333pt;}
.y4c{bottom:616.893333pt;}
.y9f{bottom:617.053333pt;}
.y120{bottom:619.773333pt;}
.y139{bottom:620.253333pt;}
.y1ca{bottom:622.333333pt;}
.y14b{bottom:625.053333pt;}
.yd0{bottom:627.773333pt;}
.y67{bottom:630.013333pt;}
.ybb{bottom:630.333333pt;}
.y81{bottom:631.293333pt;}
.y165{bottom:632.893333pt;}
.y17b{bottom:633.053333pt;}
.y22f{bottom:634.333333pt;}
.y10d{bottom:635.773333pt;}
.y1f7{bottom:636.413333pt;}
.y1ae{bottom:637.533333pt;}
.y29{bottom:639.293333pt;}
.y2a3{bottom:641.213333pt;}
.y18a{bottom:642.013333pt;}
.y219{bottom:643.773333pt;}
.y9e{bottom:644.573333pt;}
.y1dd{bottom:646.333333pt;}
.y2bb{bottom:646.813333pt;}
.y11f{bottom:647.293333pt;}
.y24f{bottom:648.093333pt;}
.y4b{bottom:648.893333pt;}
.y295{bottom:649.853333pt;}
.y1a4{bottom:650.013333pt;}
.y14a{bottom:652.573333pt;}
.ycf{bottom:655.293333pt;}
.yba{bottom:658.013333pt;}
.y66{bottom:658.653333pt;}
.y80{bottom:658.973333pt;}
.yd{bottom:660.253333pt;}
.y17a{bottom:660.573333pt;}
.y22e{bottom:662.013333pt;}
.y2ba{bottom:662.333333pt;}
.y10c{bottom:663.293333pt;}
.y1f6{bottom:663.933333pt;}
.y20b{bottom:665.853333pt;}
.y39{bottom:666.973333pt;}
.y164{bottom:668.413333pt;}
.y189{bottom:669.533333pt;}
.y218{bottom:671.293333pt;}
.y1ad{bottom:673.213333pt;}
.y1dc{bottom:674.013333pt;}
.y24e{bottom:675.613333pt;}
.y28{bottom:677.533333pt;}
.y2a2{bottom:679.453333pt;}
.y9d{bottom:680.253333pt;}
.y4a{bottom:680.733333pt;}
.ye5{bottom:685.533333pt;}
.y7f{bottom:686.493333pt;}
.y65{bottom:687.453333pt;}
.y294{bottom:688.093333pt;}
.y179{bottom:688.253333pt;}
.y22d{bottom:689.533333pt;}
.yce{bottom:690.813333pt;}
.yb9{bottom:693.533333pt;}
.yf7{bottom:694.493333pt;}
.y188{bottom:697.213333pt;}
.y264{bottom:698.813333pt;}
.y10b{bottom:698.973333pt;}
.yc{bottom:700.733333pt;}
.y1db{bottom:701.533333pt;}
.y1f5{bottom:702.173333pt;}
.y24d{bottom:703.293333pt;}
.y27{bottom:705.213333pt;}
.y163{bottom:706.653333pt;}
.y9c{bottom:707.773333pt;}
.y49{bottom:712.733333pt;}
.y11e{bottom:713.213333pt;}
.y178{bottom:715.773333pt;}
.y64{bottom:716.093333pt;}
.y2a1{bottom:717.693333pt;}
.y2b9{bottom:718.173333pt;}
.yb8{bottom:721.213333pt;}
.y7e{bottom:724.733333pt;}
.y10a{bottom:726.493333pt;}
.yf6{bottom:730.173333pt;}
.y24c{bottom:730.813333pt;}
.y137{bottom:731.453333pt;}
.y26{bottom:732.733333pt;}
.y162{bottom:734.333333pt;}
.y9b{bottom:735.453333pt;}
.y1ac{bottom:736.413333pt;}
.y263{bottom:737.053333pt;}
.y1da{bottom:737.213333pt;}
.yb{bottom:739.453333pt;}
.y1f4{bottom:740.573333pt;}
.y11d{bottom:740.733333pt;}
.y177{bottom:743.453333pt;}
.y48{bottom:744.733333pt;}
.yb7{bottom:748.733333pt;}
.y20a{bottom:749.373333pt;}
.y7d{bottom:752.413333pt;}
.y293{bottom:754.013333pt;}
.y109{bottom:754.173333pt;}
.y2a0{bottom:755.933333pt;}
.y24b{bottom:758.493333pt;}
.y25{bottom:760.413333pt;}
.y161{bottom:762.173333pt;}
.y1d9{bottom:764.733333pt;}
.y1f3{bottom:768.133333pt;}
.y11c{bottom:768.453333pt;}
.y9a{bottom:771.013333pt;}
.ya{bottom:771.333333pt;}
.y1ab{bottom:771.973333pt;}
.y63{bottom:773.413333pt;}
.y149{bottom:773.733333pt;}
.yb6{bottom:776.453333pt;}
.y47{bottom:776.773333pt;}
.y7c{bottom:779.973333pt;}
.y108{bottom:781.733333pt;}
.yf1{bottom:784.453333pt;}
.y136{bottom:787.333333pt;}
.y196{bottom:787.973333pt;}
.y160{bottom:790.053333pt;}
.y292{bottom:792.293333pt;}
.y1d8{bottom:792.453333pt;}
.y29f{bottom:794.213333pt;}
.y1f2{bottom:795.813333pt;}
.y24a{bottom:796.773333pt;}
.y24{bottom:798.693333pt;}
.y148{bottom:801.413333pt;}
.y2b8{bottom:801.733333pt;}
.y62{bottom:802.213333pt;}
.y9{bottom:803.013333pt;}
.yb5{bottom:803.973333pt;}
.y1aa{bottom:807.653333pt;}
.y46{bottom:808.773333pt;}
.y99{bottom:809.413333pt;}
.ycd{bottom:811.973333pt;}
.y15f{bottom:817.733333pt;}
.y7b{bottom:818.213333pt;}
.y1d7{bottom:819.973333pt;}
.y249{bottom:824.293333pt;}
.y23{bottom:826.213333pt;}
.y147{bottom:828.933333pt;}
.y262{bottom:830.533333pt;}
.ye4{bottom:831.653333pt;}
.y29e{bottom:832.453333pt;}
.y209{bottom:832.933333pt;}
.y61{bottom:833.893333pt;}
.y8{bottom:835.333333pt;}
.y176{bottom:836.933333pt;}
.y1f1{bottom:839.333333pt;}
.yb4{bottom:839.653333pt;}
.y45{bottom:840.613333pt;}
.y132{bottom:843.173333pt;}
.y15e{bottom:845.413333pt;}
.y98{bottom:847.653333pt;}
.y248{bottom:851.973333pt;}
.y1a3{bottom:853.893333pt;}
.y7a{bottom:856.453333pt;}
.y2b7{bottom:857.573333pt;}
.ye3{bottom:859.173333pt;}
.y22{bottom:864.453333pt;}
.y1f0{bottom:867.013333pt;}
.yb3{bottom:867.173333pt;}
.y7{bottom:868.933333pt;}
.y1a9{bottom:870.853333pt;}
.y60{bottom:872.453333pt;}
.y44{bottom:872.613333pt;}
.y15d{bottom:873.253333pt;}
.y97{bottom:875.173333pt;}
.y247{bottom:879.493333pt;}
.y288{bottom:881.413333pt;}
.y79{bottom:884.133333pt;}
.y21{bottom:892.133333pt;}
.y1ef{bottom:894.533333pt;}
.yb2{bottom:894.853333pt;}
.y261{bottom:896.453333pt;}
.y5f{bottom:898.853333pt;}
.y6{bottom:902.693333pt;}
.y96{bottom:902.853333pt;}
.y43{bottom:904.613333pt;}
.y291{bottom:907.173333pt;}
.y1a8{bottom:909.093333pt;}
.y15c{bottom:911.653333pt;}
.y2b6{bottom:913.413333pt;}
.y208{bottom:916.293333pt;}
.y246{bottom:917.733333pt;}
.y20{bottom:919.653333pt;}
.y1ee{bottom:922.213333pt;}
.y78{bottom:922.373333pt;}
.y42{bottom:926.053333pt;}
.y5e{bottom:926.533333pt;}
.y95{bottom:930.373333pt;}
.y260{bottom:934.693333pt;}
.y5{bottom:935.493333pt;}
.y131{bottom:939.333333pt;}
.y245{bottom:945.413333pt;}
.y1f{bottom:947.333333pt;}
.y1ed{bottom:949.733333pt;}
.y77{bottom:950.053333pt;}
.y5d{bottom:954.053333pt;}
.y94{bottom:958.053333pt;}
.y4{bottom:964.773333pt;}
.y2b5{bottom:969.253333pt;}
.y207{bottom:972.133333pt;}
.y244{bottom:972.933333pt;}
.y1e{bottom:974.853333pt;}
.y1ec{bottom:977.253333pt;}
.y76{bottom:977.573333pt;}
.y130{bottom:982.853333pt;}
.y93{bottom:985.573333pt;}
.y3{bottom:1000.933333pt;}
.y243{bottom:1010.880000pt;}
.y41{bottom:1013.120000pt;}
.y1d{bottom:1013.280000pt;}
.y2b4{bottom:1013.440000pt;}
.h14{height:27.520000pt;}
.h16{height:27.552000pt;}
.h15{height:27.680000pt;}
.hf{height:55.200000pt;}
.h10{height:55.232000pt;}
.h19{height:57.375000pt;}
.h2{height:58.563750pt;}
.hc{height:61.410000pt;}
.h6{height:63.656250pt;}
.ha{height:66.750000pt;}
.hd{height:78.097500pt;}
.h9{height:80.160000pt;}
.hb{height:81.046875pt;}
.he{height:82.720000pt;}
.h18{height:82.880000pt;}
.h17{height:82.912000pt;}
.h8{height:96.000000pt;}
.h5{height:100.125000pt;}
.h7{height:104.160000pt;}
.h11{height:110.400000pt;}
.h3{height:122.152500pt;}
.h4{height:133.500000pt;}
.h13{height:138.106667pt;}
.h12{height:248.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:140.800000pt;}
.wb{width:141.146667pt;}
.w9{width:150.586667pt;}
.wc{width:159.546667pt;}
.w8{width:159.866667pt;}
.w6{width:160.026667pt;}
.w3{width:169.146667pt;}
.w5{width:197.466667pt;}
.wa{width:263.546667pt;}
.w4{width:395.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x13{left:85.312000pt;}
.x1{left:113.471988pt;}
.xb{left:128.191988pt;}
.xd{left:137.466655pt;}
.xe{left:161.466655pt;}
.x4{left:169.946655pt;}
.x2{left:200.986655pt;}
.x3{left:221.306655pt;}
.x14{left:226.746667pt;}
.x6{left:229.786655pt;}
.x9{left:254.306655pt;}
.x5{left:257.506655pt;}
.x11{left:283.906667pt;}
.x12{left:312.226667pt;}
.x8{left:364.386655pt;}
.x17{left:378.466667pt;}
.x15{left:387.266667pt;}
.xf{left:389.346655pt;}
.xc{left:393.186655pt;}
.xa{left:395.106655pt;}
.x18{left:520.253333pt;}
.x16{left:538.493333pt;}
.x7{left:680.453322pt;}
}




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