
    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_b3f3eda1fde942cc05f01143.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_98b677e8ba4e27072b4c6392.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_8abb0b73bebcfa979540f374.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_bdf3b65f3929ea69ce075337.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_7ca824938914fb254cf83e2c.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_8c4753724338ef5c4cec7224.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_d37d6ad8cdef59feca1a8553.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bd2b918b45542d24be2888a1.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.m2{transform:matrix(0.372225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372225,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.372550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372550,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.ls25{letter-spacing:-1.488000px;}
.ls13{letter-spacing:-1.428000px;}
.ls17{letter-spacing:-0.732000px;}
.ls34{letter-spacing:-0.708000px;}
.ls3b{letter-spacing:-0.593400px;}
.ls18{letter-spacing:-0.288600px;}
.ls7{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270600px;}
.ls9{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.121200px;}
.ls2a{letter-spacing:-0.103800px;}
.ls20{letter-spacing:-0.097800px;}
.lsb{letter-spacing:-0.094800px;}
.ls5{letter-spacing:-0.085200px;}
.ls11{letter-spacing:-0.078000px;}
.ls2b{letter-spacing:-0.053280px;}
.ls27{letter-spacing:-0.052560px;}
.lsd{letter-spacing:-0.046800px;}
.ls1a{letter-spacing:-0.038880px;}
.ls6{letter-spacing:-0.036000px;}
.ls22{letter-spacing:-0.015120px;}
.ls12{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls29{letter-spacing:0.027360px;}
.lse{letter-spacing:0.038880px;}
.ls35{letter-spacing:0.078000px;}
.ls1b{letter-spacing:0.079200px;}
.ls30{letter-spacing:0.126600px;}
.ls31{letter-spacing:0.126720px;}
.ls16{letter-spacing:0.133920px;}
.ls33{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.187200px;}
.ls39{letter-spacing:0.198000px;}
.ls3d{letter-spacing:0.209400px;}
.ls1f{letter-spacing:0.211800px;}
.ls3f{letter-spacing:0.220800px;}
.ls10{letter-spacing:0.241800px;}
.ls32{letter-spacing:0.274800px;}
.ls19{letter-spacing:0.285600px;}
.ls2f{letter-spacing:0.316800px;}
.ls28{letter-spacing:0.323400px;}
.lsa{letter-spacing:0.328200px;}
.ls26{letter-spacing:0.328800px;}
.ls0{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.366000px;}
.ls15{letter-spacing:0.459600px;}
.ls1d{letter-spacing:0.532800px;}
.ls37{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.547200px;}
.ls24{letter-spacing:0.618000px;}
.ls14{letter-spacing:0.684000px;}
.ls21{letter-spacing:0.702000px;}
.ls3c{letter-spacing:0.708000px;}
.ls3e{letter-spacing:0.846000px;}
.ls36{letter-spacing:0.846720px;}
.ls38{letter-spacing:2.692800px;}
.ls3a{letter-spacing:5.574000px;}
.ls1c{letter-spacing:10.944000px;}
.ls2e{letter-spacing:11.664000px;}
.ls2d{letter-spacing:15.264000px;}
.ls2c{letter-spacing:22.986720px;}
.ls3{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;}
}
.ws18{word-spacing:-18.000000px;}
.ws24{word-spacing:-17.712000px;}
.ws2e{word-spacing:-13.993200px;}
.ws0{word-spacing:-13.860000px;}
.ws1b{word-spacing:-13.849200px;}
.ws1d{word-spacing:-13.765200px;}
.wsa{word-spacing:-13.513200px;}
.ws2{word-spacing:-13.504200px;}
.ws20{word-spacing:-13.470600px;}
.ws26{word-spacing:-13.464000px;}
.ws14{word-spacing:-13.432800px;}
.ws28{word-spacing:-13.422000px;}
.ws2f{word-spacing:-13.368000px;}
.ws19{word-spacing:-13.359000px;}
.ws2d{word-spacing:-13.356600px;}
.ws2b{word-spacing:-13.345200px;}
.ws2a{word-spacing:-13.326480px;}
.ws25{word-spacing:-13.273800px;}
.ws29{word-spacing:-13.225200px;}
.wsc{word-spacing:-13.186080px;}
.ws21{word-spacing:-13.174560px;}
.ws10{word-spacing:-13.160160px;}
.ws16{word-spacing:-13.147200px;}
.ws1c{word-spacing:-13.132080px;}
.ws15{word-spacing:-13.108320px;}
.wsb{word-spacing:-13.100400px;}
.ws1f{word-spacing:-13.094640px;}
.ws23{word-spacing:-13.093920px;}
.wse{word-spacing:-13.069200px;}
.ws1a{word-spacing:-13.049400px;}
.ws22{word-spacing:-13.043400px;}
.ws17{word-spacing:-13.026000px;}
.ws13{word-spacing:-12.858600px;}
.ws2c{word-spacing:-12.553800px;}
.ws27{word-spacing:-12.439200px;}
.ws12{word-spacing:-12.415200px;}
.ws1{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.719200px;}
.ws1e{word-spacing:-11.659200px;}
.wsd{word-spacing:-10.854600px;}
.ws8{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.527600px;}
.ws7{word-spacing:-10.342200px;}
.ws9{word-spacing:-9.092400px;}
.ws11{word-spacing:-8.553600px;}
.ws4{word-spacing:-7.884000px;}
.ws5{word-spacing:-7.632000px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-5.997360px;}
._1c{margin-left:-4.626960px;}
._19{margin-left:-3.573360px;}
._1a{margin-left:-2.251920px;}
._2{margin-left:-1.242000px;}
._1{width:1.092000px;}
._4{width:2.235840px;}
._c{width:3.884400px;}
._8{width:5.421840px;}
._9{width:6.828960px;}
._18{width:7.962720px;}
._e{width:9.860400px;}
._7{width:11.653200px;}
._1d{width:12.802800px;}
._12{width:14.402160px;}
._14{width:15.418080px;}
._16{width:17.270640px;}
._17{width:18.704880px;}
._a{width:19.883760px;}
._b{width:21.095280px;}
._f{width:22.632720px;}
._20{width:23.652720px;}
._13{width:24.740640px;}
._1b{width:26.593200px;}
._15{width:28.505520px;}
._24{width:29.515920px;}
._25{width:30.608160px;}
._d{width:32.270400px;}
._11{width:34.226160px;}
._10{width:35.497440px;}
._22{width:43.686480px;}
._23{width:45.057360px;}
._1e{width:46.708200px;}
._21{width:50.966400px;}
._0{width:75.000000px;}
._27{width:80.208480px;}
._28{width:93.604560px;}
._29{width:94.883280px;}
._26{width:139.486560px;}
._3{width:181.620000px;}
._6{width:202.972800px;}
._1f{width:1069.687200px;}
.fc4{color:transparent;}
.fc5{color:rgb(51,51,153);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.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;}
.y0{bottom:0.000000px;}
.yd5{bottom:3.414000px;}
.yac{bottom:3.420000px;}
.ycb{bottom:3.780000px;}
.yb0{bottom:4.140000px;}
.y15d{bottom:4.500000px;}
.yae{bottom:4.680000px;}
.ya9{bottom:5.400000px;}
.yb7{bottom:5.430000px;}
.yf2{bottom:5.580000px;}
.y184{bottom:5.760000px;}
.yd9{bottom:5.940000px;}
.yb5{bottom:6.120000px;}
.y12b{bottom:6.300000px;}
.ya4{bottom:6.480000px;}
.y137{bottom:6.660000px;}
.ybb{bottom:6.840000px;}
.yb9{bottom:7.200000px;}
.y1c4{bottom:7.920000px;}
.y163{bottom:8.100000px;}
.yee{bottom:8.640000px;}
.y108{bottom:9.000000px;}
.yc7{bottom:9.180000px;}
.y10a{bottom:9.360000px;}
.ya7{bottom:9.540000px;}
.yce{bottom:9.720000px;}
.y12d{bottom:9.900000px;}
.y1b2{bottom:10.440000px;}
.yea{bottom:10.620000px;}
.y185{bottom:19.980000px;}
.y19a{bottom:20.160000px;}
.yab{bottom:20.880000px;}
.yd4{bottom:21.054000px;}
.yb2{bottom:21.060000px;}
.yc9{bottom:21.105000px;}
.y17e{bottom:21.780000px;}
.y166{bottom:24.840000px;}
.y1c3{bottom:25.560000px;}
.y162{bottom:25.740000px;}
.ya6{bottom:27.180000px;}
.yd7{bottom:27.210000px;}
.ycd{bottom:27.360000px;}
.y130{bottom:27.945000px;}
.y1b4{bottom:28.080000px;}
.y53{bottom:35.100000px;}
.y199{bottom:37.845000px;}
.y17d{bottom:39.420000px;}
.y19c{bottom:40.140000px;}
.y165{bottom:42.480000px;}
.y161{bottom:43.200000px;}
.y52{bottom:48.420000px;}
.y133{bottom:48.960000px;}
.y197{bottom:56.205000px;}
.y7{bottom:56.340000px;}
.y55{bottom:56.520000px;}
.y17c{bottom:57.060000px;}
.y168{bottom:57.645000px;}
.y1b6{bottom:58.005000px;}
.y51{bottom:58.860000px;}
.y160{bottom:60.840000px;}
.y181{bottom:61.020000px;}
.y50{bottom:69.480000px;}
.y6{bottom:70.056000px;}
.y15f{bottom:78.480000px;}
.y4f{bottom:87.120000px;}
.y1f3{bottom:110.916000px;}
.y40{bottom:117.216000px;}
.y10c{bottom:118.296000px;}
.y129{bottom:119.736000px;}
.y194{bottom:120.636000px;}
.y15b{bottom:121.896000px;}
.y90{bottom:122.256000px;}
.y21d{bottom:127.116000px;}
.y1f2{bottom:128.376000px;}
.y4e{bottom:130.320000px;}
.yd6{bottom:131.436000px;}
.y3f{bottom:134.856000px;}
.y10b{bottom:135.756000px;}
.y1c0{bottom:135.936000px;}
.y128{bottom:137.196000px;}
.y193{bottom:138.276000px;}
.y15a{bottom:139.536000px;}
.y8f{bottom:139.896000px;}
.y4d{bottom:144.360000px;}
.y21c{bottom:144.756000px;}
.y1f1{bottom:146.016000px;}
.yd3{bottom:149.616000px;}
.y109{bottom:150.690000px;}
.y3e{bottom:152.490000px;}
.y1bf{bottom:153.390000px;}
.y127{bottom:154.830000px;}
.y159{bottom:156.990000px;}
.y8e{bottom:157.350000px;}
.y4c{bottom:158.400000px;}
.y192{bottom:158.430000px;}
.y21b{bottom:162.210000px;}
.y1f0{bottom:163.650000px;}
.y3d{bottom:169.950000px;}
.y1be{bottom:171.030000px;}
.y4b{bottom:172.440000px;}
.y126{bottom:172.470000px;}
.y158{bottom:174.630000px;}
.y8d{bottom:174.990000px;}
.y191{bottom:176.070000px;}
.y21a{bottom:179.850000px;}
.y1ef{bottom:181.110000px;}
.yd2{bottom:185.610000px;}
.y4a{bottom:186.480000px;}
.y3c{bottom:187.590000px;}
.y1bd{bottom:188.670000px;}
.y125{bottom:189.930000px;}
.y157{bottom:192.270000px;}
.y8c{bottom:192.630000px;}
.y190{bottom:193.530000px;}
.y219{bottom:197.490000px;}
.y1ee{bottom:198.750000px;}
.y107{bottom:199.110000px;}
.y49{bottom:199.260000px;}
.yd1{bottom:203.970000px;}
.y3b{bottom:205.230000px;}
.y1bc{bottom:206.130000px;}
.y124{bottom:207.570000px;}
.y48{bottom:207.720000px;}
.y156{bottom:209.730000px;}
.y8b{bottom:210.270000px;}
.y18f{bottom:211.170000px;}
.y218{bottom:214.950000px;}
.y1ed{bottom:216.390000px;}
.y47{bottom:221.805000px;}
.yd0{bottom:222.330000px;}
.y3a{bottom:222.690000px;}
.y106{bottom:223.050000px;}
.y1bb{bottom:223.770000px;}
.y123{bottom:225.210000px;}
.y155{bottom:227.370000px;}
.y8a{bottom:227.730000px;}
.y18e{bottom:231.330000px;}
.y217{bottom:232.590000px;}
.y1ec{bottom:233.850000px;}
.y46{bottom:235.845000px;}
.y1ba{bottom:238.710000px;}
.y39{bottom:240.330000px;}
.ycf{bottom:240.690000px;}
.y122{bottom:242.850000px;}
.y154{bottom:245.010000px;}
.y89{bottom:245.370000px;}
.y18d{bottom:248.970000px;}
.y45{bottom:249.885000px;}
.y216{bottom:250.230000px;}
.y1eb{bottom:254.010000px;}
.y38{bottom:257.970000px;}
.ycc{bottom:258.870000px;}
.y121{bottom:260.310000px;}
.y105{bottom:262.290000px;}
.y153{bottom:262.650000px;}
.y88{bottom:263.010000px;}
.y1b9{bottom:263.190000px;}
.y44{bottom:263.925000px;}
.y18c{bottom:266.430000px;}
.y215{bottom:267.690000px;}
.y1ea{bottom:271.650000px;}
.y37{bottom:275.430000px;}
.y43{bottom:276.525000px;}
.y120{bottom:277.950000px;}
.y104{bottom:279.930000px;}
.y152{bottom:280.110000px;}
.y87{bottom:280.470000px;}
.y18b{bottom:284.070000px;}
.y214{bottom:285.330000px;}
.y1b5{bottom:287.670000px;}
.y42{bottom:287.685000px;}
.y1e9{bottom:289.290000px;}
.y36{bottom:293.070000px;}
.y11f{bottom:295.590000px;}
.y103{bottom:297.570000px;}
.y151{bottom:297.750000px;}
.y86{bottom:298.110000px;}
.yca{bottom:301.170000px;}
.y213{bottom:302.970000px;}
.y18a{bottom:304.230000px;}
.y1e8{bottom:306.750000px;}
.y35{bottom:310.530000px;}
.y1b8{bottom:312.150000px;}
.y11e{bottom:313.050000px;}
.y102{bottom:315.030000px;}
.y150{bottom:315.390000px;}
.y85{bottom:315.750000px;}
.yc8{bottom:319.890000px;}
.y212{bottom:320.610000px;}
.y189{bottom:321.870000px;}
.y1e7{bottom:326.910000px;}
.y34{bottom:327.810000px;}
.y11d{bottom:330.690000px;}
.y101{bottom:332.670000px;}
.y14f{bottom:332.850000px;}
.y84{bottom:333.210000px;}
.y1b7{bottom:336.495000px;}
.y211{bottom:338.115000px;}
.y188{bottom:339.375000px;}
.y1e6{bottom:344.595000px;}
.y33{bottom:345.315000px;}
.y11c{bottom:348.375000px;}
.y100{bottom:350.355000px;}
.y14e{bottom:350.535000px;}
.y83{bottom:350.895000px;}
.yc6{bottom:355.755000px;}
.y187{bottom:357.015000px;}
.y1b3{bottom:360.615000px;}
.y1e5{bottom:362.235000px;}
.y32{bottom:362.775000px;}
.y11b{bottom:365.835000px;}
.yff{bottom:367.815000px;}
.y14d{bottom:368.175000px;}
.y82{bottom:368.535000px;}
.y186{bottom:371.955000px;}
.y210{bottom:373.395000px;}
.y1e4{bottom:379.695000px;}
.y31{bottom:380.415000px;}
.yc5{bottom:383.295000px;}
.y11a{bottom:383.475000px;}
.yfe{bottom:385.455000px;}
.y14c{bottom:385.635000px;}
.y81{bottom:386.175000px;}
.y20f{bottom:390.855000px;}
.y180{bottom:392.655000px;}
.y30{bottom:398.055000px;}
.y1e3{bottom:399.855000px;}
.yc4{bottom:400.935000px;}
.y119{bottom:401.115000px;}
.yfd{bottom:403.095000px;}
.y14b{bottom:403.275000px;}
.y80{bottom:403.635000px;}
.y20e{bottom:408.495000px;}
.y2f{bottom:415.515000px;}
.y1e2{bottom:417.495000px;}
.yc3{bottom:418.575000px;}
.y118{bottom:418.755000px;}
.yfc{bottom:420.555000px;}
.y14a{bottom:420.915000px;}
.y7f{bottom:421.275000px;}
.y20d{bottom:426.135000px;}
.y183{bottom:427.575000px;}
.y1b1{bottom:432.435000px;}
.y2e{bottom:433.155000px;}
.y1e1{bottom:435.135000px;}
.yc2{bottom:436.035000px;}
.y117{bottom:436.215000px;}
.yfb{bottom:438.195000px;}
.y149{bottom:438.555000px;}
.y7e{bottom:438.915000px;}
.y20c{bottom:443.595000px;}
.y182{bottom:448.275000px;}
.y1b0{bottom:449.895000px;}
.y2d{bottom:450.795000px;}
.y1e0{bottom:452.595000px;}
.yc1{bottom:453.675000px;}
.y116{bottom:453.855000px;}
.yfa{bottom:455.835000px;}
.y148{bottom:456.015000px;}
.y7d{bottom:456.375000px;}
.y20b{bottom:461.235000px;}
.y1af{bottom:467.535000px;}
.y2c{bottom:468.255000px;}
.y17b{bottom:468.615000px;}
.y1df{bottom:470.235000px;}
.yc0{bottom:471.315000px;}
.y115{bottom:471.495000px;}
.yf9{bottom:473.295000px;}
.y147{bottom:473.655000px;}
.y7c{bottom:474.015000px;}
.y20a{bottom:478.875000px;}
.y1ae{bottom:485.175000px;}
.y2b{bottom:485.895000px;}
.y1de{bottom:487.875000px;}
.ybf{bottom:488.775000px;}
.y114{bottom:488.955000px;}
.yf8{bottom:490.935000px;}
.y146{bottom:491.295000px;}
.y7b{bottom:491.655000px;}
.y209{bottom:496.335000px;}
.y1ad{bottom:502.815000px;}
.y113{bottom:503.175000px;}
.y2a{bottom:503.535000px;}
.y17f{bottom:504.615000px;}
.y1dd{bottom:505.335000px;}
.ybe{bottom:506.415000px;}
.yf7{bottom:508.575000px;}
.y145{bottom:508.755000px;}
.y7a{bottom:509.115000px;}
.y208{bottom:513.975000px;}
.y1ac{bottom:520.275000px;}
.y29{bottom:520.995000px;}
.y1dc{bottom:522.975000px;}
.ybd{bottom:524.055000px;}
.yf6{bottom:526.215000px;}
.y144{bottom:526.395000px;}
.y79{bottom:526.755000px;}
.y207{bottom:531.615000px;}
.y1ab{bottom:537.915000px;}
.y28{bottom:538.635000px;}
.y17a{bottom:540.435000px;}
.y1db{bottom:540.615000px;}
.ybc{bottom:541.515000px;}
.yf5{bottom:543.675000px;}
.y143{bottom:544.035000px;}
.y78{bottom:544.395000px;}
.y206{bottom:549.255000px;}
.y1aa{bottom:555.555000px;}
.y27{bottom:556.275000px;}
.yba{bottom:556.455000px;}
.y1da{bottom:558.255000px;}
.yf4{bottom:561.315000px;}
.y142{bottom:561.495000px;}
.y77{bottom:561.855000px;}
.y179{bottom:565.275000px;}
.y205{bottom:566.715000px;}
.y1a9{bottom:573.015000px;}
.y1d9{bottom:575.715000px;}
.y26{bottom:576.075000px;}
.yf3{bottom:576.255000px;}
.yb8{bottom:578.235000px;}
.y141{bottom:579.135000px;}
.y76{bottom:579.495000px;}
.y178{bottom:582.915000px;}
.y204{bottom:584.355000px;}
.y1a8{bottom:590.655000px;}
.y1d8{bottom:593.355000px;}
.y25{bottom:593.715000px;}
.yf1{bottom:594.615000px;}
.y140{bottom:596.775000px;}
.y75{bottom:597.135000px;}
.yb6{bottom:600.375000px;}
.y177{bottom:600.555000px;}
.y203{bottom:601.995000px;}
.y1a7{bottom:608.325000px;}
.y1d7{bottom:611.025000px;}
.y24{bottom:611.205000px;}
.y13f{bottom:614.265000px;}
.y74{bottom:614.805000px;}
.yf0{bottom:614.985000px;}
.y176{bottom:618.045000px;}
.y202{bottom:619.485000px;}
.yb4{bottom:620.745000px;}
.y1a6{bottom:625.785000px;}
.y1d6{bottom:628.485000px;}
.y23{bottom:628.845000px;}
.y13e{bottom:631.905000px;}
.y73{bottom:632.265000px;}
.yef{bottom:633.345000px;}
.y175{bottom:635.685000px;}
.y201{bottom:637.125000px;}
.yb3{bottom:641.805000px;}
.y1a5{bottom:643.425000px;}
.y1d5{bottom:646.125000px;}
.y22{bottom:646.485000px;}
.y13d{bottom:649.545000px;}
.y72{bottom:649.905000px;}
.y174{bottom:653.325000px;}
.y200{bottom:654.765000px;}
.y41{bottom:656.565000px;}
.y1a4{bottom:661.065000px;}
.y1d4{bottom:663.765000px;}
.y21{bottom:664.125000px;}
.y13c{bottom:667.185000px;}
.y71{bottom:667.545000px;}
.yed{bottom:669.345000px;}
.y173{bottom:670.785000px;}
.y1ff{bottom:672.225000px;}
.yb1{bottom:677.625000px;}
.y1a3{bottom:678.525000px;}
.y1d3{bottom:681.225000px;}
.y20{bottom:681.585000px;}
.y13b{bottom:681.945000px;}
.y70{bottom:685.005000px;}
.y172{bottom:688.425000px;}
.y1fe{bottom:689.865000px;}
.yec{bottom:692.925000px;}
.y1a2{bottom:696.165000px;}
.y1d2{bottom:698.865000px;}
.y1f{bottom:699.225000px;}
.y6f{bottom:702.645000px;}
.y13a{bottom:703.365000px;}
.y171{bottom:706.065000px;}
.y1fd{bottom:707.505000px;}
.yaf{bottom:713.625000px;}
.y1a1{bottom:713.805000px;}
.y1d1{bottom:716.505000px;}
.y1e{bottom:716.865000px;}
.y6e{bottom:720.285000px;}
.y170{bottom:723.525000px;}
.y139{bottom:724.785000px;}
.y1fc{bottom:725.145000px;}
.y1a0{bottom:731.445000px;}
.yad{bottom:732.705000px;}
.y1d0{bottom:734.145000px;}
.y1d{bottom:734.325000px;}
.yeb{bottom:735.045000px;}
.y6d{bottom:737.745000px;}
.y16f{bottom:741.165000px;}
.y1fb{bottom:745.125000px;}
.y138{bottom:746.025000px;}
.y19f{bottom:746.205000px;}
.y1cf{bottom:751.605000px;}
.y1c{bottom:751.965000px;}
.yaa{bottom:752.325000px;}
.ye9{bottom:753.405000px;}
.y6c{bottom:755.385000px;}
.y16e{bottom:758.805000px;}
.y1fa{bottom:762.765000px;}
.y19b{bottom:764.565000px;}
.y136{bottom:767.445000px;}
.y1ce{bottom:769.245000px;}
.y1b{bottom:769.605000px;}
.y112{bottom:769.965000px;}
.y6b{bottom:773.025000px;}
.y16d{bottom:776.445000px;}
.ye8{bottom:778.965000px;}
.y1f9{bottom:780.405000px;}
.y19e{bottom:782.925000px;}
.y1cd{bottom:786.885000px;}
.y1a{bottom:787.065000px;}
.y111{bottom:787.425000px;}
.ya8{bottom:788.145000px;}
.y132{bottom:789.045000px;}
.y6a{bottom:790.665000px;}
.y16c{bottom:793.905000px;}
.y1f8{bottom:800.565000px;}
.y19d{bottom:801.285000px;}
.y1cc{bottom:804.345000px;}
.y19{bottom:804.705000px;}
.y110{bottom:805.065000px;}
.y69{bottom:808.125000px;}
.ya5{bottom:808.485000px;}
.y16b{bottom:808.845000px;}
.y135{bottom:810.285000px;}
.y1f7{bottom:818.025000px;}
.y196{bottom:819.645000px;}
.ye7{bottom:821.085000px;}
.y1cb{bottom:821.985000px;}
.y18{bottom:822.345000px;}
.y10f{bottom:822.705000px;}
.y68{bottom:825.765000px;}
.y167{bottom:827.205000px;}
.y134{bottom:831.705000px;}
.y1f6{bottom:835.665000px;}
.y198{bottom:838.005000px;}
.ye6{bottom:839.445000px;}
.y1ca{bottom:839.625000px;}
.y17{bottom:839.985000px;}
.y10e{bottom:840.165000px;}
.y67{bottom:843.405000px;}
.ya3{bottom:850.605000px;}
.y12f{bottom:852.945000px;}
.y1f5{bottom:855.825000px;}
.y1c9{bottom:857.085000px;}
.y16{bottom:857.445000px;}
.y10d{bottom:857.805000px;}
.y66{bottom:860.865000px;}
.y16a{bottom:863.025000px;}
.y131{bottom:874.410000px;}
.y1c8{bottom:874.770000px;}
.y15{bottom:875.130000px;}
.ye5{bottom:875.310000px;}
.ya2{bottom:875.490000px;}
.y1f4{bottom:876.030000px;}
.y65{bottom:878.550000px;}
.y169{bottom:881.430000px;}
.y195{bottom:890.790000px;}
.y1c7{bottom:892.410000px;}
.y14{bottom:892.770000px;}
.ya1{bottom:892.950000px;}
.y12e{bottom:895.830000px;}
.y64{bottom:896.190000px;}
.y15e{bottom:899.790000px;}
.ye4{bottom:902.850000px;}
.y1c6{bottom:910.050000px;}
.y13{bottom:910.230000px;}
.ya0{bottom:910.590000px;}
.y63{bottom:913.650000px;}
.y12c{bottom:917.070000px;}
.ye3{bottom:920.490000px;}
.y1c5{bottom:924.810000px;}
.y12{bottom:927.870000px;}
.y9f{bottom:928.230000px;}
.y62{bottom:931.290000px;}
.y164{bottom:935.790000px;}
.ye2{bottom:938.130000px;}
.y11{bottom:945.510000px;}
.y9e{bottom:945.690000px;}
.y61{bottom:948.930000px;}
.ye1{bottom:955.590000px;}
.y12a{bottom:959.370000px;}
.y10{bottom:962.970000px;}
.y9d{bottom:963.330000px;}
.y60{bottom:966.570000px;}
.y1c2{bottom:968.370000px;}
.ye0{bottom:973.230000px;}
.yf{bottom:980.610000px;}
.y9c{bottom:980.970000px;}
.y5f{bottom:984.030000px;}
.ydf{bottom:990.870000px;}
.y15c{bottom:993.210000px;}
.ye{bottom:997.890000px;}
.y9b{bottom:998.610000px;}
.y5e{bottom:1001.670000px;}
.yde{bottom:1008.330000px;}
.y1c1{bottom:1008.870000px;}
.yd{bottom:1013.730000px;}
.y9a{bottom:1016.070000px;}
.y5d{bottom:1019.310000px;}
.ydd{bottom:1025.970000px;}
.yc{bottom:1030.110000px;}
.y99{bottom:1033.710000px;}
.y5c{bottom:1036.770000px;}
.ydc{bottom:1043.610000px;}
.yb{bottom:1049.550000px;}
.y98{bottom:1051.350000px;}
.y5b{bottom:1054.410000px;}
.ydb{bottom:1061.070000px;}
.y97{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5a{bottom:1072.050000px;}
.yda{bottom:1078.710000px;}
.y96{bottom:1086.450000px;}
.y59{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.yd8{bottom:1093.650000px;}
.y95{bottom:1104.090000px;}
.y58{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y94{bottom:1121.550000px;}
.y57{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y93{bottom:1139.220000px;}
.y56{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y92{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y91{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y54{bottom:1197.540000px;}
.h1f{height:17.460000px;}
.h20{height:17.640000px;}
.h31{height:17.676000px;}
.h1e{height:18.000000px;}
.h16{height:18.360000px;}
.h2d{height:18.720000px;}
.h15{height:18.900000px;}
.h13{height:19.620000px;}
.h19{height:19.656000px;}
.h34{height:19.800000px;}
.h22{height:19.980000px;}
.hb{height:20.117109px;}
.h18{height:20.160000px;}
.h28{height:20.520000px;}
.h2c{height:20.700000px;}
.h11{height:20.736000px;}
.h1b{height:21.060000px;}
.h1a{height:21.240000px;}
.h40{height:22.140000px;}
.h24{height:22.860000px;}
.h25{height:23.040000px;}
.h26{height:23.220000px;}
.h1c{height:23.400000px;}
.h27{height:23.580000px;}
.h3e{height:23.760000px;}
.h3a{height:24.660000px;}
.h23{height:24.840000px;}
.he{height:30.480469px;}
.h4{height:33.683203px;}
.h35{height:34.020000px;}
.h14{height:35.100000px;}
.h1d{height:35.136000px;}
.h17{height:35.280000px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h3f{height:39.780000px;}
.hc{height:40.843828px;}
.h12{height:41.400000px;}
.h21{height:41.436000px;}
.h29{height:41.580000px;}
.h9{height:41.726953px;}
.h2a{height:41.976000px;}
.h3b{height:42.300000px;}
.h8{height:45.720703px;}
.h10{height:50.273438px;}
.h5{height:50.597578px;}
.h38{height:51.876000px;}
.h36{height:52.417969px;}
.h39{height:54.360000px;}
.h7{height:56.084062px;}
.h2f{height:56.520000px;}
.hf{height:58.819922px;}
.hd{height:60.960938px;}
.h2b{height:63.180000px;}
.h6{height:65.837812px;}
.h3d{height:68.597578px;}
.h37{height:70.236000px;}
.h32{height:71.100000px;}
.h30{height:71.856000px;}
.h3c{height:72.216000px;}
.h33{height:75.240000px;}
.h2e{height:92.520000px;}
.ha{height:300.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:23.040000px;}
.w3b{width:27.000000px;}
.w1c{width:49.320000px;}
.w23{width:50.760000px;}
.w28{width:55.476000px;}
.w27{width:55.620000px;}
.w2a{width:56.916000px;}
.w2f{width:59.256000px;}
.w30{width:59.760000px;}
.w32{width:60.516000px;}
.w3e{width:60.660000px;}
.w37{width:62.676000px;}
.w1e{width:65.520000px;}
.w3a{width:65.700000px;}
.w39{width:66.996000px;}
.w1f{width:75.276000px;}
.w38{width:75.960000px;}
.w29{width:79.200000px;}
.w31{width:84.600000px;}
.w40{width:88.056000px;}
.w21{width:89.136000px;}
.w36{width:93.780000px;}
.w3f{width:94.860000px;}
.w1b{width:94.896000px;}
.w26{width:95.040000px;}
.w2e{width:95.220000px;}
.w7{width:101.556000px;}
.wb{width:104.580000px;}
.w5{width:104.616000px;}
.w8{width:106.020000px;}
.w12{width:106.596000px;}
.w19{width:112.896000px;}
.wd{width:114.876000px;}
.w1a{width:115.560000px;}
.w2b{width:116.496000px;}
.wf{width:117.936000px;}
.w9{width:118.476000px;}
.w6{width:120.600000px;}
.w11{width:120.816000px;}
.w1d{width:125.316000px;}
.w17{width:125.496000px;}
.w33{width:131.616000px;}
.we{width:132.840000px;}
.wc{width:135.936000px;}
.w25{width:136.836000px;}
.w24{width:140.256000px;}
.w15{width:145.836000px;}
.w2d{width:155.370000px;}
.w3c{width:156.450000px;}
.w10{width:168.870000px;}
.w16{width:172.110000px;}
.w35{width:184.350000px;}
.w3{width:221.970000px;}
.w14{width:298.335000px;}
.w13{width:444.885000px;}
.w22{width:486.105000px;}
.w2c{width:518.325000px;}
.w3d{width:536.325000px;}
.w18{width:550.905000px;}
.w34{width:553.245000px;}
.w4{width:554.145000px;}
.wa{width:609.045000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:12.600000px;}
.x41{left:21.240000px;}
.x4c{left:23.400000px;}
.x4b{left:24.840000px;}
.x35{left:29.880000px;}
.x37{left:39.600000px;}
.x52{left:41.940000px;}
.x54{left:46.830000px;}
.x4a{left:48.780000px;}
.x53{left:55.110000px;}
.x36{left:59.250000px;}
.x27{left:69.480000px;}
.x26{left:77.580000px;}
.x57{left:86.220000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x28{left:110.160000px;}
.x29{left:114.300000px;}
.x3{left:126.755987px;}
.x25{left:130.005000px;}
.x58{left:148.895987px;}
.x14{left:150.510000px;}
.x6{left:155.909987px;}
.x5b{left:158.429987px;}
.xa{left:159.509987px;}
.x5c{left:167.969987px;}
.xd{left:181.470000px;}
.x2c{left:182.550000px;}
.x5d{left:185.429987px;}
.x39{left:189.570000px;}
.x5e{left:195.329987px;}
.x43{left:199.470000px;}
.x34{left:206.310000px;}
.x51{left:209.190000px;}
.x40{left:213.330000px;}
.x49{left:223.230000px;}
.x23{left:235.830000px;}
.x15{left:255.810000px;}
.x1b{left:259.410000px;}
.x12{left:284.294987px;}
.xe{left:286.815000px;}
.x2a{left:289.694987px;}
.x19{left:293.654987px;}
.x2d{left:296.175000px;}
.x21{left:309.494987px;}
.x20{left:312.554987px;}
.x38{left:315.074987px;}
.x13{left:317.234987px;}
.xc{left:321.374987px;}
.x8{left:322.454987px;}
.x5{left:323.714987px;}
.x1f{left:324.794987px;}
.x3b{left:330.555000px;}
.x22{left:331.814987px;}
.x2b{left:339.194987px;}
.x9{left:342.614987px;}
.x4{left:348.194987px;}
.x44{left:355.575000px;}
.x1a{left:358.094987px;}
.x42{left:359.714987px;}
.x31{left:362.415000px;}
.x4d{left:366.375000px;}
.x16{left:392.475000px;}
.xf{left:408.135000px;}
.x3f{left:410.475000px;}
.x2e{left:412.455000px;}
.x5f{left:422.174987px;}
.x1c{left:429.015000px;}
.x60{left:431.894987px;}
.x48{left:440.895000px;}
.x7{left:446.654987px;}
.x4e{left:460.875000px;}
.x3c{left:468.105000px;}
.x55{left:481.245000px;}
.x45{left:502.125000px;}
.x17{left:508.065000px;}
.x10{left:510.405000px;}
.x4f{left:524.265000px;}
.x24{left:534.885000px;}
.xb{left:542.264987px;}
.x1d{left:550.545000px;}
.x2f{left:558.105000px;}
.x61{left:559.904987px;}
.x3d{left:563.865000px;}
.x62{left:569.624987px;}
.x46{left:598.065000px;}
.x50{left:600.945000px;}
.x30{left:608.145000px;}
.x59{left:614.264987px;}
.x11{left:617.145000px;}
.x3e{left:620.205000px;}
.x5a{left:625.064987px;}
.x56{left:638.385000px;}
.x18{left:641.625000px;}
.x47{left:658.050000px;}
.x1e{left:669.569987px;}
.x3a{left:676.410000px;}
.x33{left:684.150000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.ls25{letter-spacing:-1.322667pt;}
.ls13{letter-spacing:-1.269333pt;}
.ls17{letter-spacing:-0.650667pt;}
.ls34{letter-spacing:-0.629333pt;}
.ls3b{letter-spacing:-0.527467pt;}
.ls18{letter-spacing:-0.256533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240533pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.107733pt;}
.ls2a{letter-spacing:-0.092267pt;}
.ls20{letter-spacing:-0.086933pt;}
.lsb{letter-spacing:-0.084267pt;}
.ls5{letter-spacing:-0.075733pt;}
.ls11{letter-spacing:-0.069333pt;}
.ls2b{letter-spacing:-0.047360pt;}
.ls27{letter-spacing:-0.046720pt;}
.lsd{letter-spacing:-0.041600pt;}
.ls1a{letter-spacing:-0.034560pt;}
.ls6{letter-spacing:-0.032000pt;}
.ls22{letter-spacing:-0.013440pt;}
.ls12{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls29{letter-spacing:0.024320pt;}
.lse{letter-spacing:0.034560pt;}
.ls35{letter-spacing:0.069333pt;}
.ls1b{letter-spacing:0.070400pt;}
.ls30{letter-spacing:0.112533pt;}
.ls31{letter-spacing:0.112640pt;}
.ls16{letter-spacing:0.119040pt;}
.ls33{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.166400pt;}
.ls39{letter-spacing:0.176000pt;}
.ls3d{letter-spacing:0.186133pt;}
.ls1f{letter-spacing:0.188267pt;}
.ls3f{letter-spacing:0.196267pt;}
.ls10{letter-spacing:0.214933pt;}
.ls32{letter-spacing:0.244267pt;}
.ls19{letter-spacing:0.253867pt;}
.ls2f{letter-spacing:0.281600pt;}
.ls28{letter-spacing:0.287467pt;}
.lsa{letter-spacing:0.291733pt;}
.ls26{letter-spacing:0.292267pt;}
.ls0{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.325333pt;}
.ls15{letter-spacing:0.408533pt;}
.ls1d{letter-spacing:0.473600pt;}
.ls37{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.486400pt;}
.ls24{letter-spacing:0.549333pt;}
.ls14{letter-spacing:0.608000pt;}
.ls21{letter-spacing:0.624000pt;}
.ls3c{letter-spacing:0.629333pt;}
.ls3e{letter-spacing:0.752000pt;}
.ls36{letter-spacing:0.752640pt;}
.ls38{letter-spacing:2.393600pt;}
.ls3a{letter-spacing:4.954667pt;}
.ls1c{letter-spacing:9.728000pt;}
.ls2e{letter-spacing:10.368000pt;}
.ls2d{letter-spacing:13.568000pt;}
.ls2c{letter-spacing:20.432640pt;}
.ls3{letter-spacing:336.145067pt;}
.ws18{word-spacing:-16.000000pt;}
.ws24{word-spacing:-15.744000pt;}
.ws2e{word-spacing:-12.438400pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1b{word-spacing:-12.310400pt;}
.ws1d{word-spacing:-12.235733pt;}
.wsa{word-spacing:-12.011733pt;}
.ws2{word-spacing:-12.003733pt;}
.ws20{word-spacing:-11.973867pt;}
.ws26{word-spacing:-11.968000pt;}
.ws14{word-spacing:-11.940267pt;}
.ws28{word-spacing:-11.930667pt;}
.ws2f{word-spacing:-11.882667pt;}
.ws19{word-spacing:-11.874667pt;}
.ws2d{word-spacing:-11.872533pt;}
.ws2b{word-spacing:-11.862400pt;}
.ws2a{word-spacing:-11.845760pt;}
.ws25{word-spacing:-11.798933pt;}
.ws29{word-spacing:-11.755733pt;}
.wsc{word-spacing:-11.720960pt;}
.ws21{word-spacing:-11.710720pt;}
.ws10{word-spacing:-11.697920pt;}
.ws16{word-spacing:-11.686400pt;}
.ws1c{word-spacing:-11.672960pt;}
.ws15{word-spacing:-11.651840pt;}
.wsb{word-spacing:-11.644800pt;}
.ws1f{word-spacing:-11.639680pt;}
.ws23{word-spacing:-11.639040pt;}
.wse{word-spacing:-11.617067pt;}
.ws1a{word-spacing:-11.599467pt;}
.ws22{word-spacing:-11.594133pt;}
.ws17{word-spacing:-11.578667pt;}
.ws13{word-spacing:-11.429867pt;}
.ws2c{word-spacing:-11.158933pt;}
.ws27{word-spacing:-11.057067pt;}
.ws12{word-spacing:-11.035733pt;}
.ws1{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.417067pt;}
.ws1e{word-spacing:-10.363733pt;}
.wsd{word-spacing:-9.648533pt;}
.ws8{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.357867pt;}
.ws7{word-spacing:-9.193067pt;}
.ws9{word-spacing:-8.082133pt;}
.ws11{word-spacing:-7.603200pt;}
.ws4{word-spacing:-7.008000pt;}
.ws5{word-spacing:-6.784000pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-5.330987pt;}
._1c{margin-left:-4.112853pt;}
._19{margin-left:-3.176320pt;}
._1a{margin-left:-2.001707pt;}
._2{margin-left:-1.104000pt;}
._1{width:0.970667pt;}
._4{width:1.987413pt;}
._c{width:3.452800pt;}
._8{width:4.819413pt;}
._9{width:6.070187pt;}
._18{width:7.077973pt;}
._e{width:8.764800pt;}
._7{width:10.358400pt;}
._1d{width:11.380267pt;}
._12{width:12.801920pt;}
._14{width:13.704960pt;}
._16{width:15.351680pt;}
._17{width:16.626560pt;}
._a{width:17.674453pt;}
._b{width:18.751360pt;}
._f{width:20.117973pt;}
._20{width:21.024640pt;}
._13{width:21.991680pt;}
._1b{width:23.638400pt;}
._15{width:25.338240pt;}
._24{width:26.236373pt;}
._25{width:27.207253pt;}
._d{width:28.684800pt;}
._11{width:30.423253pt;}
._10{width:31.553280pt;}
._22{width:38.832427pt;}
._23{width:40.050987pt;}
._1e{width:41.518400pt;}
._21{width:45.303467pt;}
._0{width:66.666667pt;}
._27{width:71.296427pt;}
._28{width:83.204053pt;}
._29{width:84.340693pt;}
._26{width:123.988053pt;}
._3{width:161.440000pt;}
._6{width:180.420267pt;}
._1f{width:950.833067pt;}
.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;}
.y0{bottom:0.000000pt;}
.yd5{bottom:3.034667pt;}
.yac{bottom:3.040000pt;}
.ycb{bottom:3.360000pt;}
.yb0{bottom:3.680000pt;}
.y15d{bottom:4.000000pt;}
.yae{bottom:4.160000pt;}
.ya9{bottom:4.800000pt;}
.yb7{bottom:4.826667pt;}
.yf2{bottom:4.960000pt;}
.y184{bottom:5.120000pt;}
.yd9{bottom:5.280000pt;}
.yb5{bottom:5.440000pt;}
.y12b{bottom:5.600000pt;}
.ya4{bottom:5.760000pt;}
.y137{bottom:5.920000pt;}
.ybb{bottom:6.080000pt;}
.yb9{bottom:6.400000pt;}
.y1c4{bottom:7.040000pt;}
.y163{bottom:7.200000pt;}
.yee{bottom:7.680000pt;}
.y108{bottom:8.000000pt;}
.yc7{bottom:8.160000pt;}
.y10a{bottom:8.320000pt;}
.ya7{bottom:8.480000pt;}
.yce{bottom:8.640000pt;}
.y12d{bottom:8.800000pt;}
.y1b2{bottom:9.280000pt;}
.yea{bottom:9.440000pt;}
.y185{bottom:17.760000pt;}
.y19a{bottom:17.920000pt;}
.yab{bottom:18.560000pt;}
.yd4{bottom:18.714667pt;}
.yb2{bottom:18.720000pt;}
.yc9{bottom:18.760000pt;}
.y17e{bottom:19.360000pt;}
.y166{bottom:22.080000pt;}
.y1c3{bottom:22.720000pt;}
.y162{bottom:22.880000pt;}
.ya6{bottom:24.160000pt;}
.yd7{bottom:24.186667pt;}
.ycd{bottom:24.320000pt;}
.y130{bottom:24.840000pt;}
.y1b4{bottom:24.960000pt;}
.y53{bottom:31.200000pt;}
.y199{bottom:33.640000pt;}
.y17d{bottom:35.040000pt;}
.y19c{bottom:35.680000pt;}
.y165{bottom:37.760000pt;}
.y161{bottom:38.400000pt;}
.y52{bottom:43.040000pt;}
.y133{bottom:43.520000pt;}
.y197{bottom:49.960000pt;}
.y7{bottom:50.080000pt;}
.y55{bottom:50.240000pt;}
.y17c{bottom:50.720000pt;}
.y168{bottom:51.240000pt;}
.y1b6{bottom:51.560000pt;}
.y51{bottom:52.320000pt;}
.y160{bottom:54.080000pt;}
.y181{bottom:54.240000pt;}
.y50{bottom:61.760000pt;}
.y6{bottom:62.272000pt;}
.y15f{bottom:69.760000pt;}
.y4f{bottom:77.440000pt;}
.y1f3{bottom:98.592000pt;}
.y40{bottom:104.192000pt;}
.y10c{bottom:105.152000pt;}
.y129{bottom:106.432000pt;}
.y194{bottom:107.232000pt;}
.y15b{bottom:108.352000pt;}
.y90{bottom:108.672000pt;}
.y21d{bottom:112.992000pt;}
.y1f2{bottom:114.112000pt;}
.y4e{bottom:115.840000pt;}
.yd6{bottom:116.832000pt;}
.y3f{bottom:119.872000pt;}
.y10b{bottom:120.672000pt;}
.y1c0{bottom:120.832000pt;}
.y128{bottom:121.952000pt;}
.y193{bottom:122.912000pt;}
.y15a{bottom:124.032000pt;}
.y8f{bottom:124.352000pt;}
.y4d{bottom:128.320000pt;}
.y21c{bottom:128.672000pt;}
.y1f1{bottom:129.792000pt;}
.yd3{bottom:132.992000pt;}
.y109{bottom:133.946667pt;}
.y3e{bottom:135.546667pt;}
.y1bf{bottom:136.346667pt;}
.y127{bottom:137.626667pt;}
.y159{bottom:139.546667pt;}
.y8e{bottom:139.866667pt;}
.y4c{bottom:140.800000pt;}
.y192{bottom:140.826667pt;}
.y21b{bottom:144.186667pt;}
.y1f0{bottom:145.466667pt;}
.y3d{bottom:151.066667pt;}
.y1be{bottom:152.026667pt;}
.y4b{bottom:153.280000pt;}
.y126{bottom:153.306667pt;}
.y158{bottom:155.226667pt;}
.y8d{bottom:155.546667pt;}
.y191{bottom:156.506667pt;}
.y21a{bottom:159.866667pt;}
.y1ef{bottom:160.986667pt;}
.yd2{bottom:164.986667pt;}
.y4a{bottom:165.760000pt;}
.y3c{bottom:166.746667pt;}
.y1bd{bottom:167.706667pt;}
.y125{bottom:168.826667pt;}
.y157{bottom:170.906667pt;}
.y8c{bottom:171.226667pt;}
.y190{bottom:172.026667pt;}
.y219{bottom:175.546667pt;}
.y1ee{bottom:176.666667pt;}
.y107{bottom:176.986667pt;}
.y49{bottom:177.120000pt;}
.yd1{bottom:181.306667pt;}
.y3b{bottom:182.426667pt;}
.y1bc{bottom:183.226667pt;}
.y124{bottom:184.506667pt;}
.y48{bottom:184.640000pt;}
.y156{bottom:186.426667pt;}
.y8b{bottom:186.906667pt;}
.y18f{bottom:187.706667pt;}
.y218{bottom:191.066667pt;}
.y1ed{bottom:192.346667pt;}
.y47{bottom:197.160000pt;}
.yd0{bottom:197.626667pt;}
.y3a{bottom:197.946667pt;}
.y106{bottom:198.266667pt;}
.y1bb{bottom:198.906667pt;}
.y123{bottom:200.186667pt;}
.y155{bottom:202.106667pt;}
.y8a{bottom:202.426667pt;}
.y18e{bottom:205.626667pt;}
.y217{bottom:206.746667pt;}
.y1ec{bottom:207.866667pt;}
.y46{bottom:209.640000pt;}
.y1ba{bottom:212.186667pt;}
.y39{bottom:213.626667pt;}
.ycf{bottom:213.946667pt;}
.y122{bottom:215.866667pt;}
.y154{bottom:217.786667pt;}
.y89{bottom:218.106667pt;}
.y18d{bottom:221.306667pt;}
.y45{bottom:222.120000pt;}
.y216{bottom:222.426667pt;}
.y1eb{bottom:225.786667pt;}
.y38{bottom:229.306667pt;}
.ycc{bottom:230.106667pt;}
.y121{bottom:231.386667pt;}
.y105{bottom:233.146667pt;}
.y153{bottom:233.466667pt;}
.y88{bottom:233.786667pt;}
.y1b9{bottom:233.946667pt;}
.y44{bottom:234.600000pt;}
.y18c{bottom:236.826667pt;}
.y215{bottom:237.946667pt;}
.y1ea{bottom:241.466667pt;}
.y37{bottom:244.826667pt;}
.y43{bottom:245.800000pt;}
.y120{bottom:247.066667pt;}
.y104{bottom:248.826667pt;}
.y152{bottom:248.986667pt;}
.y87{bottom:249.306667pt;}
.y18b{bottom:252.506667pt;}
.y214{bottom:253.626667pt;}
.y1b5{bottom:255.706667pt;}
.y42{bottom:255.720000pt;}
.y1e9{bottom:257.146667pt;}
.y36{bottom:260.506667pt;}
.y11f{bottom:262.746667pt;}
.y103{bottom:264.506667pt;}
.y151{bottom:264.666667pt;}
.y86{bottom:264.986667pt;}
.yca{bottom:267.706667pt;}
.y213{bottom:269.306667pt;}
.y18a{bottom:270.426667pt;}
.y1e8{bottom:272.666667pt;}
.y35{bottom:276.026667pt;}
.y1b8{bottom:277.466667pt;}
.y11e{bottom:278.266667pt;}
.y102{bottom:280.026667pt;}
.y150{bottom:280.346667pt;}
.y85{bottom:280.666667pt;}
.yc8{bottom:284.346667pt;}
.y212{bottom:284.986667pt;}
.y189{bottom:286.106667pt;}
.y1e7{bottom:290.586667pt;}
.y34{bottom:291.386667pt;}
.y11d{bottom:293.946667pt;}
.y101{bottom:295.706667pt;}
.y14f{bottom:295.866667pt;}
.y84{bottom:296.186667pt;}
.y1b7{bottom:299.106667pt;}
.y211{bottom:300.546667pt;}
.y188{bottom:301.666667pt;}
.y1e6{bottom:306.306667pt;}
.y33{bottom:306.946667pt;}
.y11c{bottom:309.666667pt;}
.y100{bottom:311.426667pt;}
.y14e{bottom:311.586667pt;}
.y83{bottom:311.906667pt;}
.yc6{bottom:316.226667pt;}
.y187{bottom:317.346667pt;}
.y1b3{bottom:320.546667pt;}
.y1e5{bottom:321.986667pt;}
.y32{bottom:322.466667pt;}
.y11b{bottom:325.186667pt;}
.yff{bottom:326.946667pt;}
.y14d{bottom:327.266667pt;}
.y82{bottom:327.586667pt;}
.y186{bottom:330.626667pt;}
.y210{bottom:331.906667pt;}
.y1e4{bottom:337.506667pt;}
.y31{bottom:338.146667pt;}
.yc5{bottom:340.706667pt;}
.y11a{bottom:340.866667pt;}
.yfe{bottom:342.626667pt;}
.y14c{bottom:342.786667pt;}
.y81{bottom:343.266667pt;}
.y20f{bottom:347.426667pt;}
.y180{bottom:349.026667pt;}
.y30{bottom:353.826667pt;}
.y1e3{bottom:355.426667pt;}
.yc4{bottom:356.386667pt;}
.y119{bottom:356.546667pt;}
.yfd{bottom:358.306667pt;}
.y14b{bottom:358.466667pt;}
.y80{bottom:358.786667pt;}
.y20e{bottom:363.106667pt;}
.y2f{bottom:369.346667pt;}
.y1e2{bottom:371.106667pt;}
.yc3{bottom:372.066667pt;}
.y118{bottom:372.226667pt;}
.yfc{bottom:373.826667pt;}
.y14a{bottom:374.146667pt;}
.y7f{bottom:374.466667pt;}
.y20d{bottom:378.786667pt;}
.y183{bottom:380.066667pt;}
.y1b1{bottom:384.386667pt;}
.y2e{bottom:385.026667pt;}
.y1e1{bottom:386.786667pt;}
.yc2{bottom:387.586667pt;}
.y117{bottom:387.746667pt;}
.yfb{bottom:389.506667pt;}
.y149{bottom:389.826667pt;}
.y7e{bottom:390.146667pt;}
.y20c{bottom:394.306667pt;}
.y182{bottom:398.466667pt;}
.y1b0{bottom:399.906667pt;}
.y2d{bottom:400.706667pt;}
.y1e0{bottom:402.306667pt;}
.yc1{bottom:403.266667pt;}
.y116{bottom:403.426667pt;}
.yfa{bottom:405.186667pt;}
.y148{bottom:405.346667pt;}
.y7d{bottom:405.666667pt;}
.y20b{bottom:409.986667pt;}
.y1af{bottom:415.586667pt;}
.y2c{bottom:416.226667pt;}
.y17b{bottom:416.546667pt;}
.y1df{bottom:417.986667pt;}
.yc0{bottom:418.946667pt;}
.y115{bottom:419.106667pt;}
.yf9{bottom:420.706667pt;}
.y147{bottom:421.026667pt;}
.y7c{bottom:421.346667pt;}
.y20a{bottom:425.666667pt;}
.y1ae{bottom:431.266667pt;}
.y2b{bottom:431.906667pt;}
.y1de{bottom:433.666667pt;}
.ybf{bottom:434.466667pt;}
.y114{bottom:434.626667pt;}
.yf8{bottom:436.386667pt;}
.y146{bottom:436.706667pt;}
.y7b{bottom:437.026667pt;}
.y209{bottom:441.186667pt;}
.y1ad{bottom:446.946667pt;}
.y113{bottom:447.266667pt;}
.y2a{bottom:447.586667pt;}
.y17f{bottom:448.546667pt;}
.y1dd{bottom:449.186667pt;}
.ybe{bottom:450.146667pt;}
.yf7{bottom:452.066667pt;}
.y145{bottom:452.226667pt;}
.y7a{bottom:452.546667pt;}
.y208{bottom:456.866667pt;}
.y1ac{bottom:462.466667pt;}
.y29{bottom:463.106667pt;}
.y1dc{bottom:464.866667pt;}
.ybd{bottom:465.826667pt;}
.yf6{bottom:467.746667pt;}
.y144{bottom:467.906667pt;}
.y79{bottom:468.226667pt;}
.y207{bottom:472.546667pt;}
.y1ab{bottom:478.146667pt;}
.y28{bottom:478.786667pt;}
.y17a{bottom:480.386667pt;}
.y1db{bottom:480.546667pt;}
.ybc{bottom:481.346667pt;}
.yf5{bottom:483.266667pt;}
.y143{bottom:483.586667pt;}
.y78{bottom:483.906667pt;}
.y206{bottom:488.226667pt;}
.y1aa{bottom:493.826667pt;}
.y27{bottom:494.466667pt;}
.yba{bottom:494.626667pt;}
.y1da{bottom:496.226667pt;}
.yf4{bottom:498.946667pt;}
.y142{bottom:499.106667pt;}
.y77{bottom:499.426667pt;}
.y179{bottom:502.466667pt;}
.y205{bottom:503.746667pt;}
.y1a9{bottom:509.346667pt;}
.y1d9{bottom:511.746667pt;}
.y26{bottom:512.066667pt;}
.yf3{bottom:512.226667pt;}
.yb8{bottom:513.986667pt;}
.y141{bottom:514.786667pt;}
.y76{bottom:515.106667pt;}
.y178{bottom:518.146667pt;}
.y204{bottom:519.426667pt;}
.y1a8{bottom:525.026667pt;}
.y1d8{bottom:527.426667pt;}
.y25{bottom:527.746667pt;}
.yf1{bottom:528.546667pt;}
.y140{bottom:530.466667pt;}
.y75{bottom:530.786667pt;}
.yb6{bottom:533.666667pt;}
.y177{bottom:533.826667pt;}
.y203{bottom:535.106667pt;}
.y1a7{bottom:540.733333pt;}
.y1d7{bottom:543.133333pt;}
.y24{bottom:543.293333pt;}
.y13f{bottom:546.013333pt;}
.y74{bottom:546.493333pt;}
.yf0{bottom:546.653333pt;}
.y176{bottom:549.373333pt;}
.y202{bottom:550.653333pt;}
.yb4{bottom:551.773333pt;}
.y1a6{bottom:556.253333pt;}
.y1d6{bottom:558.653333pt;}
.y23{bottom:558.973333pt;}
.y13e{bottom:561.693333pt;}
.y73{bottom:562.013333pt;}
.yef{bottom:562.973333pt;}
.y175{bottom:565.053333pt;}
.y201{bottom:566.333333pt;}
.yb3{bottom:570.493333pt;}
.y1a5{bottom:571.933333pt;}
.y1d5{bottom:574.333333pt;}
.y22{bottom:574.653333pt;}
.y13d{bottom:577.373333pt;}
.y72{bottom:577.693333pt;}
.y174{bottom:580.733333pt;}
.y200{bottom:582.013333pt;}
.y41{bottom:583.613333pt;}
.y1a4{bottom:587.613333pt;}
.y1d4{bottom:590.013333pt;}
.y21{bottom:590.333333pt;}
.y13c{bottom:593.053333pt;}
.y71{bottom:593.373333pt;}
.yed{bottom:594.973333pt;}
.y173{bottom:596.253333pt;}
.y1ff{bottom:597.533333pt;}
.yb1{bottom:602.333333pt;}
.y1a3{bottom:603.133333pt;}
.y1d3{bottom:605.533333pt;}
.y20{bottom:605.853333pt;}
.y13b{bottom:606.173333pt;}
.y70{bottom:608.893333pt;}
.y172{bottom:611.933333pt;}
.y1fe{bottom:613.213333pt;}
.yec{bottom:615.933333pt;}
.y1a2{bottom:618.813333pt;}
.y1d2{bottom:621.213333pt;}
.y1f{bottom:621.533333pt;}
.y6f{bottom:624.573333pt;}
.y13a{bottom:625.213333pt;}
.y171{bottom:627.613333pt;}
.y1fd{bottom:628.893333pt;}
.yaf{bottom:634.333333pt;}
.y1a1{bottom:634.493333pt;}
.y1d1{bottom:636.893333pt;}
.y1e{bottom:637.213333pt;}
.y6e{bottom:640.253333pt;}
.y170{bottom:643.133333pt;}
.y139{bottom:644.253333pt;}
.y1fc{bottom:644.573333pt;}
.y1a0{bottom:650.173333pt;}
.yad{bottom:651.293333pt;}
.y1d0{bottom:652.573333pt;}
.y1d{bottom:652.733333pt;}
.yeb{bottom:653.373333pt;}
.y6d{bottom:655.773333pt;}
.y16f{bottom:658.813333pt;}
.y1fb{bottom:662.333333pt;}
.y138{bottom:663.133333pt;}
.y19f{bottom:663.293333pt;}
.y1cf{bottom:668.093333pt;}
.y1c{bottom:668.413333pt;}
.yaa{bottom:668.733333pt;}
.ye9{bottom:669.693333pt;}
.y6c{bottom:671.453333pt;}
.y16e{bottom:674.493333pt;}
.y1fa{bottom:678.013333pt;}
.y19b{bottom:679.613333pt;}
.y136{bottom:682.173333pt;}
.y1ce{bottom:683.773333pt;}
.y1b{bottom:684.093333pt;}
.y112{bottom:684.413333pt;}
.y6b{bottom:687.133333pt;}
.y16d{bottom:690.173333pt;}
.ye8{bottom:692.413333pt;}
.y1f9{bottom:693.693333pt;}
.y19e{bottom:695.933333pt;}
.y1cd{bottom:699.453333pt;}
.y1a{bottom:699.613333pt;}
.y111{bottom:699.933333pt;}
.ya8{bottom:700.573333pt;}
.y132{bottom:701.373333pt;}
.y6a{bottom:702.813333pt;}
.y16c{bottom:705.693333pt;}
.y1f8{bottom:711.613333pt;}
.y19d{bottom:712.253333pt;}
.y1cc{bottom:714.973333pt;}
.y19{bottom:715.293333pt;}
.y110{bottom:715.613333pt;}
.y69{bottom:718.333333pt;}
.ya5{bottom:718.653333pt;}
.y16b{bottom:718.973333pt;}
.y135{bottom:720.253333pt;}
.y1f7{bottom:727.133333pt;}
.y196{bottom:728.573333pt;}
.ye7{bottom:729.853333pt;}
.y1cb{bottom:730.653333pt;}
.y18{bottom:730.973333pt;}
.y10f{bottom:731.293333pt;}
.y68{bottom:734.013333pt;}
.y167{bottom:735.293333pt;}
.y134{bottom:739.293333pt;}
.y1f6{bottom:742.813333pt;}
.y198{bottom:744.893333pt;}
.ye6{bottom:746.173333pt;}
.y1ca{bottom:746.333333pt;}
.y17{bottom:746.653333pt;}
.y10e{bottom:746.813333pt;}
.y67{bottom:749.693333pt;}
.ya3{bottom:756.093333pt;}
.y12f{bottom:758.173333pt;}
.y1f5{bottom:760.733333pt;}
.y1c9{bottom:761.853333pt;}
.y16{bottom:762.173333pt;}
.y10d{bottom:762.493333pt;}
.y66{bottom:765.213333pt;}
.y16a{bottom:767.133333pt;}
.y131{bottom:777.253333pt;}
.y1c8{bottom:777.573333pt;}
.y15{bottom:777.893333pt;}
.ye5{bottom:778.053333pt;}
.ya2{bottom:778.213333pt;}
.y1f4{bottom:778.693333pt;}
.y65{bottom:780.933333pt;}
.y169{bottom:783.493333pt;}
.y195{bottom:791.813333pt;}
.y1c7{bottom:793.253333pt;}
.y14{bottom:793.573333pt;}
.ya1{bottom:793.733333pt;}
.y12e{bottom:796.293333pt;}
.y64{bottom:796.613333pt;}
.y15e{bottom:799.813333pt;}
.ye4{bottom:802.533333pt;}
.y1c6{bottom:808.933333pt;}
.y13{bottom:809.093333pt;}
.ya0{bottom:809.413333pt;}
.y63{bottom:812.133333pt;}
.y12c{bottom:815.173333pt;}
.ye3{bottom:818.213333pt;}
.y1c5{bottom:822.053333pt;}
.y12{bottom:824.773333pt;}
.y9f{bottom:825.093333pt;}
.y62{bottom:827.813333pt;}
.y164{bottom:831.813333pt;}
.ye2{bottom:833.893333pt;}
.y11{bottom:840.453333pt;}
.y9e{bottom:840.613333pt;}
.y61{bottom:843.493333pt;}
.ye1{bottom:849.413333pt;}
.y12a{bottom:852.773333pt;}
.y10{bottom:855.973333pt;}
.y9d{bottom:856.293333pt;}
.y60{bottom:859.173333pt;}
.y1c2{bottom:860.773333pt;}
.ye0{bottom:865.093333pt;}
.yf{bottom:871.653333pt;}
.y9c{bottom:871.973333pt;}
.y5f{bottom:874.693333pt;}
.ydf{bottom:880.773333pt;}
.y15c{bottom:882.853333pt;}
.ye{bottom:887.013333pt;}
.y9b{bottom:887.653333pt;}
.y5e{bottom:890.373333pt;}
.yde{bottom:896.293333pt;}
.y1c1{bottom:896.773333pt;}
.yd{bottom:901.093333pt;}
.y9a{bottom:903.173333pt;}
.y5d{bottom:906.053333pt;}
.ydd{bottom:911.973333pt;}
.yc{bottom:915.653333pt;}
.y99{bottom:918.853333pt;}
.y5c{bottom:921.573333pt;}
.ydc{bottom:927.653333pt;}
.yb{bottom:932.933333pt;}
.y98{bottom:934.533333pt;}
.y5b{bottom:937.253333pt;}
.ydb{bottom:943.173333pt;}
.y97{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5a{bottom:952.933333pt;}
.yda{bottom:958.853333pt;}
.y96{bottom:965.733333pt;}
.y59{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.yd8{bottom:972.133333pt;}
.y95{bottom:981.413333pt;}
.y58{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y94{bottom:996.933333pt;}
.y57{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y93{bottom:1012.640000pt;}
.y56{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y92{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y91{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y54{bottom:1064.480000pt;}
.h1f{height:15.520000pt;}
.h20{height:15.680000pt;}
.h31{height:15.712000pt;}
.h1e{height:16.000000pt;}
.h16{height:16.320000pt;}
.h2d{height:16.640000pt;}
.h15{height:16.800000pt;}
.h13{height:17.440000pt;}
.h19{height:17.472000pt;}
.h34{height:17.600000pt;}
.h22{height:17.760000pt;}
.hb{height:17.881875pt;}
.h18{height:17.920000pt;}
.h28{height:18.240000pt;}
.h2c{height:18.400000pt;}
.h11{height:18.432000pt;}
.h1b{height:18.720000pt;}
.h1a{height:18.880000pt;}
.h40{height:19.680000pt;}
.h24{height:20.320000pt;}
.h25{height:20.480000pt;}
.h26{height:20.640000pt;}
.h1c{height:20.800000pt;}
.h27{height:20.960000pt;}
.h3e{height:21.120000pt;}
.h3a{height:21.920000pt;}
.h23{height:22.080000pt;}
.he{height:27.093750pt;}
.h4{height:29.940625pt;}
.h35{height:30.240000pt;}
.h14{height:31.200000pt;}
.h1d{height:31.232000pt;}
.h17{height:31.360000pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h3f{height:35.360000pt;}
.hc{height:36.305625pt;}
.h12{height:36.800000pt;}
.h21{height:36.832000pt;}
.h29{height:36.960000pt;}
.h9{height:37.090625pt;}
.h2a{height:37.312000pt;}
.h3b{height:37.600000pt;}
.h8{height:40.640625pt;}
.h10{height:44.687500pt;}
.h5{height:44.975625pt;}
.h38{height:46.112000pt;}
.h36{height:46.593750pt;}
.h39{height:48.320000pt;}
.h7{height:49.852500pt;}
.h2f{height:50.240000pt;}
.hf{height:52.284375pt;}
.hd{height:54.187500pt;}
.h2b{height:56.160000pt;}
.h6{height:58.522500pt;}
.h3d{height:60.975625pt;}
.h37{height:62.432000pt;}
.h32{height:63.200000pt;}
.h30{height:63.872000pt;}
.h3c{height:64.192000pt;}
.h33{height:66.880000pt;}
.h2e{height:82.240000pt;}
.ha{height:267.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:20.480000pt;}
.w3b{width:24.000000pt;}
.w1c{width:43.840000pt;}
.w23{width:45.120000pt;}
.w28{width:49.312000pt;}
.w27{width:49.440000pt;}
.w2a{width:50.592000pt;}
.w2f{width:52.672000pt;}
.w30{width:53.120000pt;}
.w32{width:53.792000pt;}
.w3e{width:53.920000pt;}
.w37{width:55.712000pt;}
.w1e{width:58.240000pt;}
.w3a{width:58.400000pt;}
.w39{width:59.552000pt;}
.w1f{width:66.912000pt;}
.w38{width:67.520000pt;}
.w29{width:70.400000pt;}
.w31{width:75.200000pt;}
.w40{width:78.272000pt;}
.w21{width:79.232000pt;}
.w36{width:83.360000pt;}
.w3f{width:84.320000pt;}
.w1b{width:84.352000pt;}
.w26{width:84.480000pt;}
.w2e{width:84.640000pt;}
.w7{width:90.272000pt;}
.wb{width:92.960000pt;}
.w5{width:92.992000pt;}
.w8{width:94.240000pt;}
.w12{width:94.752000pt;}
.w19{width:100.352000pt;}
.wd{width:102.112000pt;}
.w1a{width:102.720000pt;}
.w2b{width:103.552000pt;}
.wf{width:104.832000pt;}
.w9{width:105.312000pt;}
.w6{width:107.200000pt;}
.w11{width:107.392000pt;}
.w1d{width:111.392000pt;}
.w17{width:111.552000pt;}
.w33{width:116.992000pt;}
.we{width:118.080000pt;}
.wc{width:120.832000pt;}
.w25{width:121.632000pt;}
.w24{width:124.672000pt;}
.w15{width:129.632000pt;}
.w2d{width:138.106667pt;}
.w3c{width:139.066667pt;}
.w10{width:150.106667pt;}
.w16{width:152.986667pt;}
.w35{width:163.866667pt;}
.w3{width:197.306667pt;}
.w14{width:265.186667pt;}
.w13{width:395.453333pt;}
.w22{width:432.093333pt;}
.w2c{width:460.733333pt;}
.w3d{width:476.733333pt;}
.w18{width:489.693333pt;}
.w34{width:491.773333pt;}
.w4{width:492.573333pt;}
.wa{width:541.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:11.200000pt;}
.x41{left:18.880000pt;}
.x4c{left:20.800000pt;}
.x4b{left:22.080000pt;}
.x35{left:26.560000pt;}
.x37{left:35.200000pt;}
.x52{left:37.280000pt;}
.x54{left:41.626667pt;}
.x4a{left:43.360000pt;}
.x53{left:48.986667pt;}
.x36{left:52.666667pt;}
.x27{left:61.760000pt;}
.x26{left:68.960000pt;}
.x57{left:76.640000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x28{left:97.920000pt;}
.x29{left:101.600000pt;}
.x3{left:112.671988pt;}
.x25{left:115.560000pt;}
.x58{left:132.351988pt;}
.x14{left:133.786667pt;}
.x6{left:138.586655pt;}
.x5b{left:140.826655pt;}
.xa{left:141.786655pt;}
.x5c{left:149.306655pt;}
.xd{left:161.306667pt;}
.x2c{left:162.266667pt;}
.x5d{left:164.826655pt;}
.x39{left:168.506667pt;}
.x5e{left:173.626655pt;}
.x43{left:177.306667pt;}
.x34{left:183.386667pt;}
.x51{left:185.946667pt;}
.x40{left:189.626667pt;}
.x49{left:198.426667pt;}
.x23{left:209.626667pt;}
.x15{left:227.386667pt;}
.x1b{left:230.586667pt;}
.x12{left:252.706655pt;}
.xe{left:254.946667pt;}
.x2a{left:257.506655pt;}
.x19{left:261.026655pt;}
.x2d{left:263.266667pt;}
.x21{left:275.106655pt;}
.x20{left:277.826655pt;}
.x38{left:280.066655pt;}
.x13{left:281.986655pt;}
.xc{left:285.666655pt;}
.x8{left:286.626655pt;}
.x5{left:287.746655pt;}
.x1f{left:288.706655pt;}
.x3b{left:293.826667pt;}
.x22{left:294.946655pt;}
.x2b{left:301.506655pt;}
.x9{left:304.546655pt;}
.x4{left:309.506655pt;}
.x44{left:316.066667pt;}
.x1a{left:318.306655pt;}
.x42{left:319.746655pt;}
.x31{left:322.146667pt;}
.x4d{left:325.666667pt;}
.x16{left:348.866667pt;}
.xf{left:362.786667pt;}
.x3f{left:364.866667pt;}
.x2e{left:366.626667pt;}
.x5f{left:375.266655pt;}
.x1c{left:381.346667pt;}
.x60{left:383.906655pt;}
.x48{left:391.906667pt;}
.x7{left:397.026655pt;}
.x4e{left:409.666667pt;}
.x3c{left:416.093333pt;}
.x55{left:427.773333pt;}
.x45{left:446.333333pt;}
.x17{left:451.613333pt;}
.x10{left:453.693333pt;}
.x4f{left:466.013333pt;}
.x24{left:475.453333pt;}
.xb{left:482.013322pt;}
.x1d{left:489.373333pt;}
.x2f{left:496.093333pt;}
.x61{left:497.693322pt;}
.x3d{left:501.213333pt;}
.x62{left:506.333322pt;}
.x46{left:531.613333pt;}
.x50{left:534.173333pt;}
.x30{left:540.573333pt;}
.x59{left:546.013322pt;}
.x11{left:548.573333pt;}
.x3e{left:551.293333pt;}
.x5a{left:555.613322pt;}
.x56{left:567.453333pt;}
.x18{left:570.333333pt;}
.x47{left:584.933333pt;}
.x1e{left:595.173322pt;}
.x3a{left:601.253333pt;}
.x33{left:608.133333pt;}
}




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