
    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_af50a07439cd22eb1f696dab.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4ac9a2a995c5eed2c7617b52.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.147461;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_3b9dbf9b0fca17cc8d53f40d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.147461;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_30147168b7cf896764b59f6d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_a1088648320e95e284b8352b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_11133066fb450c2572dfa457.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8e57f7cc58d506b14a1a63ca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3b27614c2a29a0843b447009.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.079102;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-1.128000px;}
.ls27{letter-spacing:-0.636000px;}
.lsb{letter-spacing:-0.564600px;}
.lsd{letter-spacing:-0.457800px;}
.ls36{letter-spacing:-0.308400px;}
.ls3e{letter-spacing:-0.250800px;}
.lse{letter-spacing:-0.224400px;}
.ls2b{letter-spacing:-0.219000px;}
.ls26{letter-spacing:-0.121200px;}
.ls37{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.066000px;}
.ls25{letter-spacing:-0.034560px;}
.ls6{letter-spacing:-0.011520px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.040320px;}
.ls1a{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.083400px;}
.ls20{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.114600px;}
.ls2d{letter-spacing:0.132600px;}
.ls38{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.146880px;}
.ls4{letter-spacing:0.155400px;}
.ls21{letter-spacing:0.174960px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.181200px;}
.ls35{letter-spacing:0.197280px;}
.ls32{letter-spacing:0.204480px;}
.ls2c{letter-spacing:0.224400px;}
.ls29{letter-spacing:0.236160px;}
.ls16{letter-spacing:0.238800px;}
.ls8{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.262200px;}
.lsa{letter-spacing:0.274800px;}
.ls28{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.296400px;}
.ls2f{letter-spacing:0.312480px;}
.ls10{letter-spacing:0.313800px;}
.ls22{letter-spacing:0.493920px;}
.ls1b{letter-spacing:0.864000px;}
.ls18{letter-spacing:1.584000px;}
.ls39{letter-spacing:2.304000px;}
.ls3a{letter-spacing:3.024000px;}
.ls3{letter-spacing:3.781440px;}
.ls3c{letter-spacing:8.821440px;}
.ls31{letter-spacing:15.120000px;}
.ls24{letter-spacing:15.264000px;}
.ls34{letter-spacing:18.181440px;}
.ls14{letter-spacing:22.501440px;}
.ls15{letter-spacing:22.625280px;}
.ls23{letter-spacing:31.265280px;}
.ls13{letter-spacing:31.985280px;}
.ls2a{letter-spacing:34.145280px;}
.ls3d{letter-spacing:37.001280px;}
.ls12{letter-spacing:39.905280px;}
.lsf{letter-spacing:40.601280px;}
.ls2{letter-spacing:52.841280px;}
.ls3b{letter-spacing:55.386720px;}
.ls1c{letter-spacing:59.345280px;}
.lsc{letter-spacing:64.002720px;}
.ls1f{letter-spacing:64.026720px;}
.ls33{letter-spacing:82.981440px;}
.ls2e{letter-spacing:198.157440px;}
.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;}
}
.ws14{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-58.104000px;}
.ws5{word-spacing:-38.736000px;}
.ws12{word-spacing:-19.368000px;}
.wse{word-spacing:-18.132360px;}
.ws1b{word-spacing:-18.114960px;}
.ws4{word-spacing:-18.080760px;}
.ws10{word-spacing:-18.057360px;}
.ws13{word-spacing:-17.999760px;}
.ws2{word-spacing:-17.973960px;}
.ws1a{word-spacing:-17.951160px;}
.ws11{word-spacing:-17.858880px;}
.ws3{word-spacing:-17.818560px;}
.ws6{word-spacing:-17.807040px;}
.ws16{word-spacing:-17.784000px;}
.wsf{word-spacing:-17.752560px;}
.wsd{word-spacing:-17.594160px;}
.ws1e{word-spacing:-17.567760px;}
.ws1c{word-spacing:-17.510160px;}
.wsb{word-spacing:-17.360760px;}
.ws19{word-spacing:-17.268240px;}
.wsa{word-spacing:-17.253960px;}
.ws18{word-spacing:-17.043840px;}
.ws17{word-spacing:-16.922640px;}
.ws9{word-spacing:-16.350240px;}
.ws8{word-spacing:-16.075440px;}
.ws1d{word-spacing:-15.966240px;}
.ws7{word-spacing:-10.458720px;}
.ws15{word-spacing:-9.684000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-12.312000px;}
._3{margin-left:-6.912000px;}
._4{margin-left:-4.968000px;}
._2{margin-left:-3.888000px;}
._1{margin-left:-2.808000px;}
._5{margin-left:-1.728000px;}
._b{width:1.026000px;}
._e{width:2.052000px;}
._7{width:3.246480px;}
._6{width:4.328640px;}
._9{width:5.410800px;}
._8{width:7.276800px;}
._15{width:8.554560px;}
._25{width:10.117680px;}
._1e{width:11.393280px;}
._19{width:12.519360px;}
._18{width:13.579200px;}
._12{width:14.816880px;}
._11{width:16.585920px;}
._2c{width:17.622480px;}
._1a{width:18.950400px;}
._26{width:20.931840px;}
._20{width:22.345200px;}
._1f{width:23.817600px;}
._10{width:24.900480px;}
._f{width:26.104320px;}
._16{width:27.892800px;}
._17{width:29.725440px;}
._2a{width:31.603920px;}
._1d{width:33.473280px;}
._13{width:34.842240px;}
._14{width:36.300000px;}
._22{width:38.033280px;}
._21{width:39.683520px;}
._32{width:40.982400px;}
._27{width:42.393600px;}
._28{width:43.721040px;}
._1b{width:45.046080px;}
._1c{width:46.107360px;}
._29{width:47.343600px;}
._3e{width:49.224480px;}
._3d{width:50.673600px;}
._3f{width:53.058240px;}
._2d{width:55.995120px;}
._30{width:57.230400px;}
._2b{width:58.561920px;}
._35{width:60.088320px;}
._3a{width:62.101200px;}
._33{width:63.360000px;}
._34{width:64.684080px;}
._38{width:66.245760px;}
._23{width:77.103360px;}
._24{width:78.301440px;}
._31{width:79.760640px;}
._2e{width:81.532800px;}
._2f{width:82.681920px;}
._39{width:83.794800px;}
._40{width:118.944000px;}
._c{width:121.309200px;}
._36{width:124.401600px;}
._37{width:125.530560px;}
._3c{width:172.656000px;}
._3b{width:173.700000px;}
._d{width:198.181440px;}
._a{width:846.156000px;}
.fc4{color:transparent;}
.fc3{color:rgb(15,26,23);}
.fc2{color:rgb(75,129,114);}
.fc5{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs9{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fsd{font-size:59.760000px;}
.fs10{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs11{font-size:66.786636px;}
.fse{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.fs2{font-size:216.000000px;}
.fs5{font-size:432.000000px;}
.y143{bottom:-74.880000px;}
.y12a{bottom:-72.390000px;}
.y142{bottom:-51.840000px;}
.y1a{bottom:-50.940000px;}
.y129{bottom:-49.350000px;}
.y141{bottom:-32.040000px;}
.y19{bottom:-31.320000px;}
.y128{bottom:-29.520000px;}
.y68{bottom:-27.360000px;}
.y61{bottom:-24.300000px;}
.yca{bottom:-23.220000px;}
.y19f{bottom:-22.860000px;}
.y194{bottom:-20.700000px;}
.y149{bottom:-20.340000px;}
.y254{bottom:-19.800000px;}
.y1b6{bottom:-19.620000px;}
.y8b{bottom:-19.440000px;}
.y222{bottom:-18.720000px;}
.y1bb{bottom:-18.585000px;}
.y248{bottom:-18.540000px;}
.y245{bottom:-18.180000px;}
.yeb{bottom:-18.000000px;}
.y1c6{bottom:-17.640000px;}
.yfb{bottom:-15.840000px;}
.y39{bottom:-15.660000px;}
.y155{bottom:-14.940000px;}
.y18{bottom:-14.760000px;}
.yd1{bottom:-14.220000px;}
.y22c{bottom:-13.680000px;}
.ye7{bottom:-12.240000px;}
.y207{bottom:-11.700000px;}
.y127{bottom:-9.720000px;}
.y41{bottom:-8.820000px;}
.yc9{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.439940px;}
.y193{bottom:2.340000px;}
.y148{bottom:2.700000px;}
.y253{bottom:3.240000px;}
.y1b5{bottom:3.420000px;}
.y221{bottom:4.320000px;}
.y1ba{bottom:4.500000px;}
.y17{bottom:4.680000px;}
.y244{bottom:4.860000px;}
.yea{bottom:5.040000px;}
.y1c5{bottom:5.400000px;}
.yfa{bottom:7.200000px;}
.y140{bottom:7.560000px;}
.y154{bottom:8.100000px;}
.y1b{bottom:8.639850px;}
.yd0{bottom:8.820000px;}
.y22b{bottom:9.360000px;}
.y126{bottom:9.720000px;}
.ye6{bottom:10.800000px;}
.y67{bottom:10.830000px;}
.y40{bottom:10.980000px;}
.y206{bottom:11.340000px;}
.y1e8{bottom:13.680000px;}
.y60{bottom:13.860000px;}
.y19e{bottom:17.820000px;}
.y8a{bottom:18.540000px;}
.yc8{bottom:19.620000px;}
.y16{bottom:20.880000px;}
.y38{bottom:21.990000px;}
.y192{bottom:22.140000px;}
.y147{bottom:22.545000px;}
.y252{bottom:23.040000px;}
.y1b4{bottom:23.220000px;}
.y220{bottom:24.120000px;}
.y1b9{bottom:24.300000px;}
.y243{bottom:24.690000px;}
.ye9{bottom:24.840000px;}
.y27d{bottom:24.885000px;}
.y1c4{bottom:25.200000px;}
.yf9{bottom:27.000000px;}
.y13f{bottom:27.360000px;}
.y125{bottom:27.720000px;}
.y1c1{bottom:27.900000px;}
.y153{bottom:27.930000px;}
.ycf{bottom:28.620000px;}
.y22a{bottom:29.160000px;}
.ye5{bottom:30.600000px;}
.y66{bottom:30.630000px;}
.y3f{bottom:30.780000px;}
.y205{bottom:31.140000px;}
.y1e7{bottom:31.680000px;}
.y5f{bottom:33.660000px;}
.y1c{bottom:36.360150px;}
.y89{bottom:38.340000px;}
.yc7{bottom:39.465000px;}
.y2{bottom:39.600060px;}
.y19d{bottom:41.040000px;}
.y191{bottom:41.940000px;}
.y146{bottom:42.345000px;}
.y251{bottom:42.840000px;}
.y21f{bottom:43.920000px;}
.y1b8{bottom:44.100000px;}
.y242{bottom:44.490000px;}
.y27c{bottom:44.685000px;}
.y1c3{bottom:45.000000px;}
.y37{bottom:45.210000px;}
.y124{bottom:45.720000px;}
.y15{bottom:46.440000px;}
.yf8{bottom:46.800000px;}
.y13e{bottom:47.160000px;}
.y1c0{bottom:47.700000px;}
.y152{bottom:47.730000px;}
.yce{bottom:48.420000px;}
.y229{bottom:48.960000px;}
.ye4{bottom:50.400000px;}
.y65{bottom:50.430000px;}
.y3e{bottom:50.580000px;}
.y204{bottom:50.940000px;}
.y5e{bottom:53.460000px;}
.y19c{bottom:54.180000px;}
.y1e6{bottom:54.900000px;}
.y88{bottom:58.140000px;}
.yc6{bottom:59.265000px;}
.y190{bottom:61.740000px;}
.y145{bottom:62.145000px;}
.y250{bottom:62.685000px;}
.y123{bottom:63.720000px;}
.y247{bottom:63.900000px;}
.y241{bottom:64.290000px;}
.y27b{bottom:64.485000px;}
.yf7{bottom:66.600000px;}
.y13d{bottom:67.005000px;}
.y1bf{bottom:67.500000px;}
.y151{bottom:67.530000px;}
.y1e5{bottom:67.680000px;}
.ycd{bottom:68.220000px;}
.y228{bottom:68.760000px;}
.ye3{bottom:70.200000px;}
.y64{bottom:70.230000px;}
.y3d{bottom:70.380000px;}
.y203{bottom:70.740000px;}
.y36{bottom:73.470000px;}
.y19b{bottom:73.980000px;}
.y87{bottom:77.940000px;}
.yc5{bottom:79.245000px;}
.y122{bottom:81.720000px;}
.y24f{bottom:82.485000px;}
.y240{bottom:84.090000px;}
.y27a{bottom:84.285000px;}
.y1e4{bottom:86.070000px;}
.yf6{bottom:86.400000px;}
.y13c{bottom:86.805000px;}
.y1be{bottom:87.300000px;}
.y150{bottom:87.330000px;}
.ycc{bottom:88.020000px;}
.y227{bottom:88.560000px;}
.ye2{bottom:90.000000px;}
.y63{bottom:90.030000px;}
.y3c{bottom:90.210000px;}
.y35{bottom:93.270000px;}
.y19a{bottom:93.780000px;}
.y86{bottom:97.740000px;}
.yc4{bottom:99.045000px;}
.y121{bottom:99.720000px;}
.y24e{bottom:102.285000px;}
.y23f{bottom:103.890000px;}
.y279{bottom:104.085000px;}
.y1e3{bottom:105.870000px;}
.yf5{bottom:106.200000px;}
.y13b{bottom:106.605000px;}
.y1bd{bottom:107.100000px;}
.y14f{bottom:107.130000px;}
.y226{bottom:108.405000px;}
.ye1{bottom:109.800000px;}
.y4{bottom:110.160000px;}
.y3b{bottom:110.190000px;}
.y34{bottom:113.070000px;}
.y199{bottom:113.760000px;}
.y85{bottom:117.540000px;}
.y120{bottom:117.720000px;}
.yc3{bottom:118.845000px;}
.y24d{bottom:122.085000px;}
.y23e{bottom:123.690000px;}
.y1e2{bottom:125.670000px;}
.yf4{bottom:126.000000px;}
.y13a{bottom:126.405000px;}
.y14e{bottom:126.930000px;}
.y225{bottom:128.205000px;}
.y1d{bottom:130.860000px;}
.y33{bottom:132.870000px;}
.y198{bottom:133.560000px;}
.y84{bottom:137.340000px;}
.yc2{bottom:138.645000px;}
.y11f{bottom:140.940000px;}
.y24c{bottom:141.885000px;}
.y23d{bottom:143.490000px;}
.y1e1{bottom:145.470000px;}
.yf3{bottom:145.800000px;}
.y139{bottom:146.385000px;}
.y14d{bottom:146.730000px;}
.y224{bottom:148.005000px;}
.y5c{bottom:150.660000px;}
.y201{bottom:150.840000px;}
.y197{bottom:153.360000px;}
.y82{bottom:153.720000px;}
.y11e{bottom:154.080000px;}
.yfc{bottom:154.800000px;}
.y200{bottom:156.060000px;}
.yc1{bottom:158.445000px;}
.y24b{bottom:161.685000px;}
.y18e{bottom:162.540000px;}
.y23c{bottom:163.290000px;}
.y1e0{bottom:165.270000px;}
.yf2{bottom:165.600000px;}
.y14c{bottom:166.530000px;}
.y14a{bottom:167.400000px;}
.y239{bottom:168.300000px;}
.y5b{bottom:168.660000px;}
.y17a{bottom:168.840000px;}
.y277{bottom:169.200000px;}
.ya7{bottom:169.560000px;}
.y1d7{bottom:170.640000px;}
.y196{bottom:173.160000px;}
.y5a{bottom:173.880000px;}
.y32{bottom:174.060000px;}
.y24a{bottom:181.485000px;}
.y18d{bottom:182.370000px;}
.y23b{bottom:183.090000px;}
.y1df{bottom:185.070000px;}
.yf1{bottom:185.580000px;}
.y14b{bottom:186.330000px;}
.y59{bottom:186.690000px;}
.y29c{bottom:187.590000px;}
.y179{bottom:188.670000px;}
.y276{bottom:189.030000px;}
.y81{bottom:189.930000px;}
.y1d6{bottom:190.470000px;}
.ya6{bottom:191.190000px;}
.y195{bottom:193.005000px;}
.y11d{bottom:193.680000px;}
.ybf{bottom:197.670000px;}
.y18c{bottom:202.530000px;}
.y23a{bottom:202.890000px;}
.y58{bottom:204.690000px;}
.y1de{bottom:204.870000px;}
.yf0{bottom:205.380000px;}
.yec{bottom:206.130000px;}
.y1b2{bottom:207.750000px;}
.y178{bottom:208.470000px;}
.y275{bottom:208.830000px;}
.yfd{bottom:209.190000px;}
.y1d5{bottom:210.630000px;}
.ya5{bottom:212.430000px;}
.y29b{bottom:212.610000px;}
.y11c{bottom:213.525000px;}
.y1ff{bottom:218.730000px;}
.ybe{bottom:218.910000px;}
.y21d{bottom:221.430000px;}
.y57{bottom:222.690000px;}
.y80{bottom:224.670000px;}
.yef{bottom:225.225000px;}
.y1b1{bottom:227.910000px;}
.y177{bottom:228.270000px;}
.y274{bottom:228.630000px;}
.y29a{bottom:228.810000px;}
.ya4{bottom:232.230000px;}
.y11b{bottom:233.325000px;}
.y1d4{bottom:238.170000px;}
.y1fe{bottom:238.530000px;}
.ybd{bottom:238.710000px;}
.y56{bottom:240.690000px;}
.y21c{bottom:241.230000px;}
.y7f{bottom:244.470000px;}
.y299{bottom:245.010000px;}
.yee{bottom:245.025000px;}
.y55{bottom:245.910000px;}
.y176{bottom:248.070000px;}
.y273{bottom:248.430000px;}
.ya3{bottom:252.030000px;}
.y11a{bottom:253.125000px;}
.y1fd{bottom:258.330000px;}
.ybc{bottom:258.510000px;}
.y54{bottom:259.590000px;}
.y1c2{bottom:260.130000px;}
.y1dd{bottom:264.270000px;}
.y7e{bottom:264.450000px;}
.yed{bottom:265.005000px;}
.y175{bottom:267.870000px;}
.y272{bottom:268.230000px;}
.ya2{bottom:271.830000px;}
.y21e{bottom:272.190000px;}
.y119{bottom:272.925000px;}
.y1fc{bottom:278.130000px;}
.ybb{bottom:278.310000px;}
.y1d3{bottom:280.470000px;}
.y1dc{bottom:284.070000px;}
.y7d{bottom:284.250000px;}
.y174{bottom:287.670000px;}
.y271{bottom:288.030000px;}
.ya1{bottom:291.990000px;}
.y118{bottom:292.725000px;}
.y298{bottom:296.130000px;}
.y1fb{bottom:297.930000px;}
.yba{bottom:298.110000px;}
.y1d2{bottom:300.270000px;}
.y1db{bottom:303.870000px;}
.y7c{bottom:304.050000px;}
.y270{bottom:307.830000px;}
.y117{bottom:312.525000px;}
.y1fa{bottom:317.730000px;}
.yb9{bottom:317.910000px;}
.ya0{bottom:319.170000px;}
.y1d1{bottom:320.070000px;}
.y173{bottom:322.410000px;}
.y1da{bottom:323.895000px;}
.y14{bottom:331.230000px;}
.y116{bottom:332.325000px;}
.y53{bottom:332.490000px;}
.y26f{bottom:333.930000px;}
.y297{bottom:335.730000px;}
.y1f9{bottom:337.530000px;}
.yb8{bottom:337.710000px;}
.y7b{bottom:338.790000px;}
.y1d0{bottom:339.870000px;}
.y172{bottom:342.210000px;}
.y1d9{bottom:343.695000px;}
.y115{bottom:352.125000px;}
.y1b0{bottom:353.010000px;}
.y26e{bottom:355.530000px;}
.y295{bottom:356.970000px;}
.y1f8{bottom:357.330000px;}
.yb7{bottom:357.510000px;}
.y7a{bottom:358.590000px;}
.y1cf{bottom:359.670000px;}
.y9f{bottom:360.030000px;}
.y171{bottom:362.010000px;}
.y296{bottom:362.910000px;}
.y21b{bottom:365.610000px;}
.y31{bottom:367.050000px;}
.y52{bottom:367.230000px;}
.y114{bottom:371.925000px;}
.y1af{bottom:372.810000px;}
.y294{bottom:376.770000px;}
.y1ce{bottom:379.470000px;}
.y9e{bottom:379.830000px;}
.yb6{bottom:383.610000px;}
.y21a{bottom:386.850000px;}
.y51{bottom:387.030000px;}
.y113{bottom:391.725000px;}
.y1ae{bottom:392.610000px;}
.y79{bottom:393.690000px;}
.y293{bottom:396.570000px;}
.y170{bottom:396.930000px;}
.y26d{bottom:397.830000px;}
.y1cd{bottom:399.270000px;}
.y9d{bottom:399.630000px;}
.y30{bottom:401.970000px;}
.yb5{bottom:405.210000px;}
.y219{bottom:406.650000px;}
.y50{bottom:406.830000px;}
.y144{bottom:408.810000px;}
.y112{bottom:411.525000px;}
.y1ad{bottom:412.410000px;}
.y16f{bottom:416.730000px;}
.y26c{bottom:417.630000px;}
.y1cc{bottom:419.070000px;}
.y9c{bottom:419.430000px;}
.y2f{bottom:421.815000px;}
.y238{bottom:423.615000px;}
.y218{bottom:426.495000px;}
.yb4{bottom:426.855000px;}
.y111{bottom:431.325000px;}
.y292{bottom:431.535000px;}
.y1ac{bottom:432.255000px;}
.y26b{bottom:437.475000px;}
.y1cb{bottom:439.095000px;}
.y9b{bottom:439.275000px;}
.y83{bottom:441.255000px;}
.y2e{bottom:441.615000px;}
.y237{bottom:443.415000px;}
.y217{bottom:446.295000px;}
.y110{bottom:451.125000px;}
.y291{bottom:451.335000px;}
.y1ab{bottom:452.055000px;}
.y16e{bottom:454.395000px;}
.y26a{bottom:457.275000px;}
.y1ca{bottom:459.255000px;}
.y9a{bottom:459.435000px;}
.y2d{bottom:461.415000px;}
.y236{bottom:463.215000px;}
.y13{bottom:463.575000px;}
.y216{bottom:466.095000px;}
.y1f7{bottom:468.975000px;}
.yb3{bottom:469.515000px;}
.y10f{bottom:470.955000px;}
.y290{bottom:471.135000px;}
.y1aa{bottom:471.855000px;}
.y4f{bottom:476.535000px;}
.y269{bottom:477.075000px;}
.y99{bottom:480.675000px;}
.y235{bottom:483.015000px;}
.y12{bottom:484.275000px;}
.y215{bottom:485.895000px;}
.y1c9{bottom:486.795000px;}
.y18f{bottom:489.315000px;}
.y10e{bottom:490.755000px;}
.y28f{bottom:490.935000px;}
.y16d{bottom:491.295000px;}
.y1a9{bottom:491.655000px;}
.y2c{bottom:495.975000px;}
.y268{bottom:496.875000px;}
.y98{bottom:500.475000px;}
.y202{bottom:500.655000px;}
.y234{bottom:502.815000px;}
.ycb{bottom:504.255000px;}
.y11{bottom:504.975000px;}
.y214{bottom:505.695000px;}
.y1c8{bottom:508.395000px;}
.y16c{bottom:510.195000px;}
.y10d{bottom:510.555000px;}
.y28e{bottom:510.735000px;}
.y4d{bottom:511.275000px;}
.y1a8{bottom:511.455000px;}
.y137{bottom:516.135000px;}
.y267{bottom:516.675000px;}
.y4e{bottom:517.215000px;}
.y97{bottom:520.275000px;}
.y233{bottom:522.615000px;}
.y213{bottom:525.495000px;}
.y10{bottom:525.675000px;}
.y16b{bottom:529.095000px;}
.y10c{bottom:530.355000px;}
.y28d{bottom:530.535000px;}
.y4c{bottom:531.075000px;}
.y2b{bottom:531.255000px;}
.y136{bottom:535.035000px;}
.y266{bottom:536.475000px;}
.y96{bottom:540.075000px;}
.y232{bottom:542.415000px;}
.y212{bottom:545.295000px;}
.ydf{bottom:545.475000px;}
.y16a{bottom:547.995000px;}
.yf{bottom:548.535000px;}
.y10b{bottom:550.155000px;}
.y28c{bottom:550.335000px;}
.y1c7{bottom:550.695000px;}
.y4b{bottom:550.875000px;}
.y1a7{bottom:551.055000px;}
.y2a{bottom:552.855000px;}
.y135{bottom:553.935000px;}
.y265{bottom:556.275000px;}
.y231{bottom:562.215000px;}
.y211{bottom:565.095000px;}
.yde{bottom:565.275000px;}
.y169{bottom:566.895000px;}
.y10a{bottom:569.955000px;}
.y28b{bottom:570.135000px;}
.y49{bottom:570.675000px;}
.y1a6{bottom:570.855000px;}
.y134{bottom:572.835000px;}
.y95{bottom:574.815000px;}
.y264{bottom:576.075000px;}
.y4a{bottom:576.615000px;}
.y230{bottom:582.375000px;}
.ye{bottom:584.535000px;}
.y210{bottom:584.895000px;}
.ydd{bottom:585.075000px;}
.y168{bottom:585.795000px;}
.y3a{bottom:587.775000px;}
.y109{bottom:589.755000px;}
.y28a{bottom:589.935000px;}
.y48{bottom:590.475000px;}
.y1a5{bottom:590.655000px;}
.y133{bottom:591.735000px;}
.y1d8{bottom:594.075000px;}
.y263{bottom:595.875000px;}
.y167{bottom:604.695000px;}
.ydc{bottom:604.875000px;}
.y18b{bottom:607.395000px;}
.y108{bottom:609.555000px;}
.y289{bottom:609.735000px;}
.y22f{bottom:609.915000px;}
.y94{bottom:610.095000px;}
.y262{bottom:615.675000px;}
.y1a4{bottom:616.935000px;}
.yd{bottom:618.195000px;}
.y1f6{bottom:619.995000px;}
.y166{bottom:623.595000px;}
.ydb{bottom:624.675000px;}
.y20f{bottom:624.855000px;}
.y47{bottom:625.395000px;}
.y132{bottom:626.115000px;}
.y18a{bottom:627.195000px;}
.y107{bottom:629.355000px;}
.y288{bottom:629.535000px;}
.y22e{bottom:631.515000px;}
.y93{bottom:631.695000px;}
.y261{bottom:635.475000px;}
.y1a3{bottom:638.535000px;}
.yc{bottom:639.795000px;}
.y165{bottom:642.495000px;}
.yb2{bottom:643.215000px;}
.yda{bottom:644.475000px;}
.y20e{bottom:646.095000px;}
.y189{bottom:646.995000px;}
.y106{bottom:649.155000px;}
.y287{bottom:649.335000px;}
.y22d{bottom:653.115000px;}
.y260{bottom:655.275000px;}
.y62{bottom:659.235000px;}
.y1f5{bottom:659.595000px;}
.y1a2{bottom:660.135000px;}
.y164{bottom:661.395000px;}
.y131{bottom:662.475000px;}
.yb1{bottom:663.045000px;}
.y78{bottom:663.765000px;}
.yd9{bottom:664.305000px;}
.y92{bottom:664.485000px;}
.y20d{bottom:665.925000px;}
.y188{bottom:666.825000px;}
.y105{bottom:668.955000px;}
.y286{bottom:669.165000px;}
.yb{bottom:674.745000px;}
.y25f{bottom:675.105000px;}
.y1f4{bottom:679.425000px;}
.y163{bottom:680.325000px;}
.y130{bottom:682.305000px;}
.yb0{bottom:682.845000px;}
.y77{bottom:683.565000px;}
.yd8{bottom:684.105000px;}
.y20c{bottom:686.085000px;}
.y187{bottom:686.985000px;}
.y104{bottom:688.755000px;}
.y285{bottom:688.965000px;}
.y25e{bottom:694.905000px;}
.y162{bottom:699.225000px;}
.y12f{bottom:702.105000px;}
.y1a1{bottom:702.465000px;}
.yaf{bottom:702.645000px;}
.y76{bottom:703.365000px;}
.yd7{bottom:703.905000px;}
.y186{bottom:708.225000px;}
.y103{bottom:708.600000px;}
.y284{bottom:708.765000px;}
.y20b{bottom:713.805000px;}
.y25d{bottom:714.705000px;}
.y161{bottom:718.125000px;}
.y1f3{bottom:719.025000px;}
.yae{bottom:722.445000px;}
.yd6{bottom:724.065000px;}
.y185{bottom:728.025000px;}
.y283{bottom:728.565000px;}
.y102{bottom:728.580000px;}
.y246{bottom:729.105000px;}
.y25c{bottom:734.505000px;}
.y20a{bottom:735.405000px;}
.y1bc{bottom:735.585000px;}
.y12e{bottom:736.845000px;}
.y160{bottom:737.025000px;}
.y75{bottom:738.105000px;}
.y1f2{bottom:738.825000px;}
.ya{bottom:739.545000px;}
.yad{bottom:742.245000px;}
.y29{bottom:745.305000px;}
.y184{bottom:747.825000px;}
.y282{bottom:748.365000px;}
.y101{bottom:748.380000px;}
.yd5{bottom:751.605000px;}
.y25b{bottom:754.305000px;}
.y15f{bottom:755.925000px;}
.y12d{bottom:756.645000px;}
.y74{bottom:757.905000px;}
.y1f1{bottom:758.625000px;}
.yac{bottom:762.045000px;}
.y28{bottom:765.105000px;}
.y183{bottom:767.625000px;}
.y281{bottom:768.165000px;}
.y100{bottom:768.180000px;}
.yd4{bottom:773.205000px;}
.y25a{bottom:774.105000px;}
.y15e{bottom:774.825000px;}
.y12c{bottom:777.165000px;}
.y209{bottom:777.885000px;}
.y1ef{bottom:778.425000px;}
.yab{bottom:781.845000px;}
.y1f0{bottom:784.365000px;}
.y27{bottom:784.905000px;}
.y182{bottom:787.425000px;}
.y280{bottom:787.965000px;}
.yff{bottom:787.980000px;}
.y73{bottom:792.825000px;}
.y15d{bottom:793.725000px;}
.y259{bottom:794.265000px;}
.y1ee{bottom:798.225000px;}
.yaa{bottom:801.645000px;}
.y9{bottom:804.525000px;}
.y26{bottom:804.705000px;}
.y181{bottom:807.225000px;}
.y27f{bottom:807.765000px;}
.yfe{bottom:807.780000px;}
.y72{bottom:812.625000px;}
.y223{bottom:814.425000px;}
.y258{bottom:815.505000px;}
.y12b{bottom:815.685000px;}
.yd3{bottom:815.865000px;}
.y1ed{bottom:818.025000px;}
.ya9{bottom:821.445000px;}
.y25{bottom:824.505000px;}
.y180{bottom:827.025000px;}
.y46{bottom:830.625000px;}
.y15c{bottom:831.525000px;}
.y71{bottom:832.425000px;}
.y257{bottom:835.305000px;}
.y1ec{bottom:837.825000px;}
.ya8{bottom:841.245000px;}
.y27e{bottom:842.505000px;}
.y24{bottom:844.305000px;}
.y17f{bottom:846.825000px;}
.ye8{bottom:847.005000px;}
.y45{bottom:850.425000px;}
.y138{bottom:851.325000px;}
.y70{bottom:852.225000px;}
.y249{bottom:854.385000px;}
.y256{bottom:855.105000px;}
.y1eb{bottom:857.625000px;}
.y23{bottom:864.105000px;}
.y17e{bottom:866.625000px;}
.y8{bottom:869.325000px;}
.y44{bottom:870.225000px;}
.y6f{bottom:872.025000px;}
.yc0{bottom:877.425000px;}
.y1a0{bottom:880.305000px;}
.y22{bottom:883.905000px;}
.y17d{bottom:886.785000px;}
.y278{bottom:888.225000px;}
.y15b{bottom:888.405000px;}
.y1ea{bottom:897.225000px;}
.y91{bottom:902.085000px;}
.y21{bottom:903.705000px;}
.y43{bottom:905.145000px;}
.y6e{bottom:906.810000px;}
.y15a{bottom:907.350000px;}
.y1b7{bottom:910.950000px;}
.yd2{bottom:911.310000px;}
.y17c{bottom:914.370000px;}
.y1e9{bottom:917.070000px;}
.y90{bottom:921.930000px;}
.ye0{bottom:928.950000px;}
.y7{bottom:932.010000px;}
.y5d{bottom:936.870000px;}
.y6d{bottom:941.730000px;}
.y20{bottom:942.990000px;}
.y159{bottom:944.250000px;}
.y17b{bottom:956.670000px;}
.y8f{bottom:961.530000px;}
.y158{bottom:963.150000px;}
.y6c{bottom:976.470000px;}
.y6{bottom:979.890000px;}
.y8e{bottom:981.330000px;}
.y157{bottom:982.050000px;}
.y1f{bottom:989.610000px;}
.y6b{bottom:996.270000px;}
.y8d{bottom:1001.130000px;}
.y208{bottom:1014.630000px;}
.y6a{bottom:1016.070000px;}
.y1b3{bottom:1018.050000px;}
.y156{bottom:1019.310000px;}
.y8c{bottom:1020.930000px;}
.y5{bottom:1030.290000px;}
.y69{bottom:1035.870000px;}
.y1e{bottom:1036.230000px;}
.y255{bottom:1054.230000px;}
.y42{bottom:1055.670000px;}
.y3{bottom:1076.010000px;}
.h33{height:27.147656px;}
.h1a{height:33.697266px;}
.h14{height:35.057461px;}
.h19{height:36.393047px;}
.hc{height:37.705078px;}
.h2e{height:39.600000px;}
.h22{height:41.220000px;}
.h3{height:50.273438px;}
.hb{height:50.545898px;}
.h29{height:54.975938px;}
.h15{height:55.937461px;}
.h12{height:57.474844px;}
.h2a{height:57.949147px;}
.h25{height:59.307187px;}
.h35{height:60.300000px;}
.h2f{height:60.480000px;}
.h31{height:61.380000px;}
.he{height:62.002969px;}
.h10{height:62.472656px;}
.h18{height:65.356214px;}
.h7{height:67.394531px;}
.h1e{height:70.594102px;}
.h16{height:71.200898px;}
.h2b{height:76.155820px;}
.ha{height:76.320000px;}
.h2c{height:78.120000px;}
.h27{height:78.516000px;}
.h38{height:80.280000px;}
.h1b{height:84.780000px;}
.hd{height:85.860000px;}
.h34{height:87.120000px;}
.h2{height:91.980000px;}
.h11{height:93.708984px;}
.h20{height:104.400000px;}
.h8{height:112.548867px;}
.h5{height:117.137109px;}
.h3a{height:120.456000px;}
.h1c{height:121.356000px;}
.h30{height:123.480000px;}
.h21{height:126.180000px;}
.h17{height:126.576000px;}
.hf{height:134.789062px;}
.h4{height:157.029258px;}
.h26{height:162.750000px;}
.h13{height:164.190000px;}
.h36{height:164.370000px;}
.h1d{height:168.660000px;}
.h1f{height:174.810000px;}
.h39{height:197.850000px;}
.h6{height:202.183594px;}
.h28{height:202.710000px;}
.h2d{height:209.370000px;}
.h37{height:219.270000px;}
.h23{height:281.370000px;}
.h32{height:370.695000px;}
.h9{height:404.367188px;}
.h24{height:824.145000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:661.425000px;}
.we{width:661.605000px;}
.w1b{width:667.905000px;}
.w11{width:668.445000px;}
.wf{width:668.625000px;}
.w13{width:668.805000px;}
.w1c{width:669.345000px;}
.w9{width:670.785000px;}
.wa{width:671.325000px;}
.w5{width:671.865000px;}
.w10{width:672.045000px;}
.wc{width:674.385000px;}
.w1d{width:674.745000px;}
.w8{width:674.925000px;}
.w6{width:675.105000px;}
.w16{width:675.285000px;}
.wb{width:676.725000px;}
.w19{width:677.625000px;}
.w7{width:678.525000px;}
.w17{width:678.885000px;}
.w1a{width:679.425000px;}
.w15{width:680.865000px;}
.w12{width:681.045000px;}
.wd{width:681.585000px;}
.w14{width:681.765000px;}
.w18{width:694.185000px;}
.w2{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:10.259973px;}
.x22{left:37.794000px;}
.x23{left:64.794000px;}
.x2b{left:99.036000px;}
.x2c{left:103.356000px;}
.x2a{left:104.436000px;}
.x1f{left:106.056000px;}
.x2{left:108.035987px;}
.x12{left:110.196000px;}
.x1d{left:111.636000px;}
.x1a{left:112.715987px;}
.x21{left:116.136000px;}
.xe{left:117.755973px;}
.x9{left:128.916000px;}
.x4{left:131.255987px;}
.x11{left:135.035987px;}
.x6{left:152.489987px;}
.x28{left:158.429973px;}
.x18{left:162.029987px;}
.x29{left:163.649987px;}
.x10{left:189.389987px;}
.xc{left:205.419000px;}
.x8{left:216.929987px;}
.xa{left:221.259000px;}
.xf{left:229.529987px;}
.x5{left:243.569987px;}
.x25{left:254.009987px;}
.xb{left:260.139000px;}
.x16{left:265.529973px;}
.x17{left:270.569987px;}
.x19{left:324.074987px;}
.xd{left:330.699000px;}
.x24{left:334.329000px;}
.x13{left:335.919000px;}
.x1c{left:337.359000px;}
.x1b{left:339.159000px;}
.x20{left:340.779000px;}
.x7{left:342.434987px;}
.x3{left:446.474987px;}
.x26{left:504.464987px;}
.x27{left:508.604987px;}
.x2d{left:584.744973px;}
.x2e{left:590.324987px;}
.x14{left:686.489973px;}
.x15{left:689.729987px;}
.x1e{left:784.589987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-1.002667pt;}
.ls27{letter-spacing:-0.565333pt;}
.lsb{letter-spacing:-0.501867pt;}
.lsd{letter-spacing:-0.406933pt;}
.ls36{letter-spacing:-0.274133pt;}
.ls3e{letter-spacing:-0.222933pt;}
.lse{letter-spacing:-0.199467pt;}
.ls2b{letter-spacing:-0.194667pt;}
.ls26{letter-spacing:-0.107733pt;}
.ls37{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls25{letter-spacing:-0.030720pt;}
.ls6{letter-spacing:-0.010240pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.035840pt;}
.ls1a{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.074133pt;}
.ls20{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101867pt;}
.ls2d{letter-spacing:0.117867pt;}
.ls38{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.130560pt;}
.ls4{letter-spacing:0.138133pt;}
.ls21{letter-spacing:0.155520pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.161067pt;}
.ls35{letter-spacing:0.175360pt;}
.ls32{letter-spacing:0.181760pt;}
.ls2c{letter-spacing:0.199467pt;}
.ls29{letter-spacing:0.209920pt;}
.ls16{letter-spacing:0.212267pt;}
.ls8{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.233067pt;}
.lsa{letter-spacing:0.244267pt;}
.ls28{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.263467pt;}
.ls2f{letter-spacing:0.277760pt;}
.ls10{letter-spacing:0.278933pt;}
.ls22{letter-spacing:0.439040pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls18{letter-spacing:1.408000pt;}
.ls39{letter-spacing:2.048000pt;}
.ls3a{letter-spacing:2.688000pt;}
.ls3{letter-spacing:3.361280pt;}
.ls3c{letter-spacing:7.841280pt;}
.ls31{letter-spacing:13.440000pt;}
.ls24{letter-spacing:13.568000pt;}
.ls34{letter-spacing:16.161280pt;}
.ls14{letter-spacing:20.001280pt;}
.ls15{letter-spacing:20.111360pt;}
.ls23{letter-spacing:27.791360pt;}
.ls13{letter-spacing:28.431360pt;}
.ls2a{letter-spacing:30.351360pt;}
.ls3d{letter-spacing:32.890027pt;}
.ls12{letter-spacing:35.471360pt;}
.lsf{letter-spacing:36.090027pt;}
.ls2{letter-spacing:46.970027pt;}
.ls3b{letter-spacing:49.232640pt;}
.ls1c{letter-spacing:52.751360pt;}
.lsc{letter-spacing:56.891307pt;}
.ls1f{letter-spacing:56.912640pt;}
.ls33{letter-spacing:73.761280pt;}
.ls2e{letter-spacing:176.139947pt;}
.ws14{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-51.648000pt;}
.ws5{word-spacing:-34.432000pt;}
.ws12{word-spacing:-17.216000pt;}
.wse{word-spacing:-16.117653pt;}
.ws1b{word-spacing:-16.102187pt;}
.ws4{word-spacing:-16.071787pt;}
.ws10{word-spacing:-16.050987pt;}
.ws13{word-spacing:-15.999787pt;}
.ws2{word-spacing:-15.976853pt;}
.ws1a{word-spacing:-15.956587pt;}
.ws11{word-spacing:-15.874560pt;}
.ws3{word-spacing:-15.838720pt;}
.ws6{word-spacing:-15.828480pt;}
.ws16{word-spacing:-15.808000pt;}
.wsf{word-spacing:-15.780053pt;}
.wsd{word-spacing:-15.639253pt;}
.ws1e{word-spacing:-15.615787pt;}
.ws1c{word-spacing:-15.564587pt;}
.wsb{word-spacing:-15.431787pt;}
.ws19{word-spacing:-15.349547pt;}
.wsa{word-spacing:-15.336853pt;}
.ws18{word-spacing:-15.150080pt;}
.ws17{word-spacing:-15.042347pt;}
.ws9{word-spacing:-14.533547pt;}
.ws8{word-spacing:-14.289280pt;}
.ws1d{word-spacing:-14.192213pt;}
.ws7{word-spacing:-9.296640pt;}
.ws15{word-spacing:-8.608000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-10.944000pt;}
._3{margin-left:-6.144000pt;}
._4{margin-left:-4.416000pt;}
._2{margin-left:-3.456000pt;}
._1{margin-left:-2.496000pt;}
._5{margin-left:-1.536000pt;}
._b{width:0.912000pt;}
._e{width:1.824000pt;}
._7{width:2.885760pt;}
._6{width:3.847680pt;}
._9{width:4.809600pt;}
._8{width:6.468267pt;}
._15{width:7.604053pt;}
._25{width:8.993493pt;}
._1e{width:10.127360pt;}
._19{width:11.128320pt;}
._18{width:12.070400pt;}
._12{width:13.170560pt;}
._11{width:14.743040pt;}
._2c{width:15.664427pt;}
._1a{width:16.844800pt;}
._26{width:18.606080pt;}
._20{width:19.862400pt;}
._1f{width:21.171200pt;}
._10{width:22.133760pt;}
._f{width:23.203840pt;}
._16{width:24.793600pt;}
._17{width:26.422613pt;}
._2a{width:28.092373pt;}
._1d{width:29.754027pt;}
._13{width:30.970880pt;}
._14{width:32.266667pt;}
._22{width:33.807360pt;}
._21{width:35.274240pt;}
._32{width:36.428800pt;}
._27{width:37.683200pt;}
._28{width:38.863147pt;}
._1b{width:40.040960pt;}
._1c{width:40.984320pt;}
._29{width:42.083200pt;}
._3e{width:43.755093pt;}
._3d{width:45.043200pt;}
._3f{width:47.162880pt;}
._2d{width:49.773440pt;}
._30{width:50.871467pt;}
._2b{width:52.055040pt;}
._35{width:53.411840pt;}
._3a{width:55.201067pt;}
._33{width:56.320000pt;}
._34{width:57.496960pt;}
._38{width:58.885120pt;}
._23{width:68.536320pt;}
._24{width:69.601280pt;}
._31{width:70.898347pt;}
._2e{width:72.473600pt;}
._2f{width:73.495040pt;}
._39{width:74.484267pt;}
._40{width:105.728000pt;}
._c{width:107.830400pt;}
._36{width:110.579200pt;}
._37{width:111.582720pt;}
._3c{width:153.472000pt;}
._3b{width:154.400000pt;}
._d{width:176.161280pt;}
._a{width:752.138667pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs9{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fsd{font-size:53.120000pt;}
.fs10{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs11{font-size:59.365899pt;}
.fse{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.fs2{font-size:192.000000pt;}
.fs5{font-size:384.000000pt;}
.y143{bottom:-66.560000pt;}
.y12a{bottom:-64.346667pt;}
.y142{bottom:-46.080000pt;}
.y1a{bottom:-45.280000pt;}
.y129{bottom:-43.866667pt;}
.y141{bottom:-28.480000pt;}
.y19{bottom:-27.840000pt;}
.y128{bottom:-26.240000pt;}
.y68{bottom:-24.320000pt;}
.y61{bottom:-21.600000pt;}
.yca{bottom:-20.640000pt;}
.y19f{bottom:-20.320000pt;}
.y194{bottom:-18.400000pt;}
.y149{bottom:-18.080000pt;}
.y254{bottom:-17.600000pt;}
.y1b6{bottom:-17.440000pt;}
.y8b{bottom:-17.280000pt;}
.y222{bottom:-16.640000pt;}
.y1bb{bottom:-16.520000pt;}
.y248{bottom:-16.480000pt;}
.y245{bottom:-16.160000pt;}
.yeb{bottom:-16.000000pt;}
.y1c6{bottom:-15.680000pt;}
.yfb{bottom:-14.080000pt;}
.y39{bottom:-13.920000pt;}
.y155{bottom:-13.280000pt;}
.y18{bottom:-13.120000pt;}
.yd1{bottom:-12.640000pt;}
.y22c{bottom:-12.160000pt;}
.ye7{bottom:-10.880000pt;}
.y207{bottom:-10.400000pt;}
.y127{bottom:-8.640000pt;}
.y41{bottom:-7.840000pt;}
.yc9{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.279947pt;}
.y193{bottom:2.080000pt;}
.y148{bottom:2.400000pt;}
.y253{bottom:2.880000pt;}
.y1b5{bottom:3.040000pt;}
.y221{bottom:3.840000pt;}
.y1ba{bottom:4.000000pt;}
.y17{bottom:4.160000pt;}
.y244{bottom:4.320000pt;}
.yea{bottom:4.480000pt;}
.y1c5{bottom:4.800000pt;}
.yfa{bottom:6.400000pt;}
.y140{bottom:6.720000pt;}
.y154{bottom:7.200000pt;}
.y1b{bottom:7.679867pt;}
.yd0{bottom:7.840000pt;}
.y22b{bottom:8.320000pt;}
.y126{bottom:8.640000pt;}
.ye6{bottom:9.600000pt;}
.y67{bottom:9.626667pt;}
.y40{bottom:9.760000pt;}
.y206{bottom:10.080000pt;}
.y1e8{bottom:12.160000pt;}
.y60{bottom:12.320000pt;}
.y19e{bottom:15.840000pt;}
.y8a{bottom:16.480000pt;}
.yc8{bottom:17.440000pt;}
.y16{bottom:18.560000pt;}
.y38{bottom:19.546667pt;}
.y192{bottom:19.680000pt;}
.y147{bottom:20.040000pt;}
.y252{bottom:20.480000pt;}
.y1b4{bottom:20.640000pt;}
.y220{bottom:21.440000pt;}
.y1b9{bottom:21.600000pt;}
.y243{bottom:21.946667pt;}
.ye9{bottom:22.080000pt;}
.y27d{bottom:22.120000pt;}
.y1c4{bottom:22.400000pt;}
.yf9{bottom:24.000000pt;}
.y13f{bottom:24.320000pt;}
.y125{bottom:24.640000pt;}
.y1c1{bottom:24.800000pt;}
.y153{bottom:24.826667pt;}
.ycf{bottom:25.440000pt;}
.y22a{bottom:25.920000pt;}
.ye5{bottom:27.200000pt;}
.y66{bottom:27.226667pt;}
.y3f{bottom:27.360000pt;}
.y205{bottom:27.680000pt;}
.y1e7{bottom:28.160000pt;}
.y5f{bottom:29.920000pt;}
.y1c{bottom:32.320133pt;}
.y89{bottom:34.080000pt;}
.yc7{bottom:35.080000pt;}
.y2{bottom:35.200053pt;}
.y19d{bottom:36.480000pt;}
.y191{bottom:37.280000pt;}
.y146{bottom:37.640000pt;}
.y251{bottom:38.080000pt;}
.y21f{bottom:39.040000pt;}
.y1b8{bottom:39.200000pt;}
.y242{bottom:39.546667pt;}
.y27c{bottom:39.720000pt;}
.y1c3{bottom:40.000000pt;}
.y37{bottom:40.186667pt;}
.y124{bottom:40.640000pt;}
.y15{bottom:41.280000pt;}
.yf8{bottom:41.600000pt;}
.y13e{bottom:41.920000pt;}
.y1c0{bottom:42.400000pt;}
.y152{bottom:42.426667pt;}
.yce{bottom:43.040000pt;}
.y229{bottom:43.520000pt;}
.ye4{bottom:44.800000pt;}
.y65{bottom:44.826667pt;}
.y3e{bottom:44.960000pt;}
.y204{bottom:45.280000pt;}
.y5e{bottom:47.520000pt;}
.y19c{bottom:48.160000pt;}
.y1e6{bottom:48.800000pt;}
.y88{bottom:51.680000pt;}
.yc6{bottom:52.680000pt;}
.y190{bottom:54.880000pt;}
.y145{bottom:55.240000pt;}
.y250{bottom:55.720000pt;}
.y123{bottom:56.640000pt;}
.y247{bottom:56.800000pt;}
.y241{bottom:57.146667pt;}
.y27b{bottom:57.320000pt;}
.yf7{bottom:59.200000pt;}
.y13d{bottom:59.560000pt;}
.y1bf{bottom:60.000000pt;}
.y151{bottom:60.026667pt;}
.y1e5{bottom:60.160000pt;}
.ycd{bottom:60.640000pt;}
.y228{bottom:61.120000pt;}
.ye3{bottom:62.400000pt;}
.y64{bottom:62.426667pt;}
.y3d{bottom:62.560000pt;}
.y203{bottom:62.880000pt;}
.y36{bottom:65.306667pt;}
.y19b{bottom:65.760000pt;}
.y87{bottom:69.280000pt;}
.yc5{bottom:70.440000pt;}
.y122{bottom:72.640000pt;}
.y24f{bottom:73.320000pt;}
.y240{bottom:74.746667pt;}
.y27a{bottom:74.920000pt;}
.y1e4{bottom:76.506667pt;}
.yf6{bottom:76.800000pt;}
.y13c{bottom:77.160000pt;}
.y1be{bottom:77.600000pt;}
.y150{bottom:77.626667pt;}
.ycc{bottom:78.240000pt;}
.y227{bottom:78.720000pt;}
.ye2{bottom:80.000000pt;}
.y63{bottom:80.026667pt;}
.y3c{bottom:80.186667pt;}
.y35{bottom:82.906667pt;}
.y19a{bottom:83.360000pt;}
.y86{bottom:86.880000pt;}
.yc4{bottom:88.040000pt;}
.y121{bottom:88.640000pt;}
.y24e{bottom:90.920000pt;}
.y23f{bottom:92.346667pt;}
.y279{bottom:92.520000pt;}
.y1e3{bottom:94.106667pt;}
.yf5{bottom:94.400000pt;}
.y13b{bottom:94.760000pt;}
.y1bd{bottom:95.200000pt;}
.y14f{bottom:95.226667pt;}
.y226{bottom:96.360000pt;}
.ye1{bottom:97.600000pt;}
.y4{bottom:97.920000pt;}
.y3b{bottom:97.946667pt;}
.y34{bottom:100.506667pt;}
.y199{bottom:101.120000pt;}
.y85{bottom:104.480000pt;}
.y120{bottom:104.640000pt;}
.yc3{bottom:105.640000pt;}
.y24d{bottom:108.520000pt;}
.y23e{bottom:109.946667pt;}
.y1e2{bottom:111.706667pt;}
.yf4{bottom:112.000000pt;}
.y13a{bottom:112.360000pt;}
.y14e{bottom:112.826667pt;}
.y225{bottom:113.960000pt;}
.y1d{bottom:116.320000pt;}
.y33{bottom:118.106667pt;}
.y198{bottom:118.720000pt;}
.y84{bottom:122.080000pt;}
.yc2{bottom:123.240000pt;}
.y11f{bottom:125.280000pt;}
.y24c{bottom:126.120000pt;}
.y23d{bottom:127.546667pt;}
.y1e1{bottom:129.306667pt;}
.yf3{bottom:129.600000pt;}
.y139{bottom:130.120000pt;}
.y14d{bottom:130.426667pt;}
.y224{bottom:131.560000pt;}
.y5c{bottom:133.920000pt;}
.y201{bottom:134.080000pt;}
.y197{bottom:136.320000pt;}
.y82{bottom:136.640000pt;}
.y11e{bottom:136.960000pt;}
.yfc{bottom:137.600000pt;}
.y200{bottom:138.720000pt;}
.yc1{bottom:140.840000pt;}
.y24b{bottom:143.720000pt;}
.y18e{bottom:144.480000pt;}
.y23c{bottom:145.146667pt;}
.y1e0{bottom:146.906667pt;}
.yf2{bottom:147.200000pt;}
.y14c{bottom:148.026667pt;}
.y14a{bottom:148.800000pt;}
.y239{bottom:149.600000pt;}
.y5b{bottom:149.920000pt;}
.y17a{bottom:150.080000pt;}
.y277{bottom:150.400000pt;}
.ya7{bottom:150.720000pt;}
.y1d7{bottom:151.680000pt;}
.y196{bottom:153.920000pt;}
.y5a{bottom:154.560000pt;}
.y32{bottom:154.720000pt;}
.y24a{bottom:161.320000pt;}
.y18d{bottom:162.106667pt;}
.y23b{bottom:162.746667pt;}
.y1df{bottom:164.506667pt;}
.yf1{bottom:164.960000pt;}
.y14b{bottom:165.626667pt;}
.y59{bottom:165.946667pt;}
.y29c{bottom:166.746667pt;}
.y179{bottom:167.706667pt;}
.y276{bottom:168.026667pt;}
.y81{bottom:168.826667pt;}
.y1d6{bottom:169.306667pt;}
.ya6{bottom:169.946667pt;}
.y195{bottom:171.560000pt;}
.y11d{bottom:172.160000pt;}
.ybf{bottom:175.706667pt;}
.y18c{bottom:180.026667pt;}
.y23a{bottom:180.346667pt;}
.y58{bottom:181.946667pt;}
.y1de{bottom:182.106667pt;}
.yf0{bottom:182.560000pt;}
.yec{bottom:183.226667pt;}
.y1b2{bottom:184.666667pt;}
.y178{bottom:185.306667pt;}
.y275{bottom:185.626667pt;}
.yfd{bottom:185.946667pt;}
.y1d5{bottom:187.226667pt;}
.ya5{bottom:188.826667pt;}
.y29b{bottom:188.986667pt;}
.y11c{bottom:189.800000pt;}
.y1ff{bottom:194.426667pt;}
.ybe{bottom:194.586667pt;}
.y21d{bottom:196.826667pt;}
.y57{bottom:197.946667pt;}
.y80{bottom:199.706667pt;}
.yef{bottom:200.200000pt;}
.y1b1{bottom:202.586667pt;}
.y177{bottom:202.906667pt;}
.y274{bottom:203.226667pt;}
.y29a{bottom:203.386667pt;}
.ya4{bottom:206.426667pt;}
.y11b{bottom:207.400000pt;}
.y1d4{bottom:211.706667pt;}
.y1fe{bottom:212.026667pt;}
.ybd{bottom:212.186667pt;}
.y56{bottom:213.946667pt;}
.y21c{bottom:214.426667pt;}
.y7f{bottom:217.306667pt;}
.y299{bottom:217.786667pt;}
.yee{bottom:217.800000pt;}
.y55{bottom:218.586667pt;}
.y176{bottom:220.506667pt;}
.y273{bottom:220.826667pt;}
.ya3{bottom:224.026667pt;}
.y11a{bottom:225.000000pt;}
.y1fd{bottom:229.626667pt;}
.ybc{bottom:229.786667pt;}
.y54{bottom:230.746667pt;}
.y1c2{bottom:231.226667pt;}
.y1dd{bottom:234.906667pt;}
.y7e{bottom:235.066667pt;}
.yed{bottom:235.560000pt;}
.y175{bottom:238.106667pt;}
.y272{bottom:238.426667pt;}
.ya2{bottom:241.626667pt;}
.y21e{bottom:241.946667pt;}
.y119{bottom:242.600000pt;}
.y1fc{bottom:247.226667pt;}
.ybb{bottom:247.386667pt;}
.y1d3{bottom:249.306667pt;}
.y1dc{bottom:252.506667pt;}
.y7d{bottom:252.666667pt;}
.y174{bottom:255.706667pt;}
.y271{bottom:256.026667pt;}
.ya1{bottom:259.546667pt;}
.y118{bottom:260.200000pt;}
.y298{bottom:263.226667pt;}
.y1fb{bottom:264.826667pt;}
.yba{bottom:264.986667pt;}
.y1d2{bottom:266.906667pt;}
.y1db{bottom:270.106667pt;}
.y7c{bottom:270.266667pt;}
.y270{bottom:273.626667pt;}
.y117{bottom:277.800000pt;}
.y1fa{bottom:282.426667pt;}
.yb9{bottom:282.586667pt;}
.ya0{bottom:283.706667pt;}
.y1d1{bottom:284.506667pt;}
.y173{bottom:286.586667pt;}
.y1da{bottom:287.906667pt;}
.y14{bottom:294.426667pt;}
.y116{bottom:295.400000pt;}
.y53{bottom:295.546667pt;}
.y26f{bottom:296.826667pt;}
.y297{bottom:298.426667pt;}
.y1f9{bottom:300.026667pt;}
.yb8{bottom:300.186667pt;}
.y7b{bottom:301.146667pt;}
.y1d0{bottom:302.106667pt;}
.y172{bottom:304.186667pt;}
.y1d9{bottom:305.506667pt;}
.y115{bottom:313.000000pt;}
.y1b0{bottom:313.786667pt;}
.y26e{bottom:316.026667pt;}
.y295{bottom:317.306667pt;}
.y1f8{bottom:317.626667pt;}
.yb7{bottom:317.786667pt;}
.y7a{bottom:318.746667pt;}
.y1cf{bottom:319.706667pt;}
.y9f{bottom:320.026667pt;}
.y171{bottom:321.786667pt;}
.y296{bottom:322.586667pt;}
.y21b{bottom:324.986667pt;}
.y31{bottom:326.266667pt;}
.y52{bottom:326.426667pt;}
.y114{bottom:330.600000pt;}
.y1af{bottom:331.386667pt;}
.y294{bottom:334.906667pt;}
.y1ce{bottom:337.306667pt;}
.y9e{bottom:337.626667pt;}
.yb6{bottom:340.986667pt;}
.y21a{bottom:343.866667pt;}
.y51{bottom:344.026667pt;}
.y113{bottom:348.200000pt;}
.y1ae{bottom:348.986667pt;}
.y79{bottom:349.946667pt;}
.y293{bottom:352.506667pt;}
.y170{bottom:352.826667pt;}
.y26d{bottom:353.626667pt;}
.y1cd{bottom:354.906667pt;}
.y9d{bottom:355.226667pt;}
.y30{bottom:357.306667pt;}
.yb5{bottom:360.186667pt;}
.y219{bottom:361.466667pt;}
.y50{bottom:361.626667pt;}
.y144{bottom:363.386667pt;}
.y112{bottom:365.800000pt;}
.y1ad{bottom:366.586667pt;}
.y16f{bottom:370.426667pt;}
.y26c{bottom:371.226667pt;}
.y1cc{bottom:372.506667pt;}
.y9c{bottom:372.826667pt;}
.y2f{bottom:374.946667pt;}
.y238{bottom:376.546667pt;}
.y218{bottom:379.106667pt;}
.yb4{bottom:379.426667pt;}
.y111{bottom:383.400000pt;}
.y292{bottom:383.586667pt;}
.y1ac{bottom:384.226667pt;}
.y26b{bottom:388.866667pt;}
.y1cb{bottom:390.306667pt;}
.y9b{bottom:390.466667pt;}
.y83{bottom:392.226667pt;}
.y2e{bottom:392.546667pt;}
.y237{bottom:394.146667pt;}
.y217{bottom:396.706667pt;}
.y110{bottom:401.000000pt;}
.y291{bottom:401.186667pt;}
.y1ab{bottom:401.826667pt;}
.y16e{bottom:403.906667pt;}
.y26a{bottom:406.466667pt;}
.y1ca{bottom:408.226667pt;}
.y9a{bottom:408.386667pt;}
.y2d{bottom:410.146667pt;}
.y236{bottom:411.746667pt;}
.y13{bottom:412.066667pt;}
.y216{bottom:414.306667pt;}
.y1f7{bottom:416.866667pt;}
.yb3{bottom:417.346667pt;}
.y10f{bottom:418.626667pt;}
.y290{bottom:418.786667pt;}
.y1aa{bottom:419.426667pt;}
.y4f{bottom:423.586667pt;}
.y269{bottom:424.066667pt;}
.y99{bottom:427.266667pt;}
.y235{bottom:429.346667pt;}
.y12{bottom:430.466667pt;}
.y215{bottom:431.906667pt;}
.y1c9{bottom:432.706667pt;}
.y18f{bottom:434.946667pt;}
.y10e{bottom:436.226667pt;}
.y28f{bottom:436.386667pt;}
.y16d{bottom:436.706667pt;}
.y1a9{bottom:437.026667pt;}
.y2c{bottom:440.866667pt;}
.y268{bottom:441.666667pt;}
.y98{bottom:444.866667pt;}
.y202{bottom:445.026667pt;}
.y234{bottom:446.946667pt;}
.ycb{bottom:448.226667pt;}
.y11{bottom:448.866667pt;}
.y214{bottom:449.506667pt;}
.y1c8{bottom:451.906667pt;}
.y16c{bottom:453.506667pt;}
.y10d{bottom:453.826667pt;}
.y28e{bottom:453.986667pt;}
.y4d{bottom:454.466667pt;}
.y1a8{bottom:454.626667pt;}
.y137{bottom:458.786667pt;}
.y267{bottom:459.266667pt;}
.y4e{bottom:459.746667pt;}
.y97{bottom:462.466667pt;}
.y233{bottom:464.546667pt;}
.y213{bottom:467.106667pt;}
.y10{bottom:467.266667pt;}
.y16b{bottom:470.306667pt;}
.y10c{bottom:471.426667pt;}
.y28d{bottom:471.586667pt;}
.y4c{bottom:472.066667pt;}
.y2b{bottom:472.226667pt;}
.y136{bottom:475.586667pt;}
.y266{bottom:476.866667pt;}
.y96{bottom:480.066667pt;}
.y232{bottom:482.146667pt;}
.y212{bottom:484.706667pt;}
.ydf{bottom:484.866667pt;}
.y16a{bottom:487.106667pt;}
.yf{bottom:487.586667pt;}
.y10b{bottom:489.026667pt;}
.y28c{bottom:489.186667pt;}
.y1c7{bottom:489.506667pt;}
.y4b{bottom:489.666667pt;}
.y1a7{bottom:489.826667pt;}
.y2a{bottom:491.426667pt;}
.y135{bottom:492.386667pt;}
.y265{bottom:494.466667pt;}
.y231{bottom:499.746667pt;}
.y211{bottom:502.306667pt;}
.yde{bottom:502.466667pt;}
.y169{bottom:503.906667pt;}
.y10a{bottom:506.626667pt;}
.y28b{bottom:506.786667pt;}
.y49{bottom:507.266667pt;}
.y1a6{bottom:507.426667pt;}
.y134{bottom:509.186667pt;}
.y95{bottom:510.946667pt;}
.y264{bottom:512.066667pt;}
.y4a{bottom:512.546667pt;}
.y230{bottom:517.666667pt;}
.ye{bottom:519.586667pt;}
.y210{bottom:519.906667pt;}
.ydd{bottom:520.066667pt;}
.y168{bottom:520.706667pt;}
.y3a{bottom:522.466667pt;}
.y109{bottom:524.226667pt;}
.y28a{bottom:524.386667pt;}
.y48{bottom:524.866667pt;}
.y1a5{bottom:525.026667pt;}
.y133{bottom:525.986667pt;}
.y1d8{bottom:528.066667pt;}
.y263{bottom:529.666667pt;}
.y167{bottom:537.506667pt;}
.ydc{bottom:537.666667pt;}
.y18b{bottom:539.906667pt;}
.y108{bottom:541.826667pt;}
.y289{bottom:541.986667pt;}
.y22f{bottom:542.146667pt;}
.y94{bottom:542.306667pt;}
.y262{bottom:547.266667pt;}
.y1a4{bottom:548.386667pt;}
.yd{bottom:549.506667pt;}
.y1f6{bottom:551.106667pt;}
.y166{bottom:554.306667pt;}
.ydb{bottom:555.266667pt;}
.y20f{bottom:555.426667pt;}
.y47{bottom:555.906667pt;}
.y132{bottom:556.546667pt;}
.y18a{bottom:557.506667pt;}
.y107{bottom:559.426667pt;}
.y288{bottom:559.586667pt;}
.y22e{bottom:561.346667pt;}
.y93{bottom:561.506667pt;}
.y261{bottom:564.866667pt;}
.y1a3{bottom:567.586667pt;}
.yc{bottom:568.706667pt;}
.y165{bottom:571.106667pt;}
.yb2{bottom:571.746667pt;}
.yda{bottom:572.866667pt;}
.y20e{bottom:574.306667pt;}
.y189{bottom:575.106667pt;}
.y106{bottom:577.026667pt;}
.y287{bottom:577.186667pt;}
.y22d{bottom:580.546667pt;}
.y260{bottom:582.466667pt;}
.y62{bottom:585.986667pt;}
.y1f5{bottom:586.306667pt;}
.y1a2{bottom:586.786667pt;}
.y164{bottom:587.906667pt;}
.y131{bottom:588.866667pt;}
.yb1{bottom:589.373333pt;}
.y78{bottom:590.013333pt;}
.yd9{bottom:590.493333pt;}
.y92{bottom:590.653333pt;}
.y20d{bottom:591.933333pt;}
.y188{bottom:592.733333pt;}
.y105{bottom:594.626667pt;}
.y286{bottom:594.813333pt;}
.yb{bottom:599.773333pt;}
.y25f{bottom:600.093333pt;}
.y1f4{bottom:603.933333pt;}
.y163{bottom:604.733333pt;}
.y130{bottom:606.493333pt;}
.yb0{bottom:606.973333pt;}
.y77{bottom:607.613333pt;}
.yd8{bottom:608.093333pt;}
.y20c{bottom:609.853333pt;}
.y187{bottom:610.653333pt;}
.y104{bottom:612.226667pt;}
.y285{bottom:612.413333pt;}
.y25e{bottom:617.693333pt;}
.y162{bottom:621.533333pt;}
.y12f{bottom:624.093333pt;}
.y1a1{bottom:624.413333pt;}
.yaf{bottom:624.573333pt;}
.y76{bottom:625.213333pt;}
.yd7{bottom:625.693333pt;}
.y186{bottom:629.533333pt;}
.y103{bottom:629.866667pt;}
.y284{bottom:630.013333pt;}
.y20b{bottom:634.493333pt;}
.y25d{bottom:635.293333pt;}
.y161{bottom:638.333333pt;}
.y1f3{bottom:639.133333pt;}
.yae{bottom:642.173333pt;}
.yd6{bottom:643.613333pt;}
.y185{bottom:647.133333pt;}
.y283{bottom:647.613333pt;}
.y102{bottom:647.626667pt;}
.y246{bottom:648.093333pt;}
.y25c{bottom:652.893333pt;}
.y20a{bottom:653.693333pt;}
.y1bc{bottom:653.853333pt;}
.y12e{bottom:654.973333pt;}
.y160{bottom:655.133333pt;}
.y75{bottom:656.093333pt;}
.y1f2{bottom:656.733333pt;}
.ya{bottom:657.373333pt;}
.yad{bottom:659.773333pt;}
.y29{bottom:662.493333pt;}
.y184{bottom:664.733333pt;}
.y282{bottom:665.213333pt;}
.y101{bottom:665.226667pt;}
.yd5{bottom:668.093333pt;}
.y25b{bottom:670.493333pt;}
.y15f{bottom:671.933333pt;}
.y12d{bottom:672.573333pt;}
.y74{bottom:673.693333pt;}
.y1f1{bottom:674.333333pt;}
.yac{bottom:677.373333pt;}
.y28{bottom:680.093333pt;}
.y183{bottom:682.333333pt;}
.y281{bottom:682.813333pt;}
.y100{bottom:682.826667pt;}
.yd4{bottom:687.293333pt;}
.y25a{bottom:688.093333pt;}
.y15e{bottom:688.733333pt;}
.y12c{bottom:690.813333pt;}
.y209{bottom:691.453333pt;}
.y1ef{bottom:691.933333pt;}
.yab{bottom:694.973333pt;}
.y1f0{bottom:697.213333pt;}
.y27{bottom:697.693333pt;}
.y182{bottom:699.933333pt;}
.y280{bottom:700.413333pt;}
.yff{bottom:700.426667pt;}
.y73{bottom:704.733333pt;}
.y15d{bottom:705.533333pt;}
.y259{bottom:706.013333pt;}
.y1ee{bottom:709.533333pt;}
.yaa{bottom:712.573333pt;}
.y9{bottom:715.133333pt;}
.y26{bottom:715.293333pt;}
.y181{bottom:717.533333pt;}
.y27f{bottom:718.013333pt;}
.yfe{bottom:718.026667pt;}
.y72{bottom:722.333333pt;}
.y223{bottom:723.933333pt;}
.y258{bottom:724.893333pt;}
.y12b{bottom:725.053333pt;}
.yd3{bottom:725.213333pt;}
.y1ed{bottom:727.133333pt;}
.ya9{bottom:730.173333pt;}
.y25{bottom:732.893333pt;}
.y180{bottom:735.133333pt;}
.y46{bottom:738.333333pt;}
.y15c{bottom:739.133333pt;}
.y71{bottom:739.933333pt;}
.y257{bottom:742.493333pt;}
.y1ec{bottom:744.733333pt;}
.ya8{bottom:747.773333pt;}
.y27e{bottom:748.893333pt;}
.y24{bottom:750.493333pt;}
.y17f{bottom:752.733333pt;}
.ye8{bottom:752.893333pt;}
.y45{bottom:755.933333pt;}
.y138{bottom:756.733333pt;}
.y70{bottom:757.533333pt;}
.y249{bottom:759.453333pt;}
.y256{bottom:760.093333pt;}
.y1eb{bottom:762.333333pt;}
.y23{bottom:768.093333pt;}
.y17e{bottom:770.333333pt;}
.y8{bottom:772.733333pt;}
.y44{bottom:773.533333pt;}
.y6f{bottom:775.133333pt;}
.yc0{bottom:779.933333pt;}
.y1a0{bottom:782.493333pt;}
.y22{bottom:785.693333pt;}
.y17d{bottom:788.253333pt;}
.y278{bottom:789.533333pt;}
.y15b{bottom:789.693333pt;}
.y1ea{bottom:797.533333pt;}
.y91{bottom:801.853333pt;}
.y21{bottom:803.293333pt;}
.y43{bottom:804.573333pt;}
.y6e{bottom:806.053333pt;}
.y15a{bottom:806.533333pt;}
.y1b7{bottom:809.733333pt;}
.yd2{bottom:810.053333pt;}
.y17c{bottom:812.773333pt;}
.y1e9{bottom:815.173333pt;}
.y90{bottom:819.493333pt;}
.ye0{bottom:825.733333pt;}
.y7{bottom:828.453333pt;}
.y5d{bottom:832.773333pt;}
.y6d{bottom:837.093333pt;}
.y20{bottom:838.213333pt;}
.y159{bottom:839.333333pt;}
.y17b{bottom:850.373333pt;}
.y8f{bottom:854.693333pt;}
.y158{bottom:856.133333pt;}
.y6c{bottom:867.973333pt;}
.y6{bottom:871.013333pt;}
.y8e{bottom:872.293333pt;}
.y157{bottom:872.933333pt;}
.y1f{bottom:879.653333pt;}
.y6b{bottom:885.573333pt;}
.y8d{bottom:889.893333pt;}
.y208{bottom:901.893333pt;}
.y6a{bottom:903.173333pt;}
.y1b3{bottom:904.933333pt;}
.y156{bottom:906.053333pt;}
.y8c{bottom:907.493333pt;}
.y5{bottom:915.813333pt;}
.y69{bottom:920.773333pt;}
.y1e{bottom:921.093333pt;}
.y255{bottom:937.093333pt;}
.y42{bottom:938.373333pt;}
.y3{bottom:956.453333pt;}
.h33{height:24.131250pt;}
.h1a{height:29.953125pt;}
.h14{height:31.162187pt;}
.h19{height:32.349375pt;}
.hc{height:33.515625pt;}
.h2e{height:35.200000pt;}
.h22{height:36.640000pt;}
.h3{height:44.687500pt;}
.hb{height:44.929688pt;}
.h29{height:48.867500pt;}
.h15{height:49.722188pt;}
.h12{height:51.088750pt;}
.h2a{height:51.510353pt;}
.h25{height:52.717500pt;}
.h35{height:53.600000pt;}
.h2f{height:53.760000pt;}
.h31{height:54.560000pt;}
.he{height:55.113750pt;}
.h10{height:55.531250pt;}
.h18{height:58.094413pt;}
.h7{height:59.906250pt;}
.h1e{height:62.750312pt;}
.h16{height:63.289687pt;}
.h2b{height:67.694063pt;}
.ha{height:67.840000pt;}
.h2c{height:69.440000pt;}
.h27{height:69.792000pt;}
.h38{height:71.360000pt;}
.h1b{height:75.360000pt;}
.hd{height:76.320000pt;}
.h34{height:77.440000pt;}
.h2{height:81.760000pt;}
.h11{height:83.296875pt;}
.h20{height:92.800000pt;}
.h8{height:100.043437pt;}
.h5{height:104.121875pt;}
.h3a{height:107.072000pt;}
.h1c{height:107.872000pt;}
.h30{height:109.760000pt;}
.h21{height:112.160000pt;}
.h17{height:112.512000pt;}
.hf{height:119.812500pt;}
.h4{height:139.581562pt;}
.h26{height:144.666667pt;}
.h13{height:145.946667pt;}
.h36{height:146.106667pt;}
.h1d{height:149.920000pt;}
.h1f{height:155.386667pt;}
.h39{height:175.866667pt;}
.h6{height:179.718750pt;}
.h28{height:180.186667pt;}
.h2d{height:186.106667pt;}
.h37{height:194.906667pt;}
.h23{height:250.106667pt;}
.h32{height:329.506667pt;}
.h9{height:359.437500pt;}
.h24{height:732.573333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:587.933333pt;}
.we{width:588.093333pt;}
.w1b{width:593.693333pt;}
.w11{width:594.173333pt;}
.wf{width:594.333333pt;}
.w13{width:594.493333pt;}
.w1c{width:594.973333pt;}
.w9{width:596.253333pt;}
.wa{width:596.733333pt;}
.w5{width:597.213333pt;}
.w10{width:597.373333pt;}
.wc{width:599.453333pt;}
.w1d{width:599.773333pt;}
.w8{width:599.933333pt;}
.w6{width:600.093333pt;}
.w16{width:600.253333pt;}
.wb{width:601.533333pt;}
.w19{width:602.333333pt;}
.w7{width:603.133333pt;}
.w17{width:603.453333pt;}
.w1a{width:603.933333pt;}
.w15{width:605.213333pt;}
.w12{width:605.373333pt;}
.wd{width:605.853333pt;}
.w14{width:606.013333pt;}
.w18{width:617.053333pt;}
.w2{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.119976pt;}
.x22{left:33.594667pt;}
.x23{left:57.594667pt;}
.x2b{left:88.032000pt;}
.x2c{left:91.872000pt;}
.x2a{left:92.832000pt;}
.x1f{left:94.272000pt;}
.x2{left:96.031988pt;}
.x12{left:97.952000pt;}
.x1d{left:99.232000pt;}
.x1a{left:100.191988pt;}
.x21{left:103.232000pt;}
.xe{left:104.671976pt;}
.x9{left:114.592000pt;}
.x4{left:116.671988pt;}
.x11{left:120.031988pt;}
.x6{left:135.546655pt;}
.x28{left:140.826643pt;}
.x18{left:144.026655pt;}
.x29{left:145.466655pt;}
.x10{left:168.346655pt;}
.xc{left:182.594667pt;}
.x8{left:192.826655pt;}
.xa{left:196.674667pt;}
.xf{left:204.026655pt;}
.x5{left:216.506655pt;}
.x25{left:225.786655pt;}
.xb{left:231.234667pt;}
.x16{left:236.026643pt;}
.x17{left:240.506655pt;}
.x19{left:288.066655pt;}
.xd{left:293.954667pt;}
.x24{left:297.181333pt;}
.x13{left:298.594667pt;}
.x1c{left:299.874667pt;}
.x1b{left:301.474667pt;}
.x20{left:302.914667pt;}
.x7{left:304.386655pt;}
.x3{left:396.866655pt;}
.x26{left:448.413322pt;}
.x27{left:452.093322pt;}
.x2d{left:519.773310pt;}
.x2e{left:524.733322pt;}
.x14{left:610.213310pt;}
.x15{left:613.093322pt;}
.x1e{left:697.413322pt;}
}




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