
    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_3ad29aaa2ed43f694d2bf0f8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_c8135af44dfd73c0dd1c1f9a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_0bd69efe1821b14fd4039fa1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_29a9937aabb391504045c6df.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_b4c3cc01ce2eb95b4d4a4419.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c2d6028b60ae3f4291e8f109.woff')format("woff");}.ff6{font-family:ff6;line-height:0.854492;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_ed618bdb0ff42e52e1f22600.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_1216a64ad63789e609d849eb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls6{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270600px;}
.ls8{letter-spacing:-0.240000px;}
.ls20{letter-spacing:-0.187200px;}
.lsc{letter-spacing:-0.143400px;}
.ls1b{letter-spacing:-0.097800px;}
.lsa{letter-spacing:-0.094800px;}
.ls1e{letter-spacing:-0.046800px;}
.ls5{letter-spacing:-0.036000px;}
.ls11{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls14{letter-spacing:0.063600px;}
.ls26{letter-spacing:0.126600px;}
.ls22{letter-spacing:0.126720px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.206640px;}
.ls1c{letter-spacing:0.308880px;}
.ls10{letter-spacing:0.319680px;}
.ls9{letter-spacing:0.328200px;}
.ls16{letter-spacing:0.329040px;}
.ls1d{letter-spacing:0.332640px;}
.lsf{letter-spacing:0.343440px;}
.ls4{letter-spacing:0.357000px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.366000px;}
.ls19{letter-spacing:0.386640px;}
.ls17{letter-spacing:0.466560px;}
.lsd{letter-spacing:0.624000px;}
.ls25{letter-spacing:0.708000px;}
.ls18{letter-spacing:0.732000px;}
.ls15{letter-spacing:0.781920px;}
.ls12{letter-spacing:0.799200px;}
.ls23{letter-spacing:0.846720px;}
.ls24{letter-spacing:1.086000px;}
.ls1a{letter-spacing:10.944000px;}
.ls21{letter-spacing:22.986720px;}
.lse{letter-spacing:202.828800px;}
.ls2{letter-spacing:378.163200px;}
.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;}
}
.wsd{word-spacing:-18.000000px;}
.wsc{word-spacing:-13.879200px;}
.ws10{word-spacing:-13.273800px;}
.ws9{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.136400px;}
.wse{word-spacing:-13.100400px;}
.wsf{word-spacing:-13.049400px;}
.ws8{word-spacing:-13.003800px;}
.ws0{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.342200px;}
.ws7{word-spacing:-9.092400px;}
.wsa{word-spacing:-8.553600px;}
.ws2{word-spacing:-7.884000px;}
.ws3{word-spacing:-7.632000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-6.033360px;}
._29{margin-left:-5.024640px;}
._23{margin-left:-3.876960px;}
._15{margin-left:-2.748960px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.260800px;}
._12{width:3.640800px;}
._14{width:5.019840px;}
._18{width:6.334560px;}
._17{width:7.529760px;}
._8{width:9.031200px;}
._9{width:10.196640px;}
._1a{width:11.808000px;}
._1b{width:13.152000px;}
._10{width:14.230320px;}
._11{width:15.597360px;}
._1f{width:16.859760px;}
._20{width:17.891760px;}
._2f{width:19.397280px;}
._21{width:20.437920px;}
._25{width:21.506160px;}
._d{width:22.536960px;}
._e{width:24.143040px;}
._c{width:25.637040px;}
._19{width:26.660400px;}
._13{width:27.848160px;}
._1e{width:29.880000px;}
._28{width:31.220400px;}
._22{width:32.628960px;}
._a{width:33.824160px;}
._f{width:34.922160px;}
._7{width:36.154800px;}
._16{width:44.102880px;}
._1c{width:46.898280px;}
._24{width:49.444560px;}
._b{width:51.513120px;}
._2e{width:73.624320px;}
._0{width:75.000000px;}
._32{width:84.859200px;}
._30{width:90.357120px;}
._31{width:91.447680px;}
._34{width:140.479680px;}
._33{width:141.594960px;}
._2d{width:143.722800px;}
._3{width:181.620000px;}
._2c{width:184.548240px;}
._6{width:202.972800px;}
._2b{width:332.428800px;}
._1d{width:1069.687200px;}
._2a{width:1805.128800px;}
._26{width:2309.345760px;}
._27{width:2325.130800px;}
.fc6{color:rgb(38,74,96);}
.fc5{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(1,2,5);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y56{bottom:-7.200000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:3.420000px;}
.y1e3{bottom:4.500000px;}
.y1e4{bottom:4.680000px;}
.ycf{bottom:5.220000px;}
.y1c9{bottom:5.400000px;}
.y11f{bottom:5.580000px;}
.y55{bottom:6.120000px;}
.ybf{bottom:6.840000px;}
.y1bf{bottom:7.020000px;}
.y115{bottom:7.200000px;}
.y15e{bottom:7.230000px;}
.y12d{bottom:7.380000px;}
.yf6{bottom:7.425000px;}
.ybd{bottom:7.560000px;}
.yc2{bottom:7.920000px;}
.y1e6{bottom:8.280000px;}
.ybb{bottom:9.180000px;}
.y1e1{bottom:9.360000px;}
.y1bc{bottom:9.540000px;}
.y16a{bottom:10.440000px;}
.y150{bottom:10.620000px;}
.y156{bottom:11.880000px;}
.y186{bottom:12.420000px;}
.y184{bottom:12.600000px;}
.y19f{bottom:13.320000px;}
.y1c7{bottom:15.480000px;}
.y11d{bottom:16.200000px;}
.y54{bottom:16.740000px;}
.y163{bottom:17.100000px;}
.y123{bottom:17.820000px;}
.yb6{bottom:18.000000px;}
.ycc{bottom:18.180000px;}
.y128{bottom:18.360000px;}
.y165{bottom:18.720000px;}
.y1dc{bottom:19.260000px;}
.y221{bottom:19.620000px;}
.y222{bottom:19.665000px;}
.y21d{bottom:19.800000px;}
.y117{bottom:19.980000px;}
.y167{bottom:20.520000px;}
.y1a0{bottom:20.874000px;}
.y1c5{bottom:20.880000px;}
.y152{bottom:21.060000px;}
.y11b{bottom:21.450000px;}
.y170{bottom:22.320000px;}
.y126{bottom:23.040000px;}
.y182{bottom:23.400000px;}
.y1a2{bottom:24.510000px;}
.y1be{bottom:24.660000px;}
.y121{bottom:26.820000px;}
.y1bb{bottom:27.180000px;}
.y53{bottom:27.360000px;}
.y169{bottom:28.080000px;}
.y1c6{bottom:33.120000px;}
.y12b{bottom:34.200000px;}
.ye0{bottom:35.640000px;}
.yb5{bottom:35.670000px;}
.ycb{bottom:35.820000px;}
.y1c4{bottom:38.520000px;}
.y1bd{bottom:38.730000px;}
.y125{bottom:40.500000px;}
.y181{bottom:41.040000px;}
.y52{bottom:44.820000px;}
.y1df{bottom:48.600000px;}
.y19d{bottom:50.574000px;}
.y168{bottom:50.940000px;}
.y12a{bottom:51.834000px;}
.y16c{bottom:52.740000px;}
.y7{bottom:56.340000px;}
.y58{bottom:56.520000px;}
.y180{bottom:58.680000px;}
.y1ba{bottom:62.460000px;}
.y154{bottom:68.760000px;}
.y6{bottom:70.056000px;}
.y1b8{bottom:85.530000px;}
.y51{bottom:88.020000px;}
.y50{bottom:102.240000px;}
.y1b7{bottom:103.170000px;}
.y129{bottom:108.576000px;}
.y1c1{bottom:109.620000px;}
.y198{bottom:114.876000px;}
.y22e{bottom:115.596000px;}
.y4f{bottom:116.280000px;}
.y40{bottom:116.856000px;}
.y244{bottom:119.196000px;}
.y214{bottom:119.376000px;}
.y1da{bottom:121.536000px;}
.yc9{bottom:122.076000px;}
.y22f{bottom:122.256000px;}
.yf4{bottom:123.336000px;}
.y4e{bottom:130.320000px;}
.y12e{bottom:130.896000px;}
.y197{bottom:132.336000px;}
.y22d{bottom:133.236000px;}
.y3f{bottom:134.496000px;}
.y19c{bottom:135.576000px;}
.y243{bottom:136.656000px;}
.y213{bottom:137.016000px;}
.y1d9{bottom:139.176000px;}
.yc8{bottom:139.716000px;}
.y92{bottom:139.896000px;}
.yf3{bottom:140.976000px;}
.y15c{bottom:144.216000px;}
.y4d{bottom:144.360000px;}
.y196{bottom:149.976000px;}
.y22c{bottom:150.870000px;}
.y3e{bottom:152.130000px;}
.y12c{bottom:153.030000px;}
.y242{bottom:154.290000px;}
.y212{bottom:154.650000px;}
.y1d8{bottom:156.630000px;}
.y91{bottom:157.350000px;}
.y4c{bottom:158.400000px;}
.yf2{bottom:158.430000px;}
.y15b{bottom:161.850000px;}
.y195{bottom:167.610000px;}
.y22b{bottom:168.330000px;}
.y3d{bottom:169.590000px;}
.y241{bottom:171.930000px;}
.y211{bottom:172.110000px;}
.y4b{bottom:172.440000px;}
.y19e{bottom:172.830000px;}
.y1d7{bottom:174.270000px;}
.y90{bottom:174.990000px;}
.y124{bottom:175.350000px;}
.yf1{bottom:176.070000px;}
.y15a{bottom:179.490000px;}
.y194{bottom:185.250000px;}
.y22a{bottom:185.970000px;}
.y4a{bottom:186.480000px;}
.y3c{bottom:187.230000px;}
.y240{bottom:189.570000px;}
.y210{bottom:189.750000px;}
.y1d6{bottom:191.910000px;}
.yc7{bottom:192.450000px;}
.y8f{bottom:192.630000px;}
.yf0{bottom:193.710000px;}
.y159{bottom:197.130000px;}
.y49{bottom:199.260000px;}
.y19a{bottom:202.530000px;}
.y193{bottom:202.710000px;}
.y229{bottom:203.610000px;}
.y3b{bottom:204.870000px;}
.y23f{bottom:207.030000px;}
.y20f{bottom:207.390000px;}
.y48{bottom:207.720000px;}
.y127{bottom:208.650000px;}
.y1d5{bottom:209.370000px;}
.yc6{bottom:210.090000px;}
.y8e{bottom:210.270000px;}
.yef{bottom:211.350000px;}
.y158{bottom:212.250000px;}
.y192{bottom:220.350000px;}
.y228{bottom:221.070000px;}
.y47{bottom:221.805000px;}
.y3a{bottom:222.510000px;}
.y23e{bottom:224.670000px;}
.y20e{bottom:224.850000px;}
.y1d4{bottom:227.010000px;}
.y8d{bottom:227.730000px;}
.yee{bottom:228.810000px;}
.y122{bottom:230.790000px;}
.y46{bottom:235.845000px;}
.y191{bottom:237.990000px;}
.y227{bottom:238.710000px;}
.y39{bottom:239.970000px;}
.y153{bottom:241.050000px;}
.y23d{bottom:242.310000px;}
.y20d{bottom:242.490000px;}
.y1d3{bottom:244.650000px;}
.yc5{bottom:245.190000px;}
.y8c{bottom:245.370000px;}
.yed{bottom:246.450000px;}
.y19b{bottom:246.810000px;}
.y45{bottom:249.885000px;}
.y190{bottom:255.450000px;}
.y226{bottom:256.350000px;}
.y38{bottom:257.610000px;}
.y23c{bottom:259.770000px;}
.y20c{bottom:260.130000px;}
.y1d2{bottom:262.110000px;}
.y8b{bottom:263.010000px;}
.y120{bottom:263.550000px;}
.y44{bottom:263.925000px;}
.yec{bottom:264.090000px;}
.y157{bottom:269.490000px;}
.yc4{bottom:270.570000px;}
.y18f{bottom:273.090000px;}
.y225{bottom:273.990000px;}
.y37{bottom:275.250000px;}
.y43{bottom:276.525000px;}
.y23b{bottom:277.410000px;}
.y20b{bottom:277.770000px;}
.y1d1{bottom:279.750000px;}
.y8a{bottom:280.470000px;}
.yeb{bottom:281.550000px;}
.y42{bottom:287.685000px;}
.y18e{bottom:290.730000px;}
.y199{bottom:291.270000px;}
.y224{bottom:291.450000px;}
.y36{bottom:292.710000px;}
.y23a{bottom:295.050000px;}
.y20a{bottom:295.230000px;}
.y155{bottom:297.930000px;}
.y89{bottom:298.110000px;}
.yc3{bottom:299.190000px;}
.y1d0{bottom:299.910000px;}
.y11e{bottom:305.310000px;}
.y18d{bottom:308.190000px;}
.y223{bottom:309.090000px;}
.y35{bottom:310.350000px;}
.y239{bottom:312.510000px;}
.y209{bottom:312.870000px;}
.y88{bottom:315.750000px;}
.y1cf{bottom:317.550000px;}
.yea{bottom:324.390000px;}
.y18c{bottom:325.830000px;}
.yc1{bottom:327.810000px;}
.y34{bottom:327.990000px;}
.y238{bottom:330.150000px;}
.y208{bottom:330.510000px;}
.y87{bottom:333.210000px;}
.y1ce{bottom:335.010000px;}
.y18b{bottom:343.515000px;}
.y33{bottom:345.495000px;}
.y237{bottom:347.835000px;}
.y207{bottom:348.015000px;}
.y86{bottom:350.895000px;}
.y1cd{bottom:352.695000px;}
.ye9{bottom:353.235000px;}
.y151{bottom:356.475000px;}
.y113{bottom:357.015000px;}
.y220{bottom:359.355000px;}
.yc0{bottom:360.975000px;}
.y32{bottom:362.955000px;}
.y236{bottom:365.295000px;}
.y206{bottom:365.655000px;}
.y85{bottom:368.535000px;}
.y1cc{bottom:370.335000px;}
.y112{bottom:374.475000px;}
.y18a{bottom:378.615000px;}
.y31{bottom:380.415000px;}
.ye8{bottom:381.855000px;}
.y235{bottom:382.935000px;}
.y205{bottom:383.295000px;}
.y84{bottom:386.175000px;}
.ybe{bottom:389.775000px;}
.y1cb{bottom:390.495000px;}
.y111{bottom:392.115000px;}
.y21f{bottom:394.275000px;}
.y189{bottom:396.255000px;}
.y30{bottom:398.055000px;}
.y234{bottom:400.575000px;}
.y204{bottom:400.755000px;}
.y83{bottom:403.635000px;}
.y1ca{bottom:407.955000px;}
.y110{bottom:409.755000px;}
.y14f{bottom:410.115000px;}
.ye7{bottom:410.475000px;}
.y188{bottom:413.895000px;}
.y21e{bottom:414.255000px;}
.y2f{bottom:415.515000px;}
.y233{bottom:418.215000px;}
.y203{bottom:418.395000px;}
.y82{bottom:421.275000px;}
.ybc{bottom:421.815000px;}
.y1c8{bottom:423.615000px;}
.y10f{bottom:427.215000px;}
.y187{bottom:429.555000px;}
.y2e{bottom:433.155000px;}
.y232{bottom:435.675000px;}
.y202{bottom:436.035000px;}
.y81{bottom:438.915000px;}
.ye6{bottom:439.275000px;}
.y14e{bottom:441.975000px;}
.y10e{bottom:444.855000px;}
.y1c0{bottom:445.215000px;}
.y21c{bottom:450.435000px;}
.y2d{bottom:450.795000px;}
.y231{bottom:453.315000px;}
.y201{bottom:453.675000px;}
.yba{bottom:454.575000px;}
.y80{bottom:456.375000px;}
.y185{bottom:457.995000px;}
.y14d{bottom:459.435000px;}
.y10d{bottom:462.495000px;}
.ye5{bottom:467.895000px;}
.y2c{bottom:468.255000px;}
.y230{bottom:470.955000px;}
.y200{bottom:471.135000px;}
.y7f{bottom:474.015000px;}
.y14c{bottom:477.075000px;}
.y10c{bottom:479.955000px;}
.y2b{bottom:485.895000px;}
.y183{bottom:486.255000px;}
.y21b{bottom:488.415000px;}
.y1ff{bottom:488.775000px;}
.yb9{bottom:489.135000px;}
.y7e{bottom:491.655000px;}
.y1c3{bottom:494.535000px;}
.y14b{bottom:494.715000px;}
.ye4{bottom:496.695000px;}
.y10b{bottom:497.595000px;}
.y2a{bottom:503.535000px;}
.y21a{bottom:506.055000px;}
.y1fe{bottom:506.415000px;}
.y7d{bottom:509.115000px;}
.y14a{bottom:512.355000px;}
.y17f{bottom:514.695000px;}
.y10a{bottom:515.235000px;}
.yb8{bottom:517.755000px;}
.y29{bottom:520.995000px;}
.y219{bottom:523.695000px;}
.y1fd{bottom:523.875000px;}
.ye3{bottom:525.315000px;}
.y7c{bottom:526.755000px;}
.y149{bottom:529.815000px;}
.y109{bottom:532.875000px;}
.y28{bottom:538.635000px;}
.y218{bottom:541.155000px;}
.y1fc{bottom:541.515000px;}
.y7b{bottom:544.395000px;}
.yb7{bottom:546.375000px;}
.y148{bottom:547.455000px;}
.y1c2{bottom:549.255000px;}
.y108{bottom:550.335000px;}
.ye2{bottom:553.935000px;}
.y27{bottom:556.275000px;}
.y217{bottom:558.795000px;}
.y1fb{bottom:559.155000px;}
.y7a{bottom:561.855000px;}
.y147{bottom:565.095000px;}
.y107{bottom:567.975000px;}
.y1b6{bottom:570.855000px;}
.y11c{bottom:571.575000px;}
.y26{bottom:573.915000px;}
.yb3{bottom:575.175000px;}
.y216{bottom:576.435000px;}
.y1fa{bottom:576.615000px;}
.y79{bottom:579.495000px;}
.y146{bottom:582.555000px;}
.ye1{bottom:582.735000px;}
.y106{bottom:585.615000px;}
.y17e{bottom:589.395000px;}
.y25{bottom:593.535000px;}
.y215{bottom:594.075000px;}
.y1f9{bottom:594.255000px;}
.y78{bottom:597.135000px;}
.y145{bottom:600.195000px;}
.y105{bottom:603.075000px;}
.y11a{bottom:603.255000px;}
.y24{bottom:611.205000px;}
.ydf{bottom:611.385000px;}
.y1b9{bottom:611.565000px;}
.y1f8{bottom:611.925000px;}
.y17d{bottom:613.545000px;}
.y77{bottom:614.805000px;}
.y144{bottom:617.865000px;}
.y104{bottom:620.745000px;}
.y23{bottom:628.845000px;}
.yb2{bottom:629.205000px;}
.y1f7{bottom:629.565000px;}
.y17c{bottom:631.185000px;}
.y76{bottom:632.265000px;}
.y143{bottom:635.325000px;}
.y103{bottom:638.385000px;}
.y119{bottom:640.185000px;}
.y22{bottom:646.485000px;}
.yb1{bottom:646.845000px;}
.y1f6{bottom:647.025000px;}
.y17b{bottom:648.825000px;}
.y75{bottom:649.905000px;}
.y142{bottom:652.965000px;}
.y102{bottom:655.845000px;}
.y41{bottom:656.565000px;}
.y21{bottom:664.125000px;}
.yb0{bottom:664.305000px;}
.y1f5{bottom:664.665000px;}
.yde{bottom:665.385000px;}
.y17a{bottom:666.285000px;}
.y74{bottom:667.545000px;}
.y141{bottom:670.605000px;}
.y101{bottom:673.485000px;}
.y20{bottom:681.585000px;}
.yaf{bottom:681.945000px;}
.y1f4{bottom:682.305000px;}
.ydd{bottom:683.025000px;}
.y179{bottom:683.925000px;}
.y73{bottom:685.005000px;}
.y140{bottom:688.245000px;}
.y1b5{bottom:690.045000px;}
.y100{bottom:691.125000px;}
.y1f{bottom:699.225000px;}
.yae{bottom:699.585000px;}
.y1f3{bottom:699.765000px;}
.ydc{bottom:700.665000px;}
.y178{bottom:701.565000px;}
.y72{bottom:702.645000px;}
.y13f{bottom:705.705000px;}
.yff{bottom:708.765000px;}
.y1b4{bottom:714.525000px;}
.y1e{bottom:716.865000px;}
.yad{bottom:717.045000px;}
.y1f2{bottom:717.405000px;}
.ydb{bottom:718.125000px;}
.y177{bottom:719.205000px;}
.y71{bottom:720.285000px;}
.y13e{bottom:723.345000px;}
.yfe{bottom:726.225000px;}
.y1b3{bottom:732.165000px;}
.y1d{bottom:734.325000px;}
.yac{bottom:734.685000px;}
.y1f1{bottom:735.045000px;}
.yda{bottom:735.765000px;}
.y176{bottom:736.665000px;}
.y70{bottom:737.745000px;}
.y13d{bottom:740.985000px;}
.yfd{bottom:743.865000px;}
.y1b2{bottom:749.805000px;}
.y1c{bottom:751.965000px;}
.yab{bottom:752.325000px;}
.y1f0{bottom:752.505000px;}
.yd9{bottom:753.405000px;}
.y175{bottom:754.305000px;}
.y6f{bottom:755.385000px;}
.y13c{bottom:758.445000px;}
.yfc{bottom:761.505000px;}
.y1b1{bottom:767.265000px;}
.y1b{bottom:769.605000px;}
.yaa{bottom:769.965000px;}
.y1ef{bottom:770.145000px;}
.yd8{bottom:770.865000px;}
.y174{bottom:771.945000px;}
.y6e{bottom:773.025000px;}
.y13b{bottom:776.085000px;}
.yfb{bottom:778.965000px;}
.y1b0{bottom:784.905000px;}
.y1a{bottom:787.065000px;}
.ya9{bottom:787.425000px;}
.y1ee{bottom:787.785000px;}
.y173{bottom:789.405000px;}
.y6d{bottom:790.665000px;}
.y13a{bottom:793.725000px;}
.yd7{bottom:796.245000px;}
.yfa{bottom:796.605000px;}
.y1af{bottom:802.545000px;}
.y19{bottom:804.705000px;}
.ya8{bottom:805.065000px;}
.y1ed{bottom:805.245000px;}
.y172{bottom:807.045000px;}
.y6c{bottom:808.125000px;}
.y139{bottom:811.185000px;}
.yf9{bottom:814.245000px;}
.y1ae{bottom:820.005000px;}
.y18{bottom:822.345000px;}
.ya7{bottom:822.705000px;}
.y1ec{bottom:822.885000px;}
.y171{bottom:824.685000px;}
.yd6{bottom:824.865000px;}
.y6b{bottom:825.765000px;}
.y138{bottom:828.825000px;}
.yf8{bottom:829.185000px;}
.y1ad{bottom:837.645000px;}
.y16f{bottom:839.625000px;}
.y17{bottom:839.985000px;}
.ya6{bottom:840.165000px;}
.y1eb{bottom:840.525000px;}
.y6a{bottom:843.405000px;}
.y137{bottom:846.465000px;}
.yf7{bottom:847.905000px;}
.yd5{bottom:853.665000px;}
.y1ac{bottom:855.285000px;}
.y16{bottom:857.445000px;}
.ya5{bottom:857.805000px;}
.y1ea{bottom:858.165000px;}
.y69{bottom:860.865000px;}
.y136{bottom:864.105000px;}
.yf5{bottom:866.805000px;}
.y1ab{bottom:872.790000px;}
.y15{bottom:875.130000px;}
.ya4{bottom:875.490000px;}
.y1e9{bottom:875.670000px;}
.y16b{bottom:877.470000px;}
.y68{bottom:878.550000px;}
.y135{bottom:881.610000px;}
.yd4{bottom:882.330000px;}
.y14{bottom:892.770000px;}
.ya3{bottom:892.950000px;}
.y1e8{bottom:893.310000px;}
.y67{bottom:896.190000px;}
.y134{bottom:899.250000px;}
.y16e{bottom:900.150000px;}
.y13{bottom:910.230000px;}
.ya2{bottom:910.590000px;}
.yd3{bottom:910.950000px;}
.y66{bottom:913.650000px;}
.y133{bottom:916.890000px;}
.y16d{bottom:922.830000px;}
.y1e7{bottom:925.890000px;}
.y12{bottom:927.870000px;}
.ya1{bottom:928.230000px;}
.y1aa{bottom:930.750000px;}
.y65{bottom:931.290000px;}
.y132{bottom:934.350000px;}
.yd2{bottom:939.750000px;}
.y11{bottom:945.510000px;}
.ya0{bottom:945.690000px;}
.y1a9{bottom:948.390000px;}
.y64{bottom:948.930000px;}
.y1e5{bottom:950.550000px;}
.y131{bottom:951.990000px;}
.y10{bottom:962.970000px;}
.y9f{bottom:963.330000px;}
.y63{bottom:966.570000px;}
.yd1{bottom:968.370000px;}
.y130{bottom:969.630000px;}
.y1de{bottom:973.770000px;}
.yf{bottom:980.610000px;}
.y9e{bottom:980.970000px;}
.y62{bottom:984.030000px;}
.y1a8{bottom:986.010000px;}
.y12f{bottom:987.090000px;}
.y1e2{bottom:993.390000px;}
.yd0{bottom:996.990000px;}
.ye{bottom:997.890000px;}
.y9d{bottom:998.610000px;}
.y61{bottom:1001.670000px;}
.y164{bottom:1002.030000px;}
.y1a7{bottom:1003.650000px;}
.y166{bottom:1011.930000px;}
.y1e0{bottom:1013.010000px;}
.yd{bottom:1013.730000px;}
.y9c{bottom:1016.070000px;}
.y60{bottom:1019.310000px;}
.y1a6{bottom:1021.290000px;}
.yce{bottom:1029.030000px;}
.yc{bottom:1030.110000px;}
.y9b{bottom:1033.710000px;}
.y162{bottom:1035.510000px;}
.y5f{bottom:1036.770000px;}
.y1dd{bottom:1037.310000px;}
.y1a5{bottom:1038.750000px;}
.y118{bottom:1044.150000px;}
.yb{bottom:1049.550000px;}
.y9a{bottom:1051.350000px;}
.y5e{bottom:1054.410000px;}
.y1a4{bottom:1056.390000px;}
.ycd{bottom:1059.630000px;}
.y116{bottom:1066.830000px;}
.y161{bottom:1067.550000px;}
.y99{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5d{bottom:1072.050000px;}
.y1a3{bottom:1074.030000px;}
.y98{bottom:1086.450000px;}
.y1db{bottom:1087.170000px;}
.yca{bottom:1088.250000px;}
.y5c{bottom:1089.510000px;}
.y160{bottom:1089.870000px;}
.y9{bottom:1092.390000px;}
.y114{bottom:1102.290000px;}
.y97{bottom:1104.090000px;}
.y5b{bottom:1107.150000px;}
.y15f{bottom:1112.010000px;}
.y1a1{bottom:1113.450000px;}
.y8{bottom:1114.350000px;}
.y96{bottom:1121.550000px;}
.y5a{bottom:1124.790000px;}
.y15d{bottom:1134.330000px;}
.y5{bottom:1135.050000px;}
.y95{bottom:1139.220000px;}
.y59{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y94{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y93{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y57{bottom:1197.540000px;}
.h13{height:17.460000px;}
.h19{height:17.496000px;}
.h12{height:17.640000px;}
.h1b{height:17.676000px;}
.h4b{height:18.720000px;}
.h18{height:19.440000px;}
.h46{height:19.620000px;}
.h21{height:19.800000px;}
.h36{height:19.836000px;}
.hb{height:20.117109px;}
.h16{height:21.060000px;}
.h1d{height:21.420000px;}
.h1c{height:21.456000px;}
.h27{height:21.600000px;}
.h15{height:21.780000px;}
.h17{height:22.176000px;}
.h4c{height:22.500000px;}
.h14{height:23.400000px;}
.h4a{height:23.580000px;}
.h4d{height:23.760000px;}
.h2e{height:24.480000px;}
.h2d{height:24.660000px;}
.h28{height:24.840000px;}
.h2a{height:24.876000px;}
.h2c{height:26.100000px;}
.h39{height:26.460000px;}
.h38{height:26.640000px;}
.h3d{height:27.540000px;}
.h20{height:30.420000px;}
.he{height:30.480469px;}
.h2f{height:31.320000px;}
.h23{height:31.860000px;}
.h25{height:32.580000px;}
.h30{height:32.760000px;}
.h47{height:33.480000px;}
.h4{height:33.683203px;}
.h4e{height:33.840000px;}
.h4f{height:33.876000px;}
.h1e{height:34.200000px;}
.h31{height:34.740000px;}
.h3e{height:35.100000px;}
.h2{height:35.357344px;}
.h1f{height:35.676000px;}
.h35{height:36.576000px;}
.h3{height:38.100586px;}
.h3f{height:38.736000px;}
.hc{height:40.843828px;}
.h22{height:41.040000px;}
.h9{height:41.726953px;}
.h3b{height:42.120000px;}
.h33{height:42.300000px;}
.h8{height:45.720703px;}
.h45{height:47.340000px;}
.h48{height:48.960000px;}
.h1a{height:49.860000px;}
.h11{height:49.896000px;}
.h10{height:50.273438px;}
.h5{height:50.597578px;}
.h40{height:52.417969px;}
.h44{height:52.740000px;}
.h24{height:54.720000px;}
.h7{height:56.084062px;}
.hf{height:58.819922px;}
.hd{height:60.960938px;}
.h49{height:62.820000px;}
.h3c{height:64.800000px;}
.h32{height:65.160000px;}
.h6{height:65.837812px;}
.h26{height:66.060000px;}
.h34{height:66.780000px;}
.h37{height:72.900000px;}
.h42{height:76.500000px;}
.h29{height:78.516000px;}
.h2b{height:82.980000px;}
.h3a{height:86.580000px;}
.h41{height:117.216000px;}
.h43{height:123.840000px;}
.ha{height:300.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:16.380000px;}
.w3e{width:18.000000px;}
.w4c{width:20.520000px;}
.w1a{width:35.460000px;}
.w38{width:40.500000px;}
.w37{width:49.500000px;}
.w3d{width:49.680000px;}
.w29{width:50.940000px;}
.w5a{width:58.176000px;}
.w3a{width:58.536000px;}
.w4b{width:59.040000px;}
.w46{width:59.220000px;}
.w41{width:59.940000px;}
.w19{width:60.516000px;}
.w56{width:61.740000px;}
.w59{width:63.000000px;}
.w45{width:63.036000px;}
.w49{width:63.180000px;}
.w3b{width:65.520000px;}
.w1b{width:73.440000px;}
.w48{width:74.556000px;}
.w6{width:74.700000px;}
.w52{width:79.200000px;}
.w3c{width:81.036000px;}
.w28{width:84.096000px;}
.w9{width:84.420000px;}
.w7{width:84.456000px;}
.w23{width:84.636000px;}
.w55{width:86.976000px;}
.w4f{width:87.336000px;}
.w54{width:88.200000px;}
.w53{width:88.776000px;}
.w4a{width:88.956000px;}
.w32{width:89.856000px;}
.w2c{width:90.216000px;}
.w2f{width:90.720000px;}
.w31{width:93.240000px;}
.w2d{width:93.420000px;}
.w30{width:93.456000px;}
.w51{width:95.040000px;}
.w2e{width:98.676000px;}
.w27{width:103.320000px;}
.w26{width:103.680000px;}
.w1c{width:103.896000px;}
.w22{width:104.040000px;}
.w57{width:104.616000px;}
.w5d{width:105.516000px;}
.w4d{width:107.100000px;}
.w36{width:112.716000px;}
.w25{width:113.796000px;}
.w4{width:122.256000px;}
.w35{width:124.776000px;}
.w5b{width:125.676000px;}
.w43{width:128.520000px;}
.w14{width:128.556000px;}
.w1f{width:128.916000px;}
.w39{width:131.436000px;}
.w3f{width:135.540000px;}
.w44{width:138.456000px;}
.w5{width:141.876000px;}
.w8{width:142.056000px;}
.wc{width:142.236000px;}
.wb{width:148.140000px;}
.w47{width:148.716000px;}
.w42{width:149.076000px;}
.w18{width:149.760000px;}
.w1e{width:152.490000px;}
.w34{width:154.260000px;}
.wf{width:155.370000px;}
.we{width:155.730000px;}
.w5c{width:157.680000px;}
.w50{width:167.070000px;}
.w16{width:169.590000px;}
.w17{width:178.050000px;}
.w12{width:200.910000px;}
.w20{width:201.270000px;}
.w13{width:206.490000px;}
.w2a{width:218.010000px;}
.w3{width:221.970000px;}
.w24{width:269.850000px;}
.wa{width:291.090000px;}
.wd{width:312.015000px;}
.w11{width:335.775000px;}
.w21{width:384.735000px;}
.w40{width:407.235000px;}
.w2b{width:472.755000px;}
.w4e{width:522.075000px;}
.w10{width:537.405000px;}
.w58{width:576.645000px;}
.w15{width:596.265000px;}
.w33{width:616.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x24{left:114.875987px;}
.x3f{left:117.396000px;}
.x25{left:118.475987px;}
.x4e{left:120.996000px;}
.x46{left:127.655987px;}
.x54{left:130.535987px;}
.x23{left:135.035987px;}
.x45{left:136.116000px;}
.x4d{left:138.996000px;}
.x3{left:143.135987px;}
.x28{left:148.536000px;}
.x30{left:149.796000px;}
.x7{left:153.029987px;}
.x3d{left:157.169987px;}
.x56{left:158.250000px;}
.xa{left:159.509987px;}
.x53{left:164.369987px;}
.x2e{left:165.630000px;}
.x20{left:177.870000px;}
.x52{left:183.450000px;}
.x55{left:185.969987px;}
.x4{left:194.609987px;}
.x34{left:201.630000px;}
.x13{left:213.510000px;}
.x57{left:221.970000px;}
.xd{left:234.210000px;}
.x49{left:246.990000px;}
.x18{left:249.689987px;}
.x36{left:254.370000px;}
.xc{left:262.829987px;}
.x3a{left:268.229987px;}
.x3c{left:272.549987px;}
.x1b{left:274.349987px;}
.x12{left:278.174987px;}
.x17{left:279.434987px;}
.x58{left:280.875000px;}
.x6{left:283.394987px;}
.x50{left:288.975000px;}
.x1e{left:301.035000px;}
.x19{left:303.015000px;}
.x29{left:318.855000px;}
.x8{left:322.454987px;}
.x3e{left:330.914987px;}
.x14{left:336.135000px;}
.x27{left:340.094987px;}
.x9{left:342.614987px;}
.x59{left:344.595000px;}
.x2f{left:348.554987px;}
.x37{left:353.775000px;}
.xf{left:357.015000px;}
.x26{left:359.894987px;}
.x1c{left:370.154987px;}
.x22{left:385.095000px;}
.x4a{left:386.175000px;}
.x2d{left:393.015000px;}
.x40{left:397.875000px;}
.x3b{left:404.354987px;}
.x33{left:420.375000px;}
.x38{left:445.215000px;}
.x5{left:446.654987px;}
.x1f{left:450.075000px;}
.x1a{left:451.875000px;}
.x4b{left:461.595000px;}
.x51{left:464.835000px;}
.x5a{left:470.985000px;}
.x15{left:478.725000px;}
.x2a{left:497.625000px;}
.x10{left:499.425000px;}
.xb{left:507.344987px;}
.x41{left:511.305000px;}
.x1d{left:512.925000px;}
.x21{left:514.365000px;}
.x47{left:524.985000px;}
.x31{left:534.525000px;}
.x39{left:539.385000px;}
.x16{left:553.965000px;}
.x42{left:561.705000px;}
.x11{left:574.665000px;}
.x48{left:584.925000px;}
.x43{left:602.925000px;}
.x5b{left:629.385000px;}
.x35{left:632.985000px;}
.x32{left:638.565000px;}
.x4f{left:643.065000px;}
.x2b{left:648.105000px;}
.x4c{left:674.970000px;}
.x44{left:684.690000px;}
.x2c{left:709.350000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240533pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls20{letter-spacing:-0.166400pt;}
.lsc{letter-spacing:-0.127467pt;}
.ls1b{letter-spacing:-0.086933pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls1e{letter-spacing:-0.041600pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls11{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls14{letter-spacing:0.056533pt;}
.ls26{letter-spacing:0.112533pt;}
.ls22{letter-spacing:0.112640pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.183680pt;}
.ls1c{letter-spacing:0.274560pt;}
.ls10{letter-spacing:0.284160pt;}
.ls9{letter-spacing:0.291733pt;}
.ls16{letter-spacing:0.292480pt;}
.ls1d{letter-spacing:0.295680pt;}
.lsf{letter-spacing:0.305280pt;}
.ls4{letter-spacing:0.317333pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.325333pt;}
.ls19{letter-spacing:0.343680pt;}
.ls17{letter-spacing:0.414720pt;}
.lsd{letter-spacing:0.554667pt;}
.ls25{letter-spacing:0.629333pt;}
.ls18{letter-spacing:0.650667pt;}
.ls15{letter-spacing:0.695040pt;}
.ls12{letter-spacing:0.710400pt;}
.ls23{letter-spacing:0.752640pt;}
.ls24{letter-spacing:0.965333pt;}
.ls1a{letter-spacing:9.728000pt;}
.ls21{letter-spacing:20.432640pt;}
.lse{letter-spacing:180.292267pt;}
.ls2{letter-spacing:336.145067pt;}
.wsd{word-spacing:-16.000000pt;}
.wsc{word-spacing:-12.337067pt;}
.ws10{word-spacing:-11.798933pt;}
.ws9{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.676800pt;}
.wse{word-spacing:-11.644800pt;}
.wsf{word-spacing:-11.599467pt;}
.ws8{word-spacing:-11.558933pt;}
.ws0{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.193067pt;}
.ws7{word-spacing:-8.082133pt;}
.wsa{word-spacing:-7.603200pt;}
.ws2{word-spacing:-7.008000pt;}
.ws3{word-spacing:-6.784000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-5.362987pt;}
._29{margin-left:-4.466347pt;}
._23{margin-left:-3.446187pt;}
._15{margin-left:-2.443520pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:2.009600pt;}
._12{width:3.236267pt;}
._14{width:4.462080pt;}
._18{width:5.630720pt;}
._17{width:6.693120pt;}
._8{width:8.027733pt;}
._9{width:9.063680pt;}
._1a{width:10.496000pt;}
._1b{width:11.690667pt;}
._10{width:12.649173pt;}
._11{width:13.864320pt;}
._1f{width:14.986453pt;}
._20{width:15.903787pt;}
._2f{width:17.242027pt;}
._21{width:18.167040pt;}
._25{width:19.116587pt;}
._d{width:20.032853pt;}
._e{width:21.460480pt;}
._c{width:22.788480pt;}
._19{width:23.698133pt;}
._13{width:24.753920pt;}
._1e{width:26.560000pt;}
._28{width:27.751467pt;}
._22{width:29.003520pt;}
._a{width:30.065920pt;}
._f{width:31.041920pt;}
._7{width:32.137600pt;}
._16{width:39.202560pt;}
._1c{width:41.687360pt;}
._24{width:43.950720pt;}
._b{width:45.789440pt;}
._2e{width:65.443840pt;}
._0{width:66.666667pt;}
._32{width:75.430400pt;}
._30{width:80.317440pt;}
._31{width:81.286827pt;}
._34{width:124.870827pt;}
._33{width:125.862187pt;}
._2d{width:127.753600pt;}
._3{width:161.440000pt;}
._2c{width:164.042880pt;}
._6{width:180.420267pt;}
._2b{width:295.492267pt;}
._1d{width:950.833067pt;}
._2a{width:1604.558933pt;}
._26{width:2052.751787pt;}
._27{width:2066.782933pt;}
.fs6{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y56{bottom:-6.400000pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:3.040000pt;}
.y1e3{bottom:4.000000pt;}
.y1e4{bottom:4.160000pt;}
.ycf{bottom:4.640000pt;}
.y1c9{bottom:4.800000pt;}
.y11f{bottom:4.960000pt;}
.y55{bottom:5.440000pt;}
.ybf{bottom:6.080000pt;}
.y1bf{bottom:6.240000pt;}
.y115{bottom:6.400000pt;}
.y15e{bottom:6.426667pt;}
.y12d{bottom:6.560000pt;}
.yf6{bottom:6.600000pt;}
.ybd{bottom:6.720000pt;}
.yc2{bottom:7.040000pt;}
.y1e6{bottom:7.360000pt;}
.ybb{bottom:8.160000pt;}
.y1e1{bottom:8.320000pt;}
.y1bc{bottom:8.480000pt;}
.y16a{bottom:9.280000pt;}
.y150{bottom:9.440000pt;}
.y156{bottom:10.560000pt;}
.y186{bottom:11.040000pt;}
.y184{bottom:11.200000pt;}
.y19f{bottom:11.840000pt;}
.y1c7{bottom:13.760000pt;}
.y11d{bottom:14.400000pt;}
.y54{bottom:14.880000pt;}
.y163{bottom:15.200000pt;}
.y123{bottom:15.840000pt;}
.yb6{bottom:16.000000pt;}
.ycc{bottom:16.160000pt;}
.y128{bottom:16.320000pt;}
.y165{bottom:16.640000pt;}
.y1dc{bottom:17.120000pt;}
.y221{bottom:17.440000pt;}
.y222{bottom:17.480000pt;}
.y21d{bottom:17.600000pt;}
.y117{bottom:17.760000pt;}
.y167{bottom:18.240000pt;}
.y1a0{bottom:18.554667pt;}
.y1c5{bottom:18.560000pt;}
.y152{bottom:18.720000pt;}
.y11b{bottom:19.066667pt;}
.y170{bottom:19.840000pt;}
.y126{bottom:20.480000pt;}
.y182{bottom:20.800000pt;}
.y1a2{bottom:21.786667pt;}
.y1be{bottom:21.920000pt;}
.y121{bottom:23.840000pt;}
.y1bb{bottom:24.160000pt;}
.y53{bottom:24.320000pt;}
.y169{bottom:24.960000pt;}
.y1c6{bottom:29.440000pt;}
.y12b{bottom:30.400000pt;}
.ye0{bottom:31.680000pt;}
.yb5{bottom:31.706667pt;}
.ycb{bottom:31.840000pt;}
.y1c4{bottom:34.240000pt;}
.y1bd{bottom:34.426667pt;}
.y125{bottom:36.000000pt;}
.y181{bottom:36.480000pt;}
.y52{bottom:39.840000pt;}
.y1df{bottom:43.200000pt;}
.y19d{bottom:44.954667pt;}
.y168{bottom:45.280000pt;}
.y12a{bottom:46.074667pt;}
.y16c{bottom:46.880000pt;}
.y7{bottom:50.080000pt;}
.y58{bottom:50.240000pt;}
.y180{bottom:52.160000pt;}
.y1ba{bottom:55.520000pt;}
.y154{bottom:61.120000pt;}
.y6{bottom:62.272000pt;}
.y1b8{bottom:76.026667pt;}
.y51{bottom:78.240000pt;}
.y50{bottom:90.880000pt;}
.y1b7{bottom:91.706667pt;}
.y129{bottom:96.512000pt;}
.y1c1{bottom:97.440000pt;}
.y198{bottom:102.112000pt;}
.y22e{bottom:102.752000pt;}
.y4f{bottom:103.360000pt;}
.y40{bottom:103.872000pt;}
.y244{bottom:105.952000pt;}
.y214{bottom:106.112000pt;}
.y1da{bottom:108.032000pt;}
.yc9{bottom:108.512000pt;}
.y22f{bottom:108.672000pt;}
.yf4{bottom:109.632000pt;}
.y4e{bottom:115.840000pt;}
.y12e{bottom:116.352000pt;}
.y197{bottom:117.632000pt;}
.y22d{bottom:118.432000pt;}
.y3f{bottom:119.552000pt;}
.y19c{bottom:120.512000pt;}
.y243{bottom:121.472000pt;}
.y213{bottom:121.792000pt;}
.y1d9{bottom:123.712000pt;}
.yc8{bottom:124.192000pt;}
.y92{bottom:124.352000pt;}
.yf3{bottom:125.312000pt;}
.y15c{bottom:128.192000pt;}
.y4d{bottom:128.320000pt;}
.y196{bottom:133.312000pt;}
.y22c{bottom:134.106667pt;}
.y3e{bottom:135.226667pt;}
.y12c{bottom:136.026667pt;}
.y242{bottom:137.146667pt;}
.y212{bottom:137.466667pt;}
.y1d8{bottom:139.226667pt;}
.y91{bottom:139.866667pt;}
.y4c{bottom:140.800000pt;}
.yf2{bottom:140.826667pt;}
.y15b{bottom:143.866667pt;}
.y195{bottom:148.986667pt;}
.y22b{bottom:149.626667pt;}
.y3d{bottom:150.746667pt;}
.y241{bottom:152.826667pt;}
.y211{bottom:152.986667pt;}
.y4b{bottom:153.280000pt;}
.y19e{bottom:153.626667pt;}
.y1d7{bottom:154.906667pt;}
.y90{bottom:155.546667pt;}
.y124{bottom:155.866667pt;}
.yf1{bottom:156.506667pt;}
.y15a{bottom:159.546667pt;}
.y194{bottom:164.666667pt;}
.y22a{bottom:165.306667pt;}
.y4a{bottom:165.760000pt;}
.y3c{bottom:166.426667pt;}
.y240{bottom:168.506667pt;}
.y210{bottom:168.666667pt;}
.y1d6{bottom:170.586667pt;}
.yc7{bottom:171.066667pt;}
.y8f{bottom:171.226667pt;}
.yf0{bottom:172.186667pt;}
.y159{bottom:175.226667pt;}
.y49{bottom:177.120000pt;}
.y19a{bottom:180.026667pt;}
.y193{bottom:180.186667pt;}
.y229{bottom:180.986667pt;}
.y3b{bottom:182.106667pt;}
.y23f{bottom:184.026667pt;}
.y20f{bottom:184.346667pt;}
.y48{bottom:184.640000pt;}
.y127{bottom:185.466667pt;}
.y1d5{bottom:186.106667pt;}
.yc6{bottom:186.746667pt;}
.y8e{bottom:186.906667pt;}
.yef{bottom:187.866667pt;}
.y158{bottom:188.666667pt;}
.y192{bottom:195.866667pt;}
.y228{bottom:196.506667pt;}
.y47{bottom:197.160000pt;}
.y3a{bottom:197.786667pt;}
.y23e{bottom:199.706667pt;}
.y20e{bottom:199.866667pt;}
.y1d4{bottom:201.786667pt;}
.y8d{bottom:202.426667pt;}
.yee{bottom:203.386667pt;}
.y122{bottom:205.146667pt;}
.y46{bottom:209.640000pt;}
.y191{bottom:211.546667pt;}
.y227{bottom:212.186667pt;}
.y39{bottom:213.306667pt;}
.y153{bottom:214.266667pt;}
.y23d{bottom:215.386667pt;}
.y20d{bottom:215.546667pt;}
.y1d3{bottom:217.466667pt;}
.yc5{bottom:217.946667pt;}
.y8c{bottom:218.106667pt;}
.yed{bottom:219.066667pt;}
.y19b{bottom:219.386667pt;}
.y45{bottom:222.120000pt;}
.y190{bottom:227.066667pt;}
.y226{bottom:227.866667pt;}
.y38{bottom:228.986667pt;}
.y23c{bottom:230.906667pt;}
.y20c{bottom:231.226667pt;}
.y1d2{bottom:232.986667pt;}
.y8b{bottom:233.786667pt;}
.y120{bottom:234.266667pt;}
.y44{bottom:234.600000pt;}
.yec{bottom:234.746667pt;}
.y157{bottom:239.546667pt;}
.yc4{bottom:240.506667pt;}
.y18f{bottom:242.746667pt;}
.y225{bottom:243.546667pt;}
.y37{bottom:244.666667pt;}
.y43{bottom:245.800000pt;}
.y23b{bottom:246.586667pt;}
.y20b{bottom:246.906667pt;}
.y1d1{bottom:248.666667pt;}
.y8a{bottom:249.306667pt;}
.yeb{bottom:250.266667pt;}
.y42{bottom:255.720000pt;}
.y18e{bottom:258.426667pt;}
.y199{bottom:258.906667pt;}
.y224{bottom:259.066667pt;}
.y36{bottom:260.186667pt;}
.y23a{bottom:262.266667pt;}
.y20a{bottom:262.426667pt;}
.y155{bottom:264.826667pt;}
.y89{bottom:264.986667pt;}
.yc3{bottom:265.946667pt;}
.y1d0{bottom:266.586667pt;}
.y11e{bottom:271.386667pt;}
.y18d{bottom:273.946667pt;}
.y223{bottom:274.746667pt;}
.y35{bottom:275.866667pt;}
.y239{bottom:277.786667pt;}
.y209{bottom:278.106667pt;}
.y88{bottom:280.666667pt;}
.y1cf{bottom:282.266667pt;}
.yea{bottom:288.346667pt;}
.y18c{bottom:289.626667pt;}
.yc1{bottom:291.386667pt;}
.y34{bottom:291.546667pt;}
.y238{bottom:293.466667pt;}
.y208{bottom:293.786667pt;}
.y87{bottom:296.186667pt;}
.y1ce{bottom:297.786667pt;}
.y18b{bottom:305.346667pt;}
.y33{bottom:307.106667pt;}
.y237{bottom:309.186667pt;}
.y207{bottom:309.346667pt;}
.y86{bottom:311.906667pt;}
.y1cd{bottom:313.506667pt;}
.ye9{bottom:313.986667pt;}
.y151{bottom:316.866667pt;}
.y113{bottom:317.346667pt;}
.y220{bottom:319.426667pt;}
.yc0{bottom:320.866667pt;}
.y32{bottom:322.626667pt;}
.y236{bottom:324.706667pt;}
.y206{bottom:325.026667pt;}
.y85{bottom:327.586667pt;}
.y1cc{bottom:329.186667pt;}
.y112{bottom:332.866667pt;}
.y18a{bottom:336.546667pt;}
.y31{bottom:338.146667pt;}
.ye8{bottom:339.426667pt;}
.y235{bottom:340.386667pt;}
.y205{bottom:340.706667pt;}
.y84{bottom:343.266667pt;}
.ybe{bottom:346.466667pt;}
.y1cb{bottom:347.106667pt;}
.y111{bottom:348.546667pt;}
.y21f{bottom:350.466667pt;}
.y189{bottom:352.226667pt;}
.y30{bottom:353.826667pt;}
.y234{bottom:356.066667pt;}
.y204{bottom:356.226667pt;}
.y83{bottom:358.786667pt;}
.y1ca{bottom:362.626667pt;}
.y110{bottom:364.226667pt;}
.y14f{bottom:364.546667pt;}
.ye7{bottom:364.866667pt;}
.y188{bottom:367.906667pt;}
.y21e{bottom:368.226667pt;}
.y2f{bottom:369.346667pt;}
.y233{bottom:371.746667pt;}
.y203{bottom:371.906667pt;}
.y82{bottom:374.466667pt;}
.ybc{bottom:374.946667pt;}
.y1c8{bottom:376.546667pt;}
.y10f{bottom:379.746667pt;}
.y187{bottom:381.826667pt;}
.y2e{bottom:385.026667pt;}
.y232{bottom:387.266667pt;}
.y202{bottom:387.586667pt;}
.y81{bottom:390.146667pt;}
.ye6{bottom:390.466667pt;}
.y14e{bottom:392.866667pt;}
.y10e{bottom:395.426667pt;}
.y1c0{bottom:395.746667pt;}
.y21c{bottom:400.386667pt;}
.y2d{bottom:400.706667pt;}
.y231{bottom:402.946667pt;}
.y201{bottom:403.266667pt;}
.yba{bottom:404.066667pt;}
.y80{bottom:405.666667pt;}
.y185{bottom:407.106667pt;}
.y14d{bottom:408.386667pt;}
.y10d{bottom:411.106667pt;}
.ye5{bottom:415.906667pt;}
.y2c{bottom:416.226667pt;}
.y230{bottom:418.626667pt;}
.y200{bottom:418.786667pt;}
.y7f{bottom:421.346667pt;}
.y14c{bottom:424.066667pt;}
.y10c{bottom:426.626667pt;}
.y2b{bottom:431.906667pt;}
.y183{bottom:432.226667pt;}
.y21b{bottom:434.146667pt;}
.y1ff{bottom:434.466667pt;}
.yb9{bottom:434.786667pt;}
.y7e{bottom:437.026667pt;}
.y1c3{bottom:439.586667pt;}
.y14b{bottom:439.746667pt;}
.ye4{bottom:441.506667pt;}
.y10b{bottom:442.306667pt;}
.y2a{bottom:447.586667pt;}
.y21a{bottom:449.826667pt;}
.y1fe{bottom:450.146667pt;}
.y7d{bottom:452.546667pt;}
.y14a{bottom:455.426667pt;}
.y17f{bottom:457.506667pt;}
.y10a{bottom:457.986667pt;}
.yb8{bottom:460.226667pt;}
.y29{bottom:463.106667pt;}
.y219{bottom:465.506667pt;}
.y1fd{bottom:465.666667pt;}
.ye3{bottom:466.946667pt;}
.y7c{bottom:468.226667pt;}
.y149{bottom:470.946667pt;}
.y109{bottom:473.666667pt;}
.y28{bottom:478.786667pt;}
.y218{bottom:481.026667pt;}
.y1fc{bottom:481.346667pt;}
.y7b{bottom:483.906667pt;}
.yb7{bottom:485.666667pt;}
.y148{bottom:486.626667pt;}
.y1c2{bottom:488.226667pt;}
.y108{bottom:489.186667pt;}
.ye2{bottom:492.386667pt;}
.y27{bottom:494.466667pt;}
.y217{bottom:496.706667pt;}
.y1fb{bottom:497.026667pt;}
.y7a{bottom:499.426667pt;}
.y147{bottom:502.306667pt;}
.y107{bottom:504.866667pt;}
.y1b6{bottom:507.426667pt;}
.y11c{bottom:508.066667pt;}
.y26{bottom:510.146667pt;}
.yb3{bottom:511.266667pt;}
.y216{bottom:512.386667pt;}
.y1fa{bottom:512.546667pt;}
.y79{bottom:515.106667pt;}
.y146{bottom:517.826667pt;}
.ye1{bottom:517.986667pt;}
.y106{bottom:520.546667pt;}
.y17e{bottom:523.906667pt;}
.y25{bottom:527.586667pt;}
.y215{bottom:528.066667pt;}
.y1f9{bottom:528.226667pt;}
.y78{bottom:530.786667pt;}
.y145{bottom:533.506667pt;}
.y105{bottom:536.066667pt;}
.y11a{bottom:536.226667pt;}
.y24{bottom:543.293333pt;}
.ydf{bottom:543.453333pt;}
.y1b9{bottom:543.613333pt;}
.y1f8{bottom:543.933333pt;}
.y17d{bottom:545.373333pt;}
.y77{bottom:546.493333pt;}
.y144{bottom:549.213333pt;}
.y104{bottom:551.773333pt;}
.y23{bottom:558.973333pt;}
.yb2{bottom:559.293333pt;}
.y1f7{bottom:559.613333pt;}
.y17c{bottom:561.053333pt;}
.y76{bottom:562.013333pt;}
.y143{bottom:564.733333pt;}
.y103{bottom:567.453333pt;}
.y119{bottom:569.053333pt;}
.y22{bottom:574.653333pt;}
.yb1{bottom:574.973333pt;}
.y1f6{bottom:575.133333pt;}
.y17b{bottom:576.733333pt;}
.y75{bottom:577.693333pt;}
.y142{bottom:580.413333pt;}
.y102{bottom:582.973333pt;}
.y41{bottom:583.613333pt;}
.y21{bottom:590.333333pt;}
.yb0{bottom:590.493333pt;}
.y1f5{bottom:590.813333pt;}
.yde{bottom:591.453333pt;}
.y17a{bottom:592.253333pt;}
.y74{bottom:593.373333pt;}
.y141{bottom:596.093333pt;}
.y101{bottom:598.653333pt;}
.y20{bottom:605.853333pt;}
.yaf{bottom:606.173333pt;}
.y1f4{bottom:606.493333pt;}
.ydd{bottom:607.133333pt;}
.y179{bottom:607.933333pt;}
.y73{bottom:608.893333pt;}
.y140{bottom:611.773333pt;}
.y1b5{bottom:613.373333pt;}
.y100{bottom:614.333333pt;}
.y1f{bottom:621.533333pt;}
.yae{bottom:621.853333pt;}
.y1f3{bottom:622.013333pt;}
.ydc{bottom:622.813333pt;}
.y178{bottom:623.613333pt;}
.y72{bottom:624.573333pt;}
.y13f{bottom:627.293333pt;}
.yff{bottom:630.013333pt;}
.y1b4{bottom:635.133333pt;}
.y1e{bottom:637.213333pt;}
.yad{bottom:637.373333pt;}
.y1f2{bottom:637.693333pt;}
.ydb{bottom:638.333333pt;}
.y177{bottom:639.293333pt;}
.y71{bottom:640.253333pt;}
.y13e{bottom:642.973333pt;}
.yfe{bottom:645.533333pt;}
.y1b3{bottom:650.813333pt;}
.y1d{bottom:652.733333pt;}
.yac{bottom:653.053333pt;}
.y1f1{bottom:653.373333pt;}
.yda{bottom:654.013333pt;}
.y176{bottom:654.813333pt;}
.y70{bottom:655.773333pt;}
.y13d{bottom:658.653333pt;}
.yfd{bottom:661.213333pt;}
.y1b2{bottom:666.493333pt;}
.y1c{bottom:668.413333pt;}
.yab{bottom:668.733333pt;}
.y1f0{bottom:668.893333pt;}
.yd9{bottom:669.693333pt;}
.y175{bottom:670.493333pt;}
.y6f{bottom:671.453333pt;}
.y13c{bottom:674.173333pt;}
.yfc{bottom:676.893333pt;}
.y1b1{bottom:682.013333pt;}
.y1b{bottom:684.093333pt;}
.yaa{bottom:684.413333pt;}
.y1ef{bottom:684.573333pt;}
.yd8{bottom:685.213333pt;}
.y174{bottom:686.173333pt;}
.y6e{bottom:687.133333pt;}
.y13b{bottom:689.853333pt;}
.yfb{bottom:692.413333pt;}
.y1b0{bottom:697.693333pt;}
.y1a{bottom:699.613333pt;}
.ya9{bottom:699.933333pt;}
.y1ee{bottom:700.253333pt;}
.y173{bottom:701.693333pt;}
.y6d{bottom:702.813333pt;}
.y13a{bottom:705.533333pt;}
.yd7{bottom:707.773333pt;}
.yfa{bottom:708.093333pt;}
.y1af{bottom:713.373333pt;}
.y19{bottom:715.293333pt;}
.ya8{bottom:715.613333pt;}
.y1ed{bottom:715.773333pt;}
.y172{bottom:717.373333pt;}
.y6c{bottom:718.333333pt;}
.y139{bottom:721.053333pt;}
.yf9{bottom:723.773333pt;}
.y1ae{bottom:728.893333pt;}
.y18{bottom:730.973333pt;}
.ya7{bottom:731.293333pt;}
.y1ec{bottom:731.453333pt;}
.y171{bottom:733.053333pt;}
.yd6{bottom:733.213333pt;}
.y6b{bottom:734.013333pt;}
.y138{bottom:736.733333pt;}
.yf8{bottom:737.053333pt;}
.y1ad{bottom:744.573333pt;}
.y16f{bottom:746.333333pt;}
.y17{bottom:746.653333pt;}
.ya6{bottom:746.813333pt;}
.y1eb{bottom:747.133333pt;}
.y6a{bottom:749.693333pt;}
.y137{bottom:752.413333pt;}
.yf7{bottom:753.693333pt;}
.yd5{bottom:758.813333pt;}
.y1ac{bottom:760.253333pt;}
.y16{bottom:762.173333pt;}
.ya5{bottom:762.493333pt;}
.y1ea{bottom:762.813333pt;}
.y69{bottom:765.213333pt;}
.y136{bottom:768.093333pt;}
.yf5{bottom:770.493333pt;}
.y1ab{bottom:775.813333pt;}
.y15{bottom:777.893333pt;}
.ya4{bottom:778.213333pt;}
.y1e9{bottom:778.373333pt;}
.y16b{bottom:779.973333pt;}
.y68{bottom:780.933333pt;}
.y135{bottom:783.653333pt;}
.yd4{bottom:784.293333pt;}
.y14{bottom:793.573333pt;}
.ya3{bottom:793.733333pt;}
.y1e8{bottom:794.053333pt;}
.y67{bottom:796.613333pt;}
.y134{bottom:799.333333pt;}
.y16e{bottom:800.133333pt;}
.y13{bottom:809.093333pt;}
.ya2{bottom:809.413333pt;}
.yd3{bottom:809.733333pt;}
.y66{bottom:812.133333pt;}
.y133{bottom:815.013333pt;}
.y16d{bottom:820.293333pt;}
.y1e7{bottom:823.013333pt;}
.y12{bottom:824.773333pt;}
.ya1{bottom:825.093333pt;}
.y1aa{bottom:827.333333pt;}
.y65{bottom:827.813333pt;}
.y132{bottom:830.533333pt;}
.yd2{bottom:835.333333pt;}
.y11{bottom:840.453333pt;}
.ya0{bottom:840.613333pt;}
.y1a9{bottom:843.013333pt;}
.y64{bottom:843.493333pt;}
.y1e5{bottom:844.933333pt;}
.y131{bottom:846.213333pt;}
.y10{bottom:855.973333pt;}
.y9f{bottom:856.293333pt;}
.y63{bottom:859.173333pt;}
.yd1{bottom:860.773333pt;}
.y130{bottom:861.893333pt;}
.y1de{bottom:865.573333pt;}
.yf{bottom:871.653333pt;}
.y9e{bottom:871.973333pt;}
.y62{bottom:874.693333pt;}
.y1a8{bottom:876.453333pt;}
.y12f{bottom:877.413333pt;}
.y1e2{bottom:883.013333pt;}
.yd0{bottom:886.213333pt;}
.ye{bottom:887.013333pt;}
.y9d{bottom:887.653333pt;}
.y61{bottom:890.373333pt;}
.y164{bottom:890.693333pt;}
.y1a7{bottom:892.133333pt;}
.y166{bottom:899.493333pt;}
.y1e0{bottom:900.453333pt;}
.yd{bottom:901.093333pt;}
.y9c{bottom:903.173333pt;}
.y60{bottom:906.053333pt;}
.y1a6{bottom:907.813333pt;}
.yce{bottom:914.693333pt;}
.yc{bottom:915.653333pt;}
.y9b{bottom:918.853333pt;}
.y162{bottom:920.453333pt;}
.y5f{bottom:921.573333pt;}
.y1dd{bottom:922.053333pt;}
.y1a5{bottom:923.333333pt;}
.y118{bottom:928.133333pt;}
.yb{bottom:932.933333pt;}
.y9a{bottom:934.533333pt;}
.y5e{bottom:937.253333pt;}
.y1a4{bottom:939.013333pt;}
.ycd{bottom:941.893333pt;}
.y116{bottom:948.293333pt;}
.y161{bottom:948.933333pt;}
.y99{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5d{bottom:952.933333pt;}
.y1a3{bottom:954.693333pt;}
.y98{bottom:965.733333pt;}
.y1db{bottom:966.373333pt;}
.yca{bottom:967.333333pt;}
.y5c{bottom:968.453333pt;}
.y160{bottom:968.773333pt;}
.y9{bottom:971.013333pt;}
.y114{bottom:979.813333pt;}
.y97{bottom:981.413333pt;}
.y5b{bottom:984.133333pt;}
.y15f{bottom:988.453333pt;}
.y1a1{bottom:989.733333pt;}
.y8{bottom:990.533333pt;}
.y96{bottom:996.933333pt;}
.y5a{bottom:999.813333pt;}
.y15d{bottom:1008.293333pt;}
.y5{bottom:1008.933333pt;}
.y95{bottom:1012.640000pt;}
.y59{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y94{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y93{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y57{bottom:1064.480000pt;}
.h13{height:15.520000pt;}
.h19{height:15.552000pt;}
.h12{height:15.680000pt;}
.h1b{height:15.712000pt;}
.h4b{height:16.640000pt;}
.h18{height:17.280000pt;}
.h46{height:17.440000pt;}
.h21{height:17.600000pt;}
.h36{height:17.632000pt;}
.hb{height:17.881875pt;}
.h16{height:18.720000pt;}
.h1d{height:19.040000pt;}
.h1c{height:19.072000pt;}
.h27{height:19.200000pt;}
.h15{height:19.360000pt;}
.h17{height:19.712000pt;}
.h4c{height:20.000000pt;}
.h14{height:20.800000pt;}
.h4a{height:20.960000pt;}
.h4d{height:21.120000pt;}
.h2e{height:21.760000pt;}
.h2d{height:21.920000pt;}
.h28{height:22.080000pt;}
.h2a{height:22.112000pt;}
.h2c{height:23.200000pt;}
.h39{height:23.520000pt;}
.h38{height:23.680000pt;}
.h3d{height:24.480000pt;}
.h20{height:27.040000pt;}
.he{height:27.093750pt;}
.h2f{height:27.840000pt;}
.h23{height:28.320000pt;}
.h25{height:28.960000pt;}
.h30{height:29.120000pt;}
.h47{height:29.760000pt;}
.h4{height:29.940625pt;}
.h4e{height:30.080000pt;}
.h4f{height:30.112000pt;}
.h1e{height:30.400000pt;}
.h31{height:30.880000pt;}
.h3e{height:31.200000pt;}
.h2{height:31.428750pt;}
.h1f{height:31.712000pt;}
.h35{height:32.512000pt;}
.h3{height:33.867188pt;}
.h3f{height:34.432000pt;}
.hc{height:36.305625pt;}
.h22{height:36.480000pt;}
.h9{height:37.090625pt;}
.h3b{height:37.440000pt;}
.h33{height:37.600000pt;}
.h8{height:40.640625pt;}
.h45{height:42.080000pt;}
.h48{height:43.520000pt;}
.h1a{height:44.320000pt;}
.h11{height:44.352000pt;}
.h10{height:44.687500pt;}
.h5{height:44.975625pt;}
.h40{height:46.593750pt;}
.h44{height:46.880000pt;}
.h24{height:48.640000pt;}
.h7{height:49.852500pt;}
.hf{height:52.284375pt;}
.hd{height:54.187500pt;}
.h49{height:55.840000pt;}
.h3c{height:57.600000pt;}
.h32{height:57.920000pt;}
.h6{height:58.522500pt;}
.h26{height:58.720000pt;}
.h34{height:59.360000pt;}
.h37{height:64.800000pt;}
.h42{height:68.000000pt;}
.h29{height:69.792000pt;}
.h2b{height:73.760000pt;}
.h3a{height:76.960000pt;}
.h41{height:104.192000pt;}
.h43{height:110.080000pt;}
.ha{height:267.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:14.560000pt;}
.w3e{width:16.000000pt;}
.w4c{width:18.240000pt;}
.w1a{width:31.520000pt;}
.w38{width:36.000000pt;}
.w37{width:44.000000pt;}
.w3d{width:44.160000pt;}
.w29{width:45.280000pt;}
.w5a{width:51.712000pt;}
.w3a{width:52.032000pt;}
.w4b{width:52.480000pt;}
.w46{width:52.640000pt;}
.w41{width:53.280000pt;}
.w19{width:53.792000pt;}
.w56{width:54.880000pt;}
.w59{width:56.000000pt;}
.w45{width:56.032000pt;}
.w49{width:56.160000pt;}
.w3b{width:58.240000pt;}
.w1b{width:65.280000pt;}
.w48{width:66.272000pt;}
.w6{width:66.400000pt;}
.w52{width:70.400000pt;}
.w3c{width:72.032000pt;}
.w28{width:74.752000pt;}
.w9{width:75.040000pt;}
.w7{width:75.072000pt;}
.w23{width:75.232000pt;}
.w55{width:77.312000pt;}
.w4f{width:77.632000pt;}
.w54{width:78.400000pt;}
.w53{width:78.912000pt;}
.w4a{width:79.072000pt;}
.w32{width:79.872000pt;}
.w2c{width:80.192000pt;}
.w2f{width:80.640000pt;}
.w31{width:82.880000pt;}
.w2d{width:83.040000pt;}
.w30{width:83.072000pt;}
.w51{width:84.480000pt;}
.w2e{width:87.712000pt;}
.w27{width:91.840000pt;}
.w26{width:92.160000pt;}
.w1c{width:92.352000pt;}
.w22{width:92.480000pt;}
.w57{width:92.992000pt;}
.w5d{width:93.792000pt;}
.w4d{width:95.200000pt;}
.w36{width:100.192000pt;}
.w25{width:101.152000pt;}
.w4{width:108.672000pt;}
.w35{width:110.912000pt;}
.w5b{width:111.712000pt;}
.w43{width:114.240000pt;}
.w14{width:114.272000pt;}
.w1f{width:114.592000pt;}
.w39{width:116.832000pt;}
.w3f{width:120.480000pt;}
.w44{width:123.072000pt;}
.w5{width:126.112000pt;}
.w8{width:126.272000pt;}
.wc{width:126.432000pt;}
.wb{width:131.680000pt;}
.w47{width:132.192000pt;}
.w42{width:132.512000pt;}
.w18{width:133.120000pt;}
.w1e{width:135.546667pt;}
.w34{width:137.120000pt;}
.wf{width:138.106667pt;}
.we{width:138.426667pt;}
.w5c{width:140.160000pt;}
.w50{width:148.506667pt;}
.w16{width:150.746667pt;}
.w17{width:158.266667pt;}
.w12{width:178.586667pt;}
.w20{width:178.906667pt;}
.w13{width:183.546667pt;}
.w2a{width:193.786667pt;}
.w3{width:197.306667pt;}
.w24{width:239.866667pt;}
.wa{width:258.746667pt;}
.wd{width:277.346667pt;}
.w11{width:298.466667pt;}
.w21{width:341.986667pt;}
.w40{width:361.986667pt;}
.w2b{width:420.226667pt;}
.w4e{width:464.066667pt;}
.w10{width:477.693333pt;}
.w58{width:512.573333pt;}
.w15{width:530.013333pt;}
.w33{width:548.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x24{left:102.111988pt;}
.x3f{left:104.352000pt;}
.x25{left:105.311988pt;}
.x4e{left:107.552000pt;}
.x46{left:113.471988pt;}
.x54{left:116.031988pt;}
.x23{left:120.031988pt;}
.x45{left:120.992000pt;}
.x4d{left:123.552000pt;}
.x3{left:127.231988pt;}
.x28{left:132.032000pt;}
.x30{left:133.152000pt;}
.x7{left:136.026655pt;}
.x3d{left:139.706655pt;}
.x56{left:140.666667pt;}
.xa{left:141.786655pt;}
.x53{left:146.106655pt;}
.x2e{left:147.226667pt;}
.x20{left:158.106667pt;}
.x52{left:163.066667pt;}
.x55{left:165.306655pt;}
.x4{left:172.986655pt;}
.x34{left:179.226667pt;}
.x13{left:189.786667pt;}
.x57{left:197.306667pt;}
.xd{left:208.186667pt;}
.x49{left:219.546667pt;}
.x18{left:221.946655pt;}
.x36{left:226.106667pt;}
.xc{left:233.626655pt;}
.x3a{left:238.426655pt;}
.x3c{left:242.266655pt;}
.x1b{left:243.866655pt;}
.x12{left:247.266655pt;}
.x17{left:248.386655pt;}
.x58{left:249.666667pt;}
.x6{left:251.906655pt;}
.x50{left:256.866667pt;}
.x1e{left:267.586667pt;}
.x19{left:269.346667pt;}
.x29{left:283.426667pt;}
.x8{left:286.626655pt;}
.x3e{left:294.146655pt;}
.x14{left:298.786667pt;}
.x27{left:302.306655pt;}
.x9{left:304.546655pt;}
.x59{left:306.306667pt;}
.x2f{left:309.826655pt;}
.x37{left:314.466667pt;}
.xf{left:317.346667pt;}
.x26{left:319.906655pt;}
.x1c{left:329.026655pt;}
.x22{left:342.306667pt;}
.x4a{left:343.266667pt;}
.x2d{left:349.346667pt;}
.x40{left:353.666667pt;}
.x3b{left:359.426655pt;}
.x33{left:373.666667pt;}
.x38{left:395.746667pt;}
.x5{left:397.026655pt;}
.x1f{left:400.066667pt;}
.x1a{left:401.666667pt;}
.x4b{left:410.306667pt;}
.x51{left:413.186667pt;}
.x5a{left:418.653333pt;}
.x15{left:425.533333pt;}
.x2a{left:442.333333pt;}
.x10{left:443.933333pt;}
.xb{left:450.973322pt;}
.x41{left:454.493333pt;}
.x1d{left:455.933333pt;}
.x21{left:457.213333pt;}
.x47{left:466.653333pt;}
.x31{left:475.133333pt;}
.x39{left:479.453333pt;}
.x16{left:492.413333pt;}
.x42{left:499.293333pt;}
.x11{left:510.813333pt;}
.x48{left:519.933333pt;}
.x43{left:535.933333pt;}
.x5b{left:559.453333pt;}
.x35{left:562.653333pt;}
.x32{left:567.613333pt;}
.x4f{left:571.613333pt;}
.x2b{left:576.093333pt;}
.x4c{left:599.973333pt;}
.x44{left:608.613333pt;}
.x2c{left:630.533333pt;}
}




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