
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_79d234889fa3717da35ab590.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_d8527cc1daeae49476516835.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_1fb7d769431d38ecb926e9ef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.763672;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_e7c9f2237259c163b81f9006.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_f5d1fafa99843cd1823581fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_282546c134cc84748c6495f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.802246;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_d7c5f812df0708bed500f362.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_bc8835e22b73507a20e7ea8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_0f9ead7b6cd5d5192ffa3a5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_dadbbd0269a85e3391216576.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_3b3abf6db75f94ac68b5e6c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_439f634804a50bbf000ad297.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_346d5eed61df35caa9a612e7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.725000;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_7f9eb923107941eee6ee6e17.woff2')format("woff");}.fff{font-family:fff;line-height:0.933594;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_5494a88a0c3a840b39da0ed1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.690918;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_18ba700f95fb7922f884a6f1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.690918;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_6e2c2eed0285c0ce640b50ce.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.708008;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_f8a95d3ef4beaee32e47d74c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.708008;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:ff16;src:url('chunks/assets/font_a22c7a005b6bd341e8613a6e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.035156;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:ff17;src:url('chunks/assets/font_c76f596afb24e430461b2421.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.853027;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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-15.720000px;}
.ls18{letter-spacing:-14.220000px;}
.ls11{letter-spacing:-1.332000px;}
.ls14{letter-spacing:-1.266000px;}
.ls21{letter-spacing:-0.288600px;}
.ls9{letter-spacing:-0.162000px;}
.ls7{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.083400px;}
.ls8{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.021600px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.033120px;}
.lsc{letter-spacing:0.052560px;}
.ls4{letter-spacing:0.054720px;}
.lse{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.109200px;}
.ls15{letter-spacing:0.109440px;}
.ls13{letter-spacing:0.128880px;}
.ls0{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.245520px;}
.ls1a{letter-spacing:0.319680px;}
.ls3{letter-spacing:0.378000px;}
.ls1b{letter-spacing:0.439680px;}
.ls1e{letter-spacing:0.499680px;}
.lsd{letter-spacing:0.670080px;}
.lsb{letter-spacing:0.900000px;}
.ls1d{letter-spacing:1.039680px;}
.ls12{letter-spacing:1.494720px;}
.ls1{letter-spacing:11.653200px;}
.ls1f{letter-spacing:71.226720px;}
.ls10{letter-spacing:84.186720px;}
.ls19{letter-spacing:98.586720px;}
.ls2{letter-spacing:200.808000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(60,92,116),0 0.015em rgb(60,92,116),0.015em 0 rgb(60,92,116),0 -0.015em  rgb(60,92,116);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(60,92,116);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-59.760000px;}
.wsb{word-spacing:-18.072000px;}
.ws1{word-spacing:-15.102720px;}
.ws0{word-spacing:-15.019320px;}
.wsa{word-spacing:-13.734480px;}
.wsf{word-spacing:-13.680000px;}
.wse{word-spacing:-13.658400px;}
.ws9{word-spacing:-13.625280px;}
.ws10{word-spacing:-13.603680px;}
.ws11{word-spacing:-13.336680px;}
.ws6{word-spacing:-12.492000px;}
.wsd{word-spacing:-12.359280px;}
.ws2{word-spacing:-12.312000px;}
.wsc{word-spacing:-12.293280px;}
.ws4{word-spacing:-12.240000px;}
.ws3{word-spacing:-12.168000px;}
.ws5{word-spacing:-12.150000px;}
.ws7{word-spacing:0.000000px;}
._23{margin-left:-18.150000px;}
._22{margin-left:-13.896240px;}
._9{margin-left:-3.510720px;}
._5{margin-left:-2.257920px;}
._1{margin-left:-1.080000px;}
._0{width:1.242000px;}
._4{width:2.586240px;}
._6{width:3.812640px;}
._2{width:4.968000px;}
._3{width:6.226560px;}
._e{width:7.370880px;}
._a{width:8.375520px;}
._7{width:10.200960px;}
._8{width:11.796480px;}
._25{width:14.262240px;}
._13{width:15.358320px;}
._11{width:16.374240px;}
._d{width:17.629200px;}
._19{width:18.764640px;}
._17{width:20.318400px;}
._14{width:21.692880px;}
._15{width:23.186880px;}
._16{width:24.574320px;}
._1e{width:26.473680px;}
._f{width:27.609120px;}
._10{width:29.175840px;}
._c{width:30.417840px;}
._24{width:31.954320px;}
._21{width:33.350400px;}
._20{width:34.720560px;}
._26{width:38.485440px;}
._27{width:39.501360px;}
._1c{width:42.071040px;}
._1d{width:46.943760px;}
._18{width:52.708320px;}
._1b{width:55.397520px;}
._1a{width:56.772000px;}
._12{width:60.596640px;}
._2a{width:160.097040px;}
._1f{width:185.238720px;}
._b{width:201.252000px;}
._28{width:233.303040px;}
._29{width:234.318960px;}
.fc5{color:transparent;}
.fc3{color:rgb(60,92,116);}
.fc2{color:rgb(60,92,115);}
.fc4{color:rgb(193,89,76);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:2.880000px;}
.ya{bottom:3.240000px;}
.y13{bottom:3.420000px;}
.y118{bottom:3.600000px;}
.yd{bottom:3.960000px;}
.y4a{bottom:4.680000px;}
.y10{bottom:5.760000px;}
.y36{bottom:18.360000px;}
.yc{bottom:22.320000px;}
.y35{bottom:33.840000px;}
.yf{bottom:36.720000px;}
.y2c{bottom:41.400000px;}
.y34{bottom:49.320000px;}
.y48{bottom:57.060000px;}
.y2b{bottom:60.300000px;}
.y33{bottom:64.980000px;}
.y7{bottom:66.780000px;}
.y49{bottom:71.820000px;}
.y47{bottom:73.800000px;}
.y2a{bottom:79.200000px;}
.y32{bottom:80.460000px;}
.y6{bottom:83.160000px;}
.y46{bottom:90.720000px;}
.y31{bottom:97.560000px;}
.y29{bottom:98.100000px;}
.y5{bottom:99.540000px;}
.y30{bottom:116.685000px;}
.y28{bottom:117.000000px;}
.y88{bottom:120.420000px;}
.y4{bottom:124.920000px;}
.y11f{bottom:125.280000px;}
.y163{bottom:125.820000px;}
.y1a0{bottom:126.360000px;}
.yc2{bottom:134.460000px;}
.y2f{bottom:135.585000px;}
.y27{bottom:136.080000px;}
.y87{bottom:137.700000px;}
.y122{bottom:141.120000px;}
.y11e{bottom:142.560000px;}
.y19f{bottom:143.460000px;}
.y1c0{bottom:143.640000px;}
.y162{bottom:143.820000px;}
.y3e{bottom:144.900000px;}
.y45{bottom:146.700000px;}
.yc1{bottom:152.670000px;}
.y26{bottom:154.980000px;}
.y86{bottom:155.010000px;}
.y2e{bottom:156.285000px;}
.y121{bottom:158.430000px;}
.y11d{bottom:159.690000px;}
.y19e{bottom:160.770000px;}
.y1bf{bottom:160.950000px;}
.y161{bottom:161.850000px;}
.y3d{bottom:162.210000px;}
.y44{bottom:164.010000px;}
.y221{bottom:166.530000px;}
.yc0{bottom:170.850000px;}
.y85{bottom:172.290000px;}
.y25{bottom:173.880000px;}
.y120{bottom:176.790000px;}
.y11c{bottom:176.970000px;}
.y19d{bottom:177.870000px;}
.y1be{bottom:178.050000px;}
.y3c{bottom:179.490000px;}
.y160{bottom:179.850000px;}
.y43{bottom:181.110000px;}
.y220{bottom:184.170000px;}
.y1f1{bottom:186.690000px;}
.ybf{bottom:189.210000px;}
.y84{bottom:189.390000px;}
.y24{bottom:192.810000px;}
.y11b{bottom:194.070000px;}
.y19c{bottom:195.150000px;}
.y1bd{bottom:195.330000px;}
.y3b{bottom:196.590000px;}
.y42{bottom:198.390000px;}
.y15f{bottom:201.270000px;}
.y21f{bottom:201.450000px;}
.y1f0{bottom:203.970000px;}
.ybe{bottom:206.490000px;}
.y83{bottom:206.670000px;}
.y11a{bottom:208.830000px;}
.y23{bottom:211.710000px;}
.y19b{bottom:212.430000px;}
.y1bc{bottom:212.610000px;}
.y3a{bottom:213.870000px;}
.y41{bottom:215.490000px;}
.y21e{bottom:218.550000px;}
.y15e{bottom:219.990000px;}
.y1ef{bottom:221.070000px;}
.ybd{bottom:223.590000px;}
.y82{bottom:223.950000px;}
.y119{bottom:227.550000px;}
.y19a{bottom:229.530000px;}
.y1bb{bottom:229.710000px;}
.y22{bottom:230.610000px;}
.y39{bottom:231.150000px;}
.y40{bottom:232.770000px;}
.y21d{bottom:235.830000px;}
.y159{bottom:237.090000px;}
.y15d{bottom:238.530000px;}
.ybc{bottom:240.870000px;}
.y81{bottom:241.050000px;}
.y117{bottom:246.270000px;}
.y199{bottom:246.810000px;}
.y1ba{bottom:246.990000px;}
.y38{bottom:248.430000px;}
.y21{bottom:249.690000px;}
.y3f{bottom:250.050000px;}
.y21c{bottom:253.110000px;}
.y158{bottom:254.370000px;}
.y15c{bottom:255.630000px;}
.y1ee{bottom:257.250000px;}
.ybb{bottom:257.970000px;}
.y80{bottom:258.330000px;}
.y198{bottom:263.910000px;}
.y1b9{bottom:264.270000px;}
.y116{bottom:264.990000px;}
.y20{bottom:268.590000px;}
.y21b{bottom:270.210000px;}
.y157{bottom:271.470000px;}
.y15b{bottom:272.910000px;}
.y1ed{bottom:274.530000px;}
.y7f{bottom:275.430000px;}
.yba{bottom:276.330000px;}
.y1b8{bottom:281.370000px;}
.y197{bottom:282.450000px;}
.y2d{bottom:284.070000px;}
.y115{bottom:286.410000px;}
.y1f{bottom:287.490000px;}
.y21a{bottom:287.670000px;}
.y156{bottom:288.750000px;}
.y15a{bottom:290.190000px;}
.y1ec{bottom:291.810000px;}
.y7e{bottom:292.710000px;}
.yb9{bottom:293.610000px;}
.y1b7{bottom:298.650000px;}
.y196{bottom:299.730000px;}
.y114{bottom:305.130000px;}
.y219{bottom:305.310000px;}
.y1e{bottom:306.390000px;}
.y155{bottom:307.290000px;}
.y1eb{bottom:308.910000px;}
.y7d{bottom:309.990000px;}
.yb8{bottom:310.710000px;}
.y1b6{bottom:315.750000px;}
.y195{bottom:317.010000px;}
.y113{bottom:322.410000px;}
.y218{bottom:322.590000px;}
.y154{bottom:324.570000px;}
.y1d{bottom:325.290000px;}
.y1ea{bottom:326.190000px;}
.yb7{bottom:327.810000px;}
.y7c{bottom:328.350000px;}
.y1b5{bottom:333.030000px;}
.y194{bottom:334.290000px;}
.y112{bottom:339.510000px;}
.y217{bottom:340.050000px;}
.y10e{bottom:340.230000px;}
.y153{bottom:341.850000px;}
.y1e9{bottom:343.470000px;}
.y1c{bottom:344.370000px;}
.y7b{bottom:345.990000px;}
.yb6{bottom:346.170000px;}
.y1b4{bottom:350.310000px;}
.y193{bottom:351.570000px;}
.y10d{bottom:357.510000px;}
.y111{bottom:357.690000px;}
.y152{bottom:358.950000px;}
.y1e8{bottom:360.750000px;}
.y1b{bottom:363.270000px;}
.y7a{bottom:364.710000px;}
.y1b3{bottom:367.410000px;}
.y192{bottom:368.670000px;}
.y10c{bottom:374.610000px;}
.y216{bottom:375.150000px;}
.y110{bottom:376.050000px;}
.y151{bottom:376.230000px;}
.y1e7{bottom:377.850000px;}
.yb5{bottom:381.630000px;}
.y79{bottom:381.810000px;}
.y1a{bottom:382.170000px;}
.y191{bottom:385.950000px;}
.y10b{bottom:391.890000px;}
.y215{bottom:392.610000px;}
.y10f{bottom:393.330000px;}
.y1e6{bottom:395.130000px;}
.yb4{bottom:398.730000px;}
.y78{bottom:399.090000px;}
.y19{bottom:401.070000px;}
.y190{bottom:403.275000px;}
.y150{bottom:408.135000px;}
.y214{bottom:409.935000px;}
.y10a{bottom:410.475000px;}
.y1e5{bottom:412.455000px;}
.y77{bottom:416.415000px;}
.yb3{bottom:416.955000px;}
.y18{bottom:419.970000px;}
.y18f{bottom:420.555000px;}
.y14f{bottom:426.855000px;}
.y213{bottom:427.215000px;}
.y109{bottom:427.755000px;}
.y1e4{bottom:429.735000px;}
.y76{bottom:433.515000px;}
.yb2{bottom:435.315000px;}
.y18e{bottom:437.655000px;}
.y1b2{bottom:437.835000px;}
.y17{bottom:439.095000px;}
.y108{bottom:442.515000px;}
.y212{bottom:444.855000px;}
.y14e{bottom:445.575000px;}
.y1e3{bottom:446.835000px;}
.y75{bottom:450.795000px;}
.yb1{bottom:453.675000px;}
.y18d{bottom:454.935000px;}
.y16{bottom:457.995000px;}
.y15{bottom:458.895000px;}
.y107{bottom:460.335000px;}
.y211{bottom:462.495000px;}
.y14d{bottom:463.575000px;}
.y1e2{bottom:464.115000px;}
.y74{bottom:467.895000px;}
.yb0{bottom:470.775000px;}
.y18c{bottom:472.035000px;}
.y1b1{bottom:472.215000px;}
.y106{bottom:478.335000px;}
.y210{bottom:479.775000px;}
.y1e1{bottom:481.395000px;}
.y14c{bottom:481.575000px;}
.y73{bottom:485.175000px;}
.yaf{bottom:487.875000px;}
.y18b{bottom:489.315000px;}
.y1b0{bottom:489.495000px;}
.y105{bottom:496.335000px;}
.y20f{bottom:497.235000px;}
.y1e0{bottom:498.675000px;}
.y72{bottom:502.455000px;}
.y14b{bottom:502.995000px;}
.yae{bottom:506.235000px;}
.y18a{bottom:506.595000px;}
.y104{bottom:514.335000px;}
.y20e{bottom:514.875000px;}
.y1df{bottom:515.775000px;}
.y71{bottom:519.555000px;}
.y14a{bottom:521.715000px;}
.yad{bottom:523.335000px;}
.y189{bottom:523.695000px;}
.y1af{bottom:523.875000px;}
.y103{bottom:532.335000px;}
.y1de{bottom:533.055000px;}
.y70{bottom:536.835000px;}
.y143{bottom:538.815000px;}
.y188{bottom:540.975000px;}
.yac{bottom:541.695000px;}
.y1ae{bottom:542.415000px;}
.y20d{bottom:549.795000px;}
.y1dd{bottom:550.335000px;}
.y102{bottom:553.395000px;}
.y6f{bottom:554.115000px;}
.y142{bottom:556.095000px;}
.y187{bottom:559.515000px;}
.y1ad{bottom:559.695000px;}
.yab{bottom:559.875000px;}
.y20c{bottom:567.255000px;}
.y1dc{bottom:567.615000px;}
.y149{bottom:570.495000px;}
.y101{bottom:570.855000px;}
.y6e{bottom:571.215000px;}
.y141{bottom:573.195000px;}
.y186{bottom:576.795000px;}
.y1ac{bottom:576.975000px;}
.yaa{bottom:578.055000px;}
.y20b{bottom:584.535000px;}
.y1db{bottom:584.715000px;}
.y148{bottom:587.595000px;}
.y6d{bottom:588.495000px;}
.y100{bottom:589.575000px;}
.y140{bottom:591.735000px;}
.y185{bottom:593.895000px;}
.y1ab{bottom:594.075000px;}
.ya9{bottom:596.415000px;}
.y20a{bottom:601.815000px;}
.y1da{bottom:601.995000px;}
.y6c{bottom:605.595000px;}
.y147{bottom:605.955000px;}
.ydf{bottom:606.675000px;}
.y13f{bottom:609.015000px;}
.y184{bottom:611.175000px;}
.y1aa{bottom:611.355000px;}
.ya8{bottom:613.695000px;}
.y1d9{bottom:619.095000px;}
.y6b{bottom:622.875000px;}
.y146{bottom:624.135000px;}
.yde{bottom:625.035000px;}
.y13e{bottom:626.295000px;}
.y183{bottom:628.455000px;}
.y1a9{bottom:628.635000px;}
.ya7{bottom:630.795000px;}
.yff{bottom:632.955000px;}
.y1d8{bottom:636.375000px;}
.y6a{bottom:640.155000px;}
.ydd{bottom:642.315000px;}
.y145{bottom:642.495000px;}
.y13d{bottom:643.575000px;}
.y182{bottom:645.555000px;}
.y1a8{bottom:645.735000px;}
.ya6{bottom:648.075000px;}
.yfe{bottom:650.085000px;}
.y1d7{bottom:653.685000px;}
.y209{bottom:653.865000px;}
.y69{bottom:657.285000px;}
.ydc{bottom:659.445000px;}
.y144{bottom:659.625000px;}
.y13c{bottom:660.705000px;}
.y181{bottom:662.865000px;}
.y1a7{bottom:663.045000px;}
.ya5{bottom:665.385000px;}
.yfd{bottom:667.365000px;}
.y1d6{bottom:670.965000px;}
.y208{bottom:671.145000px;}
.y68{bottom:674.565000px;}
.ydb{bottom:676.545000px;}
.y13b{bottom:677.985000px;}
.y180{bottom:680.145000px;}
.y1a6{bottom:680.325000px;}
.ya4{bottom:682.485000px;}
.yfc{bottom:684.645000px;}
.y1d5{bottom:688.065000px;}
.y207{bottom:688.425000px;}
.y67{bottom:691.665000px;}
.y13a{bottom:692.745000px;}
.yda{bottom:694.905000px;}
.y17f{bottom:697.245000px;}
.y1a5{bottom:697.605000px;}
.ya3{bottom:699.585000px;}
.yfb{bottom:701.745000px;}
.y1d4{bottom:705.345000px;}
.y206{bottom:705.885000px;}
.y66{bottom:708.945000px;}
.y139{bottom:710.565000px;}
.yd9{bottom:713.265000px;}
.y17e{bottom:714.525000px;}
.y1a4{bottom:714.705000px;}
.ya2{bottom:717.945000px;}
.yfa{bottom:719.025000px;}
.y1d3{bottom:722.625000px;}
.y205{bottom:723.165000px;}
.y65{bottom:726.225000px;}
.y138{bottom:728.565000px;}
.yd8{bottom:730.365000px;}
.y17d{bottom:731.985000px;}
.yf9{bottom:736.125000px;}
.ya1{bottom:736.305000px;}
.y1d2{bottom:739.725000px;}
.y204{bottom:740.805000px;}
.y64{bottom:743.325000px;}
.y137{bottom:746.565000px;}
.yd7{bottom:747.645000px;}
.y1a3{bottom:749.265000px;}
.y17c{bottom:750.705000px;}
.ya0{bottom:753.225000px;}
.yf8{bottom:753.405000px;}
.y1d1{bottom:757.005000px;}
.y203{bottom:758.265000px;}
.y63{bottom:760.605000px;}
.y136{bottom:764.565000px;}
.yd6{bottom:764.745000px;}
.y1a2{bottom:767.625000px;}
.y17b{bottom:767.805000px;}
.yf7{bottom:770.685000px;}
.y9f{bottom:771.585000px;}
.y1d0{bottom:774.285000px;}
.y202{bottom:775.545000px;}
.y62{bottom:777.885000px;}
.yd5{bottom:782.025000px;}
.y1a1{bottom:784.905000px;}
.y17a{bottom:785.085000px;}
.y135{bottom:785.985000px;}
.yf6{bottom:787.785000px;}
.y9e{bottom:788.865000px;}
.y1cf{bottom:791.385000px;}
.y201{bottom:793.185000px;}
.y61{bottom:794.985000px;}
.yd4{bottom:799.305000px;}
.y179{bottom:802.185000px;}
.y134{bottom:804.705000px;}
.yf5{bottom:805.065000px;}
.y9d{bottom:806.145000px;}
.y1ce{bottom:808.665000px;}
.y200{bottom:811.905000px;}
.y60{bottom:812.265000px;}
.yd3{bottom:817.845000px;}
.y178{bottom:819.465000px;}
.y130{bottom:821.805000px;}
.yf4{bottom:822.345000px;}
.y9c{bottom:824.685000px;}
.y1cd{bottom:825.765000px;}
.y1ff{bottom:829.185000px;}
.y5f{bottom:829.365000px;}
.y177{bottom:834.225000px;}
.yd2{bottom:834.945000px;}
.y12f{bottom:839.085000px;}
.yf3{bottom:839.445000px;}
.y133{bottom:840.525000px;}
.y9b{bottom:841.965000px;}
.y1cc{bottom:843.045000px;}
.y1fe{bottom:846.465000px;}
.y5e{bottom:846.645000px;}
.y176{bottom:852.225000px;}
.yd1{bottom:853.125000px;}
.y12e{bottom:856.365000px;}
.yf2{bottom:856.725000px;}
.y132{bottom:857.625000px;}
.y9a{bottom:859.065000px;}
.y1cb{bottom:860.505000px;}
.y1fd{bottom:863.565000px;}
.y5d{bottom:863.925000px;}
.y175{bottom:870.045000px;}
.yd0{bottom:871.485000px;}
.y12d{bottom:873.465000px;}
.yf1{bottom:873.825000px;}
.y131{bottom:874.905000px;}
.y99{bottom:876.165000px;}
.y1ca{bottom:879.225000px;}
.y1fc{bottom:880.845000px;}
.y5c{bottom:881.025000px;}
.y174{bottom:888.045000px;}
.ycf{bottom:888.765000px;}
.yf0{bottom:891.105000px;}
.y12c{bottom:892.005000px;}
.y98{bottom:894.345000px;}
.y1c9{bottom:896.505000px;}
.y1fb{bottom:897.990000px;}
.y5b{bottom:898.350000px;}
.yce{bottom:905.910000px;}
.y173{bottom:906.090000px;}
.y12b{bottom:909.330000px;}
.yef{bottom:909.690000px;}
.y97{bottom:912.750000px;}
.y1c8{bottom:913.830000px;}
.y1fa{bottom:915.270000px;}
.y5a{bottom:915.630000px;}
.ycd{bottom:923.010000px;}
.y172{bottom:924.090000px;}
.y12a{bottom:926.610000px;}
.yee{bottom:926.970000px;}
.y96{bottom:930.030000px;}
.y1c7{bottom:930.930000px;}
.y1f9{bottom:932.550000px;}
.y59{bottom:932.730000px;}
.y14{bottom:936.870000px;}
.ycc{bottom:941.370000px;}
.y129{bottom:943.710000px;}
.yed{bottom:944.070000px;}
.y171{bottom:945.510000px;}
.y95{bottom:947.310000px;}
.y1c6{bottom:948.210000px;}
.y1f8{bottom:949.830000px;}
.y58{bottom:950.010000px;}
.y12{bottom:952.530000px;}
.ycb{bottom:958.470000px;}
.y128{bottom:960.990000px;}
.yec{bottom:961.350000px;}
.y170{bottom:964.230000px;}
.y1c5{bottom:965.490000px;}
.y94{bottom:965.670000px;}
.y1f7{bottom:966.930000px;}
.y57{bottom:967.110000px;}
.y127{bottom:975.750000px;}
.yca{bottom:976.830000px;}
.yeb{bottom:978.630000px;}
.y16f{bottom:981.330000px;}
.y1c4{bottom:982.770000px;}
.y93{bottom:982.950000px;}
.y1f6{bottom:984.210000px;}
.y56{bottom:984.390000px;}
.y11{bottom:993.750000px;}
.yc9{bottom:993.930000px;}
.y126{bottom:994.470000px;}
.yea{bottom:995.730000px;}
.y16e{bottom:998.610000px;}
.y1c3{bottom:1000.050000px;}
.y92{bottom:1000.230000px;}
.y1f5{bottom:1001.490000px;}
.y55{bottom:1001.670000px;}
.ye{bottom:1009.230000px;}
.y125{bottom:1012.290000px;}
.ye9{bottom:1013.010000px;}
.yc8{bottom:1013.550000px;}
.y16d{bottom:1015.890000px;}
.y1c2{bottom:1017.150000px;}
.y91{bottom:1017.510000px;}
.y54{bottom:1018.770000px;}
.y124{bottom:1030.290000px;}
.ye8{bottom:1030.470000px;}
.yc7{bottom:1030.830000px;}
.y16c{bottom:1032.990000px;}
.y1c1{bottom:1034.430000px;}
.y90{bottom:1034.610000px;}
.y1f4{bottom:1035.870000px;}
.y53{bottom:1036.050000px;}
.yc6{bottom:1049.010000px;}
.ye7{bottom:1049.190000px;}
.y16b{bottom:1050.270000px;}
.y123{bottom:1051.710000px;}
.y8f{bottom:1051.890000px;}
.y1f3{bottom:1053.150000px;}
.y52{bottom:1053.330000px;}
.ye6{bottom:1066.290000px;}
.yc5{bottom:1067.190000px;}
.y16a{bottom:1067.370000px;}
.y8e{bottom:1069.170000px;}
.y51{bottom:1070.430000px;}
.yb{bottom:1071.150000px;}
.ye5{bottom:1083.570000px;}
.y169{bottom:1084.650000px;}
.yc4{bottom:1085.550000px;}
.y8d{bottom:1086.270000px;}
.y1f2{bottom:1087.530000px;}
.y50{bottom:1087.710000px;}
.ye4{bottom:1100.670000px;}
.y168{bottom:1101.930000px;}
.y8c{bottom:1103.550000px;}
.yc3{bottom:1103.730000px;}
.y4f{bottom:1104.810000px;}
.y9{bottom:1106.430000px;}
.ye3{bottom:1118.850000px;}
.y167{bottom:1119.030000px;}
.y8b{bottom:1120.650000px;}
.y4e{bottom:1122.090000px;}
.y8{bottom:1128.030000px;}
.y166{bottom:1133.790000px;}
.ye2{bottom:1137.210000px;}
.y8a{bottom:1137.930000px;}
.y4d{bottom:1139.370000px;}
.y3{bottom:1148.580000px;}
.y165{bottom:1151.820000px;}
.y89{bottom:1155.240000px;}
.ye1{bottom:1155.600000px;}
.y4c{bottom:1156.500000px;}
.y164{bottom:1169.820000px;}
.y2{bottom:1170.720000px;}
.ye0{bottom:1172.700000px;}
.y4b{bottom:1173.780000px;}
.y1{bottom:1192.680000px;}
.h5{height:17.100000px;}
.h1a{height:17.280000px;}
.h1d{height:17.316000px;}
.h1c{height:17.820000px;}
.h1b{height:18.000000px;}
.h18{height:20.160000px;}
.h7{height:35.280000px;}
.h3{height:36.571289px;}
.hd{height:37.800000px;}
.h15{height:39.313477px;}
.h14{height:39.339844px;}
.h8{height:40.472227px;}
.h6{height:43.506914px;}
.h16{height:43.536094px;}
.h20{height:44.907539px;}
.h9{height:47.212734px;}
.h10{height:48.224531px;}
.hc{height:48.256875px;}
.h19{height:48.761719px;}
.h4{height:49.777031px;}
.h1f{height:50.364141px;}
.h17{height:51.408000px;}
.h13{height:58.433906px;}
.ha{height:61.920000px;}
.h11{height:63.303398px;}
.he{height:65.884219px;}
.h1e{height:67.824844px;}
.h2{height:71.613281px;}
.hb{height:78.626953px;}
.h12{height:174.810000px;}
.hf{height:473.475000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:49.536000px;}
.w12{width:74.376000px;}
.w1e{width:81.036000px;}
.w1a{width:85.536000px;}
.wa{width:96.876000px;}
.we{width:113.436000px;}
.w16{width:116.496000px;}
.w22{width:123.876000px;}
.w20{width:139.536000px;}
.wc{width:142.416000px;}
.w21{width:148.536000px;}
.w1c{width:148.716000px;}
.wf{width:165.990000px;}
.w8{width:177.690000px;}
.w14{width:182.550000px;}
.w1d{width:195.870000px;}
.w17{width:197.310000px;}
.wd{width:207.930000px;}
.w9{width:233.670000px;}
.w18{width:235.875000px;}
.w15{width:249.870000px;}
.w13{width:255.495000px;}
.w10{width:260.535000px;}
.w19{width:285.330000px;}
.w7{width:296.175000px;}
.w11{width:303.510000px;}
.wb{width:340.455000px;}
.w1b{width:378.615000px;}
.w1f{width:392.475000px;}
.w4{width:808.200000px;}
.w3{width:818.820000px;}
.w5{width:892.799973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x9{left:16.230000px;}
.x1{left:42.479987px;}
.x20{left:46.079987px;}
.x5{left:52.919973px;}
.x12{left:86.255987px;}
.x1a{left:117.035987px;}
.xe{left:147.455987px;}
.x16{left:181.289987px;}
.x13{left:209.910000px;}
.xa{left:242.129987px;}
.x17{left:299.415000px;}
.xb{left:340.095000px;}
.xf{left:384.375000px;}
.x1d{left:422.715000px;}
.x21{left:436.395000px;}
.x7{left:446.504987px;}
.x6{left:463.604987px;}
.x14{left:471.165000px;}
.x1b{left:478.005000px;}
.x18{left:482.685000px;}
.xc{left:518.505000px;}
.x10{left:527.505000px;}
.x1e{left:572.145000px;}
.x22{left:576.645000px;}
.x3{left:711.690000px;}
.x23{left:725.910000px;}
.x19{left:733.290000px;}
.x11{left:736.350000px;}
.xd{left:752.910000px;}
.x1c{left:764.250000px;}
.x1f{left:768.750000px;}
.x15{left:775.410000px;}
.x4{left:787.140000px;}
.x8{left:798.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-13.973333pt;}
.ls18{letter-spacing:-12.640000pt;}
.ls11{letter-spacing:-1.184000pt;}
.ls14{letter-spacing:-1.125333pt;}
.ls21{letter-spacing:-0.256533pt;}
.ls9{letter-spacing:-0.144000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.074133pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.029440pt;}
.lsc{letter-spacing:0.046720pt;}
.ls4{letter-spacing:0.048640pt;}
.lse{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls15{letter-spacing:0.097280pt;}
.ls13{letter-spacing:0.114560pt;}
.ls0{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.218240pt;}
.ls1a{letter-spacing:0.284160pt;}
.ls3{letter-spacing:0.336000pt;}
.ls1b{letter-spacing:0.390827pt;}
.ls1e{letter-spacing:0.444160pt;}
.lsd{letter-spacing:0.595627pt;}
.lsb{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.924160pt;}
.ls12{letter-spacing:1.328640pt;}
.ls1{letter-spacing:10.358400pt;}
.ls1f{letter-spacing:63.312640pt;}
.ls10{letter-spacing:74.832640pt;}
.ls19{letter-spacing:87.632640pt;}
.ls2{letter-spacing:178.496000pt;}
.ws8{word-spacing:-53.120000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws1{word-spacing:-13.424640pt;}
.ws0{word-spacing:-13.350507pt;}
.wsa{word-spacing:-12.208427pt;}
.wsf{word-spacing:-12.160000pt;}
.wse{word-spacing:-12.140800pt;}
.ws9{word-spacing:-12.111360pt;}
.ws10{word-spacing:-12.092160pt;}
.ws11{word-spacing:-11.854827pt;}
.ws6{word-spacing:-11.104000pt;}
.wsd{word-spacing:-10.986027pt;}
.ws2{word-spacing:-10.944000pt;}
.wsc{word-spacing:-10.927360pt;}
.ws4{word-spacing:-10.880000pt;}
.ws3{word-spacing:-10.816000pt;}
.ws5{word-spacing:-10.800000pt;}
.ws7{word-spacing:0.000000pt;}
._23{margin-left:-16.133333pt;}
._22{margin-left:-12.352213pt;}
._9{margin-left:-3.120640pt;}
._5{margin-left:-2.007040pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.104000pt;}
._4{width:2.298880pt;}
._6{width:3.389013pt;}
._2{width:4.416000pt;}
._3{width:5.534720pt;}
._e{width:6.551893pt;}
._a{width:7.444907pt;}
._7{width:9.067520pt;}
._8{width:10.485760pt;}
._25{width:12.677547pt;}
._13{width:13.651840pt;}
._11{width:14.554880pt;}
._d{width:15.670400pt;}
._19{width:16.679680pt;}
._17{width:18.060800pt;}
._14{width:19.282560pt;}
._15{width:20.610560pt;}
._16{width:21.843840pt;}
._1e{width:23.532160pt;}
._f{width:24.541440pt;}
._10{width:25.934080pt;}
._c{width:27.038080pt;}
._24{width:28.403840pt;}
._21{width:29.644800pt;}
._20{width:30.862720pt;}
._26{width:34.209280pt;}
._27{width:35.112320pt;}
._1c{width:37.396480pt;}
._1d{width:41.727787pt;}
._18{width:46.851840pt;}
._1b{width:49.242240pt;}
._1a{width:50.464000pt;}
._12{width:53.863680pt;}
._2a{width:142.308480pt;}
._1f{width:164.656640pt;}
._b{width:178.890667pt;}
._28{width:207.380480pt;}
._29{width:208.283520pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:2.560000pt;}
.ya{bottom:2.880000pt;}
.y13{bottom:3.040000pt;}
.y118{bottom:3.200000pt;}
.yd{bottom:3.520000pt;}
.y4a{bottom:4.160000pt;}
.y10{bottom:5.120000pt;}
.y36{bottom:16.320000pt;}
.yc{bottom:19.840000pt;}
.y35{bottom:30.080000pt;}
.yf{bottom:32.640000pt;}
.y2c{bottom:36.800000pt;}
.y34{bottom:43.840000pt;}
.y48{bottom:50.720000pt;}
.y2b{bottom:53.600000pt;}
.y33{bottom:57.760000pt;}
.y7{bottom:59.360000pt;}
.y49{bottom:63.840000pt;}
.y47{bottom:65.600000pt;}
.y2a{bottom:70.400000pt;}
.y32{bottom:71.520000pt;}
.y6{bottom:73.920000pt;}
.y46{bottom:80.640000pt;}
.y31{bottom:86.720000pt;}
.y29{bottom:87.200000pt;}
.y5{bottom:88.480000pt;}
.y30{bottom:103.720000pt;}
.y28{bottom:104.000000pt;}
.y88{bottom:107.040000pt;}
.y4{bottom:111.040000pt;}
.y11f{bottom:111.360000pt;}
.y163{bottom:111.840000pt;}
.y1a0{bottom:112.320000pt;}
.yc2{bottom:119.520000pt;}
.y2f{bottom:120.520000pt;}
.y27{bottom:120.960000pt;}
.y87{bottom:122.400000pt;}
.y122{bottom:125.440000pt;}
.y11e{bottom:126.720000pt;}
.y19f{bottom:127.520000pt;}
.y1c0{bottom:127.680000pt;}
.y162{bottom:127.840000pt;}
.y3e{bottom:128.800000pt;}
.y45{bottom:130.400000pt;}
.yc1{bottom:135.706667pt;}
.y26{bottom:137.760000pt;}
.y86{bottom:137.786667pt;}
.y2e{bottom:138.920000pt;}
.y121{bottom:140.826667pt;}
.y11d{bottom:141.946667pt;}
.y19e{bottom:142.906667pt;}
.y1bf{bottom:143.066667pt;}
.y161{bottom:143.866667pt;}
.y3d{bottom:144.186667pt;}
.y44{bottom:145.786667pt;}
.y221{bottom:148.026667pt;}
.yc0{bottom:151.866667pt;}
.y85{bottom:153.146667pt;}
.y25{bottom:154.560000pt;}
.y120{bottom:157.146667pt;}
.y11c{bottom:157.306667pt;}
.y19d{bottom:158.106667pt;}
.y1be{bottom:158.266667pt;}
.y3c{bottom:159.546667pt;}
.y160{bottom:159.866667pt;}
.y43{bottom:160.986667pt;}
.y220{bottom:163.706667pt;}
.y1f1{bottom:165.946667pt;}
.ybf{bottom:168.186667pt;}
.y84{bottom:168.346667pt;}
.y24{bottom:171.386667pt;}
.y11b{bottom:172.506667pt;}
.y19c{bottom:173.466667pt;}
.y1bd{bottom:173.626667pt;}
.y3b{bottom:174.746667pt;}
.y42{bottom:176.346667pt;}
.y15f{bottom:178.906667pt;}
.y21f{bottom:179.066667pt;}
.y1f0{bottom:181.306667pt;}
.ybe{bottom:183.546667pt;}
.y83{bottom:183.706667pt;}
.y11a{bottom:185.626667pt;}
.y23{bottom:188.186667pt;}
.y19b{bottom:188.826667pt;}
.y1bc{bottom:188.986667pt;}
.y3a{bottom:190.106667pt;}
.y41{bottom:191.546667pt;}
.y21e{bottom:194.266667pt;}
.y15e{bottom:195.546667pt;}
.y1ef{bottom:196.506667pt;}
.ybd{bottom:198.746667pt;}
.y82{bottom:199.066667pt;}
.y119{bottom:202.266667pt;}
.y19a{bottom:204.026667pt;}
.y1bb{bottom:204.186667pt;}
.y22{bottom:204.986667pt;}
.y39{bottom:205.466667pt;}
.y40{bottom:206.906667pt;}
.y21d{bottom:209.626667pt;}
.y159{bottom:210.746667pt;}
.y15d{bottom:212.026667pt;}
.ybc{bottom:214.106667pt;}
.y81{bottom:214.266667pt;}
.y117{bottom:218.906667pt;}
.y199{bottom:219.386667pt;}
.y1ba{bottom:219.546667pt;}
.y38{bottom:220.826667pt;}
.y21{bottom:221.946667pt;}
.y3f{bottom:222.266667pt;}
.y21c{bottom:224.986667pt;}
.y158{bottom:226.106667pt;}
.y15c{bottom:227.226667pt;}
.y1ee{bottom:228.666667pt;}
.ybb{bottom:229.306667pt;}
.y80{bottom:229.626667pt;}
.y198{bottom:234.586667pt;}
.y1b9{bottom:234.906667pt;}
.y116{bottom:235.546667pt;}
.y20{bottom:238.746667pt;}
.y21b{bottom:240.186667pt;}
.y157{bottom:241.306667pt;}
.y15b{bottom:242.586667pt;}
.y1ed{bottom:244.026667pt;}
.y7f{bottom:244.826667pt;}
.yba{bottom:245.626667pt;}
.y1b8{bottom:250.106667pt;}
.y197{bottom:251.066667pt;}
.y2d{bottom:252.506667pt;}
.y115{bottom:254.586667pt;}
.y1f{bottom:255.546667pt;}
.y21a{bottom:255.706667pt;}
.y156{bottom:256.666667pt;}
.y15a{bottom:257.946667pt;}
.y1ec{bottom:259.386667pt;}
.y7e{bottom:260.186667pt;}
.yb9{bottom:260.986667pt;}
.y1b7{bottom:265.466667pt;}
.y196{bottom:266.426667pt;}
.y114{bottom:271.226667pt;}
.y219{bottom:271.386667pt;}
.y1e{bottom:272.346667pt;}
.y155{bottom:273.146667pt;}
.y1eb{bottom:274.586667pt;}
.y7d{bottom:275.546667pt;}
.yb8{bottom:276.186667pt;}
.y1b6{bottom:280.666667pt;}
.y195{bottom:281.786667pt;}
.y113{bottom:286.586667pt;}
.y218{bottom:286.746667pt;}
.y154{bottom:288.506667pt;}
.y1d{bottom:289.146667pt;}
.y1ea{bottom:289.946667pt;}
.yb7{bottom:291.386667pt;}
.y7c{bottom:291.866667pt;}
.y1b5{bottom:296.026667pt;}
.y194{bottom:297.146667pt;}
.y112{bottom:301.786667pt;}
.y217{bottom:302.266667pt;}
.y10e{bottom:302.426667pt;}
.y153{bottom:303.866667pt;}
.y1e9{bottom:305.306667pt;}
.y1c{bottom:306.106667pt;}
.y7b{bottom:307.546667pt;}
.yb6{bottom:307.706667pt;}
.y1b4{bottom:311.386667pt;}
.y193{bottom:312.506667pt;}
.y10d{bottom:317.786667pt;}
.y111{bottom:317.946667pt;}
.y152{bottom:319.066667pt;}
.y1e8{bottom:320.666667pt;}
.y1b{bottom:322.906667pt;}
.y7a{bottom:324.186667pt;}
.y1b3{bottom:326.586667pt;}
.y192{bottom:327.706667pt;}
.y10c{bottom:332.986667pt;}
.y216{bottom:333.466667pt;}
.y110{bottom:334.266667pt;}
.y151{bottom:334.426667pt;}
.y1e7{bottom:335.866667pt;}
.yb5{bottom:339.226667pt;}
.y79{bottom:339.386667pt;}
.y1a{bottom:339.706667pt;}
.y191{bottom:343.066667pt;}
.y10b{bottom:348.346667pt;}
.y215{bottom:348.986667pt;}
.y10f{bottom:349.626667pt;}
.y1e6{bottom:351.226667pt;}
.yb4{bottom:354.426667pt;}
.y78{bottom:354.746667pt;}
.y19{bottom:356.506667pt;}
.y190{bottom:358.466667pt;}
.y150{bottom:362.786667pt;}
.y214{bottom:364.386667pt;}
.y10a{bottom:364.866667pt;}
.y1e5{bottom:366.626667pt;}
.y77{bottom:370.146667pt;}
.yb3{bottom:370.626667pt;}
.y18{bottom:373.306667pt;}
.y18f{bottom:373.826667pt;}
.y14f{bottom:379.426667pt;}
.y213{bottom:379.746667pt;}
.y109{bottom:380.226667pt;}
.y1e4{bottom:381.986667pt;}
.y76{bottom:385.346667pt;}
.yb2{bottom:386.946667pt;}
.y18e{bottom:389.026667pt;}
.y1b2{bottom:389.186667pt;}
.y17{bottom:390.306667pt;}
.y108{bottom:393.346667pt;}
.y212{bottom:395.426667pt;}
.y14e{bottom:396.066667pt;}
.y1e3{bottom:397.186667pt;}
.y75{bottom:400.706667pt;}
.yb1{bottom:403.266667pt;}
.y18d{bottom:404.386667pt;}
.y16{bottom:407.106667pt;}
.y15{bottom:407.906667pt;}
.y107{bottom:409.186667pt;}
.y211{bottom:411.106667pt;}
.y14d{bottom:412.066667pt;}
.y1e2{bottom:412.546667pt;}
.y74{bottom:415.906667pt;}
.yb0{bottom:418.466667pt;}
.y18c{bottom:419.586667pt;}
.y1b1{bottom:419.746667pt;}
.y106{bottom:425.186667pt;}
.y210{bottom:426.466667pt;}
.y1e1{bottom:427.906667pt;}
.y14c{bottom:428.066667pt;}
.y73{bottom:431.266667pt;}
.yaf{bottom:433.666667pt;}
.y18b{bottom:434.946667pt;}
.y1b0{bottom:435.106667pt;}
.y105{bottom:441.186667pt;}
.y20f{bottom:441.986667pt;}
.y1e0{bottom:443.266667pt;}
.y72{bottom:446.626667pt;}
.y14b{bottom:447.106667pt;}
.yae{bottom:449.986667pt;}
.y18a{bottom:450.306667pt;}
.y104{bottom:457.186667pt;}
.y20e{bottom:457.666667pt;}
.y1df{bottom:458.466667pt;}
.y71{bottom:461.826667pt;}
.y14a{bottom:463.746667pt;}
.yad{bottom:465.186667pt;}
.y189{bottom:465.506667pt;}
.y1af{bottom:465.666667pt;}
.y103{bottom:473.186667pt;}
.y1de{bottom:473.826667pt;}
.y70{bottom:477.186667pt;}
.y143{bottom:478.946667pt;}
.y188{bottom:480.866667pt;}
.yac{bottom:481.506667pt;}
.y1ae{bottom:482.146667pt;}
.y20d{bottom:488.706667pt;}
.y1dd{bottom:489.186667pt;}
.y102{bottom:491.906667pt;}
.y6f{bottom:492.546667pt;}
.y142{bottom:494.306667pt;}
.y187{bottom:497.346667pt;}
.y1ad{bottom:497.506667pt;}
.yab{bottom:497.666667pt;}
.y20c{bottom:504.226667pt;}
.y1dc{bottom:504.546667pt;}
.y149{bottom:507.106667pt;}
.y101{bottom:507.426667pt;}
.y6e{bottom:507.746667pt;}
.y141{bottom:509.506667pt;}
.y186{bottom:512.706667pt;}
.y1ac{bottom:512.866667pt;}
.yaa{bottom:513.826667pt;}
.y20b{bottom:519.586667pt;}
.y1db{bottom:519.746667pt;}
.y148{bottom:522.306667pt;}
.y6d{bottom:523.106667pt;}
.y100{bottom:524.066667pt;}
.y140{bottom:525.986667pt;}
.y185{bottom:527.906667pt;}
.y1ab{bottom:528.066667pt;}
.ya9{bottom:530.146667pt;}
.y20a{bottom:534.946667pt;}
.y1da{bottom:535.106667pt;}
.y6c{bottom:538.306667pt;}
.y147{bottom:538.626667pt;}
.ydf{bottom:539.266667pt;}
.y13f{bottom:541.346667pt;}
.y184{bottom:543.266667pt;}
.y1aa{bottom:543.426667pt;}
.ya8{bottom:545.506667pt;}
.y1d9{bottom:550.306667pt;}
.y6b{bottom:553.666667pt;}
.y146{bottom:554.786667pt;}
.yde{bottom:555.586667pt;}
.y13e{bottom:556.706667pt;}
.y183{bottom:558.626667pt;}
.y1a9{bottom:558.786667pt;}
.ya7{bottom:560.706667pt;}
.yff{bottom:562.626667pt;}
.y1d8{bottom:565.666667pt;}
.y6a{bottom:569.026667pt;}
.ydd{bottom:570.946667pt;}
.y145{bottom:571.106667pt;}
.y13d{bottom:572.066667pt;}
.y182{bottom:573.826667pt;}
.y1a8{bottom:573.986667pt;}
.ya6{bottom:576.066667pt;}
.yfe{bottom:577.853333pt;}
.y1d7{bottom:581.053333pt;}
.y209{bottom:581.213333pt;}
.y69{bottom:584.253333pt;}
.ydc{bottom:586.173333pt;}
.y144{bottom:586.333333pt;}
.y13c{bottom:587.293333pt;}
.y181{bottom:589.213333pt;}
.y1a7{bottom:589.373333pt;}
.ya5{bottom:591.453333pt;}
.yfd{bottom:593.213333pt;}
.y1d6{bottom:596.413333pt;}
.y208{bottom:596.573333pt;}
.y68{bottom:599.613333pt;}
.ydb{bottom:601.373333pt;}
.y13b{bottom:602.653333pt;}
.y180{bottom:604.573333pt;}
.y1a6{bottom:604.733333pt;}
.ya4{bottom:606.653333pt;}
.yfc{bottom:608.573333pt;}
.y1d5{bottom:611.613333pt;}
.y207{bottom:611.933333pt;}
.y67{bottom:614.813333pt;}
.y13a{bottom:615.773333pt;}
.yda{bottom:617.693333pt;}
.y17f{bottom:619.773333pt;}
.y1a5{bottom:620.093333pt;}
.ya3{bottom:621.853333pt;}
.yfb{bottom:623.773333pt;}
.y1d4{bottom:626.973333pt;}
.y206{bottom:627.453333pt;}
.y66{bottom:630.173333pt;}
.y139{bottom:631.613333pt;}
.yd9{bottom:634.013333pt;}
.y17e{bottom:635.133333pt;}
.y1a4{bottom:635.293333pt;}
.ya2{bottom:638.173333pt;}
.yfa{bottom:639.133333pt;}
.y1d3{bottom:642.333333pt;}
.y205{bottom:642.813333pt;}
.y65{bottom:645.533333pt;}
.y138{bottom:647.613333pt;}
.yd8{bottom:649.213333pt;}
.y17d{bottom:650.653333pt;}
.yf9{bottom:654.333333pt;}
.ya1{bottom:654.493333pt;}
.y1d2{bottom:657.533333pt;}
.y204{bottom:658.493333pt;}
.y64{bottom:660.733333pt;}
.y137{bottom:663.613333pt;}
.yd7{bottom:664.573333pt;}
.y1a3{bottom:666.013333pt;}
.y17c{bottom:667.293333pt;}
.ya0{bottom:669.533333pt;}
.yf8{bottom:669.693333pt;}
.y1d1{bottom:672.893333pt;}
.y203{bottom:674.013333pt;}
.y63{bottom:676.093333pt;}
.y136{bottom:679.613333pt;}
.yd6{bottom:679.773333pt;}
.y1a2{bottom:682.333333pt;}
.y17b{bottom:682.493333pt;}
.yf7{bottom:685.053333pt;}
.y9f{bottom:685.853333pt;}
.y1d0{bottom:688.253333pt;}
.y202{bottom:689.373333pt;}
.y62{bottom:691.453333pt;}
.yd5{bottom:695.133333pt;}
.y1a1{bottom:697.693333pt;}
.y17a{bottom:697.853333pt;}
.y135{bottom:698.653333pt;}
.yf6{bottom:700.253333pt;}
.y9e{bottom:701.213333pt;}
.y1cf{bottom:703.453333pt;}
.y201{bottom:705.053333pt;}
.y61{bottom:706.653333pt;}
.yd4{bottom:710.493333pt;}
.y179{bottom:713.053333pt;}
.y134{bottom:715.293333pt;}
.yf5{bottom:715.613333pt;}
.y9d{bottom:716.573333pt;}
.y1ce{bottom:718.813333pt;}
.y200{bottom:721.693333pt;}
.y60{bottom:722.013333pt;}
.yd3{bottom:726.973333pt;}
.y178{bottom:728.413333pt;}
.y130{bottom:730.493333pt;}
.yf4{bottom:730.973333pt;}
.y9c{bottom:733.053333pt;}
.y1cd{bottom:734.013333pt;}
.y1ff{bottom:737.053333pt;}
.y5f{bottom:737.213333pt;}
.y177{bottom:741.533333pt;}
.yd2{bottom:742.173333pt;}
.y12f{bottom:745.853333pt;}
.yf3{bottom:746.173333pt;}
.y133{bottom:747.133333pt;}
.y9b{bottom:748.413333pt;}
.y1cc{bottom:749.373333pt;}
.y1fe{bottom:752.413333pt;}
.y5e{bottom:752.573333pt;}
.y176{bottom:757.533333pt;}
.yd1{bottom:758.333333pt;}
.y12e{bottom:761.213333pt;}
.yf2{bottom:761.533333pt;}
.y132{bottom:762.333333pt;}
.y9a{bottom:763.613333pt;}
.y1cb{bottom:764.893333pt;}
.y1fd{bottom:767.613333pt;}
.y5d{bottom:767.933333pt;}
.y175{bottom:773.373333pt;}
.yd0{bottom:774.653333pt;}
.y12d{bottom:776.413333pt;}
.yf1{bottom:776.733333pt;}
.y131{bottom:777.693333pt;}
.y99{bottom:778.813333pt;}
.y1ca{bottom:781.533333pt;}
.y1fc{bottom:782.973333pt;}
.y5c{bottom:783.133333pt;}
.y174{bottom:789.373333pt;}
.ycf{bottom:790.013333pt;}
.yf0{bottom:792.093333pt;}
.y12c{bottom:792.893333pt;}
.y98{bottom:794.973333pt;}
.y1c9{bottom:796.893333pt;}
.y1fb{bottom:798.213333pt;}
.y5b{bottom:798.533333pt;}
.yce{bottom:805.253333pt;}
.y173{bottom:805.413333pt;}
.y12b{bottom:808.293333pt;}
.yef{bottom:808.613333pt;}
.y97{bottom:811.333333pt;}
.y1c8{bottom:812.293333pt;}
.y1fa{bottom:813.573333pt;}
.y5a{bottom:813.893333pt;}
.ycd{bottom:820.453333pt;}
.y172{bottom:821.413333pt;}
.y12a{bottom:823.653333pt;}
.yee{bottom:823.973333pt;}
.y96{bottom:826.693333pt;}
.y1c7{bottom:827.493333pt;}
.y1f9{bottom:828.933333pt;}
.y59{bottom:829.093333pt;}
.y14{bottom:832.773333pt;}
.ycc{bottom:836.773333pt;}
.y129{bottom:838.853333pt;}
.yed{bottom:839.173333pt;}
.y171{bottom:840.453333pt;}
.y95{bottom:842.053333pt;}
.y1c6{bottom:842.853333pt;}
.y1f8{bottom:844.293333pt;}
.y58{bottom:844.453333pt;}
.y12{bottom:846.693333pt;}
.ycb{bottom:851.973333pt;}
.y128{bottom:854.213333pt;}
.yec{bottom:854.533333pt;}
.y170{bottom:857.093333pt;}
.y1c5{bottom:858.213333pt;}
.y94{bottom:858.373333pt;}
.y1f7{bottom:859.493333pt;}
.y57{bottom:859.653333pt;}
.y127{bottom:867.333333pt;}
.yca{bottom:868.293333pt;}
.yeb{bottom:869.893333pt;}
.y16f{bottom:872.293333pt;}
.y1c4{bottom:873.573333pt;}
.y93{bottom:873.733333pt;}
.y1f6{bottom:874.853333pt;}
.y56{bottom:875.013333pt;}
.y11{bottom:883.333333pt;}
.yc9{bottom:883.493333pt;}
.y126{bottom:883.973333pt;}
.yea{bottom:885.093333pt;}
.y16e{bottom:887.653333pt;}
.y1c3{bottom:888.933333pt;}
.y92{bottom:889.093333pt;}
.y1f5{bottom:890.213333pt;}
.y55{bottom:890.373333pt;}
.ye{bottom:897.093333pt;}
.y125{bottom:899.813333pt;}
.ye9{bottom:900.453333pt;}
.yc8{bottom:900.933333pt;}
.y16d{bottom:903.013333pt;}
.y1c2{bottom:904.133333pt;}
.y91{bottom:904.453333pt;}
.y54{bottom:905.573333pt;}
.y124{bottom:915.813333pt;}
.ye8{bottom:915.973333pt;}
.yc7{bottom:916.293333pt;}
.y16c{bottom:918.213333pt;}
.y1c1{bottom:919.493333pt;}
.y90{bottom:919.653333pt;}
.y1f4{bottom:920.773333pt;}
.y53{bottom:920.933333pt;}
.yc6{bottom:932.453333pt;}
.ye7{bottom:932.613333pt;}
.y16b{bottom:933.573333pt;}
.y123{bottom:934.853333pt;}
.y8f{bottom:935.013333pt;}
.y1f3{bottom:936.133333pt;}
.y52{bottom:936.293333pt;}
.ye6{bottom:947.813333pt;}
.yc5{bottom:948.613333pt;}
.y16a{bottom:948.773333pt;}
.y8e{bottom:950.373333pt;}
.y51{bottom:951.493333pt;}
.yb{bottom:952.133333pt;}
.ye5{bottom:963.173333pt;}
.y169{bottom:964.133333pt;}
.yc4{bottom:964.933333pt;}
.y8d{bottom:965.573333pt;}
.y1f2{bottom:966.693333pt;}
.y50{bottom:966.853333pt;}
.ye4{bottom:978.373333pt;}
.y168{bottom:979.493333pt;}
.y8c{bottom:980.933333pt;}
.yc3{bottom:981.093333pt;}
.y4f{bottom:982.053333pt;}
.y9{bottom:983.493333pt;}
.ye3{bottom:994.533333pt;}
.y167{bottom:994.693333pt;}
.y8b{bottom:996.133333pt;}
.y4e{bottom:997.413333pt;}
.y8{bottom:1002.693333pt;}
.y166{bottom:1007.813333pt;}
.ye2{bottom:1010.853333pt;}
.y8a{bottom:1011.493333pt;}
.y4d{bottom:1012.773333pt;}
.y3{bottom:1020.960000pt;}
.y165{bottom:1023.840000pt;}
.y89{bottom:1026.880000pt;}
.ye1{bottom:1027.200000pt;}
.y4c{bottom:1028.000000pt;}
.y164{bottom:1039.840000pt;}
.y2{bottom:1040.640000pt;}
.ye0{bottom:1042.400000pt;}
.y4b{bottom:1043.360000pt;}
.y1{bottom:1060.160000pt;}
.h5{height:15.200000pt;}
.h1a{height:15.360000pt;}
.h1d{height:15.392000pt;}
.h1c{height:15.840000pt;}
.h1b{height:16.000000pt;}
.h18{height:17.920000pt;}
.h7{height:31.360000pt;}
.h3{height:32.507812pt;}
.hd{height:33.600000pt;}
.h15{height:34.945312pt;}
.h14{height:34.968750pt;}
.h8{height:35.975313pt;}
.h6{height:38.672812pt;}
.h16{height:38.698750pt;}
.h20{height:39.917813pt;}
.h9{height:41.966875pt;}
.h10{height:42.866250pt;}
.hc{height:42.895000pt;}
.h19{height:43.343750pt;}
.h4{height:44.246250pt;}
.h1f{height:44.768125pt;}
.h17{height:45.696000pt;}
.h13{height:51.941250pt;}
.ha{height:55.040000pt;}
.h11{height:56.269687pt;}
.he{height:58.563750pt;}
.h1e{height:60.288750pt;}
.h2{height:63.656250pt;}
.hb{height:69.890625pt;}
.h12{height:155.386667pt;}
.hf{height:420.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:44.032000pt;}
.w12{width:66.112000pt;}
.w1e{width:72.032000pt;}
.w1a{width:76.032000pt;}
.wa{width:86.112000pt;}
.we{width:100.832000pt;}
.w16{width:103.552000pt;}
.w22{width:110.112000pt;}
.w20{width:124.032000pt;}
.wc{width:126.592000pt;}
.w21{width:132.032000pt;}
.w1c{width:132.192000pt;}
.wf{width:147.546667pt;}
.w8{width:157.946667pt;}
.w14{width:162.266667pt;}
.w1d{width:174.106667pt;}
.w17{width:175.386667pt;}
.wd{width:184.826667pt;}
.w9{width:207.706667pt;}
.w18{width:209.666667pt;}
.w15{width:222.106667pt;}
.w13{width:227.106667pt;}
.w10{width:231.586667pt;}
.w19{width:253.626667pt;}
.w7{width:263.266667pt;}
.w11{width:269.786667pt;}
.wb{width:302.626667pt;}
.w1b{width:336.546667pt;}
.w1f{width:348.866667pt;}
.w4{width:718.400000pt;}
.w3{width:727.840000pt;}
.w5{width:793.599976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x9{left:14.426667pt;}
.x1{left:37.759988pt;}
.x20{left:40.959988pt;}
.x5{left:47.039976pt;}
.x12{left:76.671988pt;}
.x1a{left:104.031988pt;}
.xe{left:131.071988pt;}
.x16{left:161.146655pt;}
.x13{left:186.586667pt;}
.xa{left:215.226655pt;}
.x17{left:266.146667pt;}
.xb{left:302.306667pt;}
.xf{left:341.666667pt;}
.x1d{left:375.746667pt;}
.x21{left:387.906667pt;}
.x7{left:396.893322pt;}
.x6{left:412.093322pt;}
.x14{left:418.813333pt;}
.x1b{left:424.893333pt;}
.x18{left:429.053333pt;}
.xc{left:460.893333pt;}
.x10{left:468.893333pt;}
.x1e{left:508.573333pt;}
.x22{left:512.573333pt;}
.x3{left:632.613333pt;}
.x23{left:645.253333pt;}
.x19{left:651.813333pt;}
.x11{left:654.533333pt;}
.xd{left:669.253333pt;}
.x1c{left:679.333333pt;}
.x1f{left:683.333333pt;}
.x15{left:689.253333pt;}
.x4{left:699.680000pt;}
.x8{left:710.053333pt;}
}




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