
    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_c611224d38d3417c65afbf1b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8a2764b4c80df936d2b5aed4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_383d293be8683e4830725190.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e5c51f78508c04c778d07052.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_5bad2530fa5b8d6ea0051cfd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895508;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_cb6a0c11b08c00608a046b81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.904297;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_9c94bbcf2438b43da9e6e709.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_4336fd7c9b0e5160bbe3d49c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_deb733395a36fa3beaa234fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c200c76c62c1684c93da098b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6cca6c0433cb14251ea2a54b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1853793ea1907337b4874b7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_441b7ba879691c3a7fddae52.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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_b5a61ffed9375cbb81d8cb5e.woff2')format("woff");}.fff{font-family:fff;line-height:0.860352;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_26e998dd5322628bf2bca484.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.859863;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_ea2b36f4aa58739b6f523f4d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.112305;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_2dae1c0c6107e16c514609ab.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2839c75edbc182b2fe80f0ab.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.691406;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_4a13e3b559efc126137ab268.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.864000px;}
.ls5{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.350400px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.106800px;}
.ls29{letter-spacing:-0.072000px;}
.ls1{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.025920px;}
.ls22{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.060480px;}
.ls11{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.256200px;}
.ls12{letter-spacing:0.259800px;}
.ls23{letter-spacing:0.267840px;}
.ls19{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.368640px;}
.ls9{letter-spacing:0.391680px;}
.ls26{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.924000px;}
.lse{letter-spacing:2.160000px;}
.ls25{letter-spacing:2.880000px;}
.ls24{letter-spacing:3.780000px;}
.ls13{letter-spacing:11.520000px;}
.ls4{letter-spacing:44.784000px;}
.ls3{letter-spacing:54.864000px;}
.ls28{letter-spacing:65.664000px;}
.ls20{letter-spacing:117.342000px;}
.ls21{letter-spacing:181.122000px;}
.ls1f{letter-spacing:194.376000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.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(127,127,127);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-193.326000px;}
.ws18{word-spacing:-129.546000px;}
.ws2{word-spacing:-72.000000px;}
.ws4{word-spacing:-21.060000px;}
.ws20{word-spacing:-20.709600px;}
.ws1f{word-spacing:-18.432000px;}
.ws11{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws15{word-spacing:-17.064000px;}
.ws16{word-spacing:-15.864000px;}
.ws8{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.226440px;}
.wse{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.944320px;}
.ws9{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.833200px;}
.wsc{word-spacing:-14.274000px;}
.ws17{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.700000px;}
.wsb{word-spacing:-9.720000px;}
.ws10{word-spacing:-9.437760px;}
.ws3{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:42.114000px;}
.ws1e{word-spacing:49.986000px;}
.ws1c{word-spacing:69.438000px;}
.ws19{word-spacing:77.814000px;}
.ws1b{word-spacing:141.594000px;}
._1f{margin-left:-13.404000px;}
._25{margin-left:-7.620000px;}
._22{margin-left:-6.607440px;}
._f{margin-left:-4.241760px;}
._e{margin-left:-3.004560px;}
._1{margin-left:-1.027440px;}
._0{width:1.314720px;}
._3{width:2.409600px;}
._4{width:3.419040px;}
._7{width:5.016000px;}
._12{width:6.024000px;}
._13{width:7.140000px;}
._2{width:9.013680px;}
._a{width:10.656000px;}
._15{width:11.717280px;}
._8{width:13.224000px;}
._9{width:14.748720px;}
._14{width:15.982800px;}
._1e{width:16.993200px;}
._16{width:19.080000px;}
._21{width:20.261280px;}
._19{width:21.403440px;}
._26{width:22.439280px;}
._b{width:24.384000px;}
._1a{width:26.112000px;}
._1b{width:27.600000px;}
._1c{width:29.664000px;}
._1d{width:30.869280px;}
._28{width:33.336000px;}
._29{width:34.625280px;}
._17{width:35.712000px;}
._18{width:36.811440px;}
._10{width:38.376000px;}
._11{width:40.464000px;}
._27{width:42.288480px;}
._20{width:67.602000px;}
._23{width:86.910000px;}
._c{width:98.496000px;}
._d{width:99.504000px;}
._5{width:151.632000px;}
._6{width:152.652000px;}
._24{width:194.376000px;}
.fc9{color:rgb(19,20,19);}
.fc6{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,46,103);}
.fc3{color:rgb(31,56,100);}
.fc1{color:rgb(22,54,93);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fsa{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.y23{bottom:-10.815000px;}
.y0{bottom:0.000000px;}
.y1f6{bottom:0.330000px;}
.y208{bottom:1.785000px;}
.y205{bottom:2.880000px;}
.ybb{bottom:3.420000px;}
.yd9{bottom:3.615000px;}
.yc3{bottom:3.780000px;}
.y60{bottom:4.485000px;}
.y63{bottom:4.500000px;}
.y53{bottom:4.515000px;}
.y159{bottom:4.860000px;}
.y1b9{bottom:5.025000px;}
.yec{bottom:5.040000px;}
.y1c0{bottom:5.205000px;}
.y1be{bottom:5.220000px;}
.y1a8{bottom:5.730000px;}
.y192{bottom:6.405000px;}
.y19c{bottom:7.560000px;}
.y11f{bottom:8.655000px;}
.yff{bottom:9.390000px;}
.yf6{bottom:10.440000px;}
.y1ea{bottom:10.995000px;}
.y1e4{bottom:11.505000px;}
.yf4{bottom:11.520000px;}
.y27{bottom:12.051000px;}
.yb9{bottom:12.060000px;}
.ycf{bottom:12.240000px;}
.yc7{bottom:12.420000px;}
.yee{bottom:14.040000px;}
.y100{bottom:14.070000px;}
.ye9{bottom:14.220000px;}
.y146{bottom:15.120000px;}
.yfd{bottom:15.150000px;}
.y1d4{bottom:15.300000px;}
.y1c2{bottom:15.840000px;}
.yf7{bottom:16.020000px;}
.yef{bottom:16.200000px;}
.y1b4{bottom:16.380000px;}
.y1b6{bottom:16.395000px;}
.yf2{bottom:17.100000px;}
.y1f{bottom:17.115000px;}
.y203{bottom:17.565000px;}
.y1f4{bottom:17.640000px;}
.yf5{bottom:18.180000px;}
.y1ad{bottom:18.555000px;}
.y207{bottom:19.065000px;}
.yba{bottom:20.520000px;}
.ycd{bottom:20.880000px;}
.yd5{bottom:20.895000px;}
.yc2{bottom:21.060000px;}
.ye4{bottom:22.515000px;}
.y1a6{bottom:24.990000px;}
.y5b{bottom:25.020000px;}
.y51{bottom:25.200000px;}
.y158{bottom:25.560000px;}
.y11e{bottom:26.115000px;}
.y61{bottom:26.445000px;}
.y5d{bottom:26.460000px;}
.y6a{bottom:26.640000px;}
.y190{bottom:27.360000px;}
.y19a{bottom:28.515000px;}
.y1e3{bottom:28.965000px;}
.yce{bottom:29.520000px;}
.yd3{bottom:29.535000px;}
.yc6{bottom:29.700000px;}
.y22{bottom:32.745000px;}
.y26{bottom:32.751000px;}
.yfc{bottom:35.310000px;}
.y1ac{bottom:36.015000px;}
.yf9{bottom:36.180000px;}
.y1b2{bottom:36.540000px;}
.y1b7{bottom:36.555000px;}
.yf1{bottom:37.260000px;}
.yca{bottom:38.160000px;}
.yd8{bottom:38.175000px;}
.ybe{bottom:38.340000px;}
.y2b{bottom:40.545000px;}
.y19f{bottom:42.510000px;}
.y11d{bottom:43.395000px;}
.y186{bottom:44.925000px;}
.yeb{bottom:45.360000px;}
.y195{bottom:46.080000px;}
.y1e2{bottom:46.245000px;}
.yc9{bottom:46.800000px;}
.yd1{bottom:46.830000px;}
.ybf{bottom:46.980000px;}
.y200{bottom:47.445000px;}
.y1ab{bottom:53.295000px;}
.ybd{bottom:55.440000px;}
.yd4{bottom:55.470000px;}
.yd7{bottom:55.485000px;}
.y1b3{bottom:56.700000px;}
.y25{bottom:56.871000px;}
.y2d{bottom:57.600000px;}
.y11c{bottom:60.675000px;}
.y1f2{bottom:61.380000px;}
.y187{bottom:62.820000px;}
.y1e1{bottom:63.345000px;}
.y1e{bottom:63.915000px;}
.yc5{bottom:64.080000px;}
.y1f8{bottom:65.010000px;}
.y201{bottom:68.475000px;}
.y1a0{bottom:68.505000px;}
.y2a{bottom:68.805000px;}
.ycb{bottom:72.720000px;}
.yd6{bottom:72.750000px;}
.yc1{bottom:72.765000px;}
.y1bc{bottom:73.260000px;}
.y1ec{bottom:74.265000px;}
.y21{bottom:75.405000px;}
.y2c{bottom:77.796000px;}
.y1e0{bottom:80.625000px;}
.y188{bottom:80.745000px;}
.yc4{bottom:81.405000px;}
.y1a7{bottom:83.445000px;}
.y24{bottom:86.985000px;}
.y19b{bottom:89.070000px;}
.yc0{bottom:90.045000px;}
.y1d0{bottom:90.180000px;}
.y1c5{bottom:91.440000px;}
.y1bb{bottom:91.620000px;}
.y191{bottom:92.700000px;}
.y1a1{bottom:94.470000px;}
.y29{bottom:96.525000px;}
.y1df{bottom:97.905000px;}
.y189{bottom:98.640000px;}
.y196{bottom:99.435000px;}
.y1ed{bottom:101.730000px;}
.y1f9{bottom:101.880000px;}
.ye2{bottom:111.816000px;}
.y18a{bottom:116.565000px;}
.y28e{bottom:117.756000px;}
.y7b{bottom:119.736000px;}
.y1fa{bottom:120.315000px;}
.y1a2{bottom:120.450000px;}
.y254{bottom:124.596000px;}
.y197{bottom:126.075000px;}
.y137{bottom:126.216000px;}
.y1ee{bottom:129.165000px;}
.y10f{bottom:130.536000px;}
.y1e8{bottom:131.436000px;}
.y1dd{bottom:133.236000px;}
.y4d{bottom:134.136000px;}
.y18b{bottom:134.460000px;}
.y243{bottom:138.096000px;}
.y1fb{bottom:138.750000px;}
.y11a{bottom:139.356000px;}
.y1dc{bottom:140.436000px;}
.y22d{bottom:141.516000px;}
.ye1{bottom:142.956000px;}
.y98{bottom:143.136000px;}
.y21b{bottom:143.496000px;}
.y1a3{bottom:146.415000px;}
.y1de{bottom:147.825000px;}
.y28d{bottom:148.896000px;}
.y178{bottom:150.870000px;}
.y7a{bottom:151.590000px;}
.y18c{bottom:152.355000px;}
.y198{bottom:152.745000px;}
.y253{bottom:155.730000px;}
.y1ef{bottom:156.630000px;}
.y1fc{bottom:157.170000px;}
.y136{bottom:157.350000px;}
.y10e{bottom:161.670000px;}
.y4c{bottom:165.990000px;}
.y18d{bottom:170.280000px;}
.y119{bottom:170.490000px;}
.y1db{bottom:171.570000px;}
.y242{bottom:172.290000px;}
.y1a4{bottom:172.410000px;}
.y22c{bottom:172.650000px;}
.ye0{bottom:173.910000px;}
.y97{bottom:174.090000px;}
.y21a{bottom:174.450000px;}
.y1e7{bottom:174.630000px;}
.y184{bottom:175.530000px;}
.y1fd{bottom:175.605000px;}
.yb5{bottom:176.250000px;}
.y199{bottom:179.430000px;}
.y28c{bottom:179.850000px;}
.y177{bottom:181.830000px;}
.y79{bottom:183.270000px;}
.y1f0{bottom:184.065000px;}
.y1c{bottom:186.510000px;}
.y252{bottom:186.690000px;}
.y18e{bottom:188.175000px;}
.y135{bottom:188.310000px;}
.y273{bottom:189.390000px;}
.y206{bottom:192.105000px;}
.y10d{bottom:192.630000px;}
.y1fe{bottom:194.040000px;}
.y154{bottom:194.610000px;}
.y4b{bottom:197.670000px;}
.y1a5{bottom:198.360000px;}
.y118{bottom:201.450000px;}
.y1da{bottom:202.530000px;}
.y22b{bottom:203.610000px;}
.ydf{bottom:205.050000px;}
.y219{bottom:205.410000px;}
.y18f{bottom:206.100000px;}
.y183{bottom:206.490000px;}
.y241{bottom:206.670000px;}
.yb4{bottom:207.390000px;}
.y1f1{bottom:211.530000px;}
.y1ff{bottom:212.475000px;}
.y1a9{bottom:213.270000px;}
.y78{bottom:214.950000px;}
.y251{bottom:217.830000px;}
.y96{bottom:219.450000px;}
.y1b{bottom:222.330000px;}
.y10c{bottom:223.770000px;}
.y28b{bottom:225.570000px;}
.y176{bottom:227.190000px;}
.y19d{bottom:227.445000px;}
.y1eb{bottom:228.780000px;}
.y193{bottom:228.810000px;}
.y1f7{bottom:228.960000px;}
.y4a{bottom:229.530000px;}
.y272{bottom:232.410000px;}
.y117{bottom:232.590000px;}
.y1d9{bottom:233.670000px;}
.y134{bottom:234.030000px;}
.y22a{bottom:234.750000px;}
.yde{bottom:236.010000px;}
.y218{bottom:236.550000px;}
.y153{bottom:237.630000px;}
.yb3{bottom:238.350000px;}
.y1f3{bottom:240.510000px;}
.y20{bottom:240.525000px;}
.y240{bottom:241.050000px;}
.y202{bottom:241.455000px;}
.y77{bottom:246.810000px;}
.y10b{bottom:254.730000px;}
.y1a{bottom:257.970000px;}
.y250{bottom:260.850000px;}
.y49{bottom:261.210000px;}
.y271{bottom:263.370000px;}
.y116{bottom:263.550000px;}
.y1d8{bottom:264.630000px;}
.y95{bottom:265.350000px;}
.y229{bottom:265.710000px;}
.ydd{bottom:267.150000px;}
.y217{bottom:267.510000px;}
.y182{bottom:268.590000px;}
.yb2{bottom:269.490000px;}
.y28a{bottom:271.110000px;}
.y23f{bottom:275.430000px;}
.y76{bottom:278.490000px;}
.y133{bottom:279.570000px;}
.y152{bottom:280.650000px;}
.y10a{bottom:285.870000px;}
.y24f{bottom:291.810000px;}
.y175{bottom:292.170000px;}
.y48{bottom:293.070000px;}
.y19{bottom:293.610000px;}
.y115{bottom:294.690000px;}
.y270{bottom:294.870000px;}
.y228{bottom:296.850000px;}
.y151{bottom:297.765000px;}
.y216{bottom:298.650000px;}
.y1d7{bottom:299.370000px;}
.y181{bottom:299.730000px;}
.yb1{bottom:300.450000px;}
.y94{bottom:308.370000px;}
.y23e{bottom:309.630000px;}
.y75{bottom:310.350000px;}
.ydc{bottom:312.690000px;}
.y289{bottom:314.310000px;}
.y109{bottom:316.830000px;}
.y150{bottom:319.185000px;}
.y132{bottom:322.590000px;}
.y24e{bottom:322.950000px;}
.y174{bottom:323.310000px;}
.y47{bottom:324.750000px;}
.y114{bottom:325.650000px;}
.y26f{bottom:326.190000px;}
.y227{bottom:327.810000px;}
.y18{bottom:329.430000px;}
.y215{bottom:329.610000px;}
.y180{bottom:330.690000px;}
.y1d6{bottom:338.610000px;}
.y93{bottom:339.510000px;}
.y14f{bottom:340.635000px;}
.y74{bottom:342.075000px;}
.y23d{bottom:344.055000px;}
.y288{bottom:345.315000px;}
.yb0{bottom:346.215000px;}
.y108{bottom:348.015000px;}
.y1d5{bottom:350.535000px;}
.y131{bottom:353.775000px;}
.y173{bottom:354.315000px;}
.y46{bottom:356.475000px;}
.y113{bottom:356.835000px;}
.y26e{bottom:357.195000px;}
.y226{bottom:358.995000px;}
.y214{bottom:360.795000px;}
.ydb{bottom:360.975000px;}
.y14e{bottom:362.235000px;}
.y17{bottom:365.115000px;}
.y24d{bottom:366.015000px;}
.y73{bottom:373.935000px;}
.y92{bottom:374.115000px;}
.y1cf{bottom:374.835000px;}
.y17f{bottom:376.095000px;}
.y287{bottom:376.455000px;}
.y23c{bottom:378.435000px;}
.y107{bottom:378.975000px;}
.y14d{bottom:383.655000px;}
.y130{bottom:384.735000px;}
.y172{bottom:385.455000px;}
.y112{bottom:387.795000px;}
.y45{bottom:388.335000px;}
.y26d{bottom:388.695000px;}
.y225{bottom:389.955000px;}
.y213{bottom:391.755000px;}
.yaf{bottom:394.095000px;}
.y1aa{bottom:395.340000px;}
.yda{bottom:396.975000px;}
.y16{bottom:400.755000px;}
.y14c{bottom:405.075000px;}
.y72{bottom:405.615000px;}
.y286{bottom:407.415000px;}
.y106{bottom:410.115000px;}
.ye3{bottom:410.460000px;}
.y23b{bottom:412.815000px;}
.y1d{bottom:415.500000px;}
.y12f{bottom:415.875000px;}
.y1d3{bottom:416.055000px;}
.y91{bottom:416.235000px;}
.y171{bottom:416.415000px;}
.y26c{bottom:419.655000px;}
.y44{bottom:420.015000px;}
.y224{bottom:420.915000px;}
.y212{bottom:422.895000px;}
.y14b{bottom:426.495000px;}
.y24c{bottom:428.115000px;}
.y111{bottom:433.515000px;}
.y15{bottom:436.575000px;}
.y1d2{bottom:437.115000px;}
.y71{bottom:437.475000px;}
.y285{bottom:438.555000px;}
.yae{bottom:439.995000px;}
.y105{bottom:441.075000px;}
.y12e{bottom:446.835000px;}
.y23a{bottom:447.015000px;}
.y90{bottom:447.375000px;}
.y170{bottom:447.555000px;}
.y14a{bottom:447.915000px;}
.y26b{bottom:451.155000px;}
.y70{bottom:451.680000px;}
.y6f{bottom:451.695000px;}
.y43{bottom:451.875000px;}
.y223{bottom:452.055000px;}
.y211{bottom:453.855000px;}
.y1d1{bottom:458.175000px;}
.y149{bottom:469.335000px;}
.y284{bottom:469.515000px;}
.y204{bottom:470.520000px;}
.y19e{bottom:470.700000px;}
.y24b{bottom:471.135000px;}
.y1f5{bottom:471.960000px;}
.y14{bottom:472.215000px;}
.y17e{bottom:472.755000px;}
.y12d{bottom:477.975000px;}
.y8f{bottom:478.335000px;}
.y16f{bottom:478.515000px;}
.y110{bottom:479.055000px;}
.y1ce{bottom:479.235000px;}
.y239{bottom:481.395000px;}
.y26a{bottom:482.115000px;}
.yad{bottom:483.015000px;}
.y42{bottom:483.555000px;}
.y210{bottom:484.995000px;}
.y104{bottom:486.795000px;}
.y148{bottom:490.935000px;}
.y6e{bottom:492.900000px;}
.y6d{bottom:492.915000px;}
.y11b{bottom:495.600000px;}
.y1ca{bottom:500.295000px;}
.y283{bottom:500.655000px;}
.y13{bottom:507.855000px;}
.y12c{bottom:508.935000px;}
.y8e{bottom:509.475000px;}
.y16e{bottom:509.655000px;}
.y145{bottom:512.355000px;}
.y269{bottom:513.615000px;}
.yac{bottom:514.155000px;}
.y41{bottom:515.415000px;}
.y238{bottom:515.775000px;}
.y17d{bottom:520.995000px;}
.y103{bottom:522.435000px;}
.y20f{bottom:528.015000px;}
.y282{bottom:531.615000px;}
.y1e6{bottom:532.695000px;}
.y147{bottom:533.775000px;}
.y6c{bottom:534.300000px;}
.y6b{bottom:534.315000px;}
.y12b{bottom:540.075000px;}
.y8d{bottom:540.435000px;}
.y16d{bottom:540.615000px;}
.y1cd{bottom:542.775000px;}
.y12{bottom:543.675000px;}
.y268{bottom:544.575000px;}
.yab{bottom:545.115000px;}
.y24a{bottom:545.295000px;}
.y40{bottom:547.095000px;}
.y1e9{bottom:548.880000px;}
.y237{bottom:550.155000px;}
.y102{bottom:551.235000px;}
.y222{bottom:557.175000px;}
.yd2{bottom:558.780000px;}
.yd0{bottom:558.795000px;}
.y20e{bottom:559.155000px;}
.y281{bottom:562.575000px;}
.y1cc{bottom:563.835000px;}
.y1e5{bottom:567.075000px;}
.y17c{bottom:569.235000px;}
.y12a{bottom:571.035000px;}
.y8c{bottom:571.575000px;}
.y144{bottom:573.735000px;}
.y69{bottom:575.700000px;}
.y68{bottom:575.715000px;}
.y267{bottom:575.895000px;}
.yaa{bottom:576.255000px;}
.y3f{bottom:578.955000px;}
.y11{bottom:579.315000px;}
.y101{bottom:579.855000px;}
.y236{bottom:584.355000px;}
.y1cb{bottom:584.895000px;}
.y221{bottom:588.315000px;}
.y20d{bottom:590.115000px;}
.y28{bottom:592.620000px;}
.y280{bottom:593.715000px;}
.yfb{bottom:595.335000px;}
.y129{bottom:602.175000px;}
.y8b{bottom:602.535000px;}
.y16c{bottom:602.715000px;}
.y1c9{bottom:605.985000px;}
.y266{bottom:607.065000px;}
.ya9{bottom:607.245000px;}
.y3e{bottom:610.665000px;}
.y143{bottom:614.085000px;}
.y10{bottom:614.985000px;}
.y17b{bottom:617.505000px;}
.y67{bottom:618.585000px;}
.y235{bottom:618.765000px;}
.y220{bottom:619.305000px;}
.y20c{bottom:621.105000px;}
.y27f{bottom:624.705000px;}
.yfe{bottom:624.885000px;}
.y1c4{bottom:627.045000px;}
.y128{bottom:633.165000px;}
.y8a{bottom:633.705000px;}
.y265{bottom:638.385000px;}
.y3d{bottom:642.345000px;}
.ycc{bottom:645.045000px;}
.y16b{bottom:645.765000px;}
.ya8{bottom:650.445000px;}
.yf{bottom:650.805000px;}
.y20b{bottom:652.245000px;}
.y234{bottom:653.145000px;}
.y27e{bottom:655.845000px;}
.y142{bottom:657.105000px;}
.yf8{bottom:657.285000px;}
.y66{bottom:661.245000px;}
.y127{bottom:664.305000px;}
.y89{bottom:664.665000px;}
.y17a{bottom:665.745000px;}
.y1c8{bottom:669.525000px;}
.y3c{bottom:674.205000px;}
.y16a{bottom:676.905000px;}
.ya7{bottom:681.405000px;}
.ye{bottom:686.445000px;}
.y27d{bottom:686.805000px;}
.y233{bottom:687.525000px;}
.y141{bottom:688.245000px;}
.yfa{bottom:688.785000px;}
.y1c7{bottom:690.585000px;}
.y126{bottom:695.265000px;}
.y88{bottom:695.805000px;}
.y264{bottom:700.485000px;}
.y65{bottom:703.905000px;}
.y3b{bottom:705.885000px;}
.y1c6{bottom:711.645000px;}
.ya6{bottom:712.545000px;}
.yc8{bottom:713.985000px;}
.y140{bottom:719.205000px;}
.yf0{bottom:721.185000px;}
.y232{bottom:721.905000px;}
.yd{bottom:722.085000px;}
.y169{bottom:722.625000px;}
.y125{bottom:726.405000px;}
.y87{bottom:730.905000px;}
.y263{bottom:731.625000px;}
.y27c{bottom:732.525000px;}
.y1c3{bottom:732.705000px;}
.y185{bottom:734.220000px;}
.y194{bottom:734.760000px;}
.y3a{bottom:737.745000px;}
.ya5{bottom:743.505000px;}
.y64{bottom:745.305000px;}
.y13f{bottom:750.345000px;}
.yf3{bottom:752.685000px;}
.y1ba{bottom:753.765000px;}
.y249{bottom:755.565000px;}
.y231{bottom:756.105000px;}
.y124{bottom:757.365000px;}
.yc{bottom:757.905000px;}
.y262{bottom:762.945000px;}
.y168{bottom:768.165000px;}
.y86{bottom:768.525000px;}
.y27b{bottom:768.705000px;}
.y39{bottom:769.425000px;}
.ya4{bottom:774.465000px;}
.y13e{bottom:781.305000px;}
.y167{bottom:785.265000px;}
.y248{bottom:786.525000px;}
.y62{bottom:786.705000px;}
.yea{bottom:787.065000px;}
.y123{bottom:788.505000px;}
.y230{bottom:790.485000px;}
.yb{bottom:793.545000px;}
.y261{bottom:793.905000px;}
.y1c1{bottom:796.245000px;}
.ybc{bottom:800.205000px;}
.y38{bottom:801.285000px;}
.ya3{bottom:805.605000px;}
.y166{bottom:806.685000px;}
.y85{bottom:810.645000px;}
.y13d{bottom:812.445000px;}
.y27a{bottom:814.425000px;}
.y1bf{bottom:817.320000px;}
.y21f{bottom:817.665000px;}
.yed{bottom:818.745000px;}
.y122{bottom:819.465000px;}
.y37{bottom:820.905000px;}
.y22f{bottom:824.865000px;}
.y260{bottom:825.405000px;}
.y165{bottom:828.120000px;}
.ya{bottom:829.185000px;}
.y5e{bottom:829.365000px;}
.y5f{bottom:829.380000px;}
.ya2{bottom:836.565000px;}
.y1bd{bottom:838.365000px;}
.y84{bottom:841.605000px;}
.y13c{bottom:843.405000px;}
.y21e{bottom:848.625000px;}
.y164{bottom:849.525000px;}
.y121{bottom:850.605000px;}
.ye8{bottom:851.505000px;}
.y36{bottom:853.485000px;}
.y25f{bottom:856.365000px;}
.y279{bottom:857.445000px;}
.y1b8{bottom:859.620000px;}
.y9{bottom:864.825000px;}
.ya1{bottom:867.750000px;}
.y163{bottom:870.990000px;}
.y5c{bottom:872.055000px;}
.y5a{bottom:872.070000px;}
.y13b{bottom:874.590000px;}
.y21d{bottom:879.810000px;}
.y20a{bottom:881.610000px;}
.y1b5{bottom:883.935000px;}
.y1b1{bottom:883.950000px;}
.y83{bottom:884.670000px;}
.y35{bottom:885.570000px;}
.y25e{bottom:887.550000px;}
.y162{bottom:892.590000px;}
.y120{bottom:896.190000px;}
.ya0{bottom:898.710000px;}
.y292{bottom:899.070000px;}
.y278{bottom:900.510000px;}
.y8{bottom:900.690000px;}
.ye7{bottom:901.590000px;}
.y13a{bottom:905.550000px;}
.yb8{bottom:907.170000px;}
.y21c{bottom:910.770000px;}
.y161{bottom:914.010000px;}
.y59{bottom:914.715000px;}
.y58{bottom:914.730000px;}
.y82{bottom:915.810000px;}
.y34{bottom:917.790000px;}
.y25d{bottom:918.870000px;}
.y209{bottom:926.970000px;}
.y257{bottom:930.750000px;}
.y277{bottom:931.650000px;}
.y160{bottom:935.430000px;}
.y7{bottom:936.330000px;}
.y139{bottom:936.690000px;}
.y9f{bottom:941.910000px;}
.y81{bottom:946.770000px;}
.y25c{bottom:949.830000px;}
.y33{bottom:951.990000px;}
.y22e{bottom:953.790000px;}
.y57{bottom:956.115000px;}
.y56{bottom:956.130000px;}
.y15f{bottom:956.850000px;}
.y256{bottom:960.810000px;}
.y276{bottom:962.610000px;}
.yb7{bottom:963.510000px;}
.y6{bottom:971.970000px;}
.y9e{bottom:972.870000px;}
.y80{bottom:977.910000px;}
.y15e{bottom:978.270000px;}
.y25b{bottom:981.330000px;}
.y138{bottom:982.410000px;}
.ye6{bottom:984.930000px;}
.y32{bottom:985.110000px;}
.y1b0{bottom:989.790000px;}
.y255{bottom:991.950000px;}
.y275{bottom:993.570000px;}
.y247{bottom:996.990000px;}
.y55{bottom:997.515000px;}
.y54{bottom:997.530000px;}
.y15d{bottom:999.690000px;}
.y179{bottom:1001.130000px;}
.y9d{bottom:1004.010000px;}
.y1af{bottom:1007.250000px;}
.y5{bottom:1007.790000px;}
.y7f{bottom:1008.870000px;}
.y25a{bottom:1012.290000px;}
.y31{bottom:1015.350000px;}
.ye5{bottom:1015.890000px;}
.y291{bottom:1016.070000px;}
.y15c{bottom:1021.290000px;}
.y274{bottom:1024.710000px;}
.y246{bottom:1027.950000px;}
.y9c{bottom:1034.970000px;}
.y1ae{bottom:1037.850000px;}
.y52{bottom:1038.915000px;}
.y50{bottom:1038.930000px;}
.y7e{bottom:1040.010000px;}
.y15b{bottom:1042.710000px;}
.y4{bottom:1043.430000px;}
.yb6{bottom:1047.030000px;}
.y30{bottom:1048.470000px;}
.y259{bottom:1055.670000px;}
.y245{bottom:1059.090000px;}
.y157{bottom:1064.130000px;}
.y9b{bottom:1066.110000px;}
.y7d{bottom:1070.970000px;}
.y3{bottom:1077.990000px;}
.y290{bottom:1078.170000px;}
.y15a{bottom:1085.550000px;}
.y2f{bottom:1088.430000px;}
.y4f{bottom:1099.230000px;}
.y258{bottom:1101.390000px;}
.y7c{bottom:1102.110000px;}
.y9a{bottom:1109.130000px;}
.y2{bottom:1110.210000px;}
.y156{bottom:1125.510000px;}
.y2e{bottom:1136.520000px;}
.y4e{bottom:1137.240000px;}
.y244{bottom:1137.600000px;}
.y99{bottom:1140.120000px;}
.y28f{bottom:1140.300000px;}
.y1{bottom:1142.640000px;}
.y155{bottom:1143.000000px;}
.h46{height:20.685000px;}
.h48{height:20.700000px;}
.h47{height:20.722500px;}
.h57{height:21.045000px;}
.h58{height:21.060000px;}
.h53{height:21.081000px;}
.h5c{height:21.090000px;}
.h56{height:21.240000px;}
.h61{height:25.920000px;}
.h3a{height:29.520000px;}
.h42{height:29.550000px;}
.h37{height:29.722500px;}
.h3f{height:31.500000px;}
.h3c{height:31.680000px;}
.h69{height:32.580000px;}
.h3e{height:33.660000px;}
.h68{height:34.200000px;}
.h27{height:34.365000px;}
.h36{height:36.000000px;}
.h33{height:38.158594px;}
.h4a{height:38.759766px;}
.h64{height:39.208008px;}
.h55{height:40.822383px;}
.h24{height:41.205000px;}
.h22{height:41.215500px;}
.h23{height:41.220000px;}
.h15{height:41.385000px;}
.h13{height:41.391000px;}
.h1e{height:41.395500px;}
.h14{height:41.400000px;}
.h45{height:42.105000px;}
.h5d{height:42.465000px;}
.h59{height:42.480000px;}
.h1a{height:42.645000px;}
.h16{height:42.651000px;}
.h1d{height:42.655500px;}
.h18{height:42.660000px;}
.h1c{height:42.681000px;}
.h1b{height:42.682500px;}
.h21{height:42.870000px;}
.h1f{height:42.876000px;}
.h20{height:42.885000px;}
.h11{height:42.894141px;}
.hb{height:45.184219px;}
.h5f{height:45.248906px;}
.hd{height:47.545312px;}
.h38{height:48.095156px;}
.h12{height:51.679688px;}
.h10{height:52.277344px;}
.h43{height:52.998047px;}
.h3b{height:53.734219px;}
.h50{height:54.080859px;}
.h8{height:57.462539px;}
.h2a{height:58.621992px;}
.h26{height:58.651172px;}
.h2e{height:59.019609px;}
.h2b{height:59.038594px;}
.h28{height:60.226875px;}
.h4b{height:60.465234px;}
.he{height:61.164492px;}
.h39{height:61.200000px;}
.h41{height:61.230000px;}
.h2{height:61.423863px;}
.h40{height:63.180000px;}
.h62{height:65.010937px;}
.h3d{height:65.160000px;}
.h65{height:65.273906px;}
.h4e{height:66.780000px;}
.h2f{height:68.935500px;}
.h2d{height:68.940000px;}
.h19{height:70.628906px;}
.h3{height:70.664062px;}
.h35{height:72.562500px;}
.h17{height:74.004654px;}
.h44{height:74.160000px;}
.h34{height:74.704922px;}
.h6a{height:75.519844px;}
.h9{height:75.960000px;}
.h66{height:78.416016px;}
.h25{height:82.635820px;}
.ha{height:82.676953px;}
.h4f{height:83.865000px;}
.h51{height:83.871000px;}
.h52{height:83.880000px;}
.h7{height:84.898125px;}
.h2c{height:86.215500px;}
.h4{height:86.220000px;}
.h30{height:86.250000px;}
.h31{height:86.256000px;}
.h32{height:86.265000px;}
.hf{height:87.303164px;}
.h6{height:94.860000px;}
.h5{height:96.508125px;}
.h29{height:103.522500px;}
.h5e{height:104.385000px;}
.h5a{height:105.660000px;}
.h5b{height:105.690000px;}
.h54{height:105.840000px;}
.h60{height:111.420000px;}
.hc{height:115.965000px;}
.h4d{height:241.020000px;}
.h4c{height:257.400000px;}
.h49{height:260.100000px;}
.h63{height:274.860000px;}
.h67{height:275.760000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:38.520000px;}
.w19{width:48.045000px;}
.w1a{width:48.081000px;}
.w1b{width:48.225000px;}
.w1c{width:49.710000px;}
.w20{width:49.845000px;}
.w22{width:50.025000px;}
.w21{width:50.061000px;}
.w23{width:51.870000px;}
.w2b{width:65.685000px;}
.w8{width:74.376000px;}
.wb{width:74.505000px;}
.w38{width:74.700000px;}
.w36{width:78.660000px;}
.w31{width:83.145000px;}
.w2d{width:83.151000px;}
.w2e{width:83.160000px;}
.w2c{width:92.181000px;}
.wd{width:106.230000px;}
.w10{width:106.375500px;}
.wa{width:106.380000px;}
.w32{width:114.870000px;}
.w2f{width:114.876000px;}
.w30{width:114.885000px;}
.we{width:123.480000px;}
.w15{width:130.710000px;}
.w29{width:135.891000px;}
.wc{width:138.261000px;}
.wf{width:138.262500px;}
.w12{width:156.435000px;}
.w9{width:159.495000px;}
.w14{width:182.715000px;}
.w2a{width:229.740000px;}
.w18{width:245.220000px;}
.w13{width:247.890000px;}
.w1f{width:254.760000px;}
.w2{width:294.720000px;}
.w3{width:294.885000px;}
.w37{width:351.000000px;}
.w5{width:353.220000px;}
.w17{width:359.166000px;}
.w4{width:366.015000px;}
.w1e{width:373.026000px;}
.w27{width:376.740000px;}
.w35{width:377.100000px;}
.w26{width:396.900000px;}
.w25{width:399.240000px;}
.w34{width:524.970000px;}
.w1d{width:605.115000px;}
.w24{width:628.515000px;}
.w39{width:635.535000px;}
.w28{width:639.855000px;}
.w16{width:707.535000px;}
.w6{width:707.760000px;}
.w33{width:709.875000px;}
.w11{width:800.100000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:6.120000px;}
.x1d{left:8.136000px;}
.x32{left:9.720000px;}
.xc{left:10.785000px;}
.x28{left:12.225000px;}
.x4a{left:14.400000px;}
.xe{left:15.645000px;}
.x21{left:18.000000px;}
.x34{left:19.245000px;}
.x22{left:20.520000px;}
.x2d{left:22.320000px;}
.x10{left:23.565000px;}
.x63{left:24.645000px;}
.x9{left:25.755000px;}
.x67{left:27.000000px;}
.x5{left:28.065000px;}
.x31{left:29.340000px;}
.x6b{left:30.951000px;}
.x3c{left:32.031000px;}
.x3e{left:33.480000px;}
.xf{left:35.085000px;}
.x8{left:37.095000px;}
.x2e{left:40.851000px;}
.x2a{left:43.725000px;}
.x2f{left:46.080000px;}
.x3f{left:47.880000px;}
.x68{left:48.990000px;}
.x6c{left:50.391000px;}
.x40{left:51.645000px;}
.x33{left:53.100000px;}
.x3d{left:56.865000px;}
.x38{left:57.951000px;}
.x24{left:59.745000px;}
.x6{left:61.770000px;}
.x36{left:63.360000px;}
.x6a{left:67.890000px;}
.x30{left:69.150000px;}
.x1c{left:73.080000px;}
.x70{left:74.160000px;}
.x57{left:75.636000px;}
.x61{left:78.510000px;}
.x5f{left:85.725000px;}
.x37{left:87.705000px;}
.x69{left:88.950000px;}
.x6e{left:91.125000px;}
.x23{left:92.385000px;}
.x71{left:95.970000px;}
.x74{left:98.490000px;}
.x46{left:103.890000px;}
.x4f{left:108.930000px;}
.x6d{left:114.690000px;}
.x2{left:127.656000px;}
.x19{left:129.996000px;}
.x12{left:133.056000px;}
.x45{left:144.045000px;}
.xa{left:147.435000px;}
.x59{left:151.950000px;}
.x5e{left:153.720000px;}
.x4d{left:156.270000px;}
.x44{left:161.130000px;}
.x1f{left:180.750000px;}
.x5d{left:188.640000px;}
.x73{left:197.025000px;}
.x4c{left:200.730000px;}
.x5b{left:204.630000px;}
.x58{left:210.810000px;}
.x54{left:212.430000px;}
.x60{left:221.625000px;}
.x16{left:223.950000px;}
.x42{left:227.370000px;}
.x15{left:236.730000px;}
.x55{left:239.430000px;}
.x39{left:244.155000px;}
.x25{left:251.895000px;}
.x1a{left:253.335000px;}
.x5c{left:257.400000px;}
.x18{left:315.075000px;}
.x17{left:323.895000px;}
.x20{left:339.735000px;}
.x35{left:342.435000px;}
.x26{left:358.275000px;}
.x41{left:359.895000px;}
.x14{left:361.695000px;}
.x3{left:364.935000px;}
.x1b{left:372.135000px;}
.x56{left:379.155000px;}
.x27{left:432.660000px;}
.x43{left:438.225000px;}
.x11{left:442.365000px;}
.x13{left:446.505000px;}
.x62{left:451.380000px;}
.x5a{left:458.100000px;}
.x72{left:461.160000px;}
.xb{left:487.740000px;}
.x3a{left:492.060000px;}
.xd{left:504.300000px;}
.x4e{left:506.100000px;}
.x29{left:507.180000px;}
.x64{left:517.080000px;}
.x4{left:524.280000px;}
.x47{left:552.900000px;}
.x50{left:556.680000px;}
.x7{left:576.495000px;}
.x48{left:601.710000px;}
.x51{left:607.470000px;}
.x65{left:609.270000px;}
.x2b{left:645.450000px;}
.x49{left:650.670000px;}
.x52{left:658.410000px;}
.x6f{left:666.150000px;}
.x3b{left:674.790000px;}
.x66{left:692.430000px;}
.x4b{left:699.450000px;}
.x53{left:708.990000px;}
.x2c{left:751.680000px;}
.x1e{left:780.840000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.768000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.311467pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls29{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.023040pt;}
.ls22{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.053760pt;}
.ls11{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.227733pt;}
.ls12{letter-spacing:0.230933pt;}
.ls23{letter-spacing:0.238080pt;}
.ls19{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.327680pt;}
.ls9{letter-spacing:0.348160pt;}
.ls26{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.821333pt;}
.lse{letter-spacing:1.920000pt;}
.ls25{letter-spacing:2.560000pt;}
.ls24{letter-spacing:3.360000pt;}
.ls13{letter-spacing:10.240000pt;}
.ls4{letter-spacing:39.808000pt;}
.ls3{letter-spacing:48.768000pt;}
.ls28{letter-spacing:58.368000pt;}
.ls20{letter-spacing:104.304000pt;}
.ls21{letter-spacing:160.997333pt;}
.ls1f{letter-spacing:172.778667pt;}
.ws1a{word-spacing:-171.845333pt;}
.ws18{word-spacing:-115.152000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws4{word-spacing:-18.720000pt;}
.ws20{word-spacing:-18.408533pt;}
.ws1f{word-spacing:-16.384000pt;}
.ws11{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws15{word-spacing:-15.168000pt;}
.ws16{word-spacing:-14.101333pt;}
.ws8{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.283840pt;}
.ws9{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.185067pt;}
.wsc{word-spacing:-12.688000pt;}
.ws17{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.400000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws10{word-spacing:-8.389120pt;}
.ws3{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:37.434667pt;}
.ws1e{word-spacing:44.432000pt;}
.ws1c{word-spacing:61.722667pt;}
.ws19{word-spacing:69.168000pt;}
.ws1b{word-spacing:125.861333pt;}
._1f{margin-left:-11.914667pt;}
._25{margin-left:-6.773333pt;}
._22{margin-left:-5.873280pt;}
._f{margin-left:-3.770453pt;}
._e{margin-left:-2.670720pt;}
._1{margin-left:-0.913280pt;}
._0{width:1.168640pt;}
._3{width:2.141867pt;}
._4{width:3.039147pt;}
._7{width:4.458667pt;}
._12{width:5.354667pt;}
._13{width:6.346667pt;}
._2{width:8.012160pt;}
._a{width:9.472000pt;}
._15{width:10.415360pt;}
._8{width:11.754667pt;}
._9{width:13.109973pt;}
._14{width:14.206933pt;}
._1e{width:15.105067pt;}
._16{width:16.960000pt;}
._21{width:18.010027pt;}
._19{width:19.025280pt;}
._26{width:19.946027pt;}
._b{width:21.674667pt;}
._1a{width:23.210667pt;}
._1b{width:24.533333pt;}
._1c{width:26.368000pt;}
._1d{width:27.439360pt;}
._28{width:29.632000pt;}
._29{width:30.778027pt;}
._17{width:31.744000pt;}
._18{width:32.721280pt;}
._10{width:34.112000pt;}
._11{width:35.968000pt;}
._27{width:37.589760pt;}
._20{width:60.090667pt;}
._23{width:77.253333pt;}
._c{width:87.552000pt;}
._d{width:88.448000pt;}
._5{width:134.784000pt;}
._6{width:135.690667pt;}
._24{width:172.778667pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fsa{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.y23{bottom:-9.613333pt;}
.y0{bottom:0.000000pt;}
.y1f6{bottom:0.293333pt;}
.y208{bottom:1.586667pt;}
.y205{bottom:2.560000pt;}
.ybb{bottom:3.040000pt;}
.yd9{bottom:3.213333pt;}
.yc3{bottom:3.360000pt;}
.y60{bottom:3.986667pt;}
.y63{bottom:4.000000pt;}
.y53{bottom:4.013333pt;}
.y159{bottom:4.320000pt;}
.y1b9{bottom:4.466667pt;}
.yec{bottom:4.480000pt;}
.y1c0{bottom:4.626667pt;}
.y1be{bottom:4.640000pt;}
.y1a8{bottom:5.093333pt;}
.y192{bottom:5.693333pt;}
.y19c{bottom:6.720000pt;}
.y11f{bottom:7.693333pt;}
.yff{bottom:8.346667pt;}
.yf6{bottom:9.280000pt;}
.y1ea{bottom:9.773333pt;}
.y1e4{bottom:10.226667pt;}
.yf4{bottom:10.240000pt;}
.y27{bottom:10.712000pt;}
.yb9{bottom:10.720000pt;}
.ycf{bottom:10.880000pt;}
.yc7{bottom:11.040000pt;}
.yee{bottom:12.480000pt;}
.y100{bottom:12.506667pt;}
.ye9{bottom:12.640000pt;}
.y146{bottom:13.440000pt;}
.yfd{bottom:13.466667pt;}
.y1d4{bottom:13.600000pt;}
.y1c2{bottom:14.080000pt;}
.yf7{bottom:14.240000pt;}
.yef{bottom:14.400000pt;}
.y1b4{bottom:14.560000pt;}
.y1b6{bottom:14.573333pt;}
.yf2{bottom:15.200000pt;}
.y1f{bottom:15.213333pt;}
.y203{bottom:15.613333pt;}
.y1f4{bottom:15.680000pt;}
.yf5{bottom:16.160000pt;}
.y1ad{bottom:16.493333pt;}
.y207{bottom:16.946667pt;}
.yba{bottom:18.240000pt;}
.ycd{bottom:18.560000pt;}
.yd5{bottom:18.573333pt;}
.yc2{bottom:18.720000pt;}
.ye4{bottom:20.013333pt;}
.y1a6{bottom:22.213333pt;}
.y5b{bottom:22.240000pt;}
.y51{bottom:22.400000pt;}
.y158{bottom:22.720000pt;}
.y11e{bottom:23.213333pt;}
.y61{bottom:23.506667pt;}
.y5d{bottom:23.520000pt;}
.y6a{bottom:23.680000pt;}
.y190{bottom:24.320000pt;}
.y19a{bottom:25.346667pt;}
.y1e3{bottom:25.746667pt;}
.yce{bottom:26.240000pt;}
.yd3{bottom:26.253333pt;}
.yc6{bottom:26.400000pt;}
.y22{bottom:29.106667pt;}
.y26{bottom:29.112000pt;}
.yfc{bottom:31.386667pt;}
.y1ac{bottom:32.013333pt;}
.yf9{bottom:32.160000pt;}
.y1b2{bottom:32.480000pt;}
.y1b7{bottom:32.493333pt;}
.yf1{bottom:33.120000pt;}
.yca{bottom:33.920000pt;}
.yd8{bottom:33.933333pt;}
.ybe{bottom:34.080000pt;}
.y2b{bottom:36.040000pt;}
.y19f{bottom:37.786667pt;}
.y11d{bottom:38.573333pt;}
.y186{bottom:39.933333pt;}
.yeb{bottom:40.320000pt;}
.y195{bottom:40.960000pt;}
.y1e2{bottom:41.106667pt;}
.yc9{bottom:41.600000pt;}
.yd1{bottom:41.626667pt;}
.ybf{bottom:41.760000pt;}
.y200{bottom:42.173333pt;}
.y1ab{bottom:47.373333pt;}
.ybd{bottom:49.280000pt;}
.yd4{bottom:49.306667pt;}
.yd7{bottom:49.320000pt;}
.y1b3{bottom:50.400000pt;}
.y25{bottom:50.552000pt;}
.y2d{bottom:51.200000pt;}
.y11c{bottom:53.933333pt;}
.y1f2{bottom:54.560000pt;}
.y187{bottom:55.840000pt;}
.y1e1{bottom:56.306667pt;}
.y1e{bottom:56.813333pt;}
.yc5{bottom:56.960000pt;}
.y1f8{bottom:57.786667pt;}
.y201{bottom:60.866667pt;}
.y1a0{bottom:60.893333pt;}
.y2a{bottom:61.160000pt;}
.ycb{bottom:64.640000pt;}
.yd6{bottom:64.666667pt;}
.yc1{bottom:64.680000pt;}
.y1bc{bottom:65.120000pt;}
.y1ec{bottom:66.013333pt;}
.y21{bottom:67.026667pt;}
.y2c{bottom:69.152000pt;}
.y1e0{bottom:71.666667pt;}
.y188{bottom:71.773333pt;}
.yc4{bottom:72.360000pt;}
.y1a7{bottom:74.173333pt;}
.y24{bottom:77.320000pt;}
.y19b{bottom:79.173333pt;}
.yc0{bottom:80.040000pt;}
.y1d0{bottom:80.160000pt;}
.y1c5{bottom:81.280000pt;}
.y1bb{bottom:81.440000pt;}
.y191{bottom:82.400000pt;}
.y1a1{bottom:83.973333pt;}
.y29{bottom:85.800000pt;}
.y1df{bottom:87.026667pt;}
.y189{bottom:87.680000pt;}
.y196{bottom:88.386667pt;}
.y1ed{bottom:90.426667pt;}
.y1f9{bottom:90.560000pt;}
.ye2{bottom:99.392000pt;}
.y18a{bottom:103.613333pt;}
.y28e{bottom:104.672000pt;}
.y7b{bottom:106.432000pt;}
.y1fa{bottom:106.946667pt;}
.y1a2{bottom:107.066667pt;}
.y254{bottom:110.752000pt;}
.y197{bottom:112.066667pt;}
.y137{bottom:112.192000pt;}
.y1ee{bottom:114.813333pt;}
.y10f{bottom:116.032000pt;}
.y1e8{bottom:116.832000pt;}
.y1dd{bottom:118.432000pt;}
.y4d{bottom:119.232000pt;}
.y18b{bottom:119.520000pt;}
.y243{bottom:122.752000pt;}
.y1fb{bottom:123.333333pt;}
.y11a{bottom:123.872000pt;}
.y1dc{bottom:124.832000pt;}
.y22d{bottom:125.792000pt;}
.ye1{bottom:127.072000pt;}
.y98{bottom:127.232000pt;}
.y21b{bottom:127.552000pt;}
.y1a3{bottom:130.146667pt;}
.y1de{bottom:131.400000pt;}
.y28d{bottom:132.352000pt;}
.y178{bottom:134.106667pt;}
.y7a{bottom:134.746667pt;}
.y18c{bottom:135.426667pt;}
.y198{bottom:135.773333pt;}
.y253{bottom:138.426667pt;}
.y1ef{bottom:139.226667pt;}
.y1fc{bottom:139.706667pt;}
.y136{bottom:139.866667pt;}
.y10e{bottom:143.706667pt;}
.y4c{bottom:147.546667pt;}
.y18d{bottom:151.360000pt;}
.y119{bottom:151.546667pt;}
.y1db{bottom:152.506667pt;}
.y242{bottom:153.146667pt;}
.y1a4{bottom:153.253333pt;}
.y22c{bottom:153.466667pt;}
.ye0{bottom:154.586667pt;}
.y97{bottom:154.746667pt;}
.y21a{bottom:155.066667pt;}
.y1e7{bottom:155.226667pt;}
.y184{bottom:156.026667pt;}
.y1fd{bottom:156.093333pt;}
.yb5{bottom:156.666667pt;}
.y199{bottom:159.493333pt;}
.y28c{bottom:159.866667pt;}
.y177{bottom:161.626667pt;}
.y79{bottom:162.906667pt;}
.y1f0{bottom:163.613333pt;}
.y1c{bottom:165.786667pt;}
.y252{bottom:165.946667pt;}
.y18e{bottom:167.266667pt;}
.y135{bottom:167.386667pt;}
.y273{bottom:168.346667pt;}
.y206{bottom:170.760000pt;}
.y10d{bottom:171.226667pt;}
.y1fe{bottom:172.480000pt;}
.y154{bottom:172.986667pt;}
.y4b{bottom:175.706667pt;}
.y1a5{bottom:176.320000pt;}
.y118{bottom:179.066667pt;}
.y1da{bottom:180.026667pt;}
.y22b{bottom:180.986667pt;}
.ydf{bottom:182.266667pt;}
.y219{bottom:182.586667pt;}
.y18f{bottom:183.200000pt;}
.y183{bottom:183.546667pt;}
.y241{bottom:183.706667pt;}
.yb4{bottom:184.346667pt;}
.y1f1{bottom:188.026667pt;}
.y1ff{bottom:188.866667pt;}
.y1a9{bottom:189.573333pt;}
.y78{bottom:191.066667pt;}
.y251{bottom:193.626667pt;}
.y96{bottom:195.066667pt;}
.y1b{bottom:197.626667pt;}
.y10c{bottom:198.906667pt;}
.y28b{bottom:200.506667pt;}
.y176{bottom:201.946667pt;}
.y19d{bottom:202.173333pt;}
.y1eb{bottom:203.360000pt;}
.y193{bottom:203.386667pt;}
.y1f7{bottom:203.520000pt;}
.y4a{bottom:204.026667pt;}
.y272{bottom:206.586667pt;}
.y117{bottom:206.746667pt;}
.y1d9{bottom:207.706667pt;}
.y134{bottom:208.026667pt;}
.y22a{bottom:208.666667pt;}
.yde{bottom:209.786667pt;}
.y218{bottom:210.266667pt;}
.y153{bottom:211.226667pt;}
.yb3{bottom:211.866667pt;}
.y1f3{bottom:213.786667pt;}
.y20{bottom:213.800000pt;}
.y240{bottom:214.266667pt;}
.y202{bottom:214.626667pt;}
.y77{bottom:219.386667pt;}
.y10b{bottom:226.426667pt;}
.y1a{bottom:229.306667pt;}
.y250{bottom:231.866667pt;}
.y49{bottom:232.186667pt;}
.y271{bottom:234.106667pt;}
.y116{bottom:234.266667pt;}
.y1d8{bottom:235.226667pt;}
.y95{bottom:235.866667pt;}
.y229{bottom:236.186667pt;}
.ydd{bottom:237.466667pt;}
.y217{bottom:237.786667pt;}
.y182{bottom:238.746667pt;}
.yb2{bottom:239.546667pt;}
.y28a{bottom:240.986667pt;}
.y23f{bottom:244.826667pt;}
.y76{bottom:247.546667pt;}
.y133{bottom:248.506667pt;}
.y152{bottom:249.466667pt;}
.y10a{bottom:254.106667pt;}
.y24f{bottom:259.386667pt;}
.y175{bottom:259.706667pt;}
.y48{bottom:260.506667pt;}
.y19{bottom:260.986667pt;}
.y115{bottom:261.946667pt;}
.y270{bottom:262.106667pt;}
.y228{bottom:263.866667pt;}
.y151{bottom:264.680000pt;}
.y216{bottom:265.466667pt;}
.y1d7{bottom:266.106667pt;}
.y181{bottom:266.426667pt;}
.yb1{bottom:267.066667pt;}
.y94{bottom:274.106667pt;}
.y23e{bottom:275.226667pt;}
.y75{bottom:275.866667pt;}
.ydc{bottom:277.946667pt;}
.y289{bottom:279.386667pt;}
.y109{bottom:281.626667pt;}
.y150{bottom:283.720000pt;}
.y132{bottom:286.746667pt;}
.y24e{bottom:287.066667pt;}
.y174{bottom:287.386667pt;}
.y47{bottom:288.666667pt;}
.y114{bottom:289.466667pt;}
.y26f{bottom:289.946667pt;}
.y227{bottom:291.386667pt;}
.y18{bottom:292.826667pt;}
.y215{bottom:292.986667pt;}
.y180{bottom:293.946667pt;}
.y1d6{bottom:300.986667pt;}
.y93{bottom:301.786667pt;}
.y14f{bottom:302.786667pt;}
.y74{bottom:304.066667pt;}
.y23d{bottom:305.826667pt;}
.y288{bottom:306.946667pt;}
.yb0{bottom:307.746667pt;}
.y108{bottom:309.346667pt;}
.y1d5{bottom:311.586667pt;}
.y131{bottom:314.466667pt;}
.y173{bottom:314.946667pt;}
.y46{bottom:316.866667pt;}
.y113{bottom:317.186667pt;}
.y26e{bottom:317.506667pt;}
.y226{bottom:319.106667pt;}
.y214{bottom:320.706667pt;}
.ydb{bottom:320.866667pt;}
.y14e{bottom:321.986667pt;}
.y17{bottom:324.546667pt;}
.y24d{bottom:325.346667pt;}
.y73{bottom:332.386667pt;}
.y92{bottom:332.546667pt;}
.y1cf{bottom:333.186667pt;}
.y17f{bottom:334.306667pt;}
.y287{bottom:334.626667pt;}
.y23c{bottom:336.386667pt;}
.y107{bottom:336.866667pt;}
.y14d{bottom:341.026667pt;}
.y130{bottom:341.986667pt;}
.y172{bottom:342.626667pt;}
.y112{bottom:344.706667pt;}
.y45{bottom:345.186667pt;}
.y26d{bottom:345.506667pt;}
.y225{bottom:346.626667pt;}
.y213{bottom:348.226667pt;}
.yaf{bottom:350.306667pt;}
.y1aa{bottom:351.413333pt;}
.yda{bottom:352.866667pt;}
.y16{bottom:356.226667pt;}
.y14c{bottom:360.066667pt;}
.y72{bottom:360.546667pt;}
.y286{bottom:362.146667pt;}
.y106{bottom:364.546667pt;}
.ye3{bottom:364.853333pt;}
.y23b{bottom:366.946667pt;}
.y1d{bottom:369.333333pt;}
.y12f{bottom:369.666667pt;}
.y1d3{bottom:369.826667pt;}
.y91{bottom:369.986667pt;}
.y171{bottom:370.146667pt;}
.y26c{bottom:373.026667pt;}
.y44{bottom:373.346667pt;}
.y224{bottom:374.146667pt;}
.y212{bottom:375.906667pt;}
.y14b{bottom:379.106667pt;}
.y24c{bottom:380.546667pt;}
.y111{bottom:385.346667pt;}
.y15{bottom:388.066667pt;}
.y1d2{bottom:388.546667pt;}
.y71{bottom:388.866667pt;}
.y285{bottom:389.826667pt;}
.yae{bottom:391.106667pt;}
.y105{bottom:392.066667pt;}
.y12e{bottom:397.186667pt;}
.y23a{bottom:397.346667pt;}
.y90{bottom:397.666667pt;}
.y170{bottom:397.826667pt;}
.y14a{bottom:398.146667pt;}
.y26b{bottom:401.026667pt;}
.y70{bottom:401.493333pt;}
.y6f{bottom:401.506667pt;}
.y43{bottom:401.666667pt;}
.y223{bottom:401.826667pt;}
.y211{bottom:403.426667pt;}
.y1d1{bottom:407.266667pt;}
.y149{bottom:417.186667pt;}
.y284{bottom:417.346667pt;}
.y204{bottom:418.240000pt;}
.y19e{bottom:418.400000pt;}
.y24b{bottom:418.786667pt;}
.y1f5{bottom:419.520000pt;}
.y14{bottom:419.746667pt;}
.y17e{bottom:420.226667pt;}
.y12d{bottom:424.866667pt;}
.y8f{bottom:425.186667pt;}
.y16f{bottom:425.346667pt;}
.y110{bottom:425.826667pt;}
.y1ce{bottom:425.986667pt;}
.y239{bottom:427.906667pt;}
.y26a{bottom:428.546667pt;}
.yad{bottom:429.346667pt;}
.y42{bottom:429.826667pt;}
.y210{bottom:431.106667pt;}
.y104{bottom:432.706667pt;}
.y148{bottom:436.386667pt;}
.y6e{bottom:438.133333pt;}
.y6d{bottom:438.146667pt;}
.y11b{bottom:440.533333pt;}
.y1ca{bottom:444.706667pt;}
.y283{bottom:445.026667pt;}
.y13{bottom:451.426667pt;}
.y12c{bottom:452.386667pt;}
.y8e{bottom:452.866667pt;}
.y16e{bottom:453.026667pt;}
.y145{bottom:455.426667pt;}
.y269{bottom:456.546667pt;}
.yac{bottom:457.026667pt;}
.y41{bottom:458.146667pt;}
.y238{bottom:458.466667pt;}
.y17d{bottom:463.106667pt;}
.y103{bottom:464.386667pt;}
.y20f{bottom:469.346667pt;}
.y282{bottom:472.546667pt;}
.y1e6{bottom:473.506667pt;}
.y147{bottom:474.466667pt;}
.y6c{bottom:474.933333pt;}
.y6b{bottom:474.946667pt;}
.y12b{bottom:480.066667pt;}
.y8d{bottom:480.386667pt;}
.y16d{bottom:480.546667pt;}
.y1cd{bottom:482.466667pt;}
.y12{bottom:483.266667pt;}
.y268{bottom:484.066667pt;}
.yab{bottom:484.546667pt;}
.y24a{bottom:484.706667pt;}
.y40{bottom:486.306667pt;}
.y1e9{bottom:487.893333pt;}
.y237{bottom:489.026667pt;}
.y102{bottom:489.986667pt;}
.y222{bottom:495.266667pt;}
.yd2{bottom:496.693333pt;}
.yd0{bottom:496.706667pt;}
.y20e{bottom:497.026667pt;}
.y281{bottom:500.066667pt;}
.y1cc{bottom:501.186667pt;}
.y1e5{bottom:504.066667pt;}
.y17c{bottom:505.986667pt;}
.y12a{bottom:507.586667pt;}
.y8c{bottom:508.066667pt;}
.y144{bottom:509.986667pt;}
.y69{bottom:511.733333pt;}
.y68{bottom:511.746667pt;}
.y267{bottom:511.906667pt;}
.yaa{bottom:512.226667pt;}
.y3f{bottom:514.626667pt;}
.y11{bottom:514.946667pt;}
.y101{bottom:515.426667pt;}
.y236{bottom:519.426667pt;}
.y1cb{bottom:519.906667pt;}
.y221{bottom:522.946667pt;}
.y20d{bottom:524.546667pt;}
.y28{bottom:526.773333pt;}
.y280{bottom:527.746667pt;}
.yfb{bottom:529.186667pt;}
.y129{bottom:535.266667pt;}
.y8b{bottom:535.586667pt;}
.y16c{bottom:535.746667pt;}
.y1c9{bottom:538.653333pt;}
.y266{bottom:539.613333pt;}
.ya9{bottom:539.773333pt;}
.y3e{bottom:542.813333pt;}
.y143{bottom:545.853333pt;}
.y10{bottom:546.653333pt;}
.y17b{bottom:548.893333pt;}
.y67{bottom:549.853333pt;}
.y235{bottom:550.013333pt;}
.y220{bottom:550.493333pt;}
.y20c{bottom:552.093333pt;}
.y27f{bottom:555.293333pt;}
.yfe{bottom:555.453333pt;}
.y1c4{bottom:557.373333pt;}
.y128{bottom:562.813333pt;}
.y8a{bottom:563.293333pt;}
.y265{bottom:567.453333pt;}
.y3d{bottom:570.973333pt;}
.ycc{bottom:573.373333pt;}
.y16b{bottom:574.013333pt;}
.ya8{bottom:578.173333pt;}
.yf{bottom:578.493333pt;}
.y20b{bottom:579.773333pt;}
.y234{bottom:580.573333pt;}
.y27e{bottom:582.973333pt;}
.y142{bottom:584.093333pt;}
.yf8{bottom:584.253333pt;}
.y66{bottom:587.773333pt;}
.y127{bottom:590.493333pt;}
.y89{bottom:590.813333pt;}
.y17a{bottom:591.773333pt;}
.y1c8{bottom:595.133333pt;}
.y3c{bottom:599.293333pt;}
.y16a{bottom:601.693333pt;}
.ya7{bottom:605.693333pt;}
.ye{bottom:610.173333pt;}
.y27d{bottom:610.493333pt;}
.y233{bottom:611.133333pt;}
.y141{bottom:611.773333pt;}
.yfa{bottom:612.253333pt;}
.y1c7{bottom:613.853333pt;}
.y126{bottom:618.013333pt;}
.y88{bottom:618.493333pt;}
.y264{bottom:622.653333pt;}
.y65{bottom:625.693333pt;}
.y3b{bottom:627.453333pt;}
.y1c6{bottom:632.573333pt;}
.ya6{bottom:633.373333pt;}
.yc8{bottom:634.653333pt;}
.y140{bottom:639.293333pt;}
.yf0{bottom:641.053333pt;}
.y232{bottom:641.693333pt;}
.yd{bottom:641.853333pt;}
.y169{bottom:642.333333pt;}
.y125{bottom:645.693333pt;}
.y87{bottom:649.693333pt;}
.y263{bottom:650.333333pt;}
.y27c{bottom:651.133333pt;}
.y1c3{bottom:651.293333pt;}
.y185{bottom:652.640000pt;}
.y194{bottom:653.120000pt;}
.y3a{bottom:655.773333pt;}
.ya5{bottom:660.893333pt;}
.y64{bottom:662.493333pt;}
.y13f{bottom:666.973333pt;}
.yf3{bottom:669.053333pt;}
.y1ba{bottom:670.013333pt;}
.y249{bottom:671.613333pt;}
.y231{bottom:672.093333pt;}
.y124{bottom:673.213333pt;}
.yc{bottom:673.693333pt;}
.y262{bottom:678.173333pt;}
.y168{bottom:682.813333pt;}
.y86{bottom:683.133333pt;}
.y27b{bottom:683.293333pt;}
.y39{bottom:683.933333pt;}
.ya4{bottom:688.413333pt;}
.y13e{bottom:694.493333pt;}
.y167{bottom:698.013333pt;}
.y248{bottom:699.133333pt;}
.y62{bottom:699.293333pt;}
.yea{bottom:699.613333pt;}
.y123{bottom:700.893333pt;}
.y230{bottom:702.653333pt;}
.yb{bottom:705.373333pt;}
.y261{bottom:705.693333pt;}
.y1c1{bottom:707.773333pt;}
.ybc{bottom:711.293333pt;}
.y38{bottom:712.253333pt;}
.ya3{bottom:716.093333pt;}
.y166{bottom:717.053333pt;}
.y85{bottom:720.573333pt;}
.y13d{bottom:722.173333pt;}
.y27a{bottom:723.933333pt;}
.y1bf{bottom:726.506667pt;}
.y21f{bottom:726.813333pt;}
.yed{bottom:727.773333pt;}
.y122{bottom:728.413333pt;}
.y37{bottom:729.693333pt;}
.y22f{bottom:733.213333pt;}
.y260{bottom:733.693333pt;}
.y165{bottom:736.106667pt;}
.ya{bottom:737.053333pt;}
.y5e{bottom:737.213333pt;}
.y5f{bottom:737.226667pt;}
.ya2{bottom:743.613333pt;}
.y1bd{bottom:745.213333pt;}
.y84{bottom:748.093333pt;}
.y13c{bottom:749.693333pt;}
.y21e{bottom:754.333333pt;}
.y164{bottom:755.133333pt;}
.y121{bottom:756.093333pt;}
.ye8{bottom:756.893333pt;}
.y36{bottom:758.653333pt;}
.y25f{bottom:761.213333pt;}
.y279{bottom:762.173333pt;}
.y1b8{bottom:764.106667pt;}
.y9{bottom:768.733333pt;}
.ya1{bottom:771.333333pt;}
.y163{bottom:774.213333pt;}
.y5c{bottom:775.160000pt;}
.y5a{bottom:775.173333pt;}
.y13b{bottom:777.413333pt;}
.y21d{bottom:782.053333pt;}
.y20a{bottom:783.653333pt;}
.y1b5{bottom:785.720000pt;}
.y1b1{bottom:785.733333pt;}
.y83{bottom:786.373333pt;}
.y35{bottom:787.173333pt;}
.y25e{bottom:788.933333pt;}
.y162{bottom:793.413333pt;}
.y120{bottom:796.613333pt;}
.ya0{bottom:798.853333pt;}
.y292{bottom:799.173333pt;}
.y278{bottom:800.453333pt;}
.y8{bottom:800.613333pt;}
.ye7{bottom:801.413333pt;}
.y13a{bottom:804.933333pt;}
.yb8{bottom:806.373333pt;}
.y21c{bottom:809.573333pt;}
.y161{bottom:812.453333pt;}
.y59{bottom:813.080000pt;}
.y58{bottom:813.093333pt;}
.y82{bottom:814.053333pt;}
.y34{bottom:815.813333pt;}
.y25d{bottom:816.773333pt;}
.y209{bottom:823.973333pt;}
.y257{bottom:827.333333pt;}
.y277{bottom:828.133333pt;}
.y160{bottom:831.493333pt;}
.y7{bottom:832.293333pt;}
.y139{bottom:832.613333pt;}
.y9f{bottom:837.253333pt;}
.y81{bottom:841.573333pt;}
.y25c{bottom:844.293333pt;}
.y33{bottom:846.213333pt;}
.y22e{bottom:847.813333pt;}
.y57{bottom:849.880000pt;}
.y56{bottom:849.893333pt;}
.y15f{bottom:850.533333pt;}
.y256{bottom:854.053333pt;}
.y276{bottom:855.653333pt;}
.yb7{bottom:856.453333pt;}
.y6{bottom:863.973333pt;}
.y9e{bottom:864.773333pt;}
.y80{bottom:869.253333pt;}
.y15e{bottom:869.573333pt;}
.y25b{bottom:872.293333pt;}
.y138{bottom:873.253333pt;}
.ye6{bottom:875.493333pt;}
.y32{bottom:875.653333pt;}
.y1b0{bottom:879.813333pt;}
.y255{bottom:881.733333pt;}
.y275{bottom:883.173333pt;}
.y247{bottom:886.213333pt;}
.y55{bottom:886.680000pt;}
.y54{bottom:886.693333pt;}
.y15d{bottom:888.613333pt;}
.y179{bottom:889.893333pt;}
.y9d{bottom:892.453333pt;}
.y1af{bottom:895.333333pt;}
.y5{bottom:895.813333pt;}
.y7f{bottom:896.773333pt;}
.y25a{bottom:899.813333pt;}
.y31{bottom:902.533333pt;}
.ye5{bottom:903.013333pt;}
.y291{bottom:903.173333pt;}
.y15c{bottom:907.813333pt;}
.y274{bottom:910.853333pt;}
.y246{bottom:913.733333pt;}
.y9c{bottom:919.973333pt;}
.y1ae{bottom:922.533333pt;}
.y52{bottom:923.480000pt;}
.y50{bottom:923.493333pt;}
.y7e{bottom:924.453333pt;}
.y15b{bottom:926.853333pt;}
.y4{bottom:927.493333pt;}
.yb6{bottom:930.693333pt;}
.y30{bottom:931.973333pt;}
.y259{bottom:938.373333pt;}
.y245{bottom:941.413333pt;}
.y157{bottom:945.893333pt;}
.y9b{bottom:947.653333pt;}
.y7d{bottom:951.973333pt;}
.y3{bottom:958.213333pt;}
.y290{bottom:958.373333pt;}
.y15a{bottom:964.933333pt;}
.y2f{bottom:967.493333pt;}
.y4f{bottom:977.093333pt;}
.y258{bottom:979.013333pt;}
.y7c{bottom:979.653333pt;}
.y9a{bottom:985.893333pt;}
.y2{bottom:986.853333pt;}
.y156{bottom:1000.453333pt;}
.y2e{bottom:1010.240000pt;}
.y4e{bottom:1010.880000pt;}
.y244{bottom:1011.200000pt;}
.y99{bottom:1013.440000pt;}
.y28f{bottom:1013.600000pt;}
.y1{bottom:1015.680000pt;}
.y155{bottom:1016.000000pt;}
.h46{height:18.386667pt;}
.h48{height:18.400000pt;}
.h47{height:18.420000pt;}
.h57{height:18.706667pt;}
.h58{height:18.720000pt;}
.h53{height:18.738667pt;}
.h5c{height:18.746667pt;}
.h56{height:18.880000pt;}
.h61{height:23.040000pt;}
.h3a{height:26.240000pt;}
.h42{height:26.266667pt;}
.h37{height:26.420000pt;}
.h3f{height:28.000000pt;}
.h3c{height:28.160000pt;}
.h69{height:28.960000pt;}
.h3e{height:29.920000pt;}
.h68{height:30.400000pt;}
.h27{height:30.546667pt;}
.h36{height:32.000000pt;}
.h33{height:33.918750pt;}
.h4a{height:34.453125pt;}
.h64{height:34.851562pt;}
.h55{height:36.286563pt;}
.h24{height:36.626667pt;}
.h22{height:36.636000pt;}
.h23{height:36.640000pt;}
.h15{height:36.786667pt;}
.h13{height:36.792000pt;}
.h1e{height:36.796000pt;}
.h14{height:36.800000pt;}
.h45{height:37.426667pt;}
.h5d{height:37.746667pt;}
.h59{height:37.760000pt;}
.h1a{height:37.906667pt;}
.h16{height:37.912000pt;}
.h1d{height:37.916000pt;}
.h18{height:37.920000pt;}
.h1c{height:37.938667pt;}
.h1b{height:37.940000pt;}
.h21{height:38.106667pt;}
.h1f{height:38.112000pt;}
.h20{height:38.120000pt;}
.h11{height:38.128125pt;}
.hb{height:40.163750pt;}
.h5f{height:40.221250pt;}
.hd{height:42.262500pt;}
.h38{height:42.751250pt;}
.h12{height:45.937500pt;}
.h10{height:46.468750pt;}
.h43{height:47.109375pt;}
.h3b{height:47.763750pt;}
.h50{height:48.071875pt;}
.h8{height:51.077812pt;}
.h2a{height:52.108438pt;}
.h26{height:52.134375pt;}
.h2e{height:52.461875pt;}
.h2b{height:52.478750pt;}
.h28{height:53.535000pt;}
.h4b{height:53.746875pt;}
.he{height:54.368437pt;}
.h39{height:54.400000pt;}
.h41{height:54.426667pt;}
.h2{height:54.598989pt;}
.h40{height:56.160000pt;}
.h62{height:57.787500pt;}
.h3d{height:57.920000pt;}
.h65{height:58.021250pt;}
.h4e{height:59.360000pt;}
.h2f{height:61.276000pt;}
.h2d{height:61.280000pt;}
.h19{height:62.781250pt;}
.h3{height:62.812500pt;}
.h35{height:64.500000pt;}
.h17{height:65.781915pt;}
.h44{height:65.920000pt;}
.h34{height:66.404375pt;}
.h6a{height:67.128750pt;}
.h9{height:67.520000pt;}
.h66{height:69.703125pt;}
.h25{height:73.454062pt;}
.ha{height:73.490625pt;}
.h4f{height:74.546667pt;}
.h51{height:74.552000pt;}
.h52{height:74.560000pt;}
.h7{height:75.465000pt;}
.h2c{height:76.636000pt;}
.h4{height:76.640000pt;}
.h30{height:76.666667pt;}
.h31{height:76.672000pt;}
.h32{height:76.680000pt;}
.hf{height:77.602812pt;}
.h6{height:84.320000pt;}
.h5{height:85.785000pt;}
.h29{height:92.020000pt;}
.h5e{height:92.786667pt;}
.h5a{height:93.920000pt;}
.h5b{height:93.946667pt;}
.h54{height:94.080000pt;}
.h60{height:99.040000pt;}
.hc{height:103.080000pt;}
.h4d{height:214.240000pt;}
.h4c{height:228.800000pt;}
.h49{height:231.200000pt;}
.h63{height:244.320000pt;}
.h67{height:245.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:34.240000pt;}
.w19{width:42.706667pt;}
.w1a{width:42.738667pt;}
.w1b{width:42.866667pt;}
.w1c{width:44.186667pt;}
.w20{width:44.306667pt;}
.w22{width:44.466667pt;}
.w21{width:44.498667pt;}
.w23{width:46.106667pt;}
.w2b{width:58.386667pt;}
.w8{width:66.112000pt;}
.wb{width:66.226667pt;}
.w38{width:66.400000pt;}
.w36{width:69.920000pt;}
.w31{width:73.906667pt;}
.w2d{width:73.912000pt;}
.w2e{width:73.920000pt;}
.w2c{width:81.938667pt;}
.wd{width:94.426667pt;}
.w10{width:94.556000pt;}
.wa{width:94.560000pt;}
.w32{width:102.106667pt;}
.w2f{width:102.112000pt;}
.w30{width:102.120000pt;}
.we{width:109.760000pt;}
.w15{width:116.186667pt;}
.w29{width:120.792000pt;}
.wc{width:122.898667pt;}
.wf{width:122.900000pt;}
.w12{width:139.053333pt;}
.w9{width:141.773333pt;}
.w14{width:162.413333pt;}
.w2a{width:204.213333pt;}
.w18{width:217.973333pt;}
.w13{width:220.346667pt;}
.w1f{width:226.453333pt;}
.w2{width:261.973333pt;}
.w3{width:262.120000pt;}
.w37{width:312.000000pt;}
.w5{width:313.973333pt;}
.w17{width:319.258667pt;}
.w4{width:325.346667pt;}
.w1e{width:331.578667pt;}
.w27{width:334.880000pt;}
.w35{width:335.200000pt;}
.w26{width:352.800000pt;}
.w25{width:354.880000pt;}
.w34{width:466.640000pt;}
.w1d{width:537.880000pt;}
.w24{width:558.680000pt;}
.w39{width:564.920000pt;}
.w28{width:568.760000pt;}
.w16{width:628.920000pt;}
.w6{width:629.120000pt;}
.w33{width:631.000000pt;}
.w11{width:711.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:5.440000pt;}
.x1d{left:7.232000pt;}
.x32{left:8.640000pt;}
.xc{left:9.586667pt;}
.x28{left:10.866667pt;}
.x4a{left:12.800000pt;}
.xe{left:13.906667pt;}
.x21{left:16.000000pt;}
.x34{left:17.106667pt;}
.x22{left:18.240000pt;}
.x2d{left:19.840000pt;}
.x10{left:20.946667pt;}
.x63{left:21.906667pt;}
.x9{left:22.893333pt;}
.x67{left:24.000000pt;}
.x5{left:24.946667pt;}
.x31{left:26.080000pt;}
.x6b{left:27.512000pt;}
.x3c{left:28.472000pt;}
.x3e{left:29.760000pt;}
.xf{left:31.186667pt;}
.x8{left:32.973333pt;}
.x2e{left:36.312000pt;}
.x2a{left:38.866667pt;}
.x2f{left:40.960000pt;}
.x3f{left:42.560000pt;}
.x68{left:43.546667pt;}
.x6c{left:44.792000pt;}
.x40{left:45.906667pt;}
.x33{left:47.200000pt;}
.x3d{left:50.546667pt;}
.x38{left:51.512000pt;}
.x24{left:53.106667pt;}
.x6{left:54.906667pt;}
.x36{left:56.320000pt;}
.x6a{left:60.346667pt;}
.x30{left:61.466667pt;}
.x1c{left:64.960000pt;}
.x70{left:65.920000pt;}
.x57{left:67.232000pt;}
.x61{left:69.786667pt;}
.x5f{left:76.200000pt;}
.x37{left:77.960000pt;}
.x69{left:79.066667pt;}
.x6e{left:81.000000pt;}
.x23{left:82.120000pt;}
.x71{left:85.306667pt;}
.x74{left:87.546667pt;}
.x46{left:92.346667pt;}
.x4f{left:96.826667pt;}
.x6d{left:101.946667pt;}
.x2{left:113.472000pt;}
.x19{left:115.552000pt;}
.x12{left:118.272000pt;}
.x45{left:128.040000pt;}
.xa{left:131.053333pt;}
.x59{left:135.066667pt;}
.x5e{left:136.640000pt;}
.x4d{left:138.906667pt;}
.x44{left:143.226667pt;}
.x1f{left:160.666667pt;}
.x5d{left:167.680000pt;}
.x73{left:175.133333pt;}
.x4c{left:178.426667pt;}
.x5b{left:181.893333pt;}
.x58{left:187.386667pt;}
.x54{left:188.826667pt;}
.x60{left:197.000000pt;}
.x16{left:199.066667pt;}
.x42{left:202.106667pt;}
.x15{left:210.426667pt;}
.x55{left:212.826667pt;}
.x39{left:217.026667pt;}
.x25{left:223.906667pt;}
.x1a{left:225.186667pt;}
.x5c{left:228.800000pt;}
.x18{left:280.066667pt;}
.x17{left:287.906667pt;}
.x20{left:301.986667pt;}
.x35{left:304.386667pt;}
.x26{left:318.466667pt;}
.x41{left:319.906667pt;}
.x14{left:321.506667pt;}
.x3{left:324.386667pt;}
.x1b{left:330.786667pt;}
.x56{left:337.026667pt;}
.x27{left:384.586667pt;}
.x43{left:389.533333pt;}
.x11{left:393.213333pt;}
.x13{left:396.893333pt;}
.x62{left:401.226667pt;}
.x5a{left:407.200000pt;}
.x72{left:409.920000pt;}
.xb{left:433.546667pt;}
.x3a{left:437.386667pt;}
.xd{left:448.266667pt;}
.x4e{left:449.866667pt;}
.x29{left:450.826667pt;}
.x64{left:459.626667pt;}
.x4{left:466.026667pt;}
.x47{left:491.466667pt;}
.x50{left:494.826667pt;}
.x7{left:512.440000pt;}
.x48{left:534.853333pt;}
.x51{left:539.973333pt;}
.x65{left:541.573333pt;}
.x2b{left:573.733333pt;}
.x49{left:578.373333pt;}
.x52{left:585.253333pt;}
.x6f{left:592.133333pt;}
.x3b{left:599.813333pt;}
.x66{left:615.493333pt;}
.x4b{left:621.733333pt;}
.x53{left:630.213333pt;}
.x2c{left:668.160000pt;}
.x1e{left:694.080000pt;}
}




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