
    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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_b76569882a5f1632103dc3b0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0d0bc21930c5489312e7f8ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3e907bb4b41101748cc4dfb7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9315254655070c2939af9abc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119629;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_4951487041ccebe1ee6d24f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_bf1011b50adaf8355e629f7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_17700515535f1fd56d05c473.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5ccf3fe450b58bc3fd329933.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.584000px;}
.ls9{letter-spacing:-1.296000px;}
.ls17{letter-spacing:-1.152000px;}
.ls7{letter-spacing:-0.864000px;}
.lsc{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.405600px;}
.ls14{letter-spacing:-0.223800px;}
.lsb{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.241200px;}
.ls1e{letter-spacing:0.269400px;}
.ls5{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.612000px;}
.ls1c{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.584000px;}
.lsf{letter-spacing:3.744000px;}
.ls11{letter-spacing:13.104000px;}
.ls1a{letter-spacing:15.984000px;}
.ls1d{letter-spacing:21.024000px;}
.lse{letter-spacing:23.040000px;}
.ls19{letter-spacing:39.024000px;}
.ls10{letter-spacing:54.864000px;}
.ls4{letter-spacing:87.960000px;}
.ls16{letter-spacing:101.664000px;}
.ls18{letter-spacing:108.120000px;}
.ls1{letter-spacing:192.360000px;}
.ls13{letter-spacing:265.104000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws10{word-spacing:-20.736000px;}
.ws4{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.160000px;}
.wse{word-spacing:-20.056032px;}
.ws1{word-spacing:-20.016000px;}
.ws5{word-spacing:-19.872000px;}
.ws6{word-spacing:-19.800000px;}
.ws8{word-spacing:-19.584000px;}
.ws0{word-spacing:-19.440000px;}
.wsd{word-spacing:-19.296000px;}
.wsa{word-spacing:-18.432000px;}
.ws12{word-spacing:-13.770720px;}
.ws11{word-spacing:-13.410720px;}
.wsc{word-spacing:-13.229520px;}
.wsb{word-spacing:-13.186920px;}
.ws3{word-spacing:0.000000px;}
.wsf{word-spacing:39.876000px;}
._1{margin-left:-2.202480px;}
._2{margin-left:-1.152000px;}
._0{width:1.436400px;}
._4{width:2.475600px;}
._5{width:3.960000px;}
._6{width:5.052000px;}
._e{width:6.094080px;}
._d{width:7.416000px;}
._2e{width:8.424000px;}
._9{width:9.432000px;}
._b{width:10.512000px;}
._c{width:12.252000px;}
._21{width:13.608000px;}
._12{width:14.616000px;}
._13{width:15.624000px;}
._8{width:16.992000px;}
._7{width:18.792000px;}
._30{width:20.318400px;}
._a{width:21.816000px;}
._11{width:23.187600px;}
._14{width:24.332400px;}
._18{width:25.416000px;}
._15{width:26.577600px;}
._1a{width:28.126080px;}
._19{width:29.232000px;}
._17{width:30.312000px;}
._16{width:31.728000px;}
._20{width:32.736000px;}
._10{width:33.784560px;}
._f{width:34.920000px;}
._2b{width:36.936000px;}
._2c{width:38.659200px;}
._24{width:39.888000px;}
._2d{width:41.796000px;}
._26{width:42.804000px;}
._25{width:43.848000px;}
._1f{width:45.648000px;}
._1e{width:47.254080px;}
._1d{width:48.456000px;}
._1b{width:49.896000px;}
._1c{width:51.318480px;}
._22{width:52.450800px;}
._32{width:53.514480px;}
._23{width:54.864000px;}
._36{width:57.432000px;}
._28{width:58.464000px;}
._27{width:59.688000px;}
._2a{width:60.768000px;}
._39{width:61.776000px;}
._2f{width:64.224000px;}
._38{width:66.024000px;}
._37{width:67.104000px;}
._33{width:98.784000px;}
._3a{width:113.304000px;}
._34{width:164.448000px;}
._35{width:165.586080px;}
._3{width:192.360000px;}
._29{width:899.076000px;}
._31{width:935.046480px;}
._3b{width:1861.644000px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:72.144000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y104{bottom:2.520000px;}
.y139{bottom:2.880000px;}
.y1f5{bottom:3.600000px;}
.y91{bottom:3.780000px;}
.y184{bottom:4.860000px;}
.y17d{bottom:5.040000px;}
.y51{bottom:5.220000px;}
.y10c{bottom:5.580000px;}
.y45{bottom:6.120000px;}
.y56{bottom:6.480000px;}
.y235{bottom:7.020000px;}
.y68{bottom:7.200000px;}
.yf9{bottom:7.920000px;}
.y1b6{bottom:9.360000px;}
.y122{bottom:9.540000px;}
.y95{bottom:9.900000px;}
.y6c{bottom:10.620000px;}
.y1b4{bottom:12.420000px;}
.y219{bottom:12.465000px;}
.y4b{bottom:12.780000px;}
.y225{bottom:12.960000px;}
.y234{bottom:13.860000px;}
.y19d{bottom:15.195000px;}
.y211{bottom:16.194000px;}
.y126{bottom:16.200000px;}
.y1ee{bottom:16.245000px;}
.y103{bottom:16.380000px;}
.y23a{bottom:16.410000px;}
.y138{bottom:16.740000px;}
.y54{bottom:16.920000px;}
.y5a{bottom:16.950000px;}
.y1f4{bottom:17.460000px;}
.y1b2{bottom:19.260000px;}
.y218{bottom:19.305000px;}
.y10a{bottom:19.440000px;}
.y227{bottom:19.980000px;}
.y93{bottom:20.160000px;}
.y6a{bottom:20.880000px;}
.y106{bottom:23.220000px;}
.y1e7{bottom:23.250000px;}
.y1ec{bottom:23.265000px;}
.y137{bottom:23.580000px;}
.y9c{bottom:24.480000px;}
.y1b3{bottom:26.145000px;}
.y1cb{bottom:26.280000px;}
.y224{bottom:26.820000px;}
.y55{bottom:27.180000px;}
.y5b{bottom:27.210000px;}
.y62{bottom:27.225000px;}
.y212{bottom:30.054000px;}
.y11c{bottom:30.060000px;}
.y1c0{bottom:30.090000px;}
.y115{bottom:30.105000px;}
.y102{bottom:30.240000px;}
.y12e{bottom:30.270000px;}
.y22a{bottom:30.285000px;}
.y94{bottom:30.600000px;}
.y6b{bottom:31.314000px;}
.y109{bottom:33.120000px;}
.y226{bottom:33.660000px;}
.y9e{bottom:34.740000px;}
.y98{bottom:34.920000px;}
.y1c6{bottom:36.900000px;}
.y1eb{bottom:36.945000px;}
.y11e{bottom:37.080000px;}
.y1db{bottom:37.110000px;}
.y1fd{bottom:43.740000px;}
.y107{bottom:43.920000px;}
.y12f{bottom:43.950000px;}
.y114{bottom:43.965000px;}
.y19c{bottom:44.130000px;}
.y9b{bottom:45.180000px;}
.y10b{bottom:46.980000px;}
.y1e0{bottom:50.760000px;}
.y1da{bottom:50.790000px;}
.y10e{bottom:50.805000px;}
.y121{bottom:50.940000px;}
.y220{bottom:50.985000px;}
.y17b{bottom:55.440000px;}
.y97{bottom:55.620000px;}
.y3{bottom:56.880000px;}
.y1ab{bottom:56.916000px;}
.y1c5{bottom:57.600000px;}
.y1bf{bottom:57.630000px;}
.y1ed{bottom:57.645000px;}
.y118{bottom:57.780000px;}
.y1dd{bottom:57.810000px;}
.y113{bottom:57.825000px;}
.y1fa{bottom:64.440000px;}
.y1e9{bottom:64.620000px;}
.y1f7{bottom:64.650000px;}
.y10d{bottom:64.665000px;}
.y9a{bottom:65.880000px;}
.y117{bottom:71.460000px;}
.y1b9{bottom:71.490000px;}
.y112{bottom:71.505000px;}
.y11f{bottom:71.640000px;}
.y239{bottom:71.670000px;}
.y136{bottom:71.685000px;}
.y19b{bottom:73.050000px;}
.y2{bottom:77.616000px;}
.y23c{bottom:78.300000px;}
.y1c1{bottom:78.330000px;}
.y1fc{bottom:85.140000px;}
.y1b8{bottom:85.170000px;}
.y11b{bottom:85.320000px;}
.y1dc{bottom:85.350000px;}
.y111{bottom:85.365000px;}
.y99{bottom:86.580000px;}
.y209{bottom:92.205000px;}
.y1fb{bottom:99.000000px;}
.y1be{bottom:99.030000px;}
.y11a{bottom:99.180000px;}
.y1f8{bottom:99.210000px;}
.y110{bottom:99.225000px;}
.y19a{bottom:101.955000px;}
.y100{bottom:105.705000px;}
.y208{bottom:106.065000px;}
.y18b{bottom:110.916000px;}
.y1a3{bottom:111.096000px;}
.y13f{bottom:111.276000px;}
.y119{bottom:112.860000px;}
.y1bd{bottom:112.890000px;}
.y10f{bottom:112.905000px;}
.y7e{bottom:117.036000px;}
.yb0{bottom:117.756000px;}
.y69{bottom:119.196000px;}
.yff{bottom:119.385000px;}
.y179{bottom:122.976000px;}
.y23d{bottom:126.540000px;}
.y1bc{bottom:126.570000px;}
.y20f{bottom:126.765000px;}
.y18d{bottom:127.836000px;}
.yda{bottom:129.276000px;}
.y8f{bottom:130.536000px;}
.y18a{bottom:131.616000px;}
.y155{bottom:131.796000px;}
.y13e{bottom:131.976000px;}
.yfe{bottom:133.245000px;}
.y221{bottom:134.316000px;}
.y199{bottom:135.690000px;}
.y201{bottom:135.756000px;}
.y1e4{bottom:137.196000px;}
.y7d{bottom:137.736000px;}
.y25{bottom:137.916000px;}
.yaf{bottom:138.456000px;}
.y1bb{bottom:140.430000px;}
.y20e{bottom:140.445000px;}
.y210{bottom:141.876000px;}
.y178{bottom:143.676000px;}
.y1f2{bottom:144.036000px;}
.y18c{bottom:145.116000px;}
.yfd{bottom:147.105000px;}
.yf7{bottom:147.636000px;}
.y23f{bottom:148.536000px;}
.yd9{bottom:149.976000px;}
.y22d{bottom:150.690000px;}
.yb9{bottom:151.050000px;}
.y8e{bottom:151.230000px;}
.y189{bottom:152.310000px;}
.y154{bottom:152.490000px;}
.y13d{bottom:152.670000px;}
.y1ba{bottom:154.290000px;}
.y20d{bottom:154.305000px;}
.y1c7{bottom:155.730000px;}
.y200{bottom:156.450000px;}
.y18f{bottom:157.140000px;}
.y1e3{bottom:157.890000px;}
.y7c{bottom:158.430000px;}
.y1d5{bottom:158.610000px;}
.yae{bottom:159.150000px;}
.y24{bottom:159.870000px;}
.y18e{bottom:160.560000px;}
.yfc{bottom:160.785000px;}
.y177{bottom:164.370000px;}
.y1f1{bottom:164.730000px;}
.y23e{bottom:166.890000px;}
.y20c{bottom:168.165000px;}
.yf6{bottom:168.330000px;}
.yd8{bottom:170.670000px;}
.y22c{bottom:171.390000px;}
.yb8{bottom:171.750000px;}
.y8d{bottom:171.930000px;}
.y153{bottom:173.010000px;}
.y13c{bottom:173.370000px;}
.y67{bottom:174.090000px;}
.yfb{bottom:174.645000px;}
.y1ff{bottom:177.150000px;}
.y1e2{bottom:178.590000px;}
.y7b{bottom:179.130000px;}
.y1d4{bottom:179.310000px;}
.yad{bottom:179.670000px;}
.y20b{bottom:181.845000px;}
.y190{bottom:182.445000px;}
.y207{bottom:183.990000px;}
.y176{bottom:185.070000px;}
.y1f0{bottom:185.430000px;}
.y116{bottom:187.590000px;}
.yf5{bottom:189.030000px;}
.y22b{bottom:189.750000px;}
.yd7{bottom:191.370000px;}
.y232{bottom:192.450000px;}
.y8c{bottom:192.630000px;}
.y152{bottom:193.710000px;}
.y13b{bottom:194.070000px;}
.y21f{bottom:194.790000px;}
.y23{bottom:195.150000px;}
.y1fe{bottom:195.510000px;}
.y20a{bottom:195.705000px;}
.y1e1{bottom:196.950000px;}
.y7a{bottom:199.830000px;}
.y1d3{bottom:200.010000px;}
.yac{bottom:200.370000px;}
.y66{bottom:205.410000px;}
.y175{bottom:205.770000px;}
.y1ef{bottom:206.130000px;}
.y191{bottom:207.750000px;}
.yf4{bottom:209.730000px;}
.yd6{bottom:212.070000px;}
.y231{bottom:213.150000px;}
.y8b{bottom:213.330000px;}
.y188{bottom:213.870000px;}
.y13a{bottom:214.230000px;}
.y151{bottom:214.410000px;}
.y229{bottom:218.010000px;}
.y12a{bottom:220.185000px;}
.y79{bottom:220.530000px;}
.y1d2{bottom:220.710000px;}
.yab{bottom:221.070000px;}
.y1ea{bottom:224.670000px;}
.y22{bottom:224.850000px;}
.y65{bottom:226.110000px;}
.y174{bottom:226.470000px;}
.y127{bottom:230.430000px;}
.y187{bottom:231.150000px;}
.yf3{bottom:231.510000px;}
.yd5{bottom:232.770000px;}
.y192{bottom:233.025000px;}
.y230{bottom:233.850000px;}
.y129{bottom:233.865000px;}
.y8a{bottom:234.030000px;}
.y150{bottom:235.110000px;}
.y1d1{bottom:239.295000px;}
.y78{bottom:241.230000px;}
.yaa{bottom:241.770000px;}
.y1c4{bottom:243.975000px;}
.y186{bottom:245.910000px;}
.y64{bottom:246.810000px;}
.y173{bottom:247.170000px;}
.y128{bottom:247.725000px;}
.yf2{bottom:252.210000px;}
.y22f{bottom:252.255000px;}
.yd4{bottom:253.470000px;}
.y21{bottom:254.550000px;}
.y89{bottom:254.730000px;}
.y14f{bottom:255.810000px;}
.y193{bottom:258.330000px;}
.y77{bottom:261.930000px;}
.ya9{bottom:262.470000px;}
.y63{bottom:263.730000px;}
.y1f9{bottom:265.395000px;}
.y1df{bottom:266.835000px;}
.y172{bottom:267.870000px;}
.y185{bottom:269.850000px;}
.yd3{bottom:274.170000px;}
.y135{bottom:274.890000px;}
.yb7{bottom:275.430000px;}
.y88{bottom:276.510000px;}
.y23b{bottom:278.895000px;}
.y22e{bottom:280.695000px;}
.y76{bottom:282.630000px;}
.ya8{bottom:283.170000px;}
.y194{bottom:283.605000px;}
.y20{bottom:284.250000px;}
.y183{bottom:293.790000px;}
.y1e8{bottom:294.375000px;}
.yd2{bottom:294.870000px;}
.y1a9{bottom:296.130000px;}
.yb6{bottom:297.210000px;}
.y87{bottom:298.470000px;}
.y75{bottom:303.330000px;}
.ya7{bottom:303.870000px;}
.y21e{bottom:306.075000px;}
.y195{bottom:308.910000px;}
.y1d0{bottom:308.955000px;}
.y171{bottom:309.270000px;}
.y61{bottom:310.530000px;}
.yfa{bottom:312.510000px;}
.y1f{bottom:313.950000px;}
.yd1{bottom:315.570000px;}
.yf1{bottom:316.830000px;}
.y182{bottom:317.550000px;}
.yb5{bottom:317.910000px;}
.y86{bottom:319.170000px;}
.y74{bottom:324.030000px;}
.ya6{bottom:324.570000px;}
.y1c3{bottom:327.495000px;}
.y228{bottom:329.295000px;}
.y170{bottom:329.970000px;}
.y196{bottom:334.185000px;}
.yd0{bottom:336.270000px;}
.y1a8{bottom:337.575000px;}
.yf0{bottom:338.655000px;}
.yb4{bottom:339.915000px;}
.y85{bottom:341.175000px;}
.y181{bottom:341.535000px;}
.y1e{bottom:343.695000px;}
.y73{bottom:344.775000px;}
.ya5{bottom:345.315000px;}
.y1de{bottom:350.355000px;}
.y16f{bottom:350.715000px;}
.ycf{bottom:357.015000px;}
.y60{bottom:357.375000px;}
.y1a7{bottom:358.275000px;}
.yef{bottom:359.355000px;}
.y197{bottom:359.490000px;}
.y134{bottom:360.075000px;}
.yb3{bottom:360.615000px;}
.y84{bottom:361.875000px;}
.y72{bottom:365.475000px;}
.ya4{bottom:366.015000px;}
.y1c2{bottom:369.615000px;}
.y16e{bottom:370.875000px;}
.y1d{bottom:373.395000px;}
.y1f6{bottom:376.455000px;}
.yce{bottom:377.715000px;}
.y16b{bottom:378.975000px;}
.y14e{bottom:380.055000px;}
.yee{bottom:381.315000px;}
.yb2{bottom:382.575000px;}
.y83{bottom:383.835000px;}
.y198{bottom:384.810000px;}
.y71{bottom:386.175000px;}
.ya3{bottom:386.715000px;}
.y16d{bottom:388.155000px;}
.y180{bottom:389.415000px;}
.y133{bottom:389.955000px;}
.y206{bottom:391.755000px;}
.y1d9{bottom:392.475000px;}
.y1b7{bottom:398.055000px;}
.ycd{bottom:399.675000px;}
.y14d{bottom:400.755000px;}
.yed{bottom:402.015000px;}
.y16c{bottom:402.195000px;}
.y1c{bottom:403.095000px;}
.y21d{bottom:403.455000px;}
.y5f{bottom:404.175000px;}
.y82{bottom:404.535000px;}
.y1e6{bottom:405.615000px;}
.y1cf{bottom:406.335000px;}
.y70{bottom:406.875000px;}
.ya2{bottom:407.415000px;}
.y17f{bottom:413.355000px;}
.y238{bottom:417.495000px;}
.ycc{bottom:420.375000px;}
.y14c{bottom:421.455000px;}
.yec{bottom:423.975000px;}
.y81{bottom:425.235000px;}
.yb1{bottom:426.315000px;}
.y223{bottom:426.705000px;}
.y6f{bottom:427.575000px;}
.ya1{bottom:428.115000px;}
.y1b{bottom:432.795000px;}
.y132{bottom:433.515000px;}
.y1ce{bottom:434.625000px;}
.y17e{bottom:437.295000px;}
.y108{bottom:439.095000px;}
.ycb{bottom:441.075000px;}
.y14b{bottom:442.155000px;}
.yeb{bottom:444.675000px;}
.y80{bottom:447.015000px;}
.y1e5{bottom:447.765000px;}
.y43{bottom:448.275000px;}
.ya0{bottom:448.815000px;}
.y5e{bottom:450.975000px;}
.y17c{bottom:461.235000px;}
.y16a{bottom:461.775000px;}
.y1a{bottom:462.495000px;}
.yca{bottom:462.855000px;}
.y131{bottom:463.395000px;}
.yea{bottom:465.375000px;}
.y7f{bottom:467.715000px;}
.y42{bottom:468.975000px;}
.y222{bottom:476.025000px;}
.y169{bottom:482.475000px;}
.yc9{bottom:483.555000px;}
.y17a{bottom:485.175000px;}
.ye9{bottom:486.075000px;}
.y205{bottom:489.165000px;}
.y41{bottom:489.675000px;}
.y1d8{bottom:489.885000px;}
.y9f{bottom:490.215000px;}
.y19{bottom:492.195000px;}
.y5d{bottom:497.775000px;}
.y237{bottom:501.045000px;}
.y1f3{bottom:501.405000px;}
.y105{bottom:502.635000px;}
.y168{bottom:503.175000px;}
.yc8{bottom:504.255000px;}
.ye8{bottom:506.775000px;}
.y40{bottom:510.375000px;}
.y21c{bottom:514.545000px;}
.y130{bottom:520.815000px;}
.y18{bottom:521.895000px;}
.y14a{bottom:524.955000px;}
.yc7{bottom:526.215000px;}
.y9d{bottom:526.755000px;}
.ye7{bottom:527.475000px;}
.y3f{bottom:531.075000px;}
.y204{bottom:531.285000px;}
.y1cd{bottom:532.005000px;}
.y21b{bottom:542.805000px;}
.y5c{bottom:544.575000px;}
.y149{bottom:545.655000px;}
.y1d7{bottom:545.865000px;}
.yc6{bottom:546.915000px;}
.ye6{bottom:548.175000px;}
.y3e{bottom:551.775000px;}
.y203{bottom:559.545000px;}
.y101{bottom:560.055000px;}
.y1cc{bottom:560.445000px;}
.y1b5{bottom:564.405000px;}
.y1a6{bottom:565.275000px;}
.y148{bottom:566.355000px;}
.yc5{bottom:567.615000px;}
.ye5{bottom:568.875000px;}
.y21a{bottom:571.245000px;}
.y17{bottom:572.295000px;}
.y3d{bottom:572.475000px;}
.y1d6{bottom:574.125000px;}
.y12d{bottom:578.235000px;}
.y236{bottom:584.745000px;}
.y1a5{bottom:585.975000px;}
.y147{bottom:587.055000px;}
.y202{bottom:587.985000px;}
.yc4{bottom:589.575000px;}
.y59{bottom:591.375000px;}
.y1b1{bottom:592.665000px;}
.y16{bottom:592.995000px;}
.y3c{bottom:593.175000px;}
.yf8{bottom:603.825000px;}
.y1a4{bottom:606.705000px;}
.y146{bottom:607.785000px;}
.yc3{bottom:610.305000px;}
.y96{bottom:611.745000px;}
.y217{bottom:613.365000px;}
.y3b{bottom:613.905000px;}
.y1ca{bottom:616.290000px;}
.y15{bottom:622.725000px;}
.y233{bottom:626.910000px;}
.y145{bottom:628.485000px;}
.yc2{bottom:631.005000px;}
.y3a{bottom:634.605000px;}
.y12c{bottom:635.685000px;}
.y58{bottom:638.205000px;}
.y1b0{bottom:641.490000px;}
.y144{bottom:649.185000px;}
.yc1{bottom:651.705000px;}
.y14{bottom:652.425000px;}
.y39{bottom:655.305000px;}
.y1af{bottom:655.350000px;}
.y216{bottom:662.190000px;}
.y1c9{bottom:665.070000px;}
.y12b{bottom:665.565000px;}
.y1ae{bottom:669.030000px;}
.y167{bottom:669.885000px;}
.y143{bottom:671.145000px;}
.yc0{bottom:672.405000px;}
.y38{bottom:676.005000px;}
.y215{bottom:676.050000px;}
.y1c8{bottom:678.930000px;}
.y13{bottom:682.125000px;}
.y57{bottom:685.005000px;}
.y214{bottom:689.730000px;}
.y1a2{bottom:690.585000px;}
.y142{bottom:691.845000px;}
.y1ad{bottom:692.790000px;}
.ye4{bottom:693.105000px;}
.ybf{bottom:694.185000px;}
.y6e{bottom:696.705000px;}
.y125{bottom:709.305000px;}
.y1a1{bottom:711.285000px;}
.y12{bottom:711.825000px;}
.y141{bottom:712.545000px;}
.y213{bottom:713.490000px;}
.ye3{bottom:713.805000px;}
.ybe{bottom:714.885000px;}
.y37{bottom:717.405000px;}
.y92{bottom:717.585000px;}
.y1ac{bottom:720.150000px;}
.y53{bottom:731.805000px;}
.y1a0{bottom:731.985000px;}
.y166{bottom:733.245000px;}
.ye2{bottom:734.505000px;}
.ybd{bottom:735.585000px;}
.y1aa{bottom:737.070000px;}
.y36{bottom:738.105000px;}
.y11{bottom:741.525000px;}
.y165{bottom:753.945000px;}
.ye1{bottom:755.205000px;}
.ybc{bottom:756.285000px;}
.y35{bottom:758.805000px;}
.y124{bottom:766.725000px;}
.y10{bottom:771.225000px;}
.y90{bottom:773.385000px;}
.y164{bottom:774.645000px;}
.ye0{bottom:776.985000px;}
.ybb{bottom:778.245000px;}
.y52{bottom:778.605000px;}
.y34{bottom:779.505000px;}
.yf{bottom:791.925000px;}
.y163{bottom:795.345000px;}
.y19f{bottom:796.605000px;}
.ydf{bottom:797.685000px;}
.yba{bottom:798.945000px;}
.y33{bottom:800.205000px;}
.y50{bottom:802.005000px;}
.ye{bottom:812.625000px;}
.y162{bottom:816.045000px;}
.yde{bottom:818.385000px;}
.y140{bottom:819.645000px;}
.y32{bottom:820.905000px;}
.y123{bottom:824.145000px;}
.y4f{bottom:829.185000px;}
.yd{bottom:833.325000px;}
.y161{bottom:836.745000px;}
.ydd{bottom:840.345000px;}
.y31{bottom:841.605000px;}
.y4e{bottom:849.885000px;}
.yc{bottom:856.545000px;}
.ydc{bottom:861.045000px;}
.y30{bottom:862.305000px;}
.y4d{bottom:870.630000px;}
.yb{bottom:877.290000px;}
.y160{bottom:878.190000px;}
.ydb{bottom:881.790000px;}
.y2f{bottom:883.050000px;}
.y4c{bottom:887.550000px;}
.ya{bottom:897.990000px;}
.y15f{bottom:898.890000px;}
.y19e{bottom:902.490000px;}
.y2e{bottom:903.750000px;}
.y4a{bottom:912.930000px;}
.y15e{bottom:919.590000px;}
.y2d{bottom:924.450000px;}
.y9{bottom:927.690000px;}
.y49{bottom:938.490000px;}
.y15d{bottom:940.290000px;}
.y2c{bottom:945.150000px;}
.y120{bottom:950.550000px;}
.y8{bottom:957.390000px;}
.y15c{bottom:960.990000px;}
.y48{bottom:963.870000px;}
.y2b{bottom:965.850000px;}
.y15b{bottom:982.950000px;}
.y2a{bottom:986.550000px;}
.y7{bottom:988.350000px;}
.y47{bottom:989.250000px;}
.y15a{bottom:1004.730000px;}
.y29{bottom:1007.250000px;}
.y46{bottom:1014.630000px;}
.y6{bottom:1016.070000px;}
.y11d{bottom:1021.830000px;}
.y159{bottom:1025.430000px;}
.y28{bottom:1027.950000px;}
.y44{bottom:1040.190000px;}
.y158{bottom:1047.390000px;}
.y6d{bottom:1048.650000px;}
.y5{bottom:1051.350000px;}
.y157{bottom:1068.090000px;}
.y27{bottom:1069.350000px;}
.y4{bottom:1081.050000px;}
.y156{bottom:1088.790000px;}
.y26{bottom:1090.050000px;}
.y1{bottom:1106.970000px;}
.h2b{height:13.680000px;}
.h2c{height:13.860000px;}
.hc{height:20.700000px;}
.h24{height:23.040000px;}
.h22{height:23.220000px;}
.h23{height:23.256000px;}
.h7{height:23.400000px;}
.h29{height:23.580000px;}
.h2a{height:23.760000px;}
.h11{height:24.660000px;}
.h5{height:25.380000px;}
.h6{height:25.560000px;}
.ha{height:27.540000px;}
.h33{height:27.576000px;}
.h1d{height:27.720000px;}
.h39{height:29.880000px;}
.h3f{height:36.720000px;}
.h14{height:41.400000px;}
.h35{height:41.436000px;}
.h1f{height:42.300000px;}
.h8{height:46.800000px;}
.h9{height:46.836000px;}
.h30{height:47.340000px;}
.h2d{height:47.376000px;}
.h3e{height:48.600000px;}
.h12{height:50.312812px;}
.hd{height:53.640000px;}
.hb{height:54.900000px;}
.h1b{height:55.080000px;}
.h31{height:55.116000px;}
.h15{height:55.260000px;}
.h1e{height:55.296000px;}
.h20{height:58.651172px;}
.h16{height:61.380000px;}
.h10{height:62.327813px;}
.h21{height:64.546875px;}
.h34{height:68.940000px;}
.h38{height:68.976000px;}
.h1a{height:69.120000px;}
.h2f{height:69.156000px;}
.h2{height:70.664062px;}
.h3{height:75.093750px;}
.h26{height:75.243937px;}
.h19{height:82.800000px;}
.hf{height:82.836000px;}
.h3c{height:96.480000px;}
.h32{height:96.660000px;}
.h36{height:96.696000px;}
.h4{height:99.874688px;}
.he{height:103.500000px;}
.h37{height:110.340000px;}
.h3b{height:110.376000px;}
.h3d{height:110.556000px;}
.h18{height:124.200000px;}
.h17{height:124.236000px;}
.h40{height:137.880000px;}
.h2e{height:165.450000px;}
.h3a{height:207.030000px;}
.h13{height:288.930000px;}
.h25{height:408.420000px;}
.h1c{height:476.535000px;}
.h27{height:892.980000px;}
.h28{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:32.040000px;}
.wb{width:33.120000px;}
.w8{width:33.300000px;}
.w5{width:33.480000px;}
.w12{width:49.860000px;}
.w31{width:82.476000px;}
.w2e{width:84.276000px;}
.w6{width:87.480000px;}
.w9{width:90.900000px;}
.w1d{width:94.896000px;}
.wf{width:102.996000px;}
.w20{width:105.516000px;}
.w29{width:112.536000px;}
.w23{width:116.136000px;}
.w2c{width:126.936000px;}
.w10{width:137.160000px;}
.w25{width:137.376000px;}
.w15{width:151.230000px;}
.w2f{width:158.430000px;}
.w1e{width:176.790000px;}
.w21{width:180.030000px;}
.we{width:183.810000px;}
.wc{width:184.890000px;}
.w13{width:188.850000px;}
.w1b{width:190.650000px;}
.w27{width:194.250000px;}
.w2a{width:201.270000px;}
.w14{width:256.530000px;}
.wd{width:264.990000px;}
.wa{width:581.685000px;}
.w7{width:583.845000px;}
.w11{width:592.710000px;}
.w16{width:637.920000px;}
.w4{width:670.425000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2b{width:913.965000px;}
.w24{width:924.765000px;}
.w28{width:935.385000px;}
.w22{width:946.005000px;}
.w1c{width:956.625000px;}
.w1f{width:959.865000px;}
.w2d{width:967.245000px;}
.w30{width:1000.905000px;}
.w1a{width:1156.680000px;}
.w26{width:1163.700000px;}
.w19{width:1262.879981px;}
.w17{width:1262.880000px;}
.w18{width:1263.000000px;}
.x0{left:0.000000px;}
.x1d{left:4.140000px;}
.x10{left:5.220000px;}
.x2e{left:6.660000px;}
.x13{left:8.280000px;}
.x2b{left:10.620000px;}
.x2f{left:12.420000px;}
.x33{left:14.394000px;}
.x37{left:15.654000px;}
.x34{left:17.094000px;}
.x12{left:18.180000px;}
.x2d{left:20.340000px;}
.x26{left:22.140000px;}
.x27{left:24.300000px;}
.x57{left:26.280000px;}
.x23{left:27.360000px;}
.x47{left:29.520000px;}
.x28{left:31.500000px;}
.x29{left:32.574000px;}
.x22{left:34.200000px;}
.x35{left:35.634000px;}
.x2a{left:37.074000px;}
.x32{left:40.674000px;}
.x31{left:42.654000px;}
.x2c{left:49.314000px;}
.x36{left:54.714000px;}
.x46{left:56.745000px;}
.x44{left:57.780000px;}
.x30{left:69.114000px;}
.x49{left:70.740000px;}
.x48{left:75.780000px;}
.x4d{left:78.945000px;}
.xf{left:95.616000px;}
.x4e{left:98.460000px;}
.x52{left:106.199981px;}
.x14{left:122.436000px;}
.x3{left:127.655987px;}
.xc{left:130.715987px;}
.x3f{left:131.795987px;}
.x4a{left:134.315987px;}
.x24{left:138.276000px;}
.x7{left:140.255987px;}
.x6{left:146.195987px;}
.x8{left:151.769987px;}
.x9{left:152.849987px;}
.xe{left:154.649987px;}
.x41{left:159.689987px;}
.x3e{left:163.109987px;}
.x20{left:164.549987px;}
.x4f{left:165.989987px;}
.x3d{left:168.149987px;}
.x5d{left:170.130000px;}
.x3b{left:173.189987px;}
.x3a{left:175.169987px;}
.x3c{left:178.229987px;}
.x39{left:180.209987px;}
.x1a{left:181.649987px;}
.x55{left:188.130000px;}
.x21{left:191.549987px;}
.x1c{left:197.489987px;}
.x53{left:201.990000px;}
.x5{left:203.249987px;}
.x59{left:205.590000px;}
.x1b{left:208.649987px;}
.x15{left:209.910000px;}
.x17{left:213.330000px;}
.x4b{left:222.329987px;}
.x25{left:267.195000px;}
.xd{left:275.789987px;}
.x1e{left:314.715000px;}
.xb{left:324.974987px;}
.x43{left:362.235000px;}
.x42{left:364.574987px;}
.x50{left:373.889981px;}
.xa{left:386.534987px;}
.x1{left:395.354987px;}
.x4{left:446.474987px;}
.x1f{left:581.865000px;}
.x45{left:619.125000px;}
.x40{left:708.269987px;}
.x38{left:747.509987px;}
.x19{left:756.509987px;}
.x2{left:765.509987px;}
.x4c{left:766.769987px;}
.x16{left:793.770000px;}
.x18{left:795.030000px;}
.x11{left:798.090000px;}
.x58{left:1116.510000px;}
.x5b{left:1126.950000px;}
.x51{left:1138.649981px;}
.x5a{left:1141.350000px;}
.x56{left:1148.370000px;}
.x54{left:1158.990000px;}
.x5c{left:1169.610000px;}
.x5e{left:1171.410000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.408000pt;}
.ls9{letter-spacing:-1.152000pt;}
.ls17{letter-spacing:-1.024000pt;}
.ls7{letter-spacing:-0.768000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.360533pt;}
.ls14{letter-spacing:-0.198933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.214400pt;}
.ls1e{letter-spacing:0.239467pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.544000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.408000pt;}
.lsf{letter-spacing:3.328000pt;}
.ls11{letter-spacing:11.648000pt;}
.ls1a{letter-spacing:14.208000pt;}
.ls1d{letter-spacing:18.688000pt;}
.lse{letter-spacing:20.480000pt;}
.ls19{letter-spacing:34.688000pt;}
.ls10{letter-spacing:48.768000pt;}
.ls4{letter-spacing:78.186667pt;}
.ls16{letter-spacing:90.368000pt;}
.ls18{letter-spacing:96.106667pt;}
.ls1{letter-spacing:170.986667pt;}
.ls13{letter-spacing:235.648000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws10{word-spacing:-18.432000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.920000pt;}
.wse{word-spacing:-17.827584pt;}
.ws1{word-spacing:-17.792000pt;}
.ws5{word-spacing:-17.664000pt;}
.ws6{word-spacing:-17.600000pt;}
.ws8{word-spacing:-17.408000pt;}
.ws0{word-spacing:-17.280000pt;}
.wsd{word-spacing:-17.152000pt;}
.wsa{word-spacing:-16.384000pt;}
.ws12{word-spacing:-12.240640pt;}
.ws11{word-spacing:-11.920640pt;}
.wsc{word-spacing:-11.759573pt;}
.wsb{word-spacing:-11.721707pt;}
.ws3{word-spacing:0.000000pt;}
.wsf{word-spacing:35.445333pt;}
._1{margin-left:-1.957760pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.276800pt;}
._4{width:2.200533pt;}
._5{width:3.520000pt;}
._6{width:4.490667pt;}
._e{width:5.416960pt;}
._d{width:6.592000pt;}
._2e{width:7.488000pt;}
._9{width:8.384000pt;}
._b{width:9.344000pt;}
._c{width:10.890667pt;}
._21{width:12.096000pt;}
._12{width:12.992000pt;}
._13{width:13.888000pt;}
._8{width:15.104000pt;}
._7{width:16.704000pt;}
._30{width:18.060800pt;}
._a{width:19.392000pt;}
._11{width:20.611200pt;}
._14{width:21.628800pt;}
._18{width:22.592000pt;}
._15{width:23.624533pt;}
._1a{width:25.000960pt;}
._19{width:25.984000pt;}
._17{width:26.944000pt;}
._16{width:28.202667pt;}
._20{width:29.098667pt;}
._10{width:30.030720pt;}
._f{width:31.040000pt;}
._2b{width:32.832000pt;}
._2c{width:34.363733pt;}
._24{width:35.456000pt;}
._2d{width:37.152000pt;}
._26{width:38.048000pt;}
._25{width:38.976000pt;}
._1f{width:40.576000pt;}
._1e{width:42.003627pt;}
._1d{width:43.072000pt;}
._1b{width:44.352000pt;}
._1c{width:45.616427pt;}
._22{width:46.622933pt;}
._32{width:47.568427pt;}
._23{width:48.768000pt;}
._36{width:51.050667pt;}
._28{width:51.968000pt;}
._27{width:53.056000pt;}
._2a{width:54.016000pt;}
._39{width:54.912000pt;}
._2f{width:57.088000pt;}
._38{width:58.688000pt;}
._37{width:59.648000pt;}
._33{width:87.808000pt;}
._3a{width:100.714667pt;}
._34{width:146.176000pt;}
._35{width:147.187627pt;}
._3{width:170.986667pt;}
._29{width:799.178667pt;}
._31{width:831.152427pt;}
._3b{width:1654.794667pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:64.128000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:2.240000pt;}
.y139{bottom:2.560000pt;}
.y1f5{bottom:3.200000pt;}
.y91{bottom:3.360000pt;}
.y184{bottom:4.320000pt;}
.y17d{bottom:4.480000pt;}
.y51{bottom:4.640000pt;}
.y10c{bottom:4.960000pt;}
.y45{bottom:5.440000pt;}
.y56{bottom:5.760000pt;}
.y235{bottom:6.240000pt;}
.y68{bottom:6.400000pt;}
.yf9{bottom:7.040000pt;}
.y1b6{bottom:8.320000pt;}
.y122{bottom:8.480000pt;}
.y95{bottom:8.800000pt;}
.y6c{bottom:9.440000pt;}
.y1b4{bottom:11.040000pt;}
.y219{bottom:11.080000pt;}
.y4b{bottom:11.360000pt;}
.y225{bottom:11.520000pt;}
.y234{bottom:12.320000pt;}
.y19d{bottom:13.506667pt;}
.y211{bottom:14.394667pt;}
.y126{bottom:14.400000pt;}
.y1ee{bottom:14.440000pt;}
.y103{bottom:14.560000pt;}
.y23a{bottom:14.586667pt;}
.y138{bottom:14.880000pt;}
.y54{bottom:15.040000pt;}
.y5a{bottom:15.066667pt;}
.y1f4{bottom:15.520000pt;}
.y1b2{bottom:17.120000pt;}
.y218{bottom:17.160000pt;}
.y10a{bottom:17.280000pt;}
.y227{bottom:17.760000pt;}
.y93{bottom:17.920000pt;}
.y6a{bottom:18.560000pt;}
.y106{bottom:20.640000pt;}
.y1e7{bottom:20.666667pt;}
.y1ec{bottom:20.680000pt;}
.y137{bottom:20.960000pt;}
.y9c{bottom:21.760000pt;}
.y1b3{bottom:23.240000pt;}
.y1cb{bottom:23.360000pt;}
.y224{bottom:23.840000pt;}
.y55{bottom:24.160000pt;}
.y5b{bottom:24.186667pt;}
.y62{bottom:24.200000pt;}
.y212{bottom:26.714667pt;}
.y11c{bottom:26.720000pt;}
.y1c0{bottom:26.746667pt;}
.y115{bottom:26.760000pt;}
.y102{bottom:26.880000pt;}
.y12e{bottom:26.906667pt;}
.y22a{bottom:26.920000pt;}
.y94{bottom:27.200000pt;}
.y6b{bottom:27.834667pt;}
.y109{bottom:29.440000pt;}
.y226{bottom:29.920000pt;}
.y9e{bottom:30.880000pt;}
.y98{bottom:31.040000pt;}
.y1c6{bottom:32.800000pt;}
.y1eb{bottom:32.840000pt;}
.y11e{bottom:32.960000pt;}
.y1db{bottom:32.986667pt;}
.y1fd{bottom:38.880000pt;}
.y107{bottom:39.040000pt;}
.y12f{bottom:39.066667pt;}
.y114{bottom:39.080000pt;}
.y19c{bottom:39.226667pt;}
.y9b{bottom:40.160000pt;}
.y10b{bottom:41.760000pt;}
.y1e0{bottom:45.120000pt;}
.y1da{bottom:45.146667pt;}
.y10e{bottom:45.160000pt;}
.y121{bottom:45.280000pt;}
.y220{bottom:45.320000pt;}
.y17b{bottom:49.280000pt;}
.y97{bottom:49.440000pt;}
.y3{bottom:50.560000pt;}
.y1ab{bottom:50.592000pt;}
.y1c5{bottom:51.200000pt;}
.y1bf{bottom:51.226667pt;}
.y1ed{bottom:51.240000pt;}
.y118{bottom:51.360000pt;}
.y1dd{bottom:51.386667pt;}
.y113{bottom:51.400000pt;}
.y1fa{bottom:57.280000pt;}
.y1e9{bottom:57.440000pt;}
.y1f7{bottom:57.466667pt;}
.y10d{bottom:57.480000pt;}
.y9a{bottom:58.560000pt;}
.y117{bottom:63.520000pt;}
.y1b9{bottom:63.546667pt;}
.y112{bottom:63.560000pt;}
.y11f{bottom:63.680000pt;}
.y239{bottom:63.706667pt;}
.y136{bottom:63.720000pt;}
.y19b{bottom:64.933333pt;}
.y2{bottom:68.992000pt;}
.y23c{bottom:69.600000pt;}
.y1c1{bottom:69.626667pt;}
.y1fc{bottom:75.680000pt;}
.y1b8{bottom:75.706667pt;}
.y11b{bottom:75.840000pt;}
.y1dc{bottom:75.866667pt;}
.y111{bottom:75.880000pt;}
.y99{bottom:76.960000pt;}
.y209{bottom:81.960000pt;}
.y1fb{bottom:88.000000pt;}
.y1be{bottom:88.026667pt;}
.y11a{bottom:88.160000pt;}
.y1f8{bottom:88.186667pt;}
.y110{bottom:88.200000pt;}
.y19a{bottom:90.626667pt;}
.y100{bottom:93.960000pt;}
.y208{bottom:94.280000pt;}
.y18b{bottom:98.592000pt;}
.y1a3{bottom:98.752000pt;}
.y13f{bottom:98.912000pt;}
.y119{bottom:100.320000pt;}
.y1bd{bottom:100.346667pt;}
.y10f{bottom:100.360000pt;}
.y7e{bottom:104.032000pt;}
.yb0{bottom:104.672000pt;}
.y69{bottom:105.952000pt;}
.yff{bottom:106.120000pt;}
.y179{bottom:109.312000pt;}
.y23d{bottom:112.480000pt;}
.y1bc{bottom:112.506667pt;}
.y20f{bottom:112.680000pt;}
.y18d{bottom:113.632000pt;}
.yda{bottom:114.912000pt;}
.y8f{bottom:116.032000pt;}
.y18a{bottom:116.992000pt;}
.y155{bottom:117.152000pt;}
.y13e{bottom:117.312000pt;}
.yfe{bottom:118.440000pt;}
.y221{bottom:119.392000pt;}
.y199{bottom:120.613333pt;}
.y201{bottom:120.672000pt;}
.y1e4{bottom:121.952000pt;}
.y7d{bottom:122.432000pt;}
.y25{bottom:122.592000pt;}
.yaf{bottom:123.072000pt;}
.y1bb{bottom:124.826667pt;}
.y20e{bottom:124.840000pt;}
.y210{bottom:126.112000pt;}
.y178{bottom:127.712000pt;}
.y1f2{bottom:128.032000pt;}
.y18c{bottom:128.992000pt;}
.yfd{bottom:130.760000pt;}
.yf7{bottom:131.232000pt;}
.y23f{bottom:132.032000pt;}
.yd9{bottom:133.312000pt;}
.y22d{bottom:133.946667pt;}
.yb9{bottom:134.266667pt;}
.y8e{bottom:134.426667pt;}
.y189{bottom:135.386667pt;}
.y154{bottom:135.546667pt;}
.y13d{bottom:135.706667pt;}
.y1ba{bottom:137.146667pt;}
.y20d{bottom:137.160000pt;}
.y1c7{bottom:138.426667pt;}
.y200{bottom:139.066667pt;}
.y18f{bottom:139.680000pt;}
.y1e3{bottom:140.346667pt;}
.y7c{bottom:140.826667pt;}
.y1d5{bottom:140.986667pt;}
.yae{bottom:141.466667pt;}
.y24{bottom:142.106667pt;}
.y18e{bottom:142.720000pt;}
.yfc{bottom:142.920000pt;}
.y177{bottom:146.106667pt;}
.y1f1{bottom:146.426667pt;}
.y23e{bottom:148.346667pt;}
.y20c{bottom:149.480000pt;}
.yf6{bottom:149.626667pt;}
.yd8{bottom:151.706667pt;}
.y22c{bottom:152.346667pt;}
.yb8{bottom:152.666667pt;}
.y8d{bottom:152.826667pt;}
.y153{bottom:153.786667pt;}
.y13c{bottom:154.106667pt;}
.y67{bottom:154.746667pt;}
.yfb{bottom:155.240000pt;}
.y1ff{bottom:157.466667pt;}
.y1e2{bottom:158.746667pt;}
.y7b{bottom:159.226667pt;}
.y1d4{bottom:159.386667pt;}
.yad{bottom:159.706667pt;}
.y20b{bottom:161.640000pt;}
.y190{bottom:162.173333pt;}
.y207{bottom:163.546667pt;}
.y176{bottom:164.506667pt;}
.y1f0{bottom:164.826667pt;}
.y116{bottom:166.746667pt;}
.yf5{bottom:168.026667pt;}
.y22b{bottom:168.666667pt;}
.yd7{bottom:170.106667pt;}
.y232{bottom:171.066667pt;}
.y8c{bottom:171.226667pt;}
.y152{bottom:172.186667pt;}
.y13b{bottom:172.506667pt;}
.y21f{bottom:173.146667pt;}
.y23{bottom:173.466667pt;}
.y1fe{bottom:173.786667pt;}
.y20a{bottom:173.960000pt;}
.y1e1{bottom:175.066667pt;}
.y7a{bottom:177.626667pt;}
.y1d3{bottom:177.786667pt;}
.yac{bottom:178.106667pt;}
.y66{bottom:182.586667pt;}
.y175{bottom:182.906667pt;}
.y1ef{bottom:183.226667pt;}
.y191{bottom:184.666667pt;}
.yf4{bottom:186.426667pt;}
.yd6{bottom:188.506667pt;}
.y231{bottom:189.466667pt;}
.y8b{bottom:189.626667pt;}
.y188{bottom:190.106667pt;}
.y13a{bottom:190.426667pt;}
.y151{bottom:190.586667pt;}
.y229{bottom:193.786667pt;}
.y12a{bottom:195.720000pt;}
.y79{bottom:196.026667pt;}
.y1d2{bottom:196.186667pt;}
.yab{bottom:196.506667pt;}
.y1ea{bottom:199.706667pt;}
.y22{bottom:199.866667pt;}
.y65{bottom:200.986667pt;}
.y174{bottom:201.306667pt;}
.y127{bottom:204.826667pt;}
.y187{bottom:205.466667pt;}
.yf3{bottom:205.786667pt;}
.yd5{bottom:206.906667pt;}
.y192{bottom:207.133333pt;}
.y230{bottom:207.866667pt;}
.y129{bottom:207.880000pt;}
.y8a{bottom:208.026667pt;}
.y150{bottom:208.986667pt;}
.y1d1{bottom:212.706667pt;}
.y78{bottom:214.426667pt;}
.yaa{bottom:214.906667pt;}
.y1c4{bottom:216.866667pt;}
.y186{bottom:218.586667pt;}
.y64{bottom:219.386667pt;}
.y173{bottom:219.706667pt;}
.y128{bottom:220.200000pt;}
.yf2{bottom:224.186667pt;}
.y22f{bottom:224.226667pt;}
.yd4{bottom:225.306667pt;}
.y21{bottom:226.266667pt;}
.y89{bottom:226.426667pt;}
.y14f{bottom:227.386667pt;}
.y193{bottom:229.626667pt;}
.y77{bottom:232.826667pt;}
.ya9{bottom:233.306667pt;}
.y63{bottom:234.426667pt;}
.y1f9{bottom:235.906667pt;}
.y1df{bottom:237.186667pt;}
.y172{bottom:238.106667pt;}
.y185{bottom:239.866667pt;}
.yd3{bottom:243.706667pt;}
.y135{bottom:244.346667pt;}
.yb7{bottom:244.826667pt;}
.y88{bottom:245.786667pt;}
.y23b{bottom:247.906667pt;}
.y22e{bottom:249.506667pt;}
.y76{bottom:251.226667pt;}
.ya8{bottom:251.706667pt;}
.y194{bottom:252.093333pt;}
.y20{bottom:252.666667pt;}
.y183{bottom:261.146667pt;}
.y1e8{bottom:261.666667pt;}
.yd2{bottom:262.106667pt;}
.y1a9{bottom:263.226667pt;}
.yb6{bottom:264.186667pt;}
.y87{bottom:265.306667pt;}
.y75{bottom:269.626667pt;}
.ya7{bottom:270.106667pt;}
.y21e{bottom:272.066667pt;}
.y195{bottom:274.586667pt;}
.y1d0{bottom:274.626667pt;}
.y171{bottom:274.906667pt;}
.y61{bottom:276.026667pt;}
.yfa{bottom:277.786667pt;}
.y1f{bottom:279.066667pt;}
.yd1{bottom:280.506667pt;}
.yf1{bottom:281.626667pt;}
.y182{bottom:282.266667pt;}
.yb5{bottom:282.586667pt;}
.y86{bottom:283.706667pt;}
.y74{bottom:288.026667pt;}
.ya6{bottom:288.506667pt;}
.y1c3{bottom:291.106667pt;}
.y228{bottom:292.706667pt;}
.y170{bottom:293.306667pt;}
.y196{bottom:297.053333pt;}
.yd0{bottom:298.906667pt;}
.y1a8{bottom:300.066667pt;}
.yf0{bottom:301.026667pt;}
.yb4{bottom:302.146667pt;}
.y85{bottom:303.266667pt;}
.y181{bottom:303.586667pt;}
.y1e{bottom:305.506667pt;}
.y73{bottom:306.466667pt;}
.ya5{bottom:306.946667pt;}
.y1de{bottom:311.426667pt;}
.y16f{bottom:311.746667pt;}
.ycf{bottom:317.346667pt;}
.y60{bottom:317.666667pt;}
.y1a7{bottom:318.466667pt;}
.yef{bottom:319.426667pt;}
.y197{bottom:319.546667pt;}
.y134{bottom:320.066667pt;}
.yb3{bottom:320.546667pt;}
.y84{bottom:321.666667pt;}
.y72{bottom:324.866667pt;}
.ya4{bottom:325.346667pt;}
.y1c2{bottom:328.546667pt;}
.y16e{bottom:329.666667pt;}
.y1d{bottom:331.906667pt;}
.y1f6{bottom:334.626667pt;}
.yce{bottom:335.746667pt;}
.y16b{bottom:336.866667pt;}
.y14e{bottom:337.826667pt;}
.yee{bottom:338.946667pt;}
.yb2{bottom:340.066667pt;}
.y83{bottom:341.186667pt;}
.y198{bottom:342.053333pt;}
.y71{bottom:343.266667pt;}
.ya3{bottom:343.746667pt;}
.y16d{bottom:345.026667pt;}
.y180{bottom:346.146667pt;}
.y133{bottom:346.626667pt;}
.y206{bottom:348.226667pt;}
.y1d9{bottom:348.866667pt;}
.y1b7{bottom:353.826667pt;}
.ycd{bottom:355.266667pt;}
.y14d{bottom:356.226667pt;}
.yed{bottom:357.346667pt;}
.y16c{bottom:357.506667pt;}
.y1c{bottom:358.306667pt;}
.y21d{bottom:358.626667pt;}
.y5f{bottom:359.266667pt;}
.y82{bottom:359.586667pt;}
.y1e6{bottom:360.546667pt;}
.y1cf{bottom:361.186667pt;}
.y70{bottom:361.666667pt;}
.ya2{bottom:362.146667pt;}
.y17f{bottom:367.426667pt;}
.y238{bottom:371.106667pt;}
.ycc{bottom:373.666667pt;}
.y14c{bottom:374.626667pt;}
.yec{bottom:376.866667pt;}
.y81{bottom:377.986667pt;}
.yb1{bottom:378.946667pt;}
.y223{bottom:379.293333pt;}
.y6f{bottom:380.066667pt;}
.ya1{bottom:380.546667pt;}
.y1b{bottom:384.706667pt;}
.y132{bottom:385.346667pt;}
.y1ce{bottom:386.333333pt;}
.y17e{bottom:388.706667pt;}
.y108{bottom:390.306667pt;}
.ycb{bottom:392.066667pt;}
.y14b{bottom:393.026667pt;}
.yeb{bottom:395.266667pt;}
.y80{bottom:397.346667pt;}
.y1e5{bottom:398.013333pt;}
.y43{bottom:398.466667pt;}
.ya0{bottom:398.946667pt;}
.y5e{bottom:400.866667pt;}
.y17c{bottom:409.986667pt;}
.y16a{bottom:410.466667pt;}
.y1a{bottom:411.106667pt;}
.yca{bottom:411.426667pt;}
.y131{bottom:411.906667pt;}
.yea{bottom:413.666667pt;}
.y7f{bottom:415.746667pt;}
.y42{bottom:416.866667pt;}
.y222{bottom:423.133333pt;}
.y169{bottom:428.866667pt;}
.yc9{bottom:429.826667pt;}
.y17a{bottom:431.266667pt;}
.ye9{bottom:432.066667pt;}
.y205{bottom:434.813333pt;}
.y41{bottom:435.266667pt;}
.y1d8{bottom:435.453333pt;}
.y9f{bottom:435.746667pt;}
.y19{bottom:437.506667pt;}
.y5d{bottom:442.466667pt;}
.y237{bottom:445.373333pt;}
.y1f3{bottom:445.693333pt;}
.y105{bottom:446.786667pt;}
.y168{bottom:447.266667pt;}
.yc8{bottom:448.226667pt;}
.ye8{bottom:450.466667pt;}
.y40{bottom:453.666667pt;}
.y21c{bottom:457.373333pt;}
.y130{bottom:462.946667pt;}
.y18{bottom:463.906667pt;}
.y14a{bottom:466.626667pt;}
.yc7{bottom:467.746667pt;}
.y9d{bottom:468.226667pt;}
.ye7{bottom:468.866667pt;}
.y3f{bottom:472.066667pt;}
.y204{bottom:472.253333pt;}
.y1cd{bottom:472.893333pt;}
.y21b{bottom:482.493333pt;}
.y5c{bottom:484.066667pt;}
.y149{bottom:485.026667pt;}
.y1d7{bottom:485.213333pt;}
.yc6{bottom:486.146667pt;}
.ye6{bottom:487.266667pt;}
.y3e{bottom:490.466667pt;}
.y203{bottom:497.373333pt;}
.y101{bottom:497.826667pt;}
.y1cc{bottom:498.173333pt;}
.y1b5{bottom:501.693333pt;}
.y1a6{bottom:502.466667pt;}
.y148{bottom:503.426667pt;}
.yc5{bottom:504.546667pt;}
.ye5{bottom:505.666667pt;}
.y21a{bottom:507.773333pt;}
.y17{bottom:508.706667pt;}
.y3d{bottom:508.866667pt;}
.y1d6{bottom:510.333333pt;}
.y12d{bottom:513.986667pt;}
.y236{bottom:519.773333pt;}
.y1a5{bottom:520.866667pt;}
.y147{bottom:521.826667pt;}
.y202{bottom:522.653333pt;}
.yc4{bottom:524.066667pt;}
.y59{bottom:525.666667pt;}
.y1b1{bottom:526.813333pt;}
.y16{bottom:527.106667pt;}
.y3c{bottom:527.266667pt;}
.yf8{bottom:536.733333pt;}
.y1a4{bottom:539.293333pt;}
.y146{bottom:540.253333pt;}
.yc3{bottom:542.493333pt;}
.y96{bottom:543.773333pt;}
.y217{bottom:545.213333pt;}
.y3b{bottom:545.693333pt;}
.y1ca{bottom:547.813333pt;}
.y15{bottom:553.533333pt;}
.y233{bottom:557.253333pt;}
.y145{bottom:558.653333pt;}
.yc2{bottom:560.893333pt;}
.y3a{bottom:564.093333pt;}
.y12c{bottom:565.053333pt;}
.y58{bottom:567.293333pt;}
.y1b0{bottom:570.213333pt;}
.y144{bottom:577.053333pt;}
.yc1{bottom:579.293333pt;}
.y14{bottom:579.933333pt;}
.y39{bottom:582.493333pt;}
.y1af{bottom:582.533333pt;}
.y216{bottom:588.613333pt;}
.y1c9{bottom:591.173333pt;}
.y12b{bottom:591.613333pt;}
.y1ae{bottom:594.693333pt;}
.y167{bottom:595.453333pt;}
.y143{bottom:596.573333pt;}
.yc0{bottom:597.693333pt;}
.y38{bottom:600.893333pt;}
.y215{bottom:600.933333pt;}
.y1c8{bottom:603.493333pt;}
.y13{bottom:606.333333pt;}
.y57{bottom:608.893333pt;}
.y214{bottom:613.093333pt;}
.y1a2{bottom:613.853333pt;}
.y142{bottom:614.973333pt;}
.y1ad{bottom:615.813333pt;}
.ye4{bottom:616.093333pt;}
.ybf{bottom:617.053333pt;}
.y6e{bottom:619.293333pt;}
.y125{bottom:630.493333pt;}
.y1a1{bottom:632.253333pt;}
.y12{bottom:632.733333pt;}
.y141{bottom:633.373333pt;}
.y213{bottom:634.213333pt;}
.ye3{bottom:634.493333pt;}
.ybe{bottom:635.453333pt;}
.y37{bottom:637.693333pt;}
.y92{bottom:637.853333pt;}
.y1ac{bottom:640.133333pt;}
.y53{bottom:650.493333pt;}
.y1a0{bottom:650.653333pt;}
.y166{bottom:651.773333pt;}
.ye2{bottom:652.893333pt;}
.ybd{bottom:653.853333pt;}
.y1aa{bottom:655.173333pt;}
.y36{bottom:656.093333pt;}
.y11{bottom:659.133333pt;}
.y165{bottom:670.173333pt;}
.ye1{bottom:671.293333pt;}
.ybc{bottom:672.253333pt;}
.y35{bottom:674.493333pt;}
.y124{bottom:681.533333pt;}
.y10{bottom:685.533333pt;}
.y90{bottom:687.453333pt;}
.y164{bottom:688.573333pt;}
.ye0{bottom:690.653333pt;}
.ybb{bottom:691.773333pt;}
.y52{bottom:692.093333pt;}
.y34{bottom:692.893333pt;}
.yf{bottom:703.933333pt;}
.y163{bottom:706.973333pt;}
.y19f{bottom:708.093333pt;}
.ydf{bottom:709.053333pt;}
.yba{bottom:710.173333pt;}
.y33{bottom:711.293333pt;}
.y50{bottom:712.893333pt;}
.ye{bottom:722.333333pt;}
.y162{bottom:725.373333pt;}
.yde{bottom:727.453333pt;}
.y140{bottom:728.573333pt;}
.y32{bottom:729.693333pt;}
.y123{bottom:732.573333pt;}
.y4f{bottom:737.053333pt;}
.yd{bottom:740.733333pt;}
.y161{bottom:743.773333pt;}
.ydd{bottom:746.973333pt;}
.y31{bottom:748.093333pt;}
.y4e{bottom:755.453333pt;}
.yc{bottom:761.373333pt;}
.ydc{bottom:765.373333pt;}
.y30{bottom:766.493333pt;}
.y4d{bottom:773.893333pt;}
.yb{bottom:779.813333pt;}
.y160{bottom:780.613333pt;}
.ydb{bottom:783.813333pt;}
.y2f{bottom:784.933333pt;}
.y4c{bottom:788.933333pt;}
.ya{bottom:798.213333pt;}
.y15f{bottom:799.013333pt;}
.y19e{bottom:802.213333pt;}
.y2e{bottom:803.333333pt;}
.y4a{bottom:811.493333pt;}
.y15e{bottom:817.413333pt;}
.y2d{bottom:821.733333pt;}
.y9{bottom:824.613333pt;}
.y49{bottom:834.213333pt;}
.y15d{bottom:835.813333pt;}
.y2c{bottom:840.133333pt;}
.y120{bottom:844.933333pt;}
.y8{bottom:851.013333pt;}
.y15c{bottom:854.213333pt;}
.y48{bottom:856.773333pt;}
.y2b{bottom:858.533333pt;}
.y15b{bottom:873.733333pt;}
.y2a{bottom:876.933333pt;}
.y7{bottom:878.533333pt;}
.y47{bottom:879.333333pt;}
.y15a{bottom:893.093333pt;}
.y29{bottom:895.333333pt;}
.y46{bottom:901.893333pt;}
.y6{bottom:903.173333pt;}
.y11d{bottom:908.293333pt;}
.y159{bottom:911.493333pt;}
.y28{bottom:913.733333pt;}
.y44{bottom:924.613333pt;}
.y158{bottom:931.013333pt;}
.y6d{bottom:932.133333pt;}
.y5{bottom:934.533333pt;}
.y157{bottom:949.413333pt;}
.y27{bottom:950.533333pt;}
.y4{bottom:960.933333pt;}
.y156{bottom:967.813333pt;}
.y26{bottom:968.933333pt;}
.y1{bottom:983.973333pt;}
.h2b{height:12.160000pt;}
.h2c{height:12.320000pt;}
.hc{height:18.400000pt;}
.h24{height:20.480000pt;}
.h22{height:20.640000pt;}
.h23{height:20.672000pt;}
.h7{height:20.800000pt;}
.h29{height:20.960000pt;}
.h2a{height:21.120000pt;}
.h11{height:21.920000pt;}
.h5{height:22.560000pt;}
.h6{height:22.720000pt;}
.ha{height:24.480000pt;}
.h33{height:24.512000pt;}
.h1d{height:24.640000pt;}
.h39{height:26.560000pt;}
.h3f{height:32.640000pt;}
.h14{height:36.800000pt;}
.h35{height:36.832000pt;}
.h1f{height:37.600000pt;}
.h8{height:41.600000pt;}
.h9{height:41.632000pt;}
.h30{height:42.080000pt;}
.h2d{height:42.112000pt;}
.h3e{height:43.200000pt;}
.h12{height:44.722500pt;}
.hd{height:47.680000pt;}
.hb{height:48.800000pt;}
.h1b{height:48.960000pt;}
.h31{height:48.992000pt;}
.h15{height:49.120000pt;}
.h1e{height:49.152000pt;}
.h20{height:52.134375pt;}
.h16{height:54.560000pt;}
.h10{height:55.402500pt;}
.h21{height:57.375000pt;}
.h34{height:61.280000pt;}
.h38{height:61.312000pt;}
.h1a{height:61.440000pt;}
.h2f{height:61.472000pt;}
.h2{height:62.812500pt;}
.h3{height:66.750000pt;}
.h26{height:66.883500pt;}
.h19{height:73.600000pt;}
.hf{height:73.632000pt;}
.h3c{height:85.760000pt;}
.h32{height:85.920000pt;}
.h36{height:85.952000pt;}
.h4{height:88.777500pt;}
.he{height:92.000000pt;}
.h37{height:98.080000pt;}
.h3b{height:98.112000pt;}
.h3d{height:98.272000pt;}
.h18{height:110.400000pt;}
.h17{height:110.432000pt;}
.h40{height:122.560000pt;}
.h2e{height:147.066667pt;}
.h3a{height:184.026667pt;}
.h13{height:256.826667pt;}
.h25{height:363.040000pt;}
.h1c{height:423.586667pt;}
.h27{height:793.760000pt;}
.h28{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:28.480000pt;}
.wb{width:29.440000pt;}
.w8{width:29.600000pt;}
.w5{width:29.760000pt;}
.w12{width:44.320000pt;}
.w31{width:73.312000pt;}
.w2e{width:74.912000pt;}
.w6{width:77.760000pt;}
.w9{width:80.800000pt;}
.w1d{width:84.352000pt;}
.wf{width:91.552000pt;}
.w20{width:93.792000pt;}
.w29{width:100.032000pt;}
.w23{width:103.232000pt;}
.w2c{width:112.832000pt;}
.w10{width:121.920000pt;}
.w25{width:122.112000pt;}
.w15{width:134.426667pt;}
.w2f{width:140.826667pt;}
.w1e{width:157.146667pt;}
.w21{width:160.026667pt;}
.we{width:163.386667pt;}
.wc{width:164.346667pt;}
.w13{width:167.866667pt;}
.w1b{width:169.466667pt;}
.w27{width:172.666667pt;}
.w2a{width:178.906667pt;}
.w14{width:228.026667pt;}
.wd{width:235.546667pt;}
.wa{width:517.053333pt;}
.w7{width:518.973333pt;}
.w11{width:526.853333pt;}
.w16{width:567.040000pt;}
.w4{width:595.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2b{width:812.413333pt;}
.w24{width:822.013333pt;}
.w28{width:831.453333pt;}
.w22{width:840.893333pt;}
.w1c{width:850.333333pt;}
.w1f{width:853.213333pt;}
.w2d{width:859.773333pt;}
.w30{width:889.693333pt;}
.w1a{width:1028.160000pt;}
.w26{width:1034.400000pt;}
.w19{width:1122.559983pt;}
.w17{width:1122.560000pt;}
.w18{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:3.680000pt;}
.x10{left:4.640000pt;}
.x2e{left:5.920000pt;}
.x13{left:7.360000pt;}
.x2b{left:9.440000pt;}
.x2f{left:11.040000pt;}
.x33{left:12.794667pt;}
.x37{left:13.914667pt;}
.x34{left:15.194667pt;}
.x12{left:16.160000pt;}
.x2d{left:18.080000pt;}
.x26{left:19.680000pt;}
.x27{left:21.600000pt;}
.x57{left:23.360000pt;}
.x23{left:24.320000pt;}
.x47{left:26.240000pt;}
.x28{left:28.000000pt;}
.x29{left:28.954667pt;}
.x22{left:30.400000pt;}
.x35{left:31.674667pt;}
.x2a{left:32.954667pt;}
.x32{left:36.154667pt;}
.x31{left:37.914667pt;}
.x2c{left:43.834667pt;}
.x36{left:48.634667pt;}
.x46{left:50.440000pt;}
.x44{left:51.360000pt;}
.x30{left:61.434667pt;}
.x49{left:62.880000pt;}
.x48{left:67.360000pt;}
.x4d{left:70.173333pt;}
.xf{left:84.992000pt;}
.x4e{left:87.520000pt;}
.x52{left:94.399983pt;}
.x14{left:108.832000pt;}
.x3{left:113.471988pt;}
.xc{left:116.191988pt;}
.x3f{left:117.151988pt;}
.x4a{left:119.391988pt;}
.x24{left:122.912000pt;}
.x7{left:124.671988pt;}
.x6{left:129.951988pt;}
.x8{left:134.906655pt;}
.x9{left:135.866655pt;}
.xe{left:137.466655pt;}
.x41{left:141.946655pt;}
.x3e{left:144.986655pt;}
.x20{left:146.266655pt;}
.x4f{left:147.546655pt;}
.x3d{left:149.466655pt;}
.x5d{left:151.226667pt;}
.x3b{left:153.946655pt;}
.x3a{left:155.706655pt;}
.x3c{left:158.426655pt;}
.x39{left:160.186655pt;}
.x1a{left:161.466655pt;}
.x55{left:167.226667pt;}
.x21{left:170.266655pt;}
.x1c{left:175.546655pt;}
.x53{left:179.546667pt;}
.x5{left:180.666655pt;}
.x59{left:182.746667pt;}
.x1b{left:185.466655pt;}
.x15{left:186.586667pt;}
.x17{left:189.626667pt;}
.x4b{left:197.626655pt;}
.x25{left:237.506667pt;}
.xd{left:245.146655pt;}
.x1e{left:279.746667pt;}
.xb{left:288.866655pt;}
.x43{left:321.986667pt;}
.x42{left:324.066655pt;}
.x50{left:332.346650pt;}
.xa{left:343.586655pt;}
.x1{left:351.426655pt;}
.x4{left:396.866655pt;}
.x1f{left:517.213333pt;}
.x45{left:550.333333pt;}
.x40{left:629.573322pt;}
.x38{left:664.453322pt;}
.x19{left:672.453322pt;}
.x2{left:680.453322pt;}
.x4c{left:681.573322pt;}
.x16{left:705.573333pt;}
.x18{left:706.693333pt;}
.x11{left:709.413333pt;}
.x58{left:992.453333pt;}
.x5b{left:1001.733333pt;}
.x51{left:1012.133317pt;}
.x5a{left:1014.533333pt;}
.x56{left:1020.773333pt;}
.x54{left:1030.213333pt;}
.x5c{left:1039.653333pt;}
.x5e{left:1041.253333pt;}
}




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