
    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_eb79b71c0c49f9d00aea8bc2.woff2')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_73e158e33731fa8cf684dc1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_d80c1d71aea9161e4c52aa6a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.977539;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729492;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_f59411fd15704b06f29893d7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a3a63b99c5e862b0a1f3bb42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_24aa0d2cf57adad0b38fb1c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.056152;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_79daf96da14885c1d237f90e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c42e76fafef33ab66c5c09cf.woff2')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_837ecbb5f1eeb28ec772feec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936035;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_1bd27debcf04c648f97bc3c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.201172;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_2f716be4bd789126be542827.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5e295bfd49301cca5af1df61.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.800293;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:fff;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.fff{font-family:fff;line-height:0.688477;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:ff10;src:url('chunks/assets/font_3108a2022c4761890d033e90.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_8b4d6fd35d422297f481cece.woff2')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_ac94765f01151aa2125e7e38.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8f2a896f859dd49b2f7bfdec.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.976562;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:ff14;src:url('chunks/assets/font_fb197ba880fbce53fb991fb9.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_d7e920b080452367813810fd.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.lsf{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.536400px;}
.ls4{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.072000px;}
.ls1{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.252600px;}
.ls7{letter-spacing:0.269280px;}
.lse{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.864000px;}
.lsa{letter-spacing:6.480000px;}
.ls10{letter-spacing:33.960000px;}
.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;}
}
.wsf{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws7{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.447440px;}
.wsa{word-spacing:-12.060000px;}
.ws4{word-spacing:-10.865400px;}
.ws3{word-spacing:-10.612800px;}
.ws1{word-spacing:-9.937440px;}
.ws5{word-spacing:-9.401040px;}
.ws2{word-spacing:0.000000px;}
._29{margin-left:-4.632000px;}
._24{margin-left:-2.189280px;}
._0{margin-left:-1.134000px;}
._4{width:1.075680px;}
._6{width:2.265600px;}
._5{width:3.357600px;}
._d{width:4.378320px;}
._12{width:5.610000px;}
._11{width:6.624000px;}
._f{width:8.200320px;}
._e{width:9.216000px;}
._8{width:10.512000px;}
._9{width:11.736000px;}
._a{width:13.032000px;}
._22{width:14.040000px;}
._1a{width:15.084000px;}
._17{width:16.344000px;}
._1d{width:19.138320px;}
._18{width:20.160000px;}
._10{width:21.582000px;}
._19{width:22.986000px;}
._1e{width:24.552000px;}
._20{width:26.496000px;}
._23{width:28.008000px;}
._7{width:29.304000px;}
._2{width:30.870000px;}
._b{width:32.256000px;}
._c{width:33.686640px;}
._15{width:35.372160px;}
._16{width:36.385920px;}
._13{width:37.776000px;}
._14{width:38.866320px;}
._21{width:40.405680px;}
._1b{width:41.472000px;}
._1c{width:43.132320px;}
._25{width:45.000000px;}
._26{width:46.440000px;}
._27{width:48.024000px;}
._2e{width:49.104000px;}
._32{width:51.318000px;}
._2b{width:64.986000px;}
._30{width:89.496000px;}
._31{width:90.684000px;}
._2c{width:92.304000px;}
._2a{width:163.006320px;}
._28{width:179.976000px;}
._1f{width:197.976000px;}
._2f{width:919.296000px;}
._3{width:1091.557200px;}
._2d{width:2035.080000px;}
._1{width:2098.266000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(238,78,60);}
.fc5{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs6{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs5{font-size:105.120000px;}
.y141{bottom:-21.240000px;}
.y1b4{bottom:-21.105000px;}
.y1bf{bottom:-21.060000px;}
.y142{bottom:-20.880000px;}
.y1b2{bottom:-20.355000px;}
.y1a6{bottom:-20.340000px;}
.y1bd{bottom:-20.160000px;}
.y148{bottom:-19.440000px;}
.y149{bottom:-19.080000px;}
.y171{bottom:-18.540000px;}
.y190{bottom:-18.360000px;}
.y144{bottom:-16.020000px;}
.y14a{bottom:-15.840000px;}
.y145{bottom:-15.660000px;}
.y14b{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.260000px;}
.y36{bottom:1.590000px;}
.y34{bottom:2.670000px;}
.y38{bottom:2.850000px;}
.y3{bottom:4.500000px;}
.y4{bottom:5.040000px;}
.yb6{bottom:5.940000px;}
.y6c{bottom:6.120000px;}
.y174{bottom:7.380000px;}
.y176{bottom:7.560000px;}
.y13f{bottom:13.140000px;}
.y18e{bottom:15.300000px;}
.y6b{bottom:15.480000px;}
.yb5{bottom:15.840000px;}
.y160{bottom:16.005000px;}
.ye8{bottom:16.020000px;}
.y16b{bottom:16.185000px;}
.y255{bottom:16.200000px;}
.y162{bottom:16.365000px;}
.y14f{bottom:16.380000px;}
.y15a{bottom:16.410000px;}
.y166{bottom:16.545000px;}
.y153{bottom:16.560000px;}
.y40{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y5{bottom:35.820000px;}
.y168{bottom:39.765000px;}
.y155{bottom:39.780000px;}
.y15f{bottom:39.810000px;}
.y14d{bottom:39.825000px;}
.y164{bottom:39.945000px;}
.y151{bottom:39.960000px;}
.y158{bottom:39.990000px;}
.y169{bottom:40.125000px;}
.y156{bottom:40.140000px;}
.y161{bottom:40.170000px;}
.y14e{bottom:40.185000px;}
.y165{bottom:40.305000px;}
.y152{bottom:40.320000px;}
.y159{bottom:40.350000px;}
.y1{bottom:42.660000px;}
.y13e{bottom:42.840000px;}
.y3a{bottom:43.380000px;}
.y6{bottom:62.640000px;}
.y32{bottom:112.140000px;}
.y1ff{bottom:114.120000px;}
.y18d{bottom:115.020000px;}
.yb4{bottom:117.360000px;}
.y1f5{bottom:118.980000px;}
.y16d{bottom:121.500000px;}
.y11b{bottom:122.580000px;}
.yc9{bottom:122.760000px;}
.y100{bottom:123.120000px;}
.y1d7{bottom:124.020000px;}
.y6a{bottom:124.560000px;}
.y23a{bottom:125.820000px;}
.y94{bottom:126.360000px;}
.y31{bottom:136.080000px;}
.y1fe{bottom:138.060000px;}
.y1b6{bottom:139.860000px;}
.yb3{bottom:141.120000px;}
.y1f4{bottom:142.920000px;}
.yff{bottom:147.060000px;}
.y16c{bottom:147.240000px;}
.y18c{bottom:147.780000px;}
.y1d6{bottom:147.960000px;}
.y69{bottom:148.500000px;}
.y22e{bottom:149.580000px;}
.y93{bottom:150.120000px;}
.y13c{bottom:154.440000px;}
.y11a{bottom:155.340000px;}
.yc8{bottom:155.700000px;}
.ye7{bottom:156.060000px;}
.y246{bottom:158.580000px;}
.y30{bottom:159.840000px;}
.y1fd{bottom:161.820000px;}
.yb2{bottom:165.060000px;}
.yfe{bottom:170.820000px;}
.y68{bottom:172.260000px;}
.y22d{bottom:173.340000px;}
.y92{bottom:174.060000px;}
.y1f3{bottom:176.040000px;}
.y21a{bottom:179.280000px;}
.ye6{bottom:179.820000px;}
.y18b{bottom:180.540000px;}
.y1d5{bottom:180.720000px;}
.y1b5{bottom:181.620000px;}
.y245{bottom:182.340000px;}
.y10d{bottom:183.060000px;}
.y254{bottom:183.240000px;}
.y2f{bottom:183.600000px;}
.y13b{bottom:187.560000px;}
.y119{bottom:188.280000px;}
.yb1{bottom:188.820000px;}
.y1fc{bottom:194.220000px;}
.yfd{bottom:194.580000px;}
.y67{bottom:196.020000px;}
.y91{bottom:197.820000px;}
.y1f2{bottom:199.800000px;}
.y219{bottom:203.040000px;}
.ye5{bottom:203.580000px;}
.y22c{bottom:206.310000px;}
.y10c{bottom:206.850000px;}
.y2e{bottom:207.390000px;}
.y13a{bottom:211.530000px;}
.yb0{bottom:212.610000px;}
.y16a{bottom:213.165000px;}
.y18a{bottom:213.510000px;}
.y253{bottom:215.310000px;}
.yfc{bottom:218.370000px;}
.y66{bottom:219.810000px;}
.y118{bottom:221.070000px;}
.y109{bottom:221.610000px;}
.y1b3{bottom:223.425000px;}
.y1fb{bottom:227.010000px;}
.ye4{bottom:227.370000px;}
.y22b{bottom:230.070000px;}
.y90{bottom:230.610000px;}
.y1b1{bottom:231.165000px;}
.y2d{bottom:231.330000px;}
.y1f1{bottom:232.230000px;}
.y139{bottom:235.290000px;}
.y218{bottom:235.830000px;}
.y1b0{bottom:236.205000px;}
.yaf{bottom:236.370000px;}
.y244{bottom:239.070000px;}
.yfb{bottom:242.310000px;}
.y65{bottom:243.570000px;}
.y108{bottom:245.370000px;}
.y189{bottom:246.270000px;}
.y252{bottom:248.070000px;}
.ye3{bottom:251.310000px;}
.y117{bottom:253.830000px;}
.y8f{bottom:254.370000px;}
.y2c{bottom:255.090000px;}
.y217{bottom:259.590000px;}
.yae{bottom:260.310000px;}
.y243{bottom:262.830000px;}
.y1f0{bottom:265.530000px;}
.yfa{bottom:266.070000px;}
.y64{bottom:267.510000px;}
.y138{bottom:267.690000px;}
.y107{bottom:269.310000px;}
.y251{bottom:271.830000px;}
.ye2{bottom:275.070000px;}
.y116{bottom:277.590000px;}
.y1af{bottom:277.965000px;}
.y8e{bottom:278.310000px;}
.y1d4{bottom:278.670000px;}
.y2b{bottom:278.850000px;}
.y188{bottom:279.030000px;}
.y167{bottom:279.225000px;}
.y216{bottom:283.530000px;}
.yc7{bottom:284.070000px;}
.y239{bottom:286.590000px;}
.y1ef{bottom:289.290000px;}
.yf9{bottom:289.830000px;}
.y63{bottom:291.270000px;}
.yad{bottom:293.070000px;}
.y250{bottom:295.590000px;}
.ye1{bottom:298.830000px;}
.y137{bottom:300.810000px;}
.y8d{bottom:302.070000px;}
.y2a{bottom:302.610000px;}
.yc6{bottom:307.830000px;}
.y115{bottom:310.530000px;}
.y1d3{bottom:311.970000px;}
.y187{bottom:312.150000px;}
.y1ee{bottom:313.050000px;}
.yf8{bottom:313.590000px;}
.y215{bottom:316.290000px;}
.yac{bottom:316.830000px;}
.y242{bottom:319.530000px;}
.y1ae{bottom:319.905000px;}
.ye0{bottom:322.590000px;}
.y62{bottom:324.030000px;}
.y136{bottom:324.750000px;}
.y8c{bottom:325.830000px;}
.y29{bottom:326.550000px;}
.y24f{bottom:328.530000px;}
.y105{bottom:331.230000px;}
.yc5{bottom:331.590000px;}
.y22a{bottom:334.290000px;}
.y1d2{bottom:335.730000px;}
.y186{bottom:336.090000px;}
.y1ed{bottom:336.810000px;}
.yf7{bottom:337.530000px;}
.y214{bottom:340.050000px;}
.yab{bottom:340.590000px;}
.y114{bottom:343.290000px;}
.y163{bottom:345.105000px;}
.ydf{bottom:346.530000px;}
.y61{bottom:347.790000px;}
.y135{bottom:348.510000px;}
.y8b{bottom:349.590000px;}
.y28{bottom:350.310000px;}
.y24e{bottom:352.290000px;}
.y202{bottom:355.170000px;}
.yc4{bottom:355.530000px;}
.y229{bottom:358.050000px;}
.y1d1{bottom:359.490000px;}
.y185{bottom:359.850000px;}
.y1ec{bottom:360.750000px;}
.y1ad{bottom:361.665000px;}
.y213{bottom:363.810000px;}
.yaa{bottom:364.530000px;}
.y238{bottom:367.050000px;}
.yf6{bottom:369.930000px;}
.yde{bottom:370.290000px;}
.y60{bottom:371.730000px;}
.y8a{bottom:373.530000px;}
.y27{bottom:374.070000px;}
.y113{bottom:376.050000px;}
.yc3{bottom:379.290000px;}
.y134{bottom:380.910000px;}
.y1d0{bottom:383.250000px;}
.y184{bottom:383.610000px;}
.ya9{bottom:388.290000px;}
.y228{bottom:390.810000px;}
.y1eb{bottom:393.510000px;}
.y5f{bottom:395.490000px;}
.y212{bottom:396.750000px;}
.y89{bottom:397.290000px;}
.y26{bottom:397.830000px;}
.y241{bottom:399.810000px;}
.ydd{bottom:402.690000px;}
.yc2{bottom:403.050000px;}
.y1ac{bottom:403.425000px;}
.y1cf{bottom:407.190000px;}
.y183{bottom:407.370000px;}
.y112{bottom:408.810000px;}
.y15e{bottom:411.165000px;}
.ya8{bottom:412.050000px;}
.y133{bottom:414.030000px;}
.y227{bottom:414.750000px;}
.y5e{bottom:419.250000px;}
.y211{bottom:420.510000px;}
.y88{bottom:421.050000px;}
.y25{bottom:421.590000px;}
.y240{bottom:423.750000px;}
.y1ea{bottom:426.270000px;}
.yc1{bottom:426.810000px;}
.y1ce{bottom:430.950000px;}
.y182{bottom:431.130000px;}
.y24d{bottom:432.750000px;}
.ya7{bottom:435.810000px;}
.y132{bottom:437.970000px;}
.y111{bottom:441.795000px;}
.y5d{bottom:443.055000px;}
.y210{bottom:444.315000px;}
.y87{bottom:444.855000px;}
.y1ab{bottom:445.215000px;}
.y24{bottom:445.575000px;}
.y226{bottom:447.555000px;}
.yc0{bottom:450.795000px;}
.y24c{bottom:456.555000px;}
.y1e9{bottom:459.075000px;}
.ya6{bottom:459.795000px;}
.y1cd{bottom:463.755000px;}
.y181{bottom:464.115000px;}
.y5c{bottom:466.995000px;}
.y86{bottom:468.795000px;}
.y23{bottom:469.335000px;}
.y131{bottom:470.775000px;}
.y225{bottom:471.315000px;}
.y110{bottom:474.195000px;}
.yf5{bottom:474.555000px;}
.y20f{bottom:477.075000px;}
.y15d{bottom:477.255000px;}
.y10e{bottom:477.795000px;}
.y23f{bottom:480.315000px;}
.ybf{bottom:483.195000px;}
.ya5{bottom:483.555000px;}
.y1aa{bottom:487.155000px;}
.y24b{bottom:489.315000px;}
.y180{bottom:489.495000px;}
.y5b{bottom:490.755000px;}
.y1e8{bottom:491.655000px;}
.y85{bottom:492.555000px;}
.y22{bottom:493.095000px;}
.y1a9{bottom:494.715000px;}
.y224{bottom:495.075000px;}
.y1cc{bottom:496.515000px;}
.y1fa{bottom:498.315000px;}
.y17f{bottom:499.575000px;}
.y1a8{bottom:499.755000px;}
.y20e{bottom:501.015000px;}
.y10b{bottom:501.555000px;}
.y130{bottom:503.535000px;}
.y23e{bottom:504.075000px;}
.y17e{bottom:506.415000px;}
.ya4{bottom:507.315000px;}
.y24a{bottom:513.075000px;}
.y5a{bottom:514.515000px;}
.y84{bottom:516.315000px;}
.y237{bottom:519.015000px;}
.y1f9{bottom:522.075000px;}
.y1e7{bottom:524.775000px;}
.y10a{bottom:525.315000px;}
.y21{bottom:525.495000px;}
.y223{bottom:528.015000px;}
.y1cb{bottom:529.455000px;}
.ya3{bottom:531.075000px;}
.y12f{bottom:536.295000px;}
.y249{bottom:537.015000px;}
.y59{bottom:538.275000px;}
.y83{bottom:540.075000px;}
.y1a7{bottom:541.695000px;}
.y15c{bottom:543.135000px;}
.y1f8{bottom:546.015000px;}
.y17d{bottom:548.355000px;}
.y1e6{bottom:548.535000px;}
.y106{bottom:549.075000px;}
.y1a5{bottom:549.255000px;}
.y20{bottom:550.695000px;}
.y222{bottom:551.775000px;}
.ya2{bottom:555.015000px;}
.y20d{bottom:557.535000px;}
.y23d{bottom:560.775000px;}
.y1ca{bottom:561.855000px;}
.ybe{bottom:564.015000px;}
.y12e{bottom:569.055000px;}
.y1a4{bottom:570.495000px;}
.y58{bottom:571.215000px;}
.y1f{bottom:571.755000px;}
.y1e5{bottom:572.295000px;}
.y82{bottom:573.015000px;}
.y221{bottom:575.535000px;}
.y1f7{bottom:578.415000px;}
.ya1{bottom:578.775000px;}
.y20c{bottom:581.295000px;}
.y23c{bottom:584.535000px;}
.y10f{bottom:587.415000px;}
.ybd{bottom:587.775000px;}
.y17c{bottom:590.115000px;}
.y1e{bottom:592.815000px;}
.y248{bottom:593.535000px;}
.y57{bottom:594.975000px;}
.y1e4{bottom:596.055000px;}
.y81{bottom:596.775000px;}
.y236{bottom:599.295000px;}
.y12d{bottom:601.995000px;}
.ya0{bottom:602.535000px;}
.y1a3{bottom:603.615000px;}
.y20b{bottom:605.055000px;}
.y220{bottom:608.295000px;}
.y15b{bottom:609.195000px;}
.ybc{bottom:611.535000px;}
.y1d{bottom:613.875000px;}
.y247{bottom:617.295000px;}
.y56{bottom:618.735000px;}
.y1e3{bottom:619.995000px;}
.y80{bottom:620.535000px;}
.y235{bottom:623.055000px;}
.ydc{bottom:626.295000px;}
.y17b{bottom:631.875000px;}
.y21f{bottom:632.055000px;}
.y12c{bottom:634.755000px;}
.y1c{bottom:634.935000px;}
.ybb{bottom:635.295000px;}
.y1a2{bottom:636.015000px;}
.y20a{bottom:637.995000px;}
.y23b{bottom:641.055000px;}
.y55{bottom:642.495000px;}
.y1c9{bottom:642.675000px;}
.y7f{bottom:644.295000px;}
.ydb{bottom:650.055000px;}
.y1e2{bottom:652.755000px;}
.y1b{bottom:655.995000px;}
.yba{bottom:659.055000px;}
.y209{bottom:661.755000px;}
.y21e{bottom:664.995000px;}
.y54{bottom:666.435000px;}
.y12b{bottom:667.515000px;}
.y9f{bottom:667.695000px;}
.y7e{bottom:668.055000px;}
.y1a1{bottom:669.135000px;}
.y17a{bottom:673.635000px;}
.yda{bottom:673.995000px;}
.y157{bottom:675.075000px;}
.y1a{bottom:677.085000px;}
.y234{bottom:679.785000px;}
.y201{bottom:682.665000px;}
.yf4{bottom:683.025000px;}
.y1e1{bottom:685.545000px;}
.y21d{bottom:688.785000px;}
.y53{bottom:690.225000px;}
.yb9{bottom:691.665000px;}
.y7d{bottom:692.025000px;}
.y1a0{bottom:693.105000px;}
.yd9{bottom:697.785000px;}
.y19{bottom:698.145000px;}
.y12a{bottom:700.305000px;}
.y9e{bottom:701.025000px;}
.y233{bottom:703.545000px;}
.yf3{bottom:706.785000px;}
.y1c8{bottom:708.225000px;}
.y21c{bottom:712.545000px;}
.y52{bottom:713.985000px;}
.y179{bottom:715.425000px;}
.y7c{bottom:715.785000px;}
.y19f{bottom:716.865000px;}
.y1e0{bottom:718.305000px;}
.y18{bottom:719.205000px;}
.yd8{bottom:721.545000px;}
.y9d{bottom:724.785000px;}
.y232{bottom:727.305000px;}
.yf2{bottom:730.545000px;}
.y1c7{bottom:731.985000px;}
.y129{bottom:733.245000px;}
.y51{bottom:737.745000px;}
.y7b{bottom:739.545000px;}
.y17{bottom:740.265000px;}
.y19e{bottom:740.625000px;}
.y154{bottom:741.165000px;}
.y208{bottom:742.245000px;}
.yd7{bottom:745.305000px;}
.y9c{bottom:748.545000px;}
.y1df{bottom:750.885000px;}
.yf1{bottom:754.305000px;}
.y1c6{bottom:755.925000px;}
.y128{bottom:757.005000px;}
.y178{bottom:757.365000px;}
.y231{bottom:760.245000px;}
.y16{bottom:761.325000px;}
.y50{bottom:761.685000px;}
.y7a{bottom:763.305000px;}
.y19d{bottom:764.385000px;}
.y207{bottom:766.005000px;}
.y177{bottom:767.445000px;}
.yd6{bottom:769.245000px;}
.y9b{bottom:772.305000px;}
.y175{bottom:774.285000px;}
.yf0{bottom:778.245000px;}
.y1c5{bottom:779.685000px;}
.y15{bottom:782.205000px;}
.y1de{bottom:784.005000px;}
.y79{bottom:787.245000px;}
.y19c{bottom:788.325000px;}
.y127{bottom:789.765000px;}
.yd5{bottom:793.005000px;}
.y4f{bottom:794.085000px;}
.y9a{bottom:796.245000px;}
.y173{bottom:798.225000px;}
.y206{bottom:798.765000px;}
.yef{bottom:802.005000px;}
.y1c4{bottom:803.445000px;}
.y150{bottom:807.045000px;}
.y1dd{bottom:807.765000px;}
.y78{bottom:811.005000px;}
.y19b{bottom:812.085000px;}
.y14{bottom:812.445000px;}
.y21b{bottom:816.765000px;}
.y99{bottom:820.005000px;}
.y172{bottom:821.985000px;}
.y126{bottom:822.525000px;}
.yd4{bottom:825.405000px;}
.yee{bottom:825.765000px;}
.y4e{bottom:826.305000px;}
.y1c3{bottom:827.205000px;}
.y1dc{bottom:831.525000px;}
.y170{bottom:832.065000px;}
.y13{bottom:832.425000px;}
.y77{bottom:834.765000px;}
.y230{bottom:840.525000px;}
.y98{bottom:843.765000px;}
.y19a{bottom:844.845000px;}
.y205{bottom:846.465000px;}
.y12{bottom:846.825000px;}
.yed{bottom:849.525000px;}
.y1c2{bottom:850.965000px;}
.y16f{bottom:855.105000px;}
.y125{bottom:855.465000px;}
.y4d{bottom:857.625000px;}
.yd3{bottom:858.525000px;}
.y11{bottom:864.285000px;}
.y22f{bottom:864.465000px;}
.y76{bottom:867.525000px;}
.y199{bottom:870.225000px;}
.y14c{bottom:873.105000px;}
.yec{bottom:873.465000px;}
.y1c1{bottom:874.905000px;}
.y204{bottom:878.865000px;}
.y1db{bottom:879.225000px;}
.y4c{bottom:879.945000px;}
.y198{bottom:880.665000px;}
.yd2{bottom:882.465000px;}
.y197{bottom:887.505000px;}
.y16e{bottom:887.865000px;}
.y124{bottom:888.225000px;}
.y75{bottom:891.465000px;}
.yeb{bottom:897.225000px;}
.y10{bottom:899.745000px;}
.y4b{bottom:902.085000px;}
.y1da{bottom:902.985000px;}
.yd1{bottom:906.225000px;}
.y1c0{bottom:907.665000px;}
.y123{bottom:912.030000px;}
.y74{bottom:915.270000px;}
.yea{bottom:921.030000px;}
.y4a{bottom:924.450000px;}
.y196{bottom:929.310000px;}
.yd0{bottom:930.030000px;}
.y1be{bottom:933.090000px;}
.yf{bottom:935.250000px;}
.y122{bottom:935.790000px;}
.y73{bottom:939.030000px;}
.y1bc{bottom:940.650000px;}
.y104{bottom:944.790000px;}
.y1bb{bottom:945.870000px;}
.y49{bottom:947.490000px;}
.yb8{bottom:948.030000px;}
.y147{bottom:949.290000px;}
.ye9{bottom:953.430000px;}
.ycf{bottom:953.790000px;}
.y146{bottom:955.950000px;}
.y121{bottom:959.730000px;}
.ye{bottom:962.070000px;}
.y72{bottom:962.790000px;}
.y103{bottom:968.730000px;}
.y195{bottom:971.070000px;}
.y48{bottom:971.250000px;}
.yb7{bottom:971.790000px;}
.yd{bottom:973.590000px;}
.y1f6{bottom:977.370000px;}
.yce{bottom:977.730000px;}
.y120{bottom:983.490000px;}
.y71{bottom:986.730000px;}
.y33{bottom:986.760000px;}
.y37{bottom:987.120000px;}
.y1ba{bottom:987.630000px;}
.y35{bottom:988.380000px;}
.y102{bottom:992.490000px;}
.yc{bottom:993.390000px;}
.y47{bottom:995.010000px;}
.y97{bottom:995.730000px;}
.y143{bottom:998.250000px;}
.y1d9{bottom:1001.490000px;}
.y11f{bottom:1007.250000px;}
.y140{bottom:1008.330000px;}
.y200{bottom:1010.130000px;}
.y70{bottom:1010.490000px;}
.y194{bottom:1013.010000px;}
.y13d{bottom:1014.990000px;}
.y96{bottom:1019.490000px;}
.y193{bottom:1023.270000px;}
.y101{bottom:1024.890000px;}
.y203{bottom:1025.250000px;}
.y46{bottom:1027.410000px;}
.yb{bottom:1027.590000px;}
.y1b9{bottom:1029.390000px;}
.y192{bottom:1030.110000px;}
.y1d8{bottom:1033.890000px;}
.y6f{bottom:1034.250000px;}
.y11e{bottom:1039.650000px;}
.y95{bottom:1043.250000px;}
.y45{bottom:1050.090000px;}
.ycd{bottom:1058.010000px;}
.ya{bottom:1062.870000px;}
.y44{bottom:1067.010000px;}
.y1b8{bottom:1071.330000px;}
.y191{bottom:1072.050000px;}
.y11d{bottom:1072.590000px;}
.ycc{bottom:1081.950000px;}
.y18f{bottom:1082.310000px;}
.y43{bottom:1090.950000px;}
.y9{bottom:1101.030000px;}
.y11c{bottom:1105.350000px;}
.ycb{bottom:1105.710000px;}
.y1b7{bottom:1113.090000px;}
.y42{bottom:1114.710000px;}
.yca{bottom:1138.110000px;}
.y41{bottom:1138.470000px;}
.y8{bottom:1139.190000px;}
.y3f{bottom:1164.600000px;}
.y3e{bottom:1180.440000px;}
.y6e{bottom:1183.500000px;}
.y3d{bottom:1196.280000px;}
.y6d{bottom:1197.540000px;}
.y39{bottom:1207.980000px;}
.y3c{bottom:1220.400000px;}
.y3b{bottom:1237.500000px;}
.h3c{height:4.125000px;}
.h3e{height:4.305000px;}
.h23{height:4.485000px;}
.h3b{height:5.025000px;}
.h41{height:5.205000px;}
.h26{height:6.285000px;}
.h36{height:6.825000px;}
.h30{height:6.840000px;}
.h37{height:7.005000px;}
.h39{height:7.020000px;}
.h24{height:9.705000px;}
.h27{height:9.885000px;}
.h17{height:13.500000px;}
.h15{height:14.580000px;}
.h18{height:14.760000px;}
.h21{height:18.000000px;}
.h1f{height:18.180000px;}
.h19{height:20.479922px;}
.h31{height:23.760000px;}
.h32{height:23.940000px;}
.h6{height:24.840000px;}
.hd{height:25.603594px;}
.ha{height:36.281250px;}
.h2{height:38.405391px;}
.h16{height:38.464805px;}
.h8{height:38.469727px;}
.h20{height:40.655391px;}
.h1b{height:40.843828px;}
.h1c{height:40.985156px;}
.h25{height:41.745000px;}
.h40{height:41.758500px;}
.h3d{height:41.781000px;}
.h38{height:41.782500px;}
.h34{height:41.790000px;}
.h3f{height:41.796000px;}
.h35{height:41.925000px;}
.h33{height:41.940000px;}
.h9{height:42.573164px;}
.h1a{height:45.720703px;}
.h5{height:47.650430px;}
.h4{height:49.680000px;}
.h14{height:50.273438px;}
.h7{height:53.709961px;}
.he{height:54.421875px;}
.hf{height:54.597656px;}
.h1d{height:56.084062px;}
.h22{height:59.385000px;}
.h11{height:59.439023px;}
.h10{height:61.189805px;}
.h2c{height:65.505000px;}
.h2a{height:65.520000px;}
.h12{height:65.534063px;}
.h2e{height:65.541000px;}
.h28{height:65.542500px;}
.h2f{height:65.556000px;}
.h2d{height:65.685000px;}
.h29{height:65.700000px;}
.h2b{height:65.730000px;}
.h3{height:65.884219px;}
.h3a{height:70.628906px;}
.h13{height:70.664062px;}
.h1e{height:72.562500px;}
.h42{height:74.004654px;}
.h43{height:74.953125px;}
.hb{height:88.592344px;}
.hc{height:89.002969px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:17.625000px;}
.w8{width:77.400000px;}
.we{width:84.780000px;}
.w1f{width:85.161000px;}
.wd{width:85.701000px;}
.wf{width:85.896000px;}
.w19{width:86.925000px;}
.w1a{width:86.961000px;}
.w2{width:90.000000px;}
.w10{width:94.125000px;}
.w1c{width:94.320000px;}
.w12{width:102.765000px;}
.w1d{width:102.996000px;}
.w1e{width:103.125000px;}
.w11{width:106.041000px;}
.wa{width:106.401000px;}
.w7{width:107.100000px;}
.wc{width:107.809500px;}
.w4{width:109.800000px;}
.w15{width:111.636000px;}
.w16{width:111.765000px;}
.w14{width:111.780000px;}
.w18{width:114.696000px;}
.w5{width:143.280000px;}
.w1b{width:172.099500px;}
.w13{width:186.499500px;}
.w20{width:206.130000px;}
.w6{width:221.400000px;}
.w17{width:258.139500px;}
.w9{width:459.784500px;}
.w3{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:8.089500px;}
.x15{left:10.836000px;}
.x3{left:12.210000px;}
.x18{left:14.940000px;}
.x13{left:19.950000px;}
.x17{left:51.015000px;}
.x4{left:93.960000px;}
.x1{left:108.036000px;}
.x1c{left:109.116000px;}
.x27{left:110.386500px;}
.xc{left:113.076000px;}
.x6{left:119.376000px;}
.x14{left:122.400000px;}
.x32{left:135.036000px;}
.x7{left:143.136000px;}
.x33{left:162.030000px;}
.x19{left:163.110000px;}
.x34{left:166.890000px;}
.x23{left:216.225000px;}
.x1b{left:222.870000px;}
.x11{left:248.430000px;}
.x1e{left:252.210000px;}
.xf{left:266.430000px;}
.x2e{left:282.495000px;}
.x28{left:296.895000px;}
.x24{left:302.115000px;}
.x1a{left:315.615000px;}
.x8{left:337.395000px;}
.x16{left:347.220000px;}
.x10{left:366.555000px;}
.x2b{left:368.535000px;}
.xd{left:373.935000px;}
.xe{left:375.375000px;}
.x2f{left:376.815000px;}
.xb{left:384.195000px;}
.x25{left:387.255000px;}
.x29{left:408.675000px;}
.xa{left:435.135000px;}
.x9{left:446.475000px;}
.x5{left:454.965000px;}
.x26{left:473.520000px;}
.x30{left:479.820000px;}
.x2c{left:483.240000px;}
.x2a{left:520.320000px;}
.x22{left:567.840000px;}
.x2d{left:570.180000px;}
.x31{left:582.960000px;}
.x20{left:670.500000px;}
.x1f{left:672.300000px;}
.x1d{left:673.740000px;}
.x12{left:683.460000px;}
.x2{left:802.980000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.476800pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.224533pt;}
.ls7{letter-spacing:0.239360pt;}
.lse{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.768000pt;}
.lsa{letter-spacing:5.760000pt;}
.ls10{letter-spacing:30.186667pt;}
.wsf{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.953280pt;}
.wsa{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.658133pt;}
.ws3{word-spacing:-9.433600pt;}
.ws1{word-spacing:-8.833280pt;}
.ws5{word-spacing:-8.356480pt;}
.ws2{word-spacing:0.000000pt;}
._29{margin-left:-4.117333pt;}
._24{margin-left:-1.946027pt;}
._0{margin-left:-1.008000pt;}
._4{width:0.956160pt;}
._6{width:2.013867pt;}
._5{width:2.984533pt;}
._d{width:3.891840pt;}
._12{width:4.986667pt;}
._11{width:5.888000pt;}
._f{width:7.289173pt;}
._e{width:8.192000pt;}
._8{width:9.344000pt;}
._9{width:10.432000pt;}
._a{width:11.584000pt;}
._22{width:12.480000pt;}
._1a{width:13.408000pt;}
._17{width:14.528000pt;}
._1d{width:17.011840pt;}
._18{width:17.920000pt;}
._10{width:19.184000pt;}
._19{width:20.432000pt;}
._1e{width:21.824000pt;}
._20{width:23.552000pt;}
._23{width:24.896000pt;}
._7{width:26.048000pt;}
._2{width:27.440000pt;}
._b{width:28.672000pt;}
._c{width:29.943680pt;}
._15{width:31.441920pt;}
._16{width:32.343040pt;}
._13{width:33.578667pt;}
._14{width:34.547840pt;}
._21{width:35.916160pt;}
._1b{width:36.864000pt;}
._1c{width:38.339840pt;}
._25{width:40.000000pt;}
._26{width:41.280000pt;}
._27{width:42.688000pt;}
._2e{width:43.648000pt;}
._32{width:45.616000pt;}
._2b{width:57.765333pt;}
._30{width:79.552000pt;}
._31{width:80.608000pt;}
._2c{width:82.048000pt;}
._2a{width:144.894507pt;}
._28{width:159.978667pt;}
._1f{width:175.978667pt;}
._2f{width:817.152000pt;}
._3{width:970.273067pt;}
._2d{width:1808.960000pt;}
._1{width:1865.125333pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs5{font-size:93.440000pt;}
.y141{bottom:-18.880000pt;}
.y1b4{bottom:-18.760000pt;}
.y1bf{bottom:-18.720000pt;}
.y142{bottom:-18.560000pt;}
.y1b2{bottom:-18.093333pt;}
.y1a6{bottom:-18.080000pt;}
.y1bd{bottom:-17.920000pt;}
.y148{bottom:-17.280000pt;}
.y149{bottom:-16.960000pt;}
.y171{bottom:-16.480000pt;}
.y190{bottom:-16.320000pt;}
.y144{bottom:-14.240000pt;}
.y14a{bottom:-14.080000pt;}
.y145{bottom:-13.920000pt;}
.y14b{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.120000pt;}
.y36{bottom:1.413333pt;}
.y34{bottom:2.373333pt;}
.y38{bottom:2.533333pt;}
.y3{bottom:4.000000pt;}
.y4{bottom:4.480000pt;}
.yb6{bottom:5.280000pt;}
.y6c{bottom:5.440000pt;}
.y174{bottom:6.560000pt;}
.y176{bottom:6.720000pt;}
.y13f{bottom:11.680000pt;}
.y18e{bottom:13.600000pt;}
.y6b{bottom:13.760000pt;}
.yb5{bottom:14.080000pt;}
.y160{bottom:14.226667pt;}
.ye8{bottom:14.240000pt;}
.y16b{bottom:14.386667pt;}
.y255{bottom:14.400000pt;}
.y162{bottom:14.546667pt;}
.y14f{bottom:14.560000pt;}
.y15a{bottom:14.586667pt;}
.y166{bottom:14.706667pt;}
.y153{bottom:14.720000pt;}
.y40{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y5{bottom:31.840000pt;}
.y168{bottom:35.346667pt;}
.y155{bottom:35.360000pt;}
.y15f{bottom:35.386667pt;}
.y14d{bottom:35.400000pt;}
.y164{bottom:35.506667pt;}
.y151{bottom:35.520000pt;}
.y158{bottom:35.546667pt;}
.y169{bottom:35.666667pt;}
.y156{bottom:35.680000pt;}
.y161{bottom:35.706667pt;}
.y14e{bottom:35.720000pt;}
.y165{bottom:35.826667pt;}
.y152{bottom:35.840000pt;}
.y159{bottom:35.866667pt;}
.y1{bottom:37.920000pt;}
.y13e{bottom:38.080000pt;}
.y3a{bottom:38.560000pt;}
.y6{bottom:55.680000pt;}
.y32{bottom:99.680000pt;}
.y1ff{bottom:101.440000pt;}
.y18d{bottom:102.240000pt;}
.yb4{bottom:104.320000pt;}
.y1f5{bottom:105.760000pt;}
.y16d{bottom:108.000000pt;}
.y11b{bottom:108.960000pt;}
.yc9{bottom:109.120000pt;}
.y100{bottom:109.440000pt;}
.y1d7{bottom:110.240000pt;}
.y6a{bottom:110.720000pt;}
.y23a{bottom:111.840000pt;}
.y94{bottom:112.320000pt;}
.y31{bottom:120.960000pt;}
.y1fe{bottom:122.720000pt;}
.y1b6{bottom:124.320000pt;}
.yb3{bottom:125.440000pt;}
.y1f4{bottom:127.040000pt;}
.yff{bottom:130.720000pt;}
.y16c{bottom:130.880000pt;}
.y18c{bottom:131.360000pt;}
.y1d6{bottom:131.520000pt;}
.y69{bottom:132.000000pt;}
.y22e{bottom:132.960000pt;}
.y93{bottom:133.440000pt;}
.y13c{bottom:137.280000pt;}
.y11a{bottom:138.080000pt;}
.yc8{bottom:138.400000pt;}
.ye7{bottom:138.720000pt;}
.y246{bottom:140.960000pt;}
.y30{bottom:142.080000pt;}
.y1fd{bottom:143.840000pt;}
.yb2{bottom:146.720000pt;}
.yfe{bottom:151.840000pt;}
.y68{bottom:153.120000pt;}
.y22d{bottom:154.080000pt;}
.y92{bottom:154.720000pt;}
.y1f3{bottom:156.480000pt;}
.y21a{bottom:159.360000pt;}
.ye6{bottom:159.840000pt;}
.y18b{bottom:160.480000pt;}
.y1d5{bottom:160.640000pt;}
.y1b5{bottom:161.440000pt;}
.y245{bottom:162.080000pt;}
.y10d{bottom:162.720000pt;}
.y254{bottom:162.880000pt;}
.y2f{bottom:163.200000pt;}
.y13b{bottom:166.720000pt;}
.y119{bottom:167.360000pt;}
.yb1{bottom:167.840000pt;}
.y1fc{bottom:172.640000pt;}
.yfd{bottom:172.960000pt;}
.y67{bottom:174.240000pt;}
.y91{bottom:175.840000pt;}
.y1f2{bottom:177.600000pt;}
.y219{bottom:180.480000pt;}
.ye5{bottom:180.960000pt;}
.y22c{bottom:183.386667pt;}
.y10c{bottom:183.866667pt;}
.y2e{bottom:184.346667pt;}
.y13a{bottom:188.026667pt;}
.yb0{bottom:188.986667pt;}
.y16a{bottom:189.480000pt;}
.y18a{bottom:189.786667pt;}
.y253{bottom:191.386667pt;}
.yfc{bottom:194.106667pt;}
.y66{bottom:195.386667pt;}
.y118{bottom:196.506667pt;}
.y109{bottom:196.986667pt;}
.y1b3{bottom:198.600000pt;}
.y1fb{bottom:201.786667pt;}
.ye4{bottom:202.106667pt;}
.y22b{bottom:204.506667pt;}
.y90{bottom:204.986667pt;}
.y1b1{bottom:205.480000pt;}
.y2d{bottom:205.626667pt;}
.y1f1{bottom:206.426667pt;}
.y139{bottom:209.146667pt;}
.y218{bottom:209.626667pt;}
.y1b0{bottom:209.960000pt;}
.yaf{bottom:210.106667pt;}
.y244{bottom:212.506667pt;}
.yfb{bottom:215.386667pt;}
.y65{bottom:216.506667pt;}
.y108{bottom:218.106667pt;}
.y189{bottom:218.906667pt;}
.y252{bottom:220.506667pt;}
.ye3{bottom:223.386667pt;}
.y117{bottom:225.626667pt;}
.y8f{bottom:226.106667pt;}
.y2c{bottom:226.746667pt;}
.y217{bottom:230.746667pt;}
.yae{bottom:231.386667pt;}
.y243{bottom:233.626667pt;}
.y1f0{bottom:236.026667pt;}
.yfa{bottom:236.506667pt;}
.y64{bottom:237.786667pt;}
.y138{bottom:237.946667pt;}
.y107{bottom:239.386667pt;}
.y251{bottom:241.626667pt;}
.ye2{bottom:244.506667pt;}
.y116{bottom:246.746667pt;}
.y1af{bottom:247.080000pt;}
.y8e{bottom:247.386667pt;}
.y1d4{bottom:247.706667pt;}
.y2b{bottom:247.866667pt;}
.y188{bottom:248.026667pt;}
.y167{bottom:248.200000pt;}
.y216{bottom:252.026667pt;}
.yc7{bottom:252.506667pt;}
.y239{bottom:254.746667pt;}
.y1ef{bottom:257.146667pt;}
.yf9{bottom:257.626667pt;}
.y63{bottom:258.906667pt;}
.yad{bottom:260.506667pt;}
.y250{bottom:262.746667pt;}
.ye1{bottom:265.626667pt;}
.y137{bottom:267.386667pt;}
.y8d{bottom:268.506667pt;}
.y2a{bottom:268.986667pt;}
.yc6{bottom:273.626667pt;}
.y115{bottom:276.026667pt;}
.y1d3{bottom:277.306667pt;}
.y187{bottom:277.466667pt;}
.y1ee{bottom:278.266667pt;}
.yf8{bottom:278.746667pt;}
.y215{bottom:281.146667pt;}
.yac{bottom:281.626667pt;}
.y242{bottom:284.026667pt;}
.y1ae{bottom:284.360000pt;}
.ye0{bottom:286.746667pt;}
.y62{bottom:288.026667pt;}
.y136{bottom:288.666667pt;}
.y8c{bottom:289.626667pt;}
.y29{bottom:290.266667pt;}
.y24f{bottom:292.026667pt;}
.y105{bottom:294.426667pt;}
.yc5{bottom:294.746667pt;}
.y22a{bottom:297.146667pt;}
.y1d2{bottom:298.426667pt;}
.y186{bottom:298.746667pt;}
.y1ed{bottom:299.386667pt;}
.yf7{bottom:300.026667pt;}
.y214{bottom:302.266667pt;}
.yab{bottom:302.746667pt;}
.y114{bottom:305.146667pt;}
.y163{bottom:306.760000pt;}
.ydf{bottom:308.026667pt;}
.y61{bottom:309.146667pt;}
.y135{bottom:309.786667pt;}
.y8b{bottom:310.746667pt;}
.y28{bottom:311.386667pt;}
.y24e{bottom:313.146667pt;}
.y202{bottom:315.706667pt;}
.yc4{bottom:316.026667pt;}
.y229{bottom:318.266667pt;}
.y1d1{bottom:319.546667pt;}
.y185{bottom:319.866667pt;}
.y1ec{bottom:320.666667pt;}
.y1ad{bottom:321.480000pt;}
.y213{bottom:323.386667pt;}
.yaa{bottom:324.026667pt;}
.y238{bottom:326.266667pt;}
.yf6{bottom:328.826667pt;}
.yde{bottom:329.146667pt;}
.y60{bottom:330.426667pt;}
.y8a{bottom:332.026667pt;}
.y27{bottom:332.506667pt;}
.y113{bottom:334.266667pt;}
.yc3{bottom:337.146667pt;}
.y134{bottom:338.586667pt;}
.y1d0{bottom:340.666667pt;}
.y184{bottom:340.986667pt;}
.ya9{bottom:345.146667pt;}
.y228{bottom:347.386667pt;}
.y1eb{bottom:349.786667pt;}
.y5f{bottom:351.546667pt;}
.y212{bottom:352.666667pt;}
.y89{bottom:353.146667pt;}
.y26{bottom:353.626667pt;}
.y241{bottom:355.386667pt;}
.ydd{bottom:357.946667pt;}
.yc2{bottom:358.266667pt;}
.y1ac{bottom:358.600000pt;}
.y1cf{bottom:361.946667pt;}
.y183{bottom:362.106667pt;}
.y112{bottom:363.386667pt;}
.y15e{bottom:365.480000pt;}
.ya8{bottom:366.266667pt;}
.y133{bottom:368.026667pt;}
.y227{bottom:368.666667pt;}
.y5e{bottom:372.666667pt;}
.y211{bottom:373.786667pt;}
.y88{bottom:374.266667pt;}
.y25{bottom:374.746667pt;}
.y240{bottom:376.666667pt;}
.y1ea{bottom:378.906667pt;}
.yc1{bottom:379.386667pt;}
.y1ce{bottom:383.066667pt;}
.y182{bottom:383.226667pt;}
.y24d{bottom:384.666667pt;}
.ya7{bottom:387.386667pt;}
.y132{bottom:389.306667pt;}
.y111{bottom:392.706667pt;}
.y5d{bottom:393.826667pt;}
.y210{bottom:394.946667pt;}
.y87{bottom:395.426667pt;}
.y1ab{bottom:395.746667pt;}
.y24{bottom:396.066667pt;}
.y226{bottom:397.826667pt;}
.yc0{bottom:400.706667pt;}
.y24c{bottom:405.826667pt;}
.y1e9{bottom:408.066667pt;}
.ya6{bottom:408.706667pt;}
.y1cd{bottom:412.226667pt;}
.y181{bottom:412.546667pt;}
.y5c{bottom:415.106667pt;}
.y86{bottom:416.706667pt;}
.y23{bottom:417.186667pt;}
.y131{bottom:418.466667pt;}
.y225{bottom:418.946667pt;}
.y110{bottom:421.506667pt;}
.yf5{bottom:421.826667pt;}
.y20f{bottom:424.066667pt;}
.y15d{bottom:424.226667pt;}
.y10e{bottom:424.706667pt;}
.y23f{bottom:426.946667pt;}
.ybf{bottom:429.506667pt;}
.ya5{bottom:429.826667pt;}
.y1aa{bottom:433.026667pt;}
.y24b{bottom:434.946667pt;}
.y180{bottom:435.106667pt;}
.y5b{bottom:436.226667pt;}
.y1e8{bottom:437.026667pt;}
.y85{bottom:437.826667pt;}
.y22{bottom:438.306667pt;}
.y1a9{bottom:439.746667pt;}
.y224{bottom:440.066667pt;}
.y1cc{bottom:441.346667pt;}
.y1fa{bottom:442.946667pt;}
.y17f{bottom:444.066667pt;}
.y1a8{bottom:444.226667pt;}
.y20e{bottom:445.346667pt;}
.y10b{bottom:445.826667pt;}
.y130{bottom:447.586667pt;}
.y23e{bottom:448.066667pt;}
.y17e{bottom:450.146667pt;}
.ya4{bottom:450.946667pt;}
.y24a{bottom:456.066667pt;}
.y5a{bottom:457.346667pt;}
.y84{bottom:458.946667pt;}
.y237{bottom:461.346667pt;}
.y1f9{bottom:464.066667pt;}
.y1e7{bottom:466.466667pt;}
.y10a{bottom:466.946667pt;}
.y21{bottom:467.106667pt;}
.y223{bottom:469.346667pt;}
.y1cb{bottom:470.626667pt;}
.ya3{bottom:472.066667pt;}
.y12f{bottom:476.706667pt;}
.y249{bottom:477.346667pt;}
.y59{bottom:478.466667pt;}
.y83{bottom:480.066667pt;}
.y1a7{bottom:481.506667pt;}
.y15c{bottom:482.786667pt;}
.y1f8{bottom:485.346667pt;}
.y17d{bottom:487.426667pt;}
.y1e6{bottom:487.586667pt;}
.y106{bottom:488.066667pt;}
.y1a5{bottom:488.226667pt;}
.y20{bottom:489.506667pt;}
.y222{bottom:490.466667pt;}
.ya2{bottom:493.346667pt;}
.y20d{bottom:495.586667pt;}
.y23d{bottom:498.466667pt;}
.y1ca{bottom:499.426667pt;}
.ybe{bottom:501.346667pt;}
.y12e{bottom:505.826667pt;}
.y1a4{bottom:507.106667pt;}
.y58{bottom:507.746667pt;}
.y1f{bottom:508.226667pt;}
.y1e5{bottom:508.706667pt;}
.y82{bottom:509.346667pt;}
.y221{bottom:511.586667pt;}
.y1f7{bottom:514.146667pt;}
.ya1{bottom:514.466667pt;}
.y20c{bottom:516.706667pt;}
.y23c{bottom:519.586667pt;}
.y10f{bottom:522.146667pt;}
.ybd{bottom:522.466667pt;}
.y17c{bottom:524.546667pt;}
.y1e{bottom:526.946667pt;}
.y248{bottom:527.586667pt;}
.y57{bottom:528.866667pt;}
.y1e4{bottom:529.826667pt;}
.y81{bottom:530.466667pt;}
.y236{bottom:532.706667pt;}
.y12d{bottom:535.106667pt;}
.ya0{bottom:535.586667pt;}
.y1a3{bottom:536.546667pt;}
.y20b{bottom:537.826667pt;}
.y220{bottom:540.706667pt;}
.y15b{bottom:541.506667pt;}
.ybc{bottom:543.586667pt;}
.y1d{bottom:545.666667pt;}
.y247{bottom:548.706667pt;}
.y56{bottom:549.986667pt;}
.y1e3{bottom:551.106667pt;}
.y80{bottom:551.586667pt;}
.y235{bottom:553.826667pt;}
.ydc{bottom:556.706667pt;}
.y17b{bottom:561.666667pt;}
.y21f{bottom:561.826667pt;}
.y12c{bottom:564.226667pt;}
.y1c{bottom:564.386667pt;}
.ybb{bottom:564.706667pt;}
.y1a2{bottom:565.346667pt;}
.y20a{bottom:567.106667pt;}
.y23b{bottom:569.826667pt;}
.y55{bottom:571.106667pt;}
.y1c9{bottom:571.266667pt;}
.y7f{bottom:572.706667pt;}
.ydb{bottom:577.826667pt;}
.y1e2{bottom:580.226667pt;}
.y1b{bottom:583.106667pt;}
.yba{bottom:585.826667pt;}
.y209{bottom:588.226667pt;}
.y21e{bottom:591.106667pt;}
.y54{bottom:592.386667pt;}
.y12b{bottom:593.346667pt;}
.y9f{bottom:593.506667pt;}
.y7e{bottom:593.826667pt;}
.y1a1{bottom:594.786667pt;}
.y17a{bottom:598.786667pt;}
.yda{bottom:599.106667pt;}
.y157{bottom:600.066667pt;}
.y1a{bottom:601.853333pt;}
.y234{bottom:604.253333pt;}
.y201{bottom:606.813333pt;}
.yf4{bottom:607.133333pt;}
.y1e1{bottom:609.373333pt;}
.y21d{bottom:612.253333pt;}
.y53{bottom:613.533333pt;}
.yb9{bottom:614.813333pt;}
.y7d{bottom:615.133333pt;}
.y1a0{bottom:616.093333pt;}
.yd9{bottom:620.253333pt;}
.y19{bottom:620.573333pt;}
.y12a{bottom:622.493333pt;}
.y9e{bottom:623.133333pt;}
.y233{bottom:625.373333pt;}
.yf3{bottom:628.253333pt;}
.y1c8{bottom:629.533333pt;}
.y21c{bottom:633.373333pt;}
.y52{bottom:634.653333pt;}
.y179{bottom:635.933333pt;}
.y7c{bottom:636.253333pt;}
.y19f{bottom:637.213333pt;}
.y1e0{bottom:638.493333pt;}
.y18{bottom:639.293333pt;}
.yd8{bottom:641.373333pt;}
.y9d{bottom:644.253333pt;}
.y232{bottom:646.493333pt;}
.yf2{bottom:649.373333pt;}
.y1c7{bottom:650.653333pt;}
.y129{bottom:651.773333pt;}
.y51{bottom:655.773333pt;}
.y7b{bottom:657.373333pt;}
.y17{bottom:658.013333pt;}
.y19e{bottom:658.333333pt;}
.y154{bottom:658.813333pt;}
.y208{bottom:659.773333pt;}
.yd7{bottom:662.493333pt;}
.y9c{bottom:665.373333pt;}
.y1df{bottom:667.453333pt;}
.yf1{bottom:670.493333pt;}
.y1c6{bottom:671.933333pt;}
.y128{bottom:672.893333pt;}
.y178{bottom:673.213333pt;}
.y231{bottom:675.773333pt;}
.y16{bottom:676.733333pt;}
.y50{bottom:677.053333pt;}
.y7a{bottom:678.493333pt;}
.y19d{bottom:679.453333pt;}
.y207{bottom:680.893333pt;}
.y177{bottom:682.173333pt;}
.yd6{bottom:683.773333pt;}
.y9b{bottom:686.493333pt;}
.y175{bottom:688.253333pt;}
.yf0{bottom:691.773333pt;}
.y1c5{bottom:693.053333pt;}
.y15{bottom:695.293333pt;}
.y1de{bottom:696.893333pt;}
.y79{bottom:699.773333pt;}
.y19c{bottom:700.733333pt;}
.y127{bottom:702.013333pt;}
.yd5{bottom:704.893333pt;}
.y4f{bottom:705.853333pt;}
.y9a{bottom:707.773333pt;}
.y173{bottom:709.533333pt;}
.y206{bottom:710.013333pt;}
.yef{bottom:712.893333pt;}
.y1c4{bottom:714.173333pt;}
.y150{bottom:717.373333pt;}
.y1dd{bottom:718.013333pt;}
.y78{bottom:720.893333pt;}
.y19b{bottom:721.853333pt;}
.y14{bottom:722.173333pt;}
.y21b{bottom:726.013333pt;}
.y99{bottom:728.893333pt;}
.y172{bottom:730.653333pt;}
.y126{bottom:731.133333pt;}
.yd4{bottom:733.693333pt;}
.yee{bottom:734.013333pt;}
.y4e{bottom:734.493333pt;}
.y1c3{bottom:735.293333pt;}
.y1dc{bottom:739.133333pt;}
.y170{bottom:739.613333pt;}
.y13{bottom:739.933333pt;}
.y77{bottom:742.013333pt;}
.y230{bottom:747.133333pt;}
.y98{bottom:750.013333pt;}
.y19a{bottom:750.973333pt;}
.y205{bottom:752.413333pt;}
.y12{bottom:752.733333pt;}
.yed{bottom:755.133333pt;}
.y1c2{bottom:756.413333pt;}
.y16f{bottom:760.093333pt;}
.y125{bottom:760.413333pt;}
.y4d{bottom:762.333333pt;}
.yd3{bottom:763.133333pt;}
.y11{bottom:768.253333pt;}
.y22f{bottom:768.413333pt;}
.y76{bottom:771.133333pt;}
.y199{bottom:773.533333pt;}
.y14c{bottom:776.093333pt;}
.yec{bottom:776.413333pt;}
.y1c1{bottom:777.693333pt;}
.y204{bottom:781.213333pt;}
.y1db{bottom:781.533333pt;}
.y4c{bottom:782.173333pt;}
.y198{bottom:782.813333pt;}
.yd2{bottom:784.413333pt;}
.y197{bottom:788.893333pt;}
.y16e{bottom:789.213333pt;}
.y124{bottom:789.533333pt;}
.y75{bottom:792.413333pt;}
.yeb{bottom:797.533333pt;}
.y10{bottom:799.773333pt;}
.y4b{bottom:801.853333pt;}
.y1da{bottom:802.653333pt;}
.yd1{bottom:805.533333pt;}
.y1c0{bottom:806.813333pt;}
.y123{bottom:810.693333pt;}
.y74{bottom:813.573333pt;}
.yea{bottom:818.693333pt;}
.y4a{bottom:821.733333pt;}
.y196{bottom:826.053333pt;}
.yd0{bottom:826.693333pt;}
.y1be{bottom:829.413333pt;}
.yf{bottom:831.333333pt;}
.y122{bottom:831.813333pt;}
.y73{bottom:834.693333pt;}
.y1bc{bottom:836.133333pt;}
.y104{bottom:839.813333pt;}
.y1bb{bottom:840.773333pt;}
.y49{bottom:842.213333pt;}
.yb8{bottom:842.693333pt;}
.y147{bottom:843.813333pt;}
.ye9{bottom:847.493333pt;}
.ycf{bottom:847.813333pt;}
.y146{bottom:849.733333pt;}
.y121{bottom:853.093333pt;}
.ye{bottom:855.173333pt;}
.y72{bottom:855.813333pt;}
.y103{bottom:861.093333pt;}
.y195{bottom:863.173333pt;}
.y48{bottom:863.333333pt;}
.yb7{bottom:863.813333pt;}
.yd{bottom:865.413333pt;}
.y1f6{bottom:868.773333pt;}
.yce{bottom:869.093333pt;}
.y120{bottom:874.213333pt;}
.y71{bottom:877.093333pt;}
.y33{bottom:877.120000pt;}
.y37{bottom:877.440000pt;}
.y1ba{bottom:877.893333pt;}
.y35{bottom:878.560000pt;}
.y102{bottom:882.213333pt;}
.yc{bottom:883.013333pt;}
.y47{bottom:884.453333pt;}
.y97{bottom:885.093333pt;}
.y143{bottom:887.333333pt;}
.y1d9{bottom:890.213333pt;}
.y11f{bottom:895.333333pt;}
.y140{bottom:896.293333pt;}
.y200{bottom:897.893333pt;}
.y70{bottom:898.213333pt;}
.y194{bottom:900.453333pt;}
.y13d{bottom:902.213333pt;}
.y96{bottom:906.213333pt;}
.y193{bottom:909.573333pt;}
.y101{bottom:911.013333pt;}
.y203{bottom:911.333333pt;}
.y46{bottom:913.253333pt;}
.yb{bottom:913.413333pt;}
.y1b9{bottom:915.013333pt;}
.y192{bottom:915.653333pt;}
.y1d8{bottom:919.013333pt;}
.y6f{bottom:919.333333pt;}
.y11e{bottom:924.133333pt;}
.y95{bottom:927.333333pt;}
.y45{bottom:933.413333pt;}
.ycd{bottom:940.453333pt;}
.ya{bottom:944.773333pt;}
.y44{bottom:948.453333pt;}
.y1b8{bottom:952.293333pt;}
.y191{bottom:952.933333pt;}
.y11d{bottom:953.413333pt;}
.ycc{bottom:961.733333pt;}
.y18f{bottom:962.053333pt;}
.y43{bottom:969.733333pt;}
.y9{bottom:978.693333pt;}
.y11c{bottom:982.533333pt;}
.ycb{bottom:982.853333pt;}
.y1b7{bottom:989.413333pt;}
.y42{bottom:990.853333pt;}
.yca{bottom:1011.653333pt;}
.y41{bottom:1011.973333pt;}
.y8{bottom:1012.613333pt;}
.y3f{bottom:1035.200000pt;}
.y3e{bottom:1049.280000pt;}
.y6e{bottom:1052.000000pt;}
.y3d{bottom:1063.360000pt;}
.y6d{bottom:1064.480000pt;}
.y39{bottom:1073.760000pt;}
.y3c{bottom:1084.800000pt;}
.y3b{bottom:1100.000000pt;}
.h3c{height:3.666667pt;}
.h3e{height:3.826667pt;}
.h23{height:3.986667pt;}
.h3b{height:4.466667pt;}
.h41{height:4.626667pt;}
.h26{height:5.586667pt;}
.h36{height:6.066667pt;}
.h30{height:6.080000pt;}
.h37{height:6.226667pt;}
.h39{height:6.240000pt;}
.h24{height:8.626667pt;}
.h27{height:8.786667pt;}
.h17{height:12.000000pt;}
.h15{height:12.960000pt;}
.h18{height:13.120000pt;}
.h21{height:16.000000pt;}
.h1f{height:16.160000pt;}
.h19{height:18.204375pt;}
.h31{height:21.120000pt;}
.h32{height:21.280000pt;}
.h6{height:22.080000pt;}
.hd{height:22.758750pt;}
.ha{height:32.250000pt;}
.h2{height:34.138125pt;}
.h16{height:34.190937pt;}
.h8{height:34.195312pt;}
.h20{height:36.138125pt;}
.h1b{height:36.305625pt;}
.h1c{height:36.431250pt;}
.h25{height:37.106667pt;}
.h40{height:37.118667pt;}
.h3d{height:37.138667pt;}
.h38{height:37.140000pt;}
.h34{height:37.146667pt;}
.h3f{height:37.152000pt;}
.h35{height:37.266667pt;}
.h33{height:37.280000pt;}
.h9{height:37.842813pt;}
.h1a{height:40.640625pt;}
.h5{height:42.355937pt;}
.h4{height:44.160000pt;}
.h14{height:44.687500pt;}
.h7{height:47.742188pt;}
.he{height:48.375000pt;}
.hf{height:48.531250pt;}
.h1d{height:49.852500pt;}
.h22{height:52.786667pt;}
.h11{height:52.834688pt;}
.h10{height:54.390938pt;}
.h2c{height:58.226667pt;}
.h2a{height:58.240000pt;}
.h12{height:58.252500pt;}
.h2e{height:58.258667pt;}
.h28{height:58.260000pt;}
.h2f{height:58.272000pt;}
.h2d{height:58.386667pt;}
.h29{height:58.400000pt;}
.h2b{height:58.426667pt;}
.h3{height:58.563750pt;}
.h3a{height:62.781250pt;}
.h13{height:62.812500pt;}
.h1e{height:64.500000pt;}
.h42{height:65.781915pt;}
.h43{height:66.625000pt;}
.hb{height:78.748750pt;}
.hc{height:79.113750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:15.666667pt;}
.w8{width:68.800000pt;}
.we{width:75.360000pt;}
.w1f{width:75.698667pt;}
.wd{width:76.178667pt;}
.wf{width:76.352000pt;}
.w19{width:77.266667pt;}
.w1a{width:77.298667pt;}
.w2{width:80.000000pt;}
.w10{width:83.666667pt;}
.w1c{width:83.840000pt;}
.w12{width:91.346667pt;}
.w1d{width:91.552000pt;}
.w1e{width:91.666667pt;}
.w11{width:94.258667pt;}
.wa{width:94.578667pt;}
.w7{width:95.200000pt;}
.wc{width:95.830667pt;}
.w4{width:97.600000pt;}
.w15{width:99.232000pt;}
.w16{width:99.346667pt;}
.w14{width:99.360000pt;}
.w18{width:101.952000pt;}
.w5{width:127.360000pt;}
.w1b{width:152.977333pt;}
.w13{width:165.777333pt;}
.w20{width:183.226667pt;}
.w6{width:196.800000pt;}
.w17{width:229.457333pt;}
.w9{width:408.697333pt;}
.w3{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:7.190667pt;}
.x15{left:9.632000pt;}
.x3{left:10.853333pt;}
.x18{left:13.280000pt;}
.x13{left:17.733333pt;}
.x17{left:45.346667pt;}
.x4{left:83.520000pt;}
.x1{left:96.032000pt;}
.x1c{left:96.992000pt;}
.x27{left:98.121333pt;}
.xc{left:100.512000pt;}
.x6{left:106.112000pt;}
.x14{left:108.800000pt;}
.x32{left:120.032000pt;}
.x7{left:127.232000pt;}
.x33{left:144.026667pt;}
.x19{left:144.986667pt;}
.x34{left:148.346667pt;}
.x23{left:192.200000pt;}
.x1b{left:198.106667pt;}
.x11{left:220.826667pt;}
.x1e{left:224.186667pt;}
.xf{left:236.826667pt;}
.x2e{left:251.106667pt;}
.x28{left:263.906667pt;}
.x24{left:268.546667pt;}
.x1a{left:280.546667pt;}
.x8{left:299.906667pt;}
.x16{left:308.640000pt;}
.x10{left:325.826667pt;}
.x2b{left:327.586667pt;}
.xd{left:332.386667pt;}
.xe{left:333.666667pt;}
.x2f{left:334.946667pt;}
.xb{left:341.506667pt;}
.x25{left:344.226667pt;}
.x29{left:363.266667pt;}
.xa{left:386.786667pt;}
.x9{left:396.866667pt;}
.x5{left:404.413333pt;}
.x26{left:420.906667pt;}
.x30{left:426.506667pt;}
.x2c{left:429.546667pt;}
.x2a{left:462.506667pt;}
.x22{left:504.746667pt;}
.x2d{left:506.826667pt;}
.x31{left:518.186667pt;}
.x20{left:596.000000pt;}
.x1f{left:597.600000pt;}
.x1d{left:598.880000pt;}
.x12{left:607.520000pt;}
.x2{left:713.760000pt;}
}




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