
    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_db318532937b852d5a1bdcd0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_8659b77b99bf056ec5ef7889.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f5a8abc7e77cd0b933af82a1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916016;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_6758d828029223294bfb76bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_0c0f07300341152eb4fce587.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b892edc5067aafed4c4ccaf3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_2a706ce3f5d9791bf29d0749.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_008113fe3afe8534492961e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_46d0214ad42b185f55ac60c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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);}
.v3{vertical-align:-56.160000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:29.520000px;}
.v4{vertical-align:35.160000px;}
.ls1c{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.305400px;}
.ls14{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls24{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.000001px;}
.ls5{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls18{letter-spacing:0.120000px;}
.ls20{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.206640px;}
.ls1{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.262200px;}
.ls1e{letter-spacing:0.298800px;}
.ls13{letter-spacing:0.305400px;}
.ls3{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.720000px;}
.ls26{letter-spacing:6.785280px;}
.lsb{letter-spacing:10.080000px;}
.ls21{letter-spacing:14.376000px;}
.ls25{letter-spacing:39.905280px;}
.lsd{letter-spacing:165.834960px;}
.ls12{letter-spacing:346.674960px;}
.ls4{letter-spacing:1023.996000px;}
.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;}
}
.ws12{word-spacing:-66.240000px;}
.ws2{word-spacing:-21.420000px;}
.wsf{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.999999px;}
.ws9{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws16{word-spacing:-17.064000px;}
.ws4{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.wsc{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws15{word-spacing:-13.518000px;}
.ws10{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.447440px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._19{margin-left:-6.027840px;}
._9{margin-left:-4.392000px;}
._17{margin-left:-2.544000px;}
._2{margin-left:-1.434240px;}
._0{width:1.135440px;}
._7{width:2.459280px;}
._f{width:3.544560px;}
._8{width:4.902240px;}
._18{width:5.916960px;}
._c{width:6.955200px;}
._15{width:8.058720px;}
._14{width:9.432000px;}
._12{width:10.584000px;}
._d{width:12.168000px;}
._e{width:13.497120px;}
._10{width:14.976000px;}
._11{width:16.128000px;}
._1f{width:17.951040px;}
._1e{width:19.174560px;}
._1d{width:20.202240px;}
._13{width:22.176000px;}
._a{width:23.832000px;}
._b{width:25.161120px;}
._20{width:43.387200px;}
._4{width:71.456400px;}
._6{width:73.017840px;}
._1b{width:88.232880px;}
._5{width:93.060000px;}
._16{width:110.466480px;}
._1a{width:122.451120px;}
._1{width:183.155520px;}
._1c{width:277.776000px;}
._3{width:535.837440px;}
.fcb{color:rgb(62,61,64);}
.fc5{color:transparent;}
.fc4{color:rgb(68,114,196);}
.fca{color:rgb(27,27,27);}
.fc9{color:rgb(33,33,33);}
.fc8{color:rgb(17,17,17);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,176,240);}
.fs3{font-size:38.880000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y215{bottom:-52.245000px;}
.y214{bottom:-31.545000px;}
.y37{bottom:-14.085000px;}
.y213{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.yc9{bottom:0.720000px;}
.ycf{bottom:1.980000px;}
.yf0{bottom:2.880000px;}
.y36{bottom:3.060000px;}
.ya4{bottom:3.240000px;}
.y85{bottom:3.600000px;}
.y8a{bottom:3.780000px;}
.y145{bottom:3.960000px;}
.yab{bottom:4.140000px;}
.y90{bottom:4.320000px;}
.y99{bottom:4.500000px;}
.ya2{bottom:4.680000px;}
.yd1{bottom:4.860000px;}
.yc3{bottom:5.040000px;}
.y175{bottom:5.220000px;}
.yf4{bottom:5.400000px;}
.y9e{bottom:5.580000px;}
.y91{bottom:5.760000px;}
.y138{bottom:6.120000px;}
.y179{bottom:6.300000px;}
.yad{bottom:7.020000px;}
.y1a6{bottom:7.200000px;}
.y19a{bottom:7.560000px;}
.y15d{bottom:7.740000px;}
.y167{bottom:8.460000px;}
.y164{bottom:9.000000px;}
.y11d{bottom:9.180000px;}
.y16d{bottom:9.360000px;}
.y17e{bottom:9.900000px;}
.y16b{bottom:10.260000px;}
.yc5{bottom:10.800000px;}
.ya9{bottom:11.880000px;}
.y18b{bottom:12.240000px;}
.y161{bottom:12.465000px;}
.ydf{bottom:13.290000px;}
.y86{bottom:13.680000px;}
.y88{bottom:14.400000px;}
.yef{bottom:15.480000px;}
.y15f{bottom:16.020000px;}
.y133{bottom:16.740000px;}
.y130{bottom:18.360000px;}
.y15b{bottom:19.080000px;}
.y176{bottom:19.260000px;}
.y9d{bottom:19.650000px;}
.y35{bottom:20.340000px;}
.y127{bottom:20.520000px;}
.y1ac{bottom:20.880000px;}
.y19b{bottom:21.630000px;}
.ya1{bottom:21.960000px;}
.y84{bottom:22.680000px;}
.y212{bottom:22.860000px;}
.yc8{bottom:23.400000px;}
.y1ae{bottom:23.760000px;}
.y4{bottom:24.300000px;}
.yce{bottom:24.660000px;}
.y103{bottom:24.840000px;}
.y1a9{bottom:25.020000px;}
.y15c{bottom:26.640000px;}
.y8d{bottom:26.820000px;}
.yf6{bottom:27.900000px;}
.yfd{bottom:27.930000px;}
.y163{bottom:28.440000px;}
.ya8{bottom:29.160000px;}
.y105{bottom:30.060000px;}
.y149{bottom:30.240000px;}
.y13d{bottom:30.285000px;}
.yd8{bottom:30.855000px;}
.y120{bottom:30.960000px;}
.y150{bottom:31.320000px;}
.y17c{bottom:31.680000px;}
.y14e{bottom:32.040000px;}
.y82{bottom:32.220000px;}
.y135{bottom:33.120000px;}
.y132{bottom:34.020000px;}
.y126{bottom:34.410000px;}
.y96{bottom:35.850000px;}
.y12d{bottom:36.360000px;}
.y119{bottom:37.620000px;}
.y12b{bottom:37.800000px;}
.ya0{bottom:39.240000px;}
.yf3{bottom:39.960000px;}
.yfb{bottom:39.990000px;}
.y13b{bottom:40.005000px;}
.y211{bottom:40.140000px;}
.y173{bottom:40.500000px;}
.y142{bottom:40.680000px;}
.y102{bottom:42.120000px;}
.y8c{bottom:45.900000px;}
.ya7{bottom:46.440000px;}
.y11f{bottom:48.240000px;}
.y17b{bottom:48.960000px;}
.y131{bottom:51.120000px;}
.y118{bottom:54.900000px;}
.y12a{bottom:55.080000px;}
.yf2{bottom:57.240000px;}
.yfa{bottom:57.270000px;}
.y13a{bottom:57.285000px;}
.y210{bottom:57.420000px;}
.y141{bottom:57.960000px;}
.y14d{bottom:58.320000px;}
.y101{bottom:59.400000px;}
.y169{bottom:60.120000px;}
.yd7{bottom:60.270000px;}
.y204{bottom:60.840000px;}
.y197{bottom:61.200000px;}
.y7d{bottom:63.540000px;}
.y95{bottom:63.750000px;}
.yd9{bottom:67.035000px;}
.y117{bottom:72.180000px;}
.y129{bottom:72.360000px;}
.y124{bottom:72.540000px;}
.yd2{bottom:72.720000px;}
.y63{bottom:73.980000px;}
.y1cf{bottom:74.520000px;}
.y20f{bottom:74.700000px;}
.y33{bottom:77.580000px;}
.y203{bottom:79.920000px;}
.y196{bottom:84.960000px;}
.y7c{bottom:87.300000px;}
.y11e{bottom:90.180000px;}
.y20e{bottom:91.980000px;}
.yd3{bottom:92.340000px;}
.y80{bottom:92.775000px;}
.y62{bottom:97.740000px;}
.y1ce{bottom:98.460000px;}
.y202{bottom:98.820000px;}
.y32{bottom:101.340000px;}
.yda{bottom:103.170000px;}
.y123{bottom:108.180000px;}
.y195{bottom:108.720000px;}
.y20d{bottom:109.260000px;}
.y7b{bottom:111.060000px;}
.ycd{bottom:112.140000px;}
.y201{bottom:117.720000px;}
.yd6{bottom:119.310000px;}
.y61{bottom:121.680000px;}
.y1cd{bottom:122.220000px;}
.y31{bottom:125.280000px;}
.y122{bottom:126.180000px;}
.y20c{bottom:126.360000px;}
.y194{bottom:132.660000px;}
.yd0{bottom:133.020000px;}
.y7a{bottom:134.820000px;}
.y16f{bottom:135.000000px;}
.y200{bottom:136.800000px;}
.ydb{bottom:139.350000px;}
.y20b{bottom:143.640000px;}
.y121{bottom:144.180000px;}
.y60{bottom:145.440000px;}
.y1cc{bottom:145.980000px;}
.y30{bottom:149.040000px;}
.ycb{bottom:152.850000px;}
.y1ff{bottom:155.730000px;}
.y193{bottom:156.450000px;}
.y79{bottom:158.790000px;}
.y20a{bottom:160.920000px;}
.y116{bottom:162.210000px;}
.y5f{bottom:169.230000px;}
.y1cb{bottom:169.770000px;}
.ycc{bottom:172.650000px;}
.y2f{bottom:172.830000px;}
.y1fe{bottom:174.810000px;}
.ydc{bottom:175.530000px;}
.y192{bottom:180.210000px;}
.y78{bottom:182.550000px;}
.yc7{bottom:192.270000px;}
.y5e{bottom:192.990000px;}
.y1ca{bottom:193.710000px;}
.y11c{bottom:195.150000px;}
.y2e{bottom:196.590000px;}
.y191{bottom:203.970000px;}
.y77{bottom:206.310000px;}
.ydd{bottom:211.680000px;}
.yca{bottom:212.070000px;}
.y1fd{bottom:212.610000px;}
.y11b{bottom:213.150000px;}
.y5d{bottom:216.930000px;}
.y1c9{bottom:217.470000px;}
.y2d{bottom:220.530000px;}
.y190{bottom:227.910000px;}
.y16e{bottom:228.630000px;}
.y76{bottom:230.070000px;}
.y11a{bottom:231.150000px;}
.yc4{bottom:231.690000px;}
.y7f{bottom:231.990000px;}
.yd5{bottom:237.390000px;}
.y5c{bottom:240.690000px;}
.y1c8{bottom:241.230000px;}
.y2c{bottom:244.290000px;}
.y168{bottom:246.270000px;}
.yde{bottom:247.860000px;}
.y112{bottom:249.150000px;}
.y1fc{bottom:250.590000px;}
.yc6{bottom:251.490000px;}
.y18f{bottom:251.670000px;}
.y75{bottom:253.110000px;}
.y5b{bottom:264.450000px;}
.y1c7{bottom:264.990000px;}
.y115{bottom:267.150000px;}
.y2b{bottom:268.050000px;}
.y1fb{bottom:269.670000px;}
.yc2{bottom:271.110000px;}
.y16c{bottom:273.270000px;}
.y81{bottom:274.500000px;}
.y18e{bottom:275.430000px;}
.y74{bottom:278.850000px;}
.y7e{bottom:280.620000px;}
.y114{bottom:285.150000px;}
.y5a{bottom:288.210000px;}
.y1fa{bottom:288.570000px;}
.y1c6{bottom:288.930000px;}
.y2a{bottom:291.810000px;}
.y16a{bottom:298.650000px;}
.y113{bottom:303.150000px;}
.yc1{bottom:306.210000px;}
.y1f9{bottom:307.470000px;}
.y18d{bottom:308.190000px;}
.y59{bottom:312.150000px;}
.y1c5{bottom:312.690000px;}
.y29{bottom:315.570000px;}
.y111{bottom:321.150000px;}
.y166{bottom:324.930000px;}
.yc0{bottom:326.370000px;}
.y1f8{bottom:326.550000px;}
.y18c{bottom:332.130000px;}
.y58{bottom:335.910000px;}
.y1c4{bottom:336.450000px;}
.y28{bottom:339.510000px;}
.y1f7{bottom:345.450000px;}
.ybf{bottom:347.430000px;}
.y165{bottom:349.410000px;}
.y18a{bottom:349.590000px;}
.y110{bottom:351.930000px;}
.y57{bottom:359.670000px;}
.y1c3{bottom:360.210000px;}
.y27{bottom:363.270000px;}
.y1f6{bottom:364.530000px;}
.y189{bottom:367.590000px;}
.y162{bottom:369.750000px;}
.ybe{bottom:371.190000px;}
.y10f{bottom:374.250000px;}
.y1f5{bottom:383.430000px;}
.y1c2{bottom:384.150000px;}
.y188{bottom:385.590000px;}
.y26{bottom:387.030000px;}
.y56{bottom:392.430000px;}
.y160{bottom:394.770000px;}
.ybd{bottom:394.950000px;}
.y10e{bottom:396.750000px;}
.y1f4{bottom:402.375000px;}
.y185{bottom:403.635000px;}
.y1c1{bottom:407.955000px;}
.y55{bottom:416.415000px;}
.ybc{bottom:418.935000px;}
.y10d{bottom:419.115000px;}
.y25{bottom:419.835000px;}
.y1f3{bottom:421.455000px;}
.y187{bottom:421.635000px;}
.y15e{bottom:423.255000px;}
.y1c0{bottom:431.715000px;}
.y186{bottom:439.635000px;}
.y54{bottom:440.175000px;}
.y1f2{bottom:440.355000px;}
.y10c{bottom:441.435000px;}
.ybb{bottom:442.695000px;}
.y24{bottom:443.775000px;}
.y159{bottom:455.295000px;}
.y1bf{bottom:455.475000px;}
.y184{bottom:457.635000px;}
.y1f1{bottom:459.435000px;}
.y10b{bottom:463.755000px;}
.y53{bottom:463.935000px;}
.yba{bottom:466.455000px;}
.y23{bottom:467.535000px;}
.y183{bottom:475.635000px;}
.y1f0{bottom:478.335000px;}
.y1be{bottom:479.415000px;}
.y10a{bottom:486.075000px;}
.yb9{bottom:490.215000px;}
.y22{bottom:491.295000px;}
.y181{bottom:496.515000px;}
.y1ef{bottom:497.415000px;}
.y15a{bottom:497.955000px;}
.y1bd{bottom:503.175000px;}
.y52{bottom:505.695000px;}
.y109{bottom:508.395000px;}
.yb8{bottom:514.155000px;}
.y182{bottom:514.515000px;}
.y21{bottom:515.055000px;}
.y1ee{bottom:516.315000px;}
.y1bc{bottom:526.935000px;}
.y51{bottom:529.455000px;}
.y108{bottom:530.715000px;}
.y158{bottom:531.795000px;}
.y180{bottom:534.675000px;}
.y1ed{bottom:535.215000px;}
.yb7{bottom:537.915000px;}
.y20{bottom:538.995000px;}
.y100{bottom:548.175000px;}
.y1bb{bottom:550.695000px;}
.y17f{bottom:552.675000px;}
.y50{bottom:553.395000px;}
.y157{bottom:554.295000px;}
.yb6{bottom:561.675000px;}
.y1f{bottom:562.755000px;}
.y107{bottom:566.175000px;}
.y17a{bottom:570.675000px;}
.y1ec{bottom:573.195000px;}
.y1ba{bottom:574.455000px;}
.y4f{bottom:577.155000px;}
.y156{bottom:578.055000px;}
.yb5{bottom:578.415000px;}
.yd4{bottom:580.320000px;}
.y106{bottom:584.175000px;}
.y1e{bottom:586.515000px;}
.y1eb{bottom:592.275000px;}
.y17d{bottom:595.335000px;}
.y1b9{bottom:598.395000px;}
.y155{bottom:601.815000px;}
.y104{bottom:602.175000px;}
.y73{bottom:606.135000px;}
.y1d{bottom:610.275000px;}
.y1ea{bottom:611.175000px;}
.y178{bottom:613.335000px;}
.y4e{bottom:618.915000px;}
.y94{bottom:621.255000px;}
.y1b8{bottom:622.155000px;}
.yf9{bottom:622.335000px;}
.y154{bottom:625.755000px;}
.y1e9{bottom:630.075000px;}
.y1c{bottom:634.215000px;}
.y177{bottom:634.395000px;}
.y72{bottom:637.095000px;}
.yff{bottom:640.335000px;}
.y9a{bottom:640.875000px;}
.y4d{bottom:642.675000px;}
.y1b7{bottom:645.915000px;}
.y153{bottom:648.075000px;}
.y1e8{bottom:649.185000px;}
.y172{bottom:652.965000px;}
.y71{bottom:657.825000px;}
.y1b{bottom:658.005000px;}
.yfe{bottom:658.365000px;}
.y98{bottom:660.705000px;}
.y14c{bottom:665.565000px;}
.y4c{bottom:666.645000px;}
.y1e7{bottom:668.085000px;}
.y1b6{bottom:669.705000px;}
.yfc{bottom:676.365000px;}
.y70{bottom:678.525000px;}
.y97{bottom:681.405000px;}
.y1a{bottom:681.765000px;}
.y152{bottom:684.645000px;}
.y1e6{bottom:687.165000px;}
.y174{bottom:688.245000px;}
.y1b5{bottom:693.645000px;}
.yf1{bottom:694.365000px;}
.y6f{bottom:699.225000px;}
.y92{bottom:701.025000px;}
.y151{bottom:702.645000px;}
.y19{bottom:705.525000px;}
.y1e5{bottom:706.065000px;}
.y4b{bottom:708.405000px;}
.yf8{bottom:712.365000px;}
.y1b4{bottom:717.405000px;}
.y6e{bottom:719.925000px;}
.y14f{bottom:720.645000px;}
.y93{bottom:720.825000px;}
.y171{bottom:722.265000px;}
.y1e4{bottom:724.965000px;}
.y18{bottom:729.465000px;}
.yf7{bottom:730.365000px;}
.y4a{bottom:732.165000px;}
.y147{bottom:738.645000px;}
.y8b{bottom:740.445000px;}
.y6d{bottom:740.625000px;}
.y1b3{bottom:741.165000px;}
.y1e3{bottom:744.045000px;}
.y170{bottom:744.765000px;}
.yf5{bottom:748.365000px;}
.y17{bottom:753.225000px;}
.y49{bottom:755.925000px;}
.y14b{bottom:756.645000px;}
.y6c{bottom:761.325000px;}
.y8f{bottom:762.225000px;}
.y1e2{bottom:762.945000px;}
.y1b2{bottom:764.925000px;}
.yee{bottom:766.365000px;}
.y14a{bottom:774.645000px;}
.y16{bottom:776.985000px;}
.y48{bottom:779.865000px;}
.y1af{bottom:780.225000px;}
.y6b{bottom:782.025000px;}
.y8e{bottom:782.565000px;}
.y1b1{bottom:788.865000px;}
.y148{bottom:792.645000px;}
.yed{bottom:796.605000px;}
.y15{bottom:796.965000px;}
.y1ad{bottom:798.225000px;}
.y1e1{bottom:800.925000px;}
.y87{bottom:802.365000px;}
.y6a{bottom:802.725000px;}
.y47{bottom:803.625000px;}
.y140{bottom:810.645000px;}
.y1b0{bottom:812.625000px;}
.y14{bottom:814.245000px;}
.yec{bottom:815.325000px;}
.y1ab{bottom:817.485000px;}
.y1e0{bottom:819.825000px;}
.y89{bottom:821.985000px;}
.y69{bottom:823.425000px;}
.y46{bottom:827.385000px;}
.y146{bottom:828.645000px;}
.y13{bottom:834.045000px;}
.yeb{bottom:836.385000px;}
.y1df{bottom:838.905000px;}
.y83{bottom:841.785000px;}
.y68{bottom:844.125000px;}
.y144{bottom:846.645000px;}
.y45{bottom:851.145000px;}
.y1a8{bottom:853.125000px;}
.y12{bottom:853.845000px;}
.y1de{bottom:857.805000px;}
.yea{bottom:860.145000px;}
.yb4{bottom:863.745000px;}
.y143{bottom:865.365000px;}
.y67{bottom:868.065000px;}
.y1aa{bottom:871.125000px;}
.y44{bottom:875.085000px;}
.y1dd{bottom:876.885000px;}
.y139{bottom:883.365000px;}
.ye9{bottom:884.085000px;}
.y209{bottom:885.885000px;}
.yb3{bottom:886.425000px;}
.y11{bottom:887.685000px;}
.y1a7{bottom:889.125000px;}
.y1dc{bottom:895.785000px;}
.y43{bottom:898.890000px;}
.y66{bottom:900.150000px;}
.y13f{bottom:901.410000px;}
.y34{bottom:904.830000px;}
.y1a5{bottom:907.170000px;}
.ye8{bottom:907.890000px;}
.yb2{bottom:910.230000px;}
.y1db{bottom:914.730000px;}
.y13e{bottom:919.410000px;}
.y42{bottom:922.650000px;}
.y1a4{bottom:929.130000px;}
.ye7{bottom:931.650000px;}
.y1da{bottom:933.810000px;}
.yb1{bottom:933.990000px;}
.y13c{bottom:937.410000px;}
.y41{bottom:946.410000px;}
.y1a3{bottom:947.130000px;}
.y1d9{bottom:952.710000px;}
.ye6{bottom:955.410000px;}
.yb0{bottom:957.750000px;}
.y10{bottom:963.690000px;}
.y1a2{bottom:965.130000px;}
.y40{bottom:970.350000px;}
.y1d8{bottom:971.790000px;}
.y137{bottom:973.410000px;}
.ye5{bottom:979.350000px;}
.yaf{bottom:981.690000px;}
.yf{bottom:982.230000px;}
.y1a1{bottom:983.130000px;}
.y1d7{bottom:990.690000px;}
.y3f{bottom:994.110000px;}
.y136{bottom:994.290000px;}
.y1a0{bottom:1001.130000px;}
.ye4{bottom:1003.110000px;}
.yae{bottom:1004.010000px;}
.ye{bottom:1004.550000px;}
.y1d6{bottom:1009.770000px;}
.y134{bottom:1012.290000px;}
.y3e{bottom:1017.870000px;}
.ya6{bottom:1021.470000px;}
.yd{bottom:1021.830000px;}
.y19f{bottom:1022.190000px;}
.ye3{bottom:1026.870000px;}
.y1d5{bottom:1028.670000px;}
.y128{bottom:1030.290000px;}
.yc{bottom:1039.110000px;}
.y19e{bottom:1040.190000px;}
.y3d{bottom:1041.630000px;}
.yac{bottom:1043.250000px;}
.y1d4{bottom:1047.570000px;}
.ye2{bottom:1050.630000px;}
.yb{bottom:1051.170000px;}
.y19d{bottom:1058.190000px;}
.y12f{bottom:1063.410000px;}
.yaa{bottom:1063.770000px;}
.y3c{bottom:1065.390000px;}
.y1d3{bottom:1066.650000px;}
.ya{bottom:1068.450000px;}
.ye1{bottom:1074.390000px;}
.y19c{bottom:1076.190000px;}
.y12e{bottom:1081.410000px;}
.y9f{bottom:1082.670000px;}
.y1d2{bottom:1085.550000px;}
.y3b{bottom:1089.330000px;}
.y9{bottom:1089.690000px;}
.y198{bottom:1097.250000px;}
.ye0{bottom:1098.330000px;}
.y12c{bottom:1099.410000px;}
.ya5{bottom:1100.670000px;}
.y1d1{bottom:1104.630000px;}
.y8{bottom:1108.230000px;}
.y65{bottom:1113.090000px;}
.y208{bottom:1114.170000px;}
.y125{bottom:1117.410000px;}
.ya3{bottom:1118.670000px;}
.y3a{bottom:1122.090000px;}
.y1d0{bottom:1123.530000px;}
.y199{bottom:1128.930000px;}
.y7{bottom:1132.350000px;}
.y207{bottom:1133.250000px;}
.y9c{bottom:1136.670000px;}
.y64{bottom:1136.850000px;}
.y39{bottom:1145.850000px;}
.y206{bottom:1152.180000px;}
.y6{bottom:1155.240000px;}
.y38{bottom:1169.640000px;}
.y9b{bottom:1170.900000px;}
.y205{bottom:1171.080000px;}
.y5{bottom:1172.520000px;}
.y3{bottom:1190.340000px;}
.y2{bottom:1210.320000px;}
.y1{bottom:1227.600000px;}
.h2a{height:15.480000px;}
.h35{height:17.100000px;}
.h34{height:17.136000px;}
.h20{height:17.280000px;}
.h2e{height:17.316000px;}
.h4e{height:17.856000px;}
.h3b{height:18.000000px;}
.h22{height:18.180000px;}
.h3d{height:18.360000px;}
.h17{height:18.900000px;}
.h1d{height:18.936000px;}
.h15{height:19.080000px;}
.h25{height:19.116000px;}
.h4c{height:19.260000px;}
.h30{height:19.440000px;}
.h19{height:19.620000px;}
.h1e{height:19.656000px;}
.h1c{height:19.800000px;}
.h26{height:20.160000px;}
.h23{height:20.340000px;}
.h1a{height:21.060000px;}
.h59{height:21.240000px;}
.h54{height:21.636000px;}
.h46{height:23.760000px;}
.h50{height:23.940000px;}
.h45{height:24.300000px;}
.h49{height:24.660000px;}
.h48{height:25.560000px;}
.h4a{height:26.100000px;}
.h8{height:27.147656px;}
.h43{height:27.756000px;}
.h55{height:30.960000px;}
.h42{height:31.320000px;}
.h32{height:32.220000px;}
.h38{height:32.400000px;}
.hd{height:34.380000px;}
.h36{height:34.416000px;}
.h4d{height:34.560000px;}
.h5a{height:34.920000px;}
.h52{height:35.280000px;}
.h57{height:37.705078px;}
.h13{height:37.980000px;}
.h2b{height:38.100586px;}
.h58{height:38.340000px;}
.h14{height:38.700000px;}
.h56{height:38.997070px;}
.h24{height:39.996000px;}
.hf{height:40.472227px;}
.h5{height:41.726953px;}
.h4{height:41.843672px;}
.h40{height:41.940000px;}
.h2{height:42.164648px;}
.h16{height:46.251562px;}
.h9{height:46.736719px;}
.h41{height:47.836406px;}
.he{height:48.027656px;}
.h5c{height:48.224531px;}
.h7{height:48.312422px;}
.h3e{height:49.992188px;}
.h3{height:50.273438px;}
.ha{height:50.414062px;}
.hc{height:50.800781px;}
.hb{height:51.996094px;}
.h44{height:52.776000px;}
.h1f{height:53.280000px;}
.h53{height:53.316000px;}
.h5b{height:54.360000px;}
.h4b{height:54.540000px;}
.h51{height:55.260000px;}
.h29{height:55.291992px;}
.h6{height:59.436914px;}
.h21{height:60.480000px;}
.h11{height:61.189805px;}
.h18{height:61.200000px;}
.h3f{height:61.740000px;}
.h4f{height:63.000000px;}
.h33{height:71.136000px;}
.h2c{height:71.280000px;}
.h2d{height:71.316000px;}
.h3a{height:72.000000px;}
.h3c{height:72.360000px;}
.h2f{height:73.440000px;}
.h39{height:74.160000px;}
.h1b{height:79.056000px;}
.h31{height:86.220000px;}
.h37{height:86.400000px;}
.h28{height:90.709805px;}
.h12{height:96.349805px;}
.h47{height:102.420000px;}
.h5d{height:174.960000px;}
.h27{height:268.200000px;}
.h10{height:311.220000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:52.380000px;}
.w2c{width:54.360000px;}
.w34{width:63.000000px;}
.w35{width:63.036000px;}
.w3d{width:64.656000px;}
.w1d{width:68.400000px;}
.w25{width:68.580000px;}
.w1b{width:68.616000px;}
.w2b{width:72.720000px;}
.w1f{width:82.116000px;}
.w3e{width:83.196000px;}
.w3c{width:83.340000px;}
.w19{width:84.060000px;}
.w15{width:84.240000px;}
.w28{width:84.456000px;}
.w24{width:88.596000px;}
.w1c{width:89.640000px;}
.w30{width:91.836000px;}
.wc{width:94.896000px;}
.w17{width:95.076000px;}
.w2f{width:96.120000px;}
.w26{width:98.100000px;}
.w38{width:98.316000px;}
.w21{width:101.160000px;}
.w3f{width:102.096000px;}
.w2d{width:105.336000px;}
.w1e{width:107.820000px;}
.w23{width:108.576000px;}
.w37{width:109.620000px;}
.w40{width:111.240000px;}
.w27{width:112.716000px;}
.wb{width:116.316000px;}
.w10{width:119.916000px;}
.w36{width:120.996000px;}
.wd{width:126.900000px;}
.w2e{width:132.696000px;}
.w16{width:137.556000px;}
.w6{width:141.660000px;}
.wf{width:142.776000px;}
.w7{width:144.936000px;}
.w29{width:159.840000px;}
.w32{width:162.750000px;}
.w11{width:168.330000px;}
.w8{width:177.690000px;}
.w9{width:177.870000px;}
.w22{width:178.230000px;}
.w3a{width:182.010000px;}
.w18{width:191.235000px;}
.w20{width:220.935000px;}
.w13{width:276.015000px;}
.w1a{width:322.815000px;}
.wa{width:328.530000px;}
.we{width:349.095000px;}
.w5{width:356.295000px;}
.w3b{width:400.785000px;}
.w2a{width:428.325000px;}
.w33{width:452.265000px;}
.w4{width:527.940000px;}
.w12{width:573.840000px;}
.w31{width:717.405000px;}
.w3{width:732.570000px;}
.w41{width:732.960000px;}
.w39{width:743.400000px;}
.w42{width:782.280000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:8.100000px;}
.x63{left:9.540000px;}
.xf{left:10.800000px;}
.x34{left:12.420000px;}
.x31{left:13.500000px;}
.x67{left:15.480000px;}
.x41{left:16.740000px;}
.x3d{left:18.540000px;}
.x26{left:19.620000px;}
.x46{left:21.060000px;}
.x69{left:22.140000px;}
.x50{left:23.400000px;}
.x2c{left:25.230000px;}
.x2e{left:27.360000px;}
.x53{left:28.980000px;}
.x5e{left:30.600000px;}
.x5c{left:32.220000px;}
.x71{left:33.300000px;}
.x39{left:35.100000px;}
.x68{left:36.720000px;}
.x3b{left:37.800000px;}
.x30{left:39.060000px;}
.x5d{left:40.680000px;}
.x52{left:42.120000px;}
.x33{left:44.100000px;}
.x1f{left:45.585000px;}
.x55{left:47.520000px;}
.x1d{left:48.780000px;}
.x23{left:51.165000px;}
.x1{left:53.999987px;}
.xc{left:55.799987px;}
.x25{left:56.880000px;}
.x27{left:58.320000px;}
.x7a{left:59.616000px;}
.x3e{left:61.230000px;}
.x20{left:62.274000px;}
.x4{left:63.719987px;}
.x54{left:68.805000px;}
.x22{left:72.000000px;}
.x49{left:74.700000px;}
.x17{left:75.780000px;}
.x89{left:76.890000px;}
.x6b{left:79.734000px;}
.x88{left:81.030000px;}
.x12{left:82.079987px;}
.x3f{left:85.176000px;}
.x47{left:86.400000px;}
.x6a{left:87.876000px;}
.x24{left:88.914000px;}
.x7e{left:90.930000px;}
.x19{left:92.160000px;}
.x87{left:100.290000px;}
.x40{left:101.370000px;}
.x43{left:103.965000px;}
.x8a{left:108.035987px;}
.x32{left:109.794000px;}
.x29{left:112.176000px;}
.xb{left:114.155987px;}
.xa{left:119.915987px;}
.x1a{left:124.416000px;}
.x80{left:126.945000px;}
.xe{left:129.636000px;}
.x4a{left:137.910000px;}
.x18{left:140.550000px;}
.x1b{left:149.259000px;}
.x75{left:152.685000px;}
.x7c{left:155.370000px;}
.x86{left:157.710000px;}
.x42{left:159.480000px;}
.x56{left:161.310000px;}
.x2a{left:164.199000px;}
.x48{left:166.169987px;}
.x6{left:173.009987px;}
.x37{left:174.450000px;}
.x7b{left:178.950000px;}
.x15{left:181.980000px;}
.x8{left:191.189987px;}
.x5f{left:194.789987px;}
.x72{left:196.409987px;}
.x73{left:207.749987px;}
.xd{left:216.749987px;}
.x7{left:225.929987px;}
.x44{left:228.165000px;}
.x5{left:230.429987px;}
.x35{left:234.569987px;}
.x74{left:238.350000px;}
.x28{left:242.849987px;}
.x6c{left:248.430000px;}
.x60{left:254.550000px;}
.x7f{left:262.830000px;}
.x51{left:266.655000px;}
.x9{left:281.954987px;}
.x11{left:288.974987px;}
.x5b{left:296.535000px;}
.x21{left:302.835000px;}
.x14{left:308.414987px;}
.x7d{left:329.295000px;}
.x83{left:346.755000px;}
.x3{left:348.554987px;}
.x4b{left:351.435000px;}
.x6f{left:354.675000px;}
.x78{left:360.255000px;}
.x61{left:363.855000px;}
.x10{left:366.189000px;}
.x57{left:398.595000px;}
.x38{left:404.535000px;}
.x16{left:425.130000px;}
.x2b{left:441.435000px;}
.x2{left:446.504987px;}
.x84{left:449.565000px;}
.x62{left:453.345000px;}
.x58{left:467.925000px;}
.x45{left:480.345000px;}
.x1c{left:481.425000px;}
.x70{left:488.085000px;}
.x4d{left:500.145000px;}
.x64{left:522.645000px;}
.x3a{left:548.025000px;}
.x2d{left:558.465000px;}
.x85{left:561.525000px;}
.x4e{left:585.105000px;}
.x79{left:592.305000px;}
.x65{left:621.465000px;}
.x1e{left:623.805000px;}
.x59{left:627.450000px;}
.x2f{left:654.090000px;}
.x81{left:664.350000px;}
.x3c{left:668.670000px;}
.x6d{left:677.490000px;}
.x76{left:691.530000px;}
.x13{left:710.969987px;}
.x4f{left:723.390000px;}
.x36{left:733.469987px;}
.x66{left:734.910000px;}
.x5a{left:736.170000px;}
.x82{left:748.410000px;}
.x6e{left:750.930000px;}
.x77{left:755.250000px;}
@media print{
.v3{vertical-align:-49.920000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:26.240000pt;}
.v4{vertical-align:31.253333pt;}
.ls1c{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls14{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.000001pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls18{letter-spacing:0.106667pt;}
.ls20{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.183680pt;}
.ls1{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls13{letter-spacing:0.271467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls26{letter-spacing:6.031360pt;}
.lsb{letter-spacing:8.960000pt;}
.ls21{letter-spacing:12.778667pt;}
.ls25{letter-spacing:35.471360pt;}
.lsd{letter-spacing:147.408853pt;}
.ls12{letter-spacing:308.155520pt;}
.ls4{letter-spacing:910.218667pt;}
.ws12{word-spacing:-58.880000pt;}
.ws2{word-spacing:-19.040000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.999999pt;}
.ws9{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws16{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.313067pt;}
.ws1{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws15{word-spacing:-12.016000pt;}
.ws10{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.953280pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._19{margin-left:-5.358080pt;}
._9{margin-left:-3.904000pt;}
._17{margin-left:-2.261333pt;}
._2{margin-left:-1.274880pt;}
._0{width:1.009280pt;}
._7{width:2.186027pt;}
._f{width:3.150720pt;}
._8{width:4.357547pt;}
._18{width:5.259520pt;}
._c{width:6.182400pt;}
._15{width:7.163307pt;}
._14{width:8.384000pt;}
._12{width:9.408000pt;}
._d{width:10.816000pt;}
._e{width:11.997440pt;}
._10{width:13.312000pt;}
._11{width:14.336000pt;}
._1f{width:15.956480pt;}
._1e{width:17.044053pt;}
._1d{width:17.957547pt;}
._13{width:19.712000pt;}
._a{width:21.184000pt;}
._b{width:22.365440pt;}
._20{width:38.566400pt;}
._4{width:63.516800pt;}
._6{width:64.904747pt;}
._1b{width:78.429227pt;}
._5{width:82.720000pt;}
._16{width:98.192427pt;}
._1a{width:108.845440pt;}
._1{width:162.804907pt;}
._1c{width:246.912000pt;}
._3{width:476.299947pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y215{bottom:-46.440000pt;}
.y214{bottom:-28.040000pt;}
.y37{bottom:-12.520000pt;}
.y213{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.yc9{bottom:0.640000pt;}
.ycf{bottom:1.760000pt;}
.yf0{bottom:2.560000pt;}
.y36{bottom:2.720000pt;}
.ya4{bottom:2.880000pt;}
.y85{bottom:3.200000pt;}
.y8a{bottom:3.360000pt;}
.y145{bottom:3.520000pt;}
.yab{bottom:3.680000pt;}
.y90{bottom:3.840000pt;}
.y99{bottom:4.000000pt;}
.ya2{bottom:4.160000pt;}
.yd1{bottom:4.320000pt;}
.yc3{bottom:4.480000pt;}
.y175{bottom:4.640000pt;}
.yf4{bottom:4.800000pt;}
.y9e{bottom:4.960000pt;}
.y91{bottom:5.120000pt;}
.y138{bottom:5.440000pt;}
.y179{bottom:5.600000pt;}
.yad{bottom:6.240000pt;}
.y1a6{bottom:6.400000pt;}
.y19a{bottom:6.720000pt;}
.y15d{bottom:6.880000pt;}
.y167{bottom:7.520000pt;}
.y164{bottom:8.000000pt;}
.y11d{bottom:8.160000pt;}
.y16d{bottom:8.320000pt;}
.y17e{bottom:8.800000pt;}
.y16b{bottom:9.120000pt;}
.yc5{bottom:9.600000pt;}
.ya9{bottom:10.560000pt;}
.y18b{bottom:10.880000pt;}
.y161{bottom:11.080000pt;}
.ydf{bottom:11.813333pt;}
.y86{bottom:12.160000pt;}
.y88{bottom:12.800000pt;}
.yef{bottom:13.760000pt;}
.y15f{bottom:14.240000pt;}
.y133{bottom:14.880000pt;}
.y130{bottom:16.320000pt;}
.y15b{bottom:16.960000pt;}
.y176{bottom:17.120000pt;}
.y9d{bottom:17.466667pt;}
.y35{bottom:18.080000pt;}
.y127{bottom:18.240000pt;}
.y1ac{bottom:18.560000pt;}
.y19b{bottom:19.226667pt;}
.ya1{bottom:19.520000pt;}
.y84{bottom:20.160000pt;}
.y212{bottom:20.320000pt;}
.yc8{bottom:20.800000pt;}
.y1ae{bottom:21.120000pt;}
.y4{bottom:21.600000pt;}
.yce{bottom:21.920000pt;}
.y103{bottom:22.080000pt;}
.y1a9{bottom:22.240000pt;}
.y15c{bottom:23.680000pt;}
.y8d{bottom:23.840000pt;}
.yf6{bottom:24.800000pt;}
.yfd{bottom:24.826667pt;}
.y163{bottom:25.280000pt;}
.ya8{bottom:25.920000pt;}
.y105{bottom:26.720000pt;}
.y149{bottom:26.880000pt;}
.y13d{bottom:26.920000pt;}
.yd8{bottom:27.426667pt;}
.y120{bottom:27.520000pt;}
.y150{bottom:27.840000pt;}
.y17c{bottom:28.160000pt;}
.y14e{bottom:28.480000pt;}
.y82{bottom:28.640000pt;}
.y135{bottom:29.440000pt;}
.y132{bottom:30.240000pt;}
.y126{bottom:30.586667pt;}
.y96{bottom:31.866667pt;}
.y12d{bottom:32.320000pt;}
.y119{bottom:33.440000pt;}
.y12b{bottom:33.600000pt;}
.ya0{bottom:34.880000pt;}
.yf3{bottom:35.520000pt;}
.yfb{bottom:35.546667pt;}
.y13b{bottom:35.560000pt;}
.y211{bottom:35.680000pt;}
.y173{bottom:36.000000pt;}
.y142{bottom:36.160000pt;}
.y102{bottom:37.440000pt;}
.y8c{bottom:40.800000pt;}
.ya7{bottom:41.280000pt;}
.y11f{bottom:42.880000pt;}
.y17b{bottom:43.520000pt;}
.y131{bottom:45.440000pt;}
.y118{bottom:48.800000pt;}
.y12a{bottom:48.960000pt;}
.yf2{bottom:50.880000pt;}
.yfa{bottom:50.906667pt;}
.y13a{bottom:50.920000pt;}
.y210{bottom:51.040000pt;}
.y141{bottom:51.520000pt;}
.y14d{bottom:51.840000pt;}
.y101{bottom:52.800000pt;}
.y169{bottom:53.440000pt;}
.yd7{bottom:53.573333pt;}
.y204{bottom:54.080000pt;}
.y197{bottom:54.400000pt;}
.y7d{bottom:56.480000pt;}
.y95{bottom:56.666667pt;}
.yd9{bottom:59.586667pt;}
.y117{bottom:64.160000pt;}
.y129{bottom:64.320000pt;}
.y124{bottom:64.480000pt;}
.yd2{bottom:64.640000pt;}
.y63{bottom:65.760000pt;}
.y1cf{bottom:66.240000pt;}
.y20f{bottom:66.400000pt;}
.y33{bottom:68.960000pt;}
.y203{bottom:71.040000pt;}
.y196{bottom:75.520000pt;}
.y7c{bottom:77.600000pt;}
.y11e{bottom:80.160000pt;}
.y20e{bottom:81.760000pt;}
.yd3{bottom:82.080000pt;}
.y80{bottom:82.466667pt;}
.y62{bottom:86.880000pt;}
.y1ce{bottom:87.520000pt;}
.y202{bottom:87.840000pt;}
.y32{bottom:90.080000pt;}
.yda{bottom:91.706667pt;}
.y123{bottom:96.160000pt;}
.y195{bottom:96.640000pt;}
.y20d{bottom:97.120000pt;}
.y7b{bottom:98.720000pt;}
.ycd{bottom:99.680000pt;}
.y201{bottom:104.640000pt;}
.yd6{bottom:106.053333pt;}
.y61{bottom:108.160000pt;}
.y1cd{bottom:108.640000pt;}
.y31{bottom:111.360000pt;}
.y122{bottom:112.160000pt;}
.y20c{bottom:112.320000pt;}
.y194{bottom:117.920000pt;}
.yd0{bottom:118.240000pt;}
.y7a{bottom:119.840000pt;}
.y16f{bottom:120.000000pt;}
.y200{bottom:121.600000pt;}
.ydb{bottom:123.866667pt;}
.y20b{bottom:127.680000pt;}
.y121{bottom:128.160000pt;}
.y60{bottom:129.280000pt;}
.y1cc{bottom:129.760000pt;}
.y30{bottom:132.480000pt;}
.ycb{bottom:135.866667pt;}
.y1ff{bottom:138.426667pt;}
.y193{bottom:139.066667pt;}
.y79{bottom:141.146667pt;}
.y20a{bottom:143.040000pt;}
.y116{bottom:144.186667pt;}
.y5f{bottom:150.426667pt;}
.y1cb{bottom:150.906667pt;}
.ycc{bottom:153.466667pt;}
.y2f{bottom:153.626667pt;}
.y1fe{bottom:155.386667pt;}
.ydc{bottom:156.026667pt;}
.y192{bottom:160.186667pt;}
.y78{bottom:162.266667pt;}
.yc7{bottom:170.906667pt;}
.y5e{bottom:171.546667pt;}
.y1ca{bottom:172.186667pt;}
.y11c{bottom:173.466667pt;}
.y2e{bottom:174.746667pt;}
.y191{bottom:181.306667pt;}
.y77{bottom:183.386667pt;}
.ydd{bottom:188.160000pt;}
.yca{bottom:188.506667pt;}
.y1fd{bottom:188.986667pt;}
.y11b{bottom:189.466667pt;}
.y5d{bottom:192.826667pt;}
.y1c9{bottom:193.306667pt;}
.y2d{bottom:196.026667pt;}
.y190{bottom:202.586667pt;}
.y16e{bottom:203.226667pt;}
.y76{bottom:204.506667pt;}
.y11a{bottom:205.466667pt;}
.yc4{bottom:205.946667pt;}
.y7f{bottom:206.213333pt;}
.yd5{bottom:211.013333pt;}
.y5c{bottom:213.946667pt;}
.y1c8{bottom:214.426667pt;}
.y2c{bottom:217.146667pt;}
.y168{bottom:218.906667pt;}
.yde{bottom:220.320000pt;}
.y112{bottom:221.466667pt;}
.y1fc{bottom:222.746667pt;}
.yc6{bottom:223.546667pt;}
.y18f{bottom:223.706667pt;}
.y75{bottom:224.986667pt;}
.y5b{bottom:235.066667pt;}
.y1c7{bottom:235.546667pt;}
.y115{bottom:237.466667pt;}
.y2b{bottom:238.266667pt;}
.y1fb{bottom:239.706667pt;}
.yc2{bottom:240.986667pt;}
.y16c{bottom:242.906667pt;}
.y81{bottom:244.000000pt;}
.y18e{bottom:244.826667pt;}
.y74{bottom:247.866667pt;}
.y7e{bottom:249.440000pt;}
.y114{bottom:253.466667pt;}
.y5a{bottom:256.186667pt;}
.y1fa{bottom:256.506667pt;}
.y1c6{bottom:256.826667pt;}
.y2a{bottom:259.386667pt;}
.y16a{bottom:265.466667pt;}
.y113{bottom:269.466667pt;}
.yc1{bottom:272.186667pt;}
.y1f9{bottom:273.306667pt;}
.y18d{bottom:273.946667pt;}
.y59{bottom:277.466667pt;}
.y1c5{bottom:277.946667pt;}
.y29{bottom:280.506667pt;}
.y111{bottom:285.466667pt;}
.y166{bottom:288.826667pt;}
.yc0{bottom:290.106667pt;}
.y1f8{bottom:290.266667pt;}
.y18c{bottom:295.226667pt;}
.y58{bottom:298.586667pt;}
.y1c4{bottom:299.066667pt;}
.y28{bottom:301.786667pt;}
.y1f7{bottom:307.066667pt;}
.ybf{bottom:308.826667pt;}
.y165{bottom:310.586667pt;}
.y18a{bottom:310.746667pt;}
.y110{bottom:312.826667pt;}
.y57{bottom:319.706667pt;}
.y1c3{bottom:320.186667pt;}
.y27{bottom:322.906667pt;}
.y1f6{bottom:324.026667pt;}
.y189{bottom:326.746667pt;}
.y162{bottom:328.666667pt;}
.ybe{bottom:329.946667pt;}
.y10f{bottom:332.666667pt;}
.y1f5{bottom:340.826667pt;}
.y1c2{bottom:341.466667pt;}
.y188{bottom:342.746667pt;}
.y26{bottom:344.026667pt;}
.y56{bottom:348.826667pt;}
.y160{bottom:350.906667pt;}
.ybd{bottom:351.066667pt;}
.y10e{bottom:352.666667pt;}
.y1f4{bottom:357.666667pt;}
.y185{bottom:358.786667pt;}
.y1c1{bottom:362.626667pt;}
.y55{bottom:370.146667pt;}
.ybc{bottom:372.386667pt;}
.y10d{bottom:372.546667pt;}
.y25{bottom:373.186667pt;}
.y1f3{bottom:374.626667pt;}
.y187{bottom:374.786667pt;}
.y15e{bottom:376.226667pt;}
.y1c0{bottom:383.746667pt;}
.y186{bottom:390.786667pt;}
.y54{bottom:391.266667pt;}
.y1f2{bottom:391.426667pt;}
.y10c{bottom:392.386667pt;}
.ybb{bottom:393.506667pt;}
.y24{bottom:394.466667pt;}
.y159{bottom:404.706667pt;}
.y1bf{bottom:404.866667pt;}
.y184{bottom:406.786667pt;}
.y1f1{bottom:408.386667pt;}
.y10b{bottom:412.226667pt;}
.y53{bottom:412.386667pt;}
.yba{bottom:414.626667pt;}
.y23{bottom:415.586667pt;}
.y183{bottom:422.786667pt;}
.y1f0{bottom:425.186667pt;}
.y1be{bottom:426.146667pt;}
.y10a{bottom:432.066667pt;}
.yb9{bottom:435.746667pt;}
.y22{bottom:436.706667pt;}
.y181{bottom:441.346667pt;}
.y1ef{bottom:442.146667pt;}
.y15a{bottom:442.626667pt;}
.y1bd{bottom:447.266667pt;}
.y52{bottom:449.506667pt;}
.y109{bottom:451.906667pt;}
.yb8{bottom:457.026667pt;}
.y182{bottom:457.346667pt;}
.y21{bottom:457.826667pt;}
.y1ee{bottom:458.946667pt;}
.y1bc{bottom:468.386667pt;}
.y51{bottom:470.626667pt;}
.y108{bottom:471.746667pt;}
.y158{bottom:472.706667pt;}
.y180{bottom:475.266667pt;}
.y1ed{bottom:475.746667pt;}
.yb7{bottom:478.146667pt;}
.y20{bottom:479.106667pt;}
.y100{bottom:487.266667pt;}
.y1bb{bottom:489.506667pt;}
.y17f{bottom:491.266667pt;}
.y50{bottom:491.906667pt;}
.y157{bottom:492.706667pt;}
.yb6{bottom:499.266667pt;}
.y1f{bottom:500.226667pt;}
.y107{bottom:503.266667pt;}
.y17a{bottom:507.266667pt;}
.y1ec{bottom:509.506667pt;}
.y1ba{bottom:510.626667pt;}
.y4f{bottom:513.026667pt;}
.y156{bottom:513.826667pt;}
.yb5{bottom:514.146667pt;}
.yd4{bottom:515.840000pt;}
.y106{bottom:519.266667pt;}
.y1e{bottom:521.346667pt;}
.y1eb{bottom:526.466667pt;}
.y17d{bottom:529.186667pt;}
.y1b9{bottom:531.906667pt;}
.y155{bottom:534.946667pt;}
.y104{bottom:535.266667pt;}
.y73{bottom:538.786667pt;}
.y1d{bottom:542.466667pt;}
.y1ea{bottom:543.266667pt;}
.y178{bottom:545.186667pt;}
.y4e{bottom:550.146667pt;}
.y94{bottom:552.226667pt;}
.y1b8{bottom:553.026667pt;}
.yf9{bottom:553.186667pt;}
.y154{bottom:556.226667pt;}
.y1e9{bottom:560.066667pt;}
.y1c{bottom:563.746667pt;}
.y177{bottom:563.906667pt;}
.y72{bottom:566.306667pt;}
.yff{bottom:569.186667pt;}
.y9a{bottom:569.666667pt;}
.y4d{bottom:571.266667pt;}
.y1b7{bottom:574.146667pt;}
.y153{bottom:576.066667pt;}
.y1e8{bottom:577.053333pt;}
.y172{bottom:580.413333pt;}
.y71{bottom:584.733333pt;}
.y1b{bottom:584.893333pt;}
.yfe{bottom:585.213333pt;}
.y98{bottom:587.293333pt;}
.y14c{bottom:591.613333pt;}
.y4c{bottom:592.573333pt;}
.y1e7{bottom:593.853333pt;}
.y1b6{bottom:595.293333pt;}
.yfc{bottom:601.213333pt;}
.y70{bottom:603.133333pt;}
.y97{bottom:605.693333pt;}
.y1a{bottom:606.013333pt;}
.y152{bottom:608.573333pt;}
.y1e6{bottom:610.813333pt;}
.y174{bottom:611.773333pt;}
.y1b5{bottom:616.573333pt;}
.yf1{bottom:617.213333pt;}
.y6f{bottom:621.533333pt;}
.y92{bottom:623.133333pt;}
.y151{bottom:624.573333pt;}
.y19{bottom:627.133333pt;}
.y1e5{bottom:627.613333pt;}
.y4b{bottom:629.693333pt;}
.yf8{bottom:633.213333pt;}
.y1b4{bottom:637.693333pt;}
.y6e{bottom:639.933333pt;}
.y14f{bottom:640.573333pt;}
.y93{bottom:640.733333pt;}
.y171{bottom:642.013333pt;}
.y1e4{bottom:644.413333pt;}
.y18{bottom:648.413333pt;}
.yf7{bottom:649.213333pt;}
.y4a{bottom:650.813333pt;}
.y147{bottom:656.573333pt;}
.y8b{bottom:658.173333pt;}
.y6d{bottom:658.333333pt;}
.y1b3{bottom:658.813333pt;}
.y1e3{bottom:661.373333pt;}
.y170{bottom:662.013333pt;}
.yf5{bottom:665.213333pt;}
.y17{bottom:669.533333pt;}
.y49{bottom:671.933333pt;}
.y14b{bottom:672.573333pt;}
.y6c{bottom:676.733333pt;}
.y8f{bottom:677.533333pt;}
.y1e2{bottom:678.173333pt;}
.y1b2{bottom:679.933333pt;}
.yee{bottom:681.213333pt;}
.y14a{bottom:688.573333pt;}
.y16{bottom:690.653333pt;}
.y48{bottom:693.213333pt;}
.y1af{bottom:693.533333pt;}
.y6b{bottom:695.133333pt;}
.y8e{bottom:695.613333pt;}
.y1b1{bottom:701.213333pt;}
.y148{bottom:704.573333pt;}
.yed{bottom:708.093333pt;}
.y15{bottom:708.413333pt;}
.y1ad{bottom:709.533333pt;}
.y1e1{bottom:711.933333pt;}
.y87{bottom:713.213333pt;}
.y6a{bottom:713.533333pt;}
.y47{bottom:714.333333pt;}
.y140{bottom:720.573333pt;}
.y1b0{bottom:722.333333pt;}
.y14{bottom:723.773333pt;}
.yec{bottom:724.733333pt;}
.y1ab{bottom:726.653333pt;}
.y1e0{bottom:728.733333pt;}
.y89{bottom:730.653333pt;}
.y69{bottom:731.933333pt;}
.y46{bottom:735.453333pt;}
.y146{bottom:736.573333pt;}
.y13{bottom:741.373333pt;}
.yeb{bottom:743.453333pt;}
.y1df{bottom:745.693333pt;}
.y83{bottom:748.253333pt;}
.y68{bottom:750.333333pt;}
.y144{bottom:752.573333pt;}
.y45{bottom:756.573333pt;}
.y1a8{bottom:758.333333pt;}
.y12{bottom:758.973333pt;}
.y1de{bottom:762.493333pt;}
.yea{bottom:764.573333pt;}
.yb4{bottom:767.773333pt;}
.y143{bottom:769.213333pt;}
.y67{bottom:771.613333pt;}
.y1aa{bottom:774.333333pt;}
.y44{bottom:777.853333pt;}
.y1dd{bottom:779.453333pt;}
.y139{bottom:785.213333pt;}
.ye9{bottom:785.853333pt;}
.y209{bottom:787.453333pt;}
.yb3{bottom:787.933333pt;}
.y11{bottom:789.053333pt;}
.y1a7{bottom:790.333333pt;}
.y1dc{bottom:796.253333pt;}
.y43{bottom:799.013333pt;}
.y66{bottom:800.133333pt;}
.y13f{bottom:801.253333pt;}
.y34{bottom:804.293333pt;}
.y1a5{bottom:806.373333pt;}
.ye8{bottom:807.013333pt;}
.yb2{bottom:809.093333pt;}
.y1db{bottom:813.093333pt;}
.y13e{bottom:817.253333pt;}
.y42{bottom:820.133333pt;}
.y1a4{bottom:825.893333pt;}
.ye7{bottom:828.133333pt;}
.y1da{bottom:830.053333pt;}
.yb1{bottom:830.213333pt;}
.y13c{bottom:833.253333pt;}
.y41{bottom:841.253333pt;}
.y1a3{bottom:841.893333pt;}
.y1d9{bottom:846.853333pt;}
.ye6{bottom:849.253333pt;}
.yb0{bottom:851.333333pt;}
.y10{bottom:856.613333pt;}
.y1a2{bottom:857.893333pt;}
.y40{bottom:862.533333pt;}
.y1d8{bottom:863.813333pt;}
.y137{bottom:865.253333pt;}
.ye5{bottom:870.533333pt;}
.yaf{bottom:872.613333pt;}
.yf{bottom:873.093333pt;}
.y1a1{bottom:873.893333pt;}
.y1d7{bottom:880.613333pt;}
.y3f{bottom:883.653333pt;}
.y136{bottom:883.813333pt;}
.y1a0{bottom:889.893333pt;}
.ye4{bottom:891.653333pt;}
.yae{bottom:892.453333pt;}
.ye{bottom:892.933333pt;}
.y1d6{bottom:897.573333pt;}
.y134{bottom:899.813333pt;}
.y3e{bottom:904.773333pt;}
.ya6{bottom:907.973333pt;}
.yd{bottom:908.293333pt;}
.y19f{bottom:908.613333pt;}
.ye3{bottom:912.773333pt;}
.y1d5{bottom:914.373333pt;}
.y128{bottom:915.813333pt;}
.yc{bottom:923.653333pt;}
.y19e{bottom:924.613333pt;}
.y3d{bottom:925.893333pt;}
.yac{bottom:927.333333pt;}
.y1d4{bottom:931.173333pt;}
.ye2{bottom:933.893333pt;}
.yb{bottom:934.373333pt;}
.y19d{bottom:940.613333pt;}
.y12f{bottom:945.253333pt;}
.yaa{bottom:945.573333pt;}
.y3c{bottom:947.013333pt;}
.y1d3{bottom:948.133333pt;}
.ya{bottom:949.733333pt;}
.ye1{bottom:955.013333pt;}
.y19c{bottom:956.613333pt;}
.y12e{bottom:961.253333pt;}
.y9f{bottom:962.373333pt;}
.y1d2{bottom:964.933333pt;}
.y3b{bottom:968.293333pt;}
.y9{bottom:968.613333pt;}
.y198{bottom:975.333333pt;}
.ye0{bottom:976.293333pt;}
.y12c{bottom:977.253333pt;}
.ya5{bottom:978.373333pt;}
.y1d1{bottom:981.893333pt;}
.y8{bottom:985.093333pt;}
.y65{bottom:989.413333pt;}
.y208{bottom:990.373333pt;}
.y125{bottom:993.253333pt;}
.ya3{bottom:994.373333pt;}
.y3a{bottom:997.413333pt;}
.y1d0{bottom:998.693333pt;}
.y199{bottom:1003.493333pt;}
.y7{bottom:1006.533333pt;}
.y207{bottom:1007.333333pt;}
.y9c{bottom:1010.373333pt;}
.y64{bottom:1010.533333pt;}
.y39{bottom:1018.533333pt;}
.y206{bottom:1024.160000pt;}
.y6{bottom:1026.880000pt;}
.y38{bottom:1039.680000pt;}
.y9b{bottom:1040.800000pt;}
.y205{bottom:1040.960000pt;}
.y5{bottom:1042.240000pt;}
.y3{bottom:1058.080000pt;}
.y2{bottom:1075.840000pt;}
.y1{bottom:1091.200000pt;}
.h2a{height:13.760000pt;}
.h35{height:15.200000pt;}
.h34{height:15.232000pt;}
.h20{height:15.360000pt;}
.h2e{height:15.392000pt;}
.h4e{height:15.872000pt;}
.h3b{height:16.000000pt;}
.h22{height:16.160000pt;}
.h3d{height:16.320000pt;}
.h17{height:16.800000pt;}
.h1d{height:16.832000pt;}
.h15{height:16.960000pt;}
.h25{height:16.992000pt;}
.h4c{height:17.120000pt;}
.h30{height:17.280000pt;}
.h19{height:17.440000pt;}
.h1e{height:17.472000pt;}
.h1c{height:17.600000pt;}
.h26{height:17.920000pt;}
.h23{height:18.080000pt;}
.h1a{height:18.720000pt;}
.h59{height:18.880000pt;}
.h54{height:19.232000pt;}
.h46{height:21.120000pt;}
.h50{height:21.280000pt;}
.h45{height:21.600000pt;}
.h49{height:21.920000pt;}
.h48{height:22.720000pt;}
.h4a{height:23.200000pt;}
.h8{height:24.131250pt;}
.h43{height:24.672000pt;}
.h55{height:27.520000pt;}
.h42{height:27.840000pt;}
.h32{height:28.640000pt;}
.h38{height:28.800000pt;}
.hd{height:30.560000pt;}
.h36{height:30.592000pt;}
.h4d{height:30.720000pt;}
.h5a{height:31.040000pt;}
.h52{height:31.360000pt;}
.h57{height:33.515625pt;}
.h13{height:33.760000pt;}
.h2b{height:33.867188pt;}
.h58{height:34.080000pt;}
.h14{height:34.400000pt;}
.h56{height:34.664062pt;}
.h24{height:35.552000pt;}
.hf{height:35.975313pt;}
.h5{height:37.090625pt;}
.h4{height:37.194375pt;}
.h40{height:37.280000pt;}
.h2{height:37.479688pt;}
.h16{height:41.112500pt;}
.h9{height:41.543750pt;}
.h41{height:42.521250pt;}
.he{height:42.691250pt;}
.h5c{height:42.866250pt;}
.h7{height:42.944375pt;}
.h3e{height:44.437500pt;}
.h3{height:44.687500pt;}
.ha{height:44.812500pt;}
.hc{height:45.156250pt;}
.hb{height:46.218750pt;}
.h44{height:46.912000pt;}
.h1f{height:47.360000pt;}
.h53{height:47.392000pt;}
.h5b{height:48.320000pt;}
.h4b{height:48.480000pt;}
.h51{height:49.120000pt;}
.h29{height:49.148438pt;}
.h6{height:52.832812pt;}
.h21{height:53.760000pt;}
.h11{height:54.390938pt;}
.h18{height:54.400000pt;}
.h3f{height:54.880000pt;}
.h4f{height:56.000000pt;}
.h33{height:63.232000pt;}
.h2c{height:63.360000pt;}
.h2d{height:63.392000pt;}
.h3a{height:64.000000pt;}
.h3c{height:64.320000pt;}
.h2f{height:65.280000pt;}
.h39{height:65.920000pt;}
.h1b{height:70.272000pt;}
.h31{height:76.640000pt;}
.h37{height:76.800000pt;}
.h28{height:80.630938pt;}
.h12{height:85.644271pt;}
.h47{height:91.040000pt;}
.h5d{height:155.520000pt;}
.h27{height:238.400000pt;}
.h10{height:276.640000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:46.560000pt;}
.w2c{width:48.320000pt;}
.w34{width:56.000000pt;}
.w35{width:56.032000pt;}
.w3d{width:57.472000pt;}
.w1d{width:60.800000pt;}
.w25{width:60.960000pt;}
.w1b{width:60.992000pt;}
.w2b{width:64.640000pt;}
.w1f{width:72.992000pt;}
.w3e{width:73.952000pt;}
.w3c{width:74.080000pt;}
.w19{width:74.720000pt;}
.w15{width:74.880000pt;}
.w28{width:75.072000pt;}
.w24{width:78.752000pt;}
.w1c{width:79.680000pt;}
.w30{width:81.632000pt;}
.wc{width:84.352000pt;}
.w17{width:84.512000pt;}
.w2f{width:85.440000pt;}
.w26{width:87.200000pt;}
.w38{width:87.392000pt;}
.w21{width:89.920000pt;}
.w3f{width:90.752000pt;}
.w2d{width:93.632000pt;}
.w1e{width:95.840000pt;}
.w23{width:96.512000pt;}
.w37{width:97.440000pt;}
.w40{width:98.880000pt;}
.w27{width:100.192000pt;}
.wb{width:103.392000pt;}
.w10{width:106.592000pt;}
.w36{width:107.552000pt;}
.wd{width:112.800000pt;}
.w2e{width:117.952000pt;}
.w16{width:122.272000pt;}
.w6{width:125.920000pt;}
.wf{width:126.912000pt;}
.w7{width:128.832000pt;}
.w29{width:142.080000pt;}
.w32{width:144.666667pt;}
.w11{width:149.626667pt;}
.w8{width:157.946667pt;}
.w9{width:158.106667pt;}
.w22{width:158.426667pt;}
.w3a{width:161.786667pt;}
.w18{width:169.986667pt;}
.w20{width:196.386667pt;}
.w13{width:245.346667pt;}
.w1a{width:286.946667pt;}
.wa{width:292.026667pt;}
.we{width:310.306667pt;}
.w5{width:316.706667pt;}
.w3b{width:356.253333pt;}
.w2a{width:380.733333pt;}
.w33{width:402.013333pt;}
.w4{width:469.280000pt;}
.w12{width:510.080000pt;}
.w31{width:637.693333pt;}
.w3{width:651.173333pt;}
.w41{width:651.520000pt;}
.w39{width:660.800000pt;}
.w42{width:695.360000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:7.200000pt;}
.x63{left:8.480000pt;}
.xf{left:9.600000pt;}
.x34{left:11.040000pt;}
.x31{left:12.000000pt;}
.x67{left:13.760000pt;}
.x41{left:14.880000pt;}
.x3d{left:16.480000pt;}
.x26{left:17.440000pt;}
.x46{left:18.720000pt;}
.x69{left:19.680000pt;}
.x50{left:20.800000pt;}
.x2c{left:22.426667pt;}
.x2e{left:24.320000pt;}
.x53{left:25.760000pt;}
.x5e{left:27.200000pt;}
.x5c{left:28.640000pt;}
.x71{left:29.600000pt;}
.x39{left:31.200000pt;}
.x68{left:32.640000pt;}
.x3b{left:33.600000pt;}
.x30{left:34.720000pt;}
.x5d{left:36.160000pt;}
.x52{left:37.440000pt;}
.x33{left:39.200000pt;}
.x1f{left:40.520000pt;}
.x55{left:42.240000pt;}
.x1d{left:43.360000pt;}
.x23{left:45.480000pt;}
.x1{left:47.999988pt;}
.xc{left:49.599988pt;}
.x25{left:50.560000pt;}
.x27{left:51.840000pt;}
.x7a{left:52.992000pt;}
.x3e{left:54.426667pt;}
.x20{left:55.354667pt;}
.x4{left:56.639988pt;}
.x54{left:61.160000pt;}
.x22{left:64.000000pt;}
.x49{left:66.400000pt;}
.x17{left:67.360000pt;}
.x89{left:68.346667pt;}
.x6b{left:70.874667pt;}
.x88{left:72.026667pt;}
.x12{left:72.959988pt;}
.x3f{left:75.712000pt;}
.x47{left:76.800000pt;}
.x6a{left:78.112000pt;}
.x24{left:79.034667pt;}
.x7e{left:80.826667pt;}
.x19{left:81.920000pt;}
.x87{left:89.146667pt;}
.x40{left:90.106667pt;}
.x43{left:92.413333pt;}
.x8a{left:96.031988pt;}
.x32{left:97.594667pt;}
.x29{left:99.712000pt;}
.xb{left:101.471988pt;}
.xa{left:106.591988pt;}
.x1a{left:110.592000pt;}
.x80{left:112.840000pt;}
.xe{left:115.232000pt;}
.x4a{left:122.586667pt;}
.x18{left:124.933333pt;}
.x1b{left:132.674667pt;}
.x75{left:135.720000pt;}
.x7c{left:138.106667pt;}
.x86{left:140.186667pt;}
.x42{left:141.760000pt;}
.x56{left:143.386667pt;}
.x2a{left:145.954667pt;}
.x48{left:147.706655pt;}
.x6{left:153.786655pt;}
.x37{left:155.066667pt;}
.x7b{left:159.066667pt;}
.x15{left:161.760000pt;}
.x8{left:169.946655pt;}
.x5f{left:173.146655pt;}
.x72{left:174.586655pt;}
.x73{left:184.666655pt;}
.xd{left:192.666655pt;}
.x7{left:200.826655pt;}
.x44{left:202.813333pt;}
.x5{left:204.826655pt;}
.x35{left:208.506655pt;}
.x74{left:211.866667pt;}
.x28{left:215.866655pt;}
.x6c{left:220.826667pt;}
.x60{left:226.266667pt;}
.x7f{left:233.626667pt;}
.x51{left:237.026667pt;}
.x9{left:250.626655pt;}
.x11{left:256.866655pt;}
.x5b{left:263.586667pt;}
.x21{left:269.186667pt;}
.x14{left:274.146655pt;}
.x7d{left:292.706667pt;}
.x83{left:308.226667pt;}
.x3{left:309.826655pt;}
.x4b{left:312.386667pt;}
.x6f{left:315.266667pt;}
.x78{left:320.226667pt;}
.x61{left:323.426667pt;}
.x10{left:325.501333pt;}
.x57{left:354.306667pt;}
.x38{left:359.586667pt;}
.x16{left:377.893333pt;}
.x2b{left:392.386667pt;}
.x2{left:396.893322pt;}
.x84{left:399.613333pt;}
.x62{left:402.973333pt;}
.x58{left:415.933333pt;}
.x45{left:426.973333pt;}
.x1c{left:427.933333pt;}
.x70{left:433.853333pt;}
.x4d{left:444.573333pt;}
.x64{left:464.573333pt;}
.x3a{left:487.133333pt;}
.x2d{left:496.413333pt;}
.x85{left:499.133333pt;}
.x4e{left:520.093333pt;}
.x79{left:526.493333pt;}
.x65{left:552.413333pt;}
.x1e{left:554.493333pt;}
.x59{left:557.733333pt;}
.x2f{left:581.413333pt;}
.x81{left:590.533333pt;}
.x3c{left:594.373333pt;}
.x6d{left:602.213333pt;}
.x76{left:614.693333pt;}
.x13{left:631.973322pt;}
.x4f{left:643.013333pt;}
.x36{left:651.973322pt;}
.x66{left:653.253333pt;}
.x5a{left:654.373333pt;}
.x82{left:665.253333pt;}
.x6e{left:667.493333pt;}
.x77{left:671.333333pt;}
}




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