
    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_aca1696f3dc1d6a77fb730ee.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_83624de367949488360a6015.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_7650d7f392d4a54e76364073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_524cb1e42a3d30227ba3efd6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_9a00aa09489666a302184901.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;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_62cfc7220f0c7b95e944591b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7123a34ad9e36c7551a5743a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966797;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_9d368d2d78bc3557e638f7a3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.961914;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b82c42a25428b8c45b7bba6d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104492;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:24.120000px;}
.ls2a{letter-spacing:-0.513600px;}
.ls24{letter-spacing:-0.314400px;}
.ls31{letter-spacing:-0.225600px;}
.ls16{letter-spacing:-0.153600px;}
.ls3{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.062400px;}
.ls1b{letter-spacing:-0.045360px;}
.lsc{letter-spacing:-0.026640px;}
.ls28{letter-spacing:-0.021960px;}
.ls1f{letter-spacing:-0.013320px;}
.ls2{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.009360px;}
.ls9{letter-spacing:0.021960px;}
.ls7{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.067200px;}
.ls1c{letter-spacing:0.072000px;}
.ls2f{letter-spacing:0.089400px;}
.ls8{letter-spacing:0.090600px;}
.ls0{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.134400px;}
.ls17{letter-spacing:0.139800px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.162600px;}
.ls12{letter-spacing:0.197400px;}
.ls15{letter-spacing:0.251280px;}
.ls1d{letter-spacing:0.270000px;}
.ls22{letter-spacing:0.341280px;}
.ls2c{letter-spacing:0.382200px;}
.ls2d{letter-spacing:0.450600px;}
.ls2b{letter-spacing:1.845360px;}
.ls26{letter-spacing:1.944000px;}
.ls13{letter-spacing:2.205360px;}
.ls20{letter-spacing:2.565360px;}
.ls30{letter-spacing:2.664000px;}
.ls23{letter-spacing:3.024000px;}
.ls2e{letter-spacing:3.240000px;}
.ls29{letter-spacing:5.085360px;}
.ls21{letter-spacing:5.445360px;}
.lse{letter-spacing:8.568000px;}
.ls11{letter-spacing:9.045360px;}
.lsd{letter-spacing:9.648000px;}
.ls14{letter-spacing:12.600000px;}
.ls25{letter-spacing:37.125360px;}
.ls1e{letter-spacing:677.325360px;}
.ls6{letter-spacing:714.045360px;}
.lsb{letter-spacing:843.984000px;}
.lsf{letter-spacing:845.685360px;}
.ls27{letter-spacing:847.286640px;}
.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;}
}
.ws1{word-spacing:-36.729360px;}
.wsa{word-spacing:-26.918760px;}
.ws4{word-spacing:-23.481240px;}
.ws3{word-spacing:-20.160000px;}
.ws13{word-spacing:-20.016000px;}
.ws2{word-spacing:-19.944000px;}
.ws10{word-spacing:-18.449040px;}
.ws8{word-spacing:-18.405240px;}
.ws17{word-spacing:-18.381840px;}
.ws9{word-spacing:-18.360000px;}
.wsb{word-spacing:-18.336600px;}
.wsc{word-spacing:-18.314640px;}
.wsf{word-spacing:-18.269280px;}
.ws18{word-spacing:-18.089040px;}
.wsd{word-spacing:-16.853160px;}
.ws6{word-spacing:-16.766640px;}
.ws12{word-spacing:-16.713360px;}
.ws14{word-spacing:-16.700040px;}
.ws7{word-spacing:-16.686720px;}
.ws11{word-spacing:-16.559760px;}
.ws16{word-spacing:-16.199760px;}
.ws0{word-spacing:-15.012000px;}
.ws15{word-spacing:-11.709360px;}
.wse{word-spacing:-10.808640px;}
.ws5{word-spacing:0.000000px;}
._9{margin-left:-11.711160px;}
._c{margin-left:-9.200520px;}
._b{margin-left:-7.701960px;}
._14{margin-left:-6.192000px;}
._12{margin-left:-4.967400px;}
._a{margin-left:-3.794640px;}
._8{margin-left:-2.506320px;}
._0{margin-left:-1.107000px;}
._1{width:1.078920px;}
._7{width:2.263680px;}
._1a{width:3.294000px;}
._10{width:4.348080px;}
._f{width:5.402160px;}
._6{width:6.917400px;}
._d{width:8.103240px;}
._4{width:9.157320px;}
._3{width:10.474920px;}
._5{width:11.603640px;}
._16{width:12.844800px;}
._1e{width:14.098320px;}
._23{width:15.481800px;}
._15{width:16.535880px;}
._2{width:20.233920px;}
._e{width:21.279240px;}
._18{width:22.413960px;}
._17{width:23.808240px;}
._11{width:25.297920px;}
._1d{width:26.879040px;}
._1f{width:28.526040px;}
._24{width:30.173040px;}
._20{width:32.478840px;}
._22{width:33.639840px;}
._1b{width:37.125360px;}
._27{width:39.560400px;}
._19{width:40.747320px;}
._1c{width:41.827320px;}
._21{width:50.085360px;}
._25{width:91.573200px;}
._26{width:92.771640px;}
._13{width:172.147320px;}
.fc4{color:rgb(46,116,181);}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(83,129,53);}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,0);}
.fc6{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:6.120000px;}
.fsd{font-size:11.880000px;}
.fsc{font-size:38.880000px;}
.fsf{font-size:42.120000px;}
.fse{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:60.120000px;}
.fs9{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.880000px;}
.fs7{font-size:90.000000px;}
.fsa{font-size:96.120000px;}
.fs4{font-size:108.000000px;}
.fs5{font-size:119.880000px;}
.fs3{font-size:132.120000px;}
.fs2{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.ye0{bottom:0.630000px;}
.y142{bottom:2.160000px;}
.y152{bottom:2.520000px;}
.ybc{bottom:2.610000px;}
.ya6{bottom:3.150000px;}
.y83{bottom:3.510000px;}
.yf3{bottom:4.500000px;}
.y101{bottom:4.860000px;}
.y1e9{bottom:5.220000px;}
.yaf{bottom:5.310000px;}
.yad{bottom:5.400000px;}
.yf5{bottom:7.380000px;}
.yab{bottom:7.470000px;}
.y38{bottom:7.560000px;}
.y35{bottom:7.650000px;}
.ya7{bottom:9.000000px;}
.ybf{bottom:9.540000px;}
.y151{bottom:9.900000px;}
.y13d{bottom:11.790000px;}
.ya9{bottom:16.110000px;}
.y1be{bottom:16.200000px;}
.y33{bottom:16.290000px;}
.y17f{bottom:18.630000px;}
.y1ec{bottom:18.720000px;}
.y1ee{bottom:20.070000px;}
.yf1{bottom:20.250000px;}
.y13a{bottom:20.340000px;}
.y147{bottom:20.430000px;}
.y178{bottom:20.610000px;}
.yfe{bottom:20.640000px;}
.yaa{bottom:24.750000px;}
.y37{bottom:24.840000px;}
.y34{bottom:24.930000px;}
.yf2{bottom:27.000000px;}
.y179{bottom:27.360000px;}
.y100{bottom:27.390000px;}
.y1e8{bottom:27.720000px;}
.y13c{bottom:28.980000px;}
.y149{bottom:29.070000px;}
.y17d{bottom:29.880000px;}
.y17c{bottom:29.970000px;}
.y1eb{bottom:30.060000px;}
.y1d{bottom:30.420000px;}
.y3{bottom:32.130000px;}
.y13b{bottom:37.620000px;}
.y148{bottom:37.710000px;}
.y3e{bottom:42.120000px;}
.y1c{bottom:49.410000px;}
.y17b{bottom:52.470000px;}
.y3b{bottom:54.900000px;}
.y3c{bottom:59.400000px;}
.ye4{bottom:64.800000px;}
.y2{bottom:65.700000px;}
.y3d{bottom:76.590000px;}
.y3a{bottom:76.680000px;}
.y10a{bottom:104.670000px;}
.yce{bottom:106.020000px;}
.y1da{bottom:106.110000px;}
.y1b3{bottom:108.180000px;}
.y1fb{bottom:109.890000px;}
.y109{bottom:121.860000px;}
.y122{bottom:122.580000px;}
.y19{bottom:124.110000px;}
.yb9{bottom:124.290000px;}
.y1d9{bottom:126.810000px;}
.y108{bottom:127.080000px;}
.ycd{bottom:128.520000px;}
.y8e{bottom:130.410000px;}
.y1b2{bottom:130.680000px;}
.y164{bottom:138.420000px;}
.y107{bottom:139.860000px;}
.y121{bottom:145.080000px;}
.y18{bottom:150.030000px;}
.ycc{bottom:151.020000px;}
.yb8{bottom:151.290000px;}
.y8d{bottom:152.910000px;}
.y163{bottom:160.920000px;}
.y1d8{bottom:161.820000px;}
.y1b1{bottom:162.180000px;}
.y120{bottom:167.580000px;}
.yeb{bottom:171.630000px;}
.y1fa{bottom:173.070000px;}
.ycb{bottom:173.520000px;}
.y8c{bottom:175.410000px;}
.y17{bottom:175.860000px;}
.yb7{bottom:178.290000px;}
.y162{bottom:183.420000px;}
.y1b0{bottom:184.680000px;}
.y1d6{bottom:184.860000px;}
.y1e0{bottom:185.310000px;}
.yea{bottom:192.330000px;}
.y8b{bottom:197.910000px;}
.yca{bottom:200.520000px;}
.y11f{bottom:201.330000px;}
.y16{bottom:201.780000px;}
.yb6{bottom:205.290000px;}
.y161{bottom:205.920000px;}
.y79{bottom:206.550000px;}
.y1af{bottom:207.180000px;}
.y1f9{bottom:207.990000px;}
.y175{bottom:213.210000px;}
.y1df{bottom:220.320000px;}
.y8a{bottom:220.410000px;}
.yc9{bottom:223.020000px;}
.ye9{bottom:227.370000px;}
.y160{bottom:228.450000px;}
.y1ca{bottom:229.170000px;}
.yb5{bottom:232.320000px;}
.y1ae{bottom:238.710000px;}
.y1f8{bottom:239.070000px;}
.y153{bottom:240.780000px;}
.y15{bottom:242.310000px;}
.y78{bottom:242.490000px;}
.y89{bottom:242.940000px;}
.y174{bottom:244.740000px;}
.yc8{bottom:245.550000px;}
.ye8{bottom:250.410000px;}
.y11e{bottom:251.490000px;}
.y150{bottom:254.820000px;}
.y15f{bottom:255.450000px;}
.y1c9{bottom:256.170000px;}
.yb4{bottom:259.320000px;}
.y1ad{bottom:261.210000px;}
.y173{bottom:263.460000px;}
.y77{bottom:264.990000px;}
.y88{bottom:265.440000px;}
.y11d{bottom:265.530000px;}
.yc7{bottom:268.050000px;}
.y1f7{bottom:270.570000px;}
.y15e{bottom:277.950000px;}
.y14{bottom:281.460000px;}
.y1c8{bottom:283.170000px;}
.y1ac{bottom:283.710000px;}
.ye1{bottom:285.750000px;}
.ybb{bottom:285.960000px;}
.yb3{bottom:286.320000px;}
.y1d7{bottom:286.860000px;}
.y76{bottom:287.490000px;}
.y87{bottom:287.940000px;}
.yc6{bottom:290.550000px;}
.y172{bottom:292.710000px;}
.ye2{bottom:295.050000px;}
.y40{bottom:295.950000px;}
.y1f6{bottom:302.070000px;}
.y15d{bottom:304.950000px;}
.y1ab{bottom:306.210000px;}
.ydf{bottom:309.090000px;}
.y75{bottom:309.990000px;}
.y1c7{bottom:310.170000px;}
.y86{bottom:310.440000px;}
.yb2{bottom:313.320000px;}
.yc5{bottom:317.550000px;}
.y13{bottom:320.610000px;}
.y171{bottom:321.960000px;}
.y15c{bottom:327.450000px;}
.y1aa{bottom:328.710000px;}
.y3f{bottom:332.490000px;}
.y1f5{bottom:333.570000px;}
.y1c6{bottom:337.170000px;}
.yc4{bottom:340.050000px;}
.yb1{bottom:340.320000px;}
.y134{bottom:340.770000px;}
.y74{bottom:341.490000px;}
.y85{bottom:344.190000px;}
.y198{bottom:350.220000px;}
.y170{bottom:351.210000px;}
.y15b{bottom:354.450000px;}
.y39{bottom:355.710000px;}
.y12{bottom:359.040000px;}
.yc3{bottom:362.550000px;}
.y73{bottom:363.990000px;}
.y1c5{bottom:364.170000px;}
.y1f4{bottom:365.070000px;}
.y133{bottom:366.960000px;}
.y197{bottom:372.720000px;}
.y1a9{bottom:373.710000px;}
.y15a{bottom:376.950000px;}
.y16f{bottom:380.460000px;}
.yb0{bottom:381.450000px;}
.yc2{bottom:385.050000px;}
.y72{bottom:386.490000px;}
.y1c4{bottom:391.170000px;}
.y11{bottom:391.260000px;}
.y84{bottom:394.320000px;}
.y196{bottom:395.220000px;}
.y1a8{bottom:396.210000px;}
.y169{bottom:396.300000px;}
.y1f3{bottom:396.570000px;}
.y159{bottom:399.450000px;}
.y132{bottom:403.590000px;}
.yae{bottom:403.770000px;}
.y82{bottom:408.360000px;}
.y71{bottom:408.990000px;}
.y16e{bottom:409.710000px;}
.y195{bottom:417.720000px;}
.y1c3{bottom:418.170000px;}
.yc1{bottom:418.800000px;}
.yac{bottom:426.090000px;}
.y1a7{bottom:427.710000px;}
.y1f2{bottom:428.070000px;}
.y158{bottom:433.200000px;}
.y10{bottom:434.820000px;}
.y194{bottom:440.220000px;}
.y70{bottom:440.490000px;}
.y1c2{bottom:445.170000px;}
.ya8{bottom:448.500000px;}
.y131{bottom:448.590000px;}
.y1a6{bottom:450.210000px;}
.y36{bottom:451.740000px;}
.y168{bottom:454.980000px;}
.y1f1{bottom:459.570000px;}
.y193{bottom:462.720000px;}
.y6f{bottom:462.990000px;}
.y1c1{bottom:463.890000px;}
.y16d{bottom:467.580000px;}
.yc0{bottom:468.930000px;}
.y167{bottom:469.020000px;}
.y130{bottom:471.090000px;}
.y1a5{bottom:472.710000px;}
.y1f0{bottom:482.700000px;}
.ybe{bottom:482.970000px;}
.y157{bottom:483.330000px;}
.y192{bottom:485.220000px;}
.y6e{bottom:485.490000px;}
.y1c0{bottom:486.300000px;}
.yf{bottom:488.010000px;}
.y1d5{bottom:489.090000px;}
.y106{bottom:489.450000px;}
.ya5{bottom:492.420000px;}
.y12f{bottom:493.590000px;}
.y1a4{bottom:495.210000px;}
.y32{bottom:495.930000px;}
.y156{bottom:497.370000px;}
.y16c{bottom:504.210000px;}
.y1ef{bottom:505.920000px;}
.y191{bottom:507.720000px;}
.y6d{bottom:507.990000px;}
.y1bf{bottom:508.620000px;}
.y1d4{bottom:511.590000px;}
.y1a3{bottom:517.710000px;}
.y105{bottom:525.450000px;}
.y16b{bottom:526.710000px;}
.ye{bottom:528.420000px;}
.y6c{bottom:530.490000px;}
.y1bd{bottom:530.940000px;}
.y12e{bottom:531.120000px;}
.ya4{bottom:534.270000px;}
.y14f{bottom:541.290000px;}
.y190{bottom:541.470000px;}
.y1d3{bottom:543.090000px;}
.y104{bottom:544.170000px;}
.y1a2{bottom:549.210000px;}
.ya3{bottom:551.550000px;}
.y31{bottom:554.340000px;}
.y1ed{bottom:557.670000px;}
.y12d{bottom:558.120000px;}
.y56{bottom:558.300000px;}
.y14e{bottom:560.100000px;}
.y16a{bottom:560.460000px;}
.y6b{bottom:561.990000px;}
.y1d2{bottom:565.590000px;}
.y11c{bottom:570.720000px;}
.y1a1{bottom:571.710000px;}
.y103{bottom:573.420000px;}
.y1bc{bottom:574.950000px;}
.yd{bottom:580.170000px;}
.y12c{bottom:580.620000px;}
.y14d{bottom:582.420000px;}
.y6a{bottom:584.490000px;}
.y55{bottom:584.670000px;}
.ya2{bottom:588.090000px;}
.y30{bottom:589.620000px;}
.y1d1{bottom:592.590000px;}
.y18f{bottom:592.950000px;}
.y11b{bottom:593.220000px;}
.y1a0{bottom:594.210000px;}
.y102{bottom:602.670000px;}
.y12b{bottom:603.120000px;}
.y14c{bottom:604.740000px;}
.y54{bottom:605.100000px;}
.y69{bottom:606.990000px;}
.y1ea{bottom:609.420000px;}
.ya1{bottom:610.590000px;}
.y1d0{bottom:615.090000px;}
.y18e{bottom:615.450000px;}
.y11a{bottom:615.720000px;}
.y19f{bottom:616.710000px;}
.y2f{bottom:618.960000px;}
.yde{bottom:619.590000px;}
.y53{bottom:625.530000px;}
.y12a{bottom:625.620000px;}
.y14b{bottom:627.150000px;}
.y68{bottom:629.490000px;}
.yfd{bottom:631.920000px;}
.ya0{bottom:633.090000px;}
.y1bb{bottom:633.990000px;}
.y2e{bottom:637.950000px;}
.y119{bottom:638.220000px;}
.y19e{bottom:639.210000px;}
.yc{bottom:641.190000px;}
.ydd{bottom:642.090000px;}
.y14a{bottom:649.500000px;}
.y67{bottom:652.020000px;}
.y129{bottom:652.650000px;}
.yff{bottom:655.170000px;}
.y9f{bottom:655.620000px;}
.y52{bottom:657.960000px;}
.y18d{bottom:660.480000px;}
.y118{bottom:660.750000px;}
.y1e6{bottom:661.200000px;}
.y19d{bottom:661.740000px;}
.y1cf{bottom:664.620000px;}
.y2d{bottom:667.590000px;}
.y1ba{bottom:670.650000px;}
.y146{bottom:671.820000px;}
.y66{bottom:674.520000px;}
.y128{bottom:675.150000px;}
.yb{bottom:676.950000px;}
.y51{bottom:678.480000px;}
.ydc{bottom:679.650000px;}
.y18c{bottom:682.980000px;}
.y117{bottom:683.250000px;}
.y19c{bottom:684.240000px;}
.y1e7{bottom:684.420000px;}
.y1ce{bottom:687.120000px;}
.y81{bottom:688.380000px;}
.yfc{bottom:690.540000px;}
.y9e{bottom:693.150000px;}
.y2c{bottom:693.960000px;}
.y65{bottom:697.020000px;}
.ya{bottom:697.650000px;}
.y50{bottom:698.910000px;}
.ydb{bottom:702.150000px;}
.y18b{bottom:705.480000px;}
.y116{bottom:705.750000px;}
.y1de{bottom:708.900000px;}
.y80{bottom:710.880000px;}
.ye7{bottom:714.930000px;}
.y1b9{bottom:715.650000px;}
.y182{bottom:716.460000px;}
.y19b{bottom:717.990000px;}
.y9{bottom:718.350000px;}
.y4f{bottom:719.430000px;}
.y64{bottom:719.520000px;}
.y1e5{bottom:719.790000px;}
.y9d{bottom:720.150000px;}
.y1cd{bottom:720.870000px;}
.y208{bottom:722.940000px;}
.y2b{bottom:724.290000px;}
.y145{bottom:724.380000px;}
.y127{bottom:724.650000px;}
.yfb{bottom:727.170000px;}
.y18a{bottom:727.980000px;}
.y115{bottom:728.250000px;}
.yda{bottom:729.150000px;}
.y1dd{bottom:731.400000px;}
.y7f{bottom:733.380000px;}
.ye6{bottom:737.430000px;}
.y4e{bottom:739.950000px;}
.y63{bottom:742.020000px;}
.y1b8{bottom:742.650000px;}
.y207{bottom:743.640000px;}
.y2a{bottom:746.790000px;}
.y9c{bottom:747.150000px;}
.yfa{bottom:749.670000px;}
.y114{bottom:750.750000px;}
.yd9{bottom:751.650000px;}
.y181{bottom:752.370000px;}
.y144{bottom:754.080000px;}
.y7e{bottom:755.880000px;}
.y1e4{bottom:756.420000px;}
.y189{bottom:759.480000px;}
.y62{bottom:764.520000px;}
.y19a{bottom:768.120000px;}
.y29{bottom:769.290000px;}
.y126{bottom:769.650000px;}
.y1dc{bottom:770.640000px;}
.y1cc{bottom:771.090000px;}
.y180{bottom:771.180000px;}
.y4d{bottom:772.350000px;}
.y206{bottom:773.340000px;}
.ye5{bottom:773.610000px;}
.y9b{bottom:774.150000px;}
.y7d{bottom:778.380000px;}
.y1e3{bottom:778.920000px;}
.ybd{bottom:780.810000px;}
.yf9{bottom:781.170000px;}
.y188{bottom:781.980000px;}
.y199{bottom:782.160000px;}
.y113{bottom:784.500000px;}
.y1db{bottom:784.680000px;}
.y1cb{bottom:785.130000px;}
.y61{bottom:787.020000px;}
.ye3{bottom:787.650000px;}
.y166{bottom:789.090000px;}
.y28{bottom:791.790000px;}
.y143{bottom:792.780000px;}
.y4c{bottom:792.870000px;}
.y155{bottom:793.140000px;}
.yba{bottom:794.850000px;}
.y9a{bottom:796.650000px;}
.yf8{bottom:799.980000px;}
.y7c{bottom:800.880000px;}
.yd8{bottom:801.150000px;}
.y165{bottom:803.130000px;}
.y187{bottom:804.480000px;}
.y154{bottom:807.180000px;}
.y60{bottom:809.520000px;}
.y1e2{bottom:810.420000px;}
.y141{bottom:811.500000px;}
.y205{bottom:812.040000px;}
.y4b{bottom:813.300000px;}
.y27{bottom:814.290000px;}
.y99{bottom:819.150000px;}
.y17e{bottom:822.930000px;}
.y7b{bottom:823.380000px;}
.yd7{bottom:823.650000px;}
.y186{bottom:826.980000px;}
.yf7{bottom:829.230000px;}
.y5f{bottom:832.020000px;}
.y4a{bottom:833.820000px;}
.y112{bottom:835.980000px;}
.y98{bottom:841.650000px;}
.y26{bottom:845.790000px;}
.y1b7{bottom:846.150000px;}
.y185{bottom:849.480000px;}
.y204{bottom:850.380000px;}
.yd6{bottom:850.650000px;}
.y49{bottom:854.250000px;}
.y5e{bottom:854.520000px;}
.y140{bottom:856.230000px;}
.y7a{bottom:857.040000px;}
.yf6{bottom:858.480000px;}
.y8{bottom:866.760000px;}
.y25{bottom:868.290000px;}
.y97{bottom:868.650000px;}
.y203{bottom:869.370000px;}
.y184{bottom:871.980000px;}
.yd5{bottom:873.150000px;}
.y17a{bottom:874.680000px;}
.y48{bottom:874.770000px;}
.y13f{bottom:878.550000px;}
.y111{bottom:880.980000px;}
.y5d{bottom:886.020000px;}
.yf4{bottom:887.730000px;}
.y202{bottom:888.270000px;}
.y24{bottom:890.790000px;}
.y125{bottom:891.150000px;}
.y183{bottom:894.480000px;}
.y96{bottom:895.650000px;}
.y13e{bottom:900.870000px;}
.y110{bottom:903.480000px;}
.y47{bottom:907.260000px;}
.y7{bottom:908.070000px;}
.y5c{bottom:908.520000px;}
.y23{bottom:913.290000px;}
.y124{bottom:913.650000px;}
.yf0{bottom:916.980000px;}
.y95{bottom:918.150000px;}
.y1b6{bottom:922.650000px;}
.y139{bottom:923.280000px;}
.y10f{bottom:925.980000px;}
.y201{bottom:926.250000px;}
.yd4{bottom:927.150000px;}
.y46{bottom:927.690000px;}
.y5b{bottom:931.020000px;}
.y22{bottom:935.790000px;}
.y94{bottom:940.650000px;}
.y200{bottom:945.240000px;}
.y6{bottom:946.050000px;}
.y45{bottom:948.210000px;}
.y10e{bottom:948.480000px;}
.y177{bottom:948.930000px;}
.yd3{bottom:949.650000px;}
.y5a{bottom:953.520000px;}
.y1b5{bottom:954.150000px;}
.y123{bottom:963.150000px;}
.y93{bottom:967.650000px;}
.y21{bottom:967.920000px;}
.y44{bottom:968.640000px;}
.y10d{bottom:970.980000px;}
.yd2{bottom:972.150000px;}
.yef{bottom:974.850000px;}
.y138{bottom:975.750000px;}
.y59{bottom:976.020000px;}
.y1b4{bottom:976.650000px;}
.y1ff{bottom:982.140000px;}
.y5{bottom:983.940000px;}
.y43{bottom:989.160000px;}
.y92{bottom:990.150000px;}
.y10c{bottom:993.480000px;}
.y58{bottom:998.520000px;}
.yd1{bottom:999.150000px;}
.y1fe{bottom:1001.130000px;}
.y20{bottom:1003.200000px;}
.y137{bottom:1005.450000px;}
.y176{bottom:1007.520000px;}
.yee{bottom:1011.480000px;}
.y91{bottom:1012.650000px;}
.y1fd{bottom:1020.120000px;}
.y57{bottom:1021.020000px;}
.y42{bottom:1021.560000px;}
.yd0{bottom:1021.650000px;}
.y1f{bottom:1032.540000px;}
.y4{bottom:1033.440000px;}
.yed{bottom:1033.980000px;}
.y10b{bottom:1034.520000px;}
.y90{bottom:1035.150000px;}
.y1fc{bottom:1036.230000px;}
.y41{bottom:1037.580000px;}
.ycf{bottom:1044.150000px;}
.y136{bottom:1053.330000px;}
.y1e{bottom:1062.150000px;}
.y8f{bottom:1066.680000px;}
.y1e1{bottom:1067.670000px;}
.yec{bottom:1067.760000px;}
.y135{bottom:1070.550000px;}
.y1b{bottom:1178.640000px;}
.y1{bottom:1193.130000px;}
.y1a{bottom:1195.920000px;}
.h15{height:5.827148px;}
.h21{height:10.650234px;}
.h1f{height:21.600000px;}
.h31{height:21.630000px;}
.h2a{height:22.500000px;}
.h2b{height:22.530000px;}
.h28{height:28.440000px;}
.h2c{height:28.530000px;}
.h30{height:28.890000px;}
.h1c{height:28.980000px;}
.h2d{height:34.855313px;}
.hc{height:41.743477px;}
.h22{height:42.923672px;}
.h1d{height:43.200000px;}
.h12{height:43.470000px;}
.h10{height:43.560000px;}
.h27{height:45.000000px;}
.h11{height:45.207422px;}
.h36{height:45.720000px;}
.h18{height:45.742852px;}
.h29{height:45.750000px;}
.h3{height:48.410156px;}
.hd{height:49.538672px;}
.h2{height:49.992188px;}
.h38{height:50.940000px;}
.h3e{height:51.030000px;}
.h3d{height:51.060000px;}
.h2f{height:51.750000px;}
.h1b{height:53.749863px;}
.h13{height:53.896641px;}
.h19{height:54.140625px;}
.h1e{height:55.735313px;}
.h26{height:58.899551px;}
.he{height:59.060391px;}
.h7{height:64.546875px;}
.h17{height:71.613281px;}
.hf{height:72.277734px;}
.h37{height:73.440000px;}
.h16{height:73.722656px;}
.ha{height:75.197109px;}
.hb{height:80.683594px;}
.h9{height:90.144141px;}
.h14{height:95.220000px;}
.h6{height:96.820312px;}
.h5{height:118.443516px;}
.h4{height:135.351562px;}
.h8{height:161.367188px;}
.h34{height:227.520000px;}
.h1a{height:266.520000px;}
.h32{height:277.470000px;}
.h33{height:277.500000px;}
.h23{height:279.660000px;}
.h2e{height:282.690000px;}
.h20{height:289.830000px;}
.h3b{height:290.730000px;}
.h24{height:297.000000px;}
.h25{height:297.030000px;}
.h3a{height:299.550000px;}
.h3c{height:300.000000px;}
.h35{height:301.800000px;}
.h39{height:302.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3e{width:60.030000px;}
.w3d{width:60.060000px;}
.w2b{width:67.980000px;}
.wf{width:68.040000px;}
.w2d{width:68.070000px;}
.w12{width:68.400000px;}
.w2f{width:68.430000px;}
.w2e{width:68.970000px;}
.w30{width:69.330000px;}
.w22{width:73.530000px;}
.w2c{width:78.750000px;}
.w2a{width:78.840000px;}
.w20{width:80.280000px;}
.w21{width:87.030000px;}
.w1f{width:87.060000px;}
.w5{width:90.540000px;}
.w45{width:93.780000px;}
.w3b{width:93.810000px;}
.w37{width:94.980000px;}
.w3c{width:100.530000px;}
.w1c{width:101.730000px;}
.w4{width:105.870000px;}
.wc{width:107.220000px;}
.w46{width:107.280000px;}
.w9{width:107.580000px;}
.w10{width:112.680000px;}
.wd{width:113.940000px;}
.w11{width:113.970000px;}
.we{width:120.720000px;}
.w3a{width:120.780000px;}
.w39{width:120.810000px;}
.w1b{width:126.270000px;}
.w36{width:126.360000px;}
.w29{width:148.170000px;}
.w25{width:148.530000px;}
.w44{width:160.860000px;}
.w1e{width:161.280000px;}
.w38{width:167.700000px;}
.w43{width:178.230000px;}
.w3{width:218.070000px;}
.w6{width:219.630000px;}
.w27{width:227.190000px;}
.w28{width:228.090000px;}
.w42{width:230.850000px;}
.w34{width:232.230000px;}
.w41{width:245.730000px;}
.w18{width:263.760000px;}
.w35{width:268.860000px;}
.w1a{width:268.950000px;}
.wb{width:295.590000px;}
.w1d{width:295.980000px;}
.wa{width:304.950000px;}
.w8{width:372.630000px;}
.w7{width:372.660000px;}
.w33{width:394.230000px;}
.w3f{width:394.260000px;}
.w16{width:396.510000px;}
.w15{width:396.870000px;}
.w14{width:396.960000px;}
.w24{width:397.140000px;}
.w13{width:397.410000px;}
.w32{width:398.850000px;}
.w31{width:399.480000px;}
.w19{width:407.910000px;}
.w17{width:418.560000px;}
.w26{width:684.000000px;}
.w40{width:791.190000px;}
.w23{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x71{left:9.990000px;}
.x27{left:11.160000px;}
.x69{left:12.450000px;}
.x32{left:14.850000px;}
.x5c{left:16.470000px;}
.x6c{left:17.820000px;}
.x31{left:18.990000px;}
.x12{left:20.010000px;}
.x2b{left:22.320000px;}
.x4a{left:23.490000px;}
.x41{left:25.320000px;}
.x42{left:27.720000px;}
.x11{left:29.100000px;}
.x5d{left:30.690000px;}
.x2c{left:31.950000px;}
.x33{left:34.020000px;}
.x2f{left:35.370000px;}
.xf{left:37.350000px;}
.x5e{left:39.420000px;}
.x29{left:40.770000px;}
.x30{left:42.420000px;}
.x74{left:43.470000px;}
.x6a{left:47.520000px;}
.x5b{left:49.860000px;}
.x82{left:51.120000px;}
.x23{left:52.830000px;}
.xd{left:63.629987px;}
.x15{left:68.520000px;}
.x52{left:75.600000px;}
.x1a{left:79.830000px;}
.x44{left:89.280000px;}
.x55{left:96.120000px;}
.x3f{left:98.190000px;}
.x26{left:110.160000px;}
.x45{left:111.720000px;}
.x64{left:116.130000px;}
.x78{left:119.100000px;}
.x24{left:125.370000px;}
.x1{left:127.469987px;}
.x8{left:132.419987px;}
.x7{left:133.769987px;}
.x6{left:136.649987px;}
.x1d{left:140.969987px;}
.x17{left:147.719987px;}
.x18{left:154.469987px;}
.x9{left:155.819987px;}
.xb{left:158.159987px;}
.x1e{left:161.219987px;}
.x5{left:164.009987px;}
.x1f{left:167.969987px;}
.x65{left:178.229987px;}
.x50{left:182.190000px;}
.x3b{left:184.169987px;}
.x21{left:186.239987px;}
.x37{left:188.219987px;}
.x7b{left:193.530000px;}
.x20{left:194.969987px;}
.x3e{left:197.310000px;}
.x39{left:199.559987px;}
.x66{left:200.730000px;}
.x3{left:203.249987px;}
.x19{left:207.569987px;}
.x61{left:208.739987px;}
.x36{left:211.709987px;}
.x35{left:214.589987px;}
.x3c{left:218.639987px;}
.x60{left:223.319987px;}
.x2{left:225.479987px;}
.x1c{left:226.739987px;}
.x4e{left:237.539987px;}
.x22{left:238.709987px;}
.x75{left:253.379987px;}
.x70{left:257.700000px;}
.x56{left:261.750000px;}
.x80{left:267.780000px;}
.x28{left:275.970000px;}
.xc{left:280.109987px;}
.x3d{left:296.309987px;}
.x5f{left:304.410000px;}
.x43{left:310.439987px;}
.x51{left:314.850000px;}
.x62{left:330.420000px;}
.xa{left:337.259987px;}
.x57{left:341.400000px;}
.x4c{left:343.469987px;}
.x6b{left:345.450000px;}
.x10{left:347.070000px;}
.x7c{left:355.530000px;}
.x79{left:364.830000px;}
.x3a{left:374.460000px;}
.x46{left:385.980000px;}
.x76{left:395.610000px;}
.x2a{left:397.500000px;}
.x72{left:406.230000px;}
.x53{left:410.190000px;}
.x81{left:416.310000px;}
.x4{left:446.549987px;}
.x34{left:450.240000px;}
.x4f{left:451.409987px;}
.x1b{left:452.490000px;}
.x13{left:453.660000px;}
.x25{left:466.980000px;}
.x67{left:470.310000px;}
.x38{left:471.390000px;}
.x4b{left:473.730000px;}
.x4d{left:476.970000px;}
.x58{left:489.750000px;}
.x73{left:527.730000px;}
.x14{left:544.920000px;}
.x47{left:547.980000px;}
.x63{left:562.650000px;}
.x59{left:569.310000px;}
.x7d{left:571.560000px;}
.x2d{left:579.750000px;}
.x6d{left:588.480000px;}
.x40{left:594.060000px;}
.x7a{left:595.680000px;}
.x68{left:597.390000px;}
.x48{left:635.760000px;}
.x54{left:638.100000px;}
.x7e{left:659.340000px;}
.x6e{left:683.010000px;}
.x2e{left:694.530000px;}
.x77{left:715.140000px;}
.x49{left:716.760000px;}
.xe{left:765.629987px;}
.x7f{left:767.340000px;}
.x6f{left:784.260000px;}
.x5a{left:797.220000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.440000pt;}
.ls2a{letter-spacing:-0.456533pt;}
.ls24{letter-spacing:-0.279467pt;}
.ls31{letter-spacing:-0.200533pt;}
.ls16{letter-spacing:-0.136533pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.055467pt;}
.ls1b{letter-spacing:-0.040320pt;}
.lsc{letter-spacing:-0.023680pt;}
.ls28{letter-spacing:-0.019520pt;}
.ls1f{letter-spacing:-0.011840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.008320pt;}
.ls9{letter-spacing:0.019520pt;}
.ls7{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.059733pt;}
.ls1c{letter-spacing:0.064000pt;}
.ls2f{letter-spacing:0.079467pt;}
.ls8{letter-spacing:0.080533pt;}
.ls0{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.119467pt;}
.ls17{letter-spacing:0.124267pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.144533pt;}
.ls12{letter-spacing:0.175467pt;}
.ls15{letter-spacing:0.223360pt;}
.ls1d{letter-spacing:0.240000pt;}
.ls22{letter-spacing:0.303360pt;}
.ls2c{letter-spacing:0.339733pt;}
.ls2d{letter-spacing:0.400533pt;}
.ls2b{letter-spacing:1.640320pt;}
.ls26{letter-spacing:1.728000pt;}
.ls13{letter-spacing:1.960320pt;}
.ls20{letter-spacing:2.280320pt;}
.ls30{letter-spacing:2.368000pt;}
.ls23{letter-spacing:2.688000pt;}
.ls2e{letter-spacing:2.880000pt;}
.ls29{letter-spacing:4.520320pt;}
.ls21{letter-spacing:4.840320pt;}
.lse{letter-spacing:7.616000pt;}
.ls11{letter-spacing:8.040320pt;}
.lsd{letter-spacing:8.576000pt;}
.ls14{letter-spacing:11.200000pt;}
.ls25{letter-spacing:33.000320pt;}
.ls1e{letter-spacing:602.066987pt;}
.ls6{letter-spacing:634.706987pt;}
.lsb{letter-spacing:750.208000pt;}
.lsf{letter-spacing:751.720320pt;}
.ls27{letter-spacing:753.143680pt;}
.ws1{word-spacing:-32.648320pt;}
.wsa{word-spacing:-23.927787pt;}
.ws4{word-spacing:-20.872213pt;}
.ws3{word-spacing:-17.920000pt;}
.ws13{word-spacing:-17.792000pt;}
.ws2{word-spacing:-17.728000pt;}
.ws10{word-spacing:-16.399147pt;}
.ws8{word-spacing:-16.360213pt;}
.ws17{word-spacing:-16.339413pt;}
.ws9{word-spacing:-16.320000pt;}
.wsb{word-spacing:-16.299200pt;}
.wsc{word-spacing:-16.279680pt;}
.wsf{word-spacing:-16.239360pt;}
.ws18{word-spacing:-16.079147pt;}
.wsd{word-spacing:-14.980587pt;}
.ws6{word-spacing:-14.903680pt;}
.ws12{word-spacing:-14.856320pt;}
.ws14{word-spacing:-14.844480pt;}
.ws7{word-spacing:-14.832640pt;}
.ws11{word-spacing:-14.719787pt;}
.ws16{word-spacing:-14.399787pt;}
.ws0{word-spacing:-13.344000pt;}
.ws15{word-spacing:-10.408320pt;}
.wse{word-spacing:-9.607680pt;}
.ws5{word-spacing:0.000000pt;}
._9{margin-left:-10.409920pt;}
._c{margin-left:-8.178240pt;}
._b{margin-left:-6.846187pt;}
._14{margin-left:-5.504000pt;}
._12{margin-left:-4.415467pt;}
._a{margin-left:-3.373013pt;}
._8{margin-left:-2.227840pt;}
._0{margin-left:-0.984000pt;}
._1{width:0.959040pt;}
._7{width:2.012160pt;}
._1a{width:2.928000pt;}
._10{width:3.864960pt;}
._f{width:4.801920pt;}
._6{width:6.148800pt;}
._d{width:7.202880pt;}
._4{width:8.139840pt;}
._3{width:9.311040pt;}
._5{width:10.314347pt;}
._16{width:11.417600pt;}
._1e{width:12.531840pt;}
._23{width:13.761600pt;}
._15{width:14.698560pt;}
._2{width:17.985707pt;}
._e{width:18.914880pt;}
._18{width:19.923520pt;}
._17{width:21.162880pt;}
._11{width:22.487040pt;}
._1d{width:23.892480pt;}
._1f{width:25.356480pt;}
._24{width:26.820480pt;}
._20{width:28.870080pt;}
._22{width:29.902080pt;}
._1b{width:33.000320pt;}
._27{width:35.164800pt;}
._19{width:36.219840pt;}
._1c{width:37.179840pt;}
._21{width:44.520320pt;}
._25{width:81.398400pt;}
._26{width:82.463680pt;}
._13{width:153.019840pt;}
.fsb{font-size:5.440000pt;}
.fsd{font-size:10.560000pt;}
.fsc{font-size:34.560000pt;}
.fsf{font-size:37.440000pt;}
.fse{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:53.440000pt;}
.fs9{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.560000pt;}
.fs7{font-size:80.000000pt;}
.fsa{font-size:85.440000pt;}
.fs4{font-size:96.000000pt;}
.fs5{font-size:106.560000pt;}
.fs3{font-size:117.440000pt;}
.fs2{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:0.560000pt;}
.y142{bottom:1.920000pt;}
.y152{bottom:2.240000pt;}
.ybc{bottom:2.320000pt;}
.ya6{bottom:2.800000pt;}
.y83{bottom:3.120000pt;}
.yf3{bottom:4.000000pt;}
.y101{bottom:4.320000pt;}
.y1e9{bottom:4.640000pt;}
.yaf{bottom:4.720000pt;}
.yad{bottom:4.800000pt;}
.yf5{bottom:6.560000pt;}
.yab{bottom:6.640000pt;}
.y38{bottom:6.720000pt;}
.y35{bottom:6.800000pt;}
.ya7{bottom:8.000000pt;}
.ybf{bottom:8.480000pt;}
.y151{bottom:8.800000pt;}
.y13d{bottom:10.480000pt;}
.ya9{bottom:14.320000pt;}
.y1be{bottom:14.400000pt;}
.y33{bottom:14.480000pt;}
.y17f{bottom:16.560000pt;}
.y1ec{bottom:16.640000pt;}
.y1ee{bottom:17.840000pt;}
.yf1{bottom:18.000000pt;}
.y13a{bottom:18.080000pt;}
.y147{bottom:18.160000pt;}
.y178{bottom:18.320000pt;}
.yfe{bottom:18.346667pt;}
.yaa{bottom:22.000000pt;}
.y37{bottom:22.080000pt;}
.y34{bottom:22.160000pt;}
.yf2{bottom:24.000000pt;}
.y179{bottom:24.320000pt;}
.y100{bottom:24.346667pt;}
.y1e8{bottom:24.640000pt;}
.y13c{bottom:25.760000pt;}
.y149{bottom:25.840000pt;}
.y17d{bottom:26.560000pt;}
.y17c{bottom:26.640000pt;}
.y1eb{bottom:26.720000pt;}
.y1d{bottom:27.040000pt;}
.y3{bottom:28.560000pt;}
.y13b{bottom:33.440000pt;}
.y148{bottom:33.520000pt;}
.y3e{bottom:37.440000pt;}
.y1c{bottom:43.920000pt;}
.y17b{bottom:46.640000pt;}
.y3b{bottom:48.800000pt;}
.y3c{bottom:52.800000pt;}
.ye4{bottom:57.600000pt;}
.y2{bottom:58.400000pt;}
.y3d{bottom:68.080000pt;}
.y3a{bottom:68.160000pt;}
.y10a{bottom:93.040000pt;}
.yce{bottom:94.240000pt;}
.y1da{bottom:94.320000pt;}
.y1b3{bottom:96.160000pt;}
.y1fb{bottom:97.680000pt;}
.y109{bottom:108.320000pt;}
.y122{bottom:108.960000pt;}
.y19{bottom:110.320000pt;}
.yb9{bottom:110.480000pt;}
.y1d9{bottom:112.720000pt;}
.y108{bottom:112.960000pt;}
.ycd{bottom:114.240000pt;}
.y8e{bottom:115.920000pt;}
.y1b2{bottom:116.160000pt;}
.y164{bottom:123.040000pt;}
.y107{bottom:124.320000pt;}
.y121{bottom:128.960000pt;}
.y18{bottom:133.360000pt;}
.ycc{bottom:134.240000pt;}
.yb8{bottom:134.480000pt;}
.y8d{bottom:135.920000pt;}
.y163{bottom:143.040000pt;}
.y1d8{bottom:143.840000pt;}
.y1b1{bottom:144.160000pt;}
.y120{bottom:148.960000pt;}
.yeb{bottom:152.560000pt;}
.y1fa{bottom:153.840000pt;}
.ycb{bottom:154.240000pt;}
.y8c{bottom:155.920000pt;}
.y17{bottom:156.320000pt;}
.yb7{bottom:158.480000pt;}
.y162{bottom:163.040000pt;}
.y1b0{bottom:164.160000pt;}
.y1d6{bottom:164.320000pt;}
.y1e0{bottom:164.720000pt;}
.yea{bottom:170.960000pt;}
.y8b{bottom:175.920000pt;}
.yca{bottom:178.240000pt;}
.y11f{bottom:178.960000pt;}
.y16{bottom:179.360000pt;}
.yb6{bottom:182.480000pt;}
.y161{bottom:183.040000pt;}
.y79{bottom:183.600000pt;}
.y1af{bottom:184.160000pt;}
.y1f9{bottom:184.880000pt;}
.y175{bottom:189.520000pt;}
.y1df{bottom:195.840000pt;}
.y8a{bottom:195.920000pt;}
.yc9{bottom:198.240000pt;}
.ye9{bottom:202.106667pt;}
.y160{bottom:203.066667pt;}
.y1ca{bottom:203.706667pt;}
.yb5{bottom:206.506667pt;}
.y1ae{bottom:212.186667pt;}
.y1f8{bottom:212.506667pt;}
.y153{bottom:214.026667pt;}
.y15{bottom:215.386667pt;}
.y78{bottom:215.546667pt;}
.y89{bottom:215.946667pt;}
.y174{bottom:217.546667pt;}
.yc8{bottom:218.266667pt;}
.ye8{bottom:222.586667pt;}
.y11e{bottom:223.546667pt;}
.y150{bottom:226.506667pt;}
.y15f{bottom:227.066667pt;}
.y1c9{bottom:227.706667pt;}
.yb4{bottom:230.506667pt;}
.y1ad{bottom:232.186667pt;}
.y173{bottom:234.186667pt;}
.y77{bottom:235.546667pt;}
.y88{bottom:235.946667pt;}
.y11d{bottom:236.026667pt;}
.yc7{bottom:238.266667pt;}
.y1f7{bottom:240.506667pt;}
.y15e{bottom:247.066667pt;}
.y14{bottom:250.186667pt;}
.y1c8{bottom:251.706667pt;}
.y1ac{bottom:252.186667pt;}
.ye1{bottom:254.000000pt;}
.ybb{bottom:254.186667pt;}
.yb3{bottom:254.506667pt;}
.y1d7{bottom:254.986667pt;}
.y76{bottom:255.546667pt;}
.y87{bottom:255.946667pt;}
.yc6{bottom:258.266667pt;}
.y172{bottom:260.186667pt;}
.ye2{bottom:262.266667pt;}
.y40{bottom:263.066667pt;}
.y1f6{bottom:268.506667pt;}
.y15d{bottom:271.066667pt;}
.y1ab{bottom:272.186667pt;}
.ydf{bottom:274.746667pt;}
.y75{bottom:275.546667pt;}
.y1c7{bottom:275.706667pt;}
.y86{bottom:275.946667pt;}
.yb2{bottom:278.506667pt;}
.yc5{bottom:282.266667pt;}
.y13{bottom:284.986667pt;}
.y171{bottom:286.186667pt;}
.y15c{bottom:291.066667pt;}
.y1aa{bottom:292.186667pt;}
.y3f{bottom:295.546667pt;}
.y1f5{bottom:296.506667pt;}
.y1c6{bottom:299.706667pt;}
.yc4{bottom:302.266667pt;}
.yb1{bottom:302.506667pt;}
.y134{bottom:302.906667pt;}
.y74{bottom:303.546667pt;}
.y85{bottom:305.946667pt;}
.y198{bottom:311.306667pt;}
.y170{bottom:312.186667pt;}
.y15b{bottom:315.066667pt;}
.y39{bottom:316.186667pt;}
.y12{bottom:319.146667pt;}
.yc3{bottom:322.266667pt;}
.y73{bottom:323.546667pt;}
.y1c5{bottom:323.706667pt;}
.y1f4{bottom:324.506667pt;}
.y133{bottom:326.186667pt;}
.y197{bottom:331.306667pt;}
.y1a9{bottom:332.186667pt;}
.y15a{bottom:335.066667pt;}
.y16f{bottom:338.186667pt;}
.yb0{bottom:339.066667pt;}
.yc2{bottom:342.266667pt;}
.y72{bottom:343.546667pt;}
.y1c4{bottom:347.706667pt;}
.y11{bottom:347.786667pt;}
.y84{bottom:350.506667pt;}
.y196{bottom:351.306667pt;}
.y1a8{bottom:352.186667pt;}
.y169{bottom:352.266667pt;}
.y1f3{bottom:352.506667pt;}
.y159{bottom:355.066667pt;}
.y132{bottom:358.746667pt;}
.yae{bottom:358.906667pt;}
.y82{bottom:362.986667pt;}
.y71{bottom:363.546667pt;}
.y16e{bottom:364.186667pt;}
.y195{bottom:371.306667pt;}
.y1c3{bottom:371.706667pt;}
.yc1{bottom:372.266667pt;}
.yac{bottom:378.746667pt;}
.y1a7{bottom:380.186667pt;}
.y1f2{bottom:380.506667pt;}
.y158{bottom:385.066667pt;}
.y10{bottom:386.506667pt;}
.y194{bottom:391.306667pt;}
.y70{bottom:391.546667pt;}
.y1c2{bottom:395.706667pt;}
.ya8{bottom:398.666667pt;}
.y131{bottom:398.746667pt;}
.y1a6{bottom:400.186667pt;}
.y36{bottom:401.546667pt;}
.y168{bottom:404.426667pt;}
.y1f1{bottom:408.506667pt;}
.y193{bottom:411.306667pt;}
.y6f{bottom:411.546667pt;}
.y1c1{bottom:412.346667pt;}
.y16d{bottom:415.626667pt;}
.yc0{bottom:416.826667pt;}
.y167{bottom:416.906667pt;}
.y130{bottom:418.746667pt;}
.y1a5{bottom:420.186667pt;}
.y1f0{bottom:429.066667pt;}
.ybe{bottom:429.306667pt;}
.y157{bottom:429.626667pt;}
.y192{bottom:431.306667pt;}
.y6e{bottom:431.546667pt;}
.y1c0{bottom:432.266667pt;}
.yf{bottom:433.786667pt;}
.y1d5{bottom:434.746667pt;}
.y106{bottom:435.066667pt;}
.ya5{bottom:437.706667pt;}
.y12f{bottom:438.746667pt;}
.y1a4{bottom:440.186667pt;}
.y32{bottom:440.826667pt;}
.y156{bottom:442.106667pt;}
.y16c{bottom:448.186667pt;}
.y1ef{bottom:449.706667pt;}
.y191{bottom:451.306667pt;}
.y6d{bottom:451.546667pt;}
.y1bf{bottom:452.106667pt;}
.y1d4{bottom:454.746667pt;}
.y1a3{bottom:460.186667pt;}
.y105{bottom:467.066667pt;}
.y16b{bottom:468.186667pt;}
.ye{bottom:469.706667pt;}
.y6c{bottom:471.546667pt;}
.y1bd{bottom:471.946667pt;}
.y12e{bottom:472.106667pt;}
.ya4{bottom:474.906667pt;}
.y14f{bottom:481.146667pt;}
.y190{bottom:481.306667pt;}
.y1d3{bottom:482.746667pt;}
.y104{bottom:483.706667pt;}
.y1a2{bottom:488.186667pt;}
.ya3{bottom:490.266667pt;}
.y31{bottom:492.746667pt;}
.y1ed{bottom:495.706667pt;}
.y12d{bottom:496.106667pt;}
.y56{bottom:496.266667pt;}
.y14e{bottom:497.866667pt;}
.y16a{bottom:498.186667pt;}
.y6b{bottom:499.546667pt;}
.y1d2{bottom:502.746667pt;}
.y11c{bottom:507.306667pt;}
.y1a1{bottom:508.186667pt;}
.y103{bottom:509.706667pt;}
.y1bc{bottom:511.066667pt;}
.yd{bottom:515.706667pt;}
.y12c{bottom:516.106667pt;}
.y14d{bottom:517.706667pt;}
.y6a{bottom:519.546667pt;}
.y55{bottom:519.706667pt;}
.ya2{bottom:522.746667pt;}
.y30{bottom:524.106667pt;}
.y1d1{bottom:526.746667pt;}
.y18f{bottom:527.066667pt;}
.y11b{bottom:527.306667pt;}
.y1a0{bottom:528.186667pt;}
.y102{bottom:535.706667pt;}
.y12b{bottom:536.106667pt;}
.y14c{bottom:537.546667pt;}
.y54{bottom:537.866667pt;}
.y69{bottom:539.546667pt;}
.y1ea{bottom:541.706667pt;}
.ya1{bottom:542.746667pt;}
.y1d0{bottom:546.746667pt;}
.y18e{bottom:547.066667pt;}
.y11a{bottom:547.306667pt;}
.y19f{bottom:548.186667pt;}
.y2f{bottom:550.186667pt;}
.yde{bottom:550.746667pt;}
.y53{bottom:556.026667pt;}
.y12a{bottom:556.106667pt;}
.y14b{bottom:557.466667pt;}
.y68{bottom:559.546667pt;}
.yfd{bottom:561.706667pt;}
.ya0{bottom:562.746667pt;}
.y1bb{bottom:563.546667pt;}
.y2e{bottom:567.066667pt;}
.y119{bottom:567.306667pt;}
.y19e{bottom:568.186667pt;}
.yc{bottom:569.946667pt;}
.ydd{bottom:570.746667pt;}
.y14a{bottom:577.333333pt;}
.y67{bottom:579.573333pt;}
.y129{bottom:580.133333pt;}
.yff{bottom:582.373333pt;}
.y9f{bottom:582.773333pt;}
.y52{bottom:584.853333pt;}
.y18d{bottom:587.093333pt;}
.y118{bottom:587.333333pt;}
.y1e6{bottom:587.733333pt;}
.y19d{bottom:588.213333pt;}
.y1cf{bottom:590.773333pt;}
.y2d{bottom:593.413333pt;}
.y1ba{bottom:596.133333pt;}
.y146{bottom:597.173333pt;}
.y66{bottom:599.573333pt;}
.y128{bottom:600.133333pt;}
.yb{bottom:601.733333pt;}
.y51{bottom:603.093333pt;}
.ydc{bottom:604.133333pt;}
.y18c{bottom:607.093333pt;}
.y117{bottom:607.333333pt;}
.y19c{bottom:608.213333pt;}
.y1e7{bottom:608.373333pt;}
.y1ce{bottom:610.773333pt;}
.y81{bottom:611.893333pt;}
.yfc{bottom:613.813333pt;}
.y9e{bottom:616.133333pt;}
.y2c{bottom:616.853333pt;}
.y65{bottom:619.573333pt;}
.ya{bottom:620.133333pt;}
.y50{bottom:621.253333pt;}
.ydb{bottom:624.133333pt;}
.y18b{bottom:627.093333pt;}
.y116{bottom:627.333333pt;}
.y1de{bottom:630.133333pt;}
.y80{bottom:631.893333pt;}
.ye7{bottom:635.493333pt;}
.y1b9{bottom:636.133333pt;}
.y182{bottom:636.853333pt;}
.y19b{bottom:638.213333pt;}
.y9{bottom:638.533333pt;}
.y4f{bottom:639.493333pt;}
.y64{bottom:639.573333pt;}
.y1e5{bottom:639.813333pt;}
.y9d{bottom:640.133333pt;}
.y1cd{bottom:640.773333pt;}
.y208{bottom:642.613333pt;}
.y2b{bottom:643.813333pt;}
.y145{bottom:643.893333pt;}
.y127{bottom:644.133333pt;}
.yfb{bottom:646.373333pt;}
.y18a{bottom:647.093333pt;}
.y115{bottom:647.333333pt;}
.yda{bottom:648.133333pt;}
.y1dd{bottom:650.133333pt;}
.y7f{bottom:651.893333pt;}
.ye6{bottom:655.493333pt;}
.y4e{bottom:657.733333pt;}
.y63{bottom:659.573333pt;}
.y1b8{bottom:660.133333pt;}
.y207{bottom:661.013333pt;}
.y2a{bottom:663.813333pt;}
.y9c{bottom:664.133333pt;}
.yfa{bottom:666.373333pt;}
.y114{bottom:667.333333pt;}
.yd9{bottom:668.133333pt;}
.y181{bottom:668.773333pt;}
.y144{bottom:670.293333pt;}
.y7e{bottom:671.893333pt;}
.y1e4{bottom:672.373333pt;}
.y189{bottom:675.093333pt;}
.y62{bottom:679.573333pt;}
.y19a{bottom:682.773333pt;}
.y29{bottom:683.813333pt;}
.y126{bottom:684.133333pt;}
.y1dc{bottom:685.013333pt;}
.y1cc{bottom:685.413333pt;}
.y180{bottom:685.493333pt;}
.y4d{bottom:686.533333pt;}
.y206{bottom:687.413333pt;}
.ye5{bottom:687.653333pt;}
.y9b{bottom:688.133333pt;}
.y7d{bottom:691.893333pt;}
.y1e3{bottom:692.373333pt;}
.ybd{bottom:694.053333pt;}
.yf9{bottom:694.373333pt;}
.y188{bottom:695.093333pt;}
.y199{bottom:695.253333pt;}
.y113{bottom:697.333333pt;}
.y1db{bottom:697.493333pt;}
.y1cb{bottom:697.893333pt;}
.y61{bottom:699.573333pt;}
.ye3{bottom:700.133333pt;}
.y166{bottom:701.413333pt;}
.y28{bottom:703.813333pt;}
.y143{bottom:704.693333pt;}
.y4c{bottom:704.773333pt;}
.y155{bottom:705.013333pt;}
.yba{bottom:706.533333pt;}
.y9a{bottom:708.133333pt;}
.yf8{bottom:711.093333pt;}
.y7c{bottom:711.893333pt;}
.yd8{bottom:712.133333pt;}
.y165{bottom:713.893333pt;}
.y187{bottom:715.093333pt;}
.y154{bottom:717.493333pt;}
.y60{bottom:719.573333pt;}
.y1e2{bottom:720.373333pt;}
.y141{bottom:721.333333pt;}
.y205{bottom:721.813333pt;}
.y4b{bottom:722.933333pt;}
.y27{bottom:723.813333pt;}
.y99{bottom:728.133333pt;}
.y17e{bottom:731.493333pt;}
.y7b{bottom:731.893333pt;}
.yd7{bottom:732.133333pt;}
.y186{bottom:735.093333pt;}
.yf7{bottom:737.093333pt;}
.y5f{bottom:739.573333pt;}
.y4a{bottom:741.173333pt;}
.y112{bottom:743.093333pt;}
.y98{bottom:748.133333pt;}
.y26{bottom:751.813333pt;}
.y1b7{bottom:752.133333pt;}
.y185{bottom:755.093333pt;}
.y204{bottom:755.893333pt;}
.yd6{bottom:756.133333pt;}
.y49{bottom:759.333333pt;}
.y5e{bottom:759.573333pt;}
.y140{bottom:761.093333pt;}
.y7a{bottom:761.813333pt;}
.yf6{bottom:763.093333pt;}
.y8{bottom:770.453333pt;}
.y25{bottom:771.813333pt;}
.y97{bottom:772.133333pt;}
.y203{bottom:772.773333pt;}
.y184{bottom:775.093333pt;}
.yd5{bottom:776.133333pt;}
.y17a{bottom:777.493333pt;}
.y48{bottom:777.573333pt;}
.y13f{bottom:780.933333pt;}
.y111{bottom:783.093333pt;}
.y5d{bottom:787.573333pt;}
.yf4{bottom:789.093333pt;}
.y202{bottom:789.573333pt;}
.y24{bottom:791.813333pt;}
.y125{bottom:792.133333pt;}
.y183{bottom:795.093333pt;}
.y96{bottom:796.133333pt;}
.y13e{bottom:800.773333pt;}
.y110{bottom:803.093333pt;}
.y47{bottom:806.453333pt;}
.y7{bottom:807.173333pt;}
.y5c{bottom:807.573333pt;}
.y23{bottom:811.813333pt;}
.y124{bottom:812.133333pt;}
.yf0{bottom:815.093333pt;}
.y95{bottom:816.133333pt;}
.y1b6{bottom:820.133333pt;}
.y139{bottom:820.693333pt;}
.y10f{bottom:823.093333pt;}
.y201{bottom:823.333333pt;}
.yd4{bottom:824.133333pt;}
.y46{bottom:824.613333pt;}
.y5b{bottom:827.573333pt;}
.y22{bottom:831.813333pt;}
.y94{bottom:836.133333pt;}
.y200{bottom:840.213333pt;}
.y6{bottom:840.933333pt;}
.y45{bottom:842.853333pt;}
.y10e{bottom:843.093333pt;}
.y177{bottom:843.493333pt;}
.yd3{bottom:844.133333pt;}
.y5a{bottom:847.573333pt;}
.y1b5{bottom:848.133333pt;}
.y123{bottom:856.133333pt;}
.y93{bottom:860.133333pt;}
.y21{bottom:860.373333pt;}
.y44{bottom:861.013333pt;}
.y10d{bottom:863.093333pt;}
.yd2{bottom:864.133333pt;}
.yef{bottom:866.533333pt;}
.y138{bottom:867.333333pt;}
.y59{bottom:867.573333pt;}
.y1b4{bottom:868.133333pt;}
.y1ff{bottom:873.013333pt;}
.y5{bottom:874.613333pt;}
.y43{bottom:879.253333pt;}
.y92{bottom:880.133333pt;}
.y10c{bottom:883.093333pt;}
.y58{bottom:887.573333pt;}
.yd1{bottom:888.133333pt;}
.y1fe{bottom:889.893333pt;}
.y20{bottom:891.733333pt;}
.y137{bottom:893.733333pt;}
.y176{bottom:895.573333pt;}
.yee{bottom:899.093333pt;}
.y91{bottom:900.133333pt;}
.y1fd{bottom:906.773333pt;}
.y57{bottom:907.573333pt;}
.y42{bottom:908.053333pt;}
.yd0{bottom:908.133333pt;}
.y1f{bottom:917.813333pt;}
.y4{bottom:918.613333pt;}
.yed{bottom:919.093333pt;}
.y10b{bottom:919.573333pt;}
.y90{bottom:920.133333pt;}
.y1fc{bottom:921.093333pt;}
.y41{bottom:922.293333pt;}
.ycf{bottom:928.133333pt;}
.y136{bottom:936.293333pt;}
.y1e{bottom:944.133333pt;}
.y8f{bottom:948.160000pt;}
.y1e1{bottom:949.040000pt;}
.yec{bottom:949.120000pt;}
.y135{bottom:951.600000pt;}
.y1b{bottom:1047.680000pt;}
.y1{bottom:1060.560000pt;}
.y1a{bottom:1063.040000pt;}
.h15{height:5.179688pt;}
.h21{height:9.466875pt;}
.h1f{height:19.200000pt;}
.h31{height:19.226667pt;}
.h2a{height:20.000000pt;}
.h2b{height:20.026667pt;}
.h28{height:25.280000pt;}
.h2c{height:25.360000pt;}
.h30{height:25.680000pt;}
.h1c{height:25.760000pt;}
.h2d{height:30.982500pt;}
.hc{height:37.105312pt;}
.h22{height:38.154375pt;}
.h1d{height:38.400000pt;}
.h12{height:38.640000pt;}
.h10{height:38.720000pt;}
.h27{height:40.000000pt;}
.h11{height:40.184375pt;}
.h36{height:40.640000pt;}
.h18{height:40.660312pt;}
.h29{height:40.666667pt;}
.h3{height:43.031250pt;}
.hd{height:44.034375pt;}
.h2{height:44.437500pt;}
.h38{height:45.280000pt;}
.h3e{height:45.360000pt;}
.h3d{height:45.386667pt;}
.h2f{height:46.000000pt;}
.h1b{height:47.777656pt;}
.h13{height:47.908125pt;}
.h19{height:48.125000pt;}
.h1e{height:49.542500pt;}
.h26{height:52.355156pt;}
.he{height:52.498125pt;}
.h7{height:57.375000pt;}
.h17{height:63.656250pt;}
.hf{height:64.246875pt;}
.h37{height:65.280000pt;}
.h16{height:65.531250pt;}
.ha{height:66.841875pt;}
.hb{height:71.718750pt;}
.h9{height:80.128125pt;}
.h14{height:84.640000pt;}
.h6{height:86.062500pt;}
.h5{height:105.283125pt;}
.h4{height:120.312500pt;}
.h8{height:143.437500pt;}
.h34{height:202.240000pt;}
.h1a{height:236.906667pt;}
.h32{height:246.640000pt;}
.h33{height:246.666667pt;}
.h23{height:248.586667pt;}
.h2e{height:251.280000pt;}
.h20{height:257.626667pt;}
.h3b{height:258.426667pt;}
.h24{height:264.000000pt;}
.h25{height:264.026667pt;}
.h3a{height:266.266667pt;}
.h3c{height:266.666667pt;}
.h35{height:268.266667pt;}
.h39{height:268.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3e{width:53.360000pt;}
.w3d{width:53.386667pt;}
.w2b{width:60.426667pt;}
.wf{width:60.480000pt;}
.w2d{width:60.506667pt;}
.w12{width:60.800000pt;}
.w2f{width:60.826667pt;}
.w2e{width:61.306667pt;}
.w30{width:61.626667pt;}
.w22{width:65.360000pt;}
.w2c{width:70.000000pt;}
.w2a{width:70.080000pt;}
.w20{width:71.360000pt;}
.w21{width:77.360000pt;}
.w1f{width:77.386667pt;}
.w5{width:80.480000pt;}
.w45{width:83.360000pt;}
.w3b{width:83.386667pt;}
.w37{width:84.426667pt;}
.w3c{width:89.360000pt;}
.w1c{width:90.426667pt;}
.w4{width:94.106667pt;}
.wc{width:95.306667pt;}
.w46{width:95.360000pt;}
.w9{width:95.626667pt;}
.w10{width:100.160000pt;}
.wd{width:101.280000pt;}
.w11{width:101.306667pt;}
.we{width:107.306667pt;}
.w3a{width:107.360000pt;}
.w39{width:107.386667pt;}
.w1b{width:112.240000pt;}
.w36{width:112.320000pt;}
.w29{width:131.706667pt;}
.w25{width:132.026667pt;}
.w44{width:142.986667pt;}
.w1e{width:143.360000pt;}
.w38{width:149.066667pt;}
.w43{width:158.426667pt;}
.w3{width:193.840000pt;}
.w6{width:195.226667pt;}
.w27{width:201.946667pt;}
.w28{width:202.746667pt;}
.w42{width:205.200000pt;}
.w34{width:206.426667pt;}
.w41{width:218.426667pt;}
.w18{width:234.453333pt;}
.w35{width:238.986667pt;}
.w1a{width:239.066667pt;}
.wb{width:262.746667pt;}
.w1d{width:263.093333pt;}
.wa{width:271.066667pt;}
.w8{width:331.226667pt;}
.w7{width:331.253333pt;}
.w33{width:350.426667pt;}
.w3f{width:350.453333pt;}
.w16{width:352.453333pt;}
.w15{width:352.773333pt;}
.w14{width:352.853333pt;}
.w24{width:353.013333pt;}
.w13{width:353.253333pt;}
.w32{width:354.533333pt;}
.w31{width:355.093333pt;}
.w19{width:362.586667pt;}
.w17{width:372.053333pt;}
.w26{width:608.000000pt;}
.w40{width:703.280000pt;}
.w23{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x71{left:8.880000pt;}
.x27{left:9.920000pt;}
.x69{left:11.066667pt;}
.x32{left:13.200000pt;}
.x5c{left:14.640000pt;}
.x6c{left:15.840000pt;}
.x31{left:16.880000pt;}
.x12{left:17.786667pt;}
.x2b{left:19.840000pt;}
.x4a{left:20.880000pt;}
.x41{left:22.506667pt;}
.x42{left:24.640000pt;}
.x11{left:25.866667pt;}
.x5d{left:27.280000pt;}
.x2c{left:28.400000pt;}
.x33{left:30.240000pt;}
.x2f{left:31.440000pt;}
.xf{left:33.200000pt;}
.x5e{left:35.040000pt;}
.x29{left:36.240000pt;}
.x30{left:37.706667pt;}
.x74{left:38.640000pt;}
.x6a{left:42.240000pt;}
.x5b{left:44.320000pt;}
.x82{left:45.440000pt;}
.x23{left:46.960000pt;}
.xd{left:56.559988pt;}
.x15{left:60.906667pt;}
.x52{left:67.200000pt;}
.x1a{left:70.960000pt;}
.x44{left:79.360000pt;}
.x55{left:85.440000pt;}
.x3f{left:87.280000pt;}
.x26{left:97.920000pt;}
.x45{left:99.306667pt;}
.x64{left:103.226667pt;}
.x78{left:105.866667pt;}
.x24{left:111.440000pt;}
.x1{left:113.306655pt;}
.x8{left:117.706655pt;}
.x7{left:118.906655pt;}
.x6{left:121.466655pt;}
.x1d{left:125.306655pt;}
.x17{left:131.306655pt;}
.x18{left:137.306655pt;}
.x9{left:138.506655pt;}
.xb{left:140.586655pt;}
.x1e{left:143.306655pt;}
.x5{left:145.786655pt;}
.x1f{left:149.306655pt;}
.x65{left:158.426655pt;}
.x50{left:161.946667pt;}
.x3b{left:163.706655pt;}
.x21{left:165.546655pt;}
.x37{left:167.306655pt;}
.x7b{left:172.026667pt;}
.x20{left:173.306655pt;}
.x3e{left:175.386667pt;}
.x39{left:177.386655pt;}
.x66{left:178.426667pt;}
.x3{left:180.666655pt;}
.x19{left:184.506655pt;}
.x61{left:185.546655pt;}
.x36{left:188.186655pt;}
.x35{left:190.746655pt;}
.x3c{left:194.346655pt;}
.x60{left:198.506655pt;}
.x2{left:200.426655pt;}
.x1c{left:201.546655pt;}
.x4e{left:211.146655pt;}
.x22{left:212.186655pt;}
.x75{left:225.226655pt;}
.x70{left:229.066667pt;}
.x56{left:232.666667pt;}
.x80{left:238.026667pt;}
.x28{left:245.306667pt;}
.xc{left:248.986655pt;}
.x3d{left:263.386655pt;}
.x5f{left:270.586667pt;}
.x43{left:275.946655pt;}
.x51{left:279.866667pt;}
.x62{left:293.706667pt;}
.xa{left:299.786655pt;}
.x57{left:303.466667pt;}
.x4c{left:305.306655pt;}
.x6b{left:307.066667pt;}
.x10{left:308.506667pt;}
.x7c{left:316.026667pt;}
.x79{left:324.293333pt;}
.x3a{left:332.853333pt;}
.x46{left:343.093333pt;}
.x76{left:351.653333pt;}
.x2a{left:353.333333pt;}
.x72{left:361.093333pt;}
.x53{left:364.613333pt;}
.x81{left:370.053333pt;}
.x4{left:396.933322pt;}
.x34{left:400.213333pt;}
.x4f{left:401.253322pt;}
.x1b{left:402.213333pt;}
.x13{left:403.253333pt;}
.x25{left:415.093333pt;}
.x67{left:418.053333pt;}
.x38{left:419.013333pt;}
.x4b{left:421.093333pt;}
.x4d{left:423.973333pt;}
.x58{left:435.333333pt;}
.x73{left:469.093333pt;}
.x14{left:484.373333pt;}
.x47{left:487.093333pt;}
.x63{left:500.133333pt;}
.x59{left:506.053333pt;}
.x7d{left:508.053333pt;}
.x2d{left:515.333333pt;}
.x6d{left:523.093333pt;}
.x40{left:528.053333pt;}
.x7a{left:529.493333pt;}
.x68{left:531.013333pt;}
.x48{left:565.120000pt;}
.x54{left:567.200000pt;}
.x7e{left:586.080000pt;}
.x6e{left:607.120000pt;}
.x2e{left:617.360000pt;}
.x77{left:635.680000pt;}
.x49{left:637.120000pt;}
.xe{left:680.559988pt;}
.x7f{left:682.080000pt;}
.x6f{left:697.120000pt;}
.x5a{left:708.640000pt;}
}




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