
    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_53c508bbf1e28fe0207be5d5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_bd18de70eb468d6078c77c5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_6dd5423a157bec33ebf8639c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4cd4a5d7462297a313efbc19.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932129;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_c36adff46467637abd9ab523.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008301;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_8995d1dee1b175ac9cc41574.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.760254;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_9afd4bdab47c5492f1d7ec6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.768066;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_020d5f73ffa1168616b9354c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_67d73b1f57f59c3ad2dc1bb3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.891113;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_1d21e1b2590ff2534c1c26e3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.763184;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_14ff6a4a085494a0c4b39649.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.008301;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_e7c3526e9d12d742476d2b7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.924805;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_28c330a2b354145d6c4b7f2a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008301;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_cd13bfad111b74d0cd21d0f9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_6675eb54e031fd1efec1cda1.woff2')format("woff");}.fff{font-family:fff;line-height:0.924805;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_c36adff46467637abd9ab523.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008301;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_b316c98eead29a570f05ffda.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.891113;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_d66ca4375093e46e18261b4b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.891113;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_1d21e1b2590ff2534c1c26e3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.763184;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_81e39643cc8ce39904a11c55.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.760254;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_3785f58af6422f966c852df3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_d920b46d1f21cd1447de13f3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.909180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_65db853ffbee098b6d1f94f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;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:ff19;src:url('chunks/assets/font_3906ed612620ce29c6551833.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.014160;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;}
