
    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_720499841f6007b4e8979b07.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4ac1a526cefc6a01930e9c6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_04d8e42eedb13dbed57340ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ae36b392e101e7fbe2f80d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d413703738d2892b943c04cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.068000;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_5a59d8ddf35898f38aace2f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_800c317130ba8d9158d3ad93.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.748000;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_aa9b8164941f6228c64a318e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6444848785837db8dc320384.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_45a7d75ced959c5f63e2fdef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ed4b98cb703218b707814739.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f7cca75f7cb8e25b00a92573.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_319618e7b8f350aeb3fe72d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7d33d8d4b9c781355a663244.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_740e86f4843b6e7df0187d50.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1fcba8a12749dad8512c0389.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1d{vertical-align:-41.760000px;}
.v1c{vertical-align:-25.920000px;}
.v16{vertical-align:-21.600000px;}
.v19{vertical-align:-18.720000px;}
.v18{vertical-align:-17.280000px;}
.vd{vertical-align:-15.840000px;}
.v14{vertical-align:-14.400000px;}
.v12{vertical-align:-12.960000px;}
.v10{vertical-align:-11.520000px;}
.vc{vertical-align:-10.080000px;}
.va{vertical-align:-8.640000px;}
.v9{vertical-align:-7.200000px;}
.v15{vertical-align:-5.760000px;}
.vf{vertical-align:-4.320000px;}
.v13{vertical-align:-2.880000px;}
.v6{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.440000px;}
.v2{vertical-align:2.880000px;}
.v3{vertical-align:4.320000px;}
.vb{vertical-align:5.760000px;}
.v8{vertical-align:7.200000px;}
.v7{vertical-align:8.640000px;}
.v4{vertical-align:10.080000px;}
.v5{vertical-align:11.520000px;}
.v11{vertical-align:12.960000px;}
.v17{vertical-align:14.400000px;}
.v1a{vertical-align:15.840000px;}
.ve{vertical-align:17.280000px;}
.v1e{vertical-align:27.360000px;}
.v1b{vertical-align:48.960000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:226.587000px;}
.ws4{word-spacing:303.894000px;}
.ws3{word-spacing:370.845000px;}
.ws1{word-spacing:432.492000px;}
._f{margin-left:-1.008000px;}
._4{width:1.728000px;}
._3{width:3.420000px;}
._5{width:4.518000px;}
._1{width:5.760000px;}
._7{width:7.530000px;}
._2{width:9.165000px;}
._0{width:10.992000px;}
._9{width:12.756000px;}
._6{width:14.298000px;}
._b{width:15.759000px;}
._a{width:16.794000px;}
._8{width:18.822000px;}
._c{width:22.368000px;}
._e{width:24.246000px;}
._10{width:26.352000px;}
._11{width:30.507000px;}
._13{width:33.210000px;}
._15{width:36.288000px;}
._12{width:56.205000px;}
._14{width:101.283000px;}
._d{width:540.453000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fsf{font-size:21.000000px;}
.fs16{font-size:24.000000px;}
.fs11{font-size:27.000000px;}
.fs12{font-size:30.000000px;}
.fs10{font-size:33.000000px;}
.fs15{font-size:36.000000px;}
.fs14{font-size:39.000000px;}
.fs13{font-size:42.000000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1b{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs1d{font-size:66.000000px;}
.fs1c{font-size:69.000000px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:75.000000px;}
.fs1e{font-size:78.000000px;}
.fs18{font-size:81.000000px;}
.fs17{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs1a{font-size:93.000000px;}
.fs1f{font-size:99.000000px;}
.fsc{font-size:117.000000px;}
.fsb{font-size:147.000000px;}
.fsd{font-size:171.000000px;}
.fsa{font-size:198.000000px;}
.fse{font-size:207.000000px;}
.fs7{font-size:210.000000px;}
.fs9{font-size:228.000000px;}
.y0{bottom:0.000000px;}
.y15{bottom:0.496050px;}
.y14{bottom:18.856050px;}
.y13{bottom:59.176050px;}
.y25e{bottom:63.496050px;}
.y25d{bottom:79.336050px;}
.y12{bottom:83.296050px;}
.y25c{bottom:96.616050px;}
.y25b{bottom:103.816050px;}
.y244{bottom:105.616500px;}
.y146{bottom:106.696050px;}
.y1a1{bottom:109.216500px;}
.y224{bottom:109.576050px;}
.y7{bottom:112.816050px;}
.y208{bottom:113.896500px;}
.y1ff{bottom:114.256500px;}
.y17{bottom:117.136050px;}
.y51{bottom:117.496050px;}
.y145{bottom:120.376050px;}
.y1a0{bottom:124.336500px;}
.y223{bottom:125.056050px;}
.y243{bottom:125.416500px;}
.y11{bottom:127.576050px;}
.y207{bottom:130.096500px;}
.y11c{bottom:130.456050px;}
.y50{bottom:131.176050px;}
.y6{bottom:133.696050px;}
.y175{bottom:134.056050px;}
.y1fe{bottom:134.056500px;}
.y144{bottom:136.576050px;}
.y225{bottom:136.936050px;}
.y10{bottom:138.376050px;}
.y222{bottom:140.176050px;}
.y16{bottom:141.256050px;}
.y19f{bottom:142.336500px;}
.y11b{bottom:144.136050px;}
.y4f{bottom:144.856050px;}
.y242{bottom:144.856500px;}
.y174{bottom:147.376050px;}
.yf{bottom:149.176050px;}
.yae{bottom:150.256050px;}
.y206{bottom:150.256500px;}
.y1fd{bottom:153.496500px;}
.y11a{bottom:157.816050px;}
.y221{bottom:158.176050px;}
.y4e{bottom:160.696050px;}
.y173{bottom:161.056050px;}
.y241{bottom:164.656500px;}
.yad{bottom:166.096050px;}
.y205{bottom:166.456500px;}
.y143{bottom:167.176050px;}
.y256{bottom:173.296050px;}
.y1fc{bottom:173.296500px;}
.y119{bottom:173.656050px;}
.y21f{bottom:175.816050px;}
.y172{bottom:177.976050px;}
.y142{bottom:180.136050px;}
.y204{bottom:181.936500px;}
.y240{bottom:184.456500px;}
.y118{bottom:186.976050px;}
.y4d{bottom:187.696050px;}
.y171{bottom:190.936050px;}
.y195{bottom:191.296500px;}
.y255{bottom:192.736050px;}
.y1fb{bottom:192.736500px;}
.y21e{bottom:195.256050px;}
.y141{bottom:196.336050px;}
.yac{bottom:197.776050px;}
.y117{bottom:201.016050px;}
.y4c{bottom:201.376050px;}
.y203{bottom:202.096500px;}
.y23f{bottom:203.896500px;}
.y170{bottom:207.496050px;}
.y140{bottom:209.656050px;}
.y194{bottom:210.736500px;}
.y254{bottom:212.536050px;}
.y1fa{bottom:212.536500px;}
.yab{bottom:213.256050px;}
.y21d{bottom:214.696050px;}
.y116{bottom:216.496050px;}
.y4b{bottom:217.216050px;}
.y202{bottom:217.936500px;}
.y16f{bottom:220.456050px;}
.y1e1{bottom:224.776050px;}
.y13f{bottom:225.856050px;}
.yaa{bottom:229.096050px;}
.y23e{bottom:229.816500px;}
.y115{bottom:230.176050px;}
.y193{bottom:230.176500px;}
.y253{bottom:231.976050px;}
.y1f9{bottom:231.976500px;}
.y16e{bottom:236.656050px;}
.y201{bottom:237.736500px;}
.y21c{bottom:240.616050px;}
.y13e{bottom:242.056050px;}
.ya9{bottom:242.416050px;}
.y114{bottom:243.856050px;}
.y4a{bottom:244.216050px;}
.y23d{bottom:249.256500px;}
.y1c4{bottom:249.616500px;}
.y192{bottom:249.976500px;}
.y252{bottom:251.776050px;}
.y1f8{bottom:251.776500px;}
.y16d{bottom:252.856050px;}
.y200{bottom:253.576500px;}
.y49{bottom:257.896050px;}
.ya8{bottom:258.256050px;}
.y113{bottom:259.336050px;}
.y21b{bottom:260.416050px;}
.y1df{bottom:261.856050px;}
.y16c{bottom:268.696050px;}
.y23c{bottom:268.696500px;}
.y1c3{bottom:269.056500px;}
.y191{bottom:269.416500px;}
.y48{bottom:271.216050px;}
.y1f7{bottom:271.216500px;}
.y13d{bottom:271.936050px;}
.y112{bottom:272.656050px;}
.ya7{bottom:274.096050px;}
.y1af{bottom:277.336050px;}
.y17c{bottom:277.696500px;}
.y220{bottom:279.496050px;}
.y21a{bottom:279.856050px;}
.y1de{bottom:281.296050px;}
.y16b{bottom:282.376050px;}
.y1cc{bottom:284.176500px;}
.y47{bottom:284.896050px;}
.y1e2{bottom:285.976500px;}
.y111{bottom:286.336050px;}
.y13c{bottom:287.776050px;}
.y1b0{bottom:288.496050px;}
.y23b{bottom:288.496500px;}
.y190{bottom:288.856500px;}
.ya6{bottom:289.576050px;}
.y1e0{bottom:290.296050px;}
.y251{bottom:290.656050px;}
.y257{bottom:292.456050px;}
.y7b{bottom:293.176050px;}
.y46{bottom:296.056050px;}
.yea{bottom:296.776050px;}
.y1f6{bottom:297.136500px;}
.y16a{bottom:298.576050px;}
.y219{bottom:299.296050px;}
.y1dd{bottom:300.736050px;}
.y13b{bottom:301.456050px;}
.y110{bottom:302.176050px;}
.ya5{bottom:302.896050px;}
.y7a{bottom:306.496050px;}
.y23a{bottom:307.936500px;}
.y18f{bottom:308.296500px;}
.ye9{bottom:310.456050px;}
.y45{bottom:311.896050px;}
.y169{bottom:314.776050px;}
.y10f{bottom:315.856050px;}
.ya4{bottom:316.576050px;}
.y1f5{bottom:316.576500px;}
.y13a{bottom:317.656050px;}
.y79{bottom:318.016050px;}
.y218{bottom:318.736050px;}
.y1dc{bottom:320.176050px;}
.ye8{bottom:324.496050px;}
.y44{bottom:327.376050px;}
.y168{bottom:328.096050px;}
.y18e{bottom:328.096500px;}
.y10e{bottom:331.336050px;}
.ya3{bottom:332.056050px;}
.y78{bottom:333.496050px;}
.y239{bottom:333.856500px;}
.y1c2{bottom:334.216500px;}
.y1ae{bottom:336.016050px;}
.y1f4{bottom:336.016500px;}
.y217{bottom:338.536050px;}
.y1db{bottom:339.976050px;}
.ye7{bottom:342.856050px;}
.y167{bottom:344.296050px;}
.y10d{bottom:345.016050px;}
.y139{bottom:347.176050px;}
.y18d{bottom:347.536500px;}
.ya2{bottom:347.896050px;}
.y77{bottom:349.336050px;}
.y1c1{bottom:353.656500px;}
.y43{bottom:354.376050px;}
.y238{bottom:354.736500px;}
.y1ad{bottom:355.456050px;}
.y1f3{bottom:355.456500px;}
.ye6{bottom:358.696050px;}
.y1da{bottom:359.416050px;}
.y10c{bottom:360.496050px;}
.ya1{bottom:361.216050px;}
.y250{bottom:361.576500px;}
.y138{bottom:363.376050px;}
.y216{bottom:364.096050px;}
.y18c{bottom:366.976500px;}
.y42{bottom:368.056050px;}
.ye5{bottom:372.016050px;}
.y237{bottom:372.736500px;}
.y1c0{bottom:373.096500px;}
.y10b{bottom:373.816050px;}
.y1f2{bottom:374.896500px;}
.y1ac{bottom:375.256050px;}
.y166{bottom:376.336050px;}
.ya0{bottom:376.696050px;}
.y24f{bottom:377.056500px;}
.y1d9{bottom:378.856050px;}
.y76{bottom:380.296050px;}
.y41{bottom:381.376050px;}
.y1cb{bottom:382.816500px;}
.y215{bottom:383.896050px;}
.ye4{bottom:385.696050px;}
.y18b{bottom:386.416500px;}
.y10a{bottom:387.496050px;}
.y165{bottom:390.016050px;}
.y236{bottom:392.176500px;}
.y9f{bottom:392.536050px;}
.y1bf{bottom:392.536500px;}
.y137{bottom:392.896050px;}
.y24e{bottom:392.896500px;}
.y75{bottom:393.976050px;}
.y1ab{bottom:394.336050px;}
.y1f1{bottom:394.336500px;}
.y40{bottom:397.216050px;}
.y1d8{bottom:398.296050px;}
.y109{bottom:401.176050px;}
.ye3{bottom:401.896050px;}
.y1ca{bottom:402.976500px;}
.y214{bottom:403.336050px;}
.y18a{bottom:405.856500px;}
.y164{bottom:406.216050px;}
.y9e{bottom:408.016050px;}
.y136{bottom:409.096050px;}
.y74{bottom:409.816050px;}
.y235{bottom:411.976500px;}
.y1be{bottom:412.336500px;}
.y24d{bottom:412.696500px;}
.y1f0{bottom:413.776500px;}
.y1aa{bottom:414.136050px;}
.ye2{bottom:415.216050px;}
.y108{bottom:417.016050px;}
.y1d7{bottom:417.736050px;}
.y1c9{bottom:418.816500px;}
.y163{bottom:419.536050px;}
.y213{bottom:421.336050px;}
.y9d{bottom:421.696050px;}
.y3f{bottom:424.216050px;}
.y135{bottom:424.936050px;}
.y189{bottom:425.296500px;}
.y24c{bottom:428.536500px;}
.y107{bottom:430.336050px;}
.ye1{bottom:431.416050px;}
.y234{bottom:431.416500px;}
.y162{bottom:433.216050px;}
.y1ef{bottom:433.576500px;}
.y9c{bottom:435.016050px;}
.y1d6{bottom:437.176050px;}
.y1bd{bottom:437.896500px;}
.y1c8{bottom:438.616500px;}
.y3e{bottom:439.696050px;}
.y73{bottom:440.776050px;}
.y134{bottom:441.136050px;}
.y24b{bottom:444.376500px;}
.ye0{bottom:445.096050px;}
.y188{bottom:445.096500px;}
.y106{bottom:446.176050px;}
.y161{bottom:449.056050px;}
.y9b{bottom:450.856050px;}
.y233{bottom:450.856500px;}
.y1ee{bottom:453.016500px;}
.y72{bottom:456.616050px;}
.y1d5{bottom:456.976050px;}
.y133{bottom:457.336050px;}
.y1c7{bottom:458.416500px;}
.y1bc{bottom:459.136500px;}
.y105{bottom:459.496050px;}
.y24a{bottom:459.856500px;}
.y212{bottom:460.216050px;}
.ydf{bottom:460.936050px;}
.y9a{bottom:464.536050px;}
.y187{bottom:464.536500px;}
.y160{bottom:465.616050px;}
.y3d{bottom:466.696050px;}
.y232{bottom:470.296500px;}
.yde{bottom:472.456050px;}
.y1ed{bottom:472.456500px;}
.y104{bottom:474.976050px;}
.y249{bottom:475.696500px;}
.y1bb{bottom:477.136500px;}
.y99{bottom:477.856050px;}
.y1c6{bottom:478.576500px;}
.y1a9{bottom:478.936050px;}
.y211{bottom:479.656050px;}
.y3c{bottom:480.376050px;}
.y15f{bottom:481.456050px;}
.y1d4{bottom:482.896050px;}
.y71{bottom:483.976050px;}
.y103{bottom:488.656050px;}
.y231{bottom:489.736500px;}
.y186{bottom:490.456500px;}
.ydd{bottom:490.816050px;}
.y248{bottom:491.536500px;}
.y1ec{bottom:491.896500px;}
.y3b{bottom:493.696050px;}
.y1c5{bottom:494.416500px;}
.y15e{bottom:495.136050px;}
.y1ba{bottom:496.576500px;}
.y70{bottom:497.656050px;}
.y1a8{bottom:498.376050px;}
.y210{bottom:499.456050px;}
.y1d3{bottom:502.336050px;}
.y102{bottom:504.496050px;}
.y19e{bottom:505.576500px;}
.ydc{bottom:506.656050px;}
.y98{bottom:507.016050px;}
.y3a{bottom:507.376050px;}
.y230{bottom:509.536500px;}
.y185{bottom:509.896500px;}
.y6f{bottom:510.616050px;}
.y15d{bottom:511.336050px;}
.y1eb{bottom:511.696500px;}
.y1b9{bottom:516.016500px;}
.y101{bottom:518.176050px;}
.y20f{bottom:518.896050px;}
.ydb{bottom:520.336050px;}
.y39{bottom:521.416050px;}
.y1d2{bottom:521.776050px;}
.y19d{bottom:521.776500px;}
.y97{bottom:522.856050px;}
.y15c{bottom:524.656050px;}
.y6e{bottom:526.096050px;}
.y22f{bottom:528.976500px;}
.y184{bottom:529.696500px;}
.y1ea{bottom:530.776500px;}
.y247{bottom:532.216500px;}
.y100{bottom:533.656050px;}
.y38{bottom:534.376050px;}
.y1b8{bottom:535.816500px;}
.yda{bottom:536.536050px;}
.y1a7{bottom:537.616050px;}
.y96{bottom:538.336050px;}
.y15b{bottom:540.856050px;}
.y1d1{bottom:541.216050px;}
.y19c{bottom:541.576500px;}
.y20e{bottom:545.176050px;}
.yff{bottom:547.336050px;}
.y246{bottom:547.336500px;}
.y37{bottom:548.056050px;}
.y22e{bottom:548.416500px;}
.y183{bottom:549.136500px;}
.yd9{bottom:549.856050px;}
.y132{bottom:551.296050px;}
.y1e9{bottom:552.016500px;}
.y6d{bottom:553.456050px;}
.y95{bottom:553.816050px;}
.y15a{bottom:554.536050px;}
.y1b7{bottom:555.256500px;}
.y1a6{bottom:557.056050px;}
.y19b{bottom:557.416500px;}
.y1d0{bottom:560.656050px;}
.yfe{bottom:562.816050px;}
.y36{bottom:563.536050px;}
.y25a{bottom:563.896050px;}
.y20d{bottom:564.616050px;}
.yc3{bottom:566.056050px;}
.y6c{bottom:566.776050px;}
.y245{bottom:567.496500px;}
.y131{bottom:567.856050px;}
.y22d{bottom:567.856500px;}
.y182{bottom:568.576500px;}
.y94{bottom:569.656050px;}
.y1e8{bottom:570.016500px;}
.y159{bottom:570.376050px;}
.y1b6{bottom:575.056500px;}
.y1a5{bottom:576.496050px;}
.y19a{bottom:577.576500px;}
.yfd{bottom:578.656050px;}
.yd8{bottom:579.736050px;}
.y130{bottom:580.456050px;}
.yc2{bottom:581.896050px;}
.y6b{bottom:582.616050px;}
.y20c{bottom:584.056050px;}
.y93{bottom:585.496050px;}
.y158{bottom:586.576050px;}
.y22c{bottom:587.656500px;}
.y181{bottom:588.016500px;}
.y1e7{bottom:589.456500px;}
.y35{bottom:590.536050px;}
.yfc{bottom:591.976050px;}
.y1b5{bottom:594.136500px;}
.yd7{bottom:595.576050px;}
.y12f{bottom:596.296050px;}
.y199{bottom:597.376500px;}
.y92{bottom:598.816050px;}
.y1cf{bottom:599.896050px;}
.y157{bottom:600.256050px;}
.y20b{bottom:603.496050px;}
.y34{bottom:604.216050px;}
.yfb{bottom:607.816050px;}
.y180{bottom:607.816500px;}
.yd6{bottom:609.256050px;}
.y1e6{bottom:609.256500px;}
.y6a{bottom:609.616050px;}
.yc1{bottom:612.856050px;}
.y198{bottom:613.216500px;}
.y22b{bottom:613.576500px;}
.y1b4{bottom:613.936500px;}
.y91{bottom:614.656050px;}
.y1a4{bottom:615.736050px;}
.y156{bottom:616.456050px;}
.y33{bottom:617.896050px;}
.y1ce{bottom:619.696050px;}
.yfa{bottom:621.496050px;}
.y20a{bottom:622.936050px;}
.y69{bottom:623.296050px;}
.yd5{bottom:625.456050px;}
.y17f{bottom:627.256500px;}
.yc0{bottom:628.696050px;}
.y1e5{bottom:628.696500px;}
.y155{bottom:629.776050px;}
.y90{bottom:630.136050px;}
.y32{bottom:631.216050px;}
.y22a{bottom:633.016500px;}
.y197{bottom:633.376500px;}
.y1a3{bottom:635.176050px;}
.yf9{bottom:636.976050px;}
.y68{bottom:638.776050px;}
.y12e{bottom:639.136050px;}
.ybf{bottom:642.016050px;}
.y209{bottom:642.736050px;}
.y31{bottom:644.896050px;}
.y8f{bottom:645.976050px;}
.y17e{bottom:646.696500px;}
.y1e4{bottom:648.496500px;}
.y196{bottom:649.216500px;}
.yf8{bottom:650.656050px;}
.yd4{bottom:652.456050px;}
.y229{bottom:652.456500px;}
.y12d{bottom:654.616050px;}
.y1a2{bottom:654.976050px;}
.y1b3{bottom:654.976500px;}
.ybe{bottom:657.856050px;}
.y30{bottom:658.216050px;}
.y1cd{bottom:658.576050px;}
.y8e{bottom:659.296050px;}
.y154{bottom:659.656050px;}
.yf7{bottom:663.976050px;}
.y67{bottom:665.776050px;}
.yd3{bottom:668.656050px;}
.y12c{bottom:670.456050px;}
.y2f{bottom:671.896050px;}
.y228{bottom:671.896500px;}
.y8d{bottom:675.136050px;}
.y153{bottom:675.496050px;}
.yd2{bottom:679.816050px;}
.y66{bottom:681.616050px;}
.y12b{bottom:684.136050px;}
.y2e{bottom:685.216050px;}
.y152{bottom:689.176050px;}
.y8c{bottom:690.976050px;}
.y227{bottom:692.056500px;}
.yf6{bottom:695.296050px;}
.yd1{bottom:698.176050px;}
.y2d{bottom:698.896050px;}
.y12a{bottom:699.616050px;}
.y151{bottom:705.376050px;}
.y8b{bottom:706.456050px;}
.y65{bottom:708.616050px;}
.yf5{bottom:708.976050px;}
.yd0{bottom:711.856050px;}
.y129{bottom:713.296050px;}
.y2c{bottom:715.096050px;}
.y150{bottom:718.696050px;}
.ybd{bottom:720.496050px;}
.y8a{bottom:721.936050px;}
.yf4{bottom:722.656050px;}
.y64{bottom:724.096050px;}
.ycf{bottom:725.176050px;}
.y128{bottom:729.496050px;}
.y2b{bottom:734.536050px;}
.y14f{bottom:734.896050px;}
.ybc{bottom:735.976050px;}
.yf3{bottom:738.136050px;}
.yce{bottom:741.376050px;}
.y127{bottom:742.456050px;}
.y2a{bottom:750.016050px;}
.y14e{bottom:750.736050px;}
.y63{bottom:751.096050px;}
.ybb{bottom:751.816050px;}
.y89{bottom:753.256050px;}
.ycd{bottom:754.696050px;}
.ye{bottom:757.936050px;}
.y29{bottom:761.176050px;}
.y62{bottom:764.776050px;}
.ycc{bottom:766.216050px;}
.y88{bottom:766.576050px;}
.y14d{bottom:766.936050px;}
.yba{bottom:767.296050px;}
.yf2{bottom:767.656050px;}
.y126{bottom:771.616050px;}
.y28{bottom:777.016050px;}
.y61{bottom:780.256050px;}
.y14c{bottom:780.616050px;}
.yf1{bottom:783.136050px;}
.ycb{bottom:784.576050px;}
.y125{bottom:787.096050px;}
.yb9{bottom:787.816050px;}
.y27{bottom:790.696050px;}
.y87{bottom:791.776050px;}
.y60{bottom:793.936050px;}
.yd{bottom:795.376050px;}
.yf0{bottom:796.456050px;}
.yca{bottom:797.896050px;}
.y124{bottom:800.776050px;}
.yb8{bottom:802.936050px;}
.y26{bottom:804.016050px;}
.y86{bottom:807.256050px;}
.y5f{bottom:809.416050px;}
.y14b{bottom:810.136050px;}
.yef{bottom:813.016050px;}
.yc9{bottom:814.096050px;}
.y123{bottom:816.256050px;}
.y25{bottom:817.696050px;}
.yb7{bottom:822.736050px;}
.y5e{bottom:823.096050px;}
.yee{bottom:825.616050px;}
.y14a{bottom:826.336050px;}
.yc8{bottom:827.416050px;}
.y122{bottom:829.936050px;}
.y24{bottom:833.896050px;}
.y5d{bottom:836.416050px;}
.y149{bottom:839.656050px;}
.yed{bottom:841.456050px;}
.yc7{bottom:843.616050px;}
.yc{bottom:845.056050px;}
.y121{bottom:845.416050px;}
.y23{bottom:848.656050px;}
.y5c{bottom:850.096050px;}
.yb6{bottom:851.896050px;}
.y148{bottom:853.336050px;}
.yec{bottom:854.776050px;}
.yc6{bottom:856.936050px;}
.y120{bottom:859.096050px;}
.yb5{bottom:865.216050px;}
.y5b{bottom:865.576050px;}
.y147{bottom:869.176050px;}
.yeb{bottom:870.256050px;}
.yc5{bottom:870.616050px;}
.y11f{bottom:875.296050px;}
.y22{bottom:875.656050px;}
.yb{bottom:877.096050px;}
.y5a{bottom:885.376050px;}
.y11e{bottom:887.896050px;}
.y21{bottom:888.976050px;}
.y258{bottom:891.136050px;}
.y85{bottom:892.936050px;}
.y11d{bottom:899.416050px;}
.y59{bottom:901.216050px;}
.yc4{bottom:901.936050px;}
.y20{bottom:904.816050px;}
.y84{bottom:908.056050px;}
.y58{bottom:921.016050px;}
.y1f{bottom:931.816050px;}
.y83{bottom:933.256050px;}
.y57{bottom:936.496050px;}
.yb4{bottom:946.216050px;}
.y1e{bottom:947.296050px;}
.y82{bottom:950.896050px;}
.y56{bottom:952.336050px;}
.y81{bottom:964.216050px;}
.yb3{bottom:965.656050px;}
.y259{bottom:971.776050px;}
.y1d{bottom:975.016050px;}
.y55{bottom:979.336050px;}
.y1c{bottom:990.136050px;}
.yb2{bottom:992.296050px;}
.y80{bottom:993.376050px;}
.y54{bottom:995.176050px;}
.y5{bottom:1003.816050px;}
.ya{bottom:1006.696050px;}
.y7f{bottom:1007.056050px;}
.yb1{bottom:1008.136050px;}
.y1b{bottom:1014.976050px;}
.y53{bottom:1017.136050px;}
.y4{bottom:1017.856050px;}
.y17b{bottom:1020.416550px;}
.y9{bottom:1020.736050px;}
.y1a{bottom:1032.976050px;}
.y7e{bottom:1034.416050px;}
.yb0{bottom:1035.496050px;}
.y8{bottom:1037.296050px;}
.y3{bottom:1040.536050px;}
.y19{bottom:1046.656050px;}
.y52{bottom:1048.456050px;}
.y1b2{bottom:1048.816500px;}
.y7d{bottom:1049.896050px;}
.yaf{bottom:1051.336050px;}
.y2{bottom:1053.856050px;}
.y1{bottom:1059.976050px;}
.y17a{bottom:1063.616550px;}
.y226{bottom:1070.416500px;}
.y17d{bottom:1071.136500px;}
.y1b1{bottom:1076.176500px;}
.y18{bottom:1078.696050px;}
.y1e3{bottom:1078.696500px;}
.y7c{bottom:1081.576050px;}
.y179{bottom:1085.216550px;}
.y178{bottom:1106.816550px;}
.y177{bottom:1128.416550px;}
.y176{bottom:1150.016550px;}
.h10{height:21.902344px;}
.h12{height:28.160156px;}
.h13{height:31.289062px;}
.h11{height:34.417969px;}
.h5f{height:36.106875px;}
.h25{height:37.546875px;}
.h19{height:40.675781px;}
.h1a{height:42.115781px;}
.h1d{height:42.364688px;}
.h1e{height:43.555781px;}
.h14{height:43.804688px;}
.h24{height:44.995781px;}
.h16{height:45.244688px;}
.h2a{height:45.493594px;}
.h2c{height:46.435781px;}
.h17{height:46.684687px;}
.h15{height:46.933594px;}
.h2b{height:47.875781px;}
.h22{height:48.124688px;}
.h21{height:48.373594px;}
.h1c{height:49.315781px;}
.h26{height:49.813594px;}
.h20{height:50.062500px;}
.h2e{height:50.616000px;}
.h1b{height:50.755781px;}
.h23{height:51.253594px;}
.h41{height:51.502500px;}
.h52{height:51.751406px;}
.h27{height:52.444688px;}
.h42{height:52.942500px;}
.h7{height:53.191406px;}
.h4b{height:53.440313px;}
.h18{height:53.884688px;}
.h1f{height:54.133594px;}
.h3f{height:54.631406px;}
.h51{height:54.880312px;}
.h57{height:55.129219px;}
.h4e{height:56.071406px;}
.h6{height:56.320312px;}
.h4a{height:56.569219px;}
.h29{height:57.760313px;}
.h4c{height:58.009219px;}
.h2d{height:58.392000px;}
.h43{height:59.200313px;}
.h46{height:59.449219px;}
.h59{height:59.698125px;}
.h4d{height:59.947031px;}
.h56{height:60.391406px;}
.h8{height:60.640313px;}
.h5e{height:60.693750px;}
.h9{height:60.889219px;}
.h49{height:61.138125px;}
.h45{height:62.080312px;}
.h35{height:62.329219px;}
.h40{height:62.578125px;}
.h58{height:62.827031px;}
.h3e{height:63.520312px;}
.h31{height:63.769219px;}
.h55{height:64.018125px;}
.h5a{height:64.267031px;}
.h50{height:64.515937px;}
.h32{height:65.209219px;}
.h38{height:65.458125px;}
.hb{height:65.707031px;}
.h5c{height:66.400313px;}
.h34{height:66.649219px;}
.h3b{height:66.898125px;}
.h54{height:68.835938px;}
.h3a{height:69.529219px;}
.h3c{height:69.778125px;}
.h28{height:70.027031px;}
.h44{height:70.275938px;}
.h33{height:70.969219px;}
.h39{height:71.467031px;}
.h3d{height:74.595938px;}
.h4{height:75.093750px;}
.h37{height:76.284844px;}
.h36{height:77.724844px;}
.h5b{height:81.351562px;}
.h4f{height:83.040469px;}
.h47{height:84.480469px;}
.h53{height:86.169375px;}
.h5{height:93.867188px;}
.h30{height:99.876094px;}
.h48{height:103.253906px;}
.h5d{height:142.827187px;}
.hd{height:153.316406px;}
.he{height:178.347656px;}
.hf{height:215.894531px;}
.ha{height:219.023438px;}
.hc{height:237.796875px;}
.h3{height:1206.750000px;}
.h2f{height:1206.992535px;}
.h2{height:1206.992550px;}
.h0{height:1262.160000px;}
.h1{height:1262.250000px;}
.w0{width:1020.376500px;}
.w3{width:1020.512535px;}
.w2{width:1020.512550px;}
.w1{width:1020.750000px;}
.x0{left:0.000000px;}
.xf{left:45.136050px;}
.xe{left:58.456050px;}
.x44{left:62.056500px;}
.x47{left:65.656500px;}
.x4f{left:100.936050px;}
.x14{left:102.016050px;}
.x15{left:103.096050px;}
.x16{left:104.176050px;}
.x17{left:105.256050px;}
.x18{left:106.336050px;}
.x19{left:107.416050px;}
.x1a{left:108.496050px;}
.x2d{left:109.576050px;}
.x2c{left:110.656050px;}
.x34{left:118.576500px;}
.x35{left:119.656500px;}
.x41{left:122.176500px;}
.x40{left:123.256500px;}
.x3f{left:124.336500px;}
.x49{left:126.496500px;}
.x4e{left:141.616050px;}
.x50{left:148.816050px;}
.x13{left:174.016050px;}
.x48{left:213.976500px;}
.xc{left:216.496050px;}
.xd{left:224.416050px;}
.x33{left:226.216500px;}
.x3d{left:238.096500px;}
.xb{left:286.696050px;}
.x1b{left:303.256050px;}
.x1c{left:304.336050px;}
.x1d{left:305.416050px;}
.x1e{left:306.496050px;}
.x1f{left:307.576050px;}
.x20{left:308.656050px;}
.x11{left:309.736050px;}
.x2e{left:311.536050px;}
.x4d{left:316.936050px;}
.x3e{left:318.016500px;}
.x52{left:319.816050px;}
.x9{left:352.936050px;}
.x4{left:373.456050px;}
.x10{left:378.856050px;}
.x51{left:384.256500px;}
.x12{left:396.856050px;}
.xa{left:417.376050px;}
.x5{left:419.176050px;}
.x54{left:448.336050px;}
.x55{left:450.136050px;}
.x7{left:464.536050px;}
.x2{left:469.936050px;}
.x39{left:471.016050px;}
.x3a{left:472.816050px;}
.x6{left:489.376050px;}
.x8{left:493.696050px;}
.x1{left:495.856050px;}
.x3{left:499.096050px;}
.x21{left:503.776050px;}
.x22{left:504.856050px;}
.x23{left:505.936050px;}
.x24{left:507.016050px;}
.x25{left:508.456050px;}
.x26{left:509.536050px;}
.x27{left:510.616050px;}
.x30{left:511.696050px;}
.x2f{left:512.776050px;}
.x5a{left:540.136050px;}
.x5b{left:575.776050px;}
.x5d{left:617.536050px;}
.x4c{left:642.736050px;}
.x4b{left:643.816050px;}
.x28{left:705.016050px;}
.x29{left:706.096050px;}
.x2a{left:707.176050px;}
.x2b{left:708.256050px;}
.x32{left:712.936050px;}
.x31{left:714.016050px;}
.x36{left:723.376500px;}
.x37{left:724.456500px;}
.x38{left:727.336500px;}
.x42{left:728.416500px;}
.x43{left:729.496500px;}
.x4a{left:731.656500px;}
.x59{left:732.736050px;}
.x5c{left:757.936050px;}
.x46{left:844.336050px;}
.x53{left:846.496050px;}
.x3b{left:847.576050px;}
.x56{left:892.216050px;}
.x45{left:935.056050px;}
.x3c{left:937.936050px;}
.x58{left:946.936050px;}
.x57{left:950.536050px;}
@media print{
.v1d{vertical-align:-37.120000pt;}
.v1c{vertical-align:-23.040000pt;}
.v16{vertical-align:-19.200000pt;}
.v19{vertical-align:-16.640000pt;}
.v18{vertical-align:-15.360000pt;}
.vd{vertical-align:-14.080000pt;}
.v14{vertical-align:-12.800000pt;}
.v12{vertical-align:-11.520000pt;}
.v10{vertical-align:-10.240000pt;}
.vc{vertical-align:-8.960000pt;}
.va{vertical-align:-7.680000pt;}
.v9{vertical-align:-6.400000pt;}
.v15{vertical-align:-5.120000pt;}
.vf{vertical-align:-3.840000pt;}
.v13{vertical-align:-2.560000pt;}
.v6{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280000pt;}
.v2{vertical-align:2.560000pt;}
.v3{vertical-align:3.840000pt;}
.vb{vertical-align:5.120000pt;}
.v8{vertical-align:6.400000pt;}
.v7{vertical-align:7.680000pt;}
.v4{vertical-align:8.960000pt;}
.v5{vertical-align:10.240000pt;}
.v11{vertical-align:11.520000pt;}
.v17{vertical-align:12.800000pt;}
.v1a{vertical-align:14.080000pt;}
.ve{vertical-align:15.360000pt;}
.v1e{vertical-align:24.320000pt;}
.v1b{vertical-align:43.520000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:201.410667pt;}
.ws4{word-spacing:270.128000pt;}
.ws3{word-spacing:329.640000pt;}
.ws1{word-spacing:384.437333pt;}
._f{margin-left:-0.896000pt;}
._4{width:1.536000pt;}
._3{width:3.040000pt;}
._5{width:4.016000pt;}
._1{width:5.120000pt;}
._7{width:6.693333pt;}
._2{width:8.146667pt;}
._0{width:9.770667pt;}
._9{width:11.338667pt;}
._6{width:12.709333pt;}
._b{width:14.008000pt;}
._a{width:14.928000pt;}
._8{width:16.730667pt;}
._c{width:19.882667pt;}
._e{width:21.552000pt;}
._10{width:23.424000pt;}
._11{width:27.117333pt;}
._13{width:29.520000pt;}
._15{width:32.256000pt;}
._12{width:49.960000pt;}
._14{width:90.029333pt;}
._d{width:480.402667pt;}
.fsf{font-size:18.666667pt;}
.fs16{font-size:21.333333pt;}
.fs11{font-size:24.000000pt;}
.fs12{font-size:26.666667pt;}
.fs10{font-size:29.333333pt;}
.fs15{font-size:32.000000pt;}
.fs14{font-size:34.666667pt;}
.fs13{font-size:37.333333pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1b{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs1d{font-size:58.666667pt;}
.fs1c{font-size:61.333333pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:66.666667pt;}
.fs1e{font-size:69.333333pt;}
.fs18{font-size:72.000000pt;}
.fs17{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs1a{font-size:82.666667pt;}
.fs1f{font-size:88.000000pt;}
.fsc{font-size:104.000000pt;}
.fsb{font-size:130.666667pt;}
.fsd{font-size:152.000000pt;}
.fsa{font-size:176.000000pt;}
.fse{font-size:184.000000pt;}
.fs7{font-size:186.666667pt;}
.fs9{font-size:202.666667pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:0.440933pt;}
.y14{bottom:16.760933pt;}
.y13{bottom:52.600933pt;}
.y25e{bottom:56.440933pt;}
.y25d{bottom:70.520933pt;}
.y12{bottom:74.040933pt;}
.y25c{bottom:85.880933pt;}
.y25b{bottom:92.280933pt;}
.y244{bottom:93.881333pt;}
.y146{bottom:94.840933pt;}
.y1a1{bottom:97.081333pt;}
.y224{bottom:97.400933pt;}
.y7{bottom:100.280933pt;}
.y208{bottom:101.241333pt;}
.y1ff{bottom:101.561333pt;}
.y17{bottom:104.120933pt;}
.y51{bottom:104.440933pt;}
.y145{bottom:107.000933pt;}
.y1a0{bottom:110.521333pt;}
.y223{bottom:111.160933pt;}
.y243{bottom:111.481333pt;}
.y11{bottom:113.400933pt;}
.y207{bottom:115.641333pt;}
.y11c{bottom:115.960933pt;}
.y50{bottom:116.600933pt;}
.y6{bottom:118.840933pt;}
.y175{bottom:119.160933pt;}
.y1fe{bottom:119.161333pt;}
.y144{bottom:121.400933pt;}
.y225{bottom:121.720933pt;}
.y10{bottom:123.000933pt;}
.y222{bottom:124.600933pt;}
.y16{bottom:125.560933pt;}
.y19f{bottom:126.521333pt;}
.y11b{bottom:128.120933pt;}
.y4f{bottom:128.760933pt;}
.y242{bottom:128.761333pt;}
.y174{bottom:131.000933pt;}
.yf{bottom:132.600933pt;}
.yae{bottom:133.560933pt;}
.y206{bottom:133.561333pt;}
.y1fd{bottom:136.441333pt;}
.y11a{bottom:140.280933pt;}
.y221{bottom:140.600933pt;}
.y4e{bottom:142.840933pt;}
.y173{bottom:143.160933pt;}
.y241{bottom:146.361333pt;}
.yad{bottom:147.640933pt;}
.y205{bottom:147.961333pt;}
.y143{bottom:148.600933pt;}
.y256{bottom:154.040933pt;}
.y1fc{bottom:154.041333pt;}
.y119{bottom:154.360933pt;}
.y21f{bottom:156.280933pt;}
.y172{bottom:158.200933pt;}
.y142{bottom:160.120933pt;}
.y204{bottom:161.721333pt;}
.y240{bottom:163.961333pt;}
.y118{bottom:166.200933pt;}
.y4d{bottom:166.840933pt;}
.y171{bottom:169.720933pt;}
.y195{bottom:170.041333pt;}
.y255{bottom:171.320933pt;}
.y1fb{bottom:171.321333pt;}
.y21e{bottom:173.560933pt;}
.y141{bottom:174.520933pt;}
.yac{bottom:175.800933pt;}
.y117{bottom:178.680933pt;}
.y4c{bottom:179.000933pt;}
.y203{bottom:179.641333pt;}
.y23f{bottom:181.241333pt;}
.y170{bottom:184.440933pt;}
.y140{bottom:186.360933pt;}
.y194{bottom:187.321333pt;}
.y254{bottom:188.920933pt;}
.y1fa{bottom:188.921333pt;}
.yab{bottom:189.560933pt;}
.y21d{bottom:190.840933pt;}
.y116{bottom:192.440933pt;}
.y4b{bottom:193.080933pt;}
.y202{bottom:193.721333pt;}
.y16f{bottom:195.960933pt;}
.y1e1{bottom:199.800933pt;}
.y13f{bottom:200.760933pt;}
.yaa{bottom:203.640933pt;}
.y23e{bottom:204.281333pt;}
.y115{bottom:204.600933pt;}
.y193{bottom:204.601333pt;}
.y253{bottom:206.200933pt;}
.y1f9{bottom:206.201333pt;}
.y16e{bottom:210.360933pt;}
.y201{bottom:211.321333pt;}
.y21c{bottom:213.880933pt;}
.y13e{bottom:215.160933pt;}
.ya9{bottom:215.480933pt;}
.y114{bottom:216.760933pt;}
.y4a{bottom:217.080933pt;}
.y23d{bottom:221.561333pt;}
.y1c4{bottom:221.881333pt;}
.y192{bottom:222.201333pt;}
.y252{bottom:223.800933pt;}
.y1f8{bottom:223.801333pt;}
.y16d{bottom:224.760933pt;}
.y200{bottom:225.401333pt;}
.y49{bottom:229.240933pt;}
.ya8{bottom:229.560933pt;}
.y113{bottom:230.520933pt;}
.y21b{bottom:231.480933pt;}
.y1df{bottom:232.760933pt;}
.y16c{bottom:238.840933pt;}
.y23c{bottom:238.841333pt;}
.y1c3{bottom:239.161333pt;}
.y191{bottom:239.481333pt;}
.y48{bottom:241.080933pt;}
.y1f7{bottom:241.081333pt;}
.y13d{bottom:241.720933pt;}
.y112{bottom:242.360933pt;}
.ya7{bottom:243.640933pt;}
.y1af{bottom:246.520933pt;}
.y17c{bottom:246.841333pt;}
.y220{bottom:248.440933pt;}
.y21a{bottom:248.760933pt;}
.y1de{bottom:250.040933pt;}
.y16b{bottom:251.000933pt;}
.y1cc{bottom:252.601333pt;}
.y47{bottom:253.240933pt;}
.y1e2{bottom:254.201333pt;}
.y111{bottom:254.520933pt;}
.y13c{bottom:255.800933pt;}
.y1b0{bottom:256.440933pt;}
.y23b{bottom:256.441333pt;}
.y190{bottom:256.761333pt;}
.ya6{bottom:257.400933pt;}
.y1e0{bottom:258.040933pt;}
.y251{bottom:258.360933pt;}
.y257{bottom:259.960933pt;}
.y7b{bottom:260.600933pt;}
.y46{bottom:263.160933pt;}
.yea{bottom:263.800933pt;}
.y1f6{bottom:264.121333pt;}
.y16a{bottom:265.400933pt;}
.y219{bottom:266.040933pt;}
.y1dd{bottom:267.320933pt;}
.y13b{bottom:267.960933pt;}
.y110{bottom:268.600933pt;}
.ya5{bottom:269.240933pt;}
.y7a{bottom:272.440933pt;}
.y23a{bottom:273.721333pt;}
.y18f{bottom:274.041333pt;}
.ye9{bottom:275.960933pt;}
.y45{bottom:277.240933pt;}
.y169{bottom:279.800933pt;}
.y10f{bottom:280.760933pt;}
.ya4{bottom:281.400933pt;}
.y1f5{bottom:281.401333pt;}
.y13a{bottom:282.360933pt;}
.y79{bottom:282.680933pt;}
.y218{bottom:283.320933pt;}
.y1dc{bottom:284.600933pt;}
.ye8{bottom:288.440933pt;}
.y44{bottom:291.000933pt;}
.y168{bottom:291.640933pt;}
.y18e{bottom:291.641333pt;}
.y10e{bottom:294.520933pt;}
.ya3{bottom:295.160933pt;}
.y78{bottom:296.440933pt;}
.y239{bottom:296.761333pt;}
.y1c2{bottom:297.081333pt;}
.y1ae{bottom:298.680933pt;}
.y1f4{bottom:298.681333pt;}
.y217{bottom:300.920933pt;}
.y1db{bottom:302.200933pt;}
.ye7{bottom:304.760933pt;}
.y167{bottom:306.040933pt;}
.y10d{bottom:306.680933pt;}
.y139{bottom:308.600933pt;}
.y18d{bottom:308.921333pt;}
.ya2{bottom:309.240933pt;}
.y77{bottom:310.520933pt;}
.y1c1{bottom:314.361333pt;}
.y43{bottom:315.000933pt;}
.y238{bottom:315.321333pt;}
.y1ad{bottom:315.960933pt;}
.y1f3{bottom:315.961333pt;}
.ye6{bottom:318.840933pt;}
.y1da{bottom:319.480933pt;}
.y10c{bottom:320.440933pt;}
.ya1{bottom:321.080933pt;}
.y250{bottom:321.401333pt;}
.y138{bottom:323.000933pt;}
.y216{bottom:323.640933pt;}
.y18c{bottom:326.201333pt;}
.y42{bottom:327.160933pt;}
.ye5{bottom:330.680933pt;}
.y237{bottom:331.321333pt;}
.y1c0{bottom:331.641333pt;}
.y10b{bottom:332.280933pt;}
.y1f2{bottom:333.241333pt;}
.y1ac{bottom:333.560933pt;}
.y166{bottom:334.520933pt;}
.ya0{bottom:334.840933pt;}
.y24f{bottom:335.161333pt;}
.y1d9{bottom:336.760933pt;}
.y76{bottom:338.040933pt;}
.y41{bottom:339.000933pt;}
.y1cb{bottom:340.281333pt;}
.y215{bottom:341.240933pt;}
.ye4{bottom:342.840933pt;}
.y18b{bottom:343.481333pt;}
.y10a{bottom:344.440933pt;}
.y165{bottom:346.680933pt;}
.y236{bottom:348.601333pt;}
.y9f{bottom:348.920933pt;}
.y1bf{bottom:348.921333pt;}
.y137{bottom:349.240933pt;}
.y24e{bottom:349.241333pt;}
.y75{bottom:350.200933pt;}
.y1ab{bottom:350.520933pt;}
.y1f1{bottom:350.521333pt;}
.y40{bottom:353.080933pt;}
.y1d8{bottom:354.040933pt;}
.y109{bottom:356.600933pt;}
.ye3{bottom:357.240933pt;}
.y1ca{bottom:358.201333pt;}
.y214{bottom:358.520933pt;}
.y18a{bottom:360.761333pt;}
.y164{bottom:361.080933pt;}
.y9e{bottom:362.680933pt;}
.y136{bottom:363.640933pt;}
.y74{bottom:364.280933pt;}
.y235{bottom:366.201333pt;}
.y1be{bottom:366.521333pt;}
.y24d{bottom:366.841333pt;}
.y1f0{bottom:367.801333pt;}
.y1aa{bottom:368.120933pt;}
.ye2{bottom:369.080933pt;}
.y108{bottom:370.680933pt;}
.y1d7{bottom:371.320933pt;}
.y1c9{bottom:372.281333pt;}
.y163{bottom:372.920933pt;}
.y213{bottom:374.520933pt;}
.y9d{bottom:374.840933pt;}
.y3f{bottom:377.080933pt;}
.y135{bottom:377.720933pt;}
.y189{bottom:378.041333pt;}
.y24c{bottom:380.921333pt;}
.y107{bottom:382.520933pt;}
.ye1{bottom:383.480933pt;}
.y234{bottom:383.481333pt;}
.y162{bottom:385.080933pt;}
.y1ef{bottom:385.401333pt;}
.y9c{bottom:386.680933pt;}
.y1d6{bottom:388.600933pt;}
.y1bd{bottom:389.241333pt;}
.y1c8{bottom:389.881333pt;}
.y3e{bottom:390.840933pt;}
.y73{bottom:391.800933pt;}
.y134{bottom:392.120933pt;}
.y24b{bottom:395.001333pt;}
.ye0{bottom:395.640933pt;}
.y188{bottom:395.641333pt;}
.y106{bottom:396.600933pt;}
.y161{bottom:399.160933pt;}
.y9b{bottom:400.760933pt;}
.y233{bottom:400.761333pt;}
.y1ee{bottom:402.681333pt;}
.y72{bottom:405.880933pt;}
.y1d5{bottom:406.200933pt;}
.y133{bottom:406.520933pt;}
.y1c7{bottom:407.481333pt;}
.y1bc{bottom:408.121333pt;}
.y105{bottom:408.440933pt;}
.y24a{bottom:408.761333pt;}
.y212{bottom:409.080933pt;}
.ydf{bottom:409.720933pt;}
.y9a{bottom:412.920933pt;}
.y187{bottom:412.921333pt;}
.y160{bottom:413.880933pt;}
.y3d{bottom:414.840933pt;}
.y232{bottom:418.041333pt;}
.yde{bottom:419.960933pt;}
.y1ed{bottom:419.961333pt;}
.y104{bottom:422.200933pt;}
.y249{bottom:422.841333pt;}
.y1bb{bottom:424.121333pt;}
.y99{bottom:424.760933pt;}
.y1c6{bottom:425.401333pt;}
.y1a9{bottom:425.720933pt;}
.y211{bottom:426.360933pt;}
.y3c{bottom:427.000933pt;}
.y15f{bottom:427.960933pt;}
.y1d4{bottom:429.240933pt;}
.y71{bottom:430.200933pt;}
.y103{bottom:434.360933pt;}
.y231{bottom:435.321333pt;}
.y186{bottom:435.961333pt;}
.ydd{bottom:436.280933pt;}
.y248{bottom:436.921333pt;}
.y1ec{bottom:437.241333pt;}
.y3b{bottom:438.840933pt;}
.y1c5{bottom:439.481333pt;}
.y15e{bottom:440.120933pt;}
.y1ba{bottom:441.401333pt;}
.y70{bottom:442.360933pt;}
.y1a8{bottom:443.000933pt;}
.y210{bottom:443.960933pt;}
.y1d3{bottom:446.520933pt;}
.y102{bottom:448.440933pt;}
.y19e{bottom:449.401333pt;}
.ydc{bottom:450.360933pt;}
.y98{bottom:450.680933pt;}
.y3a{bottom:451.000933pt;}
.y230{bottom:452.921333pt;}
.y185{bottom:453.241333pt;}
.y6f{bottom:453.880933pt;}
.y15d{bottom:454.520933pt;}
.y1eb{bottom:454.841333pt;}
.y1b9{bottom:458.681333pt;}
.y101{bottom:460.600933pt;}
.y20f{bottom:461.240933pt;}
.ydb{bottom:462.520933pt;}
.y39{bottom:463.480933pt;}
.y1d2{bottom:463.800933pt;}
.y19d{bottom:463.801333pt;}
.y97{bottom:464.760933pt;}
.y15c{bottom:466.360933pt;}
.y6e{bottom:467.640933pt;}
.y22f{bottom:470.201333pt;}
.y184{bottom:470.841333pt;}
.y1ea{bottom:471.801333pt;}
.y247{bottom:473.081333pt;}
.y100{bottom:474.360933pt;}
.y38{bottom:475.000933pt;}
.y1b8{bottom:476.281333pt;}
.yda{bottom:476.920933pt;}
.y1a7{bottom:477.880933pt;}
.y96{bottom:478.520933pt;}
.y15b{bottom:480.760933pt;}
.y1d1{bottom:481.080933pt;}
.y19c{bottom:481.401333pt;}
.y20e{bottom:484.600933pt;}
.yff{bottom:486.520933pt;}
.y246{bottom:486.521333pt;}
.y37{bottom:487.160933pt;}
.y22e{bottom:487.481333pt;}
.y183{bottom:488.121333pt;}
.yd9{bottom:488.760933pt;}
.y132{bottom:490.040933pt;}
.y1e9{bottom:490.681333pt;}
.y6d{bottom:491.960933pt;}
.y95{bottom:492.280933pt;}
.y15a{bottom:492.920933pt;}
.y1b7{bottom:493.561333pt;}
.y1a6{bottom:495.160933pt;}
.y19b{bottom:495.481333pt;}
.y1d0{bottom:498.360933pt;}
.yfe{bottom:500.280933pt;}
.y36{bottom:500.920933pt;}
.y25a{bottom:501.240933pt;}
.y20d{bottom:501.880933pt;}
.yc3{bottom:503.160933pt;}
.y6c{bottom:503.800933pt;}
.y245{bottom:504.441333pt;}
.y131{bottom:504.760933pt;}
.y22d{bottom:504.761333pt;}
.y182{bottom:505.401333pt;}
.y94{bottom:506.360933pt;}
.y1e8{bottom:506.681333pt;}
.y159{bottom:507.000933pt;}
.y1b6{bottom:511.161333pt;}
.y1a5{bottom:512.440933pt;}
.y19a{bottom:513.401333pt;}
.yfd{bottom:514.360933pt;}
.yd8{bottom:515.320933pt;}
.y130{bottom:515.960933pt;}
.yc2{bottom:517.240933pt;}
.y6b{bottom:517.880933pt;}
.y20c{bottom:519.160933pt;}
.y93{bottom:520.440933pt;}
.y158{bottom:521.400933pt;}
.y22c{bottom:522.361333pt;}
.y181{bottom:522.681333pt;}
.y1e7{bottom:523.961333pt;}
.y35{bottom:524.920933pt;}
.yfc{bottom:526.200933pt;}
.y1b5{bottom:528.121333pt;}
.yd7{bottom:529.400933pt;}
.y12f{bottom:530.040933pt;}
.y199{bottom:531.001333pt;}
.y92{bottom:532.280933pt;}
.y1cf{bottom:533.240933pt;}
.y157{bottom:533.560933pt;}
.y20b{bottom:536.440933pt;}
.y34{bottom:537.080933pt;}
.yfb{bottom:540.280933pt;}
.y180{bottom:540.281333pt;}
.yd6{bottom:541.560933pt;}
.y1e6{bottom:541.561333pt;}
.y6a{bottom:541.880933pt;}
.yc1{bottom:544.760933pt;}
.y198{bottom:545.081333pt;}
.y22b{bottom:545.401333pt;}
.y1b4{bottom:545.721333pt;}
.y91{bottom:546.360933pt;}
.y1a4{bottom:547.320933pt;}
.y156{bottom:547.960933pt;}
.y33{bottom:549.240933pt;}
.y1ce{bottom:550.840933pt;}
.yfa{bottom:552.440933pt;}
.y20a{bottom:553.720933pt;}
.y69{bottom:554.040933pt;}
.yd5{bottom:555.960933pt;}
.y17f{bottom:557.561333pt;}
.yc0{bottom:558.840933pt;}
.y1e5{bottom:558.841333pt;}
.y155{bottom:559.800933pt;}
.y90{bottom:560.120933pt;}
.y32{bottom:561.080933pt;}
.y22a{bottom:562.681333pt;}
.y197{bottom:563.001333pt;}
.y1a3{bottom:564.600933pt;}
.yf9{bottom:566.200933pt;}
.y68{bottom:567.800933pt;}
.y12e{bottom:568.120933pt;}
.ybf{bottom:570.680933pt;}
.y209{bottom:571.320933pt;}
.y31{bottom:573.240933pt;}
.y8f{bottom:574.200933pt;}
.y17e{bottom:574.841333pt;}
.y1e4{bottom:576.441333pt;}
.y196{bottom:577.081333pt;}
.yf8{bottom:578.360933pt;}
.yd4{bottom:579.960933pt;}
.y229{bottom:579.961333pt;}
.y12d{bottom:581.880933pt;}
.y1a2{bottom:582.200933pt;}
.y1b3{bottom:582.201333pt;}
.ybe{bottom:584.760933pt;}
.y30{bottom:585.080933pt;}
.y1cd{bottom:585.400933pt;}
.y8e{bottom:586.040933pt;}
.y154{bottom:586.360933pt;}
.yf7{bottom:590.200933pt;}
.y67{bottom:591.800933pt;}
.yd3{bottom:594.360933pt;}
.y12c{bottom:595.960933pt;}
.y2f{bottom:597.240933pt;}
.y228{bottom:597.241333pt;}
.y8d{bottom:600.120933pt;}
.y153{bottom:600.440933pt;}
.yd2{bottom:604.280933pt;}
.y66{bottom:605.880933pt;}
.y12b{bottom:608.120933pt;}
.y2e{bottom:609.080933pt;}
.y152{bottom:612.600933pt;}
.y8c{bottom:614.200933pt;}
.y227{bottom:615.161333pt;}
.yf6{bottom:618.040933pt;}
.yd1{bottom:620.600933pt;}
.y2d{bottom:621.240933pt;}
.y12a{bottom:621.880933pt;}
.y151{bottom:627.000933pt;}
.y8b{bottom:627.960933pt;}
.y65{bottom:629.880933pt;}
.yf5{bottom:630.200933pt;}
.yd0{bottom:632.760933pt;}
.y129{bottom:634.040933pt;}
.y2c{bottom:635.640933pt;}
.y150{bottom:638.840933pt;}
.ybd{bottom:640.440933pt;}
.y8a{bottom:641.720933pt;}
.yf4{bottom:642.360933pt;}
.y64{bottom:643.640933pt;}
.ycf{bottom:644.600933pt;}
.y128{bottom:648.440933pt;}
.y2b{bottom:652.920933pt;}
.y14f{bottom:653.240933pt;}
.ybc{bottom:654.200933pt;}
.yf3{bottom:656.120933pt;}
.yce{bottom:659.000933pt;}
.y127{bottom:659.960933pt;}
.y2a{bottom:666.680933pt;}
.y14e{bottom:667.320933pt;}
.y63{bottom:667.640933pt;}
.ybb{bottom:668.280933pt;}
.y89{bottom:669.560933pt;}
.ycd{bottom:670.840933pt;}
.ye{bottom:673.720933pt;}
.y29{bottom:676.600933pt;}
.y62{bottom:679.800933pt;}
.ycc{bottom:681.080933pt;}
.y88{bottom:681.400933pt;}
.y14d{bottom:681.720933pt;}
.yba{bottom:682.040933pt;}
.yf2{bottom:682.360933pt;}
.y126{bottom:685.880933pt;}
.y28{bottom:690.680933pt;}
.y61{bottom:693.560933pt;}
.y14c{bottom:693.880933pt;}
.yf1{bottom:696.120933pt;}
.ycb{bottom:697.400933pt;}
.y125{bottom:699.640933pt;}
.yb9{bottom:700.280933pt;}
.y27{bottom:702.840933pt;}
.y87{bottom:703.800933pt;}
.y60{bottom:705.720933pt;}
.yd{bottom:707.000933pt;}
.yf0{bottom:707.960933pt;}
.yca{bottom:709.240933pt;}
.y124{bottom:711.800933pt;}
.yb8{bottom:713.720933pt;}
.y26{bottom:714.680933pt;}
.y86{bottom:717.560933pt;}
.y5f{bottom:719.480933pt;}
.y14b{bottom:720.120933pt;}
.yef{bottom:722.680933pt;}
.yc9{bottom:723.640933pt;}
.y123{bottom:725.560933pt;}
.y25{bottom:726.840933pt;}
.yb7{bottom:731.320933pt;}
.y5e{bottom:731.640933pt;}
.yee{bottom:733.880933pt;}
.y14a{bottom:734.520933pt;}
.yc8{bottom:735.480933pt;}
.y122{bottom:737.720933pt;}
.y24{bottom:741.240933pt;}
.y5d{bottom:743.480933pt;}
.y149{bottom:746.360933pt;}
.yed{bottom:747.960933pt;}
.yc7{bottom:749.880933pt;}
.yc{bottom:751.160933pt;}
.y121{bottom:751.480933pt;}
.y23{bottom:754.360933pt;}
.y5c{bottom:755.640933pt;}
.yb6{bottom:757.240933pt;}
.y148{bottom:758.520933pt;}
.yec{bottom:759.800933pt;}
.yc6{bottom:761.720933pt;}
.y120{bottom:763.640933pt;}
.yb5{bottom:769.080933pt;}
.y5b{bottom:769.400933pt;}
.y147{bottom:772.600933pt;}
.yeb{bottom:773.560933pt;}
.yc5{bottom:773.880933pt;}
.y11f{bottom:778.040933pt;}
.y22{bottom:778.360933pt;}
.yb{bottom:779.640933pt;}
.y5a{bottom:787.000933pt;}
.y11e{bottom:789.240933pt;}
.y21{bottom:790.200933pt;}
.y258{bottom:792.120933pt;}
.y85{bottom:793.720933pt;}
.y11d{bottom:799.480933pt;}
.y59{bottom:801.080933pt;}
.yc4{bottom:801.720933pt;}
.y20{bottom:804.280933pt;}
.y84{bottom:807.160933pt;}
.y58{bottom:818.680933pt;}
.y1f{bottom:828.280933pt;}
.y83{bottom:829.560933pt;}
.y57{bottom:832.440933pt;}
.yb4{bottom:841.080933pt;}
.y1e{bottom:842.040933pt;}
.y82{bottom:845.240933pt;}
.y56{bottom:846.520933pt;}
.y81{bottom:857.080933pt;}
.yb3{bottom:858.360933pt;}
.y259{bottom:863.800933pt;}
.y1d{bottom:866.680933pt;}
.y55{bottom:870.520933pt;}
.y1c{bottom:880.120933pt;}
.yb2{bottom:882.040933pt;}
.y80{bottom:883.000933pt;}
.y54{bottom:884.600933pt;}
.y5{bottom:892.280933pt;}
.ya{bottom:894.840933pt;}
.y7f{bottom:895.160933pt;}
.yb1{bottom:896.120933pt;}
.y1b{bottom:902.200933pt;}
.y53{bottom:904.120933pt;}
.y4{bottom:904.760933pt;}
.y17b{bottom:907.036933pt;}
.y9{bottom:907.320933pt;}
.y1a{bottom:918.200933pt;}
.y7e{bottom:919.480933pt;}
.yb0{bottom:920.440933pt;}
.y8{bottom:922.040933pt;}
.y3{bottom:924.920933pt;}
.y19{bottom:930.360933pt;}
.y52{bottom:931.960933pt;}
.y1b2{bottom:932.281333pt;}
.y7d{bottom:933.240933pt;}
.yaf{bottom:934.520933pt;}
.y2{bottom:936.760933pt;}
.y1{bottom:942.200933pt;}
.y17a{bottom:945.436933pt;}
.y226{bottom:951.481333pt;}
.y17d{bottom:952.121333pt;}
.y1b1{bottom:956.601333pt;}
.y18{bottom:958.840933pt;}
.y1e3{bottom:958.841333pt;}
.y7c{bottom:961.400933pt;}
.y179{bottom:964.636933pt;}
.y178{bottom:983.836933pt;}
.y177{bottom:1003.036933pt;}
.y176{bottom:1022.236933pt;}
.h10{height:19.468750pt;}
.h12{height:25.031250pt;}
.h13{height:27.812500pt;}
.h11{height:30.593750pt;}
.h5f{height:32.095000pt;}
.h25{height:33.375000pt;}
.h19{height:36.156250pt;}
.h1a{height:37.436250pt;}
.h1d{height:37.657500pt;}
.h1e{height:38.716250pt;}
.h14{height:38.937500pt;}
.h24{height:39.996250pt;}
.h16{height:40.217500pt;}
.h2a{height:40.438750pt;}
.h2c{height:41.276250pt;}
.h17{height:41.497500pt;}
.h15{height:41.718750pt;}
.h2b{height:42.556250pt;}
.h22{height:42.777500pt;}
.h21{height:42.998750pt;}
.h1c{height:43.836250pt;}
.h26{height:44.278750pt;}
.h20{height:44.500000pt;}
.h2e{height:44.992000pt;}
.h1b{height:45.116250pt;}
.h23{height:45.558750pt;}
.h41{height:45.780000pt;}
.h52{height:46.001250pt;}
.h27{height:46.617500pt;}
.h42{height:47.060000pt;}
.h7{height:47.281250pt;}
.h4b{height:47.502500pt;}
.h18{height:47.897500pt;}
.h1f{height:48.118750pt;}
.h3f{height:48.561250pt;}
.h51{height:48.782500pt;}
.h57{height:49.003750pt;}
.h4e{height:49.841250pt;}
.h6{height:50.062500pt;}
.h4a{height:50.283750pt;}
.h29{height:51.342500pt;}
.h4c{height:51.563750pt;}
.h2d{height:51.904000pt;}
.h43{height:52.622500pt;}
.h46{height:52.843750pt;}
.h59{height:53.065000pt;}
.h4d{height:53.286250pt;}
.h56{height:53.681250pt;}
.h8{height:53.902500pt;}
.h5e{height:53.950000pt;}
.h9{height:54.123750pt;}
.h49{height:54.345000pt;}
.h45{height:55.182500pt;}
.h35{height:55.403750pt;}
.h40{height:55.625000pt;}
.h58{height:55.846250pt;}
.h3e{height:56.462500pt;}
.h31{height:56.683750pt;}
.h55{height:56.905000pt;}
.h5a{height:57.126250pt;}
.h50{height:57.347500pt;}
.h32{height:57.963750pt;}
.h38{height:58.185000pt;}
.hb{height:58.406250pt;}
.h5c{height:59.022500pt;}
.h34{height:59.243750pt;}
.h3b{height:59.465000pt;}
.h54{height:61.187500pt;}
.h3a{height:61.803750pt;}
.h3c{height:62.025000pt;}
.h28{height:62.246250pt;}
.h44{height:62.467500pt;}
.h33{height:63.083750pt;}
.h39{height:63.526250pt;}
.h3d{height:66.307500pt;}
.h4{height:66.750000pt;}
.h37{height:67.808750pt;}
.h36{height:69.088750pt;}
.h5b{height:72.312500pt;}
.h4f{height:73.813750pt;}
.h47{height:75.093750pt;}
.h53{height:76.595000pt;}
.h5{height:83.437500pt;}
.h30{height:88.778750pt;}
.h48{height:91.781250pt;}
.h5d{height:126.957500pt;}
.hd{height:136.281250pt;}
.he{height:158.531250pt;}
.hf{height:191.906250pt;}
.ha{height:194.687500pt;}
.hc{height:211.375000pt;}
.h3{height:1072.666667pt;}
.h2f{height:1072.882253pt;}
.h2{height:1072.882267pt;}
.h0{height:1121.920000pt;}
.h1{height:1122.000000pt;}
.w0{width:907.001333pt;}
.w3{width:907.122253pt;}
.w2{width:907.122267pt;}
.w1{width:907.333333pt;}
.x0{left:0.000000pt;}
.xf{left:40.120933pt;}
.xe{left:51.960933pt;}
.x44{left:55.161333pt;}
.x47{left:58.361333pt;}
.x4f{left:89.720933pt;}
.x14{left:90.680933pt;}
.x15{left:91.640933pt;}
.x16{left:92.600933pt;}
.x17{left:93.560933pt;}
.x18{left:94.520933pt;}
.x19{left:95.480933pt;}
.x1a{left:96.440933pt;}
.x2d{left:97.400933pt;}
.x2c{left:98.360933pt;}
.x34{left:105.401333pt;}
.x35{left:106.361333pt;}
.x41{left:108.601333pt;}
.x40{left:109.561333pt;}
.x3f{left:110.521333pt;}
.x49{left:112.441333pt;}
.x4e{left:125.880933pt;}
.x50{left:132.280933pt;}
.x13{left:154.680933pt;}
.x48{left:190.201333pt;}
.xc{left:192.440933pt;}
.xd{left:199.480933pt;}
.x33{left:201.081333pt;}
.x3d{left:211.641333pt;}
.xb{left:254.840933pt;}
.x1b{left:269.560933pt;}
.x1c{left:270.520933pt;}
.x1d{left:271.480933pt;}
.x1e{left:272.440933pt;}
.x1f{left:273.400933pt;}
.x20{left:274.360933pt;}
.x11{left:275.320933pt;}
.x2e{left:276.920933pt;}
.x4d{left:281.720933pt;}
.x3e{left:282.681333pt;}
.x52{left:284.280933pt;}
.x9{left:313.720933pt;}
.x4{left:331.960933pt;}
.x10{left:336.760933pt;}
.x51{left:341.561333pt;}
.x12{left:352.760933pt;}
.xa{left:371.000933pt;}
.x5{left:372.600933pt;}
.x54{left:398.520933pt;}
.x55{left:400.120933pt;}
.x7{left:412.920933pt;}
.x2{left:417.720933pt;}
.x39{left:418.680933pt;}
.x3a{left:420.280933pt;}
.x6{left:435.000933pt;}
.x8{left:438.840933pt;}
.x1{left:440.760933pt;}
.x3{left:443.640933pt;}
.x21{left:447.800933pt;}
.x22{left:448.760933pt;}
.x23{left:449.720933pt;}
.x24{left:450.680933pt;}
.x25{left:451.960933pt;}
.x26{left:452.920933pt;}
.x27{left:453.880933pt;}
.x30{left:454.840933pt;}
.x2f{left:455.800933pt;}
.x5a{left:480.120933pt;}
.x5b{left:511.800933pt;}
.x5d{left:548.920933pt;}
.x4c{left:571.320933pt;}
.x4b{left:572.280933pt;}
.x28{left:626.680933pt;}
.x29{left:627.640933pt;}
.x2a{left:628.600933pt;}
.x2b{left:629.560933pt;}
.x32{left:633.720933pt;}
.x31{left:634.680933pt;}
.x36{left:643.001333pt;}
.x37{left:643.961333pt;}
.x38{left:646.521333pt;}
.x42{left:647.481333pt;}
.x43{left:648.441333pt;}
.x4a{left:650.361333pt;}
.x59{left:651.320933pt;}
.x5c{left:673.720933pt;}
.x46{left:750.520933pt;}
.x53{left:752.440933pt;}
.x3b{left:753.400933pt;}
.x56{left:793.080933pt;}
.x45{left:831.160933pt;}
.x3c{left:833.720933pt;}
.x58{left:841.720933pt;}
.x57{left:844.920933pt;}
}




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