
    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_490c6b641a8142e828606d79.woff')format("woff");}.ff1{font-family:ff1;line-height:1.255859;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_793329209f0fff5e11e14556.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_d2d8ec073922a0ddc535fd0d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.255859;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_859a80a4671d3b36d04fefe6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_f173ed08a9d764ce186d9bc5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.929199;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_27b75026402ed66999818285.woff')format("woff");}.ff8{font-family:ff8;line-height:1.276855;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_7db8a5d9d50fe4e5bbbc492c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.276855;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_6ac1be69f3ff69acdf3dc07b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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;}
.m2{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,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:-30.240000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls34{letter-spacing:-2.160000px;}
.ls33{letter-spacing:-1.728000px;}
.ls1f{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.325200px;}
.ls1a{letter-spacing:-0.288000px;}
.ls11{letter-spacing:-0.232800px;}
.ls25{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.207600px;}
.ls12{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls29{letter-spacing:-0.000003px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015840px;}
.ls26{letter-spacing:0.048000px;}
.ls19{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.063360px;}
.lsc{letter-spacing:0.063600px;}
.ls31{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.154800px;}
.ls2f{letter-spacing:0.195600px;}
.ls1b{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.252000px;}
.ls6{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.265200px;}
.ls15{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.468000px;}
.lsa{letter-spacing:0.590400px;}
.ls32{letter-spacing:0.648000px;}
.ls14{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.786000px;}
.ls22{letter-spacing:1.368000px;}
.ls30{letter-spacing:1.656000px;}
.ls5{letter-spacing:1.799280px;}
.ls1e{letter-spacing:2.088000px;}
.ls13{letter-spacing:2.647440px;}
.ls8{letter-spacing:2.764800px;}
.ls7{letter-spacing:3.239280px;}
.ls9{letter-spacing:3.304800px;}
.ls2e{letter-spacing:4.032000px;}
.ls20{letter-spacing:4.536000px;}
.ls27{letter-spacing:6.528000px;}
.ls18{letter-spacing:7.128000px;}
.ls28{letter-spacing:7.200000px;}
.ls2{letter-spacing:8.407440px;}
.ls24{letter-spacing:11.568000px;}
.ls23{letter-spacing:15.168000px;}
.ls2a{letter-spacing:19.368000px;}
.ls2c{letter-spacing:21.528000px;}
.ls1c{letter-spacing:21.816000px;}
.ls2d{letter-spacing:26.568000px;}
.ls2b{letter-spacing:47.448000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-22.744800px;}
.ws6{word-spacing:-20.232000px;}
.ws14{word-spacing:-20.160000px;}
.ws17{word-spacing:-20.088000px;}
.ws4{word-spacing:-18.613440px;}
.ws5{word-spacing:-18.288240px;}
.ws18{word-spacing:-18.072000px;}
.ws13{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.783997px;}
.ws1{word-spacing:-17.152560px;}
.ws7{word-spacing:-16.947360px;}
.ws0{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.432560px;}
.ws9{word-spacing:-16.135200px;}
.wsa{word-spacing:-14.760720px;}
.ws12{word-spacing:-14.328000px;}
.wsc{word-spacing:-11.999760px;}
.wse{word-spacing:-10.368000px;}
.ws8{word-spacing:-9.972000px;}
.ws11{word-spacing:-9.720000px;}
.wsf{word-spacing:-9.144000px;}
.ws10{word-spacing:-8.892000px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-5.161200px;}
._10{margin-left:-3.822480px;}
._9{margin-left:-2.369520px;}
._1{margin-left:-1.111200px;}
._0{width:1.314720px;}
._2{width:2.747280px;}
._8{width:3.794640px;}
._a{width:4.932000px;}
._3{width:6.095520px;}
._7{width:7.123440px;}
._6{width:8.270400px;}
._4{width:9.740880px;}
._5{width:11.095680px;}
._b{width:12.908160px;}
._c{width:14.176560px;}
._18{width:16.053120px;}
._12{width:17.712000px;}
._e{width:18.775920px;}
._d{width:20.318400px;}
._15{width:21.744000px;}
._16{width:22.856160px;}
._17{width:23.955840px;}
._19{width:25.272000px;}
._20{width:26.568000px;}
._1f{width:27.576000px;}
._22{width:30.024000px;}
._1b{width:31.440720px;}
._f{width:33.047280px;}
._26{width:34.056000px;}
._27{width:35.064000px;}
._13{width:36.432000px;}
._14{width:37.440000px;}
._1c{width:39.312000px;}
._1d{width:40.800000px;}
._1a{width:44.424000px;}
._21{width:46.087200px;}
._1e{width:47.880000px;}
._24{width:64.980000px;}
._23{width:87.408000px;}
._25{width:97.560000px;}
.fc8{color:transparent;}
.fc9{color:rgb(238,0,0);}
.fc6{color:rgb(27,27,26);}
.fc7{color:rgb(32,33,34);}
.fc5{color:rgb(29,29,27);}
.fc4{color:rgb(28,28,26);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yba{bottom:0.540000px;}
.ybd{bottom:0.720000px;}
.y178{bottom:2.160000px;}
.y5{bottom:4.170000px;}
.y1ce{bottom:4.680000px;}
.y1db{bottom:4.860000px;}
.y16e{bottom:5.220000px;}
.y15f{bottom:5.580000px;}
.y1a5{bottom:5.760000px;}
.y181{bottom:6.300000px;}
.y16c{bottom:6.345000px;}
.y15a{bottom:6.840000px;}
.y162{bottom:7.020000px;}
.y14b{bottom:7.380000px;}
.y191{bottom:7.560000px;}
.ydf{bottom:8.100000px;}
.y16d{bottom:8.280000px;}
.y198{bottom:8.640000px;}
.y111{bottom:8.820000px;}
.y17b{bottom:9.000000px;}
.y172{bottom:9.360000px;}
.y16b{bottom:9.405000px;}
.y180{bottom:9.540000px;}
.y1a8{bottom:9.720000px;}
.y159{bottom:9.900000px;}
.y161{bottom:10.260000px;}
.y166{bottom:10.440000px;}
.y190{bottom:10.620000px;}
.y14d{bottom:10.800000px;}
.y194{bottom:11.025000px;}
.yde{bottom:11.160000px;}
.y197{bottom:11.700000px;}
.y110{bottom:11.880000px;}
.yd7{bottom:12.060000px;}
.y171{bottom:12.420000px;}
.yb8{bottom:12.780000px;}
.y1a7{bottom:12.960000px;}
.y165{bottom:13.680000px;}
.y18e{bottom:14.040000px;}
.y193{bottom:14.265000px;}
.y19d{bottom:14.940000px;}
.y177{bottom:15.120000px;}
.yd6{bottom:15.300000px;}
.y183{bottom:19.110000px;}
.y18c{bottom:19.440000px;}
.y184{bottom:22.350000px;}
.y18d{bottom:22.860000px;}
.y4{bottom:25.590000px;}
.yb6{bottom:25.740000px;}
.y201{bottom:30.420000px;}
.y1e7{bottom:30.465000px;}
.y1da{bottom:30.594000px;}
.y1cd{bottom:30.600000px;}
.y213{bottom:30.645000px;}
.yb7{bottom:38.520000px;}
.y3{bottom:47.190000px;}
.y207{bottom:56.334000px;}
.y1ef{bottom:56.340000px;}
.y1e6{bottom:56.385000px;}
.y1d9{bottom:56.514000px;}
.y1f2{bottom:56.520000px;}
.y2{bottom:68.610000px;}
.y35{bottom:76.176000px;}
.y1e5{bottom:82.125000px;}
.y1d8{bottom:82.254000px;}
.y1ee{bottom:82.260000px;}
.y11{bottom:93.456000px;}
.y34{bottom:95.256000px;}
.y1ed{bottom:108.000000px;}
.y1e4{bottom:108.045000px;}
.y1d7{bottom:108.174000px;}
.y10{bottom:113.616000px;}
.y8b{bottom:116.136000px;}
.y118{bottom:117.036000px;}
.y1a4{bottom:119.736000px;}
.y1cf{bottom:121.536000px;}
.yb0{bottom:122.076000px;}
.y1ca{bottom:124.236000px;}
.y206{bottom:126.036000px;}
.y117{bottom:130.536000px;}
.y229{bottom:132.156000px;}
.yf{bottom:132.696000px;}
.y1a3{bottom:133.416000px;}
.y1e3{bottom:133.785000px;}
.y1d6{bottom:133.914000px;}
.y1ec{bottom:133.920000px;}
.y210{bottom:133.950000px;}
.y157{bottom:135.576000px;}
.y8a{bottom:137.736000px;}
.y219{bottom:143.676000px;}
.y116{bottom:144.036000px;}
.y1f3{bottom:144.756000px;}
.y5e{bottom:145.476000px;}
.y1a2{bottom:146.916000px;}
.y23f{bottom:148.356000px;}
.y156{bottom:149.256000px;}
.y1c9{bottom:150.150000px;}
.ye{bottom:153.570000px;}
.y115{bottom:157.710000px;}
.y228{bottom:158.070000px;}
.y89{bottom:159.150000px;}
.y1eb{bottom:159.660000px;}
.y20f{bottom:159.690000px;}
.y1e2{bottom:159.705000px;}
.y1d5{bottom:159.834000px;}
.y218{bottom:160.230000px;}
.y1a1{bottom:160.590000px;}
.y155{bottom:162.750000px;}
.y88{bottom:165.090000px;}
.y5d{bottom:171.210000px;}
.y1a0{bottom:174.090000px;}
.y23e{bottom:174.270000px;}
.yd{bottom:175.170000px;}
.y1c8{bottom:175.890000px;}
.y154{bottom:176.430000px;}
.y87{bottom:180.750000px;}
.ycc{bottom:181.830000px;}
.y227{bottom:183.810000px;}
.y114{bottom:184.890000px;}
.y1e1{bottom:185.445000px;}
.y1d4{bottom:185.574000px;}
.y1ea{bottom:185.580000px;}
.y20e{bottom:185.610000px;}
.y86{bottom:186.690000px;}
.y19f{bottom:187.590000px;}
.y153{bottom:189.930000px;}
.yc{bottom:196.590000px;}
.y5c{bottom:197.130000px;}
.y113{bottom:198.390000px;}
.y23d{bottom:200.010000px;}
.y19e{bottom:201.270000px;}
.y1c7{bottom:201.810000px;}
.y85{bottom:202.350000px;}
.yaf{bottom:203.430000px;}
.y217{bottom:203.610000px;}
.y226{bottom:209.550000px;}
.y1d3{bottom:211.314000px;}
.y1e0{bottom:211.365000px;}
.ycb{bottom:211.530000px;}
.y112{bottom:211.890000px;}
.y19c{bottom:214.770000px;}
.y152{bottom:217.110000px;}
.yb{bottom:218.190000px;}
.y5b{bottom:222.870000px;}
.y84{bottom:223.770000px;}
.yca{bottom:225.030000px;}
.y10f{bottom:225.570000px;}
.y1c6{bottom:227.550000px;}
.y216{bottom:229.350000px;}
.y83{bottom:229.710000px;}
.y205{bottom:230.070000px;}
.y23c{bottom:230.430000px;}
.y151{bottom:230.610000px;}
.yae{bottom:231.510000px;}
.y225{bottom:235.470000px;}
.y1df{bottom:237.105000px;}
.y1d2{bottom:237.279000px;}
.yc9{bottom:238.530000px;}
.ya{bottom:239.790000px;}
.y150{bottom:244.290000px;}
.y82{bottom:246.450000px;}
.y5a{bottom:248.790000px;}
.y19b{bottom:248.970000px;}
.yc8{bottom:252.210000px;}
.y1c5{bottom:253.470000px;}
.y10e{bottom:253.830000px;}
.y215{bottom:255.270000px;}
.y23b{bottom:256.170000px;}
.yad{bottom:257.430000px;}
.y14f{bottom:257.790000px;}
.y9{bottom:261.210000px;}
.y19a{bottom:262.650000px;}
.y1d1{bottom:263.019000px;}
.y1de{bottom:263.025000px;}
.yc7{bottom:265.710000px;}
.y10d{bottom:267.330000px;}
.y14e{bottom:271.290000px;}
.y59{bottom:274.530000px;}
.y199{bottom:276.150000px;}
.y1c4{bottom:279.210000px;}
.yc6{bottom:279.390000px;}
.y10c{bottom:280.830000px;}
.y204{bottom:282.450000px;}
.y8{bottom:282.810000px;}
.yab{bottom:283.170000px;}
.y14c{bottom:284.970000px;}
.y23a{bottom:286.590000px;}
.y224{bottom:287.130000px;}
.y1dd{bottom:288.765000px;}
.y1d0{bottom:288.939000px;}
.y196{bottom:289.830000px;}
.yac{bottom:290.730000px;}
.yc5{bottom:292.890000px;}
.y214{bottom:293.970000px;}
.y10b{bottom:294.510000px;}
.y58{bottom:300.450000px;}
.y1c3{bottom:304.950000px;}
.yc4{bottom:306.570000px;}
.y10a{bottom:308.010000px;}
.yaa{bottom:309.090000px;}
.y239{bottom:312.330000px;}
.y223{bottom:312.870000px;}
.y203{bottom:314.535000px;}
.y212{bottom:315.750000px;}
.y14a{bottom:317.190000px;}
.y195{bottom:317.730000px;}
.yc3{bottom:320.070000px;}
.y7{bottom:321.510000px;}
.y109{bottom:321.690000px;}
.y81{bottom:321.870000px;}
.y57{bottom:326.190000px;}
.y1c2{bottom:330.870000px;}
.y192{bottom:331.230000px;}
.yc2{bottom:333.570000px;}
.ya9{bottom:334.830000px;}
.y108{bottom:335.190000px;}
.y238{bottom:338.295000px;}
.y202{bottom:340.455000px;}
.y32{bottom:341.715000px;}
.y149{bottom:342.795000px;}
.yc1{bottom:347.295000px;}
.y80{bottom:347.835000px;}
.y107{bottom:348.735000px;}
.y222{bottom:351.615000px;}
.y1f1{bottom:352.155000px;}
.y148{bottom:356.295000px;}
.y1c1{bottom:356.655000px;}
.ya8{bottom:360.615000px;}
.yc0{bottom:360.795000px;}
.y106{bottom:362.415000px;}
.y31{bottom:363.135000px;}
.y18f{bottom:363.855000px;}
.y56{bottom:364.935000px;}
.y211{bottom:368.175000px;}
.y237{bottom:368.535000px;}
.y147{bottom:369.975000px;}
.y7f{bottom:373.575000px;}
.ybf{bottom:374.475000px;}
.y105{bottom:375.915000px;}
.y221{bottom:377.535000px;}
.y1c0{bottom:382.575000px;}
.y146{bottom:383.475000px;}
.y30{bottom:384.735000px;}
.ya7{bottom:386.535000px;}
.ybe{bottom:387.975000px;}
.y104{bottom:389.595000px;}
.y55{bottom:390.855000px;}
.y236{bottom:394.455000px;}
.y145{bottom:396.975000px;}
.y7e{bottom:399.495000px;}
.ybc{bottom:401.475000px;}
.y103{bottom:403.095000px;}
.y220{bottom:403.275000px;}
.y2f{bottom:406.155000px;}
.y1bf{bottom:408.315000px;}
.y144{bottom:410.655000px;}
.ya6{bottom:412.275000px;}
.ybb{bottom:415.155000px;}
.y54{bottom:416.595000px;}
.y102{bottom:416.775000px;}
.y235{bottom:420.195000px;}
.y143{bottom:424.155000px;}
.y7d{bottom:425.235000px;}
.y2e{bottom:427.755000px;}
.yb9{bottom:428.655000px;}
.y21f{bottom:429.195000px;}
.y101{bottom:430.275000px;}
.y1cc{bottom:432.255000px;}
.y1be{bottom:434.235000px;}
.y142{bottom:437.835000px;}
.ya5{bottom:438.195000px;}
.yb5{bottom:442.335000px;}
.y53{bottom:442.515000px;}
.y100{bottom:443.775000px;}
.y2d{bottom:449.175000px;}
.y234{bottom:450.435000px;}
.y7c{bottom:451.155000px;}
.y141{bottom:451.335000px;}
.y21e{bottom:454.935000px;}
.yff{bottom:457.455000px;}
.y1bd{bottom:459.975000px;}
.ya4{bottom:463.935000px;}
.y140{bottom:464.835000px;}
.y52{bottom:468.255000px;}
.y2c{bottom:470.775000px;}
.yfe{bottom:470.955000px;}
.y20d{bottom:472.215000px;}
.y233{bottom:476.355000px;}
.y7b{bottom:476.895000px;}
.y13f{bottom:478.515000px;}
.y21d{bottom:480.855000px;}
.yfd{bottom:484.635000px;}
.y1bc{bottom:485.895000px;}
.ya3{bottom:489.855000px;}
.y13e{bottom:492.015000px;}
.y2b{bottom:492.195000px;}
.y18b{bottom:492.555000px;}
.y51{bottom:494.175000px;}
.y1cb{bottom:497.595000px;}
.yfc{bottom:498.135000px;}
.y7a{bottom:502.635000px;}
.y13d{bottom:505.695000px;}
.y18a{bottom:506.055000px;}
.y21c{bottom:506.595000px;}
.y1f0{bottom:507.855000px;}
.yb4{bottom:510.375000px;}
.yfb{bottom:511.635000px;}
.y2a{bottom:513.795000px;}
.ya2{bottom:515.595000px;}
.y13c{bottom:519.195000px;}
.y189{bottom:519.735000px;}
.y50{bottom:519.915000px;}
.yfa{bottom:525.315000px;}
.y79{bottom:528.555000px;}
.yb2{bottom:531.975000px;}
.y21b{bottom:532.515000px;}
.y13b{bottom:532.875000px;}
.y188{bottom:533.235000px;}
.y29{bottom:535.395000px;}
.y1bb{bottom:537.555000px;}
.yb3{bottom:537.915000px;}
.yf9{bottom:538.815000px;}
.y254{bottom:539.175000px;}
.ya1{bottom:541.515000px;}
.y4f{bottom:545.835000px;}
.y13a{bottom:546.375000px;}
.y187{bottom:546.735000px;}
.yf8{bottom:552.495000px;}
.y78{bottom:554.295000px;}
.y28{bottom:556.815000px;}
.y21a{bottom:558.255000px;}
.y139{bottom:559.875000px;}
.y186{bottom:560.415000px;}
.y1ba{bottom:563.295000px;}
.yf7{bottom:565.995000px;}
.y253{bottom:566.175000px;}
.ya0{bottom:567.255000px;}
.y4e{bottom:571.575000px;}
.y138{bottom:573.555000px;}
.y185{bottom:573.915000px;}
.y27{bottom:578.415000px;}
.yf6{bottom:579.675000px;}
.y77{bottom:580.215000px;}
.y232{bottom:584.175000px;}
.y137{bottom:587.055000px;}
.y182{bottom:587.595000px;}
.y1b9{bottom:589.215000px;}
.y252{bottom:591.915000px;}
.y9e{bottom:593.175000px;}
.y4d{bottom:597.315000px;}
.y26{bottom:599.835000px;}
.y9f{bottom:600.735000px;}
.y76{bottom:605.985000px;}
.yf5{bottom:606.705000px;}
.y1e9{bottom:611.925000px;}
.y136{bottom:614.265000px;}
.y231{bottom:614.445000px;}
.y1b8{bottom:614.985000px;}
.y251{bottom:617.685000px;}
.y9d{bottom:618.945000px;}
.yf4{bottom:620.385000px;}
.y25{bottom:621.465000px;}
.y4c{bottom:623.265000px;}
.y135{bottom:627.765000px;}
.y17f{bottom:630.105000px;}
.y75{bottom:631.905000px;}
.yf3{bottom:633.885000px;}
.y230{bottom:640.365000px;}
.y1b7{bottom:640.725000px;}
.y134{bottom:641.445000px;}
.y24{bottom:642.885000px;}
.y9c{bottom:644.685000px;}
.yf2{bottom:647.565000px;}
.y250{bottom:648.105000px;}
.y4b{bottom:649.005000px;}
.y17e{bottom:653.325000px;}
.y133{bottom:654.945000px;}
.y73{bottom:657.645000px;}
.yf1{bottom:661.065000px;}
.y23{bottom:664.485000px;}
.y74{bottom:665.205000px;}
.y22f{bottom:666.105000px;}
.y1b6{bottom:666.645000px;}
.y17d{bottom:666.825000px;}
.y132{bottom:668.625000px;}
.y9b{bottom:670.605000px;}
.y200{bottom:671.325000px;}
.y24f{bottom:673.845000px;}
.yf0{bottom:674.565000px;}
.y4a{bottom:674.925000px;}
.y20c{bottom:679.605000px;}
.y17c{bottom:680.505000px;}
.y131{bottom:682.125000px;}
.y72{bottom:683.565000px;}
.y22{bottom:685.905000px;}
.yef{bottom:688.245000px;}
.y1b5{bottom:692.385000px;}
.y17a{bottom:694.005000px;}
.y130{bottom:695.805000px;}
.y9a{bottom:696.345000px;}
.y22e{bottom:696.525000px;}
.y24e{bottom:699.765000px;}
.y49{bottom:700.665000px;}
.yee{bottom:701.745000px;}
.y21{bottom:707.505000px;}
.y71{bottom:709.305000px;}
.yed{bottom:715.425000px;}
.y1b4{bottom:718.305000px;}
.y99{bottom:722.265000px;}
.y179{bottom:722.625000px;}
.y12f{bottom:722.805000px;}
.y48{bottom:726.585000px;}
.yec{bottom:728.925000px;}
.y20{bottom:729.105000px;}
.y24d{bottom:730.005000px;}
.y70{bottom:735.225000px;}
.y176{bottom:736.125000px;}
.y12e{bottom:736.485000px;}
.y1ff{bottom:738.285000px;}
.yeb{bottom:742.605000px;}
.y1b3{bottom:744.045000px;}
.y20b{bottom:746.565000px;}
.y98{bottom:748.005000px;}
.y12d{bottom:749.985000px;}
.y1f{bottom:751.425000px;}
.y47{bottom:752.325000px;}
.y22d{bottom:752.685000px;}
.y24c{bottom:755.925000px;}
.yea{bottom:756.105000px;}
.y1fe{bottom:759.885000px;}
.y6f{bottom:760.965000px;}
.y12c{bottom:763.665000px;}
.y175{bottom:764.205000px;}
.ye9{bottom:769.605000px;}
.y1b2{bottom:769.965000px;}
.y97{bottom:773.925000px;}
.y1e{bottom:776.805000px;}
.y12b{bottom:777.165000px;}
.y174{bottom:777.705000px;}
.y46{bottom:778.245000px;}
.y22c{bottom:778.425000px;}
.y20a{bottom:779.685000px;}
.y1fd{bottom:782.205000px;}
.ye8{bottom:783.285000px;}
.y24b{bottom:786.165000px;}
.y6e{bottom:786.705000px;}
.y12a{bottom:790.665000px;}
.y173{bottom:791.205000px;}
.y1b1{bottom:795.705000px;}
.ye7{bottom:796.785000px;}
.y96{bottom:799.665000px;}
.y1d{bottom:800.385000px;}
.y209{bottom:802.365000px;}
.y45{bottom:803.985000px;}
.y129{bottom:804.345000px;}
.y170{bottom:804.885000px;}
.y1fc{bottom:808.125000px;}
.y22b{bottom:808.665000px;}
.ye6{bottom:810.465000px;}
.y24a{bottom:812.085000px;}
.y6d{bottom:812.625000px;}
.y128{bottom:817.845000px;}
.y1e8{bottom:819.285000px;}
.y1b0{bottom:821.625000px;}
.ye5{bottom:823.965000px;}
.y1c{bottom:824.145000px;}
.y95{bottom:825.585000px;}
.y44{bottom:829.905000px;}
.y127{bottom:831.525000px;}
.y1fb{bottom:833.865000px;}
.y16f{bottom:834.045000px;}
.y22a{bottom:834.585000px;}
.ye4{bottom:837.465000px;}
.y249{bottom:837.825000px;}
.y6c{bottom:838.365000px;}
.y126{bottom:845.025000px;}
.y1dc{bottom:845.925000px;}
.y1af{bottom:847.365000px;}
.y1b{bottom:847.725000px;}
.ye3{bottom:851.145000px;}
.y94{bottom:851.325000px;}
.y43{bottom:855.645000px;}
.y125{bottom:858.705000px;}
.y1fa{bottom:859.785000px;}
.y6b{bottom:864.285000px;}
.ye2{bottom:864.645000px;}
.y248{bottom:868.245000px;}
.y16a{bottom:868.965000px;}
.y1a{bottom:871.530000px;}
.y124{bottom:872.250000px;}
.y1ae{bottom:873.330000px;}
.y93{bottom:877.290000px;}
.ye1{bottom:878.370000px;}
.y42{bottom:880.710000px;}
.yb1{bottom:884.850000px;}
.y123{bottom:885.750000px;}
.y6a{bottom:890.070000px;}
.ye0{bottom:891.870000px;}
.y169{bottom:892.050000px;}
.y247{bottom:894.030000px;}
.y19{bottom:895.110000px;}
.y1f9{bottom:898.530000px;}
.y1ad{bottom:899.070000px;}
.y122{bottom:899.430000px;}
.y41{bottom:902.310000px;}
.y92{bottom:903.030000px;}
.ydd{bottom:905.550000px;}
.y168{bottom:905.730000px;}
.y121{bottom:912.930000px;}
.y68{bottom:915.990000px;}
.y18{bottom:918.510000px;}
.y167{bottom:919.230000px;}
.y246{bottom:919.950000px;}
.y1f8{bottom:920.310000px;}
.y69{bottom:923.550000px;}
.y40{bottom:923.730000px;}
.y1ac{bottom:924.810000px;}
.y120{bottom:926.610000px;}
.y91{bottom:928.950000px;}
.ydc{bottom:932.370000px;}
.y164{bottom:932.910000px;}
.y11f{bottom:940.110000px;}
.y17{bottom:940.830000px;}
.y67{bottom:941.730000px;}
.y3f{bottom:945.330000px;}
.ydb{bottom:945.870000px;}
.y245{bottom:950.190000px;}
.y1ab{bottom:950.730000px;}
.y11e{bottom:953.610000px;}
.y90{bottom:954.690000px;}
.yda{bottom:959.550000px;}
.y163{bottom:964.410000px;}
.y16{bottom:966.570000px;}
.y3e{bottom:966.750000px;}
.y11d{bottom:967.290000px;}
.y66{bottom:967.650000px;}
.y1f7{bottom:972.690000px;}
.yd9{bottom:973.050000px;}
.y1aa{bottom:973.410000px;}
.y244{bottom:975.930000px;}
.y8f{bottom:980.430000px;}
.y11c{bottom:980.790000px;}
.y160{bottom:986.190000px;}
.yd8{bottom:986.550000px;}
.y1a9{bottom:986.910000px;}
.y3d{bottom:988.350000px;}
.y65{bottom:993.390000px;}
.y11b{bottom:994.470000px;}
.y1f6{bottom:999.330000px;}
.yd5{bottom:1000.230000px;}
.y243{bottom:1001.850000px;}
.y15{bottom:1002.030000px;}
.y8e{bottom:1006.350000px;}
.y11a{bottom:1007.970000px;}
.y3c{bottom:1009.770000px;}
.y15e{bottom:1010.850000px;}
.y1a6{bottom:1018.590000px;}
.y63{bottom:1019.310000px;}
.y119{bottom:1021.650000px;}
.y15d{bottom:1024.350000px;}
.y64{bottom:1026.870000px;}
.y242{bottom:1027.590000px;}
.y3b{bottom:1031.370000px;}
.y8d{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.yd4{bottom:1035.150000px;}
.y15c{bottom:1038.030000px;}
.y208{bottom:1039.650000px;}
.yd3{bottom:1048.650000px;}
.y15b{bottom:1051.530000px;}
.y3a{bottom:1052.790000px;}
.y241{bottom:1053.510000px;}
.y62{bottom:1058.010000px;}
.y13{bottom:1062.330000px;}
.y158{bottom:1065.210000px;}
.y39{bottom:1074.390000px;}
.yd2{bottom:1075.830000px;}
.y1f5{bottom:1077.450000px;}
.y240{bottom:1079.250000px;}
.y61{bottom:1083.750000px;}
.yd1{bottom:1089.510000px;}
.y12{bottom:1091.310000px;}
.y38{bottom:1095.990000px;}
.yd0{bottom:1103.010000px;}
.y1f4{bottom:1104.090000px;}
.y60{bottom:1109.670000px;}
.y6{bottom:1115.790000px;}
.ycf{bottom:1116.510000px;}
.y37{bottom:1117.410000px;}
.yce{bottom:1130.190000px;}
.y1{bottom:1134.150000px;}
.y5f{bottom:1135.410000px;}
.y36{bottom:1139.040000px;}
.y8c{bottom:1143.000000px;}
.ycd{bottom:1143.720000px;}
.y33{bottom:1203.480000px;}
.h14{height:11.160000px;}
.h16{height:11.196000px;}
.h17{height:11.340000px;}
.h15{height:11.340150px;}
.h24{height:18.900000px;}
.h21{height:19.440000px;}
.h28{height:20.700000px;}
.h23{height:20.736000px;}
.h1f{height:21.780000px;}
.h20{height:22.320000px;}
.h1d{height:23.076000px;}
.h2b{height:23.220000px;}
.h1a{height:24.300000px;}
.h2d{height:25.380000px;}
.h26{height:25.560000px;}
.h1c{height:25.740000px;}
.h39{height:25.920000px;}
.h27{height:26.100000px;}
.h25{height:26.820000px;}
.h2f{height:27.720000px;}
.h22{height:29.160000px;}
.h30{height:29.340000px;}
.h1e{height:29.880000px;}
.h2c{height:30.096000px;}
.h1b{height:31.095703px;}
.h2e{height:31.860000px;}
.h19{height:32.580000px;}
.he{height:36.071016px;}
.h11{height:36.826172px;}
.h18{height:37.283203px;}
.h29{height:40.176000px;}
.h2a{height:40.860000px;}
.hf{height:42.718359px;}
.h7{height:43.506914px;}
.h13{height:49.347070px;}
.h10{height:50.097656px;}
.h4{height:51.618867px;}
.h31{height:51.660000px;}
.h38{height:51.696000px;}
.h12{height:53.640000px;}
.h6{height:55.239258px;}
.h3{height:61.131445px;}
.hc{height:61.890117px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3d{height:64.814063px;}
.h8{height:67.760156px;}
.h9{height:72.763945px;}
.hb{height:73.652344px;}
.hd{height:74.566406px;}
.h3a{height:77.400000px;}
.h2{height:86.256000px;}
.h3c{height:103.320000px;}
.h35{height:103.356000px;}
.h36{height:154.980000px;}
.h34{height:206.640000px;}
.h37{height:206.670000px;}
.h33{height:309.855000px;}
.h32{height:309.990000px;}
.h3b{height:361.515000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w9{width:115.380000px;}
.w7{width:128.700000px;}
.wf{width:225.390000px;}
.w10{width:225.750000px;}
.w11{width:226.290000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.we{width:338.655000px;}
.wb{width:338.970000px;}
.wc{width:339.195000px;}
.wd{width:339.330000px;}
.w8{width:412.665000px;}
.wa{width:542.085000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.300000px;}
.x4{left:8.100000px;}
.x35{left:9.900000px;}
.x2d{left:13.500000px;}
.x34{left:17.640000px;}
.x37{left:25.740000px;}
.x23{left:45.720000px;}
.x29{left:46.800000px;}
.x26{left:48.780000px;}
.x25{left:50.940000px;}
.x24{left:53.280000px;}
.x27{left:55.440000px;}
.x28{left:57.780000px;}
.x32{left:69.114000px;}
.x2e{left:80.454000px;}
.x21{left:90.585000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.x11{left:110.915987px;}
.x1e{left:117.396000px;}
.x38{left:131.975987px;}
.x2f{left:133.590000px;}
.x9{left:159.509987px;}
.x2b{left:165.629987px;}
.x1a{left:180.389987px;}
.x15{left:184.349987px;}
.x2{left:185.799000px;}
.xe{left:235.289973px;}
.xf{left:240.509987px;}
.x20{left:246.810000px;}
.x1d{left:315.074987px;}
.x10{left:322.454987px;}
.x33{left:333.255000px;}
.x1b{left:367.094973px;}
.x1c{left:371.594987px;}
.x18{left:394.634973px;}
.x19{left:399.854987px;}
.x2c{left:432.974987px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.x17{left:525.884973px;}
.x12{left:531.104973px;}
.x13{left:536.324987px;}
.x36{left:559.725000px;}
.xc{left:577.004973px;}
.xd{left:582.224987px;}
.xa{left:653.684973px;}
.xb{left:658.049987px;}
.x22{left:660.210000px;}
.x30{left:699.089973px;}
.x31{left:704.309987px;}
.x2a{left:767.489987px;}
.x6{left:777.209987px;}
.x16{left:782.249987px;}
.x14{left:786.749987px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls34{letter-spacing:-1.920000pt;}
.ls33{letter-spacing:-1.536000pt;}
.ls1f{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.289067pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls11{letter-spacing:-0.206933pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.184533pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls29{letter-spacing:-0.000003pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.014080pt;}
.ls26{letter-spacing:0.042667pt;}
.ls19{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.056320pt;}
.lsc{letter-spacing:0.056533pt;}
.ls31{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.137600pt;}
.ls2f{letter-spacing:0.173867pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.224000pt;}
.ls6{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.235733pt;}
.ls15{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.416000pt;}
.lsa{letter-spacing:0.524800pt;}
.ls32{letter-spacing:0.576000pt;}
.ls14{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.698667pt;}
.ls22{letter-spacing:1.216000pt;}
.ls30{letter-spacing:1.472000pt;}
.ls5{letter-spacing:1.599360pt;}
.ls1e{letter-spacing:1.856000pt;}
.ls13{letter-spacing:2.353280pt;}
.ls8{letter-spacing:2.457600pt;}
.ls7{letter-spacing:2.879360pt;}
.ls9{letter-spacing:2.937600pt;}
.ls2e{letter-spacing:3.584000pt;}
.ls20{letter-spacing:4.032000pt;}
.ls27{letter-spacing:5.802667pt;}
.ls18{letter-spacing:6.336000pt;}
.ls28{letter-spacing:6.400000pt;}
.ls2{letter-spacing:7.473280pt;}
.ls24{letter-spacing:10.282667pt;}
.ls23{letter-spacing:13.482667pt;}
.ls2a{letter-spacing:17.216000pt;}
.ls2c{letter-spacing:19.136000pt;}
.ls1c{letter-spacing:19.392000pt;}
.ls2d{letter-spacing:23.616000pt;}
.ls2b{letter-spacing:42.176000pt;}
.ws3{word-spacing:-20.217600pt;}
.ws6{word-spacing:-17.984000pt;}
.ws14{word-spacing:-17.920000pt;}
.ws17{word-spacing:-17.856000pt;}
.ws4{word-spacing:-16.545280pt;}
.ws5{word-spacing:-16.256213pt;}
.ws18{word-spacing:-16.064000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.807997pt;}
.ws1{word-spacing:-15.246720pt;}
.ws7{word-spacing:-15.064320pt;}
.ws0{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.606720pt;}
.ws9{word-spacing:-14.342400pt;}
.wsa{word-spacing:-13.120640pt;}
.ws12{word-spacing:-12.736000pt;}
.wsc{word-spacing:-10.666453pt;}
.wse{word-spacing:-9.216000pt;}
.ws8{word-spacing:-8.864000pt;}
.ws11{word-spacing:-8.640000pt;}
.wsf{word-spacing:-8.128000pt;}
.ws10{word-spacing:-7.904000pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-4.587733pt;}
._10{margin-left:-3.397760pt;}
._9{margin-left:-2.106240pt;}
._1{margin-left:-0.987733pt;}
._0{width:1.168640pt;}
._2{width:2.442027pt;}
._8{width:3.373013pt;}
._a{width:4.384000pt;}
._3{width:5.418240pt;}
._7{width:6.331947pt;}
._6{width:7.351467pt;}
._4{width:8.658560pt;}
._5{width:9.862827pt;}
._b{width:11.473920pt;}
._c{width:12.601387pt;}
._18{width:14.269440pt;}
._12{width:15.744000pt;}
._e{width:16.689707pt;}
._d{width:18.060800pt;}
._15{width:19.328000pt;}
._16{width:20.316587pt;}
._17{width:21.294080pt;}
._19{width:22.464000pt;}
._20{width:23.616000pt;}
._1f{width:24.512000pt;}
._22{width:26.688000pt;}
._1b{width:27.947307pt;}
._f{width:29.375360pt;}
._26{width:30.272000pt;}
._27{width:31.168000pt;}
._13{width:32.384000pt;}
._14{width:33.280000pt;}
._1c{width:34.944000pt;}
._1d{width:36.266667pt;}
._1a{width:39.488000pt;}
._21{width:40.966400pt;}
._1e{width:42.560000pt;}
._24{width:57.760000pt;}
._23{width:77.696000pt;}
._25{width:86.720000pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:0.480000pt;}
.ybd{bottom:0.640000pt;}
.y178{bottom:1.920000pt;}
.y5{bottom:3.706667pt;}
.y1ce{bottom:4.160000pt;}
.y1db{bottom:4.320000pt;}
.y16e{bottom:4.640000pt;}
.y15f{bottom:4.960000pt;}
.y1a5{bottom:5.120000pt;}
.y181{bottom:5.600000pt;}
.y16c{bottom:5.640000pt;}
.y15a{bottom:6.080000pt;}
.y162{bottom:6.240000pt;}
.y14b{bottom:6.560000pt;}
.y191{bottom:6.720000pt;}
.ydf{bottom:7.200000pt;}
.y16d{bottom:7.360000pt;}
.y198{bottom:7.680000pt;}
.y111{bottom:7.840000pt;}
.y17b{bottom:8.000000pt;}
.y172{bottom:8.320000pt;}
.y16b{bottom:8.360000pt;}
.y180{bottom:8.480000pt;}
.y1a8{bottom:8.640000pt;}
.y159{bottom:8.800000pt;}
.y161{bottom:9.120000pt;}
.y166{bottom:9.280000pt;}
.y190{bottom:9.440000pt;}
.y14d{bottom:9.600000pt;}
.y194{bottom:9.800000pt;}
.yde{bottom:9.920000pt;}
.y197{bottom:10.400000pt;}
.y110{bottom:10.560000pt;}
.yd7{bottom:10.720000pt;}
.y171{bottom:11.040000pt;}
.yb8{bottom:11.360000pt;}
.y1a7{bottom:11.520000pt;}
.y165{bottom:12.160000pt;}
.y18e{bottom:12.480000pt;}
.y193{bottom:12.680000pt;}
.y19d{bottom:13.280000pt;}
.y177{bottom:13.440000pt;}
.yd6{bottom:13.600000pt;}
.y183{bottom:16.986667pt;}
.y18c{bottom:17.280000pt;}
.y184{bottom:19.866667pt;}
.y18d{bottom:20.320000pt;}
.y4{bottom:22.746667pt;}
.yb6{bottom:22.880000pt;}
.y201{bottom:27.040000pt;}
.y1e7{bottom:27.080000pt;}
.y1da{bottom:27.194667pt;}
.y1cd{bottom:27.200000pt;}
.y213{bottom:27.240000pt;}
.yb7{bottom:34.240000pt;}
.y3{bottom:41.946667pt;}
.y207{bottom:50.074667pt;}
.y1ef{bottom:50.080000pt;}
.y1e6{bottom:50.120000pt;}
.y1d9{bottom:50.234667pt;}
.y1f2{bottom:50.240000pt;}
.y2{bottom:60.986667pt;}
.y35{bottom:67.712000pt;}
.y1e5{bottom:73.000000pt;}
.y1d8{bottom:73.114667pt;}
.y1ee{bottom:73.120000pt;}
.y11{bottom:83.072000pt;}
.y34{bottom:84.672000pt;}
.y1ed{bottom:96.000000pt;}
.y1e4{bottom:96.040000pt;}
.y1d7{bottom:96.154667pt;}
.y10{bottom:100.992000pt;}
.y8b{bottom:103.232000pt;}
.y118{bottom:104.032000pt;}
.y1a4{bottom:106.432000pt;}
.y1cf{bottom:108.032000pt;}
.yb0{bottom:108.512000pt;}
.y1ca{bottom:110.432000pt;}
.y206{bottom:112.032000pt;}
.y117{bottom:116.032000pt;}
.y229{bottom:117.472000pt;}
.yf{bottom:117.952000pt;}
.y1a3{bottom:118.592000pt;}
.y1e3{bottom:118.920000pt;}
.y1d6{bottom:119.034667pt;}
.y1ec{bottom:119.040000pt;}
.y210{bottom:119.066667pt;}
.y157{bottom:120.512000pt;}
.y8a{bottom:122.432000pt;}
.y219{bottom:127.712000pt;}
.y116{bottom:128.032000pt;}
.y1f3{bottom:128.672000pt;}
.y5e{bottom:129.312000pt;}
.y1a2{bottom:130.592000pt;}
.y23f{bottom:131.872000pt;}
.y156{bottom:132.672000pt;}
.y1c9{bottom:133.466667pt;}
.ye{bottom:136.506667pt;}
.y115{bottom:140.186667pt;}
.y228{bottom:140.506667pt;}
.y89{bottom:141.466667pt;}
.y1eb{bottom:141.920000pt;}
.y20f{bottom:141.946667pt;}
.y1e2{bottom:141.960000pt;}
.y1d5{bottom:142.074667pt;}
.y218{bottom:142.426667pt;}
.y1a1{bottom:142.746667pt;}
.y155{bottom:144.666667pt;}
.y88{bottom:146.746667pt;}
.y5d{bottom:152.186667pt;}
.y1a0{bottom:154.746667pt;}
.y23e{bottom:154.906667pt;}
.yd{bottom:155.706667pt;}
.y1c8{bottom:156.346667pt;}
.y154{bottom:156.826667pt;}
.y87{bottom:160.666667pt;}
.ycc{bottom:161.626667pt;}
.y227{bottom:163.386667pt;}
.y114{bottom:164.346667pt;}
.y1e1{bottom:164.840000pt;}
.y1d4{bottom:164.954667pt;}
.y1ea{bottom:164.960000pt;}
.y20e{bottom:164.986667pt;}
.y86{bottom:165.946667pt;}
.y19f{bottom:166.746667pt;}
.y153{bottom:168.826667pt;}
.yc{bottom:174.746667pt;}
.y5c{bottom:175.226667pt;}
.y113{bottom:176.346667pt;}
.y23d{bottom:177.786667pt;}
.y19e{bottom:178.906667pt;}
.y1c7{bottom:179.386667pt;}
.y85{bottom:179.866667pt;}
.yaf{bottom:180.826667pt;}
.y217{bottom:180.986667pt;}
.y226{bottom:186.266667pt;}
.y1d3{bottom:187.834667pt;}
.y1e0{bottom:187.880000pt;}
.ycb{bottom:188.026667pt;}
.y112{bottom:188.346667pt;}
.y19c{bottom:190.906667pt;}
.y152{bottom:192.986667pt;}
.yb{bottom:193.946667pt;}
.y5b{bottom:198.106667pt;}
.y84{bottom:198.906667pt;}
.yca{bottom:200.026667pt;}
.y10f{bottom:200.506667pt;}
.y1c6{bottom:202.266667pt;}
.y216{bottom:203.866667pt;}
.y83{bottom:204.186667pt;}
.y205{bottom:204.506667pt;}
.y23c{bottom:204.826667pt;}
.y151{bottom:204.986667pt;}
.yae{bottom:205.786667pt;}
.y225{bottom:209.306667pt;}
.y1df{bottom:210.760000pt;}
.y1d2{bottom:210.914667pt;}
.yc9{bottom:212.026667pt;}
.ya{bottom:213.146667pt;}
.y150{bottom:217.146667pt;}
.y82{bottom:219.066667pt;}
.y5a{bottom:221.146667pt;}
.y19b{bottom:221.306667pt;}
.yc8{bottom:224.186667pt;}
.y1c5{bottom:225.306667pt;}
.y10e{bottom:225.626667pt;}
.y215{bottom:226.906667pt;}
.y23b{bottom:227.706667pt;}
.yad{bottom:228.826667pt;}
.y14f{bottom:229.146667pt;}
.y9{bottom:232.186667pt;}
.y19a{bottom:233.466667pt;}
.y1d1{bottom:233.794667pt;}
.y1de{bottom:233.800000pt;}
.yc7{bottom:236.186667pt;}
.y10d{bottom:237.626667pt;}
.y14e{bottom:241.146667pt;}
.y59{bottom:244.026667pt;}
.y199{bottom:245.466667pt;}
.y1c4{bottom:248.186667pt;}
.yc6{bottom:248.346667pt;}
.y10c{bottom:249.626667pt;}
.y204{bottom:251.066667pt;}
.y8{bottom:251.386667pt;}
.yab{bottom:251.706667pt;}
.y14c{bottom:253.306667pt;}
.y23a{bottom:254.746667pt;}
.y224{bottom:255.226667pt;}
.y1dd{bottom:256.680000pt;}
.y1d0{bottom:256.834667pt;}
.y196{bottom:257.626667pt;}
.yac{bottom:258.426667pt;}
.yc5{bottom:260.346667pt;}
.y214{bottom:261.306667pt;}
.y10b{bottom:261.786667pt;}
.y58{bottom:267.066667pt;}
.y1c3{bottom:271.066667pt;}
.yc4{bottom:272.506667pt;}
.y10a{bottom:273.786667pt;}
.yaa{bottom:274.746667pt;}
.y239{bottom:277.626667pt;}
.y223{bottom:278.106667pt;}
.y203{bottom:279.586667pt;}
.y212{bottom:280.666667pt;}
.y14a{bottom:281.946667pt;}
.y195{bottom:282.426667pt;}
.yc3{bottom:284.506667pt;}
.y7{bottom:285.786667pt;}
.y109{bottom:285.946667pt;}
.y81{bottom:286.106667pt;}
.y57{bottom:289.946667pt;}
.y1c2{bottom:294.106667pt;}
.y192{bottom:294.426667pt;}
.yc2{bottom:296.506667pt;}
.ya9{bottom:297.626667pt;}
.y108{bottom:297.946667pt;}
.y238{bottom:300.706667pt;}
.y202{bottom:302.626667pt;}
.y32{bottom:303.746667pt;}
.y149{bottom:304.706667pt;}
.yc1{bottom:308.706667pt;}
.y80{bottom:309.186667pt;}
.y107{bottom:309.986667pt;}
.y222{bottom:312.546667pt;}
.y1f1{bottom:313.026667pt;}
.y148{bottom:316.706667pt;}
.y1c1{bottom:317.026667pt;}
.ya8{bottom:320.546667pt;}
.yc0{bottom:320.706667pt;}
.y106{bottom:322.146667pt;}
.y31{bottom:322.786667pt;}
.y18f{bottom:323.426667pt;}
.y56{bottom:324.386667pt;}
.y211{bottom:327.266667pt;}
.y237{bottom:327.586667pt;}
.y147{bottom:328.866667pt;}
.y7f{bottom:332.066667pt;}
.ybf{bottom:332.866667pt;}
.y105{bottom:334.146667pt;}
.y221{bottom:335.586667pt;}
.y1c0{bottom:340.066667pt;}
.y146{bottom:340.866667pt;}
.y30{bottom:341.986667pt;}
.ya7{bottom:343.586667pt;}
.ybe{bottom:344.866667pt;}
.y104{bottom:346.306667pt;}
.y55{bottom:347.426667pt;}
.y236{bottom:350.626667pt;}
.y145{bottom:352.866667pt;}
.y7e{bottom:355.106667pt;}
.ybc{bottom:356.866667pt;}
.y103{bottom:358.306667pt;}
.y220{bottom:358.466667pt;}
.y2f{bottom:361.026667pt;}
.y1bf{bottom:362.946667pt;}
.y144{bottom:365.026667pt;}
.ya6{bottom:366.466667pt;}
.ybb{bottom:369.026667pt;}
.y54{bottom:370.306667pt;}
.y102{bottom:370.466667pt;}
.y235{bottom:373.506667pt;}
.y143{bottom:377.026667pt;}
.y7d{bottom:377.986667pt;}
.y2e{bottom:380.226667pt;}
.yb9{bottom:381.026667pt;}
.y21f{bottom:381.506667pt;}
.y101{bottom:382.466667pt;}
.y1cc{bottom:384.226667pt;}
.y1be{bottom:385.986667pt;}
.y142{bottom:389.186667pt;}
.ya5{bottom:389.506667pt;}
.yb5{bottom:393.186667pt;}
.y53{bottom:393.346667pt;}
.y100{bottom:394.466667pt;}
.y2d{bottom:399.266667pt;}
.y234{bottom:400.386667pt;}
.y7c{bottom:401.026667pt;}
.y141{bottom:401.186667pt;}
.y21e{bottom:404.386667pt;}
.yff{bottom:406.626667pt;}
.y1bd{bottom:408.866667pt;}
.ya4{bottom:412.386667pt;}
.y140{bottom:413.186667pt;}
.y52{bottom:416.226667pt;}
.y2c{bottom:418.466667pt;}
.yfe{bottom:418.626667pt;}
.y20d{bottom:419.746667pt;}
.y233{bottom:423.426667pt;}
.y7b{bottom:423.906667pt;}
.y13f{bottom:425.346667pt;}
.y21d{bottom:427.426667pt;}
.yfd{bottom:430.786667pt;}
.y1bc{bottom:431.906667pt;}
.ya3{bottom:435.426667pt;}
.y13e{bottom:437.346667pt;}
.y2b{bottom:437.506667pt;}
.y18b{bottom:437.826667pt;}
.y51{bottom:439.266667pt;}
.y1cb{bottom:442.306667pt;}
.yfc{bottom:442.786667pt;}
.y7a{bottom:446.786667pt;}
.y13d{bottom:449.506667pt;}
.y18a{bottom:449.826667pt;}
.y21c{bottom:450.306667pt;}
.y1f0{bottom:451.426667pt;}
.yb4{bottom:453.666667pt;}
.yfb{bottom:454.786667pt;}
.y2a{bottom:456.706667pt;}
.ya2{bottom:458.306667pt;}
.y13c{bottom:461.506667pt;}
.y189{bottom:461.986667pt;}
.y50{bottom:462.146667pt;}
.yfa{bottom:466.946667pt;}
.y79{bottom:469.826667pt;}
.yb2{bottom:472.866667pt;}
.y21b{bottom:473.346667pt;}
.y13b{bottom:473.666667pt;}
.y188{bottom:473.986667pt;}
.y29{bottom:475.906667pt;}
.y1bb{bottom:477.826667pt;}
.yb3{bottom:478.146667pt;}
.yf9{bottom:478.946667pt;}
.y254{bottom:479.266667pt;}
.ya1{bottom:481.346667pt;}
.y4f{bottom:485.186667pt;}
.y13a{bottom:485.666667pt;}
.y187{bottom:485.986667pt;}
.yf8{bottom:491.106667pt;}
.y78{bottom:492.706667pt;}
.y28{bottom:494.946667pt;}
.y21a{bottom:496.226667pt;}
.y139{bottom:497.666667pt;}
.y186{bottom:498.146667pt;}
.y1ba{bottom:500.706667pt;}
.yf7{bottom:503.106667pt;}
.y253{bottom:503.266667pt;}
.ya0{bottom:504.226667pt;}
.y4e{bottom:508.066667pt;}
.y138{bottom:509.826667pt;}
.y185{bottom:510.146667pt;}
.y27{bottom:514.146667pt;}
.yf6{bottom:515.266667pt;}
.y77{bottom:515.746667pt;}
.y232{bottom:519.266667pt;}
.y137{bottom:521.826667pt;}
.y182{bottom:522.306667pt;}
.y1b9{bottom:523.746667pt;}
.y252{bottom:526.146667pt;}
.y9e{bottom:527.266667pt;}
.y4d{bottom:530.946667pt;}
.y26{bottom:533.186667pt;}
.y9f{bottom:533.986667pt;}
.y76{bottom:538.653333pt;}
.yf5{bottom:539.293333pt;}
.y1e9{bottom:543.933333pt;}
.y136{bottom:546.013333pt;}
.y231{bottom:546.173333pt;}
.y1b8{bottom:546.653333pt;}
.y251{bottom:549.053333pt;}
.y9d{bottom:550.173333pt;}
.yf4{bottom:551.453333pt;}
.y25{bottom:552.413333pt;}
.y4c{bottom:554.013333pt;}
.y135{bottom:558.013333pt;}
.y17f{bottom:560.093333pt;}
.y75{bottom:561.693333pt;}
.yf3{bottom:563.453333pt;}
.y230{bottom:569.213333pt;}
.y1b7{bottom:569.533333pt;}
.y134{bottom:570.173333pt;}
.y24{bottom:571.453333pt;}
.y9c{bottom:573.053333pt;}
.yf2{bottom:575.613333pt;}
.y250{bottom:576.093333pt;}
.y4b{bottom:576.893333pt;}
.y17e{bottom:580.733333pt;}
.y133{bottom:582.173333pt;}
.y73{bottom:584.573333pt;}
.yf1{bottom:587.613333pt;}
.y23{bottom:590.653333pt;}
.y74{bottom:591.293333pt;}
.y22f{bottom:592.093333pt;}
.y1b6{bottom:592.573333pt;}
.y17d{bottom:592.733333pt;}
.y132{bottom:594.333333pt;}
.y9b{bottom:596.093333pt;}
.y200{bottom:596.733333pt;}
.y24f{bottom:598.973333pt;}
.yf0{bottom:599.613333pt;}
.y4a{bottom:599.933333pt;}
.y20c{bottom:604.093333pt;}
.y17c{bottom:604.893333pt;}
.y131{bottom:606.333333pt;}
.y72{bottom:607.613333pt;}
.y22{bottom:609.693333pt;}
.yef{bottom:611.773333pt;}
.y1b5{bottom:615.453333pt;}
.y17a{bottom:616.893333pt;}
.y130{bottom:618.493333pt;}
.y9a{bottom:618.973333pt;}
.y22e{bottom:619.133333pt;}
.y24e{bottom:622.013333pt;}
.y49{bottom:622.813333pt;}
.yee{bottom:623.773333pt;}
.y21{bottom:628.893333pt;}
.y71{bottom:630.493333pt;}
.yed{bottom:635.933333pt;}
.y1b4{bottom:638.493333pt;}
.y99{bottom:642.013333pt;}
.y179{bottom:642.333333pt;}
.y12f{bottom:642.493333pt;}
.y48{bottom:645.853333pt;}
.yec{bottom:647.933333pt;}
.y20{bottom:648.093333pt;}
.y24d{bottom:648.893333pt;}
.y70{bottom:653.533333pt;}
.y176{bottom:654.333333pt;}
.y12e{bottom:654.653333pt;}
.y1ff{bottom:656.253333pt;}
.yeb{bottom:660.093333pt;}
.y1b3{bottom:661.373333pt;}
.y20b{bottom:663.613333pt;}
.y98{bottom:664.893333pt;}
.y12d{bottom:666.653333pt;}
.y1f{bottom:667.933333pt;}
.y47{bottom:668.733333pt;}
.y22d{bottom:669.053333pt;}
.y24c{bottom:671.933333pt;}
.yea{bottom:672.093333pt;}
.y1fe{bottom:675.453333pt;}
.y6f{bottom:676.413333pt;}
.y12c{bottom:678.813333pt;}
.y175{bottom:679.293333pt;}
.ye9{bottom:684.093333pt;}
.y1b2{bottom:684.413333pt;}
.y97{bottom:687.933333pt;}
.y1e{bottom:690.493333pt;}
.y12b{bottom:690.813333pt;}
.y174{bottom:691.293333pt;}
.y46{bottom:691.773333pt;}
.y22c{bottom:691.933333pt;}
.y20a{bottom:693.053333pt;}
.y1fd{bottom:695.293333pt;}
.ye8{bottom:696.253333pt;}
.y24b{bottom:698.813333pt;}
.y6e{bottom:699.293333pt;}
.y12a{bottom:702.813333pt;}
.y173{bottom:703.293333pt;}
.y1b1{bottom:707.293333pt;}
.ye7{bottom:708.253333pt;}
.y96{bottom:710.813333pt;}
.y1d{bottom:711.453333pt;}
.y209{bottom:713.213333pt;}
.y45{bottom:714.653333pt;}
.y129{bottom:714.973333pt;}
.y170{bottom:715.453333pt;}
.y1fc{bottom:718.333333pt;}
.y22b{bottom:718.813333pt;}
.ye6{bottom:720.413333pt;}
.y24a{bottom:721.853333pt;}
.y6d{bottom:722.333333pt;}
.y128{bottom:726.973333pt;}
.y1e8{bottom:728.253333pt;}
.y1b0{bottom:730.333333pt;}
.ye5{bottom:732.413333pt;}
.y1c{bottom:732.573333pt;}
.y95{bottom:733.853333pt;}
.y44{bottom:737.693333pt;}
.y127{bottom:739.133333pt;}
.y1fb{bottom:741.213333pt;}
.y16f{bottom:741.373333pt;}
.y22a{bottom:741.853333pt;}
.ye4{bottom:744.413333pt;}
.y249{bottom:744.733333pt;}
.y6c{bottom:745.213333pt;}
.y126{bottom:751.133333pt;}
.y1dc{bottom:751.933333pt;}
.y1af{bottom:753.213333pt;}
.y1b{bottom:753.533333pt;}
.ye3{bottom:756.573333pt;}
.y94{bottom:756.733333pt;}
.y43{bottom:760.573333pt;}
.y125{bottom:763.293333pt;}
.y1fa{bottom:764.253333pt;}
.y6b{bottom:768.253333pt;}
.ye2{bottom:768.573333pt;}
.y248{bottom:771.773333pt;}
.y16a{bottom:772.413333pt;}
.y1a{bottom:774.693333pt;}
.y124{bottom:775.333333pt;}
.y1ae{bottom:776.293333pt;}
.y93{bottom:779.813333pt;}
.ye1{bottom:780.773333pt;}
.y42{bottom:782.853333pt;}
.yb1{bottom:786.533333pt;}
.y123{bottom:787.333333pt;}
.y6a{bottom:791.173333pt;}
.ye0{bottom:792.773333pt;}
.y169{bottom:792.933333pt;}
.y247{bottom:794.693333pt;}
.y19{bottom:795.653333pt;}
.y1f9{bottom:798.693333pt;}
.y1ad{bottom:799.173333pt;}
.y122{bottom:799.493333pt;}
.y41{bottom:802.053333pt;}
.y92{bottom:802.693333pt;}
.ydd{bottom:804.933333pt;}
.y168{bottom:805.093333pt;}
.y121{bottom:811.493333pt;}
.y68{bottom:814.213333pt;}
.y18{bottom:816.453333pt;}
.y167{bottom:817.093333pt;}
.y246{bottom:817.733333pt;}
.y1f8{bottom:818.053333pt;}
.y69{bottom:820.933333pt;}
.y40{bottom:821.093333pt;}
.y1ac{bottom:822.053333pt;}
.y120{bottom:823.653333pt;}
.y91{bottom:825.733333pt;}
.ydc{bottom:828.773333pt;}
.y164{bottom:829.253333pt;}
.y11f{bottom:835.653333pt;}
.y17{bottom:836.293333pt;}
.y67{bottom:837.093333pt;}
.y3f{bottom:840.293333pt;}
.ydb{bottom:840.773333pt;}
.y245{bottom:844.613333pt;}
.y1ab{bottom:845.093333pt;}
.y11e{bottom:847.653333pt;}
.y90{bottom:848.613333pt;}
.yda{bottom:852.933333pt;}
.y163{bottom:857.253333pt;}
.y16{bottom:859.173333pt;}
.y3e{bottom:859.333333pt;}
.y11d{bottom:859.813333pt;}
.y66{bottom:860.133333pt;}
.y1f7{bottom:864.613333pt;}
.yd9{bottom:864.933333pt;}
.y1aa{bottom:865.253333pt;}
.y244{bottom:867.493333pt;}
.y8f{bottom:871.493333pt;}
.y11c{bottom:871.813333pt;}
.y160{bottom:876.613333pt;}
.yd8{bottom:876.933333pt;}
.y1a9{bottom:877.253333pt;}
.y3d{bottom:878.533333pt;}
.y65{bottom:883.013333pt;}
.y11b{bottom:883.973333pt;}
.y1f6{bottom:888.293333pt;}
.yd5{bottom:889.093333pt;}
.y243{bottom:890.533333pt;}
.y15{bottom:890.693333pt;}
.y8e{bottom:894.533333pt;}
.y11a{bottom:895.973333pt;}
.y3c{bottom:897.573333pt;}
.y15e{bottom:898.533333pt;}
.y1a6{bottom:905.413333pt;}
.y63{bottom:906.053333pt;}
.y119{bottom:908.133333pt;}
.y15d{bottom:910.533333pt;}
.y64{bottom:912.773333pt;}
.y242{bottom:913.413333pt;}
.y3b{bottom:916.773333pt;}
.y8d{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.yd4{bottom:920.133333pt;}
.y15c{bottom:922.693333pt;}
.y208{bottom:924.133333pt;}
.yd3{bottom:932.133333pt;}
.y15b{bottom:934.693333pt;}
.y3a{bottom:935.813333pt;}
.y241{bottom:936.453333pt;}
.y62{bottom:940.453333pt;}
.y13{bottom:944.293333pt;}
.y158{bottom:946.853333pt;}
.y39{bottom:955.013333pt;}
.yd2{bottom:956.293333pt;}
.y1f5{bottom:957.733333pt;}
.y240{bottom:959.333333pt;}
.y61{bottom:963.333333pt;}
.yd1{bottom:968.453333pt;}
.y12{bottom:970.053333pt;}
.y38{bottom:974.213333pt;}
.yd0{bottom:980.453333pt;}
.y1f4{bottom:981.413333pt;}
.y60{bottom:986.373333pt;}
.y6{bottom:991.813333pt;}
.ycf{bottom:992.453333pt;}
.y37{bottom:993.253333pt;}
.yce{bottom:1004.613333pt;}
.y1{bottom:1008.133333pt;}
.y5f{bottom:1009.253333pt;}
.y36{bottom:1012.480000pt;}
.y8c{bottom:1016.000000pt;}
.ycd{bottom:1016.640000pt;}
.y33{bottom:1069.760000pt;}
.h14{height:9.920000pt;}
.h16{height:9.952000pt;}
.h17{height:10.080000pt;}
.h15{height:10.080133pt;}
.h24{height:16.800000pt;}
.h21{height:17.280000pt;}
.h28{height:18.400000pt;}
.h23{height:18.432000pt;}
.h1f{height:19.360000pt;}
.h20{height:19.840000pt;}
.h1d{height:20.512000pt;}
.h2b{height:20.640000pt;}
.h1a{height:21.600000pt;}
.h2d{height:22.560000pt;}
.h26{height:22.720000pt;}
.h1c{height:22.880000pt;}
.h39{height:23.040000pt;}
.h27{height:23.200000pt;}
.h25{height:23.840000pt;}
.h2f{height:24.640000pt;}
.h22{height:25.920000pt;}
.h30{height:26.080000pt;}
.h1e{height:26.560000pt;}
.h2c{height:26.752000pt;}
.h1b{height:27.640625pt;}
.h2e{height:28.320000pt;}
.h19{height:28.960000pt;}
.he{height:32.063125pt;}
.h11{height:32.734375pt;}
.h18{height:33.140625pt;}
.h29{height:35.712000pt;}
.h2a{height:36.320000pt;}
.hf{height:37.971875pt;}
.h7{height:38.672812pt;}
.h13{height:43.864062pt;}
.h10{height:44.531250pt;}
.h4{height:45.883437pt;}
.h31{height:45.920000pt;}
.h38{height:45.952000pt;}
.h12{height:47.680000pt;}
.h6{height:49.101562pt;}
.h3{height:54.339063pt;}
.hc{height:55.013438pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3d{height:57.612500pt;}
.h8{height:60.231250pt;}
.h9{height:64.679063pt;}
.hb{height:65.468750pt;}
.hd{height:66.281250pt;}
.h3a{height:68.800000pt;}
.h2{height:76.672000pt;}
.h3c{height:91.840000pt;}
.h35{height:91.872000pt;}
.h36{height:137.760000pt;}
.h34{height:183.680000pt;}
.h37{height:183.706667pt;}
.h33{height:275.426667pt;}
.h32{height:275.546667pt;}
.h3b{height:321.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w9{width:102.560000pt;}
.w7{width:114.400000pt;}
.wf{width:200.346667pt;}
.w10{width:200.666667pt;}
.w11{width:201.146667pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.we{width:301.026667pt;}
.wb{width:301.306667pt;}
.wc{width:301.506667pt;}
.wd{width:301.626667pt;}
.w8{width:366.813333pt;}
.wa{width:481.853333pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:5.600000pt;}
.x4{left:7.200000pt;}
.x35{left:8.800000pt;}
.x2d{left:12.000000pt;}
.x34{left:15.680000pt;}
.x37{left:22.880000pt;}
.x23{left:40.640000pt;}
.x29{left:41.600000pt;}
.x26{left:43.360000pt;}
.x25{left:45.280000pt;}
.x24{left:47.360000pt;}
.x27{left:49.280000pt;}
.x28{left:51.360000pt;}
.x32{left:61.434667pt;}
.x2e{left:71.514667pt;}
.x21{left:80.520000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.x11{left:98.591988pt;}
.x1e{left:104.352000pt;}
.x38{left:117.311988pt;}
.x2f{left:118.746667pt;}
.x9{left:141.786655pt;}
.x2b{left:147.226655pt;}
.x1a{left:160.346655pt;}
.x15{left:163.866655pt;}
.x2{left:165.154667pt;}
.xe{left:209.146643pt;}
.xf{left:213.786655pt;}
.x20{left:219.386667pt;}
.x1d{left:280.066655pt;}
.x10{left:286.626655pt;}
.x33{left:296.226667pt;}
.x1b{left:326.306643pt;}
.x1c{left:330.306655pt;}
.x18{left:350.786643pt;}
.x19{left:355.426655pt;}
.x2c{left:384.866655pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.x17{left:467.453310pt;}
.x12{left:472.093310pt;}
.x13{left:476.733322pt;}
.x36{left:497.533333pt;}
.xc{left:512.893310pt;}
.xd{left:517.533322pt;}
.xa{left:581.053310pt;}
.xb{left:584.933322pt;}
.x22{left:586.853333pt;}
.x30{left:621.413310pt;}
.x31{left:626.053322pt;}
.x2a{left:682.213322pt;}
.x6{left:690.853322pt;}
.x16{left:695.333322pt;}
.x14{left:699.333322pt;}
}




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