.m2{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);}
.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;}
.lsc{letter-spacing:-0.888000px;}
.ls7{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.105000px;}
.ls11{letter-spacing:-0.005760px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005760px;}
.ls8{letter-spacing:0.019440px;}
.lsd{letter-spacing:0.119520px;}
.ls5{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.164400px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.257040px;}
.ls6{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.305280px;}
.ls12{letter-spacing:0.328200px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:847.596000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(78,91,116),0 0.015em rgb(78,91,116),0.015em 0 rgb(78,91,116),0 -0.015em  rgb(78,91,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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(78,91,116);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.724400px;}
.ws1{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.672000px;}
.ws3{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.959440px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws8{word-spacing:-12.675000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-1.718880px;}
._2{width:1.036320px;}
._13{width:2.485440px;}
._3{width:3.508320px;}
._14{width:193.747680px;}
._7{width:527.337600px;}
._12{width:847.596000px;}
._c{width:869.003040px;}
._8{width:1123.570560px;}
._9{width:1136.951040px;}
._1{width:1243.716000px;}
._e{width:1386.940320px;}
._d{width:1403.364480px;}
._a{width:1452.448320px;}
._f{width:1765.915680px;}
._b{width:1807.166880px;}
._6{width:1884.393600px;}
._5{width:1984.826400px;}
._10{width:1986.696960px;}
._11{width:2001.932160px;}
._4{width:2113.663200px;}
.fc4{color:transparent;}
.fc3{color:rgb(78,91,116);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs7{font-size:5.760000px;}
.fsd{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fs0{font-size:48.000000px;}
.fse{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:75.893905px;}
.fs4{font-size:84.240000px;}
.fs8{font-size:95.760000px;}
.fs5{font-size:192.240000px;}
.y33{bottom:-33.300000px;}
.y35{bottom:-20.520000px;}
.y19{bottom:-0.576045px;}
.y0{bottom:0.000000px;}
.y28{bottom:4.500000px;}
.y65{bottom:4.680000px;}
.y58{bottom:4.860000px;}
.y2b{bottom:5.580000px;}
.y1a6{bottom:6.120000px;}
.y1a0{bottom:6.660000px;}
.y164{bottom:7.020000px;}
.y16d{bottom:7.200000px;}
.y116{bottom:9.180000px;}
.y1a3{bottom:9.540000px;}
.y11b{bottom:10.620000px;}
.y118{bottom:10.800000px;}
.y1b0{bottom:11.340000px;}
.y1aa{bottom:11.520000px;}
.y19e{bottom:11.700000px;}
.y1ae{bottom:11.880000px;}
.y1a8{bottom:12.060000px;}
.y1ac{bottom:12.240000px;}
.y1b3{bottom:12.600000px;}
.y1a5{bottom:26.280000px;}
.y57{bottom:26.640000px;}
.y16a{bottom:28.080000px;}
.y163{bottom:28.260000px;}
.y16c{bottom:28.290000px;}
.y66{bottom:29.880000px;}
.y32{bottom:30.060000px;}
.y2e{bottom:42.480000px;}
.y2d{bottom:44.100000px;}
.y2c{bottom:45.540000px;}
.y166{bottom:46.440000px;}
.y2a{bottom:46.800000px;}
.y56{bottom:47.700000px;}
.y27{bottom:52.380000px;}
.y36{bottom:57.600000px;}
.y55{bottom:69.120000px;}
.y31{bottom:84.420000px;}
.y54{bottom:91.260000px;}
.ye8{bottom:102.600000px;}
.y63{bottom:103.320000px;}
.y1c5{bottom:103.680000px;}
.y62{bottom:104.580000px;}
.y144{bottom:106.740000px;}
.y59{bottom:109.080000px;}
.y53{bottom:113.580000px;}
.y1f1{bottom:114.480000px;}
.y49{bottom:114.660000px;}
.y1e5{bottom:117.720000px;}
.y1c4{bottom:118.620000px;}
.y106{bottom:121.140000px;}
.y1fa{bottom:121.680000px;}
.y20d{bottom:123.660000px;}
.ybc{bottom:124.020000px;}
.y1cb{bottom:124.200000px;}
.ye7{bottom:124.920000px;}
.y143{bottom:129.060000px;}
.y14a{bottom:129.780000px;}
.y1c3{bottom:133.560000px;}
.y52{bottom:135.930000px;}
.y16f{bottom:136.260000px;}
.y1f0{bottom:136.800000px;}
.y1c2{bottom:137.340000px;}
.y30{bottom:138.960000px;}
.y25{bottom:139.725000px;}
.y1e4{bottom:140.040000px;}
.y24b{bottom:142.560000px;}
.y105{bottom:143.460000px;}
.y1ca{bottom:144.000000px;}
.y20c{bottom:145.980000px;}
.y128{bottom:146.160000px;}
.ybb{bottom:146.340000px;}
.y23{bottom:146.550000px;}
.ye6{bottom:147.060000px;}
.y1c1{bottom:150.300000px;}
.y142{bottom:151.200000px;}
.y149{bottom:151.380000px;}
.y231{bottom:152.100000px;}
.y51{bottom:158.070000px;}
.y1ef{bottom:158.940000px;}
.y16e{bottom:159.480000px;}
.y18c{bottom:162.000000px;}
.y1e3{bottom:162.180000px;}
.y1f9{bottom:166.320000px;}
.y26{bottom:166.365000px;}
.y20b{bottom:168.120000px;}
.y127{bottom:168.480000px;}
.yba{bottom:168.660000px;}
.y22{bottom:168.870000px;}
.ye5{bottom:169.380000px;}
.y148{bottom:169.560000px;}
.y1c0{bottom:170.460000px;}
.y17{bottom:171.000000px;}
.y141{bottom:173.520000px;}
.y230{bottom:174.420000px;}
.y50{bottom:179.490000px;}
.y24a{bottom:179.820000px;}
.y104{bottom:180.540000px;}
.y48{bottom:180.570000px;}
.y1c9{bottom:181.260000px;}
.y16{bottom:183.000000px;}
.y18b{bottom:184.320000px;}
.y1e2{bottom:184.500000px;}
.y1f8{bottom:188.460000px;}
.y20a{bottom:190.440000px;}
.y126{bottom:190.800000px;}
.y21{bottom:191.010000px;}
.ye4{bottom:191.700000px;}
.y15{bottom:195.000000px;}
.y140{bottom:195.840000px;}
.y22f{bottom:196.740000px;}
.y4f{bottom:200.550000px;}
.y249{bottom:202.140000px;}
.y47{bottom:202.710000px;}
.y103{bottom:202.860000px;}
.y1bf{bottom:203.580000px;}
.yb9{bottom:205.740000px;}
.y18a{bottom:206.640000px;}
.y1e1{bottom:206.820000px;}
.y1f7{bottom:210.780000px;}
.y209{bottom:212.760000px;}
.y125{bottom:212.940000px;}
.y14{bottom:213.000000px;}
.y20{bottom:213.330000px;}
.y195{bottom:213.840000px;}
.y16b{bottom:216.900000px;}
.y13f{bottom:217.980000px;}
.ye3{bottom:221.760000px;}
.y4e{bottom:222.330000px;}
.y13{bottom:225.000000px;}
.y46{bottom:225.030000px;}
.y102{bottom:225.180000px;}
.y1c8{bottom:225.720000px;}
.y1be{bottom:225.900000px;}
.yb8{bottom:228.060000px;}
.y189{bottom:228.960000px;}
.y1f6{bottom:233.130000px;}
.y22e{bottom:233.850000px;}
.y208{bottom:234.930000px;}
.y124{bottom:235.290000px;}
.y1f{bottom:235.650000px;}
.y12{bottom:237.000000px;}
.y248{bottom:239.250000px;}
.y13e{bottom:240.330000px;}
.y1e0{bottom:243.930000px;}
.y194{bottom:244.110000px;}
.y4d{bottom:244.650000px;}
.y12c{bottom:245.910000px;}
.y45{bottom:247.350000px;}
.y101{bottom:247.530000px;}
.y1c7{bottom:248.070000px;}
.y1bd{bottom:248.250000px;}
.y12b{bottom:249.870000px;}
.yb7{bottom:250.410000px;}
.y188{bottom:251.130000px;}
.y1f5{bottom:255.270000px;}
.y22d{bottom:256.170000px;}
.y123{bottom:257.610000px;}
.y1e{bottom:257.790000px;}
.y11{bottom:261.000000px;}
.y13d{bottom:262.650000px;}
.y12a{bottom:264.090000px;}
.y1df{bottom:266.250000px;}
.y4c{bottom:266.970000px;}
.y44{bottom:269.490000px;}
.y100{bottom:269.670000px;}
.ye2{bottom:270.210000px;}
.y1bc{bottom:270.390000px;}
.y207{bottom:272.550000px;}
.yb6{bottom:272.730000px;}
.y10{bottom:273.000000px;}
.y187{bottom:273.450000px;}
.y169{bottom:274.530000px;}
.y247{bottom:276.510000px;}
.y1f4{bottom:277.590000px;}
.y1b{bottom:278.355000px;}
.y122{bottom:279.750000px;}
.y1d{bottom:280.110000px;}
.y13c{bottom:284.790000px;}
.yf{bottom:285.000000px;}
.y1de{bottom:288.570000px;}
.y4b{bottom:289.110000px;}
.y43{bottom:291.810000px;}
.yff{bottom:291.990000px;}
.ye1{bottom:292.530000px;}
.y1bb{bottom:292.710000px;}
.y22c{bottom:293.430000px;}
.yb5{bottom:294.870000px;}
.y186{bottom:295.770000px;}
.y1f3{bottom:299.910000px;}
.y121{bottom:302.070000px;}
.y34{bottom:302.430000px;}
.y13b{bottom:307.110000px;}
.y2f{bottom:307.830000px;}
.y4a{bottom:310.530000px;}
.y1dd{bottom:310.890000px;}
.y246{bottom:313.770000px;}
.y42{bottom:314.130000px;}
.yfe{bottom:314.310000px;}
.ye0{bottom:314.850000px;}
.y1ba{bottom:315.030000px;}
.y22b{bottom:315.750000px;}
.y61{bottom:316.665000px;}
.yb4{bottom:317.190000px;}
.y185{bottom:317.910000px;}
.y1f2{bottom:322.050000px;}
.y120{bottom:323.490000px;}
.y29{bottom:329.070000px;}
.y5b{bottom:329.970000px;}
.y1dc{bottom:333.030000px;}
.y41{bottom:336.315000px;}
.yfd{bottom:336.450000px;}
.ydf{bottom:337.170000px;}
.y22a{bottom:338.070000px;}
.yb3{bottom:339.510000px;}
.y11f{bottom:341.670000px;}
.y13a{bottom:344.370000px;}
.y168{bottom:350.130000px;}
.y245{bottom:351.030000px;}
.y1ee{bottom:352.110000px;}
.y60{bottom:352.845000px;}
.y184{bottom:355.170000px;}
.y1db{bottom:355.350000px;}
.y40{bottom:358.635000px;}
.yde{bottom:359.310000px;}
.y1b9{bottom:359.490000px;}
.yb2{bottom:361.650000px;}
.y11e{bottom:364.890000px;}
.y139{bottom:366.690000px;}
.y206{bottom:371.370000px;}
.y244{bottom:373.350000px;}
.yfc{bottom:373.710000px;}
.y1ed{bottom:374.430000px;}
.y229{bottom:375.150000px;}
.y183{bottom:377.490000px;}
.y1da{bottom:377.670000px;}
.y3f{bottom:380.955000px;}
.ydd{bottom:381.630000px;}
.yb1{bottom:383.970000px;}
.y5f{bottom:388.155000px;}
.y138{bottom:388.830000px;}
.y205{bottom:393.690000px;}
.yfb{bottom:396.030000px;}
.y1ec{bottom:396.570000px;}
.y1b8{bottom:396.750000px;}
.y228{bottom:397.470000px;}
.y182{bottom:399.810000px;}
.y3e{bottom:403.095000px;}
.ydc{bottom:403.950000px;}
.yb0{bottom:406.290000px;}
.y11d{bottom:406.470000px;}
.y24{bottom:407.370000px;}
.y167{bottom:407.730000px;}
.y243{bottom:410.610000px;}
.y137{bottom:411.150000px;}
.y204{bottom:416.010000px;}
.yfa{bottom:418.350000px;}
.y1eb{bottom:418.890000px;}
.y181{bottom:421.950000px;}
.y1b7{bottom:423.210000px;}
.y3d{bottom:425.415000px;}
.ydb{bottom:426.090000px;}
.yaf{bottom:428.430000px;}
.y1d9{bottom:430.050000px;}
.y242{bottom:432.930000px;}
.y136{bottom:433.470000px;}
.y227{bottom:434.730000px;}
.y203{bottom:438.330000px;}
.yf9{bottom:440.490000px;}
.y92{bottom:440.670000px;}
.y1ea{bottom:441.210000px;}
.y5e{bottom:442.515000px;}
.y180{bottom:444.270000px;}
.y3c{bottom:447.735000px;}
.y11c{bottom:448.050000px;}
.yda{bottom:448.410000px;}
.yae{bottom:450.750000px;}
.y135{bottom:455.610000px;}
.y226{bottom:457.050000px;}
.y91{bottom:460.470000px;}
.ye{bottom:462.000000px;}
.yf8{bottom:462.855000px;}
.y1e9{bottom:463.395000px;}
.y165{bottom:465.195000px;}
.y1b6{bottom:465.555000px;}
.y17f{bottom:466.635000px;}
.y3b{bottom:469.875000px;}
.y241{bottom:470.235000px;}
.yd9{bottom:470.775000px;}
.yad{bottom:473.115000px;}
.yd{bottom:477.000000px;}
.y1d8{bottom:478.515000px;}
.y90{bottom:482.835000px;}
.yf7{bottom:485.175000px;}
.y1e8{bottom:485.715000px;}
.y19b{bottom:488.055000px;}
.y17e{bottom:488.775000px;}
.y11a{bottom:489.675000px;}
.yc{bottom:492.000000px;}
.y3a{bottom:492.195000px;}
.y240{bottom:492.555000px;}
.yd8{bottom:492.915000px;}
.y225{bottom:494.355000px;}
.yac{bottom:495.255000px;}
.y5d{bottom:497.055000px;}
.y1d7{bottom:500.835000px;}
.y8f{bottom:505.155000px;}
.yb{bottom:507.000000px;}
.yf6{bottom:507.315000px;}
.y1b5{bottom:507.495000px;}
.y193{bottom:507.855000px;}
.y1e7{bottom:508.035000px;}
.y17d{bottom:511.095000px;}
.y39{bottom:514.515000px;}
.yd7{bottom:515.235000px;}
.y224{bottom:516.675000px;}
.yab{bottom:517.575000px;}
.y1d6{bottom:523.155000px;}
.y8e{bottom:527.295000px;}
.yf5{bottom:529.635000px;}
.y192{bottom:530.175000px;}
.y119{bottom:531.075000px;}
.y17c{bottom:533.415000px;}
.y38{bottom:535.935000px;}
.y134{bottom:537.555000px;}
.y162{bottom:540.795000px;}
.y202{bottom:542.235000px;}
.y19a{bottom:545.115000px;}
.y1d5{bottom:545.295000px;}
.y8d{bottom:549.615000px;}
.y1b4{bottom:549.795000px;}
.y5c{bottom:551.415000px;}
.yf4{bottom:551.955000px;}
.yd6{bottom:552.495000px;}
.y223{bottom:553.755000px;}
.yaa{bottom:554.835000px;}
.y17b{bottom:555.555000px;}
.y133{bottom:559.695000px;}
.y201{bottom:564.555000px;}
.ya{bottom:567.000000px;}
.y199{bottom:567.435000px;}
.y1d4{bottom:567.615000px;}
.y8c{bottom:571.935000px;}
.y117{bottom:572.655000px;}
.y23f{bottom:574.275000px;}
.yd5{bottom:574.815000px;}
.y222{bottom:576.075000px;}
.ya9{bottom:577.155000px;}
.y17a{bottom:577.875000px;}
.y132{bottom:582.015000px;}
.y200{bottom:586.875000px;}
.yf3{bottom:589.035000px;}
.y198{bottom:589.755000px;}
.y1d3{bottom:589.935000px;}
.y1b2{bottom:592.455000px;}
.y23e{bottom:596.595000px;}
.yd4{bottom:596.955000px;}
.ya8{bottom:599.295000px;}
.y37{bottom:603.615000px;}
.y8b{bottom:609.015000px;}
.y1ff{bottom:609.195000px;}
.yf2{bottom:611.355000px;}
.y161{bottom:612.075000px;}
.y1c{bottom:612.435000px;}
.y221{bottom:613.335000px;}
.y115{bottom:614.235000px;}
.y179{bottom:615.135000px;}
.yd3{bottom:619.275000px;}
.ya7{bottom:621.615000px;}
.y8a{bottom:631.335000px;}
.yf1{bottom:633.675000px;}
.y197{bottom:634.215000px;}
.y160{bottom:634.395000px;}
.y1b1{bottom:635.655000px;}
.y178{bottom:637.455000px;}
.yd2{bottom:641.595000px;}
.ya6{bottom:643.935000px;}
.y89{bottom:653.655000px;}
.yf0{bottom:655.995000px;}
.y191{bottom:656.535000px;}
.y1d2{bottom:656.715000px;}
.y177{bottom:659.595000px;}
.yd1{bottom:663.735000px;}
.y114{bottom:668.055000px;}
.y15f{bottom:671.655000px;}
.y9{bottom:672.000000px;}
.y220{bottom:672.915000px;}
.y88{bottom:675.975000px;}
.yef{bottom:678.135000px;}
.y1af{bottom:678.315000px;}
.y190{bottom:678.855000px;}
.ya5{bottom:681.015000px;}
.y176{bottom:681.915000px;}
.yd0{bottom:686.055000px;}
.y8{bottom:687.000000px;}
.y113{bottom:690.375000px;}
.y15e{bottom:694.005000px;}
.y77{bottom:694.905000px;}
.y21f{bottom:695.265000px;}
.y76{bottom:696.345000px;}
.y87{bottom:698.145000px;}
.yee{bottom:700.485000px;}
.y23d{bottom:700.665000px;}
.y18f{bottom:701.025000px;}
.y1d1{bottom:701.205000px;}
.ya4{bottom:703.365000px;}
.y175{bottom:704.265000px;}
.ycf{bottom:708.405000px;}
.y75{bottom:710.025000px;}
.y15d{bottom:716.145000px;}
.y1ad{bottom:720.285000px;}
.y86{bottom:720.465000px;}
.y23c{bottom:722.805000px;}
.y18e{bottom:723.345000px;}
.y1d0{bottom:723.525000px;}
.ya3{bottom:725.685000px;}
.y112{bottom:727.665000px;}
.yce{bottom:730.545000px;}
.y7{bottom:732.000000px;}
.y21e{bottom:732.345000px;}
.y174{bottom:734.325000px;}
.yed{bottom:737.925000px;}
.y15c{bottom:738.465000px;}
.y74{bottom:739.905000px;}
.y85{bottom:742.785000px;}
.y23b{bottom:745.125000px;}
.y1c6{bottom:745.485000px;}
.y18d{bottom:745.665000px;}
.y6{bottom:747.000000px;}
.ya2{bottom:748.005000px;}
.y111{bottom:749.985000px;}
.y212{bottom:752.865000px;}
.y21d{bottom:754.665000px;}
.y1fe{bottom:757.725000px;}
.y15b{bottom:760.785000px;}
.y1ab{bottom:762.765000px;}
.y84{bottom:764.925000px;}
.yec{bottom:765.285000px;}
.y23a{bottom:767.445000px;}
.ycd{bottom:767.805000px;}
.y1cf{bottom:767.985000px;}
.y73{bottom:769.605000px;}
.ya1{bottom:770.145000px;}
.y110{bottom:772.305000px;}
.y211{bottom:775.185000px;}
.y21c{bottom:776.985000px;}
.y1fd{bottom:780.045000px;}
.y173{bottom:782.745000px;}
.y15a{bottom:782.925000px;}
.y83{bottom:787.245000px;}
.ycc{bottom:790.125000px;}
.ya0{bottom:792.465000px;}
.y10f{bottom:794.445000px;}
.y210{bottom:797.325000px;}
.y72{bottom:799.305000px;}
.y1fc{bottom:802.185000px;}
.y239{bottom:804.525000px;}
.y172{bottom:805.065000px;}
.y159{bottom:805.245000px;}
.y1a9{bottom:805.785000px;}
.ycb{bottom:812.445000px;}
.y21b{bottom:814.245000px;}
.y9f{bottom:814.785000px;}
.y10e{bottom:816.765000px;}
.y82{bottom:824.505000px;}
.y238{bottom:826.845000px;}
.y171{bottom:827.385000px;}
.y158{bottom:827.565000px;}
.y71{bottom:829.185000px;}
.yca{bottom:834.585000px;}
.y21a{bottom:836.565000px;}
.y9e{bottom:836.925000px;}
.y10d{bottom:839.085000px;}
.y81{bottom:846.825000px;}
.y1a7{bottom:848.085000px;}
.y5{bottom:849.000000px;}
.y237{bottom:849.165000px;}
.y196{bottom:849.525000px;}
.y157{bottom:849.705000px;}
.y147{bottom:854.025000px;}
.yc9{bottom:856.905000px;}
.y70{bottom:858.885000px;}
.y9d{bottom:859.245000px;}
.y80{bottom:868.965000px;}
.y170{bottom:871.845000px;}
.y156{bottom:872.025000px;}
.y219{bottom:873.645000px;}
.y10c{bottom:876.165000px;}
.yeb{bottom:879.045000px;}
.yc8{bottom:879.225000px;}
.y9c{bottom:881.565000px;}
.y236{bottom:886.425000px;}
.y6f{bottom:888.585000px;}
.y1a4{bottom:890.745000px;}
.y7f{bottom:891.285000px;}
.y4{bottom:894.000000px;}
.y131{bottom:894.165000px;}
.y1ce{bottom:894.345000px;}
.y218{bottom:895.965000px;}
.y10b{bottom:898.485000px;}
.yc7{bottom:901.365000px;}
.y9b{bottom:903.705000px;}
.y250{bottom:908.205000px;}
.y235{bottom:908.745000px;}
.y155{bottom:909.285000px;}
.y1a{bottom:910.005000px;}
.y7e{bottom:913.605000px;}
.y1e6{bottom:916.305000px;}
.y130{bottom:916.485000px;}
.y6e{bottom:918.465000px;}
.y10a{bottom:920.805000px;}
.yc6{bottom:923.685000px;}
.y3{bottom:924.000000px;}
.y9a{bottom:926.070000px;}
.y234{bottom:930.930000px;}
.y154{bottom:931.650000px;}
.y217{bottom:933.270000px;}
.y7d{bottom:935.790000px;}
.y12f{bottom:938.670000px;}
.y1cd{bottom:938.850000px;}
.y109{bottom:943.170000px;}
.y24f{bottom:945.510000px;}
.yc5{bottom:946.050000px;}
.y1a2{bottom:947.670000px;}
.y6d{bottom:948.210000px;}
.y99{bottom:948.390000px;}
.y233{bottom:953.250000px;}
.y153{bottom:953.790000px;}
.y216{bottom:955.590000px;}
.y7c{bottom:958.110000px;}
.y12e{bottom:960.990000px;}
.y1cc{bottom:961.170000px;}
.yea{bottom:968.190000px;}
.y152{bottom:976.110000px;}
.y6c{bottom:977.910000px;}
.y7b{bottom:980.430000px;}
.y108{bottom:980.610000px;}
.y24e{bottom:982.770000px;}
.yc4{bottom:983.130000px;}
.y12d{bottom:983.310000px;}
.y98{bottom:985.470000px;}
.y1a1{bottom:987.810000px;}
.ye9{bottom:990.510000px;}
.y215{bottom:992.850000px;}
.y1fb{bottom:995.730000px;}
.y151{bottom:998.430000px;}
.y7a{bottom:1002.570000px;}
.yc3{bottom:1005.450000px;}
.y6b{bottom:1007.790000px;}
.y20f{bottom:1012.830000px;}
.y214{bottom:1015.170000px;}
.y146{bottom:1017.870000px;}
.y24d{bottom:1020.030000px;}
.y150{bottom:1020.570000px;}
.y19f{bottom:1023.090000px;}
.y79{bottom:1024.890000px;}
.yc2{bottom:1027.770000px;}
.y97{bottom:1030.110000px;}
.y232{bottom:1034.970000px;}
.y213{bottom:1037.310000px;}
.y6a{bottom:1037.490000px;}
.y14f{bottom:1042.890000px;}
.y20e{bottom:1049.910000px;}
.yc1{bottom:1050.090000px;}
.y96{bottom:1052.430000px;}
.y129{bottom:1057.290000px;}
.y19d{bottom:1060.530000px;}
.y78{bottom:1062.330000px;}
.y14e{bottom:1065.210000px;}
.y69{bottom:1067.190000px;}
.yc0{bottom:1072.230000px;}
.y2{bottom:1074.000000px;}
.y95{bottom:1074.570000px;}
.y107{bottom:1074.750000px;}
.y24c{bottom:1079.610000px;}
.y14d{bottom:1087.350000px;}
.ybf{bottom:1094.550000px;}
.y94{bottom:1096.890000px;}
.y68{bottom:1097.070000px;}
.y14c{bottom:1109.670000px;}
.y145{bottom:1116.690000px;}
.ybe{bottom:1116.870000px;}
.y19c{bottom:1121.190000px;}
.y67{bottom:1134.330000px;}
.y93{bottom:1134.510000px;}
.ybd{bottom:1139.010000px;}
.y14b{bottom:1139.910000px;}
.y5a{bottom:1155.240000px;}
.y64{bottom:1192.320000px;}
.y18{bottom:1228.500000px;}
.y1{bottom:1248.000000px;}
.hf{height:2.093906px;}
.h10{height:4.187813px;}
.h2e{height:20.160000px;}
.h1c{height:20.340000px;}
.h38{height:21.986016px;}
.h2d{height:22.320000px;}
.h20{height:25.020000px;}
.h2f{height:25.200000px;}
.h23{height:26.460000px;}
.h24{height:26.496000px;}
.h22{height:26.640000px;}
.h37{height:27.000000px;}
.h35{height:27.036000px;}
.h32{height:27.180000px;}
.h2c{height:27.360000px;}
.h34{height:27.540000px;}
.h31{height:27.720000px;}
.h33{height:27.900000px;}
.h36{height:28.260000px;}
.h2b{height:28.381641px;}
.h4{height:34.781250px;}
.h39{height:37.166836px;}
.h26{height:39.260742px;}
.h25{height:39.418945px;}
.h27{height:39.577148px;}
.h30{height:41.976000px;}
.h28{height:42.480000px;}
.h2a{height:42.516000px;}
.h13{height:43.448555px;}
.h21{height:43.623633px;}
.h1d{height:46.366523px;}
.h6{height:48.159844px;}
.h1f{height:48.353906px;}
.h16{height:48.547969px;}
.h1{height:50.062500px;}
.h15{height:54.000000px;}
.h18{height:56.920429px;}
.h29{height:60.660000px;}
.h3{height:62.578125px;}
.h9{height:63.180000px;}
.h1e{height:71.613281px;}
.h1a{height:71.820000px;}
.h2{height:75.093750px;}
.hc{height:144.180000px;}
.h11{height:182.910000px;}
.hb{height:183.630000px;}
.h12{height:209.550000px;}
.h1b{height:225.390000px;}
.ha{height:297.570000px;}
.h8{height:297.615000px;}
.hd{height:346.530000px;}
.h17{height:488.955000px;}
.h14{height:552.885000px;}
.he{height:565.635000px;}
.h19{height:595.365000px;}
.h7{height:1262.513955px;}
.h5{height:1262.880000px;}
.h0{height:1263.000000px;}
.w7{width:2.160000px;}
.we{width:44.280000px;}
.w13{width:44.316000px;}
.wf{width:49.320000px;}
.wc{width:86.040000px;}
.wd{width:158.610000px;}
.w12{width:555.765000px;}
.w14{width:600.810000px;}
.wb{width:601.710000px;}
.wa{width:604.950000px;}
.w10{width:646.350000px;}
.w6{width:659.130000px;}
.w8{width:661.290000px;}
.w5{width:711.870000px;}
.w9{width:834.479985px;}
.w0{width:892.500000px;}
.w4{width:892.619985px;}
.w11{width:892.979973px;}
.w3{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:1.440015px;}
.xb{left:3.420000px;}
.x16{left:6.654000px;}
.x1e{left:15.114000px;}
.xd{left:55.074000px;}
.x1b{left:69.120000px;}
.xc{left:70.914000px;}
.x13{left:76.500000px;}
.x1{left:85.500000px;}
.x2{left:100.500000px;}
.x3{left:127.655987px;}
.x6{left:129.096000px;}
.x8{left:144.575987px;}
.x15{left:146.196000px;}
.x1f{left:148.355987px;}
.x20{left:153.029987px;}
.x1c{left:161.129973px;}
.x14{left:165.809987px;}
.x9{left:180.039000px;}
.x10{left:223.779000px;}
.xe{left:249.159000px;}
.xf{left:302.469000px;}
.x17{left:305.535000px;}
.x18{left:350.535000px;}
.xa{left:353.949000px;}
.x11{left:515.094000px;}
.x1a{left:631.049987px;}
.x1d{left:702.690000px;}
.x19{left:709.529987px;}
.x12{left:746.280000px;}
.x5{left:786.780000px;}
.x4{left:893.339985px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.789333pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.093333pt;}
.ls11{letter-spacing:-0.005120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.005120pt;}
.ls8{letter-spacing:0.017280pt;}
.lsd{letter-spacing:0.106240pt;}
.ls5{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.146133pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.228480pt;}
.ls6{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.271360pt;}
.ls12{letter-spacing:0.291733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:753.418667pt;}
.ws9{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.866133pt;}
.ws1{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.930667pt;}
.ws3{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.297280pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws8{word-spacing:-11.266667pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-1.527893pt;}
._2{width:0.921173pt;}
._13{width:2.209280pt;}
._3{width:3.118507pt;}
._14{width:172.220160pt;}
._7{width:468.744533pt;}
._12{width:753.418667pt;}
._c{width:772.447147pt;}
._8{width:998.729387pt;}
._9{width:1010.623147pt;}
._1{width:1105.525333pt;}
._e{width:1232.835840pt;}
._d{width:1247.435093pt;}
._a{width:1291.065173pt;}
._f{width:1569.702827pt;}
._b{width:1606.370560pt;}
._6{width:1675.016533pt;}
._5{width:1764.290133pt;}
._10{width:1765.952853pt;}
._11{width:1779.495253pt;}
._4{width:1878.811733pt;}
.fs6{font-size:2.560000pt;}
.fs7{font-size:5.120000pt;}
.fsd{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:67.461249pt;}
.fs4{font-size:74.880000pt;}
.fs8{font-size:85.120000pt;}
.fs5{font-size:170.880000pt;}
.y33{bottom:-29.600000pt;}
.y35{bottom:-18.240000pt;}
.y19{bottom:-0.512040pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:4.000000pt;}
.y65{bottom:4.160000pt;}
.y58{bottom:4.320000pt;}
.y2b{bottom:4.960000pt;}
.y1a6{bottom:5.440000pt;}
.y1a0{bottom:5.920000pt;}
.y164{bottom:6.240000pt;}
.y16d{bottom:6.400000pt;}
.y116{bottom:8.160000pt;}
.y1a3{bottom:8.480000pt;}
.y11b{bottom:9.440000pt;}
.y118{bottom:9.600000pt;}
.y1b0{bottom:10.080000pt;}
.y1aa{bottom:10.240000pt;}
.y19e{bottom:10.400000pt;}
.y1ae{bottom:10.560000pt;}
.y1a8{bottom:10.720000pt;}
.y1ac{bottom:10.880000pt;}
.y1b3{bottom:11.200000pt;}
.y1a5{bottom:23.360000pt;}
.y57{bottom:23.680000pt;}
.y16a{bottom:24.960000pt;}
.y163{bottom:25.120000pt;}
.y16c{bottom:25.146667pt;}
.y66{bottom:26.560000pt;}
.y32{bottom:26.720000pt;}
.y2e{bottom:37.760000pt;}
.y2d{bottom:39.200000pt;}
.y2c{bottom:40.480000pt;}
.y166{bottom:41.280000pt;}
.y2a{bottom:41.600000pt;}
.y56{bottom:42.400000pt;}
.y27{bottom:46.560000pt;}
.y36{bottom:51.200000pt;}
.y55{bottom:61.440000pt;}
.y31{bottom:75.040000pt;}
.y54{bottom:81.120000pt;}
.ye8{bottom:91.200000pt;}
.y63{bottom:91.840000pt;}
.y1c5{bottom:92.160000pt;}
.y62{bottom:92.960000pt;}
.y144{bottom:94.880000pt;}
.y59{bottom:96.960000pt;}
.y53{bottom:100.960000pt;}
.y1f1{bottom:101.760000pt;}
.y49{bottom:101.920000pt;}
.y1e5{bottom:104.640000pt;}
.y1c4{bottom:105.440000pt;}
.y106{bottom:107.680000pt;}
.y1fa{bottom:108.160000pt;}
.y20d{bottom:109.920000pt;}
.ybc{bottom:110.240000pt;}
.y1cb{bottom:110.400000pt;}
.ye7{bottom:111.040000pt;}
.y143{bottom:114.720000pt;}
.y14a{bottom:115.360000pt;}
.y1c3{bottom:118.720000pt;}
.y52{bottom:120.826667pt;}
.y16f{bottom:121.120000pt;}
.y1f0{bottom:121.600000pt;}
.y1c2{bottom:122.080000pt;}
.y30{bottom:123.520000pt;}
.y25{bottom:124.200000pt;}
.y1e4{bottom:124.480000pt;}
.y24b{bottom:126.720000pt;}
.y105{bottom:127.520000pt;}
.y1ca{bottom:128.000000pt;}
.y20c{bottom:129.760000pt;}
.y128{bottom:129.920000pt;}
.ybb{bottom:130.080000pt;}
.y23{bottom:130.266667pt;}
.ye6{bottom:130.720000pt;}
.y1c1{bottom:133.600000pt;}
.y142{bottom:134.400000pt;}
.y149{bottom:134.560000pt;}
.y231{bottom:135.200000pt;}
.y51{bottom:140.506667pt;}
.y1ef{bottom:141.280000pt;}
.y16e{bottom:141.760000pt;}
.y18c{bottom:144.000000pt;}
.y1e3{bottom:144.160000pt;}
.y1f9{bottom:147.840000pt;}
.y26{bottom:147.880000pt;}
.y20b{bottom:149.440000pt;}
.y127{bottom:149.760000pt;}
.yba{bottom:149.920000pt;}
.y22{bottom:150.106667pt;}
.ye5{bottom:150.560000pt;}
.y148{bottom:150.720000pt;}
.y1c0{bottom:151.520000pt;}
.y17{bottom:152.000000pt;}
.y141{bottom:154.240000pt;}
.y230{bottom:155.040000pt;}
.y50{bottom:159.546667pt;}
.y24a{bottom:159.840000pt;}
.y104{bottom:160.480000pt;}
.y48{bottom:160.506667pt;}
.y1c9{bottom:161.120000pt;}
.y16{bottom:162.666667pt;}
.y18b{bottom:163.840000pt;}
.y1e2{bottom:164.000000pt;}
.y1f8{bottom:167.520000pt;}
.y20a{bottom:169.280000pt;}
.y126{bottom:169.600000pt;}
.y21{bottom:169.786667pt;}
.ye4{bottom:170.400000pt;}
.y15{bottom:173.333333pt;}
.y140{bottom:174.080000pt;}
.y22f{bottom:174.880000pt;}
.y4f{bottom:178.266667pt;}
.y249{bottom:179.680000pt;}
.y47{bottom:180.186667pt;}
.y103{bottom:180.320000pt;}
.y1bf{bottom:180.960000pt;}
.yb9{bottom:182.880000pt;}
.y18a{bottom:183.680000pt;}
.y1e1{bottom:183.840000pt;}
.y1f7{bottom:187.360000pt;}
.y209{bottom:189.120000pt;}
.y125{bottom:189.280000pt;}
.y14{bottom:189.333333pt;}
.y20{bottom:189.626667pt;}
.y195{bottom:190.080000pt;}
.y16b{bottom:192.800000pt;}
.y13f{bottom:193.760000pt;}
.ye3{bottom:197.120000pt;}
.y4e{bottom:197.626667pt;}
.y13{bottom:200.000000pt;}
.y46{bottom:200.026667pt;}
.y102{bottom:200.160000pt;}
.y1c8{bottom:200.640000pt;}
.y1be{bottom:200.800000pt;}
.yb8{bottom:202.720000pt;}
.y189{bottom:203.520000pt;}
.y1f6{bottom:207.226667pt;}
.y22e{bottom:207.866667pt;}
.y208{bottom:208.826667pt;}
.y124{bottom:209.146667pt;}
.y1f{bottom:209.466667pt;}
.y12{bottom:210.666667pt;}
.y248{bottom:212.666667pt;}
.y13e{bottom:213.626667pt;}
.y1e0{bottom:216.826667pt;}
.y194{bottom:216.986667pt;}
.y4d{bottom:217.466667pt;}
.y12c{bottom:218.586667pt;}
.y45{bottom:219.866667pt;}
.y101{bottom:220.026667pt;}
.y1c7{bottom:220.506667pt;}
.y1bd{bottom:220.666667pt;}
.y12b{bottom:222.106667pt;}
.yb7{bottom:222.586667pt;}
.y188{bottom:223.226667pt;}
.y1f5{bottom:226.906667pt;}
.y22d{bottom:227.706667pt;}
.y123{bottom:228.986667pt;}
.y1e{bottom:229.146667pt;}
.y11{bottom:232.000000pt;}
.y13d{bottom:233.466667pt;}
.y12a{bottom:234.746667pt;}
.y1df{bottom:236.666667pt;}
.y4c{bottom:237.306667pt;}
.y44{bottom:239.546667pt;}
.y100{bottom:239.706667pt;}
.ye2{bottom:240.186667pt;}
.y1bc{bottom:240.346667pt;}
.y207{bottom:242.266667pt;}
.yb6{bottom:242.426667pt;}
.y10{bottom:242.666667pt;}
.y187{bottom:243.066667pt;}
.y169{bottom:244.026667pt;}
.y247{bottom:245.786667pt;}
.y1f4{bottom:246.746667pt;}
.y1b{bottom:247.426667pt;}
.y122{bottom:248.666667pt;}
.y1d{bottom:248.986667pt;}
.y13c{bottom:253.146667pt;}
.yf{bottom:253.333333pt;}
.y1de{bottom:256.506667pt;}
.y4b{bottom:256.986667pt;}
.y43{bottom:259.386667pt;}
.yff{bottom:259.546667pt;}
.ye1{bottom:260.026667pt;}
.y1bb{bottom:260.186667pt;}
.y22c{bottom:260.826667pt;}
.yb5{bottom:262.106667pt;}
.y186{bottom:262.906667pt;}
.y1f3{bottom:266.586667pt;}
.y121{bottom:268.506667pt;}
.y34{bottom:268.826667pt;}
.y13b{bottom:272.986667pt;}
.y2f{bottom:273.626667pt;}
.y4a{bottom:276.026667pt;}
.y1dd{bottom:276.346667pt;}
.y246{bottom:278.906667pt;}
.y42{bottom:279.226667pt;}
.yfe{bottom:279.386667pt;}
.ye0{bottom:279.866667pt;}
.y1ba{bottom:280.026667pt;}
.y22b{bottom:280.666667pt;}
.y61{bottom:281.480000pt;}
.yb4{bottom:281.946667pt;}
.y185{bottom:282.586667pt;}
.y1f2{bottom:286.266667pt;}
.y120{bottom:287.546667pt;}
.y29{bottom:292.506667pt;}
.y5b{bottom:293.306667pt;}
.y1dc{bottom:296.026667pt;}
.y41{bottom:298.946667pt;}
.yfd{bottom:299.066667pt;}
.ydf{bottom:299.706667pt;}
.y22a{bottom:300.506667pt;}
.yb3{bottom:301.786667pt;}
.y11f{bottom:303.706667pt;}
.y13a{bottom:306.106667pt;}
.y168{bottom:311.226667pt;}
.y245{bottom:312.026667pt;}
.y1ee{bottom:312.986667pt;}
.y60{bottom:313.640000pt;}
.y184{bottom:315.706667pt;}
.y1db{bottom:315.866667pt;}
.y40{bottom:318.786667pt;}
.yde{bottom:319.386667pt;}
.y1b9{bottom:319.546667pt;}
.yb2{bottom:321.466667pt;}
.y11e{bottom:324.346667pt;}
.y139{bottom:325.946667pt;}
.y206{bottom:330.106667pt;}
.y244{bottom:331.866667pt;}
.yfc{bottom:332.186667pt;}
.y1ed{bottom:332.826667pt;}
.y229{bottom:333.466667pt;}
.y183{bottom:335.546667pt;}
.y1da{bottom:335.706667pt;}
.y3f{bottom:338.626667pt;}
.ydd{bottom:339.226667pt;}
.yb1{bottom:341.306667pt;}
.y5f{bottom:345.026667pt;}
.y138{bottom:345.626667pt;}
.y205{bottom:349.946667pt;}
.yfb{bottom:352.026667pt;}
.y1ec{bottom:352.506667pt;}
.y1b8{bottom:352.666667pt;}
.y228{bottom:353.306667pt;}
.y182{bottom:355.386667pt;}
.y3e{bottom:358.306667pt;}
.ydc{bottom:359.066667pt;}
.yb0{bottom:361.146667pt;}
.y11d{bottom:361.306667pt;}
.y24{bottom:362.106667pt;}
.y167{bottom:362.426667pt;}
.y243{bottom:364.986667pt;}
.y137{bottom:365.466667pt;}
.y204{bottom:369.786667pt;}
.yfa{bottom:371.866667pt;}
.y1eb{bottom:372.346667pt;}
.y181{bottom:375.066667pt;}
.y1b7{bottom:376.186667pt;}
.y3d{bottom:378.146667pt;}
.ydb{bottom:378.746667pt;}
.yaf{bottom:380.826667pt;}
.y1d9{bottom:382.266667pt;}
.y242{bottom:384.826667pt;}
.y136{bottom:385.306667pt;}
.y227{bottom:386.426667pt;}
.y203{bottom:389.626667pt;}
.yf9{bottom:391.546667pt;}
.y92{bottom:391.706667pt;}
.y1ea{bottom:392.186667pt;}
.y5e{bottom:393.346667pt;}
.y180{bottom:394.906667pt;}
.y3c{bottom:397.986667pt;}
.y11c{bottom:398.266667pt;}
.yda{bottom:398.586667pt;}
.yae{bottom:400.666667pt;}
.y135{bottom:404.986667pt;}
.y226{bottom:406.266667pt;}
.y91{bottom:409.306667pt;}
.ye{bottom:410.666667pt;}
.yf8{bottom:411.426667pt;}
.y1e9{bottom:411.906667pt;}
.y165{bottom:413.506667pt;}
.y1b6{bottom:413.826667pt;}
.y17f{bottom:414.786667pt;}
.y3b{bottom:417.666667pt;}
.y241{bottom:417.986667pt;}
.yd9{bottom:418.466667pt;}
.yad{bottom:420.546667pt;}
.yd{bottom:424.000000pt;}
.y1d8{bottom:425.346667pt;}
.y90{bottom:429.186667pt;}
.yf7{bottom:431.266667pt;}
.y1e8{bottom:431.746667pt;}
.y19b{bottom:433.826667pt;}
.y17e{bottom:434.466667pt;}
.y11a{bottom:435.266667pt;}
.yc{bottom:437.333333pt;}
.y3a{bottom:437.506667pt;}
.y240{bottom:437.826667pt;}
.yd8{bottom:438.146667pt;}
.y225{bottom:439.426667pt;}
.yac{bottom:440.226667pt;}
.y5d{bottom:441.826667pt;}
.y1d7{bottom:445.186667pt;}
.y8f{bottom:449.026667pt;}
.yb{bottom:450.666667pt;}
.yf6{bottom:450.946667pt;}
.y1b5{bottom:451.106667pt;}
.y193{bottom:451.426667pt;}
.y1e7{bottom:451.586667pt;}
.y17d{bottom:454.306667pt;}
.y39{bottom:457.346667pt;}
.yd7{bottom:457.986667pt;}
.y224{bottom:459.266667pt;}
.yab{bottom:460.066667pt;}
.y1d6{bottom:465.026667pt;}
.y8e{bottom:468.706667pt;}
.yf5{bottom:470.786667pt;}
.y192{bottom:471.266667pt;}
.y119{bottom:472.066667pt;}
.y17c{bottom:474.146667pt;}
.y38{bottom:476.386667pt;}
.y134{bottom:477.826667pt;}
.y162{bottom:480.706667pt;}
.y202{bottom:481.986667pt;}
.y19a{bottom:484.546667pt;}
.y1d5{bottom:484.706667pt;}
.y8d{bottom:488.546667pt;}
.y1b4{bottom:488.706667pt;}
.y5c{bottom:490.146667pt;}
.yf4{bottom:490.626667pt;}
.yd6{bottom:491.106667pt;}
.y223{bottom:492.226667pt;}
.yaa{bottom:493.186667pt;}
.y17b{bottom:493.826667pt;}
.y133{bottom:497.506667pt;}
.y201{bottom:501.826667pt;}
.ya{bottom:504.000000pt;}
.y199{bottom:504.386667pt;}
.y1d4{bottom:504.546667pt;}
.y8c{bottom:508.386667pt;}
.y117{bottom:509.026667pt;}
.y23f{bottom:510.466667pt;}
.yd5{bottom:510.946667pt;}
.y222{bottom:512.066667pt;}
.ya9{bottom:513.026667pt;}
.y17a{bottom:513.666667pt;}
.y132{bottom:517.346667pt;}
.y200{bottom:521.666667pt;}
.yf3{bottom:523.586667pt;}
.y198{bottom:524.226667pt;}
.y1d3{bottom:524.386667pt;}
.y1b2{bottom:526.626667pt;}
.y23e{bottom:530.306667pt;}
.yd4{bottom:530.626667pt;}
.ya8{bottom:532.706667pt;}
.y37{bottom:536.546667pt;}
.y8b{bottom:541.346667pt;}
.y1ff{bottom:541.506667pt;}
.yf2{bottom:543.426667pt;}
.y161{bottom:544.066667pt;}
.y1c{bottom:544.386667pt;}
.y221{bottom:545.186667pt;}
.y115{bottom:545.986667pt;}
.y179{bottom:546.786667pt;}
.yd3{bottom:550.466667pt;}
.ya7{bottom:552.546667pt;}
.y8a{bottom:561.186667pt;}
.yf1{bottom:563.266667pt;}
.y197{bottom:563.746667pt;}
.y160{bottom:563.906667pt;}
.y1b1{bottom:565.026667pt;}
.y178{bottom:566.626667pt;}
.yd2{bottom:570.306667pt;}
.ya6{bottom:572.386667pt;}
.y89{bottom:581.026667pt;}
.yf0{bottom:583.106667pt;}
.y191{bottom:583.586667pt;}
.y1d2{bottom:583.746667pt;}
.y177{bottom:586.306667pt;}
.yd1{bottom:589.986667pt;}
.y114{bottom:593.826667pt;}
.y15f{bottom:597.026667pt;}
.y9{bottom:597.333333pt;}
.y220{bottom:598.146667pt;}
.y88{bottom:600.866667pt;}
.yef{bottom:602.786667pt;}
.y1af{bottom:602.946667pt;}
.y190{bottom:603.426667pt;}
.ya5{bottom:605.346667pt;}
.y176{bottom:606.146667pt;}
.yd0{bottom:609.826667pt;}
.y8{bottom:610.666667pt;}
.y113{bottom:613.666667pt;}
.y15e{bottom:616.893333pt;}
.y77{bottom:617.693333pt;}
.y21f{bottom:618.013333pt;}
.y76{bottom:618.973333pt;}
.y87{bottom:620.573333pt;}
.yee{bottom:622.653333pt;}
.y23d{bottom:622.813333pt;}
.y18f{bottom:623.133333pt;}
.y1d1{bottom:623.293333pt;}
.ya4{bottom:625.213333pt;}
.y175{bottom:626.013333pt;}
.ycf{bottom:629.693333pt;}
.y75{bottom:631.133333pt;}
.y15d{bottom:636.573333pt;}
.y1ad{bottom:640.253333pt;}
.y86{bottom:640.413333pt;}
.y23c{bottom:642.493333pt;}
.y18e{bottom:642.973333pt;}
.y1d0{bottom:643.133333pt;}
.ya3{bottom:645.053333pt;}
.y112{bottom:646.813333pt;}
.yce{bottom:649.373333pt;}
.y7{bottom:650.666667pt;}
.y21e{bottom:650.973333pt;}
.y174{bottom:652.733333pt;}
.yed{bottom:655.933333pt;}
.y15c{bottom:656.413333pt;}
.y74{bottom:657.693333pt;}
.y85{bottom:660.253333pt;}
.y23b{bottom:662.333333pt;}
.y1c6{bottom:662.653333pt;}
.y18d{bottom:662.813333pt;}
.y6{bottom:664.000000pt;}
.ya2{bottom:664.893333pt;}
.y111{bottom:666.653333pt;}
.y212{bottom:669.213333pt;}
.y21d{bottom:670.813333pt;}
.y1fe{bottom:673.533333pt;}
.y15b{bottom:676.253333pt;}
.y1ab{bottom:678.013333pt;}
.y84{bottom:679.933333pt;}
.yec{bottom:680.253333pt;}
.y23a{bottom:682.173333pt;}
.ycd{bottom:682.493333pt;}
.y1cf{bottom:682.653333pt;}
.y73{bottom:684.093333pt;}
.ya1{bottom:684.573333pt;}
.y110{bottom:686.493333pt;}
.y211{bottom:689.053333pt;}
.y21c{bottom:690.653333pt;}
.y1fd{bottom:693.373333pt;}
.y173{bottom:695.773333pt;}
.y15a{bottom:695.933333pt;}
.y83{bottom:699.773333pt;}
.ycc{bottom:702.333333pt;}
.ya0{bottom:704.413333pt;}
.y10f{bottom:706.173333pt;}
.y210{bottom:708.733333pt;}
.y72{bottom:710.493333pt;}
.y1fc{bottom:713.053333pt;}
.y239{bottom:715.133333pt;}
.y172{bottom:715.613333pt;}
.y159{bottom:715.773333pt;}
.y1a9{bottom:716.253333pt;}
.ycb{bottom:722.173333pt;}
.y21b{bottom:723.773333pt;}
.y9f{bottom:724.253333pt;}
.y10e{bottom:726.013333pt;}
.y82{bottom:732.893333pt;}
.y238{bottom:734.973333pt;}
.y171{bottom:735.453333pt;}
.y158{bottom:735.613333pt;}
.y71{bottom:737.053333pt;}
.yca{bottom:741.853333pt;}
.y21a{bottom:743.613333pt;}
.y9e{bottom:743.933333pt;}
.y10d{bottom:745.853333pt;}
.y81{bottom:752.733333pt;}
.y1a7{bottom:753.853333pt;}
.y5{bottom:754.666667pt;}
.y237{bottom:754.813333pt;}
.y196{bottom:755.133333pt;}
.y157{bottom:755.293333pt;}
.y147{bottom:759.133333pt;}
.yc9{bottom:761.693333pt;}
.y70{bottom:763.453333pt;}
.y9d{bottom:763.773333pt;}
.y80{bottom:772.413333pt;}
.y170{bottom:774.973333pt;}
.y156{bottom:775.133333pt;}
.y219{bottom:776.573333pt;}
.y10c{bottom:778.813333pt;}
.yeb{bottom:781.373333pt;}
.yc8{bottom:781.533333pt;}
.y9c{bottom:783.613333pt;}
.y236{bottom:787.933333pt;}
.y6f{bottom:789.853333pt;}
.y1a4{bottom:791.773333pt;}
.y7f{bottom:792.253333pt;}
.y4{bottom:794.666667pt;}
.y131{bottom:794.813333pt;}
.y1ce{bottom:794.973333pt;}
.y218{bottom:796.413333pt;}
.y10b{bottom:798.653333pt;}
.yc7{bottom:801.213333pt;}
.y9b{bottom:803.293333pt;}
.y250{bottom:807.293333pt;}
.y235{bottom:807.773333pt;}
.y155{bottom:808.253333pt;}
.y1a{bottom:808.893333pt;}
.y7e{bottom:812.093333pt;}
.y1e6{bottom:814.493333pt;}
.y130{bottom:814.653333pt;}
.y6e{bottom:816.413333pt;}
.y10a{bottom:818.493333pt;}
.yc6{bottom:821.053333pt;}
.y3{bottom:821.333333pt;}
.y9a{bottom:823.173333pt;}
.y234{bottom:827.493333pt;}
.y154{bottom:828.133333pt;}
.y217{bottom:829.573333pt;}
.y7d{bottom:831.813333pt;}
.y12f{bottom:834.373333pt;}
.y1cd{bottom:834.533333pt;}
.y109{bottom:838.373333pt;}
.y24f{bottom:840.453333pt;}
.yc5{bottom:840.933333pt;}
.y1a2{bottom:842.373333pt;}
.y6d{bottom:842.853333pt;}
.y99{bottom:843.013333pt;}
.y233{bottom:847.333333pt;}
.y153{bottom:847.813333pt;}
.y216{bottom:849.413333pt;}
.y7c{bottom:851.653333pt;}
.y12e{bottom:854.213333pt;}
.y1cc{bottom:854.373333pt;}
.yea{bottom:860.613333pt;}
.y152{bottom:867.653333pt;}
.y6c{bottom:869.253333pt;}
.y7b{bottom:871.493333pt;}
.y108{bottom:871.653333pt;}
.y24e{bottom:873.573333pt;}
.yc4{bottom:873.893333pt;}
.y12d{bottom:874.053333pt;}
.y98{bottom:875.973333pt;}
.y1a1{bottom:878.053333pt;}
.ye9{bottom:880.453333pt;}
.y215{bottom:882.533333pt;}
.y1fb{bottom:885.093333pt;}
.y151{bottom:887.493333pt;}
.y7a{bottom:891.173333pt;}
.yc3{bottom:893.733333pt;}
.y6b{bottom:895.813333pt;}
.y20f{bottom:900.293333pt;}
.y214{bottom:902.373333pt;}
.y146{bottom:904.773333pt;}
.y24d{bottom:906.693333pt;}
.y150{bottom:907.173333pt;}
.y19f{bottom:909.413333pt;}
.y79{bottom:911.013333pt;}
.yc2{bottom:913.573333pt;}
.y97{bottom:915.653333pt;}
.y232{bottom:919.973333pt;}
.y213{bottom:922.053333pt;}
.y6a{bottom:922.213333pt;}
.y14f{bottom:927.013333pt;}
.y20e{bottom:933.253333pt;}
.yc1{bottom:933.413333pt;}
.y96{bottom:935.493333pt;}
.y129{bottom:939.813333pt;}
.y19d{bottom:942.693333pt;}
.y78{bottom:944.293333pt;}
.y14e{bottom:946.853333pt;}
.y69{bottom:948.613333pt;}
.yc0{bottom:953.093333pt;}
.y2{bottom:954.666667pt;}
.y95{bottom:955.173333pt;}
.y107{bottom:955.333333pt;}
.y24c{bottom:959.653333pt;}
.y14d{bottom:966.533333pt;}
.ybf{bottom:972.933333pt;}
.y94{bottom:975.013333pt;}
.y68{bottom:975.173333pt;}
.y14c{bottom:986.373333pt;}
.y145{bottom:992.613333pt;}
.ybe{bottom:992.773333pt;}
.y19c{bottom:996.613333pt;}
.y67{bottom:1008.293333pt;}
.y93{bottom:1008.453333pt;}
.ybd{bottom:1012.453333pt;}
.y14b{bottom:1013.253333pt;}
.y5a{bottom:1026.880000pt;}
.y64{bottom:1059.840000pt;}
.y18{bottom:1092.000000pt;}
.y1{bottom:1109.333333pt;}
.hf{height:1.861250pt;}
.h10{height:3.722500pt;}
.h2e{height:17.920000pt;}
.h1c{height:18.080000pt;}
.h38{height:19.543125pt;}
.h2d{height:19.840000pt;}
.h20{height:22.240000pt;}
.h2f{height:22.400000pt;}
.h23{height:23.520000pt;}
.h24{height:23.552000pt;}
.h22{height:23.680000pt;}
.h37{height:24.000000pt;}
.h35{height:24.032000pt;}
.h32{height:24.160000pt;}
.h2c{height:24.320000pt;}
.h34{height:24.480000pt;}
.h31{height:24.640000pt;}
.h33{height:24.800000pt;}
.h36{height:25.120000pt;}
.h2b{height:25.228125pt;}
.h4{height:30.916667pt;}
.h39{height:33.037187pt;}
.h26{height:34.898438pt;}
.h25{height:35.039062pt;}
.h27{height:35.179688pt;}
.h30{height:37.312000pt;}
.h28{height:37.760000pt;}
.h2a{height:37.792000pt;}
.h13{height:38.620938pt;}
.h21{height:38.776563pt;}
.h1d{height:41.214688pt;}
.h6{height:42.808750pt;}
.h1f{height:42.981250pt;}
.h16{height:43.153750pt;}
.h1{height:44.500000pt;}
.h15{height:48.000000pt;}
.h18{height:50.595937pt;}
.h29{height:53.920000pt;}
.h3{height:55.625000pt;}
.h9{height:56.160000pt;}
.h1e{height:63.656250pt;}
.h1a{height:63.840000pt;}
.h2{height:66.750000pt;}
.hc{height:128.160000pt;}
.h11{height:162.586667pt;}
.hb{height:163.226667pt;}
.h12{height:186.266667pt;}
.h1b{height:200.346667pt;}
.ha{height:264.506667pt;}
.h8{height:264.546667pt;}
.hd{height:308.026667pt;}
.h17{height:434.626667pt;}
.h14{height:491.453333pt;}
.he{height:502.786667pt;}
.h19{height:529.213333pt;}
.h7{height:1122.234627pt;}
.h5{height:1122.560000pt;}
.h0{height:1122.666667pt;}
.w7{width:1.920000pt;}
.we{width:39.360000pt;}
.w13{width:39.392000pt;}
.wf{width:43.840000pt;}
.wc{width:76.480000pt;}
.wd{width:140.986667pt;}
.w12{width:494.013333pt;}
.w14{width:534.053333pt;}
.wb{width:534.853333pt;}
.wa{width:537.733333pt;}
.w10{width:574.533333pt;}
.w6{width:585.893333pt;}
.w8{width:587.813333pt;}
.w5{width:632.773333pt;}
.w9{width:741.759987pt;}
.w0{width:793.333333pt;}
.w4{width:793.439987pt;}
.w11{width:793.759976pt;}
.w3{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:1.280013pt;}
.xb{left:3.040000pt;}
.x16{left:5.914667pt;}
.x1e{left:13.434667pt;}
.xd{left:48.954667pt;}
.x1b{left:61.440000pt;}
.xc{left:63.034667pt;}
.x13{left:68.000000pt;}
.x1{left:76.000000pt;}
.x2{left:89.333333pt;}
.x3{left:113.471988pt;}
.x6{left:114.752000pt;}
.x8{left:128.511988pt;}
.x15{left:129.952000pt;}
.x1f{left:131.871988pt;}
.x20{left:136.026655pt;}
.x1c{left:143.226643pt;}
.x14{left:147.386655pt;}
.x9{left:160.034667pt;}
.x10{left:198.914667pt;}
.xe{left:221.474667pt;}
.xf{left:268.861333pt;}
.x17{left:271.586667pt;}
.x18{left:311.586667pt;}
.xa{left:314.621333pt;}
.x11{left:457.861333pt;}
.x1a{left:560.933322pt;}
.x1d{left:624.613333pt;}
.x19{left:630.693322pt;}
.x12{left:663.360000pt;}
.x5{left:699.360000pt;}
.x4{left:794.079987pt;}
}




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