
    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_35bb80aac75333ac4234750c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947754;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_2c87d70034de48282d0a8740.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_53cf7a2dc53c41004f65b2a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947266;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_bad12645586108bc8f096408.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947266;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_f3ffd5c0317bc18755b679c7.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_b28a49ee094854d593a44e46.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.720215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b46fd80587d50f962e876185.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.302400px;}
.ls16{letter-spacing:-0.115200px;}
.ls14{letter-spacing:-0.086400px;}
.ls10{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.014400px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.129600px;}
.lsa{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.158400px;}
.ls8{letter-spacing:0.172800px;}
.lse{letter-spacing:0.201600px;}
.lsf{letter-spacing:0.230400px;}
.ls6{letter-spacing:0.316800px;}
.lsc{letter-spacing:0.345600px;}
.ls5{letter-spacing:0.388800px;}
.ls13{letter-spacing:0.417600px;}
.ls2{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.936000px;}
.ls17{letter-spacing:35.226720px;}
.lsb{letter-spacing:55.362720px;}
.ls4{letter-spacing:64.170720px;}
.ls0{letter-spacing:197.020800px;}
.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;}
.ws7{word-spacing:-22.723200px;}
.ws2{word-spacing:-20.707200px;}
.ws9{word-spacing:-20.476800px;}
.wsa{word-spacing:-20.246400px;}
.wsc{word-spacing:-19.540800px;}
.ws6{word-spacing:-19.468800px;}
.wsb{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.353600px;}
.ws5{word-spacing:-19.296000px;}
.wsf{word-spacing:-19.123200px;}
.ws4{word-spacing:-19.108800px;}
.wsd{word-spacing:-19.036800px;}
.ws10{word-spacing:-19.008000px;}
.wse{word-spacing:-18.820800px;}
.ws0{word-spacing:-18.792000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.126080px;}
._1{width:1.093440px;}
._3{width:2.678640px;}
._2{width:3.711360px;}
._7{width:5.241600px;}
._8{width:7.023600px;}
._4{width:8.844480px;}
._5{width:9.962160px;}
._9{width:11.294640px;}
._6{width:12.669840px;}
._a{width:14.538480px;}
._14{width:15.708480px;}
._d{width:16.894320px;}
._c{width:17.928000px;}
._b{width:20.254320px;}
._15{width:21.482880px;}
._18{width:22.539360px;}
._19{width:23.545440px;}
._13{width:24.842400px;}
._12{width:26.115120px;}
._f{width:28.027440px;}
._10{width:29.502240px;}
._11{width:30.595680px;}
._1e{width:31.724160px;}
._20{width:32.814480px;}
._16{width:33.993360px;}
._17{width:35.616960px;}
._1f{width:38.664720px;}
._1c{width:41.178240px;}
._1d{width:42.340320px;}
._1b{width:48.103200px;}
._1a{width:49.302000px;}
._e{width:197.020800px;}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,255);}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y20e{bottom:-5.400000px;}
.y20c{bottom:-5.220000px;}
.y0{bottom:0.000000px;}
.y159{bottom:3.420000px;}
.y13a{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y6{bottom:4.500000px;}
.y201{bottom:12.420000px;}
.y204{bottom:21.060000px;}
.y1ff{bottom:21.240000px;}
.y4{bottom:25.380000px;}
.y200{bottom:30.105000px;}
.y206{bottom:38.700000px;}
.y208{bottom:38.880000px;}
.y202{bottom:38.925000px;}
.y1d8{bottom:59.040000px;}
.y234{bottom:59.400000px;}
.y82{bottom:63.180000px;}
.y17d{bottom:63.540000px;}
.y23d{bottom:64.080000px;}
.y1ab{bottom:64.980000px;}
.ydc{bottom:66.960000px;}
.y138{bottom:67.860000px;}
.y147{bottom:73.260000px;}
.y1d7{bottom:76.680000px;}
.y233{bottom:77.040000px;}
.y81{bottom:80.820000px;}
.y17c{bottom:81.180000px;}
.y23c{bottom:81.540000px;}
.y1aa{bottom:82.620000px;}
.ya6{bottom:82.980000px;}
.y125{bottom:83.880000px;}
.ydb{bottom:84.600000px;}
.y43{bottom:85.140000px;}
.y137{bottom:85.320000px;}
.y10f{bottom:88.380000px;}
.y146{bottom:90.900000px;}
.y1d6{bottom:94.320000px;}
.y232{bottom:94.680000px;}
.y207{bottom:98.136000px;}
.y80{bottom:98.496000px;}
.y17b{bottom:98.856000px;}
.y1a9{bottom:100.296000px;}
.ya5{bottom:100.656000px;}
.y124{bottom:101.376000px;}
.yda{bottom:102.276000px;}
.y42{bottom:102.636000px;}
.y136{bottom:102.996000px;}
.y10e{bottom:105.876000px;}
.y145{bottom:108.576000px;}
.y1d5{bottom:111.816000px;}
.y231{bottom:112.356000px;}
.y7f{bottom:116.136000px;}
.y17a{bottom:116.316000px;}
.y1a8{bottom:117.576000px;}
.y23b{bottom:117.936000px;}
.ya4{bottom:118.296000px;}
.y123{bottom:119.016000px;}
.yd9{bottom:119.736000px;}
.y41{bottom:120.276000px;}
.y135{bottom:120.636000px;}
.y10d{bottom:123.516000px;}
.y144{bottom:126.216000px;}
.y1d4{bottom:129.456000px;}
.y230{bottom:129.816000px;}
.y7e{bottom:133.596000px;}
.y179{bottom:133.776000px;}
.y23a{bottom:135.576000px;}
.ya3{bottom:135.936000px;}
.y122{bottom:136.656000px;}
.yd8{bottom:137.376000px;}
.y40{bottom:137.916000px;}
.y134{bottom:138.276000px;}
.y1a7{bottom:139.716000px;}
.y10c{bottom:141.156000px;}
.y143{bottom:143.856000px;}
.y1d3{bottom:147.096000px;}
.y22f{bottom:147.456000px;}
.y7d{bottom:151.230000px;}
.y239{bottom:153.030000px;}
.ya2{bottom:153.390000px;}
.y121{bottom:154.290000px;}
.yd7{bottom:155.010000px;}
.y3f{bottom:155.550000px;}
.y133{bottom:155.910000px;}
.y10b{bottom:158.790000px;}
.y142{bottom:161.310000px;}
.y1a6{bottom:164.370000px;}
.y1d2{bottom:164.730000px;}
.y22e{bottom:165.090000px;}
.y7c{bottom:168.690000px;}
.ycf{bottom:168.870000px;}
.ya1{bottom:171.030000px;}
.y238{bottom:171.750000px;}
.y120{bottom:171.930000px;}
.yd6{bottom:172.650000px;}
.y3e{bottom:173.190000px;}
.y132{bottom:173.370000px;}
.y10a{bottom:176.430000px;}
.y141{bottom:178.950000px;}
.y178{bottom:180.390000px;}
.y1a5{bottom:181.830000px;}
.y1d1{bottom:182.370000px;}
.y22d{bottom:182.730000px;}
.yce{bottom:186.510000px;}
.y7b{bottom:187.410000px;}
.ya0{bottom:188.670000px;}
.y237{bottom:189.210000px;}
.y11f{bottom:189.570000px;}
.yd5{bottom:190.290000px;}
.y3d{bottom:190.830000px;}
.y131{bottom:191.010000px;}
.y109{bottom:194.070000px;}
.y140{bottom:196.590000px;}
.y177{bottom:198.030000px;}
.y1a4{bottom:199.470000px;}
.y1d0{bottom:199.830000px;}
.y22c{bottom:200.370000px;}
.ycd{bottom:204.150000px;}
.y7a{bottom:204.870000px;}
.y9f{bottom:206.310000px;}
.y236{bottom:206.850000px;}
.y11e{bottom:207.030000px;}
.yd4{bottom:207.750000px;}
.y3c{bottom:208.290000px;}
.y130{bottom:208.650000px;}
.y108{bottom:211.530000px;}
.y205{bottom:212.790000px;}
.y13f{bottom:214.230000px;}
.y176{bottom:215.670000px;}
.y1a3{bottom:217.110000px;}
.y1cf{bottom:217.470000px;}
.y22b{bottom:217.830000px;}
.ycc{bottom:221.610000px;}
.y79{bottom:223.590000px;}
.y9e{bottom:223.950000px;}
.y235{bottom:224.310000px;}
.y11d{bottom:224.670000px;}
.yd3{bottom:225.390000px;}
.y3b{bottom:225.930000px;}
.y12f{bottom:226.290000px;}
.y107{bottom:229.170000px;}
.y13e{bottom:231.870000px;}
.y175{bottom:233.310000px;}
.yf9{bottom:234.570000px;}
.y1a2{bottom:234.750000px;}
.y1ce{bottom:235.110000px;}
.y22a{bottom:235.470000px;}
.ycb{bottom:239.250000px;}
.y78{bottom:241.050000px;}
.y9d{bottom:241.590000px;}
.y11c{bottom:242.310000px;}
.yd2{bottom:243.030000px;}
.y106{bottom:243.390000px;}
.y3a{bottom:243.570000px;}
.y12e{bottom:243.930000px;}
.y13d{bottom:249.330000px;}
.y174{bottom:250.950000px;}
.yf8{bottom:252.210000px;}
.y1a1{bottom:252.390000px;}
.y203{bottom:252.570000px;}
.y1cd{bottom:252.750000px;}
.y229{bottom:253.110000px;}
.y11b{bottom:256.530000px;}
.yca{bottom:256.890000px;}
.y9c{bottom:259.050000px;}
.y77{bottom:259.770000px;}
.yd1{bottom:260.670000px;}
.y39{bottom:261.210000px;}
.y12d{bottom:261.570000px;}
.y13c{bottom:266.970000px;}
.y173{bottom:268.410000px;}
.y1a0{bottom:269.670000px;}
.yf7{bottom:269.850000px;}
.y1cc{bottom:270.390000px;}
.y228{bottom:270.750000px;}
.yc9{bottom:274.530000px;}
.y9b{bottom:276.690000px;}
.y76{bottom:277.230000px;}
.yd0{bottom:278.310000px;}
.y38{bottom:278.850000px;}
.y12c{bottom:279.030000px;}
.y13b{bottom:284.430000px;}
.y172{bottom:286.050000px;}
.yf6{bottom:287.490000px;}
.y1cb{bottom:288.030000px;}
.y227{bottom:288.390000px;}
.y19f{bottom:291.810000px;}
.yc8{bottom:292.170000px;}
.y9a{bottom:294.330000px;}
.y75{bottom:295.950000px;}
.y37{bottom:296.310000px;}
.y12b{bottom:296.670000px;}
.y171{bottom:303.690000px;}
.yf5{bottom:305.130000px;}
.y1ca{bottom:305.490000px;}
.y226{bottom:306.030000px;}
.y139{bottom:306.570000px;}
.yc7{bottom:309.810000px;}
.y267{bottom:311.610000px;}
.y99{bottom:311.970000px;}
.y74{bottom:313.410000px;}
.y36{bottom:313.950000px;}
.y12a{bottom:314.310000px;}
.y19e{bottom:316.470000px;}
.y170{bottom:321.150000px;}
.yf4{bottom:322.590000px;}
.y1c9{bottom:323.130000px;}
.y225{bottom:323.490000px;}
.yc6{bottom:327.270000px;}
.y129{bottom:328.530000px;}
.y266{bottom:329.250000px;}
.y98{bottom:329.610000px;}
.y73{bottom:331.050000px;}
.y35{bottom:331.590000px;}
.y1fe{bottom:331.950000px;}
.y19d{bottom:333.930000px;}
.yf3{bottom:340.230000px;}
.y1c8{bottom:340.590000px;}
.y224{bottom:341.130000px;}
.y16f{bottom:343.290000px;}
.yc5{bottom:344.910000px;}
.y265{bottom:346.890000px;}
.y97{bottom:347.070000px;}
.y72{bottom:348.690000px;}
.y34{bottom:349.230000px;}
.y19c{bottom:351.570000px;}
.yf2{bottom:357.915000px;}
.y223{bottom:358.815000px;}
.yc4{bottom:362.595000px;}
.y1c7{bottom:362.775000px;}
.y264{bottom:364.395000px;}
.y96{bottom:364.755000px;}
.y71{bottom:366.375000px;}
.y33{bottom:366.915000px;}
.y16e{bottom:367.815000px;}
.y19b{bottom:369.075000px;}
.yf1{bottom:375.555000px;}
.y222{bottom:376.455000px;}
.yc3{bottom:380.235000px;}
.y263{bottom:382.035000px;}
.y95{bottom:382.395000px;}
.y70{bottom:384.015000px;}
.y32{bottom:384.555000px;}
.y1c6{bottom:384.915000px;}
.y16d{bottom:385.455000px;}
.y19a{bottom:391.215000px;}
.y1fd{bottom:391.755000px;}
.yf0{bottom:393.015000px;}
.y221{bottom:394.095000px;}
.yc2{bottom:397.875000px;}
.y262{bottom:399.675000px;}
.y94{bottom:400.035000px;}
.y6f{bottom:401.475000px;}
.y31{bottom:402.015000px;}
.y16c{bottom:403.095000px;}
.y1c5{bottom:406.875000px;}
.y1fc{bottom:409.395000px;}
.yef{bottom:411.555000px;}
.yc1{bottom:415.335000px;}
.y199{bottom:415.695000px;}
.y261{bottom:417.315000px;}
.y93{bottom:417.675000px;}
.y6e{bottom:419.115000px;}
.y30{bottom:419.655000px;}
.y16b{bottom:420.555000px;}
.y1fb{bottom:427.035000px;}
.y1c4{bottom:429.015000px;}
.y220{bottom:429.195000px;}
.yee{bottom:430.275000px;}
.yc0{bottom:432.975000px;}
.y198{bottom:433.335000px;}
.y260{bottom:434.955000px;}
.y92{bottom:435.315000px;}
.y6d{bottom:436.755000px;}
.y2f{bottom:437.295000px;}
.y16a{bottom:438.195000px;}
.y1fa{bottom:444.675000px;}
.y21f{bottom:446.835000px;}
.yed{bottom:447.735000px;}
.ybf{bottom:450.615000px;}
.y197{bottom:450.975000px;}
.y25f{bottom:452.595000px;}
.y91{bottom:452.775000px;}
.y1c3{bottom:453.675000px;}
.y6c{bottom:454.395000px;}
.y2e{bottom:454.935000px;}
.y169{bottom:455.835000px;}
.y1f9{bottom:462.135000px;}
.y21e{bottom:464.475000px;}
.yec{bottom:466.275000px;}
.ybe{bottom:468.255000px;}
.y196{bottom:468.615000px;}
.y25e{bottom:470.055000px;}
.y90{bottom:470.415000px;}
.y1c2{bottom:471.135000px;}
.y6b{bottom:472.035000px;}
.y2d{bottom:472.575000px;}
.y168{bottom:473.475000px;}
.y1f8{bottom:479.775000px;}
.y21d{bottom:482.115000px;}
.yeb{bottom:484.815000px;}
.ybd{bottom:485.895000px;}
.y25d{bottom:487.695000px;}
.y8f{bottom:488.055000px;}
.y1c1{bottom:488.775000px;}
.y6a{bottom:489.675000px;}
.y2c{bottom:490.035000px;}
.y167{bottom:490.935000px;}
.y1f7{bottom:497.415000px;}
.y21c{bottom:499.755000px;}
.yea{bottom:503.355000px;}
.ybc{bottom:503.535000px;}
.y25c{bottom:505.335000px;}
.y8e{bottom:505.695000px;}
.y1c0{bottom:506.415000px;}
.y69{bottom:507.135000px;}
.y2b{bottom:507.675000px;}
.y195{bottom:508.035000px;}
.y166{bottom:512.895000px;}
.y1f6{bottom:515.055000px;}
.y21b{bottom:517.215000px;}
.ybb{bottom:520.995000px;}
.ye9{bottom:522.075000px;}
.y25b{bottom:522.975000px;}
.y8d{bottom:523.335000px;}
.y1bf{bottom:524.055000px;}
.y68{bottom:524.775000px;}
.y2a{bottom:525.315000px;}
.y194{bottom:532.695000px;}
.y21a{bottom:534.855000px;}
.y165{bottom:537.555000px;}
.yba{bottom:538.635000px;}
.ye8{bottom:539.535000px;}
.y25a{bottom:540.615000px;}
.y8c{bottom:540.795000px;}
.y1be{bottom:541.695000px;}
.y67{bottom:542.415000px;}
.y29{bottom:542.955000px;}
.y193{bottom:550.155000px;}
.y219{bottom:552.495000px;}
.y164{bottom:555.195000px;}
.yb9{bottom:556.275000px;}
.ye7{bottom:557.175000px;}
.y259{bottom:558.075000px;}
.y8b{bottom:558.435000px;}
.y1bd{bottom:559.155000px;}
.y66{bottom:560.055000px;}
.y28{bottom:560.595000px;}
.y192{bottom:567.795000px;}
.y218{bottom:570.135000px;}
.y163{bottom:572.655000px;}
.yb8{bottom:573.915000px;}
.ye6{bottom:574.815000px;}
.y258{bottom:575.715000px;}
.y8a{bottom:576.075000px;}
.y1bc{bottom:576.795000px;}
.y65{bottom:577.695000px;}
.y27{bottom:578.235000px;}
.y191{bottom:585.435000px;}
.y217{bottom:587.775000px;}
.y162{bottom:590.295000px;}
.yb7{bottom:591.555000px;}
.ye5{bottom:592.275000px;}
.y257{bottom:593.355000px;}
.y89{bottom:593.715000px;}
.y1bb{bottom:594.435000px;}
.y64{bottom:595.155000px;}
.y26{bottom:595.695000px;}
.y190{bottom:602.895000px;}
.y1f5{bottom:603.075000px;}
.y216{bottom:605.235000px;}
.y161{bottom:607.935000px;}
.yb6{bottom:609.015000px;}
.ye4{bottom:610.995000px;}
.y88{bottom:611.355000px;}
.y1ba{bottom:612.075000px;}
.y63{bottom:612.795000px;}
.y25{bottom:613.335000px;}
.y105{bottom:618.225000px;}
.y1f4{bottom:620.745000px;}
.y215{bottom:622.905000px;}
.y18f{bottom:625.065000px;}
.y160{bottom:625.605000px;}
.yb5{bottom:626.685000px;}
.ye3{bottom:628.665000px;}
.y87{bottom:629.025000px;}
.y1b9{bottom:629.745000px;}
.y62{bottom:630.465000px;}
.y24{bottom:631.005000px;}
.y11a{bottom:631.185000px;}
.y104{bottom:635.685000px;}
.y1f3{bottom:638.385000px;}
.y214{bottom:640.545000px;}
.y15f{bottom:643.245000px;}
.yb4{bottom:644.325000px;}
.ye2{bottom:646.305000px;}
.y86{bottom:646.485000px;}
.y1b8{bottom:647.385000px;}
.y61{bottom:648.105000px;}
.y23{bottom:648.645000px;}
.y119{bottom:648.825000px;}
.y18e{bottom:649.545000px;}
.y103{bottom:653.325000px;}
.y1f2{bottom:655.845000px;}
.y213{bottom:658.185000px;}
.y15e{bottom:660.885000px;}
.yb3{bottom:661.965000px;}
.ye1{bottom:663.765000px;}
.y85{bottom:664.125000px;}
.y1b7{bottom:664.845000px;}
.y60{bottom:665.745000px;}
.y22{bottom:666.285000px;}
.y118{bottom:666.465000px;}
.y18d{bottom:667.185000px;}
.y102{bottom:670.965000px;}
.y1f1{bottom:673.485000px;}
.y212{bottom:675.825000px;}
.y15d{bottom:678.345000px;}
.yb2{bottom:679.605000px;}
.y256{bottom:681.405000px;}
.y84{bottom:681.765000px;}
.ye0{bottom:682.305000px;}
.y1b6{bottom:682.485000px;}
.y5f{bottom:683.385000px;}
.y21{bottom:683.745000px;}
.y117{bottom:684.105000px;}
.y18c{bottom:684.825000px;}
.y101{bottom:688.605000px;}
.y1f0{bottom:691.125000px;}
.y211{bottom:693.465000px;}
.y83{bottom:695.805000px;}
.y15c{bottom:695.985000px;}
.yb1{bottom:697.245000px;}
.y255{bottom:699.045000px;}
.ydf{bottom:699.945000px;}
.y5e{bottom:700.845000px;}
.y20{bottom:701.385000px;}
.y116{bottom:701.745000px;}
.y18b{bottom:702.465000px;}
.y100{bottom:706.245000px;}
.y1ef{bottom:708.765000px;}
.y210{bottom:710.745000px;}
.y15b{bottom:713.625000px;}
.yb0{bottom:714.705000px;}
.y254{bottom:716.685000px;}
.yde{bottom:717.585000px;}
.y5d{bottom:718.485000px;}
.y1f{bottom:719.025000px;}
.y115{bottom:719.205000px;}
.y18a{bottom:719.925000px;}
.y1b5{bottom:722.085000px;}
.yff{bottom:723.705000px;}
.y1ee{bottom:726.225000px;}
.y15a{bottom:731.445000px;}
.yaf{bottom:732.345000px;}
.y20f{bottom:732.885000px;}
.y253{bottom:734.325000px;}
.ydd{bottom:735.045000px;}
.y5c{bottom:736.125000px;}
.y1e{bottom:736.665000px;}
.y114{bottom:736.845000px;}
.y189{bottom:737.565000px;}
.yfe{bottom:741.345000px;}
.y1b4{bottom:744.225000px;}
.y1ed{bottom:748.185000px;}
.y158{bottom:748.725000px;}
.yae{bottom:749.985000px;}
.y252{bottom:751.785000px;}
.y5b{bottom:753.765000px;}
.y1d{bottom:754.305000px;}
.y113{bottom:754.485000px;}
.y188{bottom:755.025000px;}
.yfd{bottom:758.985000px;}
.y1b3{bottom:766.185000px;}
.yad{bottom:767.445000px;}
.y128{bottom:767.625000px;}
.y251{bottom:769.425000px;}
.y1ec{bottom:770.325000px;}
.y157{bottom:770.685000px;}
.y5a{bottom:771.405000px;}
.y1c{bottom:771.945000px;}
.y112{bottom:772.125000px;}
.yfc{bottom:776.625000px;}
.y187{bottom:777.165000px;}
.y127{bottom:785.265000px;}
.yac{bottom:786.165000px;}
.y250{bottom:787.065000px;}
.y1b2{bottom:788.325000px;}
.y59{bottom:788.865000px;}
.y1b{bottom:789.405000px;}
.y111{bottom:789.765000px;}
.y1eb{bottom:792.465000px;}
.yfb{bottom:794.265000px;}
.y156{bottom:795.345000px;}
.y126{bottom:799.305000px;}
.y186{bottom:801.645000px;}
.yab{bottom:803.625000px;}
.y110{bottom:803.805000px;}
.y24f{bottom:804.705000px;}
.y58{bottom:806.505000px;}
.y1a{bottom:807.045000px;}
.yfa{bottom:808.305000px;}
.y155{bottom:812.985000px;}
.y1ea{bottom:816.945000px;}
.y185{bottom:819.285000px;}
.y20d{bottom:821.265000px;}
.yaa{bottom:822.345000px;}
.y57{bottom:824.145000px;}
.y19{bottom:825.405000px;}
.y154{bottom:830.445000px;}
.y1e9{bottom:834.585000px;}
.y184{bottom:836.925000px;}
.ya9{bottom:839.805000px;}
.y24e{bottom:839.985000px;}
.y56{bottom:841.785000px;}
.y18{bottom:843.045000px;}
.y20b{bottom:843.405000px;}
.y153{bottom:848.085000px;}
.y1e8{bottom:852.225000px;}
.y183{bottom:854.565000px;}
.y24d{bottom:857.445000px;}
.ya8{bottom:858.525000px;}
.y55{bottom:859.425000px;}
.y17{bottom:860.685000px;}
.y20a{bottom:865.545000px;}
.y152{bottom:865.725000px;}
.y1e7{bottom:869.865000px;}
.y182{bottom:872.025000px;}
.y24c{bottom:875.130000px;}
.ya7{bottom:876.030000px;}
.y54{bottom:877.110000px;}
.y16{bottom:878.370000px;}
.y151{bottom:883.410000px;}
.y1e6{bottom:887.550000px;}
.y209{bottom:887.730000px;}
.y181{bottom:889.530000px;}
.y24b{bottom:892.770000px;}
.y53{bottom:894.570000px;}
.y15{bottom:895.830000px;}
.y150{bottom:901.050000px;}
.y1e5{bottom:905.190000px;}
.y24a{bottom:910.410000px;}
.y180{bottom:911.670000px;}
.y52{bottom:912.210000px;}
.y14{bottom:913.470000px;}
.y14f{bottom:918.690000px;}
.y1e4{bottom:922.650000px;}
.y249{bottom:928.050000px;}
.y51{bottom:929.850000px;}
.y13{bottom:931.110000px;}
.y14e{bottom:936.150000px;}
.y1e3{bottom:940.290000px;}
.y248{bottom:945.510000px;}
.y50{bottom:947.490000px;}
.y12{bottom:948.750000px;}
.y14d{bottom:953.790000px;}
.y1e2{bottom:957.930000px;}
.y247{bottom:963.150000px;}
.y4f{bottom:965.130000px;}
.y11{bottom:966.390000px;}
.y14c{bottom:971.430000px;}
.y1e1{bottom:975.570000px;}
.y246{bottom:980.790000px;}
.y4e{bottom:982.770000px;}
.y10{bottom:984.030000px;}
.y14b{bottom:989.070000px;}
.y1e0{bottom:993.210000px;}
.y245{bottom:998.430000px;}
.y4d{bottom:1000.230000px;}
.yf{bottom:1001.490000px;}
.y17f{bottom:1006.530000px;}
.y14a{bottom:1006.710000px;}
.y1df{bottom:1010.670000px;}
.y244{bottom:1016.070000px;}
.y4c{bottom:1017.870000px;}
.ye{bottom:1019.130000px;}
.y149{bottom:1023.990000px;}
.y1b1{bottom:1024.170000px;}
.y1de{bottom:1028.310000px;}
.y17e{bottom:1028.490000px;}
.y243{bottom:1033.710000px;}
.y4b{bottom:1035.510000px;}
.yd{bottom:1036.770000px;}
.y1b0{bottom:1041.810000px;}
.y1dd{bottom:1045.770000px;}
.y148{bottom:1046.130000px;}
.y242{bottom:1051.170000px;}
.y4a{bottom:1053.150000px;}
.yc{bottom:1056.570000px;}
.y1af{bottom:1059.450000px;}
.y1dc{bottom:1067.910000px;}
.y241{bottom:1069.710000px;}
.y49{bottom:1070.790000px;}
.yb{bottom:1074.210000px;}
.y1ae{bottom:1077.090000px;}
.y240{bottom:1087.350000px;}
.y48{bottom:1088.250000px;}
.y1db{bottom:1090.050000px;}
.ya{bottom:1092.570000px;}
.y1ad{bottom:1094.550000px;}
.y23f{bottom:1104.990000px;}
.y47{bottom:1105.890000px;}
.y1da{bottom:1112.010000px;}
.y9{bottom:1113.630000px;}
.y1ac{bottom:1116.510000px;}
.y23e{bottom:1122.450000px;}
.y46{bottom:1123.530000px;}
.y1d9{bottom:1134.180000px;}
.y8{bottom:1134.720000px;}
.y45{bottom:1141.200000px;}
.y7{bottom:1155.960000px;}
.y44{bottom:1158.840000px;}
.y3{bottom:1176.660000px;}
.y2{bottom:1196.100000px;}
.y1{bottom:1215.360000px;}
.hb{height:17.460000px;}
.hc{height:17.496000px;}
.ha{height:17.640000px;}
.hd{height:17.676000px;}
.h4{height:19.260000px;}
.h10{height:35.100000px;}
.hf{height:35.280000px;}
.h7{height:42.806602px;}
.h8{height:42.835781px;}
.h2{height:47.480625px;}
.h6{height:51.609375px;}
.h11{height:52.740000px;}
.h12{height:52.920000px;}
.he{height:52.956000px;}
.h9{height:61.423863px;}
.h5{height:65.884219px;}
.h3{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:61.416000px;}
.w43{width:72.180000px;}
.w3b{width:84.780000px;}
.w32{width:85.500000px;}
.w42{width:86.976000px;}
.w2f{width:90.396000px;}
.w35{width:93.636000px;}
.w41{width:93.780000px;}
.w1d{width:101.880000px;}
.w1c{width:101.916000px;}
.w1b{width:102.060000px;}
.we{width:104.760000px;}
.wf{width:104.796000px;}
.w8{width:104.976000px;}
.w7{width:105.120000px;}
.w6{width:105.156000px;}
.w5{width:105.300000px;}
.w11{width:105.840000px;}
.w12{width:105.876000px;}
.w44{width:108.576000px;}
.w3a{width:110.736000px;}
.w27{width:111.240000px;}
.w28{width:111.276000px;}
.w29{width:111.456000px;}
.wa{width:112.176000px;}
.wb{width:112.320000px;}
.wc{width:112.356000px;}
.w1f{width:115.596000px;}
.w20{width:115.740000px;}
.w21{width:115.776000px;}
.w16{width:117.576000px;}
.w15{width:117.720000px;}
.w14{width:117.756000px;}
.w25{width:118.980000px;}
.w24{width:119.016000px;}
.w23{width:119.196000px;}
.w2b{width:124.956000px;}
.w2c{width:125.100000px;}
.w2d{width:125.136000px;}
.w40{width:127.656000px;}
.w19{width:128.340000px;}
.w18{width:128.376000px;}
.w17{width:134.856000px;}
.w3c{width:140.976000px;}
.w39{width:143.856000px;}
.w3e{width:147.996000px;}
.w3d{width:148.176000px;}
.w2a{width:150.690000px;}
.w37{width:163.980000px;}
.w30{width:180.570000px;}
.w22{width:180.930000px;}
.w13{width:187.590000px;}
.w1e{width:198.030000px;}
.w38{width:205.770000px;}
.w9{width:215.130000px;}
.w26{width:219.495000px;}
.w33{width:237.675000px;}
.w10{width:246.855000px;}
.w4{width:250.635000px;}
.wd{width:252.255000px;}
.w1a{width:266.475000px;}
.w3f{width:286.635000px;}
.w31{width:338.655000px;}
.w2e{width:358.995000px;}
.w36{width:413.385000px;}
.w34{width:691.530000px;}
.w2{width:734.910000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x96{left:3.960000px;}
.x92{left:5.040000px;}
.x98{left:7.020000px;}
.x5{left:8.640000px;}
.x88{left:12.240000px;}
.x77{left:13.680000px;}
.x9b{left:14.940000px;}
.x6e{left:16.020000px;}
.x89{left:17.280000px;}
.x8f{left:18.360000px;}
.x1a{left:19.800000px;}
.x79{left:21.780000px;}
.x6c{left:23.040000px;}
.x72{left:24.120000px;}
.x7{left:25.200000px;}
.x90{left:28.080000px;}
.x70{left:29.700000px;}
.x4a{left:31.320000px;}
.x1e{left:32.940000px;}
.x8e{left:34.380000px;}
.x26{left:36.225000px;}
.x37{left:38.925000px;}
.x86{left:40.176000px;}
.x82{left:41.400000px;}
.x23{left:43.380000px;}
.x91{left:45.036000px;}
.x2c{left:46.665000px;}
.x4{left:48.420000px;}
.x3d{left:49.725000px;}
.x8b{left:51.300000px;}
.x1c{left:52.920000px;}
.x8{left:54.000000px;}
.x71{left:56.010000px;}
.x65{left:57.996000px;}
.x45{left:59.400000px;}
.x43{left:60.516000px;}
.x5e{left:63.216000px;}
.x3c{left:65.196000px;}
.x57{left:68.976000px;}
.x9a{left:70.056000px;}
.x59{left:73.116000px;}
.x2b{left:74.196000px;}
.x30{left:77.256000px;}
.x10{left:81.000000px;}
.x84{left:84.240000px;}
.x4f{left:87.336000px;}
.x24{left:90.216000px;}
.x60{left:92.376000px;}
.x78{left:96.156000px;}
.x31{left:106.050000px;}
.x11{left:108.036000px;}
.x7a{left:109.125000px;}
.x48{left:115.770000px;}
.x83{left:133.410000px;}
.x14{left:135.036000px;}
.x74{left:137.550000px;}
.x93{left:145.656000px;}
.x6b{left:147.630000px;}
.x80{left:174.810000px;}
.xf{left:179.130000px;}
.x3e{left:189.930000px;}
.x1{left:192.810000px;}
.x87{left:198.930000px;}
.x1b{left:205.410000px;}
.xd{left:207.030000px;}
.x13{left:210.450000px;}
.x7d{left:220.395000px;}
.x7e{left:230.115000px;}
.x9{left:233.130000px;}
.xb{left:234.390000px;}
.x58{left:235.830000px;}
.x51{left:239.790000px;}
.x18{left:242.130000px;}
.x5f{left:246.990000px;}
.x36{left:250.410000px;}
.x52{left:253.110000px;}
.x16{left:257.250000px;}
.x3{left:260.490000px;}
.x2d{left:263.910000px;}
.x50{left:265.170000px;}
.x64{left:266.790000px;}
.x25{left:270.390000px;}
.x7b{left:272.955000px;}
.x17{left:274.935000px;}
.x47{left:276.915000px;}
.x6a{left:279.615000px;}
.xa{left:281.055000px;}
.x19{left:295.995000px;}
.x32{left:302.115000px;}
.x1d{left:305.715000px;}
.x2e{left:307.515000px;}
.x85{left:311.295000px;}
.x44{left:312.915000px;}
.x73{left:314.895000px;}
.x7f{left:317.055000px;}
.x3f{left:320.475000px;}
.x49{left:321.555000px;}
.x46{left:322.635000px;}
.x66{left:333.255000px;}
.x94{left:341.895000px;}
.x2{left:347.295000px;}
.x5a{left:357.375000px;}
.x38{left:362.775000px;}
.x53{left:371.055000px;}
.x27{left:384.735000px;}
.x61{left:388.335000px;}
.xc{left:392.475000px;}
.x75{left:393.915000px;}
.x8a{left:398.775000px;}
.x33{left:410.115000px;}
.x1f{left:413.175000px;}
.x2f{left:414.435000px;}
.x4b{left:425.775000px;}
.xe{left:431.355000px;}
.x40{left:450.975000px;}
.x67{left:460.545000px;}
.x81{left:468.465000px;}
.x95{left:471.885000px;}
.x5b{left:478.725000px;}
.x39{left:482.685000px;}
.x54{left:488.805000px;}
.x28{left:499.065000px;}
.x62{left:501.945000px;}
.x76{left:515.085000px;}
.x34{left:518.325000px;}
.x20{left:520.485000px;}
.x4c{left:530.025000px;}
.x8c{left:541.905000px;}
.x6d{left:567.105000px;}
.x41{left:581.505000px;}
.x68{left:587.805000px;}
.x5c{left:599.865000px;}
.x3a{left:602.565000px;}
.x55{left:606.705000px;}
.x29{left:613.545000px;}
.x63{left:615.345000px;}
.x35{left:626.325000px;}
.x21{left:627.945000px;}
.x4d{left:634.110000px;}
.x97{left:657.150000px;}
.x6f{left:659.670000px;}
.x8d{left:692.250000px;}
.x42{left:712.050000px;}
.x69{left:715.110000px;}
.x5d{left:721.230000px;}
.x3b{left:722.670000px;}
.x56{left:724.650000px;}
.x2a{left:728.070000px;}
.x99{left:731.670000px;}
.x22{left:735.270000px;}
.x4e{left:738.330000px;}
.x7c{left:746.610000px;}
.x6{left:783.330000px;}
.x12{left:796.470000px;}
.x15{left:797.550000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.268800pt;}
.ls16{letter-spacing:-0.102400pt;}
.ls14{letter-spacing:-0.076800pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.115200pt;}
.lsa{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.140800pt;}
.ls8{letter-spacing:0.153600pt;}
.lse{letter-spacing:0.179200pt;}
.lsf{letter-spacing:0.204800pt;}
.ls6{letter-spacing:0.281600pt;}
.lsc{letter-spacing:0.307200pt;}
.ls5{letter-spacing:0.345600pt;}
.ls13{letter-spacing:0.371200pt;}
.ls2{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.832000pt;}
.ls17{letter-spacing:31.312640pt;}
.lsb{letter-spacing:49.211307pt;}
.ls4{letter-spacing:57.040640pt;}
.ls0{letter-spacing:175.129600pt;}
.ws3{word-spacing:-53.120000pt;}
.ws7{word-spacing:-20.198400pt;}
.ws2{word-spacing:-18.406400pt;}
.ws9{word-spacing:-18.201600pt;}
.wsa{word-spacing:-17.996800pt;}
.wsc{word-spacing:-17.369600pt;}
.ws6{word-spacing:-17.305600pt;}
.wsb{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.203200pt;}
.ws5{word-spacing:-17.152000pt;}
.wsf{word-spacing:-16.998400pt;}
.ws4{word-spacing:-16.985600pt;}
.wsd{word-spacing:-16.921600pt;}
.ws10{word-spacing:-16.896000pt;}
.wse{word-spacing:-16.729600pt;}
.ws0{word-spacing:-16.704000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.971947pt;}
._3{width:2.381013pt;}
._2{width:3.298987pt;}
._7{width:4.659200pt;}
._8{width:6.243200pt;}
._4{width:7.861760pt;}
._5{width:8.855253pt;}
._9{width:10.039680pt;}
._6{width:11.262080pt;}
._a{width:12.923093pt;}
._14{width:13.963093pt;}
._d{width:15.017173pt;}
._c{width:15.936000pt;}
._b{width:18.003840pt;}
._15{width:19.095893pt;}
._18{width:20.034987pt;}
._19{width:20.929280pt;}
._13{width:22.082133pt;}
._12{width:23.213440pt;}
._f{width:24.913280pt;}
._10{width:26.224213pt;}
._11{width:27.196160pt;}
._1e{width:28.199253pt;}
._20{width:29.168427pt;}
._16{width:30.216320pt;}
._17{width:31.659520pt;}
._1f{width:34.368640pt;}
._1c{width:36.602880pt;}
._1d{width:37.635840pt;}
._1b{width:42.758400pt;}
._1a{width:43.824000pt;}
._e{width:175.129600pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y20e{bottom:-4.800000pt;}
.y20c{bottom:-4.640000pt;}
.y0{bottom:0.000000pt;}
.y159{bottom:3.040000pt;}
.y13a{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y6{bottom:4.000000pt;}
.y201{bottom:11.040000pt;}
.y204{bottom:18.720000pt;}
.y1ff{bottom:18.880000pt;}
.y4{bottom:22.560000pt;}
.y200{bottom:26.760000pt;}
.y206{bottom:34.400000pt;}
.y208{bottom:34.560000pt;}
.y202{bottom:34.600000pt;}
.y1d8{bottom:52.480000pt;}
.y234{bottom:52.800000pt;}
.y82{bottom:56.160000pt;}
.y17d{bottom:56.480000pt;}
.y23d{bottom:56.960000pt;}
.y1ab{bottom:57.760000pt;}
.ydc{bottom:59.520000pt;}
.y138{bottom:60.320000pt;}
.y147{bottom:65.120000pt;}
.y1d7{bottom:68.160000pt;}
.y233{bottom:68.480000pt;}
.y81{bottom:71.840000pt;}
.y17c{bottom:72.160000pt;}
.y23c{bottom:72.480000pt;}
.y1aa{bottom:73.440000pt;}
.ya6{bottom:73.760000pt;}
.y125{bottom:74.560000pt;}
.ydb{bottom:75.200000pt;}
.y43{bottom:75.680000pt;}
.y137{bottom:75.840000pt;}
.y10f{bottom:78.560000pt;}
.y146{bottom:80.800000pt;}
.y1d6{bottom:83.840000pt;}
.y232{bottom:84.160000pt;}
.y207{bottom:87.232000pt;}
.y80{bottom:87.552000pt;}
.y17b{bottom:87.872000pt;}
.y1a9{bottom:89.152000pt;}
.ya5{bottom:89.472000pt;}
.y124{bottom:90.112000pt;}
.yda{bottom:90.912000pt;}
.y42{bottom:91.232000pt;}
.y136{bottom:91.552000pt;}
.y10e{bottom:94.112000pt;}
.y145{bottom:96.512000pt;}
.y1d5{bottom:99.392000pt;}
.y231{bottom:99.872000pt;}
.y7f{bottom:103.232000pt;}
.y17a{bottom:103.392000pt;}
.y1a8{bottom:104.512000pt;}
.y23b{bottom:104.832000pt;}
.ya4{bottom:105.152000pt;}
.y123{bottom:105.792000pt;}
.yd9{bottom:106.432000pt;}
.y41{bottom:106.912000pt;}
.y135{bottom:107.232000pt;}
.y10d{bottom:109.792000pt;}
.y144{bottom:112.192000pt;}
.y1d4{bottom:115.072000pt;}
.y230{bottom:115.392000pt;}
.y7e{bottom:118.752000pt;}
.y179{bottom:118.912000pt;}
.y23a{bottom:120.512000pt;}
.ya3{bottom:120.832000pt;}
.y122{bottom:121.472000pt;}
.yd8{bottom:122.112000pt;}
.y40{bottom:122.592000pt;}
.y134{bottom:122.912000pt;}
.y1a7{bottom:124.192000pt;}
.y10c{bottom:125.472000pt;}
.y143{bottom:127.872000pt;}
.y1d3{bottom:130.752000pt;}
.y22f{bottom:131.072000pt;}
.y7d{bottom:134.426667pt;}
.y239{bottom:136.026667pt;}
.ya2{bottom:136.346667pt;}
.y121{bottom:137.146667pt;}
.yd7{bottom:137.786667pt;}
.y3f{bottom:138.266667pt;}
.y133{bottom:138.586667pt;}
.y10b{bottom:141.146667pt;}
.y142{bottom:143.386667pt;}
.y1a6{bottom:146.106667pt;}
.y1d2{bottom:146.426667pt;}
.y22e{bottom:146.746667pt;}
.y7c{bottom:149.946667pt;}
.ycf{bottom:150.106667pt;}
.ya1{bottom:152.026667pt;}
.y238{bottom:152.666667pt;}
.y120{bottom:152.826667pt;}
.yd6{bottom:153.466667pt;}
.y3e{bottom:153.946667pt;}
.y132{bottom:154.106667pt;}
.y10a{bottom:156.826667pt;}
.y141{bottom:159.066667pt;}
.y178{bottom:160.346667pt;}
.y1a5{bottom:161.626667pt;}
.y1d1{bottom:162.106667pt;}
.y22d{bottom:162.426667pt;}
.yce{bottom:165.786667pt;}
.y7b{bottom:166.586667pt;}
.ya0{bottom:167.706667pt;}
.y237{bottom:168.186667pt;}
.y11f{bottom:168.506667pt;}
.yd5{bottom:169.146667pt;}
.y3d{bottom:169.626667pt;}
.y131{bottom:169.786667pt;}
.y109{bottom:172.506667pt;}
.y140{bottom:174.746667pt;}
.y177{bottom:176.026667pt;}
.y1a4{bottom:177.306667pt;}
.y1d0{bottom:177.626667pt;}
.y22c{bottom:178.106667pt;}
.ycd{bottom:181.466667pt;}
.y7a{bottom:182.106667pt;}
.y9f{bottom:183.386667pt;}
.y236{bottom:183.866667pt;}
.y11e{bottom:184.026667pt;}
.yd4{bottom:184.666667pt;}
.y3c{bottom:185.146667pt;}
.y130{bottom:185.466667pt;}
.y108{bottom:188.026667pt;}
.y205{bottom:189.146667pt;}
.y13f{bottom:190.426667pt;}
.y176{bottom:191.706667pt;}
.y1a3{bottom:192.986667pt;}
.y1cf{bottom:193.306667pt;}
.y22b{bottom:193.626667pt;}
.ycc{bottom:196.986667pt;}
.y79{bottom:198.746667pt;}
.y9e{bottom:199.066667pt;}
.y235{bottom:199.386667pt;}
.y11d{bottom:199.706667pt;}
.yd3{bottom:200.346667pt;}
.y3b{bottom:200.826667pt;}
.y12f{bottom:201.146667pt;}
.y107{bottom:203.706667pt;}
.y13e{bottom:206.106667pt;}
.y175{bottom:207.386667pt;}
.yf9{bottom:208.506667pt;}
.y1a2{bottom:208.666667pt;}
.y1ce{bottom:208.986667pt;}
.y22a{bottom:209.306667pt;}
.ycb{bottom:212.666667pt;}
.y78{bottom:214.266667pt;}
.y9d{bottom:214.746667pt;}
.y11c{bottom:215.386667pt;}
.yd2{bottom:216.026667pt;}
.y106{bottom:216.346667pt;}
.y3a{bottom:216.506667pt;}
.y12e{bottom:216.826667pt;}
.y13d{bottom:221.626667pt;}
.y174{bottom:223.066667pt;}
.yf8{bottom:224.186667pt;}
.y1a1{bottom:224.346667pt;}
.y203{bottom:224.506667pt;}
.y1cd{bottom:224.666667pt;}
.y229{bottom:224.986667pt;}
.y11b{bottom:228.026667pt;}
.yca{bottom:228.346667pt;}
.y9c{bottom:230.266667pt;}
.y77{bottom:230.906667pt;}
.yd1{bottom:231.706667pt;}
.y39{bottom:232.186667pt;}
.y12d{bottom:232.506667pt;}
.y13c{bottom:237.306667pt;}
.y173{bottom:238.586667pt;}
.y1a0{bottom:239.706667pt;}
.yf7{bottom:239.866667pt;}
.y1cc{bottom:240.346667pt;}
.y228{bottom:240.666667pt;}
.yc9{bottom:244.026667pt;}
.y9b{bottom:245.946667pt;}
.y76{bottom:246.426667pt;}
.yd0{bottom:247.386667pt;}
.y38{bottom:247.866667pt;}
.y12c{bottom:248.026667pt;}
.y13b{bottom:252.826667pt;}
.y172{bottom:254.266667pt;}
.yf6{bottom:255.546667pt;}
.y1cb{bottom:256.026667pt;}
.y227{bottom:256.346667pt;}
.y19f{bottom:259.386667pt;}
.yc8{bottom:259.706667pt;}
.y9a{bottom:261.626667pt;}
.y75{bottom:263.066667pt;}
.y37{bottom:263.386667pt;}
.y12b{bottom:263.706667pt;}
.y171{bottom:269.946667pt;}
.yf5{bottom:271.226667pt;}
.y1ca{bottom:271.546667pt;}
.y226{bottom:272.026667pt;}
.y139{bottom:272.506667pt;}
.yc7{bottom:275.386667pt;}
.y267{bottom:276.986667pt;}
.y99{bottom:277.306667pt;}
.y74{bottom:278.586667pt;}
.y36{bottom:279.066667pt;}
.y12a{bottom:279.386667pt;}
.y19e{bottom:281.306667pt;}
.y170{bottom:285.466667pt;}
.yf4{bottom:286.746667pt;}
.y1c9{bottom:287.226667pt;}
.y225{bottom:287.546667pt;}
.yc6{bottom:290.906667pt;}
.y129{bottom:292.026667pt;}
.y266{bottom:292.666667pt;}
.y98{bottom:292.986667pt;}
.y73{bottom:294.266667pt;}
.y35{bottom:294.746667pt;}
.y1fe{bottom:295.066667pt;}
.y19d{bottom:296.826667pt;}
.yf3{bottom:302.426667pt;}
.y1c8{bottom:302.746667pt;}
.y224{bottom:303.226667pt;}
.y16f{bottom:305.146667pt;}
.yc5{bottom:306.586667pt;}
.y265{bottom:308.346667pt;}
.y97{bottom:308.506667pt;}
.y72{bottom:309.946667pt;}
.y34{bottom:310.426667pt;}
.y19c{bottom:312.506667pt;}
.yf2{bottom:318.146667pt;}
.y223{bottom:318.946667pt;}
.yc4{bottom:322.306667pt;}
.y1c7{bottom:322.466667pt;}
.y264{bottom:323.906667pt;}
.y96{bottom:324.226667pt;}
.y71{bottom:325.666667pt;}
.y33{bottom:326.146667pt;}
.y16e{bottom:326.946667pt;}
.y19b{bottom:328.066667pt;}
.yf1{bottom:333.826667pt;}
.y222{bottom:334.626667pt;}
.yc3{bottom:337.986667pt;}
.y263{bottom:339.586667pt;}
.y95{bottom:339.906667pt;}
.y70{bottom:341.346667pt;}
.y32{bottom:341.826667pt;}
.y1c6{bottom:342.146667pt;}
.y16d{bottom:342.626667pt;}
.y19a{bottom:347.746667pt;}
.y1fd{bottom:348.226667pt;}
.yf0{bottom:349.346667pt;}
.y221{bottom:350.306667pt;}
.yc2{bottom:353.666667pt;}
.y262{bottom:355.266667pt;}
.y94{bottom:355.586667pt;}
.y6f{bottom:356.866667pt;}
.y31{bottom:357.346667pt;}
.y16c{bottom:358.306667pt;}
.y1c5{bottom:361.666667pt;}
.y1fc{bottom:363.906667pt;}
.yef{bottom:365.826667pt;}
.yc1{bottom:369.186667pt;}
.y199{bottom:369.506667pt;}
.y261{bottom:370.946667pt;}
.y93{bottom:371.266667pt;}
.y6e{bottom:372.546667pt;}
.y30{bottom:373.026667pt;}
.y16b{bottom:373.826667pt;}
.y1fb{bottom:379.586667pt;}
.y1c4{bottom:381.346667pt;}
.y220{bottom:381.506667pt;}
.yee{bottom:382.466667pt;}
.yc0{bottom:384.866667pt;}
.y198{bottom:385.186667pt;}
.y260{bottom:386.626667pt;}
.y92{bottom:386.946667pt;}
.y6d{bottom:388.226667pt;}
.y2f{bottom:388.706667pt;}
.y16a{bottom:389.506667pt;}
.y1fa{bottom:395.266667pt;}
.y21f{bottom:397.186667pt;}
.yed{bottom:397.986667pt;}
.ybf{bottom:400.546667pt;}
.y197{bottom:400.866667pt;}
.y25f{bottom:402.306667pt;}
.y91{bottom:402.466667pt;}
.y1c3{bottom:403.266667pt;}
.y6c{bottom:403.906667pt;}
.y2e{bottom:404.386667pt;}
.y169{bottom:405.186667pt;}
.y1f9{bottom:410.786667pt;}
.y21e{bottom:412.866667pt;}
.yec{bottom:414.466667pt;}
.ybe{bottom:416.226667pt;}
.y196{bottom:416.546667pt;}
.y25e{bottom:417.826667pt;}
.y90{bottom:418.146667pt;}
.y1c2{bottom:418.786667pt;}
.y6b{bottom:419.586667pt;}
.y2d{bottom:420.066667pt;}
.y168{bottom:420.866667pt;}
.y1f8{bottom:426.466667pt;}
.y21d{bottom:428.546667pt;}
.yeb{bottom:430.946667pt;}
.ybd{bottom:431.906667pt;}
.y25d{bottom:433.506667pt;}
.y8f{bottom:433.826667pt;}
.y1c1{bottom:434.466667pt;}
.y6a{bottom:435.266667pt;}
.y2c{bottom:435.586667pt;}
.y167{bottom:436.386667pt;}
.y1f7{bottom:442.146667pt;}
.y21c{bottom:444.226667pt;}
.yea{bottom:447.426667pt;}
.ybc{bottom:447.586667pt;}
.y25c{bottom:449.186667pt;}
.y8e{bottom:449.506667pt;}
.y1c0{bottom:450.146667pt;}
.y69{bottom:450.786667pt;}
.y2b{bottom:451.266667pt;}
.y195{bottom:451.586667pt;}
.y166{bottom:455.906667pt;}
.y1f6{bottom:457.826667pt;}
.y21b{bottom:459.746667pt;}
.ybb{bottom:463.106667pt;}
.ye9{bottom:464.066667pt;}
.y25b{bottom:464.866667pt;}
.y8d{bottom:465.186667pt;}
.y1bf{bottom:465.826667pt;}
.y68{bottom:466.466667pt;}
.y2a{bottom:466.946667pt;}
.y194{bottom:473.506667pt;}
.y21a{bottom:475.426667pt;}
.y165{bottom:477.826667pt;}
.yba{bottom:478.786667pt;}
.ye8{bottom:479.586667pt;}
.y25a{bottom:480.546667pt;}
.y8c{bottom:480.706667pt;}
.y1be{bottom:481.506667pt;}
.y67{bottom:482.146667pt;}
.y29{bottom:482.626667pt;}
.y193{bottom:489.026667pt;}
.y219{bottom:491.106667pt;}
.y164{bottom:493.506667pt;}
.yb9{bottom:494.466667pt;}
.ye7{bottom:495.266667pt;}
.y259{bottom:496.066667pt;}
.y8b{bottom:496.386667pt;}
.y1bd{bottom:497.026667pt;}
.y66{bottom:497.826667pt;}
.y28{bottom:498.306667pt;}
.y192{bottom:504.706667pt;}
.y218{bottom:506.786667pt;}
.y163{bottom:509.026667pt;}
.yb8{bottom:510.146667pt;}
.ye6{bottom:510.946667pt;}
.y258{bottom:511.746667pt;}
.y8a{bottom:512.066667pt;}
.y1bc{bottom:512.706667pt;}
.y65{bottom:513.506667pt;}
.y27{bottom:513.986667pt;}
.y191{bottom:520.386667pt;}
.y217{bottom:522.466667pt;}
.y162{bottom:524.706667pt;}
.yb7{bottom:525.826667pt;}
.ye5{bottom:526.466667pt;}
.y257{bottom:527.426667pt;}
.y89{bottom:527.746667pt;}
.y1bb{bottom:528.386667pt;}
.y64{bottom:529.026667pt;}
.y26{bottom:529.506667pt;}
.y190{bottom:535.906667pt;}
.y1f5{bottom:536.066667pt;}
.y216{bottom:537.986667pt;}
.y161{bottom:540.386667pt;}
.yb6{bottom:541.346667pt;}
.ye4{bottom:543.106667pt;}
.y88{bottom:543.426667pt;}
.y1ba{bottom:544.066667pt;}
.y63{bottom:544.706667pt;}
.y25{bottom:545.186667pt;}
.y105{bottom:549.533333pt;}
.y1f4{bottom:551.773333pt;}
.y215{bottom:553.693333pt;}
.y18f{bottom:555.613333pt;}
.y160{bottom:556.093333pt;}
.yb5{bottom:557.053333pt;}
.ye3{bottom:558.813333pt;}
.y87{bottom:559.133333pt;}
.y1b9{bottom:559.773333pt;}
.y62{bottom:560.413333pt;}
.y24{bottom:560.893333pt;}
.y11a{bottom:561.053333pt;}
.y104{bottom:565.053333pt;}
.y1f3{bottom:567.453333pt;}
.y214{bottom:569.373333pt;}
.y15f{bottom:571.773333pt;}
.yb4{bottom:572.733333pt;}
.ye2{bottom:574.493333pt;}
.y86{bottom:574.653333pt;}
.y1b8{bottom:575.453333pt;}
.y61{bottom:576.093333pt;}
.y23{bottom:576.573333pt;}
.y119{bottom:576.733333pt;}
.y18e{bottom:577.373333pt;}
.y103{bottom:580.733333pt;}
.y1f2{bottom:582.973333pt;}
.y213{bottom:585.053333pt;}
.y15e{bottom:587.453333pt;}
.yb3{bottom:588.413333pt;}
.ye1{bottom:590.013333pt;}
.y85{bottom:590.333333pt;}
.y1b7{bottom:590.973333pt;}
.y60{bottom:591.773333pt;}
.y22{bottom:592.253333pt;}
.y118{bottom:592.413333pt;}
.y18d{bottom:593.053333pt;}
.y102{bottom:596.413333pt;}
.y1f1{bottom:598.653333pt;}
.y212{bottom:600.733333pt;}
.y15d{bottom:602.973333pt;}
.yb2{bottom:604.093333pt;}
.y256{bottom:605.693333pt;}
.y84{bottom:606.013333pt;}
.ye0{bottom:606.493333pt;}
.y1b6{bottom:606.653333pt;}
.y5f{bottom:607.453333pt;}
.y21{bottom:607.773333pt;}
.y117{bottom:608.093333pt;}
.y18c{bottom:608.733333pt;}
.y101{bottom:612.093333pt;}
.y1f0{bottom:614.333333pt;}
.y211{bottom:616.413333pt;}
.y83{bottom:618.493333pt;}
.y15c{bottom:618.653333pt;}
.yb1{bottom:619.773333pt;}
.y255{bottom:621.373333pt;}
.ydf{bottom:622.173333pt;}
.y5e{bottom:622.973333pt;}
.y20{bottom:623.453333pt;}
.y116{bottom:623.773333pt;}
.y18b{bottom:624.413333pt;}
.y100{bottom:627.773333pt;}
.y1ef{bottom:630.013333pt;}
.y210{bottom:631.773333pt;}
.y15b{bottom:634.333333pt;}
.yb0{bottom:635.293333pt;}
.y254{bottom:637.053333pt;}
.yde{bottom:637.853333pt;}
.y5d{bottom:638.653333pt;}
.y1f{bottom:639.133333pt;}
.y115{bottom:639.293333pt;}
.y18a{bottom:639.933333pt;}
.y1b5{bottom:641.853333pt;}
.yff{bottom:643.293333pt;}
.y1ee{bottom:645.533333pt;}
.y15a{bottom:650.173333pt;}
.yaf{bottom:650.973333pt;}
.y20f{bottom:651.453333pt;}
.y253{bottom:652.733333pt;}
.ydd{bottom:653.373333pt;}
.y5c{bottom:654.333333pt;}
.y1e{bottom:654.813333pt;}
.y114{bottom:654.973333pt;}
.y189{bottom:655.613333pt;}
.yfe{bottom:658.973333pt;}
.y1b4{bottom:661.533333pt;}
.y1ed{bottom:665.053333pt;}
.y158{bottom:665.533333pt;}
.yae{bottom:666.653333pt;}
.y252{bottom:668.253333pt;}
.y5b{bottom:670.013333pt;}
.y1d{bottom:670.493333pt;}
.y113{bottom:670.653333pt;}
.y188{bottom:671.133333pt;}
.yfd{bottom:674.653333pt;}
.y1b3{bottom:681.053333pt;}
.yad{bottom:682.173333pt;}
.y128{bottom:682.333333pt;}
.y251{bottom:683.933333pt;}
.y1ec{bottom:684.733333pt;}
.y157{bottom:685.053333pt;}
.y5a{bottom:685.693333pt;}
.y1c{bottom:686.173333pt;}
.y112{bottom:686.333333pt;}
.yfc{bottom:690.333333pt;}
.y187{bottom:690.813333pt;}
.y127{bottom:698.013333pt;}
.yac{bottom:698.813333pt;}
.y250{bottom:699.613333pt;}
.y1b2{bottom:700.733333pt;}
.y59{bottom:701.213333pt;}
.y1b{bottom:701.693333pt;}
.y111{bottom:702.013333pt;}
.y1eb{bottom:704.413333pt;}
.yfb{bottom:706.013333pt;}
.y156{bottom:706.973333pt;}
.y126{bottom:710.493333pt;}
.y186{bottom:712.573333pt;}
.yab{bottom:714.333333pt;}
.y110{bottom:714.493333pt;}
.y24f{bottom:715.293333pt;}
.y58{bottom:716.893333pt;}
.y1a{bottom:717.373333pt;}
.yfa{bottom:718.493333pt;}
.y155{bottom:722.653333pt;}
.y1ea{bottom:726.173333pt;}
.y185{bottom:728.253333pt;}
.y20d{bottom:730.013333pt;}
.yaa{bottom:730.973333pt;}
.y57{bottom:732.573333pt;}
.y19{bottom:733.693333pt;}
.y154{bottom:738.173333pt;}
.y1e9{bottom:741.853333pt;}
.y184{bottom:743.933333pt;}
.ya9{bottom:746.493333pt;}
.y24e{bottom:746.653333pt;}
.y56{bottom:748.253333pt;}
.y18{bottom:749.373333pt;}
.y20b{bottom:749.693333pt;}
.y153{bottom:753.853333pt;}
.y1e8{bottom:757.533333pt;}
.y183{bottom:759.613333pt;}
.y24d{bottom:762.173333pt;}
.ya8{bottom:763.133333pt;}
.y55{bottom:763.933333pt;}
.y17{bottom:765.053333pt;}
.y20a{bottom:769.373333pt;}
.y152{bottom:769.533333pt;}
.y1e7{bottom:773.213333pt;}
.y182{bottom:775.133333pt;}
.y24c{bottom:777.893333pt;}
.ya7{bottom:778.693333pt;}
.y54{bottom:779.653333pt;}
.y16{bottom:780.773333pt;}
.y151{bottom:785.253333pt;}
.y1e6{bottom:788.933333pt;}
.y209{bottom:789.093333pt;}
.y181{bottom:790.693333pt;}
.y24b{bottom:793.573333pt;}
.y53{bottom:795.173333pt;}
.y15{bottom:796.293333pt;}
.y150{bottom:800.933333pt;}
.y1e5{bottom:804.613333pt;}
.y24a{bottom:809.253333pt;}
.y180{bottom:810.373333pt;}
.y52{bottom:810.853333pt;}
.y14{bottom:811.973333pt;}
.y14f{bottom:816.613333pt;}
.y1e4{bottom:820.133333pt;}
.y249{bottom:824.933333pt;}
.y51{bottom:826.533333pt;}
.y13{bottom:827.653333pt;}
.y14e{bottom:832.133333pt;}
.y1e3{bottom:835.813333pt;}
.y248{bottom:840.453333pt;}
.y50{bottom:842.213333pt;}
.y12{bottom:843.333333pt;}
.y14d{bottom:847.813333pt;}
.y1e2{bottom:851.493333pt;}
.y247{bottom:856.133333pt;}
.y4f{bottom:857.893333pt;}
.y11{bottom:859.013333pt;}
.y14c{bottom:863.493333pt;}
.y1e1{bottom:867.173333pt;}
.y246{bottom:871.813333pt;}
.y4e{bottom:873.573333pt;}
.y10{bottom:874.693333pt;}
.y14b{bottom:879.173333pt;}
.y1e0{bottom:882.853333pt;}
.y245{bottom:887.493333pt;}
.y4d{bottom:889.093333pt;}
.yf{bottom:890.213333pt;}
.y17f{bottom:894.693333pt;}
.y14a{bottom:894.853333pt;}
.y1df{bottom:898.373333pt;}
.y244{bottom:903.173333pt;}
.y4c{bottom:904.773333pt;}
.ye{bottom:905.893333pt;}
.y149{bottom:910.213333pt;}
.y1b1{bottom:910.373333pt;}
.y1de{bottom:914.053333pt;}
.y17e{bottom:914.213333pt;}
.y243{bottom:918.853333pt;}
.y4b{bottom:920.453333pt;}
.yd{bottom:921.573333pt;}
.y1b0{bottom:926.053333pt;}
.y1dd{bottom:929.573333pt;}
.y148{bottom:929.893333pt;}
.y242{bottom:934.373333pt;}
.y4a{bottom:936.133333pt;}
.yc{bottom:939.173333pt;}
.y1af{bottom:941.733333pt;}
.y1dc{bottom:949.253333pt;}
.y241{bottom:950.853333pt;}
.y49{bottom:951.813333pt;}
.yb{bottom:954.853333pt;}
.y1ae{bottom:957.413333pt;}
.y240{bottom:966.533333pt;}
.y48{bottom:967.333333pt;}
.y1db{bottom:968.933333pt;}
.ya{bottom:971.173333pt;}
.y1ad{bottom:972.933333pt;}
.y23f{bottom:982.213333pt;}
.y47{bottom:983.013333pt;}
.y1da{bottom:988.453333pt;}
.y9{bottom:989.893333pt;}
.y1ac{bottom:992.453333pt;}
.y23e{bottom:997.733333pt;}
.y46{bottom:998.693333pt;}
.y1d9{bottom:1008.160000pt;}
.y8{bottom:1008.640000pt;}
.y45{bottom:1014.400000pt;}
.y7{bottom:1027.520000pt;}
.y44{bottom:1030.080000pt;}
.y3{bottom:1045.920000pt;}
.y2{bottom:1063.200000pt;}
.y1{bottom:1080.320000pt;}
.hb{height:15.520000pt;}
.hc{height:15.552000pt;}
.ha{height:15.680000pt;}
.hd{height:15.712000pt;}
.h4{height:17.120000pt;}
.h10{height:31.200000pt;}
.hf{height:31.360000pt;}
.h7{height:38.050313pt;}
.h8{height:38.076250pt;}
.h2{height:42.205000pt;}
.h6{height:45.875000pt;}
.h11{height:46.880000pt;}
.h12{height:47.040000pt;}
.he{height:47.072000pt;}
.h9{height:54.598989pt;}
.h5{height:58.563750pt;}
.h3{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:54.592000pt;}
.w43{width:64.160000pt;}
.w3b{width:75.360000pt;}
.w32{width:76.000000pt;}
.w42{width:77.312000pt;}
.w2f{width:80.352000pt;}
.w35{width:83.232000pt;}
.w41{width:83.360000pt;}
.w1d{width:90.560000pt;}
.w1c{width:90.592000pt;}
.w1b{width:90.720000pt;}
.we{width:93.120000pt;}
.wf{width:93.152000pt;}
.w8{width:93.312000pt;}
.w7{width:93.440000pt;}
.w6{width:93.472000pt;}
.w5{width:93.600000pt;}
.w11{width:94.080000pt;}
.w12{width:94.112000pt;}
.w44{width:96.512000pt;}
.w3a{width:98.432000pt;}
.w27{width:98.880000pt;}
.w28{width:98.912000pt;}
.w29{width:99.072000pt;}
.wa{width:99.712000pt;}
.wb{width:99.840000pt;}
.wc{width:99.872000pt;}
.w1f{width:102.752000pt;}
.w20{width:102.880000pt;}
.w21{width:102.912000pt;}
.w16{width:104.512000pt;}
.w15{width:104.640000pt;}
.w14{width:104.672000pt;}
.w25{width:105.760000pt;}
.w24{width:105.792000pt;}
.w23{width:105.952000pt;}
.w2b{width:111.072000pt;}
.w2c{width:111.200000pt;}
.w2d{width:111.232000pt;}
.w40{width:113.472000pt;}
.w19{width:114.080000pt;}
.w18{width:114.112000pt;}
.w17{width:119.872000pt;}
.w3c{width:125.312000pt;}
.w39{width:127.872000pt;}
.w3e{width:131.552000pt;}
.w3d{width:131.712000pt;}
.w2a{width:133.946667pt;}
.w37{width:145.760000pt;}
.w30{width:160.506667pt;}
.w22{width:160.826667pt;}
.w13{width:166.746667pt;}
.w1e{width:176.026667pt;}
.w38{width:182.906667pt;}
.w9{width:191.226667pt;}
.w26{width:195.106667pt;}
.w33{width:211.266667pt;}
.w10{width:219.426667pt;}
.w4{width:222.786667pt;}
.wd{width:224.226667pt;}
.w1a{width:236.866667pt;}
.w3f{width:254.786667pt;}
.w31{width:301.026667pt;}
.w2e{width:319.106667pt;}
.w36{width:367.453333pt;}
.w34{width:614.693333pt;}
.w2{width:653.253333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x96{left:3.520000pt;}
.x92{left:4.480000pt;}
.x98{left:6.240000pt;}
.x5{left:7.680000pt;}
.x88{left:10.880000pt;}
.x77{left:12.160000pt;}
.x9b{left:13.280000pt;}
.x6e{left:14.240000pt;}
.x89{left:15.360000pt;}
.x8f{left:16.320000pt;}
.x1a{left:17.600000pt;}
.x79{left:19.360000pt;}
.x6c{left:20.480000pt;}
.x72{left:21.440000pt;}
.x7{left:22.400000pt;}
.x90{left:24.960000pt;}
.x70{left:26.400000pt;}
.x4a{left:27.840000pt;}
.x1e{left:29.280000pt;}
.x8e{left:30.560000pt;}
.x26{left:32.200000pt;}
.x37{left:34.600000pt;}
.x86{left:35.712000pt;}
.x82{left:36.800000pt;}
.x23{left:38.560000pt;}
.x91{left:40.032000pt;}
.x2c{left:41.480000pt;}
.x4{left:43.040000pt;}
.x3d{left:44.200000pt;}
.x8b{left:45.600000pt;}
.x1c{left:47.040000pt;}
.x8{left:48.000000pt;}
.x71{left:49.786667pt;}
.x65{left:51.552000pt;}
.x45{left:52.800000pt;}
.x43{left:53.792000pt;}
.x5e{left:56.192000pt;}
.x3c{left:57.952000pt;}
.x57{left:61.312000pt;}
.x9a{left:62.272000pt;}
.x59{left:64.992000pt;}
.x2b{left:65.952000pt;}
.x30{left:68.672000pt;}
.x10{left:72.000000pt;}
.x84{left:74.880000pt;}
.x4f{left:77.632000pt;}
.x24{left:80.192000pt;}
.x60{left:82.112000pt;}
.x78{left:85.472000pt;}
.x31{left:94.266667pt;}
.x11{left:96.032000pt;}
.x7a{left:97.000000pt;}
.x48{left:102.906667pt;}
.x83{left:118.586667pt;}
.x14{left:120.032000pt;}
.x74{left:122.266667pt;}
.x93{left:129.472000pt;}
.x6b{left:131.226667pt;}
.x80{left:155.386667pt;}
.xf{left:159.226667pt;}
.x3e{left:168.826667pt;}
.x1{left:171.386667pt;}
.x87{left:176.826667pt;}
.x1b{left:182.586667pt;}
.xd{left:184.026667pt;}
.x13{left:187.066667pt;}
.x7d{left:195.906667pt;}
.x7e{left:204.546667pt;}
.x9{left:207.226667pt;}
.xb{left:208.346667pt;}
.x58{left:209.626667pt;}
.x51{left:213.146667pt;}
.x18{left:215.226667pt;}
.x5f{left:219.546667pt;}
.x36{left:222.586667pt;}
.x52{left:224.986667pt;}
.x16{left:228.666667pt;}
.x3{left:231.546667pt;}
.x2d{left:234.586667pt;}
.x50{left:235.706667pt;}
.x64{left:237.146667pt;}
.x25{left:240.346667pt;}
.x7b{left:242.626667pt;}
.x17{left:244.386667pt;}
.x47{left:246.146667pt;}
.x6a{left:248.546667pt;}
.xa{left:249.826667pt;}
.x19{left:263.106667pt;}
.x32{left:268.546667pt;}
.x1d{left:271.746667pt;}
.x2e{left:273.346667pt;}
.x85{left:276.706667pt;}
.x44{left:278.146667pt;}
.x73{left:279.906667pt;}
.x7f{left:281.826667pt;}
.x3f{left:284.866667pt;}
.x49{left:285.826667pt;}
.x46{left:286.786667pt;}
.x66{left:296.226667pt;}
.x94{left:303.906667pt;}
.x2{left:308.706667pt;}
.x5a{left:317.666667pt;}
.x38{left:322.466667pt;}
.x53{left:329.826667pt;}
.x27{left:341.986667pt;}
.x61{left:345.186667pt;}
.xc{left:348.866667pt;}
.x75{left:350.146667pt;}
.x8a{left:354.466667pt;}
.x33{left:364.546667pt;}
.x1f{left:367.266667pt;}
.x2f{left:368.386667pt;}
.x4b{left:378.466667pt;}
.xe{left:383.426667pt;}
.x40{left:400.866667pt;}
.x67{left:409.373333pt;}
.x81{left:416.413333pt;}
.x95{left:419.453333pt;}
.x5b{left:425.533333pt;}
.x39{left:429.053333pt;}
.x54{left:434.493333pt;}
.x28{left:443.613333pt;}
.x62{left:446.173333pt;}
.x76{left:457.853333pt;}
.x34{left:460.733333pt;}
.x20{left:462.653333pt;}
.x4c{left:471.133333pt;}
.x8c{left:481.693333pt;}
.x6d{left:504.093333pt;}
.x41{left:516.893333pt;}
.x68{left:522.493333pt;}
.x5c{left:533.213333pt;}
.x3a{left:535.613333pt;}
.x55{left:539.293333pt;}
.x29{left:545.373333pt;}
.x63{left:546.973333pt;}
.x35{left:556.733333pt;}
.x21{left:558.173333pt;}
.x4d{left:563.653333pt;}
.x97{left:584.133333pt;}
.x6f{left:586.373333pt;}
.x8d{left:615.333333pt;}
.x42{left:632.933333pt;}
.x69{left:635.653333pt;}
.x5d{left:641.093333pt;}
.x3b{left:642.373333pt;}
.x56{left:644.133333pt;}
.x2a{left:647.173333pt;}
.x99{left:650.373333pt;}
.x22{left:653.573333pt;}
.x4e{left:656.293333pt;}
.x7c{left:663.653333pt;}
.x6{left:696.293333pt;}
.x12{left:707.973333pt;}
.x15{left:708.933333pt;}
}




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