
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_2f704cd1ca647749e74858e2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ab28323cae73b3b56695537d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_10914780b799de75c94e6190.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3bf4bd752e31833848026688.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e779c974b1f66f08beb18dfb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0e2cc6bba5b5de30edd130e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_44fc621abfefa0007a43cf7f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_50bf5165b22661ac96e1b3bf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls1e{letter-spacing:-1.134000px;}
.ls12{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.274800px;}
.ls11{letter-spacing:-0.262200px;}
.ls19{letter-spacing:-0.152400px;}
.lsf{letter-spacing:-0.109200px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.109440px;}
.lsa{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.152400px;}
.ls3{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls1c{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.414600px;}
.ls16{letter-spacing:0.414720px;}
.ls15{letter-spacing:0.558720px;}
.ls17{letter-spacing:0.610560px;}
.ls1b{letter-spacing:0.612000px;}
.lsb{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.754560px;}
.ls21{letter-spacing:6.785280px;}
.ls1f{letter-spacing:8.640000px;}
.ls13{letter-spacing:25.505280px;}
.ls14{letter-spacing:29.105280px;}
.ls18{letter-spacing:32.705280px;}
.lsc{letter-spacing:39.905280px;}
.ls9{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.wsf{word-spacing:-28.987200px;}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.280000px;}
.wsc{word-spacing:-16.974600px;}
.ws9{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.450800px;}
.ws12{word-spacing:-16.407600px;}
.ws10{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.426000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._34{margin-left:-6.977280px;}
._35{margin-left:-5.909760px;}
._32{margin-left:-4.504320px;}
._33{margin-left:-3.378240px;}
._c{margin-left:-2.053440px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._5{width:2.649600px;}
._23{width:3.709440px;}
._4{width:4.717440px;}
._3{width:6.373440px;}
._6{width:7.750080px;}
._b{width:9.408000px;}
._a{width:11.260800px;}
._9{width:12.866880px;}
._7{width:14.175360px;}
._8{width:15.183360px;}
._29{width:17.598240px;}
._13{width:19.010880px;}
._16{width:20.851200px;}
._12{width:21.918720px;}
._11{width:22.919040px;}
._d{width:24.243840px;}
._26{width:26.164800px;}
._1e{width:27.820800px;}
._1f{width:29.241600px;}
._19{width:30.271680px;}
._1a{width:31.861440px;}
._1b{width:33.547200px;}
._15{width:34.709760px;}
._10{width:36.630720px;}
._f{width:38.105280px;}
._1c{width:39.891840px;}
._14{width:41.002560px;}
._3f{width:42.036960px;}
._2a{width:43.108800px;}
._1d{width:44.712000px;}
._2e{width:46.146240px;}
._36{width:47.702760px;}
._41{width:50.342400px;}
._3e{width:51.432000px;}
._20{width:52.727040px;}
._21{width:53.786880px;}
._22{width:55.037280px;}
._31{width:56.370240px;}
._18{width:58.158720px;}
._17{width:59.417280px;}
._25{width:62.574720px;}
._24{width:64.186560px;}
._2c{width:65.312640px;}
._2d{width:67.167360px;}
._38{width:68.624640px;}
._37{width:70.015680px;}
._3c{width:72.496320px;}
._3d{width:74.291520px;}
._39{width:76.440960px;}
._3a{width:77.692800px;}
._40{width:85.449600px;}
._2b{width:89.894400px;}
._e{width:91.500480px;}
._27{width:101.612160px;}
._28{width:103.135680px;}
._2f{width:141.531840px;}
._30{width:142.757760px;}
._3b{width:205.476480px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y130{bottom:13.140000px;}
.y1bc{bottom:13.170000px;}
.y13f{bottom:13.185000px;}
.y137{bottom:13.320000px;}
.y201{bottom:13.494000px;}
.y99{bottom:13.500000px;}
.ydc{bottom:13.530000px;}
.yaa{bottom:13.545000px;}
.ybc{bottom:13.680000px;}
.y190{bottom:13.710000px;}
.y1bd{bottom:14.250000px;}
.y222{bottom:14.400000px;}
.yae{bottom:14.940000px;}
.ya7{bottom:15.120000px;}
.y1f4{bottom:15.660000px;}
.y1e2{bottom:15.840000px;}
.ye7{bottom:16.380000px;}
.yd9{bottom:16.560000px;}
.yb8{bottom:17.280000px;}
.yd5{bottom:18.720000px;}
.ya3{bottom:19.440000px;}
.yd2{bottom:20.160000px;}
.yef{bottom:20.700000px;}
.ya{bottom:20.880000px;}
.yec{bottom:22.140000px;}
.ycd{bottom:22.320000px;}
.y105{bottom:25.560000px;}
.ye3{bottom:25.740000px;}
.y1ec{bottom:26.460000px;}
.y102{bottom:27.000000px;}
.y37{bottom:30.600000px;}
.yfe{bottom:31.500000px;}
.y98{bottom:41.940000px;}
.yc6{bottom:41.985000px;}
.yf4{bottom:42.120000px;}
.y221{bottom:42.840000px;}
.yad{bottom:43.380000px;}
.ybf{bottom:43.560000px;}
.ya6{bottom:43.605000px;}
.ye6{bottom:44.820000px;}
.yd8{bottom:45.030000px;}
.yb7{bottom:45.720000px;}
.y36{bottom:46.980000px;}
.ya2{bottom:47.880000px;}
.y38{bottom:48.420000px;}
.yd1{bottom:48.594000px;}
.y39{bottom:48.600000px;}
.yeb{bottom:50.760000px;}
.ycc{bottom:50.934000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.ye2{bottom:54.180000px;}
.y101{bottom:55.440000px;}
.yfd{bottom:59.940000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.yac{bottom:71.820000px;}
.y107{bottom:71.850000px;}
.ybe{bottom:72.000000px;}
.yba{bottom:72.030000px;}
.ya5{bottom:72.045000px;}
.ye5{bottom:73.260000px;}
.y143{bottom:73.434000px;}
.y120{bottom:73.440000px;}
.yd7{bottom:73.470000px;}
.y13a{bottom:73.485000px;}
.yb6{bottom:74.160000px;}
.y110{bottom:74.205000px;}
.y1e0{bottom:75.780000px;}
.ya1{bottom:76.320000px;}
.yd0{bottom:77.034000px;}
.y34{bottom:79.056000px;}
.yea{bottom:79.200000px;}
.ycb{bottom:79.374000px;}
.ye1{bottom:82.620000px;}
.y100{bottom:83.880000px;}
.y1e8{bottom:86.400000px;}
.yfc{bottom:88.380000px;}
.y11b{bottom:96.156000px;}
.y203{bottom:96.876000px;}
.y220{bottom:97.416000px;}
.y31{bottom:97.596000px;}
.y1b6{bottom:101.556000px;}
.yc7{bottom:101.736000px;}
.y1b7{bottom:101.874000px;}
.y11f{bottom:101.880000px;}
.y15d{bottom:101.910000px;}
.y139{bottom:101.925000px;}
.y142{bottom:102.054000px;}
.y17f{bottom:102.060000px;}
.y173{bottom:102.090000px;}
.yb5{bottom:102.600000px;}
.y10f{bottom:102.825000px;}
.y1f0{bottom:104.220000px;}
.y1df{bottom:104.265000px;}
.ya0{bottom:104.760000px;}
.yca{bottom:107.814000px;}
.y82{bottom:109.476000px;}
.y208{bottom:109.836000px;}
.ye0{bottom:111.240000px;}
.y60{bottom:111.276000px;}
.y17b{bottom:113.976000px;}
.y148{bottom:114.336000px;}
.y1e7{bottom:114.840000px;}
.yfb{bottom:117.000000px;}
.y11a{bottom:124.596000px;}
.y202{bottom:125.316000px;}
.y21f{bottom:125.856000px;}
.y2f{bottom:126.036000px;}
.y140{bottom:129.996000px;}
.y1fc{bottom:130.314000px;}
.y12c{bottom:130.320000px;}
.y15c{bottom:130.350000px;}
.y126{bottom:130.365000px;}
.y141{bottom:130.494000px;}
.y11e{bottom:130.500000px;}
.y172{bottom:130.530000px;}
.y1bb{bottom:130.896000px;}
.yb4{bottom:131.040000px;}
.y10e{bottom:131.265000px;}
.y96{bottom:131.616000px;}
.y1ef{bottom:132.660000px;}
.y1de{bottom:132.705000px;}
.y9f{bottom:133.380000px;}
.y81{bottom:134.136000px;}
.y5f{bottom:135.756000px;}
.yd4{bottom:136.116000px;}
.yc9{bottom:136.254000px;}
.y5c{bottom:138.456000px;}
.ydf{bottom:139.680000px;}
.y1fb{bottom:140.976000px;}
.y1db{bottom:142.236000px;}
.y17a{bottom:142.416000px;}
.y14a{bottom:142.776000px;}
.y1e6{bottom:143.280000px;}
.yfa{bottom:145.470000px;}
.y119{bottom:153.030000px;}
.y7a{bottom:153.210000px;}
.y21e{bottom:154.290000px;}
.y2e{bottom:154.470000px;}
.y198{bottom:158.610000px;}
.y147{bottom:159.330000px;}
.y95{bottom:159.690000px;}
.y10d{bottom:159.705000px;}
.y1ba{bottom:160.050000px;}
.y9e{bottom:161.820000px;}
.yc8{bottom:164.694000px;}
.yd3{bottom:165.270000px;}
.y5b{bottom:166.890000px;}
.yde{bottom:168.120000px;}
.y200{bottom:170.130000px;}
.y1da{bottom:170.670000px;}
.y1dc{bottom:170.850000px;}
.y149{bottom:171.210000px;}
.yf9{bottom:173.910000px;}
.y79{bottom:177.870000px;}
.y118{bottom:181.110000px;}
.y21d{bottom:182.370000px;}
.y2d{bottom:182.910000px;}
.y1d6{bottom:186.330000px;}
.y167{bottom:186.870000px;}
.y177{bottom:187.050000px;}
.y19b{bottom:187.770000px;}
.y94{bottom:188.130000px;}
.y146{bottom:188.490000px;}
.y1b9{bottom:189.210000px;}
.y9d{bottom:190.260000px;}
.yce{bottom:194.430000px;}
.y5a{bottom:195.330000px;}
.y1ff{bottom:199.470000px;}
.yf8{bottom:202.350000px;}
.y117{bottom:209.550000px;}
.y21c{bottom:210.810000px;}
.y2c{bottom:211.350000px;}
.y1d9{bottom:215.490000px;}
.y16a{bottom:216.030000px;}
.y179{bottom:216.210000px;}
.y93{bottom:216.930000px;}
.y145{bottom:217.650000px;}
.y1b8{bottom:218.370000px;}
.y9c{bottom:218.745000px;}
.y207{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.y1fe{bottom:228.630000px;}
.yf7{bottom:230.790000px;}
.y116{bottom:238.350000px;}
.y21b{bottom:239.250000px;}
.y2b{bottom:239.790000px;}
.y1d8{bottom:244.830000px;}
.y92{bottom:245.370000px;}
.y19a{bottom:246.090000px;}
.y144{bottom:246.990000px;}
.y9b{bottom:247.185000px;}
.y1b1{bottom:247.710000px;}
.y58{bottom:252.210000px;}
.ycf{bottom:252.930000px;}
.y212{bottom:253.290000px;}
.y10c{bottom:254.010000px;}
.y1fd{bottom:257.790000px;}
.yf6{bottom:259.230000px;}
.y21a{bottom:264.270000px;}
.y2a{bottom:268.230000px;}
.y91{bottom:273.990000px;}
.y169{bottom:274.530000px;}
.y199{bottom:275.430000px;}
.y138{bottom:276.150000px;}
.y1b5{bottom:276.870000px;}
.y57{bottom:280.650000px;}
.yc5{bottom:282.090000px;}
.y115{bottom:283.350000px;}
.y1f6{bottom:287.130000px;}
.y29{bottom:296.490000px;}
.y30{bottom:296.850000px;}
.y90{bottom:302.430000px;}
.y1d7{bottom:303.150000px;}
.y168{bottom:303.690000px;}
.y178{bottom:303.870000px;}
.y193{bottom:304.590000px;}
.y13e{bottom:305.310000px;}
.y1b4{bottom:306.030000px;}
.y56{bottom:309.090000px;}
.y114{bottom:312.510000px;}
.y1fa{bottom:316.290000px;}
.y28{bottom:328.935000px;}
.y8f{bottom:330.915000px;}
.y1d1{bottom:332.355000px;}
.y162{bottom:333.075000px;}
.y197{bottom:333.795000px;}
.y13d{bottom:334.515000px;}
.y1b3{bottom:335.415000px;}
.y55{bottom:337.575000px;}
.y111{bottom:341.715000px;}
.y1f9{bottom:345.495000px;}
.yc4{bottom:353.415000px;}
.y27{bottom:357.555000px;}
.y80{bottom:358.995000px;}
.y8e{bottom:359.355000px;}
.y1d5{bottom:361.695000px;}
.y166{bottom:362.235000px;}
.y196{bottom:362.955000px;}
.y13c{bottom:363.855000px;}
.y1b2{bottom:364.575000px;}
.y229{bottom:365.655000px;}
.y54{bottom:366.015000px;}
.y113{bottom:370.875000px;}
.y1f8{bottom:374.655000px;}
.yc3{bottom:381.855000px;}
.y7f{bottom:383.475000px;}
.y26{bottom:385.995000px;}
.y8d{bottom:387.795000px;}
.y1d4{bottom:390.855000px;}
.y165{bottom:391.395000px;}
.y176{bottom:391.575000px;}
.y195{bottom:392.295000px;}
.y13b{bottom:393.015000px;}
.y1ac{bottom:393.735000px;}
.y22c{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.y112{bottom:400.215000px;}
.y1f7{bottom:403.995000px;}
.yc2{bottom:410.295000px;}
.y25{bottom:414.435000px;}
.y8c{bottom:415.875000px;}
.y1d3{bottom:420.015000px;}
.y164{bottom:420.555000px;}
.y175{bottom:420.735000px;}
.y194{bottom:421.455000px;}
.y132{bottom:422.175000px;}
.y22b{bottom:422.715000px;}
.y1b0{bottom:422.895000px;}
.y52{bottom:423.075000px;}
.yb3{bottom:425.955000px;}
.yf5{bottom:429.375000px;}
.y1ee{bottom:433.155000px;}
.y24{bottom:442.875000px;}
.y8b{bottom:444.675000px;}
.y78{bottom:447.915000px;}
.y1d2{bottom:449.355000px;}
.y163{bottom:449.895000px;}
.y18e{bottom:450.615000px;}
.y22a{bottom:451.155000px;}
.y136{bottom:451.335000px;}
.y51{bottom:451.515000px;}
.y1af{bottom:452.235000px;}
.yc1{bottom:455.115000px;}
.y10b{bottom:458.535000px;}
.y1f5{bottom:462.315000px;}
.y23{bottom:471.315000px;}
.y8a{bottom:473.115000px;}
.y77{bottom:476.355000px;}
.y1cd{bottom:478.515000px;}
.y15b{bottom:479.055000px;}
.y22d{bottom:479.595000px;}
.y50{bottom:479.955000px;}
.y135{bottom:480.675000px;}
.y1ae{bottom:481.395000px;}
.yc0{bottom:484.455000px;}
.y10a{bottom:487.695000px;}
.y1f3{bottom:491.655000px;}
.y224{bottom:494.895000px;}
.y89{bottom:497.775000px;}
.y22{bottom:499.755000px;}
.y211{bottom:502.995000px;}
.y76{bottom:504.795000px;}
.y219{bottom:507.495000px;}
.y1d0{bottom:507.675000px;}
.y206{bottom:508.035000px;}
.y161{bottom:508.215000px;}
.y4f{bottom:508.395000px;}
.y192{bottom:509.115000px;}
.y134{bottom:509.835000px;}
.y1ad{bottom:510.555000px;}
.yb9{bottom:513.615000px;}
.y106{bottom:517.035000px;}
.y1f2{bottom:523.155000px;}
.y223{bottom:523.335000px;}
.y21{bottom:528.195000px;}
.y210{bottom:531.435000px;}
.y218{bottom:531.975000px;}
.y75{bottom:533.235000px;}
.y205{bottom:536.475000px;}
.y4e{bottom:536.835000px;}
.y160{bottom:537.555000px;}
.y191{bottom:538.275000px;}
.y133{bottom:538.995000px;}
.y1a7{bottom:539.715000px;}
.ybd{bottom:542.775000px;}
.y109{bottom:546.195000px;}
.y1f1{bottom:552.315000px;}
.y20{bottom:556.635000px;}
.y20f{bottom:559.875000px;}
.y74{bottom:561.675000px;}
.y228{bottom:564.915000px;}
.y4d{bottom:565.275000px;}
.y1cf{bottom:566.175000px;}
.y15f{bottom:566.715000px;}
.y18f{bottom:567.435000px;}
.y12b{bottom:568.365000px;}
.y1ab{bottom:569.085000px;}
.ybb{bottom:571.965000px;}
.y108{bottom:575.385000px;}
.y1e5{bottom:581.505000px;}
.y1f{bottom:585.105000px;}
.y20e{bottom:588.345000px;}
.y73{bottom:590.325000px;}
.y4c{bottom:593.385000px;}
.y5d{bottom:593.745000px;}
.y1ce{bottom:595.365000px;}
.y15e{bottom:595.905000px;}
.y174{bottom:596.085000px;}
.y189{bottom:596.805000px;}
.y131{bottom:597.525000px;}
.y1aa{bottom:598.245000px;}
.y9a{bottom:601.305000px;}
.yff{bottom:604.725000px;}
.y1ed{bottom:610.665000px;}
.y7e{bottom:610.845000px;}
.y20d{bottom:613.005000px;}
.y1e{bottom:613.725000px;}
.y72{bottom:618.765000px;}
.y5e{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y1c8{bottom:624.525000px;}
.y156{bottom:625.065000px;}
.y16f{bottom:625.245000px;}
.y18d{bottom:625.965000px;}
.y12f{bottom:626.685000px;}
.y1a9{bottom:627.405000px;}
.yb2{bottom:630.465000px;}
.y104{bottom:633.885000px;}
.y7d{bottom:635.505000px;}
.y1eb{bottom:640.005000px;}
.y1d{bottom:642.165000px;}
.y71{bottom:647.205000px;}
.y4a{bottom:650.805000px;}
.y1cc{bottom:653.865000px;}
.y15a{bottom:654.405000px;}
.y18c{bottom:655.125000px;}
.y12e{bottom:655.845000px;}
.y1a8{bottom:656.745000px;}
.yb1{bottom:659.625000px;}
.y103{bottom:675.105000px;}
.y70{bottom:675.645000px;}
.y1c{bottom:676.545000px;}
.y22f{bottom:678.885000px;}
.y49{bottom:679.245000px;}
.y1ea{bottom:682.125000px;}
.y1cb{bottom:683.025000px;}
.y159{bottom:683.565000px;}
.y18b{bottom:684.465000px;}
.y12d{bottom:685.185000px;}
.y1a2{bottom:685.905000px;}
.yab{bottom:688.965000px;}
.y1b{bottom:699.045000px;}
.y6f{bottom:704.085000px;}
.yf3{bottom:704.265000px;}
.y48{bottom:707.685000px;}
.y1e9{bottom:711.285000px;}
.y1ca{bottom:712.185000px;}
.y158{bottom:712.725000px;}
.y171{bottom:712.905000px;}
.y18a{bottom:713.625000px;}
.y125{bottom:714.345000px;}
.y1a6{bottom:715.065000px;}
.yb0{bottom:718.125000px;}
.y6e{bottom:732.525000px;}
.y1a{bottom:733.425000px;}
.y47{bottom:736.125000px;}
.y1dd{bottom:740.445000px;}
.y1c9{bottom:741.345000px;}
.y157{bottom:741.885000px;}
.y170{bottom:742.065000px;}
.y184{bottom:742.785000px;}
.y12a{bottom:743.505000px;}
.y1a5{bottom:744.225000px;}
.yaf{bottom:747.285000px;}
.y19{bottom:755.925000px;}
.y88{bottom:758.805000px;}
.y6d{bottom:760.965000px;}
.y22e{bottom:764.205000px;}
.y46{bottom:764.565000px;}
.y1e4{bottom:769.785000px;}
.y1c3{bottom:770.685000px;}
.y151{bottom:771.225000px;}
.y188{bottom:771.945000px;}
.y129{bottom:772.845000px;}
.y1a4{bottom:773.565000px;}
.yf2{bottom:775.545000px;}
.ya4{bottom:776.445000px;}
.y217{bottom:777.165000px;}
.y87{bottom:788.325000px;}
.y6c{bottom:789.405000px;}
.y18{bottom:790.305000px;}
.y20b{bottom:792.645000px;}
.y45{bottom:793.005000px;}
.y1e3{bottom:798.945000px;}
.y1c7{bottom:799.845000px;}
.y155{bottom:800.385000px;}
.y187{bottom:801.285000px;}
.y128{bottom:802.005000px;}
.y1a3{bottom:802.725000px;}
.yf1{bottom:803.985000px;}
.y216{bottom:805.605000px;}
.ya9{bottom:805.785000px;}
.y17{bottom:812.805000px;}
.y86{bottom:816.765000px;}
.y6b{bottom:817.845000px;}
.y44{bottom:821.490000px;}
.y1e1{bottom:828.150000px;}
.y1c6{bottom:829.050000px;}
.y154{bottom:829.590000px;}
.y16e{bottom:829.770000px;}
.y186{bottom:830.490000px;}
.y127{bottom:831.210000px;}
.y19d{bottom:831.930000px;}
.yf0{bottom:832.470000px;}
.y215{bottom:834.270000px;}
.ya8{bottom:834.990000px;}
.y6a{bottom:846.510000px;}
.y16{bottom:847.230000px;}
.ydd{bottom:848.130000px;}
.y204{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y1c5{bottom:858.210000px;}
.y153{bottom:858.930000px;}
.y185{bottom:859.650000px;}
.y11d{bottom:860.370000px;}
.y1a1{bottom:861.270000px;}
.y214{bottom:862.710000px;}
.y97{bottom:864.150000px;}
.y7c{bottom:867.210000px;}
.y15{bottom:869.910000px;}
.y69{bottom:874.950000px;}
.y227{bottom:878.010000px;}
.y42{bottom:878.370000px;}
.yee{bottom:884.490000px;}
.y20c{bottom:884.850000px;}
.y213{bottom:887.190000px;}
.y1c4{bottom:887.550000px;}
.y152{bottom:888.090000px;}
.y17e{bottom:888.810000px;}
.y124{bottom:889.710000px;}
.y1a0{bottom:890.430000px;}
.y7b{bottom:891.690000px;}
.y68{bottom:903.390000px;}
.y14{bottom:904.290000px;}
.y226{bottom:906.630000px;}
.y41{bottom:906.990000px;}
.yed{bottom:913.830000px;}
.y1be{bottom:916.710000px;}
.y14c{bottom:917.250000px;}
.y16b{bottom:917.430000px;}
.y183{bottom:918.150000px;}
.y123{bottom:918.870000px;}
.y19f{bottom:919.590000px;}
.y13{bottom:926.790000px;}
.y67{bottom:931.830000px;}
.y85{bottom:933.090000px;}
.y20a{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.ye4{bottom:942.990000px;}
.y1c2{bottom:945.870000px;}
.y150{bottom:946.410000px;}
.y16d{bottom:946.590000px;}
.y182{bottom:947.310000px;}
.y122{bottom:948.030000px;}
.y19e{bottom:948.750000px;}
.y66{bottom:960.270000px;}
.y12{bottom:961.170000px;}
.y84{bottom:961.530000px;}
.y209{bottom:963.510000px;}
.y3f{bottom:963.870000px;}
.ye9{bottom:972.150000px;}
.y1c1{bottom:975.210000px;}
.y14f{bottom:975.750000px;}
.y181{bottom:976.470000px;}
.y121{bottom:977.190000px;}
.y19c{bottom:978.090000px;}
.y11{bottom:983.310000px;}
.y65{bottom:988.710000px;}
.y83{bottom:991.230000px;}
.y3e{bottom:992.310000px;}
.ye8{bottom:1002.750000px;}
.y1c0{bottom:1004.370000px;}
.y14e{bottom:1004.910000px;}
.y180{bottom:1005.810000px;}
.y11c{bottom:1006.530000px;}
.y10{bottom:1011.750000px;}
.y64{bottom:1017.330000px;}
.y3d{bottom:1020.750000px;}
.yd6{bottom:1031.910000px;}
.y4{bottom:1032.810000px;}
.y1bf{bottom:1033.530000px;}
.y14d{bottom:1034.070000px;}
.y16c{bottom:1034.250000px;}
.y17d{bottom:1034.970000px;}
.y63{bottom:1047.030000px;}
.y225{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.ydb{bottom:1062.690000px;}
.y14b{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y62{bottom:1076.580000px;}
.y3b{bottom:1077.660000px;}
.yda{bottom:1091.880000px;}
.y61{bottom:1105.020000px;}
.y17c{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h16{height:28.440000px;}
.h17{height:28.476000px;}
.h1a{height:28.620000px;}
.h30{height:28.656000px;}
.h32{height:29.196000px;}
.h24{height:29.880000px;}
.h21{height:30.060000px;}
.h37{height:30.600000px;}
.h34{height:30.780000px;}
.h6{height:33.480000px;}
.h1f{height:33.660000px;}
.h26{height:35.640000px;}
.h2a{height:40.500000px;}
.hb{height:41.250937px;}
.h36{height:41.400000px;}
.h2c{height:46.251562px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h13{height:56.880000px;}
.h1c{height:56.916000px;}
.h27{height:57.060000px;}
.h38{height:57.780000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h18{height:86.760000px;}
.h2b{height:86.796000px;}
.h1b{height:86.940000px;}
.h15{height:86.976000px;}
.h23{height:88.200000px;}
.h20{height:88.416000px;}
.h1e{height:91.980000px;}
.h25{height:94.140000px;}
.h29{height:98.820000px;}
.h12{height:111.043849px;}
.hf{height:111.043854px;}
.h2f{height:145.260000px;}
.h2e{height:145.296000px;}
.h2d{height:145.440000px;}
.h31{height:145.476000px;}
.h33{height:147.636000px;}
.h35{height:158.220000px;}
.h4{height:167.250000px;}
.h19{height:174.630000px;}
.h1d{height:179.640000px;}
.h22{height:183.060000px;}
.h14{height:262.110000px;}
.he{height:268.635000px;}
.h28{height:274.170000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.wb{width:52.200000px;}
.w1c{width:53.820000px;}
.w15{width:66.780000px;}
.w1e{width:72.000000px;}
.w16{width:72.180000px;}
.w70{width:80.316000px;}
.w1f{width:81.540000px;}
.w79{width:83.340000px;}
.w7a{width:83.376000px;}
.w73{width:84.240000px;}
.w6e{width:84.636000px;}
.w6f{width:84.960000px;}
.wd{width:85.860000px;}
.w7e{width:86.040000px;}
.w7c{width:86.976000px;}
.w72{width:87.840000px;}
.w71{width:88.560000px;}
.w7d{width:90.720000px;}
.w7b{width:91.800000px;}
.w78{width:94.356000px;}
.we{width:94.860000px;}
.w1d{width:95.976000px;}
.w17{width:103.320000px;}
.w20{width:103.356000px;}
.wc{width:103.896000px;}
.w74{width:104.940000px;}
.w14{width:105.516000px;}
.wf{width:107.640000px;}
.w11{width:111.996000px;}
.wa{width:115.776000px;}
.w8{width:117.216000px;}
.w13{width:118.836000px;}
.w1b{width:120.276000px;}
.w10{width:126.576000px;}
.w19{width:129.996000px;}
.w5c{width:132.876000px;}
.w53{width:133.776000px;}
.w4e{width:134.136000px;}
.w6a{width:135.576000px;}
.w58{width:136.656000px;}
.w49{width:137.556000px;}
.w44{width:138.276000px;}
.w3f{width:138.636000px;}
.w3a{width:138.996000px;}
.w30{width:139.176000px;}
.w21{width:139.320000px;}
.w68{width:140.400000px;}
.w61{width:141.156000px;}
.w35{width:143.820000px;}
.w2b{width:145.296000px;}
.w64{width:147.600000px;}
.w18{width:158.430000px;}
.w47{width:158.760000px;}
.w42{width:160.020000px;}
.w5f{width:161.280000px;}
.w33{width:172.260000px;}
.w5b{width:172.650000px;}
.w4c{width:174.450000px;}
.w75{width:183.990000px;}
.w26{width:188.310000px;}
.w6b{width:188.490000px;}
.w51{width:189.570000px;}
.w2a{width:193.710000px;}
.w25{width:194.430000px;}
.w38{width:198.030000px;}
.w2e{width:198.210000px;}
.w56{width:200.730000px;}
.w23{width:202.710000px;}
.w3d{width:205.095000px;}
.w52{width:205.950000px;}
.w69{width:209.910000px;}
.w57{width:210.090000px;}
.w65{width:211.890000px;}
.w29{width:217.110000px;}
.w24{width:219.450000px;}
.w60{width:219.990000px;}
.w4d{width:220.350000px;}
.w48{width:222.510000px;}
.w3e{width:225.390000px;}
.w39{width:225.570000px;}
.w43{width:227.910000px;}
.w2f{width:228.270000px;}
.w37{width:231.510000px;}
.w28{width:231.870000px;}
.w2d{width:233.310000px;}
.w9{width:235.110000px;}
.w34{width:236.775000px;}
.w1a{width:243.390000px;}
.w3c{width:244.830000px;}
.w32{width:245.055000px;}
.w6c{width:251.535000px;}
.w5a{width:252.750000px;}
.w50{width:254.550000px;}
.w4b{width:255.450000px;}
.w55{width:259.770000px;}
.w12{width:262.470000px;}
.w76{width:262.515000px;}
.w41{width:270.435000px;}
.w46{width:275.655000px;}
.w5e{width:291.135000px;}
.w63{width:292.395000px;}
.w67{width:316.515000px;}
.w27{width:339.735000px;}
.w4f{width:340.455000px;}
.w66{width:346.215000px;}
.w54{width:347.475000px;}
.w62{width:350.175000px;}
.w4a{width:355.215000px;}
.w77{width:357.690000px;}
.w59{width:359.175000px;}
.w45{width:360.975000px;}
.w3{width:361.335000px;}
.w5d{width:361.875000px;}
.w3b{width:364.755000px;}
.w36{width:365.475000px;}
.w40{width:366.915000px;}
.w6d{width:367.770000px;}
.w2c{width:368.355000px;}
.w31{width:381.315000px;}
.w22{width:383.655000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x42{left:51.120000px;}
.x2{left:53.999986px;}
.x55{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x1b{left:167.070000px;}
.x14{left:172.290000px;}
.x22{left:185.070000px;}
.x50{left:239.070000px;}
.x4a{left:243.570000px;}
.x29{left:249.690000px;}
.x3c{left:261.030000px;}
.x3f{left:265.170000px;}
.x46{left:266.970000px;}
.x21{left:271.110000px;}
.x3a{left:275.430000px;}
.x37{left:277.770000px;}
.x1a{left:280.830000px;}
.x2e{left:283.530000px;}
.x26{left:289.155000px;}
.x30{left:291.855000px;}
.x11{left:295.634986px;}
.x10{left:303.734986px;}
.xf{left:308.234986px;}
.x4c{left:329.115000px;}
.x52{left:334.155000px;}
.xc{left:338.474986px;}
.x2a{left:394.815000px;}
.x47{left:401.475000px;}
.x3d{left:402.555000px;}
.x44{left:405.255000px;}
.x15{left:408.315000px;}
.x38{left:410.295000px;}
.x40{left:414.255000px;}
.x36{left:416.055000px;}
.x53{left:418.215000px;}
.x31{left:420.735000px;}
.x34{left:422.175000px;}
.x2c{left:423.615000px;}
.x23{left:429.195000px;}
.x1c{left:430.275000px;}
.x2f{left:436.395000px;}
.x27{left:438.735000px;}
.x8{left:482.144986px;}
.x4b{left:496.005000px;}
.x51{left:502.305000px;}
.xd{left:509.144986px;}
.x5{left:521.025000px;}
.x16{left:524.805000px;}
.x1d{left:549.825000px;}
.x17{left:577.725000px;}
.x4d{left:585.285000px;}
.x54{left:594.825000px;}
.x1e{left:602.745000px;}
.x24{left:604.905000px;}
.x2b{left:627.405000px;}
.x28{left:642.345000px;}
.x3b{left:650.805000px;}
.x32{left:653.145000px;}
.x2d{left:657.645000px;}
.x3e{left:663.045000px;}
.x33{left:665.385000px;}
.x39{left:666.645000px;}
.x41{left:667.725000px;}
.x4e{left:673.890000px;}
.x18{left:682.350000px;}
.x35{left:693.330000px;}
.x45{left:698.370000px;}
.x25{left:701.610000px;}
.x43{left:705.750000px;}
.x1f{left:708.990000px;}
.x48{left:718.710000px;}
.x4f{left:758.850000px;}
.x19{left:768.930000px;}
.x12{left:773.609986px;}
.xe{left:774.689986px;}
.x20{left:776.490000px;}
.x49{left:864.689986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-1.008000pt;}
.ls12{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.244267pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls19{letter-spacing:-0.135467pt;}
.lsf{letter-spacing:-0.097067pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.097280pt;}
.lsa{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.135467pt;}
.ls3{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls1c{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.368533pt;}
.ls16{letter-spacing:0.368640pt;}
.ls15{letter-spacing:0.496640pt;}
.ls17{letter-spacing:0.542720pt;}
.ls1b{letter-spacing:0.544000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.670720pt;}
.ls21{letter-spacing:6.031360pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls13{letter-spacing:22.671360pt;}
.ls14{letter-spacing:25.871360pt;}
.ls18{letter-spacing:29.071360pt;}
.lsc{letter-spacing:35.471360pt;}
.ls9{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsa{word-spacing:-58.880000pt;}
.wsf{word-spacing:-25.766400pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.088533pt;}
.ws9{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.622933pt;}
.ws12{word-spacing:-14.584533pt;}
.ws10{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.712000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._34{margin-left:-6.202027pt;}
._35{margin-left:-5.253120pt;}
._32{margin-left:-4.003840pt;}
._33{margin-left:-3.002880pt;}
._c{margin-left:-1.825280pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._5{width:2.355200pt;}
._23{width:3.297280pt;}
._4{width:4.193280pt;}
._3{width:5.665280pt;}
._6{width:6.888960pt;}
._b{width:8.362667pt;}
._a{width:10.009600pt;}
._9{width:11.437227pt;}
._7{width:12.600320pt;}
._8{width:13.496320pt;}
._29{width:15.642880pt;}
._13{width:16.898560pt;}
._16{width:18.534400pt;}
._12{width:19.483307pt;}
._11{width:20.372480pt;}
._d{width:21.550080pt;}
._26{width:23.257600pt;}
._1e{width:24.729600pt;}
._1f{width:25.992533pt;}
._19{width:26.908160pt;}
._1a{width:28.321280pt;}
._1b{width:29.819733pt;}
._15{width:30.853120pt;}
._10{width:32.560640pt;}
._f{width:33.871360pt;}
._1c{width:35.459413pt;}
._14{width:36.446720pt;}
._3f{width:37.366187pt;}
._2a{width:38.318933pt;}
._1d{width:39.744000pt;}
._2e{width:41.018880pt;}
._36{width:42.402453pt;}
._41{width:44.748800pt;}
._3e{width:45.717333pt;}
._20{width:46.868480pt;}
._21{width:47.810560pt;}
._22{width:48.922027pt;}
._31{width:50.106880pt;}
._18{width:51.696640pt;}
._17{width:52.815360pt;}
._25{width:55.621973pt;}
._24{width:57.054720pt;}
._2c{width:58.055680pt;}
._2d{width:59.704320pt;}
._38{width:60.999680pt;}
._37{width:62.236160pt;}
._3c{width:64.441173pt;}
._3d{width:66.036907pt;}
._39{width:67.947520pt;}
._3a{width:69.060267pt;}
._40{width:75.955200pt;}
._2b{width:79.906133pt;}
._e{width:81.333760pt;}
._27{width:90.321920pt;}
._28{width:91.676160pt;}
._2f{width:125.806080pt;}
._30{width:126.895787pt;}
._3b{width:182.645760pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y130{bottom:11.680000pt;}
.y1bc{bottom:11.706667pt;}
.y13f{bottom:11.720000pt;}
.y137{bottom:11.840000pt;}
.y201{bottom:11.994667pt;}
.y99{bottom:12.000000pt;}
.ydc{bottom:12.026667pt;}
.yaa{bottom:12.040000pt;}
.ybc{bottom:12.160000pt;}
.y190{bottom:12.186667pt;}
.y1bd{bottom:12.666667pt;}
.y222{bottom:12.800000pt;}
.yae{bottom:13.280000pt;}
.ya7{bottom:13.440000pt;}
.y1f4{bottom:13.920000pt;}
.y1e2{bottom:14.080000pt;}
.ye7{bottom:14.560000pt;}
.yd9{bottom:14.720000pt;}
.yb8{bottom:15.360000pt;}
.yd5{bottom:16.640000pt;}
.ya3{bottom:17.280000pt;}
.yd2{bottom:17.920000pt;}
.yef{bottom:18.400000pt;}
.ya{bottom:18.560000pt;}
.yec{bottom:19.680000pt;}
.ycd{bottom:19.840000pt;}
.y105{bottom:22.720000pt;}
.ye3{bottom:22.880000pt;}
.y1ec{bottom:23.520000pt;}
.y102{bottom:24.000000pt;}
.y37{bottom:27.200000pt;}
.yfe{bottom:28.000000pt;}
.y98{bottom:37.280000pt;}
.yc6{bottom:37.320000pt;}
.yf4{bottom:37.440000pt;}
.y221{bottom:38.080000pt;}
.yad{bottom:38.560000pt;}
.ybf{bottom:38.720000pt;}
.ya6{bottom:38.760000pt;}
.ye6{bottom:39.840000pt;}
.yd8{bottom:40.026667pt;}
.yb7{bottom:40.640000pt;}
.y36{bottom:41.760000pt;}
.ya2{bottom:42.560000pt;}
.y38{bottom:43.040000pt;}
.yd1{bottom:43.194667pt;}
.y39{bottom:43.200000pt;}
.yeb{bottom:45.120000pt;}
.ycc{bottom:45.274667pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.ye2{bottom:48.160000pt;}
.y101{bottom:49.280000pt;}
.yfd{bottom:53.280000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.yac{bottom:63.840000pt;}
.y107{bottom:63.866667pt;}
.ybe{bottom:64.000000pt;}
.yba{bottom:64.026667pt;}
.ya5{bottom:64.040000pt;}
.ye5{bottom:65.120000pt;}
.y143{bottom:65.274667pt;}
.y120{bottom:65.280000pt;}
.yd7{bottom:65.306667pt;}
.y13a{bottom:65.320000pt;}
.yb6{bottom:65.920000pt;}
.y110{bottom:65.960000pt;}
.y1e0{bottom:67.360000pt;}
.ya1{bottom:67.840000pt;}
.yd0{bottom:68.474667pt;}
.y34{bottom:70.272000pt;}
.yea{bottom:70.400000pt;}
.ycb{bottom:70.554667pt;}
.ye1{bottom:73.440000pt;}
.y100{bottom:74.560000pt;}
.y1e8{bottom:76.800000pt;}
.yfc{bottom:78.560000pt;}
.y11b{bottom:85.472000pt;}
.y203{bottom:86.112000pt;}
.y220{bottom:86.592000pt;}
.y31{bottom:86.752000pt;}
.y1b6{bottom:90.272000pt;}
.yc7{bottom:90.432000pt;}
.y1b7{bottom:90.554667pt;}
.y11f{bottom:90.560000pt;}
.y15d{bottom:90.586667pt;}
.y139{bottom:90.600000pt;}
.y142{bottom:90.714667pt;}
.y17f{bottom:90.720000pt;}
.y173{bottom:90.746667pt;}
.yb5{bottom:91.200000pt;}
.y10f{bottom:91.400000pt;}
.y1f0{bottom:92.640000pt;}
.y1df{bottom:92.680000pt;}
.ya0{bottom:93.120000pt;}
.yca{bottom:95.834667pt;}
.y82{bottom:97.312000pt;}
.y208{bottom:97.632000pt;}
.ye0{bottom:98.880000pt;}
.y60{bottom:98.912000pt;}
.y17b{bottom:101.312000pt;}
.y148{bottom:101.632000pt;}
.y1e7{bottom:102.080000pt;}
.yfb{bottom:104.000000pt;}
.y11a{bottom:110.752000pt;}
.y202{bottom:111.392000pt;}
.y21f{bottom:111.872000pt;}
.y2f{bottom:112.032000pt;}
.y140{bottom:115.552000pt;}
.y1fc{bottom:115.834667pt;}
.y12c{bottom:115.840000pt;}
.y15c{bottom:115.866667pt;}
.y126{bottom:115.880000pt;}
.y141{bottom:115.994667pt;}
.y11e{bottom:116.000000pt;}
.y172{bottom:116.026667pt;}
.y1bb{bottom:116.352000pt;}
.yb4{bottom:116.480000pt;}
.y10e{bottom:116.680000pt;}
.y96{bottom:116.992000pt;}
.y1ef{bottom:117.920000pt;}
.y1de{bottom:117.960000pt;}
.y9f{bottom:118.560000pt;}
.y81{bottom:119.232000pt;}
.y5f{bottom:120.672000pt;}
.yd4{bottom:120.992000pt;}
.yc9{bottom:121.114667pt;}
.y5c{bottom:123.072000pt;}
.ydf{bottom:124.160000pt;}
.y1fb{bottom:125.312000pt;}
.y1db{bottom:126.432000pt;}
.y17a{bottom:126.592000pt;}
.y14a{bottom:126.912000pt;}
.y1e6{bottom:127.360000pt;}
.yfa{bottom:129.306667pt;}
.y119{bottom:136.026667pt;}
.y7a{bottom:136.186667pt;}
.y21e{bottom:137.146667pt;}
.y2e{bottom:137.306667pt;}
.y198{bottom:140.986667pt;}
.y147{bottom:141.626667pt;}
.y95{bottom:141.946667pt;}
.y10d{bottom:141.960000pt;}
.y1ba{bottom:142.266667pt;}
.y9e{bottom:143.840000pt;}
.yc8{bottom:146.394667pt;}
.yd3{bottom:146.906667pt;}
.y5b{bottom:148.346667pt;}
.yde{bottom:149.440000pt;}
.y200{bottom:151.226667pt;}
.y1da{bottom:151.706667pt;}
.y1dc{bottom:151.866667pt;}
.y149{bottom:152.186667pt;}
.yf9{bottom:154.586667pt;}
.y79{bottom:158.106667pt;}
.y118{bottom:160.986667pt;}
.y21d{bottom:162.106667pt;}
.y2d{bottom:162.586667pt;}
.y1d6{bottom:165.626667pt;}
.y167{bottom:166.106667pt;}
.y177{bottom:166.266667pt;}
.y19b{bottom:166.906667pt;}
.y94{bottom:167.226667pt;}
.y146{bottom:167.546667pt;}
.y1b9{bottom:168.186667pt;}
.y9d{bottom:169.120000pt;}
.yce{bottom:172.826667pt;}
.y5a{bottom:173.626667pt;}
.y1ff{bottom:177.306667pt;}
.yf8{bottom:179.866667pt;}
.y117{bottom:186.266667pt;}
.y21c{bottom:187.386667pt;}
.y2c{bottom:187.866667pt;}
.y1d9{bottom:191.546667pt;}
.y16a{bottom:192.026667pt;}
.y179{bottom:192.186667pt;}
.y93{bottom:192.826667pt;}
.y145{bottom:193.466667pt;}
.y1b8{bottom:194.106667pt;}
.y9c{bottom:194.440000pt;}
.y207{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.y1fe{bottom:203.226667pt;}
.yf7{bottom:205.146667pt;}
.y116{bottom:211.866667pt;}
.y21b{bottom:212.666667pt;}
.y2b{bottom:213.146667pt;}
.y1d8{bottom:217.626667pt;}
.y92{bottom:218.106667pt;}
.y19a{bottom:218.746667pt;}
.y144{bottom:219.546667pt;}
.y9b{bottom:219.720000pt;}
.y1b1{bottom:220.186667pt;}
.y58{bottom:224.186667pt;}
.ycf{bottom:224.826667pt;}
.y212{bottom:225.146667pt;}
.y10c{bottom:225.786667pt;}
.y1fd{bottom:229.146667pt;}
.yf6{bottom:230.426667pt;}
.y21a{bottom:234.906667pt;}
.y2a{bottom:238.426667pt;}
.y91{bottom:243.546667pt;}
.y169{bottom:244.026667pt;}
.y199{bottom:244.826667pt;}
.y138{bottom:245.466667pt;}
.y1b5{bottom:246.106667pt;}
.y57{bottom:249.466667pt;}
.yc5{bottom:250.746667pt;}
.y115{bottom:251.866667pt;}
.y1f6{bottom:255.226667pt;}
.y29{bottom:263.546667pt;}
.y30{bottom:263.866667pt;}
.y90{bottom:268.826667pt;}
.y1d7{bottom:269.466667pt;}
.y168{bottom:269.946667pt;}
.y178{bottom:270.106667pt;}
.y193{bottom:270.746667pt;}
.y13e{bottom:271.386667pt;}
.y1b4{bottom:272.026667pt;}
.y56{bottom:274.746667pt;}
.y114{bottom:277.786667pt;}
.y1fa{bottom:281.146667pt;}
.y28{bottom:292.386667pt;}
.y8f{bottom:294.146667pt;}
.y1d1{bottom:295.426667pt;}
.y162{bottom:296.066667pt;}
.y197{bottom:296.706667pt;}
.y13d{bottom:297.346667pt;}
.y1b3{bottom:298.146667pt;}
.y55{bottom:300.066667pt;}
.y111{bottom:303.746667pt;}
.y1f9{bottom:307.106667pt;}
.yc4{bottom:314.146667pt;}
.y27{bottom:317.826667pt;}
.y80{bottom:319.106667pt;}
.y8e{bottom:319.426667pt;}
.y1d5{bottom:321.506667pt;}
.y166{bottom:321.986667pt;}
.y196{bottom:322.626667pt;}
.y13c{bottom:323.426667pt;}
.y1b2{bottom:324.066667pt;}
.y229{bottom:325.026667pt;}
.y54{bottom:325.346667pt;}
.y113{bottom:329.666667pt;}
.y1f8{bottom:333.026667pt;}
.yc3{bottom:339.426667pt;}
.y7f{bottom:340.866667pt;}
.y26{bottom:343.106667pt;}
.y8d{bottom:344.706667pt;}
.y1d4{bottom:347.426667pt;}
.y165{bottom:347.906667pt;}
.y176{bottom:348.066667pt;}
.y195{bottom:348.706667pt;}
.y13b{bottom:349.346667pt;}
.y1ac{bottom:349.986667pt;}
.y22c{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.y112{bottom:355.746667pt;}
.y1f7{bottom:359.106667pt;}
.yc2{bottom:364.706667pt;}
.y25{bottom:368.386667pt;}
.y8c{bottom:369.666667pt;}
.y1d3{bottom:373.346667pt;}
.y164{bottom:373.826667pt;}
.y175{bottom:373.986667pt;}
.y194{bottom:374.626667pt;}
.y132{bottom:375.266667pt;}
.y22b{bottom:375.746667pt;}
.y1b0{bottom:375.906667pt;}
.y52{bottom:376.066667pt;}
.yb3{bottom:378.626667pt;}
.yf5{bottom:381.666667pt;}
.y1ee{bottom:385.026667pt;}
.y24{bottom:393.666667pt;}
.y8b{bottom:395.266667pt;}
.y78{bottom:398.146667pt;}
.y1d2{bottom:399.426667pt;}
.y163{bottom:399.906667pt;}
.y18e{bottom:400.546667pt;}
.y22a{bottom:401.026667pt;}
.y136{bottom:401.186667pt;}
.y51{bottom:401.346667pt;}
.y1af{bottom:401.986667pt;}
.yc1{bottom:404.546667pt;}
.y10b{bottom:407.586667pt;}
.y1f5{bottom:410.946667pt;}
.y23{bottom:418.946667pt;}
.y8a{bottom:420.546667pt;}
.y77{bottom:423.426667pt;}
.y1cd{bottom:425.346667pt;}
.y15b{bottom:425.826667pt;}
.y22d{bottom:426.306667pt;}
.y50{bottom:426.626667pt;}
.y135{bottom:427.266667pt;}
.y1ae{bottom:427.906667pt;}
.yc0{bottom:430.626667pt;}
.y10a{bottom:433.506667pt;}
.y1f3{bottom:437.026667pt;}
.y224{bottom:439.906667pt;}
.y89{bottom:442.466667pt;}
.y22{bottom:444.226667pt;}
.y211{bottom:447.106667pt;}
.y76{bottom:448.706667pt;}
.y219{bottom:451.106667pt;}
.y1d0{bottom:451.266667pt;}
.y206{bottom:451.586667pt;}
.y161{bottom:451.746667pt;}
.y4f{bottom:451.906667pt;}
.y192{bottom:452.546667pt;}
.y134{bottom:453.186667pt;}
.y1ad{bottom:453.826667pt;}
.yb9{bottom:456.546667pt;}
.y106{bottom:459.586667pt;}
.y1f2{bottom:465.026667pt;}
.y223{bottom:465.186667pt;}
.y21{bottom:469.506667pt;}
.y210{bottom:472.386667pt;}
.y218{bottom:472.866667pt;}
.y75{bottom:473.986667pt;}
.y205{bottom:476.866667pt;}
.y4e{bottom:477.186667pt;}
.y160{bottom:477.826667pt;}
.y191{bottom:478.466667pt;}
.y133{bottom:479.106667pt;}
.y1a7{bottom:479.746667pt;}
.ybd{bottom:482.466667pt;}
.y109{bottom:485.506667pt;}
.y1f1{bottom:490.946667pt;}
.y20{bottom:494.786667pt;}
.y20f{bottom:497.666667pt;}
.y74{bottom:499.266667pt;}
.y228{bottom:502.146667pt;}
.y4d{bottom:502.466667pt;}
.y1cf{bottom:503.266667pt;}
.y15f{bottom:503.746667pt;}
.y18f{bottom:504.386667pt;}
.y12b{bottom:505.213333pt;}
.y1ab{bottom:505.853333pt;}
.ybb{bottom:508.413333pt;}
.y108{bottom:511.453333pt;}
.y1e5{bottom:516.893333pt;}
.y1f{bottom:520.093333pt;}
.y20e{bottom:522.973333pt;}
.y73{bottom:524.733333pt;}
.y4c{bottom:527.453333pt;}
.y5d{bottom:527.773333pt;}
.y1ce{bottom:529.213333pt;}
.y15e{bottom:529.693333pt;}
.y174{bottom:529.853333pt;}
.y189{bottom:530.493333pt;}
.y131{bottom:531.133333pt;}
.y1aa{bottom:531.773333pt;}
.y9a{bottom:534.493333pt;}
.yff{bottom:537.533333pt;}
.y1ed{bottom:542.813333pt;}
.y7e{bottom:542.973333pt;}
.y20d{bottom:544.893333pt;}
.y1e{bottom:545.533333pt;}
.y72{bottom:550.013333pt;}
.y5e{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y1c8{bottom:555.133333pt;}
.y156{bottom:555.613333pt;}
.y16f{bottom:555.773333pt;}
.y18d{bottom:556.413333pt;}
.y12f{bottom:557.053333pt;}
.y1a9{bottom:557.693333pt;}
.yb2{bottom:560.413333pt;}
.y104{bottom:563.453333pt;}
.y7d{bottom:564.893333pt;}
.y1eb{bottom:568.893333pt;}
.y1d{bottom:570.813333pt;}
.y71{bottom:575.293333pt;}
.y4a{bottom:578.493333pt;}
.y1cc{bottom:581.213333pt;}
.y15a{bottom:581.693333pt;}
.y18c{bottom:582.333333pt;}
.y12e{bottom:582.973333pt;}
.y1a8{bottom:583.773333pt;}
.yb1{bottom:586.333333pt;}
.y103{bottom:600.093333pt;}
.y70{bottom:600.573333pt;}
.y1c{bottom:601.373333pt;}
.y22f{bottom:603.453333pt;}
.y49{bottom:603.773333pt;}
.y1ea{bottom:606.333333pt;}
.y1cb{bottom:607.133333pt;}
.y159{bottom:607.613333pt;}
.y18b{bottom:608.413333pt;}
.y12d{bottom:609.053333pt;}
.y1a2{bottom:609.693333pt;}
.yab{bottom:612.413333pt;}
.y1b{bottom:621.373333pt;}
.y6f{bottom:625.853333pt;}
.yf3{bottom:626.013333pt;}
.y48{bottom:629.053333pt;}
.y1e9{bottom:632.253333pt;}
.y1ca{bottom:633.053333pt;}
.y158{bottom:633.533333pt;}
.y171{bottom:633.693333pt;}
.y18a{bottom:634.333333pt;}
.y125{bottom:634.973333pt;}
.y1a6{bottom:635.613333pt;}
.yb0{bottom:638.333333pt;}
.y6e{bottom:651.133333pt;}
.y1a{bottom:651.933333pt;}
.y47{bottom:654.333333pt;}
.y1dd{bottom:658.173333pt;}
.y1c9{bottom:658.973333pt;}
.y157{bottom:659.453333pt;}
.y170{bottom:659.613333pt;}
.y184{bottom:660.253333pt;}
.y12a{bottom:660.893333pt;}
.y1a5{bottom:661.533333pt;}
.yaf{bottom:664.253333pt;}
.y19{bottom:671.933333pt;}
.y88{bottom:674.493333pt;}
.y6d{bottom:676.413333pt;}
.y22e{bottom:679.293333pt;}
.y46{bottom:679.613333pt;}
.y1e4{bottom:684.253333pt;}
.y1c3{bottom:685.053333pt;}
.y151{bottom:685.533333pt;}
.y188{bottom:686.173333pt;}
.y129{bottom:686.973333pt;}
.y1a4{bottom:687.613333pt;}
.yf2{bottom:689.373333pt;}
.ya4{bottom:690.173333pt;}
.y217{bottom:690.813333pt;}
.y87{bottom:700.733333pt;}
.y6c{bottom:701.693333pt;}
.y18{bottom:702.493333pt;}
.y20b{bottom:704.573333pt;}
.y45{bottom:704.893333pt;}
.y1e3{bottom:710.173333pt;}
.y1c7{bottom:710.973333pt;}
.y155{bottom:711.453333pt;}
.y187{bottom:712.253333pt;}
.y128{bottom:712.893333pt;}
.y1a3{bottom:713.533333pt;}
.yf1{bottom:714.653333pt;}
.y216{bottom:716.093333pt;}
.ya9{bottom:716.253333pt;}
.y17{bottom:722.493333pt;}
.y86{bottom:726.013333pt;}
.y6b{bottom:726.973333pt;}
.y44{bottom:730.213333pt;}
.y1e1{bottom:736.133333pt;}
.y1c6{bottom:736.933333pt;}
.y154{bottom:737.413333pt;}
.y16e{bottom:737.573333pt;}
.y186{bottom:738.213333pt;}
.y127{bottom:738.853333pt;}
.y19d{bottom:739.493333pt;}
.yf0{bottom:739.973333pt;}
.y215{bottom:741.573333pt;}
.ya8{bottom:742.213333pt;}
.y6a{bottom:752.453333pt;}
.y16{bottom:753.093333pt;}
.ydd{bottom:753.893333pt;}
.y204{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y1c5{bottom:762.853333pt;}
.y153{bottom:763.493333pt;}
.y185{bottom:764.133333pt;}
.y11d{bottom:764.773333pt;}
.y1a1{bottom:765.573333pt;}
.y214{bottom:766.853333pt;}
.y97{bottom:768.133333pt;}
.y7c{bottom:770.853333pt;}
.y15{bottom:773.253333pt;}
.y69{bottom:777.733333pt;}
.y227{bottom:780.453333pt;}
.y42{bottom:780.773333pt;}
.yee{bottom:786.213333pt;}
.y20c{bottom:786.533333pt;}
.y213{bottom:788.613333pt;}
.y1c4{bottom:788.933333pt;}
.y152{bottom:789.413333pt;}
.y17e{bottom:790.053333pt;}
.y124{bottom:790.853333pt;}
.y1a0{bottom:791.493333pt;}
.y7b{bottom:792.613333pt;}
.y68{bottom:803.013333pt;}
.y14{bottom:803.813333pt;}
.y226{bottom:805.893333pt;}
.y41{bottom:806.213333pt;}
.yed{bottom:812.293333pt;}
.y1be{bottom:814.853333pt;}
.y14c{bottom:815.333333pt;}
.y16b{bottom:815.493333pt;}
.y183{bottom:816.133333pt;}
.y123{bottom:816.773333pt;}
.y19f{bottom:817.413333pt;}
.y13{bottom:823.813333pt;}
.y67{bottom:828.293333pt;}
.y85{bottom:829.413333pt;}
.y20a{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.ye4{bottom:838.213333pt;}
.y1c2{bottom:840.773333pt;}
.y150{bottom:841.253333pt;}
.y16d{bottom:841.413333pt;}
.y182{bottom:842.053333pt;}
.y122{bottom:842.693333pt;}
.y19e{bottom:843.333333pt;}
.y66{bottom:853.573333pt;}
.y12{bottom:854.373333pt;}
.y84{bottom:854.693333pt;}
.y209{bottom:856.453333pt;}
.y3f{bottom:856.773333pt;}
.ye9{bottom:864.133333pt;}
.y1c1{bottom:866.853333pt;}
.y14f{bottom:867.333333pt;}
.y181{bottom:867.973333pt;}
.y121{bottom:868.613333pt;}
.y19c{bottom:869.413333pt;}
.y11{bottom:874.053333pt;}
.y65{bottom:878.853333pt;}
.y83{bottom:881.093333pt;}
.y3e{bottom:882.053333pt;}
.ye8{bottom:891.333333pt;}
.y1c0{bottom:892.773333pt;}
.y14e{bottom:893.253333pt;}
.y180{bottom:894.053333pt;}
.y11c{bottom:894.693333pt;}
.y10{bottom:899.333333pt;}
.y64{bottom:904.293333pt;}
.y3d{bottom:907.333333pt;}
.yd6{bottom:917.253333pt;}
.y4{bottom:918.053333pt;}
.y1bf{bottom:918.693333pt;}
.y14d{bottom:919.173333pt;}
.y16c{bottom:919.333333pt;}
.y17d{bottom:919.973333pt;}
.y63{bottom:930.693333pt;}
.y225{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.ydb{bottom:944.613333pt;}
.y14b{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y62{bottom:956.960000pt;}
.y3b{bottom:957.920000pt;}
.yda{bottom:970.560000pt;}
.y61{bottom:982.240000pt;}
.y17c{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h16{height:25.280000pt;}
.h17{height:25.312000pt;}
.h1a{height:25.440000pt;}
.h30{height:25.472000pt;}
.h32{height:25.952000pt;}
.h24{height:26.560000pt;}
.h21{height:26.720000pt;}
.h37{height:27.200000pt;}
.h34{height:27.360000pt;}
.h6{height:29.760000pt;}
.h1f{height:29.920000pt;}
.h26{height:31.680000pt;}
.h2a{height:36.000000pt;}
.hb{height:36.667500pt;}
.h36{height:36.800000pt;}
.h2c{height:41.112500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h13{height:50.560000pt;}
.h1c{height:50.592000pt;}
.h27{height:50.720000pt;}
.h38{height:51.360000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h18{height:77.120000pt;}
.h2b{height:77.152000pt;}
.h1b{height:77.280000pt;}
.h15{height:77.312000pt;}
.h23{height:78.400000pt;}
.h20{height:78.592000pt;}
.h1e{height:81.760000pt;}
.h25{height:83.680000pt;}
.h29{height:87.840000pt;}
.h12{height:98.705643pt;}
.hf{height:98.705648pt;}
.h2f{height:129.120000pt;}
.h2e{height:129.152000pt;}
.h2d{height:129.280000pt;}
.h31{height:129.312000pt;}
.h33{height:131.232000pt;}
.h35{height:140.640000pt;}
.h4{height:148.666667pt;}
.h19{height:155.226667pt;}
.h1d{height:159.680000pt;}
.h22{height:162.720000pt;}
.h14{height:232.986667pt;}
.he{height:238.786667pt;}
.h28{height:243.706667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.wb{width:46.400000pt;}
.w1c{width:47.840000pt;}
.w15{width:59.360000pt;}
.w1e{width:64.000000pt;}
.w16{width:64.160000pt;}
.w70{width:71.392000pt;}
.w1f{width:72.480000pt;}
.w79{width:74.080000pt;}
.w7a{width:74.112000pt;}
.w73{width:74.880000pt;}
.w6e{width:75.232000pt;}
.w6f{width:75.520000pt;}
.wd{width:76.320000pt;}
.w7e{width:76.480000pt;}
.w7c{width:77.312000pt;}
.w72{width:78.080000pt;}
.w71{width:78.720000pt;}
.w7d{width:80.640000pt;}
.w7b{width:81.600000pt;}
.w78{width:83.872000pt;}
.we{width:84.320000pt;}
.w1d{width:85.312000pt;}
.w17{width:91.840000pt;}
.w20{width:91.872000pt;}
.wc{width:92.352000pt;}
.w74{width:93.280000pt;}
.w14{width:93.792000pt;}
.wf{width:95.680000pt;}
.w11{width:99.552000pt;}
.wa{width:102.912000pt;}
.w8{width:104.192000pt;}
.w13{width:105.632000pt;}
.w1b{width:106.912000pt;}
.w10{width:112.512000pt;}
.w19{width:115.552000pt;}
.w5c{width:118.112000pt;}
.w53{width:118.912000pt;}
.w4e{width:119.232000pt;}
.w6a{width:120.512000pt;}
.w58{width:121.472000pt;}
.w49{width:122.272000pt;}
.w44{width:122.912000pt;}
.w3f{width:123.232000pt;}
.w3a{width:123.552000pt;}
.w30{width:123.712000pt;}
.w21{width:123.840000pt;}
.w68{width:124.800000pt;}
.w61{width:125.472000pt;}
.w35{width:127.840000pt;}
.w2b{width:129.152000pt;}
.w64{width:131.200000pt;}
.w18{width:140.826667pt;}
.w47{width:141.120000pt;}
.w42{width:142.240000pt;}
.w5f{width:143.360000pt;}
.w33{width:153.120000pt;}
.w5b{width:153.466667pt;}
.w4c{width:155.066667pt;}
.w75{width:163.546667pt;}
.w26{width:167.386667pt;}
.w6b{width:167.546667pt;}
.w51{width:168.506667pt;}
.w2a{width:172.186667pt;}
.w25{width:172.826667pt;}
.w38{width:176.026667pt;}
.w2e{width:176.186667pt;}
.w56{width:178.426667pt;}
.w23{width:180.186667pt;}
.w3d{width:182.306667pt;}
.w52{width:183.066667pt;}
.w69{width:186.586667pt;}
.w57{width:186.746667pt;}
.w65{width:188.346667pt;}
.w29{width:192.986667pt;}
.w24{width:195.066667pt;}
.w60{width:195.546667pt;}
.w4d{width:195.866667pt;}
.w48{width:197.786667pt;}
.w3e{width:200.346667pt;}
.w39{width:200.506667pt;}
.w43{width:202.586667pt;}
.w2f{width:202.906667pt;}
.w37{width:205.786667pt;}
.w28{width:206.106667pt;}
.w2d{width:207.386667pt;}
.w9{width:208.986667pt;}
.w34{width:210.466667pt;}
.w1a{width:216.346667pt;}
.w3c{width:217.626667pt;}
.w32{width:217.826667pt;}
.w6c{width:223.586667pt;}
.w5a{width:224.666667pt;}
.w50{width:226.266667pt;}
.w4b{width:227.066667pt;}
.w55{width:230.906667pt;}
.w12{width:233.306667pt;}
.w76{width:233.346667pt;}
.w41{width:240.386667pt;}
.w46{width:245.026667pt;}
.w5e{width:258.786667pt;}
.w63{width:259.906667pt;}
.w67{width:281.346667pt;}
.w27{width:301.986667pt;}
.w4f{width:302.626667pt;}
.w66{width:307.746667pt;}
.w54{width:308.866667pt;}
.w62{width:311.266667pt;}
.w4a{width:315.746667pt;}
.w77{width:317.946667pt;}
.w59{width:319.266667pt;}
.w45{width:320.866667pt;}
.w3{width:321.186667pt;}
.w5d{width:321.666667pt;}
.w3b{width:324.226667pt;}
.w36{width:324.866667pt;}
.w40{width:326.146667pt;}
.w6d{width:326.906667pt;}
.w2c{width:327.426667pt;}
.w31{width:338.946667pt;}
.w22{width:341.026667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x42{left:45.440000pt;}
.x2{left:47.999988pt;}
.x55{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x1b{left:148.506667pt;}
.x14{left:153.146667pt;}
.x22{left:164.506667pt;}
.x50{left:212.506667pt;}
.x4a{left:216.506667pt;}
.x29{left:221.946667pt;}
.x3c{left:232.026667pt;}
.x3f{left:235.706667pt;}
.x46{left:237.306667pt;}
.x21{left:240.986667pt;}
.x3a{left:244.826667pt;}
.x37{left:246.906667pt;}
.x1a{left:249.626667pt;}
.x2e{left:252.026667pt;}
.x26{left:257.026667pt;}
.x30{left:259.426667pt;}
.x11{left:262.786655pt;}
.x10{left:269.986655pt;}
.xf{left:273.986655pt;}
.x4c{left:292.546667pt;}
.x52{left:297.026667pt;}
.xc{left:300.866655pt;}
.x2a{left:350.946667pt;}
.x47{left:356.866667pt;}
.x3d{left:357.826667pt;}
.x44{left:360.226667pt;}
.x15{left:362.946667pt;}
.x38{left:364.706667pt;}
.x40{left:368.226667pt;}
.x36{left:369.826667pt;}
.x53{left:371.746667pt;}
.x31{left:373.986667pt;}
.x34{left:375.266667pt;}
.x2c{left:376.546667pt;}
.x23{left:381.506667pt;}
.x1c{left:382.466667pt;}
.x2f{left:387.906667pt;}
.x27{left:389.986667pt;}
.x8{left:428.573321pt;}
.x4b{left:440.893333pt;}
.x51{left:446.493333pt;}
.xd{left:452.573321pt;}
.x5{left:463.133333pt;}
.x16{left:466.493333pt;}
.x1d{left:488.733333pt;}
.x17{left:513.533333pt;}
.x4d{left:520.253333pt;}
.x54{left:528.733333pt;}
.x1e{left:535.773333pt;}
.x24{left:537.693333pt;}
.x2b{left:557.693333pt;}
.x28{left:570.973333pt;}
.x3b{left:578.493333pt;}
.x32{left:580.573333pt;}
.x2d{left:584.573333pt;}
.x3e{left:589.373333pt;}
.x33{left:591.453333pt;}
.x39{left:592.573333pt;}
.x41{left:593.533333pt;}
.x4e{left:599.013333pt;}
.x18{left:606.533333pt;}
.x35{left:616.293333pt;}
.x45{left:620.773333pt;}
.x25{left:623.653333pt;}
.x43{left:627.333333pt;}
.x1f{left:630.213333pt;}
.x48{left:638.853333pt;}
.x4f{left:674.533333pt;}
.x19{left:683.493333pt;}
.x12{left:687.653321pt;}
.xe{left:688.613321pt;}
.x20{left:690.213333pt;}
.x49{left:768.613321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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