
    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_2d1ff6928c4330dde179cb2c.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_cb0da67f37f5bb68c482e9ea.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0431b5c4ae710504a9e115c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_70104cbd9e5dc1988c7d4568.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_becc076dc0f3b211710ce6a1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_89e52d535e567230065fd28f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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_a9808ed21bcafdb4d9354004.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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);}
.v4{vertical-align:-27.360000px;}
.v7{vertical-align:-17.280000px;}
.v2{vertical-align:-14.400000px;}
.v5{vertical-align:-9.360000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v3{vertical-align:14.400000px;}
.v1{vertical-align:33.120000px;}
.ls26{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.666000px;}
.lsf{letter-spacing:-0.576000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.045360px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.056880px;}
.lse{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.135600px;}
.lsb{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.269400px;}
.ls19{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.864000px;}
.ls20{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.117440px;}
.ls24{letter-spacing:1.440000px;}
.ls14{letter-spacing:2.801520px;}
.ls22{letter-spacing:2.981520px;}
.ls15{letter-spacing:3.521520px;}
.ls2{letter-spacing:3.600000px;}
.ls13{letter-spacing:18.641520px;}
.ls2d{letter-spacing:18.720000px;}
.ls28{letter-spacing:19.361520px;}
.ls29{letter-spacing:20.216880px;}
.ls23{letter-spacing:20.707200px;}
.ls16{letter-spacing:20.936880px;}
.ls17{letter-spacing:21.427200px;}
.ls1c{letter-spacing:21.600000px;}
.ls1b{letter-spacing:846.156000px;}
.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;}
}
.ws13{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.064000px;}
.ws11{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.wse{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.146400px;}
.wsc{word-spacing:-15.075600px;}
.ws12{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.400000px;}
.ws6{word-spacing:-12.329400px;}
.ws5{word-spacing:-12.014640px;}
.wsb{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-17.748000px;}
._13{margin-left:-15.660000px;}
._10{margin-left:-14.424000px;}
._14{margin-left:-9.612000px;}
._12{margin-left:-7.404000px;}
._11{margin-left:-6.000000px;}
._26{margin-left:-3.819360px;}
._9{margin-left:-2.568000px;}
._0{margin-left:-1.008000px;}
._1{width:1.488000px;}
._4{width:3.216000px;}
._5{width:4.872000px;}
._6{width:6.588000px;}
._8{width:7.920000px;}
._a{width:9.000000px;}
._20{width:10.368000px;}
._b{width:12.024000px;}
._2{width:13.032000px;}
._3{width:14.448000px;}
._7{width:16.272000px;}
._27{width:18.286560px;}
._f{width:19.296000px;}
._21{width:21.168000px;}
._16{width:22.464000px;}
._17{width:23.664000px;}
._c{width:25.392000px;}
._d{width:26.760000px;}
._1f{width:27.828000px;}
._1e{width:28.944000px;}
._e{width:30.024000px;}
._22{width:31.032000px;}
._1c{width:32.112000px;}
._1d{width:33.432000px;}
._1b{width:34.608000px;}
._19{width:36.480000px;}
._18{width:37.512000px;}
._24{width:39.312000px;}
._28{width:41.028000px;}
._2d{width:42.324000px;}
._1a{width:43.992000px;}
._25{width:45.360000px;}
._2c{width:50.616000px;}
._23{width:74.424000px;}
._29{width:210.792000px;}
._2b{width:212.352000px;}
._2e{width:269.280000px;}
._2a{width:846.156000px;}
.fc6{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(217,217,217);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.yf6{bottom:-13.500000px;}
.y137{bottom:-5.040000px;}
.y16b{bottom:-4.860000px;}
.y186{bottom:-4.500000px;}
.yf9{bottom:-4.140000px;}
.yfc{bottom:-4.005000px;}
.ye1{bottom:-3.960000px;}
.y122{bottom:-3.240000px;}
.y11d{bottom:-3.060000px;}
.y1cf{bottom:-2.520000px;}
.y0{bottom:0.000000px;}
.y172{bottom:3.600000px;}
.ya5{bottom:3.780000px;}
.y17b{bottom:3.810000px;}
.y116{bottom:5.040000px;}
.yc7{bottom:5.220000px;}
.y104{bottom:5.394000px;}
.ye2{bottom:5.400000px;}
.ye8{bottom:5.445000px;}
.ye4{bottom:5.580000px;}
.y8c{bottom:7.200000px;}
.y11e{bottom:7.245000px;}
.yd5{bottom:17.640000px;}
.yd7{bottom:17.670000px;}
.y1d8{bottom:21.054000px;}
.ya8{bottom:21.060000px;}
.ya3{bottom:24.480000px;}
.y98{bottom:27.540000px;}
.y95{bottom:27.900000px;}
.yd8{bottom:27.930000px;}
.y91{bottom:27.945000px;}
.y1d7{bottom:38.154000px;}
.ycd{bottom:38.160000px;}
.yd2{bottom:38.340000px;}
.ycf{bottom:38.385000px;}
.ya7{bottom:41.400000px;}
.ya9{bottom:41.760000px;}
.ya2{bottom:44.820000px;}
.ya4{bottom:45.180000px;}
.y94{bottom:48.240000px;}
.y96{bottom:48.600000px;}
.y140{bottom:48.630000px;}
.y90{bottom:48.645000px;}
.yb{bottom:57.600000px;}
.yda{bottom:59.040000px;}
.y8f{bottom:68.805000px;}
.y92{bottom:69.165000px;}
.y9b{bottom:69.300000px;}
.y13f{bottom:69.330000px;}
.yd0{bottom:69.345000px;}
.ya{bottom:77.400000px;}
.y9a{bottom:89.640000px;}
.y9c{bottom:90.000000px;}
.y105{bottom:108.216000px;}
.ydb{bottom:110.700000px;}
.y1d6{bottom:129.456000px;}
.y166{bottom:131.220000px;}
.y6c{bottom:133.380000px;}
.yc5{bottom:138.060000px;}
.y230{bottom:146.160000px;}
.y38{bottom:146.340000px;}
.y202{bottom:146.520000px;}
.y103{bottom:146.916000px;}
.yc4{bottom:148.500000px;}
.yde{bottom:149.220000px;}
.y18c{bottom:150.870000px;}
.yad{bottom:151.200000px;}
.y114{bottom:153.180000px;}
.y59{bottom:154.440000px;}
.y147{bottom:156.240000px;}
.y6b{bottom:164.340000px;}
.yc3{bottom:165.600000px;}
.y102{bottom:165.810000px;}
.y22f{bottom:166.860000px;}
.y201{bottom:167.220000px;}
.yac{bottom:167.580000px;}
.y141{bottom:168.660000px;}
.y1c3{bottom:170.460000px;}
.y165{bottom:172.440000px;}
.y37{bottom:177.480000px;}
.y1d5{bottom:182.010000px;}
.y164{bottom:183.600000px;}
.y113{bottom:184.320000px;}
.y101{bottom:184.890000px;}
.y13e{bottom:185.040000px;}
.y58{bottom:185.580000px;}
.y18b{bottom:186.150000px;}
.y146{bottom:187.380000px;}
.y1c2{bottom:187.560000px;}
.y200{bottom:187.920000px;}
.yc2{bottom:189.720000px;}
.y9{bottom:194.580000px;}
.y6a{bottom:195.480000px;}
.y1d4{bottom:199.110000px;}
.yc1{bottom:200.880000px;}
.y18a{bottom:203.430000px;}
.y100{bottom:203.790000px;}
.y1c1{bottom:207.390000px;}
.y22e{bottom:208.290000px;}
.y36{bottom:208.470000px;}
.y1ff{bottom:208.650000px;}
.yab{bottom:209.730000px;}
.y163{bottom:213.510000px;}
.y112{bottom:215.310000px;}
.y1d3{bottom:216.390000px;}
.y57{bottom:216.570000px;}
.y145{bottom:218.370000px;}
.y189{bottom:220.710000px;}
.yff{bottom:222.870000px;}
.y1c0{bottom:226.290000px;}
.y69{bottom:226.470000px;}
.y22d{bottom:228.990000px;}
.y1fe{bottom:229.350000px;}
.y1d2{bottom:233.670000px;}
.y188{bottom:237.810000px;}
.y35{bottom:239.610000px;}
.yfe{bottom:241.770000px;}
.y162{bottom:244.650000px;}
.y1bf{bottom:245.190000px;}
.y111{bottom:246.450000px;}
.y56{bottom:247.710000px;}
.y144{bottom:249.510000px;}
.y22c{bottom:249.690000px;}
.y1fd{bottom:250.050000px;}
.y1d1{bottom:250.950000px;}
.yc0{bottom:255.090000px;}
.y68{bottom:257.610000px;}
.yfd{bottom:260.670000px;}
.y1be{bottom:264.270000px;}
.y1d0{bottom:268.230000px;}
.y13d{bottom:268.590000px;}
.y22b{bottom:270.390000px;}
.y34{bottom:270.570000px;}
.y1fc{bottom:270.750000px;}
.yaa{bottom:271.830000px;}
.y187{bottom:272.370000px;}
.y79{bottom:275.250000px;}
.y161{bottom:275.610000px;}
.y110{bottom:277.410000px;}
.y55{bottom:278.670000px;}
.yfb{bottom:279.795000px;}
.y143{bottom:280.470000px;}
.y1bd{bottom:283.170000px;}
.y1ce{bottom:285.555000px;}
.ybf{bottom:286.230000px;}
.y67{bottom:288.570000px;}
.y13c{bottom:289.290000px;}
.y185{bottom:289.695000px;}
.y22a{bottom:291.090000px;}
.y1fb{bottom:291.450000px;}
.y184{bottom:294.015000px;}
.yfa{bottom:298.695000px;}
.y33{bottom:301.710000px;}
.y1bc{bottom:302.250000px;}
.y160{bottom:306.750000px;}
.y10f{bottom:308.550000px;}
.y54{bottom:309.810000px;}
.y13b{bottom:309.990000px;}
.y183{bottom:311.115000px;}
.y142{bottom:311.610000px;}
.y229{bottom:311.790000px;}
.y1fa{bottom:312.150000px;}
.ybe{bottom:317.190000px;}
.yf8{bottom:317.775000px;}
.y66{bottom:319.710000px;}
.y1bb{bottom:321.150000px;}
.y182{bottom:328.395000px;}
.y13a{bottom:330.690000px;}
.y228{bottom:332.490000px;}
.y32{bottom:332.670000px;}
.y1f9{bottom:332.850000px;}
.ya6{bottom:333.930000px;}
.yf7{bottom:336.675000px;}
.y15f{bottom:337.710000px;}
.y10e{bottom:339.510000px;}
.y1ba{bottom:340.050000px;}
.y53{bottom:340.770000px;}
.y78{bottom:342.570000px;}
.y181{bottom:345.675000px;}
.ybd{bottom:348.330000px;}
.y65{bottom:350.670000px;}
.y139{bottom:351.390000px;}
.y8{bottom:351.570000px;}
.y227{bottom:353.190000px;}
.y1f8{bottom:353.550000px;}
.yf5{bottom:355.755000px;}
.y1b9{bottom:359.130000px;}
.y180{bottom:362.955000px;}
.y31{bottom:363.810000px;}
.y15e{bottom:368.850000px;}
.y10d{bottom:370.650000px;}
.y52{bottom:371.910000px;}
.y138{bottom:372.090000px;}
.y77{bottom:373.710000px;}
.y226{bottom:373.890000px;}
.y1f7{bottom:374.250000px;}
.y1b8{bottom:378.030000px;}
.ybc{bottom:379.290000px;}
.y17f{bottom:380.235000px;}
.y64{bottom:381.810000px;}
.yf4{bottom:381.855000px;}
.y7{bottom:382.710000px;}
.ya1{bottom:389.190000px;}
.y136{bottom:392.790000px;}
.y225{bottom:394.590000px;}
.y30{bottom:394.770000px;}
.y1f6{bottom:394.950000px;}
.y1b7{bottom:397.110000px;}
.y17e{bottom:397.515000px;}
.y15d{bottom:399.810000px;}
.y10c{bottom:401.610000px;}
.yf3{bottom:401.835000px;}
.y51{bottom:402.870000px;}
.y76{bottom:404.670000px;}
.y192{bottom:405.930000px;}
.y135{bottom:409.710000px;}
.ybb{bottom:410.430000px;}
.y63{bottom:412.770000px;}
.y6{bottom:413.670000px;}
.y17d{bottom:414.615000px;}
.y224{bottom:415.290000px;}
.yf2{bottom:415.335000px;}
.y1f5{bottom:415.650000px;}
.y1b6{bottom:416.010000px;}
.y2f{bottom:425.910000px;}
.y115{bottom:427.710000px;}
.y134{bottom:430.410000px;}
.y15c{bottom:430.950000px;}
.y17c{bottom:431.895000px;}
.y10b{bottom:432.750000px;}
.y50{bottom:434.010000px;}
.y1b5{bottom:434.910000px;}
.y75{bottom:435.810000px;}
.y223{bottom:435.990000px;}
.y1f4{bottom:436.350000px;}
.y29{bottom:437.430000px;}
.yba{bottom:441.435000px;}
.y62{bottom:443.955000px;}
.ya0{bottom:447.915000px;}
.y17a{bottom:449.175000px;}
.y133{bottom:451.155000px;}
.y1b4{bottom:454.035000px;}
.yf1{bottom:454.065000px;}
.y222{bottom:456.735000px;}
.y2e{bottom:456.915000px;}
.y1f3{bottom:457.095000px;}
.y15b{bottom:461.955000px;}
.y10a{bottom:464.475000px;}
.y4f{bottom:465.015000px;}
.y179{bottom:466.485000px;}
.y74{bottom:466.815000px;}
.y132{bottom:471.855000px;}
.yb9{bottom:472.575000px;}
.y1b3{bottom:472.935000px;}
.yf0{bottom:473.145000px;}
.y61{bottom:474.915000px;}
.y28{bottom:476.175000px;}
.y221{bottom:477.435000px;}
.y1f2{bottom:477.795000px;}
.y178{bottom:483.765000px;}
.y2d{bottom:488.055000px;}
.ydd{bottom:488.775000px;}
.y1b2{bottom:492.015000px;}
.yef{bottom:492.045000px;}
.y131{bottom:492.555000px;}
.y15a{bottom:493.095000px;}
.y4e{bottom:495.975000px;}
.y109{bottom:496.155000px;}
.yc8{bottom:497.595000px;}
.y73{bottom:497.955000px;}
.y220{bottom:498.135000px;}
.y1f1{bottom:498.495000px;}
.y177{bottom:501.045000px;}
.yb8{bottom:503.535000px;}
.y60{bottom:506.055000px;}
.y9f{bottom:510.015000px;}
.y1b1{bottom:510.915000px;}
.yee{bottom:511.125000px;}
.y130{bottom:513.255000px;}
.y27{bottom:514.695000px;}
.y176{bottom:518.145000px;}
.y21f{bottom:518.835000px;}
.y2c{bottom:519.015000px;}
.y1f0{bottom:519.195000px;}
.ydc{bottom:519.735000px;}
.y159{bottom:524.055000px;}
.y4d{bottom:527.115000px;}
.y107{bottom:528.015000px;}
.y108{bottom:528.735000px;}
.y72{bottom:528.915000px;}
.y1b0{bottom:529.995000px;}
.yed{bottom:530.025000px;}
.y12f{bottom:533.955000px;}
.yb7{bottom:534.675000px;}
.y175{bottom:535.425000px;}
.yd9{bottom:536.835000px;}
.y5f{bottom:537.015000px;}
.y21e{bottom:539.535000px;}
.y1ef{bottom:539.895000px;}
.y5{bottom:543.855000px;}
.y1af{bottom:548.895000px;}
.yec{bottom:548.925000px;}
.y2b{bottom:549.975000px;}
.y9e{bottom:551.415000px;}
.y174{bottom:552.705000px;}
.y26{bottom:553.215000px;}
.y12e{bottom:554.655000px;}
.y158{bottom:555.195000px;}
.y4c{bottom:558.075000px;}
.y106{bottom:559.515000px;}
.y71{bottom:560.055000px;}
.y21d{bottom:560.235000px;}
.y1ee{bottom:560.595000px;}
.yb6{bottom:565.635000px;}
.y1ae{bottom:567.795000px;}
.y5e{bottom:567.975000px;}
.yeb{bottom:568.005000px;}
.y173{bottom:569.985000px;}
.y12d{bottom:575.355000px;}
.y21c{bottom:580.935000px;}
.y2a{bottom:581.115000px;}
.y1ed{bottom:581.295000px;}
.y191{bottom:583.635000px;}
.y157{bottom:586.155000px;}
.y1ad{bottom:586.875000px;}
.yea{bottom:586.905000px;}
.y171{bottom:587.265000px;}
.y4b{bottom:589.215000px;}
.y70{bottom:591.015000px;}
.y25{bottom:591.735000px;}
.y4{bottom:592.815000px;}
.y12c{bottom:596.055000px;}
.yb5{bottom:596.595000px;}
.y5d{bottom:599.115000px;}
.y21b{bottom:601.455000px;}
.y1ec{bottom:601.995000px;}
.y170{bottom:604.365000px;}
.y1ac{bottom:605.775000px;}
.ye9{bottom:605.985000px;}
.y1a{bottom:612.075000px;}
.y190{bottom:615.135000px;}
.y12b{bottom:616.755000px;}
.y156{bottom:617.295000px;}
.y4a{bottom:620.175000px;}
.y16f{bottom:621.645000px;}
.y6f{bottom:621.975000px;}
.y21a{bottom:622.155000px;}
.y1eb{bottom:622.695000px;}
.y1ab{bottom:624.855000px;}
.ye7{bottom:624.885000px;}
.yb4{bottom:627.735000px;}
.y5c{bottom:630.075000px;}
.y24{bottom:630.255000px;}
.y9d{bottom:634.215000px;}
.y12a{bottom:637.455000px;}
.y16e{bottom:638.970000px;}
.y18f{bottom:641.775000px;}
.y219{bottom:642.855000px;}
.y19{bottom:643.215000px;}
.y1ea{bottom:643.395000px;}
.y1aa{bottom:643.755000px;}
.ye6{bottom:643.830000px;}
.y155{bottom:648.255000px;}
.y49{bottom:651.315000px;}
.y6e{bottom:653.115000px;}
.y16d{bottom:656.250000px;}
.y129{bottom:658.155000px;}
.yb3{bottom:658.695000px;}
.yd6{bottom:661.035000px;}
.y5b{bottom:661.215000px;}
.y1a9{bottom:662.655000px;}
.ye5{bottom:662.910000px;}
.y218{bottom:663.555000px;}
.y1e9{bottom:664.095000px;}
.y23{bottom:668.775000px;}
.y18{bottom:674.175000px;}
.y16c{bottom:674.250000px;}
.y99{bottom:675.645000px;}
.y128{bottom:678.885000px;}
.y154{bottom:679.425000px;}
.yc6{bottom:680.505000px;}
.y1a8{bottom:681.765000px;}
.ye3{bottom:681.810000px;}
.y48{bottom:682.305000px;}
.y6d{bottom:684.105000px;}
.y217{bottom:684.285000px;}
.y1e8{bottom:684.825000px;}
.yb2{bottom:689.865000px;}
.y89{bottom:692.205000px;}
.y16a{bottom:692.250000px;}
.y127{bottom:699.585000px;}
.y1a7{bottom:700.665000px;}
.ye0{bottom:701.610000px;}
.yd4{bottom:702.465000px;}
.y216{bottom:704.985000px;}
.y17{bottom:705.345000px;}
.y1e7{bottom:705.525000px;}
.y22{bottom:707.505000px;}
.y5a{bottom:709.845000px;}
.y153{bottom:710.385000px;}
.y7e{bottom:713.445000px;}
.y46{bottom:715.245000px;}
.y1a6{bottom:719.745000px;}
.y126{bottom:720.285000px;}
.yb1{bottom:721.545000px;}
.y88{bottom:723.345000px;}
.y215{bottom:725.685000px;}
.y1e6{bottom:726.225000px;}
.ydf{bottom:727.710000px;}
.y169{bottom:727.890000px;}
.y47{bottom:731.085000px;}
.y16{bottom:736.305000px;}
.y1a5{bottom:738.645000px;}
.y3{bottom:740.985000px;}
.y152{bottom:741.345000px;}
.yd3{bottom:743.865000px;}
.y7d{bottom:744.405000px;}
.y21{bottom:746.025000px;}
.y45{bottom:746.205000px;}
.y214{bottom:746.385000px;}
.y1e5{bottom:746.925000px;}
.yb0{bottom:753.405000px;}
.y87{bottom:754.305000px;}
.y1a4{bottom:757.545000px;}
.y125{bottom:761.685000px;}
.y213{bottom:767.085000px;}
.y15{bottom:767.445000px;}
.y1e4{bottom:767.625000px;}
.y151{bottom:772.485000px;}
.y7c{bottom:775.545000px;}
.y1a3{bottom:776.625000px;}
.y44{bottom:777.345000px;}
.y97{bottom:779.145000px;}
.y124{bottom:782.385000px;}
.y20{bottom:784.545000px;}
.yaf{bottom:784.905000px;}
.y86{bottom:785.445000px;}
.y212{bottom:787.785000px;}
.y1e3{bottom:788.325000px;}
.y1a2{bottom:795.525000px;}
.y168{bottom:796.965000px;}
.y14{bottom:798.405000px;}
.y123{bottom:803.085000px;}
.y150{bottom:803.625000px;}
.yd1{bottom:805.965000px;}
.y7b{bottom:806.505000px;}
.y43{bottom:808.305000px;}
.y211{bottom:808.485000px;}
.y1e2{bottom:809.025000px;}
.y1a1{bottom:814.605000px;}
.y85{bottom:816.405000px;}
.y2{bottom:816.945000px;}
.y93{bottom:820.545000px;}
.y1f{bottom:823.065000px;}
.y121{bottom:823.785000px;}
.y210{bottom:829.185000px;}
.y13{bottom:829.545000px;}
.y1e1{bottom:829.725000px;}
.y1a0{bottom:833.505000px;}
.y14f{bottom:835.305000px;}
.y42{bottom:839.445000px;}
.y120{bottom:844.485000px;}
.y1cd{bottom:844.665000px;}
.y84{bottom:847.545000px;}
.y20f{bottom:849.885000px;}
.y1e0{bottom:850.425000px;}
.y19f{bottom:852.405000px;}
.y7a{bottom:855.285000px;}
.y12{bottom:860.505000px;}
.y1e{bottom:861.585000px;}
.y11f{bottom:865.905000px;}
.y14e{bottom:867.165000px;}
.y41{bottom:870.405000px;}
.y20e{bottom:870.585000px;}
.y1df{bottom:871.125000px;}
.y19e{bottom:871.485000px;}
.y1cc{bottom:875.805000px;}
.y83{bottom:878.505000px;}
.y1{bottom:882.465000px;}
.y8e{bottom:882.645000px;}
.yce{bottom:888.765000px;}
.y19d{bottom:890.385000px;}
.y20d{bottom:891.285000px;}
.y11{bottom:891.645000px;}
.y1de{bottom:891.825000px;}
.y1cb{bottom:892.185000px;}
.yae{bottom:896.145000px;}
.y14d{bottom:898.485000px;}
.y1d{bottom:900.105000px;}
.y40{bottom:901.545000px;}
.y11c{bottom:908.025000px;}
.y19c{bottom:909.465000px;}
.y82{bottom:909.645000px;}
.y20c{bottom:912.030000px;}
.y1dd{bottom:912.570000px;}
.y10{bottom:922.650000px;}
.y19b{bottom:928.410000px;}
.y14c{bottom:930.210000px;}
.y3f{bottom:932.550000px;}
.y20b{bottom:932.730000px;}
.y1dc{bottom:933.270000px;}
.y1c{bottom:938.670000px;}
.y81{bottom:940.650000px;}
.y11b{bottom:947.130000px;}
.y19a{bottom:947.310000px;}
.y20a{bottom:953.430000px;}
.yf{bottom:953.790000px;}
.y1db{bottom:953.970000px;}
.y1ca{bottom:955.050000px;}
.y167{bottom:955.410000px;}
.y14b{bottom:961.350000px;}
.y3e{bottom:963.690000px;}
.y8d{bottom:965.310000px;}
.y199{bottom:966.390000px;}
.ycc{bottom:971.610000px;}
.y80{bottom:971.790000px;}
.y209{bottom:974.130000px;}
.y1da{bottom:974.670000px;}
.y1c9{bottom:975.750000px;}
.y11a{bottom:976.830000px;}
.y1b{bottom:977.370000px;}
.ye{bottom:984.750000px;}
.y198{bottom:985.290000px;}
.y8b{bottom:986.910000px;}
.y18e{bottom:991.230000px;}
.y14a{bottom:993.030000px;}
.y3d{bottom:994.650000px;}
.y208{bottom:994.830000px;}
.y1d9{bottom:995.370000px;}
.y1c8{bottom:996.450000px;}
.y197{bottom:1004.370000px;}
.y119{bottom:1007.790000px;}
.y207{bottom:1015.530000px;}
.yd{bottom:1015.890000px;}
.y18d{bottom:1016.070000px;}
.y1c7{bottom:1017.150000px;}
.y7f{bottom:1020.390000px;}
.y196{bottom:1023.270000px;}
.y149{bottom:1024.710000px;}
.y3c{bottom:1025.790000px;}
.y8a{bottom:1025.970000px;}
.y206{bottom:1036.230000px;}
.y1c6{bottom:1037.850000px;}
.y118{bottom:1038.750000px;}
.y195{bottom:1042.350000px;}
.ycb{bottom:1055.130000px;}
.y148{bottom:1056.210000px;}
.y3b{bottom:1056.750000px;}
.y205{bottom:1056.930000px;}
.y1c5{bottom:1058.550000px;}
.y194{bottom:1061.970000px;}
.y117{bottom:1069.890000px;}
.y204{bottom:1077.630000px;}
.y1c4{bottom:1079.970000px;}
.y193{bottom:1081.770000px;}
.y3a{bottom:1087.890000px;}
.yca{bottom:1094.190000px;}
.y203{bottom:1098.330000px;}
.yc{bottom:1118.490000px;}
.y39{bottom:1118.850000px;}
.yc9{bottom:1119.030000px;}
.h27{height:4.320000px;}
.h2b{height:8.460000px;}
.h23{height:16.920000px;}
.h26{height:17.100000px;}
.h24{height:17.280000px;}
.h25{height:17.316000px;}
.h1a{height:18.900000px;}
.h1c{height:18.936000px;}
.h1b{height:19.080000px;}
.h1e{height:19.116000px;}
.h6{height:20.700000px;}
.h22{height:20.736000px;}
.h21{height:21.456000px;}
.h13{height:21.600000px;}
.h28{height:29.678906px;}
.h29{height:34.560000px;}
.h1f{height:37.980000px;}
.h1d{height:38.016000px;}
.h12{height:38.158594px;}
.hc{height:41.400000px;}
.he{height:41.436000px;}
.h16{height:41.493516px;}
.h5{height:49.992188px;}
.h2c{height:51.660000px;}
.h11{height:55.125000px;}
.h10{height:55.260000px;}
.h20{height:58.005000px;}
.h7{height:58.621992px;}
.h8{height:58.651172px;}
.hf{height:58.716000px;}
.ha{height:60.226875px;}
.hb{height:62.100000px;}
.h2a{height:62.136000px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h4{height:80.464922px;}
.h9{height:82.656000px;}
.h14{height:82.800000px;}
.h15{height:82.836000px;}
.hd{height:103.500000px;}
.h17{height:124.200000px;}
.h18{height:892.980000px;}
.h19{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:35.640000px;}
.w2d{width:43.020000px;}
.w2e{width:43.056000px;}
.w2c{width:43.200000px;}
.w2b{width:43.236000px;}
.w30{width:68.760000px;}
.w31{width:68.796000px;}
.w32{width:68.976000px;}
.w1a{width:72.540000px;}
.w7{width:77.400000px;}
.w15{width:78.660000px;}
.w16{width:78.696000px;}
.w17{width:78.876000px;}
.we{width:88.380000px;}
.w11{width:88.416000px;}
.w10{width:88.560000px;}
.wf{width:88.596000px;}
.w33{width:89.100000px;}
.w9{width:93.096000px;}
.w39{width:93.420000px;}
.w3b{width:93.456000px;}
.w38{width:93.600000px;}
.w3a{width:93.636000px;}
.w12{width:95.040000px;}
.w26{width:95.400000px;}
.w25{width:95.436000px;}
.w24{width:95.580000px;}
.w27{width:95.616000px;}
.w20{width:97.236000px;}
.w1c{width:99.540000px;}
.w1b{width:99.576000px;}
.wd{width:117.000000px;}
.w8{width:127.656000px;}
.w1f{width:142.380000px;}
.w14{width:144.540000px;}
.w34{width:155.340000px;}
.w4{width:158.940000px;}
.w19{width:162.930000px;}
.w35{width:187.020000px;}
.w37{width:187.050000px;}
.w36{width:187.230000px;}
.w22{width:190.830000px;}
.w23{width:191.010000px;}
.w21{width:191.160000px;}
.w2f{width:204.690000px;}
.w1d{width:235.470000px;}
.w2{width:239.250000px;}
.w28{width:239.610000px;}
.w3{width:239.655000px;}
.w2a{width:249.510000px;}
.w3c{width:250.950000px;}
.wa{width:339.690000px;}
.w1e{width:633.705000px;}
.w5{width:637.845000px;}
.w13{width:654.555000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w3d{width:999.330000px;}
.w29{width:1003.650000px;}
.w18{width:1010.130000px;}
.wb{width:1262.880000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x1f{left:4.320000px;}
.x1d{left:5.754000px;}
.x15{left:8.460000px;}
.x17{left:10.614000px;}
.x2a{left:12.060000px;}
.x4e{left:13.860000px;}
.x24{left:15.840000px;}
.x28{left:17.460000px;}
.x54{left:19.080000px;}
.x2b{left:21.240000px;}
.x56{left:22.500000px;}
.x51{left:23.760000px;}
.x34{left:24.840000px;}
.x36{left:27.360000px;}
.x3a{left:28.440000px;}
.x26{left:30.780000px;}
.x23{left:32.214000px;}
.x53{left:33.840000px;}
.x2c{left:35.820000px;}
.x27{left:37.260000px;}
.x25{left:39.060000px;}
.x52{left:41.040000px;}
.x55{left:43.200000px;}
.x29{left:46.440000px;}
.x5d{left:48.600000px;}
.x31{left:50.400000px;}
.x39{left:54.540000px;}
.x3b{left:57.600000px;}
.x18{left:58.860000px;}
.x7f{left:62.820000px;}
.x64{left:64.800000px;}
.x5b{left:71.094000px;}
.x48{left:73.440000px;}
.x79{left:77.574000px;}
.x16{left:79.380000px;}
.x62{left:80.505000px;}
.x7c{left:84.780000px;}
.x5f{left:86.760000px;}
.x84{left:93.600000px;}
.x69{left:95.580000px;}
.x22{left:97.920000px;}
.x57{left:99.570000px;}
.x3c{left:126.576000px;}
.x2f{left:127.656000px;}
.x5a{left:131.796000px;}
.x5{left:148.896000px;}
.x58{left:151.410000px;}
.x4c{left:153.030000px;}
.x49{left:154.470000px;}
.x1a{left:156.630000px;}
.x2e{left:180.750000px;}
.x6{left:201.990000px;}
.x12{left:204.150000px;}
.xe{left:219.990000px;}
.x1e{left:226.290000px;}
.x30{left:244.650000px;}
.x6d{left:249.519000px;}
.x59{left:259.410000px;}
.x4a{left:262.470000px;}
.x1b{left:264.675000px;}
.x3d{left:271.110000px;}
.x5c{left:274.170000px;}
.x4{left:281.415000px;}
.x7a{left:287.130000px;}
.x1{left:292.755000px;}
.x4d{left:315.975000px;}
.x32{left:333.030000px;}
.x6a{left:348.015000px;}
.x3e{left:349.770000px;}
.x20{left:353.955000px;}
.xa{left:361.695000px;}
.x5e{left:371.415000px;}
.x3{left:372.855000px;}
.x7b{left:382.755000px;}
.x11{left:386.715000px;}
.x13{left:388.155000px;}
.x10{left:390.315000px;}
.xf{left:394.815000px;}
.x6e{left:398.415000px;}
.x7{left:402.195000px;}
.x85{left:407.235000px;}
.xc{left:416.415000px;}
.xd{left:418.215000px;}
.x33{left:421.635000px;}
.x3f{left:428.475000px;}
.x4b{left:437.115000px;}
.x6f{left:441.645000px;}
.x21{left:447.045000px;}
.x2{left:455.865000px;}
.x65{left:466.995000px;}
.x80{left:476.355000px;}
.x70{left:484.845000px;}
.x4f{left:488.085000px;}
.x75{left:491.145000px;}
.x40{left:507.135000px;}
.x35{left:510.195000px;}
.x71{left:527.865000px;}
.x6b{left:544.965000px;}
.x76{left:559.905000px;}
.x60{left:562.575000px;}
.x7d{left:569.775000px;}
.x72{left:571.065000px;}
.x41{left:585.795000px;}
.x50{left:587.625000px;}
.x37{left:598.605000px;}
.x73{left:614.265000px;}
.x14{left:627.810000px;}
.x77{left:628.890000px;}
.x66{left:658.005000px;}
.x81{left:663.405000px;}
.x42{left:664.485000px;}
.x38{left:687.165000px;}
.x78{left:697.650000px;}
.x74{left:700.530000px;}
.x6c{left:704.670000px;}
.x43{left:743.145000px;}
.x1c{left:751.110000px;}
.x61{left:753.405000px;}
.x7e{left:757.005000px;}
.x19{left:771.810000px;}
.xb{left:774.330000px;}
.x9{left:778.470000px;}
.x8{left:782.610000px;}
.x44{left:821.805000px;}
.x67{left:849.030000px;}
.x82{left:850.470000px;}
.x45{left:900.690000px;}
.x63{left:944.430000px;}
.x46{left:979.350000px;}
.x83{left:1037.490000px;}
.x68{left:1040.010000px;}
.x47{left:1058.040000px;}
.x2d{left:1120.500000px;}
@media print{
.v4{vertical-align:-24.320000pt;}
.v7{vertical-align:-15.360000pt;}
.v2{vertical-align:-12.800000pt;}
.v5{vertical-align:-8.320000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v3{vertical-align:12.800000pt;}
.v1{vertical-align:29.440000pt;}
.ls26{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.592000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.040320pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.050560pt;}
.lse{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.120533pt;}
.lsb{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.239467pt;}
.ls19{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls20{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:0.993280pt;}
.ls24{letter-spacing:1.280000pt;}
.ls14{letter-spacing:2.490240pt;}
.ls22{letter-spacing:2.650240pt;}
.ls15{letter-spacing:3.130240pt;}
.ls2{letter-spacing:3.200000pt;}
.ls13{letter-spacing:16.570240pt;}
.ls2d{letter-spacing:16.640000pt;}
.ls28{letter-spacing:17.210240pt;}
.ls29{letter-spacing:17.970560pt;}
.ls23{letter-spacing:18.406400pt;}
.ls16{letter-spacing:18.610560pt;}
.ls17{letter-spacing:19.046400pt;}
.ls1c{letter-spacing:19.200000pt;}
.ls1b{letter-spacing:752.138667pt;}
.ws13{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.168000pt;}
.ws11{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.400533pt;}
.ws12{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws4{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.800000pt;}
.ws6{word-spacing:-10.959467pt;}
.ws5{word-spacing:-10.679680pt;}
.wsb{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-15.776000pt;}
._13{margin-left:-13.920000pt;}
._10{margin-left:-12.821333pt;}
._14{margin-left:-8.544000pt;}
._12{margin-left:-6.581333pt;}
._11{margin-left:-5.333333pt;}
._26{margin-left:-3.394987pt;}
._9{margin-left:-2.282667pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.322667pt;}
._4{width:2.858667pt;}
._5{width:4.330667pt;}
._6{width:5.856000pt;}
._8{width:7.040000pt;}
._a{width:8.000000pt;}
._20{width:9.216000pt;}
._b{width:10.688000pt;}
._2{width:11.584000pt;}
._3{width:12.842667pt;}
._7{width:14.464000pt;}
._27{width:16.254720pt;}
._f{width:17.152000pt;}
._21{width:18.816000pt;}
._16{width:19.968000pt;}
._17{width:21.034667pt;}
._c{width:22.570667pt;}
._d{width:23.786667pt;}
._1f{width:24.736000pt;}
._1e{width:25.728000pt;}
._e{width:26.688000pt;}
._22{width:27.584000pt;}
._1c{width:28.544000pt;}
._1d{width:29.717333pt;}
._1b{width:30.762667pt;}
._19{width:32.426667pt;}
._18{width:33.344000pt;}
._24{width:34.944000pt;}
._28{width:36.469333pt;}
._2d{width:37.621333pt;}
._1a{width:39.104000pt;}
._25{width:40.320000pt;}
._2c{width:44.992000pt;}
._23{width:66.154667pt;}
._29{width:187.370667pt;}
._2b{width:188.757333pt;}
._2e{width:239.360000pt;}
._2a{width:752.138667pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.yf6{bottom:-12.000000pt;}
.y137{bottom:-4.480000pt;}
.y16b{bottom:-4.320000pt;}
.y186{bottom:-4.000000pt;}
.yf9{bottom:-3.680000pt;}
.yfc{bottom:-3.560000pt;}
.ye1{bottom:-3.520000pt;}
.y122{bottom:-2.880000pt;}
.y11d{bottom:-2.720000pt;}
.y1cf{bottom:-2.240000pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:3.200000pt;}
.ya5{bottom:3.360000pt;}
.y17b{bottom:3.386667pt;}
.y116{bottom:4.480000pt;}
.yc7{bottom:4.640000pt;}
.y104{bottom:4.794667pt;}
.ye2{bottom:4.800000pt;}
.ye8{bottom:4.840000pt;}
.ye4{bottom:4.960000pt;}
.y8c{bottom:6.400000pt;}
.y11e{bottom:6.440000pt;}
.yd5{bottom:15.680000pt;}
.yd7{bottom:15.706667pt;}
.y1d8{bottom:18.714667pt;}
.ya8{bottom:18.720000pt;}
.ya3{bottom:21.760000pt;}
.y98{bottom:24.480000pt;}
.y95{bottom:24.800000pt;}
.yd8{bottom:24.826667pt;}
.y91{bottom:24.840000pt;}
.y1d7{bottom:33.914667pt;}
.ycd{bottom:33.920000pt;}
.yd2{bottom:34.080000pt;}
.ycf{bottom:34.120000pt;}
.ya7{bottom:36.800000pt;}
.ya9{bottom:37.120000pt;}
.ya2{bottom:39.840000pt;}
.ya4{bottom:40.160000pt;}
.y94{bottom:42.880000pt;}
.y96{bottom:43.200000pt;}
.y140{bottom:43.226667pt;}
.y90{bottom:43.240000pt;}
.yb{bottom:51.200000pt;}
.yda{bottom:52.480000pt;}
.y8f{bottom:61.160000pt;}
.y92{bottom:61.480000pt;}
.y9b{bottom:61.600000pt;}
.y13f{bottom:61.626667pt;}
.yd0{bottom:61.640000pt;}
.ya{bottom:68.800000pt;}
.y9a{bottom:79.680000pt;}
.y9c{bottom:80.000000pt;}
.y105{bottom:96.192000pt;}
.ydb{bottom:98.400000pt;}
.y1d6{bottom:115.072000pt;}
.y166{bottom:116.640000pt;}
.y6c{bottom:118.560000pt;}
.yc5{bottom:122.720000pt;}
.y230{bottom:129.920000pt;}
.y38{bottom:130.080000pt;}
.y202{bottom:130.240000pt;}
.y103{bottom:130.592000pt;}
.yc4{bottom:132.000000pt;}
.yde{bottom:132.640000pt;}
.y18c{bottom:134.106667pt;}
.yad{bottom:134.400000pt;}
.y114{bottom:136.160000pt;}
.y59{bottom:137.280000pt;}
.y147{bottom:138.880000pt;}
.y6b{bottom:146.080000pt;}
.yc3{bottom:147.200000pt;}
.y102{bottom:147.386667pt;}
.y22f{bottom:148.320000pt;}
.y201{bottom:148.640000pt;}
.yac{bottom:148.960000pt;}
.y141{bottom:149.920000pt;}
.y1c3{bottom:151.520000pt;}
.y165{bottom:153.280000pt;}
.y37{bottom:157.760000pt;}
.y1d5{bottom:161.786667pt;}
.y164{bottom:163.200000pt;}
.y113{bottom:163.840000pt;}
.y101{bottom:164.346667pt;}
.y13e{bottom:164.480000pt;}
.y58{bottom:164.960000pt;}
.y18b{bottom:165.466667pt;}
.y146{bottom:166.560000pt;}
.y1c2{bottom:166.720000pt;}
.y200{bottom:167.040000pt;}
.yc2{bottom:168.640000pt;}
.y9{bottom:172.960000pt;}
.y6a{bottom:173.760000pt;}
.y1d4{bottom:176.986667pt;}
.yc1{bottom:178.560000pt;}
.y18a{bottom:180.826667pt;}
.y100{bottom:181.146667pt;}
.y1c1{bottom:184.346667pt;}
.y22e{bottom:185.146667pt;}
.y36{bottom:185.306667pt;}
.y1ff{bottom:185.466667pt;}
.yab{bottom:186.426667pt;}
.y163{bottom:189.786667pt;}
.y112{bottom:191.386667pt;}
.y1d3{bottom:192.346667pt;}
.y57{bottom:192.506667pt;}
.y145{bottom:194.106667pt;}
.y189{bottom:196.186667pt;}
.yff{bottom:198.106667pt;}
.y1c0{bottom:201.146667pt;}
.y69{bottom:201.306667pt;}
.y22d{bottom:203.546667pt;}
.y1fe{bottom:203.866667pt;}
.y1d2{bottom:207.706667pt;}
.y188{bottom:211.386667pt;}
.y35{bottom:212.986667pt;}
.yfe{bottom:214.906667pt;}
.y162{bottom:217.466667pt;}
.y1bf{bottom:217.946667pt;}
.y111{bottom:219.066667pt;}
.y56{bottom:220.186667pt;}
.y144{bottom:221.786667pt;}
.y22c{bottom:221.946667pt;}
.y1fd{bottom:222.266667pt;}
.y1d1{bottom:223.066667pt;}
.yc0{bottom:226.746667pt;}
.y68{bottom:228.986667pt;}
.yfd{bottom:231.706667pt;}
.y1be{bottom:234.906667pt;}
.y1d0{bottom:238.426667pt;}
.y13d{bottom:238.746667pt;}
.y22b{bottom:240.346667pt;}
.y34{bottom:240.506667pt;}
.y1fc{bottom:240.666667pt;}
.yaa{bottom:241.626667pt;}
.y187{bottom:242.106667pt;}
.y79{bottom:244.666667pt;}
.y161{bottom:244.986667pt;}
.y110{bottom:246.586667pt;}
.y55{bottom:247.706667pt;}
.yfb{bottom:248.706667pt;}
.y143{bottom:249.306667pt;}
.y1bd{bottom:251.706667pt;}
.y1ce{bottom:253.826667pt;}
.ybf{bottom:254.426667pt;}
.y67{bottom:256.506667pt;}
.y13c{bottom:257.146667pt;}
.y185{bottom:257.506667pt;}
.y22a{bottom:258.746667pt;}
.y1fb{bottom:259.066667pt;}
.y184{bottom:261.346667pt;}
.yfa{bottom:265.506667pt;}
.y33{bottom:268.186667pt;}
.y1bc{bottom:268.666667pt;}
.y160{bottom:272.666667pt;}
.y10f{bottom:274.266667pt;}
.y54{bottom:275.386667pt;}
.y13b{bottom:275.546667pt;}
.y183{bottom:276.546667pt;}
.y142{bottom:276.986667pt;}
.y229{bottom:277.146667pt;}
.y1fa{bottom:277.466667pt;}
.ybe{bottom:281.946667pt;}
.yf8{bottom:282.466667pt;}
.y66{bottom:284.186667pt;}
.y1bb{bottom:285.466667pt;}
.y182{bottom:291.906667pt;}
.y13a{bottom:293.946667pt;}
.y228{bottom:295.546667pt;}
.y32{bottom:295.706667pt;}
.y1f9{bottom:295.866667pt;}
.ya6{bottom:296.826667pt;}
.yf7{bottom:299.266667pt;}
.y15f{bottom:300.186667pt;}
.y10e{bottom:301.786667pt;}
.y1ba{bottom:302.266667pt;}
.y53{bottom:302.906667pt;}
.y78{bottom:304.506667pt;}
.y181{bottom:307.266667pt;}
.ybd{bottom:309.626667pt;}
.y65{bottom:311.706667pt;}
.y139{bottom:312.346667pt;}
.y8{bottom:312.506667pt;}
.y227{bottom:313.946667pt;}
.y1f8{bottom:314.266667pt;}
.yf5{bottom:316.226667pt;}
.y1b9{bottom:319.226667pt;}
.y180{bottom:322.626667pt;}
.y31{bottom:323.386667pt;}
.y15e{bottom:327.866667pt;}
.y10d{bottom:329.466667pt;}
.y52{bottom:330.586667pt;}
.y138{bottom:330.746667pt;}
.y77{bottom:332.186667pt;}
.y226{bottom:332.346667pt;}
.y1f7{bottom:332.666667pt;}
.y1b8{bottom:336.026667pt;}
.ybc{bottom:337.146667pt;}
.y17f{bottom:337.986667pt;}
.y64{bottom:339.386667pt;}
.yf4{bottom:339.426667pt;}
.y7{bottom:340.186667pt;}
.ya1{bottom:345.946667pt;}
.y136{bottom:349.146667pt;}
.y225{bottom:350.746667pt;}
.y30{bottom:350.906667pt;}
.y1f6{bottom:351.066667pt;}
.y1b7{bottom:352.986667pt;}
.y17e{bottom:353.346667pt;}
.y15d{bottom:355.386667pt;}
.y10c{bottom:356.986667pt;}
.yf3{bottom:357.186667pt;}
.y51{bottom:358.106667pt;}
.y76{bottom:359.706667pt;}
.y192{bottom:360.826667pt;}
.y135{bottom:364.186667pt;}
.ybb{bottom:364.826667pt;}
.y63{bottom:366.906667pt;}
.y6{bottom:367.706667pt;}
.y17d{bottom:368.546667pt;}
.y224{bottom:369.146667pt;}
.yf2{bottom:369.186667pt;}
.y1f5{bottom:369.466667pt;}
.y1b6{bottom:369.786667pt;}
.y2f{bottom:378.586667pt;}
.y115{bottom:380.186667pt;}
.y134{bottom:382.586667pt;}
.y15c{bottom:383.066667pt;}
.y17c{bottom:383.906667pt;}
.y10b{bottom:384.666667pt;}
.y50{bottom:385.786667pt;}
.y1b5{bottom:386.586667pt;}
.y75{bottom:387.386667pt;}
.y223{bottom:387.546667pt;}
.y1f4{bottom:387.866667pt;}
.y29{bottom:388.826667pt;}
.yba{bottom:392.386667pt;}
.y62{bottom:394.626667pt;}
.ya0{bottom:398.146667pt;}
.y17a{bottom:399.266667pt;}
.y133{bottom:401.026667pt;}
.y1b4{bottom:403.586667pt;}
.yf1{bottom:403.613333pt;}
.y222{bottom:405.986667pt;}
.y2e{bottom:406.146667pt;}
.y1f3{bottom:406.306667pt;}
.y15b{bottom:410.626667pt;}
.y10a{bottom:412.866667pt;}
.y4f{bottom:413.346667pt;}
.y179{bottom:414.653333pt;}
.y74{bottom:414.946667pt;}
.y132{bottom:419.426667pt;}
.yb9{bottom:420.066667pt;}
.y1b3{bottom:420.386667pt;}
.yf0{bottom:420.573333pt;}
.y61{bottom:422.146667pt;}
.y28{bottom:423.266667pt;}
.y221{bottom:424.386667pt;}
.y1f2{bottom:424.706667pt;}
.y178{bottom:430.013333pt;}
.y2d{bottom:433.826667pt;}
.ydd{bottom:434.466667pt;}
.y1b2{bottom:437.346667pt;}
.yef{bottom:437.373333pt;}
.y131{bottom:437.826667pt;}
.y15a{bottom:438.306667pt;}
.y4e{bottom:440.866667pt;}
.y109{bottom:441.026667pt;}
.yc8{bottom:442.306667pt;}
.y73{bottom:442.626667pt;}
.y220{bottom:442.786667pt;}
.y1f1{bottom:443.106667pt;}
.y177{bottom:445.373333pt;}
.yb8{bottom:447.586667pt;}
.y60{bottom:449.826667pt;}
.y9f{bottom:453.346667pt;}
.y1b1{bottom:454.146667pt;}
.yee{bottom:454.333333pt;}
.y130{bottom:456.226667pt;}
.y27{bottom:457.506667pt;}
.y176{bottom:460.573333pt;}
.y21f{bottom:461.186667pt;}
.y2c{bottom:461.346667pt;}
.y1f0{bottom:461.506667pt;}
.ydc{bottom:461.986667pt;}
.y159{bottom:465.826667pt;}
.y4d{bottom:468.546667pt;}
.y107{bottom:469.346667pt;}
.y108{bottom:469.986667pt;}
.y72{bottom:470.146667pt;}
.y1b0{bottom:471.106667pt;}
.yed{bottom:471.133333pt;}
.y12f{bottom:474.626667pt;}
.yb7{bottom:475.266667pt;}
.y175{bottom:475.933333pt;}
.yd9{bottom:477.186667pt;}
.y5f{bottom:477.346667pt;}
.y21e{bottom:479.586667pt;}
.y1ef{bottom:479.906667pt;}
.y5{bottom:483.426667pt;}
.y1af{bottom:487.906667pt;}
.yec{bottom:487.933333pt;}
.y2b{bottom:488.866667pt;}
.y9e{bottom:490.146667pt;}
.y174{bottom:491.293333pt;}
.y26{bottom:491.746667pt;}
.y12e{bottom:493.026667pt;}
.y158{bottom:493.506667pt;}
.y4c{bottom:496.066667pt;}
.y106{bottom:497.346667pt;}
.y71{bottom:497.826667pt;}
.y21d{bottom:497.986667pt;}
.y1ee{bottom:498.306667pt;}
.yb6{bottom:502.786667pt;}
.y1ae{bottom:504.706667pt;}
.y5e{bottom:504.866667pt;}
.yeb{bottom:504.893333pt;}
.y173{bottom:506.653333pt;}
.y12d{bottom:511.426667pt;}
.y21c{bottom:516.386667pt;}
.y2a{bottom:516.546667pt;}
.y1ed{bottom:516.706667pt;}
.y191{bottom:518.786667pt;}
.y157{bottom:521.026667pt;}
.y1ad{bottom:521.666667pt;}
.yea{bottom:521.693333pt;}
.y171{bottom:522.013333pt;}
.y4b{bottom:523.746667pt;}
.y70{bottom:525.346667pt;}
.y25{bottom:525.986667pt;}
.y4{bottom:526.946667pt;}
.y12c{bottom:529.826667pt;}
.yb5{bottom:530.306667pt;}
.y5d{bottom:532.546667pt;}
.y21b{bottom:534.626667pt;}
.y1ec{bottom:535.106667pt;}
.y170{bottom:537.213333pt;}
.y1ac{bottom:538.466667pt;}
.ye9{bottom:538.653333pt;}
.y1a{bottom:544.066667pt;}
.y190{bottom:546.786667pt;}
.y12b{bottom:548.226667pt;}
.y156{bottom:548.706667pt;}
.y4a{bottom:551.266667pt;}
.y16f{bottom:552.573333pt;}
.y6f{bottom:552.866667pt;}
.y21a{bottom:553.026667pt;}
.y1eb{bottom:553.506667pt;}
.y1ab{bottom:555.426667pt;}
.ye7{bottom:555.453333pt;}
.yb4{bottom:557.986667pt;}
.y5c{bottom:560.066667pt;}
.y24{bottom:560.226667pt;}
.y9d{bottom:563.746667pt;}
.y12a{bottom:566.626667pt;}
.y16e{bottom:567.973333pt;}
.y18f{bottom:570.466667pt;}
.y219{bottom:571.426667pt;}
.y19{bottom:571.746667pt;}
.y1ea{bottom:571.906667pt;}
.y1aa{bottom:572.226667pt;}
.ye6{bottom:572.293333pt;}
.y155{bottom:576.226667pt;}
.y49{bottom:578.946667pt;}
.y6e{bottom:580.546667pt;}
.y16d{bottom:583.333333pt;}
.y129{bottom:585.026667pt;}
.yb3{bottom:585.506667pt;}
.yd6{bottom:587.586667pt;}
.y5b{bottom:587.746667pt;}
.y1a9{bottom:589.026667pt;}
.ye5{bottom:589.253333pt;}
.y218{bottom:589.826667pt;}
.y1e9{bottom:590.306667pt;}
.y23{bottom:594.466667pt;}
.y18{bottom:599.266667pt;}
.y16c{bottom:599.333333pt;}
.y99{bottom:600.573333pt;}
.y128{bottom:603.453333pt;}
.y154{bottom:603.933333pt;}
.yc6{bottom:604.893333pt;}
.y1a8{bottom:606.013333pt;}
.ye3{bottom:606.053333pt;}
.y48{bottom:606.493333pt;}
.y6d{bottom:608.093333pt;}
.y217{bottom:608.253333pt;}
.y1e8{bottom:608.733333pt;}
.yb2{bottom:613.213333pt;}
.y89{bottom:615.293333pt;}
.y16a{bottom:615.333333pt;}
.y127{bottom:621.853333pt;}
.y1a7{bottom:622.813333pt;}
.ye0{bottom:623.653333pt;}
.yd4{bottom:624.413333pt;}
.y216{bottom:626.653333pt;}
.y17{bottom:626.973333pt;}
.y1e7{bottom:627.133333pt;}
.y22{bottom:628.893333pt;}
.y5a{bottom:630.973333pt;}
.y153{bottom:631.453333pt;}
.y7e{bottom:634.173333pt;}
.y46{bottom:635.773333pt;}
.y1a6{bottom:639.773333pt;}
.y126{bottom:640.253333pt;}
.yb1{bottom:641.373333pt;}
.y88{bottom:642.973333pt;}
.y215{bottom:645.053333pt;}
.y1e6{bottom:645.533333pt;}
.ydf{bottom:646.853333pt;}
.y169{bottom:647.013333pt;}
.y47{bottom:649.853333pt;}
.y16{bottom:654.493333pt;}
.y1a5{bottom:656.573333pt;}
.y3{bottom:658.653333pt;}
.y152{bottom:658.973333pt;}
.yd3{bottom:661.213333pt;}
.y7d{bottom:661.693333pt;}
.y21{bottom:663.133333pt;}
.y45{bottom:663.293333pt;}
.y214{bottom:663.453333pt;}
.y1e5{bottom:663.933333pt;}
.yb0{bottom:669.693333pt;}
.y87{bottom:670.493333pt;}
.y1a4{bottom:673.373333pt;}
.y125{bottom:677.053333pt;}
.y213{bottom:681.853333pt;}
.y15{bottom:682.173333pt;}
.y1e4{bottom:682.333333pt;}
.y151{bottom:686.653333pt;}
.y7c{bottom:689.373333pt;}
.y1a3{bottom:690.333333pt;}
.y44{bottom:690.973333pt;}
.y97{bottom:692.573333pt;}
.y124{bottom:695.453333pt;}
.y20{bottom:697.373333pt;}
.yaf{bottom:697.693333pt;}
.y86{bottom:698.173333pt;}
.y212{bottom:700.253333pt;}
.y1e3{bottom:700.733333pt;}
.y1a2{bottom:707.133333pt;}
.y168{bottom:708.413333pt;}
.y14{bottom:709.693333pt;}
.y123{bottom:713.853333pt;}
.y150{bottom:714.333333pt;}
.yd1{bottom:716.413333pt;}
.y7b{bottom:716.893333pt;}
.y43{bottom:718.493333pt;}
.y211{bottom:718.653333pt;}
.y1e2{bottom:719.133333pt;}
.y1a1{bottom:724.093333pt;}
.y85{bottom:725.693333pt;}
.y2{bottom:726.173333pt;}
.y93{bottom:729.373333pt;}
.y1f{bottom:731.613333pt;}
.y121{bottom:732.253333pt;}
.y210{bottom:737.053333pt;}
.y13{bottom:737.373333pt;}
.y1e1{bottom:737.533333pt;}
.y1a0{bottom:740.893333pt;}
.y14f{bottom:742.493333pt;}
.y42{bottom:746.173333pt;}
.y120{bottom:750.653333pt;}
.y1cd{bottom:750.813333pt;}
.y84{bottom:753.373333pt;}
.y20f{bottom:755.453333pt;}
.y1e0{bottom:755.933333pt;}
.y19f{bottom:757.693333pt;}
.y7a{bottom:760.253333pt;}
.y12{bottom:764.893333pt;}
.y1e{bottom:765.853333pt;}
.y11f{bottom:769.693333pt;}
.y14e{bottom:770.813333pt;}
.y41{bottom:773.693333pt;}
.y20e{bottom:773.853333pt;}
.y1df{bottom:774.333333pt;}
.y19e{bottom:774.653333pt;}
.y1cc{bottom:778.493333pt;}
.y83{bottom:780.893333pt;}
.y1{bottom:784.413333pt;}
.y8e{bottom:784.573333pt;}
.yce{bottom:790.013333pt;}
.y19d{bottom:791.453333pt;}
.y20d{bottom:792.253333pt;}
.y11{bottom:792.573333pt;}
.y1de{bottom:792.733333pt;}
.y1cb{bottom:793.053333pt;}
.yae{bottom:796.573333pt;}
.y14d{bottom:798.653333pt;}
.y1d{bottom:800.093333pt;}
.y40{bottom:801.373333pt;}
.y11c{bottom:807.133333pt;}
.y19c{bottom:808.413333pt;}
.y82{bottom:808.573333pt;}
.y20c{bottom:810.693333pt;}
.y1dd{bottom:811.173333pt;}
.y10{bottom:820.133333pt;}
.y19b{bottom:825.253333pt;}
.y14c{bottom:826.853333pt;}
.y3f{bottom:828.933333pt;}
.y20b{bottom:829.093333pt;}
.y1dc{bottom:829.573333pt;}
.y1c{bottom:834.373333pt;}
.y81{bottom:836.133333pt;}
.y11b{bottom:841.893333pt;}
.y19a{bottom:842.053333pt;}
.y20a{bottom:847.493333pt;}
.yf{bottom:847.813333pt;}
.y1db{bottom:847.973333pt;}
.y1ca{bottom:848.933333pt;}
.y167{bottom:849.253333pt;}
.y14b{bottom:854.533333pt;}
.y3e{bottom:856.613333pt;}
.y8d{bottom:858.053333pt;}
.y199{bottom:859.013333pt;}
.ycc{bottom:863.653333pt;}
.y80{bottom:863.813333pt;}
.y209{bottom:865.893333pt;}
.y1da{bottom:866.373333pt;}
.y1c9{bottom:867.333333pt;}
.y11a{bottom:868.293333pt;}
.y1b{bottom:868.773333pt;}
.ye{bottom:875.333333pt;}
.y198{bottom:875.813333pt;}
.y8b{bottom:877.253333pt;}
.y18e{bottom:881.093333pt;}
.y14a{bottom:882.693333pt;}
.y3d{bottom:884.133333pt;}
.y208{bottom:884.293333pt;}
.y1d9{bottom:884.773333pt;}
.y1c8{bottom:885.733333pt;}
.y197{bottom:892.773333pt;}
.y119{bottom:895.813333pt;}
.y207{bottom:902.693333pt;}
.yd{bottom:903.013333pt;}
.y18d{bottom:903.173333pt;}
.y1c7{bottom:904.133333pt;}
.y7f{bottom:907.013333pt;}
.y196{bottom:909.573333pt;}
.y149{bottom:910.853333pt;}
.y3c{bottom:911.813333pt;}
.y8a{bottom:911.973333pt;}
.y206{bottom:921.093333pt;}
.y1c6{bottom:922.533333pt;}
.y118{bottom:923.333333pt;}
.y195{bottom:926.533333pt;}
.ycb{bottom:937.893333pt;}
.y148{bottom:938.853333pt;}
.y3b{bottom:939.333333pt;}
.y205{bottom:939.493333pt;}
.y1c5{bottom:940.933333pt;}
.y194{bottom:943.973333pt;}
.y117{bottom:951.013333pt;}
.y204{bottom:957.893333pt;}
.y1c4{bottom:959.973333pt;}
.y193{bottom:961.573333pt;}
.y3a{bottom:967.013333pt;}
.yca{bottom:972.613333pt;}
.y203{bottom:976.293333pt;}
.yc{bottom:994.213333pt;}
.y39{bottom:994.533333pt;}
.yc9{bottom:994.693333pt;}
.h27{height:3.840000pt;}
.h2b{height:7.520000pt;}
.h23{height:15.040000pt;}
.h26{height:15.200000pt;}
.h24{height:15.360000pt;}
.h25{height:15.392000pt;}
.h1a{height:16.800000pt;}
.h1c{height:16.832000pt;}
.h1b{height:16.960000pt;}
.h1e{height:16.992000pt;}
.h6{height:18.400000pt;}
.h22{height:18.432000pt;}
.h21{height:19.072000pt;}
.h13{height:19.200000pt;}
.h28{height:26.381250pt;}
.h29{height:30.720000pt;}
.h1f{height:33.760000pt;}
.h1d{height:33.792000pt;}
.h12{height:33.918750pt;}
.hc{height:36.800000pt;}
.he{height:36.832000pt;}
.h16{height:36.883125pt;}
.h5{height:44.437500pt;}
.h2c{height:45.920000pt;}
.h11{height:49.000000pt;}
.h10{height:49.120000pt;}
.h20{height:51.560000pt;}
.h7{height:52.108438pt;}
.h8{height:52.134375pt;}
.hf{height:52.192000pt;}
.ha{height:53.535000pt;}
.hb{height:55.200000pt;}
.h2a{height:55.232000pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h4{height:71.524375pt;}
.h9{height:73.472000pt;}
.h14{height:73.600000pt;}
.h15{height:73.632000pt;}
.hd{height:92.000000pt;}
.h17{height:110.400000pt;}
.h18{height:793.760000pt;}
.h19{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:31.680000pt;}
.w2d{width:38.240000pt;}
.w2e{width:38.272000pt;}
.w2c{width:38.400000pt;}
.w2b{width:38.432000pt;}
.w30{width:61.120000pt;}
.w31{width:61.152000pt;}
.w32{width:61.312000pt;}
.w1a{width:64.480000pt;}
.w7{width:68.800000pt;}
.w15{width:69.920000pt;}
.w16{width:69.952000pt;}
.w17{width:70.112000pt;}
.we{width:78.560000pt;}
.w11{width:78.592000pt;}
.w10{width:78.720000pt;}
.wf{width:78.752000pt;}
.w33{width:79.200000pt;}
.w9{width:82.752000pt;}
.w39{width:83.040000pt;}
.w3b{width:83.072000pt;}
.w38{width:83.200000pt;}
.w3a{width:83.232000pt;}
.w12{width:84.480000pt;}
.w26{width:84.800000pt;}
.w25{width:84.832000pt;}
.w24{width:84.960000pt;}
.w27{width:84.992000pt;}
.w20{width:86.432000pt;}
.w1c{width:88.480000pt;}
.w1b{width:88.512000pt;}
.wd{width:104.000000pt;}
.w8{width:113.472000pt;}
.w1f{width:126.560000pt;}
.w14{width:128.480000pt;}
.w34{width:138.080000pt;}
.w4{width:141.280000pt;}
.w19{width:144.826667pt;}
.w35{width:166.240000pt;}
.w37{width:166.266667pt;}
.w36{width:166.426667pt;}
.w22{width:169.626667pt;}
.w23{width:169.786667pt;}
.w21{width:169.920000pt;}
.w2f{width:181.946667pt;}
.w1d{width:209.306667pt;}
.w2{width:212.666667pt;}
.w28{width:212.986667pt;}
.w3{width:213.026667pt;}
.w2a{width:221.786667pt;}
.w3c{width:223.066667pt;}
.wa{width:301.946667pt;}
.w1e{width:563.293333pt;}
.w5{width:566.973333pt;}
.w13{width:581.826667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w3d{width:888.293333pt;}
.w29{width:892.133333pt;}
.w18{width:897.893333pt;}
.wb{width:1122.560000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1f{left:3.840000pt;}
.x1d{left:5.114667pt;}
.x15{left:7.520000pt;}
.x17{left:9.434667pt;}
.x2a{left:10.720000pt;}
.x4e{left:12.320000pt;}
.x24{left:14.080000pt;}
.x28{left:15.520000pt;}
.x54{left:16.960000pt;}
.x2b{left:18.880000pt;}
.x56{left:20.000000pt;}
.x51{left:21.120000pt;}
.x34{left:22.080000pt;}
.x36{left:24.320000pt;}
.x3a{left:25.280000pt;}
.x26{left:27.360000pt;}
.x23{left:28.634667pt;}
.x53{left:30.080000pt;}
.x2c{left:31.840000pt;}
.x27{left:33.120000pt;}
.x25{left:34.720000pt;}
.x52{left:36.480000pt;}
.x55{left:38.400000pt;}
.x29{left:41.280000pt;}
.x5d{left:43.200000pt;}
.x31{left:44.800000pt;}
.x39{left:48.480000pt;}
.x3b{left:51.200000pt;}
.x18{left:52.320000pt;}
.x7f{left:55.840000pt;}
.x64{left:57.600000pt;}
.x5b{left:63.194667pt;}
.x48{left:65.280000pt;}
.x79{left:68.954667pt;}
.x16{left:70.560000pt;}
.x62{left:71.560000pt;}
.x7c{left:75.360000pt;}
.x5f{left:77.120000pt;}
.x84{left:83.200000pt;}
.x69{left:84.960000pt;}
.x22{left:87.040000pt;}
.x57{left:88.506667pt;}
.x3c{left:112.512000pt;}
.x2f{left:113.472000pt;}
.x5a{left:117.152000pt;}
.x5{left:132.352000pt;}
.x58{left:134.586667pt;}
.x4c{left:136.026667pt;}
.x49{left:137.306667pt;}
.x1a{left:139.226667pt;}
.x2e{left:160.666667pt;}
.x6{left:179.546667pt;}
.x12{left:181.466667pt;}
.xe{left:195.546667pt;}
.x1e{left:201.146667pt;}
.x30{left:217.466667pt;}
.x6d{left:221.794667pt;}
.x59{left:230.586667pt;}
.x4a{left:233.306667pt;}
.x1b{left:235.266667pt;}
.x3d{left:240.986667pt;}
.x5c{left:243.706667pt;}
.x4{left:250.146667pt;}
.x7a{left:255.226667pt;}
.x1{left:260.226667pt;}
.x4d{left:280.866667pt;}
.x32{left:296.026667pt;}
.x6a{left:309.346667pt;}
.x3e{left:310.906667pt;}
.x20{left:314.626667pt;}
.xa{left:321.506667pt;}
.x5e{left:330.146667pt;}
.x3{left:331.426667pt;}
.x7b{left:340.226667pt;}
.x11{left:343.746667pt;}
.x13{left:345.026667pt;}
.x10{left:346.946667pt;}
.xf{left:350.946667pt;}
.x6e{left:354.146667pt;}
.x7{left:357.506667pt;}
.x85{left:361.986667pt;}
.xc{left:370.146667pt;}
.xd{left:371.746667pt;}
.x33{left:374.786667pt;}
.x3f{left:380.866667pt;}
.x4b{left:388.546667pt;}
.x6f{left:392.573333pt;}
.x21{left:397.373333pt;}
.x2{left:405.213333pt;}
.x65{left:415.106667pt;}
.x80{left:423.426667pt;}
.x70{left:430.973333pt;}
.x4f{left:433.853333pt;}
.x75{left:436.573333pt;}
.x40{left:450.786667pt;}
.x35{left:453.506667pt;}
.x71{left:469.213333pt;}
.x6b{left:484.413333pt;}
.x76{left:497.693333pt;}
.x60{left:500.066667pt;}
.x7d{left:506.466667pt;}
.x72{left:507.613333pt;}
.x41{left:520.706667pt;}
.x50{left:522.333333pt;}
.x37{left:532.093333pt;}
.x73{left:546.013333pt;}
.x14{left:558.053333pt;}
.x77{left:559.013333pt;}
.x66{left:584.893333pt;}
.x81{left:589.693333pt;}
.x42{left:590.653333pt;}
.x38{left:610.813333pt;}
.x78{left:620.133333pt;}
.x74{left:622.693333pt;}
.x6c{left:626.373333pt;}
.x43{left:660.573333pt;}
.x1c{left:667.653333pt;}
.x61{left:669.693333pt;}
.x7e{left:672.893333pt;}
.x19{left:686.053333pt;}
.xb{left:688.293333pt;}
.x9{left:691.973333pt;}
.x8{left:695.653333pt;}
.x44{left:730.493333pt;}
.x67{left:754.693333pt;}
.x82{left:755.973333pt;}
.x45{left:800.613333pt;}
.x63{left:839.493333pt;}
.x46{left:870.533333pt;}
.x83{left:922.213333pt;}
.x68{left:924.453333pt;}
.x47{left:940.480000pt;}
.x2d{left:996.000000pt;}
}




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