
    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_7749e71f15f5a5446ff6bbeb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8d8d282cfdaa99b74a730b24.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8569db8a8f3216ae5246f14d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_9421e5f45a4323ee6ec6a86f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7845c3caf75dd32c91309862.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_8dd0e91488dac598e13a8737.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bc0dde652ff27ffcf934cd0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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);}
.v1{vertical-align:-68.400000px;}
.v2{vertical-align:-66.960000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.460200px;}
.ls2{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.828000px;}
.ls20{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.589760px;}
.ls1a{letter-spacing:1.620000px;}
.lsf{letter-spacing:2.309760px;}
.ls15{letter-spacing:3.780000px;}
.lse{letter-spacing:3.929760px;}
.ls18{letter-spacing:4.500000px;}
.ls16{letter-spacing:8.820000px;}
.ls10{letter-spacing:9.509760px;}
.ls19{letter-spacing:10.260000px;}
.ls17{letter-spacing:11.700000px;}
.ls1f{letter-spacing:16.506720px;}
.ls1d{letter-spacing:46.026720px;}
.lsa{letter-spacing:55.362720px;}
.ls4{letter-spacing:64.170720px;}
.ls3{letter-spacing:201.204000px;}
.ls5{letter-spacing:201.240000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-59.760000px;}
.wsc{word-spacing:-16.020000px;}
.ws2{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.552000px;}
.ws4{word-spacing:-15.400200px;}
.ws7{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.580000px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-6.629280px;}
._f{margin-left:-2.181600px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.925600px;}
._8{width:4.123440px;}
._9{width:5.322960px;}
._d{width:6.330240px;}
._a{width:7.330320px;}
._5{width:9.297840px;}
._3{width:10.458000px;}
._4{width:12.010320px;}
._c{width:13.148640px;}
._e{width:16.164000px;}
._7{width:17.302320px;}
._6{width:18.330480px;}
._12{width:19.692720px;}
._13{width:20.823120px;}
._17{width:22.144320px;}
._15{width:24.190560px;}
._10{width:25.517520px;}
._11{width:26.642880px;}
._20{width:28.298640px;}
._23{width:31.638240px;}
._24{width:33.175920px;}
._25{width:34.493280px;}
._26{width:35.876640px;}
._27{width:37.968480px;}
._28{width:39.591840px;}
._1f{width:88.350000px;}
._1b{width:112.734480px;}
._18{width:148.060560px;}
._1e{width:149.812320px;}
._1d{width:164.131680px;}
._b{width:201.204000px;}
._1c{width:272.778960px;}
._19{width:288.278880px;}
._16{width:311.046960px;}
._21{width:427.382400px;}
._1a{width:626.702880px;}
._14{width:1316.398080px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y227{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y18a{bottom:3.240000px;}
.y10d{bottom:3.420000px;}
.y111{bottom:3.600000px;}
.y10f{bottom:3.780000px;}
.y223{bottom:3.816000px;}
.y5{bottom:4.500000px;}
.y21e{bottom:12.420000px;}
.y21a{bottom:20.700000px;}
.y21d{bottom:21.060000px;}
.y4{bottom:24.120000px;}
.y21b{bottom:37.800000px;}
.y18d{bottom:56.700000px;}
.y15d{bottom:59.580000px;}
.y70{bottom:60.120000px;}
.y109{bottom:62.280000px;}
.y1ea{bottom:65.700000px;}
.y1bc{bottom:67.140000px;}
.y254{bottom:70.560000px;}
.y26f{bottom:73.440000px;}
.y6f{bottom:73.620000px;}
.y15c{bottom:76.860000px;}
.y18c{bottom:78.480000px;}
.yb2{bottom:78.840000px;}
.y108{bottom:79.560000px;}
.y12b{bottom:80.640000px;}
.y44{bottom:80.820000px;}
.y1e9{bottom:87.480000px;}
.y253{bottom:87.840000px;}
.y1bb{bottom:88.920000px;}
.y26e{bottom:90.720000px;}
.y95{bottom:91.800000px;}
.y15b{bottom:93.960000px;}
.yb1{bottom:96.120000px;}
.y222{bottom:96.480000px;}
.y107{bottom:96.840000px;}
.y12a{bottom:97.956000px;}
.y43{bottom:98.136000px;}
.y18b{bottom:100.296000px;}
.y252{bottom:105.156000px;}
.y26d{bottom:108.036000px;}
.y94{bottom:109.116000px;}
.y1e8{bottom:109.296000px;}
.y15a{bottom:110.916000px;}
.yb0{bottom:113.436000px;}
.y106{bottom:114.156000px;}
.y129{bottom:115.236000px;}
.y42{bottom:115.416000px;}
.y221{bottom:118.296000px;}
.y189{bottom:122.076000px;}
.y251{bottom:122.436000px;}
.y26c{bottom:125.316000px;}
.y93{bottom:126.036000px;}
.y1ba{bottom:130.176000px;}
.yaf{bottom:130.716000px;}
.y1e7{bottom:131.076000px;}
.y105{bottom:131.256000px;}
.y41{bottom:132.516000px;}
.y159{bottom:132.696000px;}
.y250{bottom:139.536000px;}
.y220{bottom:140.076000px;}
.y26b{bottom:142.416000px;}
.ye2{bottom:142.956000px;}
.y92{bottom:143.496000px;}
.yae{bottom:147.816000px;}
.y104{bottom:148.536000px;}
.y128{bottom:149.616000px;}
.y40{bottom:149.796000px;}
.y158{bottom:154.470000px;}
.y1e6{bottom:155.370000px;}
.y24f{bottom:156.810000px;}
.y26a{bottom:159.690000px;}
.ye1{bottom:160.590000px;}
.y91{bottom:160.770000px;}
.y21f{bottom:161.670000px;}
.y188{bottom:163.290000px;}
.y1b9{bottom:164.730000px;}
.yad{bottom:165.090000px;}
.y103{bottom:165.810000px;}
.y127{bottom:166.890000px;}
.y3f{bottom:167.070000px;}
.y1e5{bottom:172.650000px;}
.y24e{bottom:174.090000px;}
.y157{bottom:176.250000px;}
.y269{bottom:176.970000px;}
.ye0{bottom:177.870000px;}
.y90{bottom:178.050000px;}
.y187{bottom:180.930000px;}
.yac{bottom:182.370000px;}
.y102{bottom:183.090000px;}
.y21c{bottom:183.450000px;}
.y126{bottom:184.170000px;}
.y3e{bottom:184.350000px;}
.y1e4{bottom:189.930000px;}
.y24d{bottom:191.370000px;}
.yf3{bottom:192.270000px;}
.y268{bottom:194.250000px;}
.ydf{bottom:194.610000px;}
.y8f{bottom:195.330000px;}
.y186{bottom:197.670000px;}
.y156{bottom:198.030000px;}
.yab{bottom:199.650000px;}
.y101{bottom:200.370000px;}
.y125{bottom:201.450000px;}
.y3d{bottom:201.630000px;}
.y1e3{bottom:206.670000px;}
.y24c{bottom:208.650000px;}
.yf2{bottom:209.550000px;}
.y267{bottom:211.530000px;}
.yde{bottom:212.250000px;}
.y8e{bottom:212.610000px;}
.y185{bottom:215.310000px;}
.yaa{bottom:216.930000px;}
.y100{bottom:217.470000px;}
.y3c{bottom:218.730000px;}
.y155{bottom:219.630000px;}
.y219{bottom:222.510000px;}
.ycf{bottom:224.130000px;}
.y1e2{bottom:224.310000px;}
.y24b{bottom:225.930000px;}
.yf1{bottom:226.470000px;}
.y266{bottom:228.810000px;}
.y8d{bottom:229.530000px;}
.y184{bottom:232.590000px;}
.ya9{bottom:234.030000px;}
.yff{bottom:234.750000px;}
.y3b{bottom:236.010000px;}
.yce{bottom:241.590000px;}
.y24a{bottom:243.030000px;}
.yf0{bottom:244.110000px;}
.y265{bottom:245.910000px;}
.y8c{bottom:246.630000px;}
.ydd{bottom:246.810000px;}
.y183{bottom:249.870000px;}
.ya8{bottom:251.310000px;}
.yfe{bottom:252.030000px;}
.y124{bottom:252.750000px;}
.y3a{bottom:253.290000px;}
.ycd{bottom:258.870000px;}
.y249{bottom:260.310000px;}
.y154{bottom:261.030000px;}
.yef{bottom:261.390000px;}
.y264{bottom:263.190000px;}
.ydc{bottom:264.090000px;}
.y8b{bottom:264.270000px;}
.y182{bottom:267.150000px;}
.ya7{bottom:268.590000px;}
.yfd{bottom:269.310000px;}
.y39{bottom:270.570000px;}
.y123{bottom:274.530000px;}
.ycc{bottom:275.790000px;}
.y1e1{bottom:276.150000px;}
.y248{bottom:277.230000px;}
.y153{bottom:278.490000px;}
.yee{bottom:278.670000px;}
.y263{bottom:280.110000px;}
.ydb{bottom:281.370000px;}
.y8a{bottom:281.550000px;}
.y181{bottom:284.430000px;}
.y1b8{bottom:285.510000px;}
.ya6{bottom:285.870000px;}
.yfc{bottom:286.230000px;}
.y38{bottom:287.850000px;}
.ycb{bottom:293.430000px;}
.yda{bottom:294.870000px;}
.yed{bottom:295.770000px;}
.y122{bottom:296.310000px;}
.y262{bottom:297.750000px;}
.y89{bottom:298.470000px;}
.y218{bottom:298.650000px;}
.y180{bottom:301.530000px;}
.ya5{bottom:303.150000px;}
.yfb{bottom:303.870000px;}
.y37{bottom:305.130000px;}
.y1b7{bottom:307.290000px;}
.y1e0{bottom:310.530000px;}
.yca{bottom:310.710000px;}
.y247{bottom:312.150000px;}
.yec{bottom:313.050000px;}
.y261{bottom:315.030000px;}
.y217{bottom:315.930000px;}
.y88{bottom:316.110000px;}
.y121{bottom:318.090000px;}
.y17f{bottom:318.810000px;}
.ya4{bottom:320.430000px;}
.yfa{bottom:320.970000px;}
.y36{bottom:322.230000px;}
.yeb{bottom:326.550000px;}
.y1df{bottom:327.810000px;}
.yc9{bottom:327.990000px;}
.y1b6{bottom:328.890000px;}
.y246{bottom:329.430000px;}
.y152{bottom:330.330000px;}
.y260{bottom:332.130000px;}
.y216{bottom:333.030000px;}
.y87{bottom:334.290000px;}
.y17e{bottom:335.730000px;}
.ya3{bottom:337.530000px;}
.yf9{bottom:338.250000px;}
.y35{bottom:339.510000px;}
.y120{bottom:339.870000px;}
.yc8{bottom:345.090000px;}
.y245{bottom:346.530000px;}
.y151{bottom:347.610000px;}
.y215{bottom:349.950000px;}
.y25f{bottom:350.490000px;}
.y1b5{bottom:350.670000px;}
.y86{bottom:351.570000px;}
.ya2{bottom:354.810000px;}
.yf8{bottom:355.530000px;}
.y34{bottom:356.430000px;}
.y17d{bottom:357.555000px;}
.y11f{bottom:361.515000px;}
.yc7{bottom:362.055000px;}
.y244{bottom:363.855000px;}
.y150{bottom:364.935000px;}
.y214{bottom:367.635000px;}
.y25e{bottom:367.815000px;}
.y85{bottom:369.975000px;}
.y270{bottom:371.775000px;}
.ya1{bottom:372.135000px;}
.y1b4{bottom:372.495000px;}
.yf7{bottom:372.855000px;}
.y33{bottom:374.115000px;}
.y17c{bottom:379.335000px;}
.yc6{bottom:379.695000px;}
.y243{bottom:381.135000px;}
.y14f{bottom:382.035000px;}
.y1de{bottom:383.835000px;}
.y213{bottom:384.915000px;}
.y25d{bottom:385.095000px;}
.yf6{bottom:386.355000px;}
.y84{bottom:387.255000px;}
.ya0{bottom:389.415000px;}
.y32{bottom:391.395000px;}
.y1b3{bottom:394.275000px;}
.yc5{bottom:398.055000px;}
.y242{bottom:398.415000px;}
.y14e{bottom:398.955000px;}
.y17b{bottom:400.935000px;}
.y212{bottom:402.195000px;}
.y11e{bottom:402.915000px;}
.y25c{bottom:403.455000px;}
.y1dd{bottom:405.435000px;}
.y83{bottom:405.615000px;}
.y9f{bottom:406.695000px;}
.y31{bottom:408.675000px;}
.y241{bottom:415.695000px;}
.yc4{bottom:416.055000px;}
.y211{bottom:419.475000px;}
.y11d{bottom:420.375000px;}
.y14d{bottom:420.735000px;}
.y17a{bottom:422.715000px;}
.y82{bottom:422.895000px;}
.y9e{bottom:423.975000px;}
.y30{bottom:425.775000px;}
.y1dc{bottom:427.215000px;}
.y240{bottom:432.975000px;}
.yc3{bottom:433.515000px;}
.y1b2{bottom:435.495000px;}
.y210{bottom:436.575000px;}
.y11c{bottom:437.655000px;}
.y25b{bottom:437.835000px;}
.y81{bottom:440.715000px;}
.y9d{bottom:441.075000px;}
.y14c{bottom:442.515000px;}
.y2f{bottom:443.055000px;}
.y179{bottom:444.495000px;}
.y1db{bottom:448.995000px;}
.y23f{bottom:450.075000px;}
.yc2{bottom:451.875000px;}
.y1b1{bottom:453.135000px;}
.y20f{bottom:453.495000px;}
.y6e{bottom:454.035000px;}
.y11b{bottom:454.935000px;}
.y25a{bottom:456.195000px;}
.y80{bottom:458.355000px;}
.y2e{bottom:460.335000px;}
.y14b{bottom:464.295000px;}
.y23e{bottom:467.355000px;}
.yc1{bottom:470.235000px;}
.y1b0{bottom:470.415000px;}
.y20e{bottom:471.135000px;}
.y6d{bottom:471.315000px;}
.y11a{bottom:473.115000px;}
.y259{bottom:473.475000px;}
.y7f{bottom:475.635000px;}
.y2d{bottom:477.615000px;}
.y23d{bottom:484.635000px;}
.y178{bottom:485.715000px;}
.y14a{bottom:485.895000px;}
.y1af{bottom:487.695000px;}
.y6c{bottom:488.235000px;}
.y20d{bottom:488.415000px;}
.yc0{bottom:488.595000px;}
.y1da{bottom:490.575000px;}
.y258{bottom:490.755000px;}
.y119{bottom:492.375000px;}
.y7e{bottom:492.555000px;}
.y9c{bottom:492.915000px;}
.y2c{bottom:494.895000px;}
.y23c{bottom:501.915000px;}
.y177{bottom:503.355000px;}
.y1ae{bottom:504.795000px;}
.y20c{bottom:505.695000px;}
.y6b{bottom:505.875000px;}
.ybf{bottom:506.595000px;}
.y149{bottom:507.675000px;}
.y1d9{bottom:507.855000px;}
.y257{bottom:509.115000px;}
.y7d{bottom:510.195000px;}
.y118{bottom:510.555000px;}
.y2b{bottom:511.995000px;}
.y23b{bottom:519.195000px;}
.y176{bottom:520.635000px;}
.y1ad{bottom:522.075000px;}
.y20b{bottom:522.795000px;}
.y6a{bottom:523.155000px;}
.ybe{bottom:524.235000px;}
.y1d8{bottom:525.135000px;}
.y256{bottom:526.395000px;}
.y7c{bottom:527.295000px;}
.y2a{bottom:528.915000px;}
.y117{bottom:530.715000px;}
.y148{bottom:532.155000px;}
.y23a{bottom:535.935000px;}
.y175{bottom:537.915000px;}
.y1ac{bottom:539.355000px;}
.y20a{bottom:540.075000px;}
.y69{bottom:540.255000px;}
.ybd{bottom:541.335000px;}
.y1d7{bottom:542.055000px;}
.y255{bottom:543.495000px;}
.y7b{bottom:544.215000px;}
.y9b{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.y147{bottom:548.895000px;}
.y116{bottom:549.795000px;}
.y239{bottom:553.215000px;}
.y174{bottom:555.195000px;}
.y1ab{bottom:556.275000px;}
.y209{bottom:557.355000px;}
.y68{bottom:557.535000px;}
.ybc{bottom:558.615000px;}
.y1d6{bottom:559.695000px;}
.y7a{bottom:561.855000px;}
.y28{bottom:563.835000px;}
.y146{bottom:566.535000px;}
.y115{bottom:567.075000px;}
.y238{bottom:570.855000px;}
.y173{bottom:572.295000px;}
.y208{bottom:574.275000px;}
.y67{bottom:575.895000px;}
.y1d5{bottom:576.795000px;}
.y1aa{bottom:578.055000px;}
.y79{bottom:579.135000px;}
.y27{bottom:581.115000px;}
.y145{bottom:583.815000px;}
.y114{bottom:583.995000px;}
.y237{bottom:588.135000px;}
.y172{bottom:589.575000px;}
.y1d4{bottom:594.075000px;}
.y66{bottom:594.255000px;}
.y207{bottom:596.055000px;}
.y78{bottom:596.415000px;}
.y26{bottom:598.035000px;}
.y1a9{bottom:599.835000px;}
.y144{bottom:601.995000px;}
.y236{bottom:605.415000px;}
.y113{bottom:605.775000px;}
.y171{bottom:606.855000px;}
.y1d3{bottom:611.355000px;}
.ybb{bottom:611.535000px;}
.y65{bottom:612.615000px;}
.y77{bottom:613.695000px;}
.y25{bottom:615.495000px;}
.y206{bottom:617.865000px;}
.y1a8{bottom:621.465000px;}
.y143{bottom:622.185000px;}
.y235{bottom:622.725000px;}
.y170{bottom:623.805000px;}
.y112{bottom:627.585000px;}
.yba{bottom:628.665000px;}
.y64{bottom:629.745000px;}
.y9a{bottom:630.465000px;}
.y76{bottom:630.825000px;}
.y24{bottom:632.805000px;}
.y205{bottom:639.465000px;}
.y234{bottom:639.825000px;}
.y142{bottom:641.445000px;}
.y1a7{bottom:643.245000px;}
.y16f{bottom:645.585000px;}
.yb9{bottom:645.945000px;}
.y63{bottom:648.105000px;}
.y110{bottom:649.365000px;}
.y23{bottom:650.085000px;}
.y233{bottom:657.105000px;}
.yd9{bottom:658.545000px;}
.y141{bottom:658.725000px;}
.y1d2{bottom:662.865000px;}
.y204{bottom:663.945000px;}
.yb8{bottom:664.305000px;}
.y1a6{bottom:665.025000px;}
.y62{bottom:665.385000px;}
.y16e{bottom:667.185000px;}
.y22{bottom:667.365000px;}
.y10e{bottom:670.965000px;}
.y232{bottom:674.385000px;}
.yd8{bottom:675.825000px;}
.y1d1{bottom:680.325000px;}
.y203{bottom:681.225000px;}
.yb7{bottom:681.585000px;}
.y61{bottom:682.305000px;}
.y75{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.y16d{bottom:688.965000px;}
.y1a5{bottom:689.325000px;}
.y231{bottom:691.665000px;}
.yd7{bottom:692.745000px;}
.yf5{bottom:693.105000px;}
.y1d0{bottom:697.605000px;}
.y202{bottom:698.325000px;}
.yb6{bottom:698.865000px;}
.y60{bottom:699.585000px;}
.y74{bottom:699.945000px;}
.y20{bottom:701.925000px;}
.yea{bottom:702.105000px;}
.y1a4{bottom:706.245000px;}
.y230{bottom:708.945000px;}
.yf4{bottom:710.025000px;}
.yd6{bottom:710.385000px;}
.y16c{bottom:710.745000px;}
.y140{bottom:714.525000px;}
.y1cf{bottom:714.885000px;}
.y201{bottom:715.245000px;}
.yb5{bottom:716.145000px;}
.y5f{bottom:717.225000px;}
.y1f{bottom:719.025000px;}
.ye9{bottom:719.385000px;}
.y1a3{bottom:723.885000px;}
.y22f{bottom:726.225000px;}
.yd5{bottom:727.665000px;}
.y1ce{bottom:732.165000px;}
.y16b{bottom:732.525000px;}
.y200{bottom:732.885000px;}
.yb4{bottom:733.965000px;}
.y5e{bottom:734.325000px;}
.y1e{bottom:736.305000px;}
.y1a2{bottom:741.165000px;}
.y22e{bottom:743.325000px;}
.yd4{bottom:744.945000px;}
.y1cd{bottom:749.445000px;}
.y1ff{bottom:750.165000px;}
.y5d{bottom:751.605000px;}
.y1d{bottom:753.585000px;}
.ye8{bottom:753.945000px;}
.y13f{bottom:758.085000px;}
.y1a1{bottom:758.445000px;}
.y22d{bottom:760.245000px;}
.yd3{bottom:762.045000px;}
.y1cc{bottom:766.725000px;}
.y1fe{bottom:767.445000px;}
.y10c{bottom:768.525000px;}
.y5c{bottom:768.885000px;}
.y1c{bottom:770.865000px;}
.ye7{bottom:771.045000px;}
.y16a{bottom:773.745000px;}
.y1a0{bottom:775.725000px;}
.yd2{bottom:779.325000px;}
.y13e{bottom:779.685000px;}
.y22c{bottom:782.025000px;}
.y1cb{bottom:783.825000px;}
.y1fd{bottom:784.725000px;}
.y99{bottom:785.805000px;}
.y5b{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.ye6{bottom:788.325000px;}
.y169{bottom:791.385000px;}
.y19f{bottom:792.825000px;}
.yd1{bottom:796.605000px;}
.y1ca{bottom:800.745000px;}
.y13d{bottom:801.465000px;}
.y1fc{bottom:801.825000px;}
.y5a{bottom:803.445000px;}
.y22b{bottom:803.805000px;}
.y1a{bottom:805.425000px;}
.ye5{bottom:805.605000px;}
.y168{bottom:808.665000px;}
.yd0{bottom:810.105000px;}
.y1fb{bottom:819.105000px;}
.y10b{bottom:820.365000px;}
.y59{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.ye4{bottom:822.885000px;}
.y22a{bottom:825.585000px;}
.y167{bottom:825.945000px;}
.y19e{bottom:827.025000px;}
.y1fa{bottom:836.025000px;}
.ye3{bottom:836.385000px;}
.yb3{bottom:837.465000px;}
.y58{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y13c{bottom:842.685000px;}
.y166{bottom:843.045000px;}
.y1c9{bottom:844.305000px;}
.y229{bottom:847.185000px;}
.y19d{bottom:848.805000px;}
.y57{bottom:855.105000px;}
.y17{bottom:856.725000px;}
.y1f9{bottom:857.805000px;}
.y13b{bottom:860.325000px;}
.y1c8{bottom:866.085000px;}
.y228{bottom:868.965000px;}
.y19c{bottom:870.585000px;}
.y56{bottom:872.025000px;}
.y73{bottom:872.385000px;}
.y16{bottom:874.770000px;}
.y13a{bottom:877.290000px;}
.y165{bottom:877.650000px;}
.y1f8{bottom:879.630000px;}
.y1c7{bottom:887.730000px;}
.y55{bottom:889.710000px;}
.y226{bottom:890.790000px;}
.y19b{bottom:892.230000px;}
.y15{bottom:892.410000px;}
.y164{bottom:894.570000px;}
.y139{bottom:894.930000px;}
.y1f7{bottom:901.230000px;}
.y54{bottom:906.990000px;}
.y1c6{bottom:909.510000px;}
.y14{bottom:909.690000px;}
.y138{bottom:912.210000px;}
.y225{bottom:912.570000px;}
.y19a{bottom:914.010000px;}
.y163{bottom:916.350000px;}
.y1f6{bottom:923.010000px;}
.y10a{bottom:923.730000px;}
.y53{bottom:924.090000px;}
.y13{bottom:926.790000px;}
.y137{bottom:929.490000px;}
.y224{bottom:934.350000px;}
.y199{bottom:935.790000px;}
.y162{bottom:938.130000px;}
.y52{bottom:941.370000px;}
.y12{bottom:944.070000px;}
.y136{bottom:946.590000px;}
.y1f5{bottom:947.490000px;}
.y1c5{bottom:950.730000px;}
.y98{bottom:958.290000px;}
.y51{bottom:958.650000px;}
.y161{bottom:959.730000px;}
.y11{bottom:961.350000px;}
.y135{bottom:963.870000px;}
.y1f4{bottom:964.590000px;}
.y1c4{bottom:968.370000px;}
.y50{bottom:975.930000px;}
.y198{bottom:977.010000px;}
.y10{bottom:978.630000px;}
.y134{bottom:981.150000px;}
.y160{bottom:981.510000px;}
.y1f3{bottom:981.870000px;}
.y1c3{bottom:985.650000px;}
.y4f{bottom:993.210000px;}
.y197{bottom:994.650000px;}
.yf{bottom:995.910000px;}
.y133{bottom:998.430000px;}
.y1f2{bottom:998.790000px;}
.y1c2{bottom:1002.930000px;}
.y15f{bottom:1003.290000px;}
.y4e{bottom:1010.490000px;}
.y196{bottom:1011.930000px;}
.ye{bottom:1013.190000px;}
.y132{bottom:1015.350000px;}
.y1f1{bottom:1016.430000px;}
.y1c1{bottom:1020.210000px;}
.y4d{bottom:1027.230000px;}
.y72{bottom:1027.590000px;}
.y195{bottom:1029.210000px;}
.yd{bottom:1030.290000px;}
.y1f0{bottom:1033.710000px;}
.y131{bottom:1036.950000px;}
.y1c0{bottom:1037.490000px;}
.y97{bottom:1044.510000px;}
.y4c{bottom:1044.870000px;}
.y194{bottom:1046.490000px;}
.yc{bottom:1047.570000px;}
.y1ef{bottom:1050.990000px;}
.y1bf{bottom:1054.590000px;}
.y130{bottom:1058.730000px;}
.y71{bottom:1061.790000px;}
.y4b{bottom:1062.150000px;}
.y193{bottom:1063.590000px;}
.yb{bottom:1065.570000px;}
.y1ee{bottom:1068.090000px;}
.y1be{bottom:1071.510000px;}
.y4a{bottom:1079.430000px;}
.y12f{bottom:1080.510000px;}
.y192{bottom:1080.870000px;}
.ya{bottom:1082.850000px;}
.y1ed{bottom:1085.370000px;}
.y1bd{bottom:1093.290000px;}
.y15e{bottom:1096.350000px;}
.y49{bottom:1096.710000px;}
.y191{bottom:1098.150000px;}
.y9{bottom:1100.490000px;}
.y12e{bottom:1102.290000px;}
.y1ec{bottom:1102.650000px;}
.y48{bottom:1113.990000px;}
.y190{bottom:1115.070000px;}
.y1eb{bottom:1119.930000px;}
.y8{bottom:1121.190000px;}
.y12d{bottom:1124.070000px;}
.y96{bottom:1130.730000px;}
.y47{bottom:1131.090000px;}
.y18f{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y46{bottom:1148.400000px;}
.y18e{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.y12c{bottom:1165.320000px;}
.y45{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.hb{height:17.100000px;}
.hd{height:17.136000px;}
.ha{height:17.280000px;}
.hc{height:17.316000px;}
.hf{height:34.560000px;}
.h7{height:41.726953px;}
.he{height:51.660000px;}
.h9{height:52.998047px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w37{width:76.500000px;}
.w27{width:77.040000px;}
.wa{width:80.280000px;}
.w23{width:81.216000px;}
.w1e{width:88.200000px;}
.w4{width:88.416000px;}
.w5{width:89.820000px;}
.w36{width:92.196000px;}
.w19{width:94.320000px;}
.w6{width:97.416000px;}
.w32{width:99.576000px;}
.w30{width:100.656000px;}
.wf{width:103.320000px;}
.w10{width:105.156000px;}
.w26{width:107.136000px;}
.wb{width:108.576000px;}
.w7{width:111.636000px;}
.w33{width:112.356000px;}
.w11{width:113.796000px;}
.w38{width:115.236000px;}
.wc{width:117.936000px;}
.w1f{width:118.836000px;}
.w14{width:120.420000px;}
.w3{width:120.600000px;}
.w15{width:122.436000px;}
.w1a{width:127.296000px;}
.w20{width:128.736000px;}
.w16{width:132.876000px;}
.w22{width:135.360000px;}
.w35{width:135.540000px;}
.w1b{width:138.276000px;}
.we{width:141.156000px;}
.w31{width:142.200000px;}
.w2f{width:142.416000px;}
.w9{width:146.016000px;}
.w24{width:162.030000px;}
.w13{width:164.550000px;}
.w18{width:171.030000px;}
.w2d{width:175.710000px;}
.w2e{width:179.130000px;}
.w1d{width:211.170000px;}
.w28{width:214.275000px;}
.w1c{width:231.555000px;}
.w2a{width:233.490000px;}
.w12{width:238.395000px;}
.w17{width:247.755000px;}
.w34{width:257.115000px;}
.w2c{width:265.935000px;}
.w2{width:268.635000px;}
.wd{width:314.895000px;}
.w8{width:325.515000px;}
.w2b{width:341.175000px;}
.w25{width:381.855000px;}
.w21{width:402.045000px;}
.w29{width:488.985000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x86{left:1.440000px;}
.x87{left:3.240000px;}
.x83{left:11.025000px;}
.x6a{left:13.140000px;}
.x61{left:15.120000px;}
.x89{left:16.410000px;}
.x68{left:17.670000px;}
.x8d{left:18.720000px;}
.x85{left:20.340000px;}
.x6d{left:21.600000px;}
.x81{left:23.040000px;}
.x5f{left:24.480000px;}
.x80{left:25.560000px;}
.x8e{left:26.640000px;}
.x63{left:29.160000px;}
.x2a{left:30.420000px;}
.x1d{left:31.500000px;}
.x7f{left:33.480000px;}
.x1b{left:34.590000px;}
.x49{left:37.440000px;}
.x26{left:38.880000px;}
.x54{left:40.140000px;}
.x19{left:41.760000px;}
.x5a{left:43.200000px;}
.x23{left:44.640000px;}
.x52{left:45.945000px;}
.x22{left:46.980000px;}
.x20{left:50.400000px;}
.x40{left:51.660000px;}
.x16{left:52.920000px;}
.x5{left:54.000000px;}
.x4d{left:55.980000px;}
.x37{left:57.420000px;}
.x84{left:59.076000px;}
.x70{left:60.516000px;}
.x5b{left:61.740000px;}
.x2e{left:63.540000px;}
.x47{left:67.320000px;}
.x42{left:69.120000px;}
.x64{left:70.596000px;}
.x4c{left:72.540000px;}
.x59{left:78.120000px;}
.xc{left:81.000000px;}
.x72{left:84.240000px;}
.x56{left:88.596000px;}
.x57{left:89.856000px;}
.x21{left:92.016000px;}
.x44{left:93.276000px;}
.x6e{left:95.445000px;}
.x3b{left:96.696000px;}
.x4e{left:97.950000px;}
.x55{left:99.030000px;}
.x41{left:101.190000px;}
.x43{left:102.450000px;}
.x75{left:103.545000px;}
.x6f{left:104.610000px;}
.x25{left:106.770000px;}
.xd{left:108.036000px;}
.x17{left:111.810000px;}
.x78{left:113.970000px;}
.x36{left:115.050000px;}
.x24{left:117.570000px;}
.x2d{left:120.270000px;}
.x6c{left:121.710000px;}
.x39{left:130.170000px;}
.x3a{left:131.430000px;}
.x38{left:133.950000px;}
.x10{left:135.036000px;}
.x30{left:136.830000px;}
.x27{left:140.070000px;}
.x7a{left:142.590000px;}
.x76{left:143.850000px;}
.x2f{left:146.010000px;}
.x77{left:158.250000px;}
.x66{left:162.930000px;}
.x5d{left:173.010000px;}
.x74{left:175.350000px;}
.xb{left:187.410000px;}
.x6{left:215.850000px;}
.x8{left:230.250000px;}
.x7d{left:234.210000px;}
.xf{left:242.490000px;}
.x3{left:261.210000px;}
.x14{left:266.610000px;}
.x15{left:268.590000px;}
.x13{left:283.575000px;}
.x4f{left:286.635000px;}
.x1{left:291.855000px;}
.x3c{left:293.475000px;}
.x45{left:294.915000px;}
.x71{left:297.435000px;}
.x12{left:299.415000px;}
.x2{left:300.675000px;}
.x46{left:302.835000px;}
.x5c{left:309.135000px;}
.x88{left:312.375000px;}
.x7{left:320.115000px;}
.x18{left:323.895000px;}
.x79{left:330.735000px;}
.x65{left:346.575000px;}
.x58{left:362.775000px;}
.x32{left:369.975000px;}
.x7e{left:378.795000px;}
.x28{left:380.595000px;}
.x7b{left:396.435000px;}
.x67{left:437.115000px;}
.x1a{left:446.655000px;}
.xa{left:449.535000px;}
.x9{left:454.065000px;}
.x5e{left:457.305000px;}
.x3d{left:460.185000px;}
.x48{left:476.205000px;}
.x82{left:481.605000px;}
.x50{left:499.965000px;}
.x33{left:513.465000px;}
.x29{left:528.945000px;}
.x1c{left:537.225000px;}
.x69{left:546.585000px;}
.x8a{left:551.805000px;}
.x4a{left:572.685000px;}
.x73{left:575.565000px;}
.x3e{left:582.945000px;}
.x51{left:590.325000px;}
.x60{left:594.825000px;}
.x2b{left:611.565000px;}
.x34{left:618.945000px;}
.x6b{left:625.965000px;}
.x1e{left:629.205000px;}
.x8b{left:646.350000px;}
.x7c{left:664.530000px;}
.x62{left:678.390000px;}
.x4b{left:702.150000px;}
.x3f{left:707.550000px;}
.x53{left:711.510000px;}
.x2c{left:722.490000px;}
.x8c{left:725.190000px;}
.x35{left:726.450000px;}
.x1f{left:728.790000px;}
.xe{left:733.470000px;}
.x11{left:797.550000px;}
.x31{left:821.160000px;}
.x4{left:830.160000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v2{vertical-align:-59.520000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.409067pt;}
.ls2{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.736000pt;}
.ls20{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.413120pt;}
.ls1a{letter-spacing:1.440000pt;}
.lsf{letter-spacing:2.053120pt;}
.ls15{letter-spacing:3.360000pt;}
.lse{letter-spacing:3.493120pt;}
.ls18{letter-spacing:4.000000pt;}
.ls16{letter-spacing:7.840000pt;}
.ls10{letter-spacing:8.453120pt;}
.ls19{letter-spacing:9.120000pt;}
.ls17{letter-spacing:10.400000pt;}
.ls1f{letter-spacing:14.672640pt;}
.ls1d{letter-spacing:40.912640pt;}
.lsa{letter-spacing:49.211307pt;}
.ls4{letter-spacing:57.040640pt;}
.ls3{letter-spacing:178.848000pt;}
.ls5{letter-spacing:178.880000pt;}
.ws3{word-spacing:-53.120000pt;}
.wsc{word-spacing:-14.240000pt;}
.ws2{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.824000pt;}
.ws4{word-spacing:-13.689067pt;}
.ws7{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-5.892693pt;}
._f{margin-left:-1.939200pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.600533pt;}
._8{width:3.665280pt;}
._9{width:4.731520pt;}
._d{width:5.626880pt;}
._a{width:6.515840pt;}
._5{width:8.264747pt;}
._3{width:9.296000pt;}
._4{width:10.675840pt;}
._c{width:11.687680pt;}
._e{width:14.368000pt;}
._7{width:15.379840pt;}
._6{width:16.293760pt;}
._12{width:17.504640pt;}
._13{width:18.509440pt;}
._17{width:19.683840pt;}
._15{width:21.502720pt;}
._10{width:22.682240pt;}
._11{width:23.682560pt;}
._20{width:25.154347pt;}
._23{width:28.122880pt;}
._24{width:29.489707pt;}
._25{width:30.660693pt;}
._26{width:31.890347pt;}
._27{width:33.749760pt;}
._28{width:35.192747pt;}
._1f{width:78.533333pt;}
._1b{width:100.208427pt;}
._18{width:131.609387pt;}
._1e{width:133.166507pt;}
._1d{width:145.894827pt;}
._b{width:178.848000pt;}
._1c{width:242.470187pt;}
._19{width:256.247893pt;}
._16{width:276.486187pt;}
._21{width:379.895467pt;}
._1a{width:557.069227pt;}
._14{width:1170.131627pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y227{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y18a{bottom:2.880000pt;}
.y10d{bottom:3.040000pt;}
.y111{bottom:3.200000pt;}
.y10f{bottom:3.360000pt;}
.y223{bottom:3.392000pt;}
.y5{bottom:4.000000pt;}
.y21e{bottom:11.040000pt;}
.y21a{bottom:18.400000pt;}
.y21d{bottom:18.720000pt;}
.y4{bottom:21.440000pt;}
.y21b{bottom:33.600000pt;}
.y18d{bottom:50.400000pt;}
.y15d{bottom:52.960000pt;}
.y70{bottom:53.440000pt;}
.y109{bottom:55.360000pt;}
.y1ea{bottom:58.400000pt;}
.y1bc{bottom:59.680000pt;}
.y254{bottom:62.720000pt;}
.y26f{bottom:65.280000pt;}
.y6f{bottom:65.440000pt;}
.y15c{bottom:68.320000pt;}
.y18c{bottom:69.760000pt;}
.yb2{bottom:70.080000pt;}
.y108{bottom:70.720000pt;}
.y12b{bottom:71.680000pt;}
.y44{bottom:71.840000pt;}
.y1e9{bottom:77.760000pt;}
.y253{bottom:78.080000pt;}
.y1bb{bottom:79.040000pt;}
.y26e{bottom:80.640000pt;}
.y95{bottom:81.600000pt;}
.y15b{bottom:83.520000pt;}
.yb1{bottom:85.440000pt;}
.y222{bottom:85.760000pt;}
.y107{bottom:86.080000pt;}
.y12a{bottom:87.072000pt;}
.y43{bottom:87.232000pt;}
.y18b{bottom:89.152000pt;}
.y252{bottom:93.472000pt;}
.y26d{bottom:96.032000pt;}
.y94{bottom:96.992000pt;}
.y1e8{bottom:97.152000pt;}
.y15a{bottom:98.592000pt;}
.yb0{bottom:100.832000pt;}
.y106{bottom:101.472000pt;}
.y129{bottom:102.432000pt;}
.y42{bottom:102.592000pt;}
.y221{bottom:105.152000pt;}
.y189{bottom:108.512000pt;}
.y251{bottom:108.832000pt;}
.y26c{bottom:111.392000pt;}
.y93{bottom:112.032000pt;}
.y1ba{bottom:115.712000pt;}
.yaf{bottom:116.192000pt;}
.y1e7{bottom:116.512000pt;}
.y105{bottom:116.672000pt;}
.y41{bottom:117.792000pt;}
.y159{bottom:117.952000pt;}
.y250{bottom:124.032000pt;}
.y220{bottom:124.512000pt;}
.y26b{bottom:126.592000pt;}
.ye2{bottom:127.072000pt;}
.y92{bottom:127.552000pt;}
.yae{bottom:131.392000pt;}
.y104{bottom:132.032000pt;}
.y128{bottom:132.992000pt;}
.y40{bottom:133.152000pt;}
.y158{bottom:137.306667pt;}
.y1e6{bottom:138.106667pt;}
.y24f{bottom:139.386667pt;}
.y26a{bottom:141.946667pt;}
.ye1{bottom:142.746667pt;}
.y91{bottom:142.906667pt;}
.y21f{bottom:143.706667pt;}
.y188{bottom:145.146667pt;}
.y1b9{bottom:146.426667pt;}
.yad{bottom:146.746667pt;}
.y103{bottom:147.386667pt;}
.y127{bottom:148.346667pt;}
.y3f{bottom:148.506667pt;}
.y1e5{bottom:153.466667pt;}
.y24e{bottom:154.746667pt;}
.y157{bottom:156.666667pt;}
.y269{bottom:157.306667pt;}
.ye0{bottom:158.106667pt;}
.y90{bottom:158.266667pt;}
.y187{bottom:160.826667pt;}
.yac{bottom:162.106667pt;}
.y102{bottom:162.746667pt;}
.y21c{bottom:163.066667pt;}
.y126{bottom:163.706667pt;}
.y3e{bottom:163.866667pt;}
.y1e4{bottom:168.826667pt;}
.y24d{bottom:170.106667pt;}
.yf3{bottom:170.906667pt;}
.y268{bottom:172.666667pt;}
.ydf{bottom:172.986667pt;}
.y8f{bottom:173.626667pt;}
.y186{bottom:175.706667pt;}
.y156{bottom:176.026667pt;}
.yab{bottom:177.466667pt;}
.y101{bottom:178.106667pt;}
.y125{bottom:179.066667pt;}
.y3d{bottom:179.226667pt;}
.y1e3{bottom:183.706667pt;}
.y24c{bottom:185.466667pt;}
.yf2{bottom:186.266667pt;}
.y267{bottom:188.026667pt;}
.yde{bottom:188.666667pt;}
.y8e{bottom:188.986667pt;}
.y185{bottom:191.386667pt;}
.yaa{bottom:192.826667pt;}
.y100{bottom:193.306667pt;}
.y3c{bottom:194.426667pt;}
.y155{bottom:195.226667pt;}
.y219{bottom:197.786667pt;}
.ycf{bottom:199.226667pt;}
.y1e2{bottom:199.386667pt;}
.y24b{bottom:200.826667pt;}
.yf1{bottom:201.306667pt;}
.y266{bottom:203.386667pt;}
.y8d{bottom:204.026667pt;}
.y184{bottom:206.746667pt;}
.ya9{bottom:208.026667pt;}
.yff{bottom:208.666667pt;}
.y3b{bottom:209.786667pt;}
.yce{bottom:214.746667pt;}
.y24a{bottom:216.026667pt;}
.yf0{bottom:216.986667pt;}
.y265{bottom:218.586667pt;}
.y8c{bottom:219.226667pt;}
.ydd{bottom:219.386667pt;}
.y183{bottom:222.106667pt;}
.ya8{bottom:223.386667pt;}
.yfe{bottom:224.026667pt;}
.y124{bottom:224.666667pt;}
.y3a{bottom:225.146667pt;}
.ycd{bottom:230.106667pt;}
.y249{bottom:231.386667pt;}
.y154{bottom:232.026667pt;}
.yef{bottom:232.346667pt;}
.y264{bottom:233.946667pt;}
.ydc{bottom:234.746667pt;}
.y8b{bottom:234.906667pt;}
.y182{bottom:237.466667pt;}
.ya7{bottom:238.746667pt;}
.yfd{bottom:239.386667pt;}
.y39{bottom:240.506667pt;}
.y123{bottom:244.026667pt;}
.ycc{bottom:245.146667pt;}
.y1e1{bottom:245.466667pt;}
.y248{bottom:246.426667pt;}
.y153{bottom:247.546667pt;}
.yee{bottom:247.706667pt;}
.y263{bottom:248.986667pt;}
.ydb{bottom:250.106667pt;}
.y8a{bottom:250.266667pt;}
.y181{bottom:252.826667pt;}
.y1b8{bottom:253.786667pt;}
.ya6{bottom:254.106667pt;}
.yfc{bottom:254.426667pt;}
.y38{bottom:255.866667pt;}
.ycb{bottom:260.826667pt;}
.yda{bottom:262.106667pt;}
.yed{bottom:262.906667pt;}
.y122{bottom:263.386667pt;}
.y262{bottom:264.666667pt;}
.y89{bottom:265.306667pt;}
.y218{bottom:265.466667pt;}
.y180{bottom:268.026667pt;}
.ya5{bottom:269.466667pt;}
.yfb{bottom:270.106667pt;}
.y37{bottom:271.226667pt;}
.y1b7{bottom:273.146667pt;}
.y1e0{bottom:276.026667pt;}
.yca{bottom:276.186667pt;}
.y247{bottom:277.466667pt;}
.yec{bottom:278.266667pt;}
.y261{bottom:280.026667pt;}
.y217{bottom:280.826667pt;}
.y88{bottom:280.986667pt;}
.y121{bottom:282.746667pt;}
.y17f{bottom:283.386667pt;}
.ya4{bottom:284.826667pt;}
.yfa{bottom:285.306667pt;}
.y36{bottom:286.426667pt;}
.yeb{bottom:290.266667pt;}
.y1df{bottom:291.386667pt;}
.yc9{bottom:291.546667pt;}
.y1b6{bottom:292.346667pt;}
.y246{bottom:292.826667pt;}
.y152{bottom:293.626667pt;}
.y260{bottom:295.226667pt;}
.y216{bottom:296.026667pt;}
.y87{bottom:297.146667pt;}
.y17e{bottom:298.426667pt;}
.ya3{bottom:300.026667pt;}
.yf9{bottom:300.666667pt;}
.y35{bottom:301.786667pt;}
.y120{bottom:302.106667pt;}
.yc8{bottom:306.746667pt;}
.y245{bottom:308.026667pt;}
.y151{bottom:308.986667pt;}
.y215{bottom:311.066667pt;}
.y25f{bottom:311.546667pt;}
.y1b5{bottom:311.706667pt;}
.y86{bottom:312.506667pt;}
.ya2{bottom:315.386667pt;}
.yf8{bottom:316.026667pt;}
.y34{bottom:316.826667pt;}
.y17d{bottom:317.826667pt;}
.y11f{bottom:321.346667pt;}
.yc7{bottom:321.826667pt;}
.y244{bottom:323.426667pt;}
.y150{bottom:324.386667pt;}
.y214{bottom:326.786667pt;}
.y25e{bottom:326.946667pt;}
.y85{bottom:328.866667pt;}
.y270{bottom:330.466667pt;}
.ya1{bottom:330.786667pt;}
.y1b4{bottom:331.106667pt;}
.yf7{bottom:331.426667pt;}
.y33{bottom:332.546667pt;}
.y17c{bottom:337.186667pt;}
.yc6{bottom:337.506667pt;}
.y243{bottom:338.786667pt;}
.y14f{bottom:339.586667pt;}
.y1de{bottom:341.186667pt;}
.y213{bottom:342.146667pt;}
.y25d{bottom:342.306667pt;}
.yf6{bottom:343.426667pt;}
.y84{bottom:344.226667pt;}
.ya0{bottom:346.146667pt;}
.y32{bottom:347.906667pt;}
.y1b3{bottom:350.466667pt;}
.yc5{bottom:353.826667pt;}
.y242{bottom:354.146667pt;}
.y14e{bottom:354.626667pt;}
.y17b{bottom:356.386667pt;}
.y212{bottom:357.506667pt;}
.y11e{bottom:358.146667pt;}
.y25c{bottom:358.626667pt;}
.y1dd{bottom:360.386667pt;}
.y83{bottom:360.546667pt;}
.y9f{bottom:361.506667pt;}
.y31{bottom:363.266667pt;}
.y241{bottom:369.506667pt;}
.yc4{bottom:369.826667pt;}
.y211{bottom:372.866667pt;}
.y11d{bottom:373.666667pt;}
.y14d{bottom:373.986667pt;}
.y17a{bottom:375.746667pt;}
.y82{bottom:375.906667pt;}
.y9e{bottom:376.866667pt;}
.y30{bottom:378.466667pt;}
.y1dc{bottom:379.746667pt;}
.y240{bottom:384.866667pt;}
.yc3{bottom:385.346667pt;}
.y1b2{bottom:387.106667pt;}
.y210{bottom:388.066667pt;}
.y11c{bottom:389.026667pt;}
.y25b{bottom:389.186667pt;}
.y81{bottom:391.746667pt;}
.y9d{bottom:392.066667pt;}
.y14c{bottom:393.346667pt;}
.y2f{bottom:393.826667pt;}
.y179{bottom:395.106667pt;}
.y1db{bottom:399.106667pt;}
.y23f{bottom:400.066667pt;}
.yc2{bottom:401.666667pt;}
.y1b1{bottom:402.786667pt;}
.y20f{bottom:403.106667pt;}
.y6e{bottom:403.586667pt;}
.y11b{bottom:404.386667pt;}
.y25a{bottom:405.506667pt;}
.y80{bottom:407.426667pt;}
.y2e{bottom:409.186667pt;}
.y14b{bottom:412.706667pt;}
.y23e{bottom:415.426667pt;}
.yc1{bottom:417.986667pt;}
.y1b0{bottom:418.146667pt;}
.y20e{bottom:418.786667pt;}
.y6d{bottom:418.946667pt;}
.y11a{bottom:420.546667pt;}
.y259{bottom:420.866667pt;}
.y7f{bottom:422.786667pt;}
.y2d{bottom:424.546667pt;}
.y23d{bottom:430.786667pt;}
.y178{bottom:431.746667pt;}
.y14a{bottom:431.906667pt;}
.y1af{bottom:433.506667pt;}
.y6c{bottom:433.986667pt;}
.y20d{bottom:434.146667pt;}
.yc0{bottom:434.306667pt;}
.y1da{bottom:436.066667pt;}
.y258{bottom:436.226667pt;}
.y119{bottom:437.666667pt;}
.y7e{bottom:437.826667pt;}
.y9c{bottom:438.146667pt;}
.y2c{bottom:439.906667pt;}
.y23c{bottom:446.146667pt;}
.y177{bottom:447.426667pt;}
.y1ae{bottom:448.706667pt;}
.y20c{bottom:449.506667pt;}
.y6b{bottom:449.666667pt;}
.ybf{bottom:450.306667pt;}
.y149{bottom:451.266667pt;}
.y1d9{bottom:451.426667pt;}
.y257{bottom:452.546667pt;}
.y7d{bottom:453.506667pt;}
.y118{bottom:453.826667pt;}
.y2b{bottom:455.106667pt;}
.y23b{bottom:461.506667pt;}
.y176{bottom:462.786667pt;}
.y1ad{bottom:464.066667pt;}
.y20b{bottom:464.706667pt;}
.y6a{bottom:465.026667pt;}
.ybe{bottom:465.986667pt;}
.y1d8{bottom:466.786667pt;}
.y256{bottom:467.906667pt;}
.y7c{bottom:468.706667pt;}
.y2a{bottom:470.146667pt;}
.y117{bottom:471.746667pt;}
.y148{bottom:473.026667pt;}
.y23a{bottom:476.386667pt;}
.y175{bottom:478.146667pt;}
.y1ac{bottom:479.426667pt;}
.y20a{bottom:480.066667pt;}
.y69{bottom:480.226667pt;}
.ybd{bottom:481.186667pt;}
.y1d7{bottom:481.826667pt;}
.y255{bottom:483.106667pt;}
.y7b{bottom:483.746667pt;}
.y9b{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.y147{bottom:487.906667pt;}
.y116{bottom:488.706667pt;}
.y239{bottom:491.746667pt;}
.y174{bottom:493.506667pt;}
.y1ab{bottom:494.466667pt;}
.y209{bottom:495.426667pt;}
.y68{bottom:495.586667pt;}
.ybc{bottom:496.546667pt;}
.y1d6{bottom:497.506667pt;}
.y7a{bottom:499.426667pt;}
.y28{bottom:501.186667pt;}
.y146{bottom:503.586667pt;}
.y115{bottom:504.066667pt;}
.y238{bottom:507.426667pt;}
.y173{bottom:508.706667pt;}
.y208{bottom:510.466667pt;}
.y67{bottom:511.906667pt;}
.y1d5{bottom:512.706667pt;}
.y1aa{bottom:513.826667pt;}
.y79{bottom:514.786667pt;}
.y27{bottom:516.546667pt;}
.y145{bottom:518.946667pt;}
.y114{bottom:519.106667pt;}
.y237{bottom:522.786667pt;}
.y172{bottom:524.066667pt;}
.y1d4{bottom:528.066667pt;}
.y66{bottom:528.226667pt;}
.y207{bottom:529.826667pt;}
.y78{bottom:530.146667pt;}
.y26{bottom:531.586667pt;}
.y1a9{bottom:533.186667pt;}
.y144{bottom:535.106667pt;}
.y236{bottom:538.146667pt;}
.y113{bottom:538.466667pt;}
.y171{bottom:539.426667pt;}
.y1d3{bottom:543.426667pt;}
.ybb{bottom:543.586667pt;}
.y65{bottom:544.546667pt;}
.y77{bottom:545.506667pt;}
.y25{bottom:547.106667pt;}
.y206{bottom:549.213333pt;}
.y1a8{bottom:552.413333pt;}
.y143{bottom:553.053333pt;}
.y235{bottom:553.533333pt;}
.y170{bottom:554.493333pt;}
.y112{bottom:557.853333pt;}
.yba{bottom:558.813333pt;}
.y64{bottom:559.773333pt;}
.y9a{bottom:560.413333pt;}
.y76{bottom:560.733333pt;}
.y24{bottom:562.493333pt;}
.y205{bottom:568.413333pt;}
.y234{bottom:568.733333pt;}
.y142{bottom:570.173333pt;}
.y1a7{bottom:571.773333pt;}
.y16f{bottom:573.853333pt;}
.yb9{bottom:574.173333pt;}
.y63{bottom:576.093333pt;}
.y110{bottom:577.213333pt;}
.y23{bottom:577.853333pt;}
.y233{bottom:584.093333pt;}
.yd9{bottom:585.373333pt;}
.y141{bottom:585.533333pt;}
.y1d2{bottom:589.213333pt;}
.y204{bottom:590.173333pt;}
.yb8{bottom:590.493333pt;}
.y1a6{bottom:591.133333pt;}
.y62{bottom:591.453333pt;}
.y16e{bottom:593.053333pt;}
.y22{bottom:593.213333pt;}
.y10e{bottom:596.413333pt;}
.y232{bottom:599.453333pt;}
.yd8{bottom:600.733333pt;}
.y1d1{bottom:604.733333pt;}
.y203{bottom:605.533333pt;}
.yb7{bottom:605.853333pt;}
.y61{bottom:606.493333pt;}
.y75{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.y16d{bottom:612.413333pt;}
.y1a5{bottom:612.733333pt;}
.y231{bottom:614.813333pt;}
.yd7{bottom:615.773333pt;}
.yf5{bottom:616.093333pt;}
.y1d0{bottom:620.093333pt;}
.y202{bottom:620.733333pt;}
.yb6{bottom:621.213333pt;}
.y60{bottom:621.853333pt;}
.y74{bottom:622.173333pt;}
.y20{bottom:623.933333pt;}
.yea{bottom:624.093333pt;}
.y1a4{bottom:627.773333pt;}
.y230{bottom:630.173333pt;}
.yf4{bottom:631.133333pt;}
.yd6{bottom:631.453333pt;}
.y16c{bottom:631.773333pt;}
.y140{bottom:635.133333pt;}
.y1cf{bottom:635.453333pt;}
.y201{bottom:635.773333pt;}
.yb5{bottom:636.573333pt;}
.y5f{bottom:637.533333pt;}
.y1f{bottom:639.133333pt;}
.ye9{bottom:639.453333pt;}
.y1a3{bottom:643.453333pt;}
.y22f{bottom:645.533333pt;}
.yd5{bottom:646.813333pt;}
.y1ce{bottom:650.813333pt;}
.y16b{bottom:651.133333pt;}
.y200{bottom:651.453333pt;}
.yb4{bottom:652.413333pt;}
.y5e{bottom:652.733333pt;}
.y1e{bottom:654.493333pt;}
.y1a2{bottom:658.813333pt;}
.y22e{bottom:660.733333pt;}
.yd4{bottom:662.173333pt;}
.y1cd{bottom:666.173333pt;}
.y1ff{bottom:666.813333pt;}
.y5d{bottom:668.093333pt;}
.y1d{bottom:669.853333pt;}
.ye8{bottom:670.173333pt;}
.y13f{bottom:673.853333pt;}
.y1a1{bottom:674.173333pt;}
.y22d{bottom:675.773333pt;}
.yd3{bottom:677.373333pt;}
.y1cc{bottom:681.533333pt;}
.y1fe{bottom:682.173333pt;}
.y10c{bottom:683.133333pt;}
.y5c{bottom:683.453333pt;}
.y1c{bottom:685.213333pt;}
.ye7{bottom:685.373333pt;}
.y16a{bottom:687.773333pt;}
.y1a0{bottom:689.533333pt;}
.yd2{bottom:692.733333pt;}
.y13e{bottom:693.053333pt;}
.y22c{bottom:695.133333pt;}
.y1cb{bottom:696.733333pt;}
.y1fd{bottom:697.533333pt;}
.y99{bottom:698.493333pt;}
.y5b{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.ye6{bottom:700.733333pt;}
.y169{bottom:703.453333pt;}
.y19f{bottom:704.733333pt;}
.yd1{bottom:708.093333pt;}
.y1ca{bottom:711.773333pt;}
.y13d{bottom:712.413333pt;}
.y1fc{bottom:712.733333pt;}
.y5a{bottom:714.173333pt;}
.y22b{bottom:714.493333pt;}
.y1a{bottom:715.933333pt;}
.ye5{bottom:716.093333pt;}
.y168{bottom:718.813333pt;}
.yd0{bottom:720.093333pt;}
.y1fb{bottom:728.093333pt;}
.y10b{bottom:729.213333pt;}
.y59{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.ye4{bottom:731.453333pt;}
.y22a{bottom:733.853333pt;}
.y167{bottom:734.173333pt;}
.y19e{bottom:735.133333pt;}
.y1fa{bottom:743.133333pt;}
.ye3{bottom:743.453333pt;}
.yb3{bottom:744.413333pt;}
.y58{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y13c{bottom:749.053333pt;}
.y166{bottom:749.373333pt;}
.y1c9{bottom:750.493333pt;}
.y229{bottom:753.053333pt;}
.y19d{bottom:754.493333pt;}
.y57{bottom:760.093333pt;}
.y17{bottom:761.533333pt;}
.y1f9{bottom:762.493333pt;}
.y13b{bottom:764.733333pt;}
.y1c8{bottom:769.853333pt;}
.y228{bottom:772.413333pt;}
.y19c{bottom:773.853333pt;}
.y56{bottom:775.133333pt;}
.y73{bottom:775.453333pt;}
.y16{bottom:777.573333pt;}
.y13a{bottom:779.813333pt;}
.y165{bottom:780.133333pt;}
.y1f8{bottom:781.893333pt;}
.y1c7{bottom:789.093333pt;}
.y55{bottom:790.853333pt;}
.y226{bottom:791.813333pt;}
.y19b{bottom:793.093333pt;}
.y15{bottom:793.253333pt;}
.y164{bottom:795.173333pt;}
.y139{bottom:795.493333pt;}
.y1f7{bottom:801.093333pt;}
.y54{bottom:806.213333pt;}
.y1c6{bottom:808.453333pt;}
.y14{bottom:808.613333pt;}
.y138{bottom:810.853333pt;}
.y225{bottom:811.173333pt;}
.y19a{bottom:812.453333pt;}
.y163{bottom:814.533333pt;}
.y1f6{bottom:820.453333pt;}
.y10a{bottom:821.093333pt;}
.y53{bottom:821.413333pt;}
.y13{bottom:823.813333pt;}
.y137{bottom:826.213333pt;}
.y224{bottom:830.533333pt;}
.y199{bottom:831.813333pt;}
.y162{bottom:833.893333pt;}
.y52{bottom:836.773333pt;}
.y12{bottom:839.173333pt;}
.y136{bottom:841.413333pt;}
.y1f5{bottom:842.213333pt;}
.y1c5{bottom:845.093333pt;}
.y98{bottom:851.813333pt;}
.y51{bottom:852.133333pt;}
.y161{bottom:853.093333pt;}
.y11{bottom:854.533333pt;}
.y135{bottom:856.773333pt;}
.y1f4{bottom:857.413333pt;}
.y1c4{bottom:860.773333pt;}
.y50{bottom:867.493333pt;}
.y198{bottom:868.453333pt;}
.y10{bottom:869.893333pt;}
.y134{bottom:872.133333pt;}
.y160{bottom:872.453333pt;}
.y1f3{bottom:872.773333pt;}
.y1c3{bottom:876.133333pt;}
.y4f{bottom:882.853333pt;}
.y197{bottom:884.133333pt;}
.yf{bottom:885.253333pt;}
.y133{bottom:887.493333pt;}
.y1f2{bottom:887.813333pt;}
.y1c2{bottom:891.493333pt;}
.y15f{bottom:891.813333pt;}
.y4e{bottom:898.213333pt;}
.y196{bottom:899.493333pt;}
.ye{bottom:900.613333pt;}
.y132{bottom:902.533333pt;}
.y1f1{bottom:903.493333pt;}
.y1c1{bottom:906.853333pt;}
.y4d{bottom:913.093333pt;}
.y72{bottom:913.413333pt;}
.y195{bottom:914.853333pt;}
.yd{bottom:915.813333pt;}
.y1f0{bottom:918.853333pt;}
.y131{bottom:921.733333pt;}
.y1c0{bottom:922.213333pt;}
.y97{bottom:928.453333pt;}
.y4c{bottom:928.773333pt;}
.y194{bottom:930.213333pt;}
.yc{bottom:931.173333pt;}
.y1ef{bottom:934.213333pt;}
.y1bf{bottom:937.413333pt;}
.y130{bottom:941.093333pt;}
.y71{bottom:943.813333pt;}
.y4b{bottom:944.133333pt;}
.y193{bottom:945.413333pt;}
.yb{bottom:947.173333pt;}
.y1ee{bottom:949.413333pt;}
.y1be{bottom:952.453333pt;}
.y4a{bottom:959.493333pt;}
.y12f{bottom:960.453333pt;}
.y192{bottom:960.773333pt;}
.ya{bottom:962.533333pt;}
.y1ed{bottom:964.773333pt;}
.y1bd{bottom:971.813333pt;}
.y15e{bottom:974.533333pt;}
.y49{bottom:974.853333pt;}
.y191{bottom:976.133333pt;}
.y9{bottom:978.213333pt;}
.y12e{bottom:979.813333pt;}
.y1ec{bottom:980.133333pt;}
.y48{bottom:990.213333pt;}
.y190{bottom:991.173333pt;}
.y1eb{bottom:995.493333pt;}
.y8{bottom:996.613333pt;}
.y12d{bottom:999.173333pt;}
.y96{bottom:1005.093333pt;}
.y47{bottom:1005.413333pt;}
.y18f{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y46{bottom:1020.800000pt;}
.y18e{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.y12c{bottom:1035.840000pt;}
.y45{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.hb{height:15.200000pt;}
.hd{height:15.232000pt;}
.ha{height:15.360000pt;}
.hc{height:15.392000pt;}
.hf{height:30.720000pt;}
.h7{height:37.090625pt;}
.he{height:45.920000pt;}
.h9{height:47.109375pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w37{width:68.000000pt;}
.w27{width:68.480000pt;}
.wa{width:71.360000pt;}
.w23{width:72.192000pt;}
.w1e{width:78.400000pt;}
.w4{width:78.592000pt;}
.w5{width:79.840000pt;}
.w36{width:81.952000pt;}
.w19{width:83.840000pt;}
.w6{width:86.592000pt;}
.w32{width:88.512000pt;}
.w30{width:89.472000pt;}
.wf{width:91.840000pt;}
.w10{width:93.472000pt;}
.w26{width:95.232000pt;}
.wb{width:96.512000pt;}
.w7{width:99.232000pt;}
.w33{width:99.872000pt;}
.w11{width:101.152000pt;}
.w38{width:102.432000pt;}
.wc{width:104.832000pt;}
.w1f{width:105.632000pt;}
.w14{width:107.040000pt;}
.w3{width:107.200000pt;}
.w15{width:108.832000pt;}
.w1a{width:113.152000pt;}
.w20{width:114.432000pt;}
.w16{width:118.112000pt;}
.w22{width:120.320000pt;}
.w35{width:120.480000pt;}
.w1b{width:122.912000pt;}
.we{width:125.472000pt;}
.w31{width:126.400000pt;}
.w2f{width:126.592000pt;}
.w9{width:129.792000pt;}
.w24{width:144.026667pt;}
.w13{width:146.266667pt;}
.w18{width:152.026667pt;}
.w2d{width:156.186667pt;}
.w2e{width:159.226667pt;}
.w1d{width:187.706667pt;}
.w28{width:190.466667pt;}
.w1c{width:205.826667pt;}
.w2a{width:207.546667pt;}
.w12{width:211.906667pt;}
.w17{width:220.226667pt;}
.w34{width:228.546667pt;}
.w2c{width:236.386667pt;}
.w2{width:238.786667pt;}
.wd{width:279.906667pt;}
.w8{width:289.346667pt;}
.w2b{width:303.266667pt;}
.w25{width:339.426667pt;}
.w21{width:357.373333pt;}
.w29{width:434.653333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x86{left:1.280000pt;}
.x87{left:2.880000pt;}
.x83{left:9.800000pt;}
.x6a{left:11.680000pt;}
.x61{left:13.440000pt;}
.x89{left:14.586667pt;}
.x68{left:15.706667pt;}
.x8d{left:16.640000pt;}
.x85{left:18.080000pt;}
.x6d{left:19.200000pt;}
.x81{left:20.480000pt;}
.x5f{left:21.760000pt;}
.x80{left:22.720000pt;}
.x8e{left:23.680000pt;}
.x63{left:25.920000pt;}
.x2a{left:27.040000pt;}
.x1d{left:28.000000pt;}
.x7f{left:29.760000pt;}
.x1b{left:30.746667pt;}
.x49{left:33.280000pt;}
.x26{left:34.560000pt;}
.x54{left:35.680000pt;}
.x19{left:37.120000pt;}
.x5a{left:38.400000pt;}
.x23{left:39.680000pt;}
.x52{left:40.840000pt;}
.x22{left:41.760000pt;}
.x20{left:44.800000pt;}
.x40{left:45.920000pt;}
.x16{left:47.040000pt;}
.x5{left:48.000000pt;}
.x4d{left:49.760000pt;}
.x37{left:51.040000pt;}
.x84{left:52.512000pt;}
.x70{left:53.792000pt;}
.x5b{left:54.880000pt;}
.x2e{left:56.480000pt;}
.x47{left:59.840000pt;}
.x42{left:61.440000pt;}
.x64{left:62.752000pt;}
.x4c{left:64.480000pt;}
.x59{left:69.440000pt;}
.xc{left:72.000000pt;}
.x72{left:74.880000pt;}
.x56{left:78.752000pt;}
.x57{left:79.872000pt;}
.x21{left:81.792000pt;}
.x44{left:82.912000pt;}
.x6e{left:84.840000pt;}
.x3b{left:85.952000pt;}
.x4e{left:87.066667pt;}
.x55{left:88.026667pt;}
.x41{left:89.946667pt;}
.x43{left:91.066667pt;}
.x75{left:92.040000pt;}
.x6f{left:92.986667pt;}
.x25{left:94.906667pt;}
.xd{left:96.032000pt;}
.x17{left:99.386667pt;}
.x78{left:101.306667pt;}
.x36{left:102.266667pt;}
.x24{left:104.506667pt;}
.x2d{left:106.906667pt;}
.x6c{left:108.186667pt;}
.x39{left:115.706667pt;}
.x3a{left:116.826667pt;}
.x38{left:119.066667pt;}
.x10{left:120.032000pt;}
.x30{left:121.626667pt;}
.x27{left:124.506667pt;}
.x7a{left:126.746667pt;}
.x76{left:127.866667pt;}
.x2f{left:129.786667pt;}
.x77{left:140.666667pt;}
.x66{left:144.826667pt;}
.x5d{left:153.786667pt;}
.x74{left:155.866667pt;}
.xb{left:166.586667pt;}
.x6{left:191.866667pt;}
.x8{left:204.666667pt;}
.x7d{left:208.186667pt;}
.xf{left:215.546667pt;}
.x3{left:232.186667pt;}
.x14{left:236.986667pt;}
.x15{left:238.746667pt;}
.x13{left:252.066667pt;}
.x4f{left:254.786667pt;}
.x1{left:259.426667pt;}
.x3c{left:260.866667pt;}
.x45{left:262.146667pt;}
.x71{left:264.386667pt;}
.x12{left:266.146667pt;}
.x2{left:267.266667pt;}
.x46{left:269.186667pt;}
.x5c{left:274.786667pt;}
.x88{left:277.666667pt;}
.x7{left:284.546667pt;}
.x18{left:287.906667pt;}
.x79{left:293.986667pt;}
.x65{left:308.066667pt;}
.x58{left:322.466667pt;}
.x32{left:328.866667pt;}
.x7e{left:336.706667pt;}
.x28{left:338.306667pt;}
.x7b{left:352.386667pt;}
.x67{left:388.546667pt;}
.x1a{left:397.026667pt;}
.xa{left:399.586667pt;}
.x9{left:403.613333pt;}
.x5e{left:406.493333pt;}
.x3d{left:409.053333pt;}
.x48{left:423.293333pt;}
.x82{left:428.093333pt;}
.x50{left:444.413333pt;}
.x33{left:456.413333pt;}
.x29{left:470.173333pt;}
.x1c{left:477.533333pt;}
.x69{left:485.853333pt;}
.x8a{left:490.493333pt;}
.x4a{left:509.053333pt;}
.x73{left:511.613333pt;}
.x3e{left:518.173333pt;}
.x51{left:524.733333pt;}
.x60{left:528.733333pt;}
.x2b{left:543.613333pt;}
.x34{left:550.173333pt;}
.x6b{left:556.413333pt;}
.x1e{left:559.293333pt;}
.x8b{left:574.533333pt;}
.x7c{left:590.693333pt;}
.x62{left:603.013333pt;}
.x4b{left:624.133333pt;}
.x3f{left:628.933333pt;}
.x53{left:632.453333pt;}
.x2c{left:642.213333pt;}
.x8c{left:644.613333pt;}
.x35{left:645.733333pt;}
.x1f{left:647.813333pt;}
.xe{left:651.973333pt;}
.x11{left:708.933333pt;}
.x31{left:729.920000pt;}
.x4{left:737.920000pt;}
}




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