
    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_4b053b2cd8bc6c81375d7e7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3b3bd4ff70d10cc99accc68a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f1298c756c2983b7f4fb20c5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_66d20242b64d0c8a812918a1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9c295f0b51dbd45e9edd282a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cc7d6279657bc42358b79f64.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_08543e874e0659c511e92d70.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948242;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_ac0a0398d8c14137ecc5a0c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107422;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_1a6ab0e3d73ded5267340604.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b974691bef10bea9c34f4e1f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ea61d774488e6054c06c6a5b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.982910;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_efbe13c8831d59b451ce306a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.181152;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_47097c04fe342fb850870d44.woff2')format("woff");}.fff{font-family:fff;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;}
.m4{transform:matrix(0.226858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226858,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.227874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227874,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.357455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357455,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-80.640000px;}
.v3{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.414600px;}
.ls1e{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.070560px;}
.ls1d{letter-spacing:0.136200px;}
.ls3{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.262200px;}
.ls7{letter-spacing:0.265170px;}
.ls2{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.786160px;}
.ls8{letter-spacing:2.050535px;}
.ls15{letter-spacing:7.920000px;}
.ls1a{letter-spacing:12.545280px;}
.ls1b{letter-spacing:17.585280px;}
.ls16{letter-spacing:44.225280px;}
.ls19{letter-spacing:54.305280px;}
.lsc{letter-spacing:128.622000px;}
.ls12{letter-spacing:162.282000px;}
.lsd{letter-spacing:164.022000px;}
.ls13{letter-spacing:174.942000px;}
.lsf{letter-spacing:189.462000px;}
.ls14{letter-spacing:248.682000px;}
.ls10{letter-spacing:273.282000px;}
.ls11{letter-spacing:291.162000px;}
.ls1{letter-spacing:1074.005280px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-66.240000px;}
.ws1{word-spacing:-41.760000px;}
.ws10{word-spacing:-18.720120px;}
.ws1e{word-spacing:-18.676920px;}
.ws2{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws5{word-spacing:-18.152520px;}
.ws4{word-spacing:-17.586720px;}
.ws14{word-spacing:-13.505760px;}
.ws24{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.204000px;}
.ws25{word-spacing:-12.196200px;}
.ws23{word-spacing:-12.060000px;}
.ws26{word-spacing:-11.700000px;}
.ws7{word-spacing:-10.256297px;}
.ws1a{word-spacing:-3.480000px;}
.ws21{word-spacing:-2.244000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:3.565456px;}
.wse{word-spacing:3.807909px;}
.ws1f{word-spacing:4.656000px;}
.wsd{word-spacing:5.389679px;}
.wsb{word-spacing:6.360000px;}
.ws9{word-spacing:7.956000px;}
.wsc{word-spacing:19.421499px;}
.ws1d{word-spacing:22.554000px;}
.ws1c{word-spacing:28.374000px;}
.ws11{word-spacing:61.554000px;}
.ws8{word-spacing:63.255291px;}
.ws1b{word-spacing:69.120000px;}
.ws17{word-spacing:95.394000px;}
.ws12{word-spacing:97.134000px;}
.ws20{word-spacing:103.818000px;}
.ws18{word-spacing:108.174000px;}
.ws22{word-spacing:117.498000px;}
.ws13{word-spacing:122.574000px;}
.ws19{word-spacing:195.294000px;}
.ws15{word-spacing:220.254000px;}
.ws16{word-spacing:238.074000px;}
._32{margin-left:-6.516000px;}
._1d{margin-left:-4.998960px;}
._4{margin-left:-3.974400px;}
._2{margin-left:-2.274480px;}
._0{margin-left:-1.095120px;}
._1{width:1.010880px;}
._c{width:2.880000px;}
._1e{width:3.916800px;}
._b{width:5.122800px;}
._a{width:6.129360px;}
._13{width:7.153920px;}
._3{width:8.845200px;}
._1c{width:10.467360px;}
._21{width:11.556720px;}
._9{width:12.770640px;}
._8{width:13.795920px;}
._12{width:14.796000px;}
._11{width:15.865920px;}
._10{width:17.178480px;}
._5{width:19.664640px;}
._6{width:20.865600px;}
._7{width:22.411440px;}
._22{width:23.669280px;}
._1b{width:25.032960px;}
._1a{width:26.231040px;}
._17{width:27.259920px;}
._18{width:28.580400px;}
._19{width:29.967120px;}
._e{width:31.331520px;}
._d{width:32.492880px;}
._14{width:33.504480px;}
._f{width:34.643520px;}
._25{width:36.074880px;}
._15{width:37.359360px;}
._16{width:38.949120px;}
._23{width:40.026960px;}
._24{width:41.432880px;}
._26{width:44.081280px;}
._29{width:47.538000px;}
._20{width:49.150080px;}
._1f{width:50.563440px;}
._35{width:54.305280px;}
._2a{width:59.598000px;}
._2b{width:65.375154px;}
._36{width:73.262160px;}
._27{width:75.044960px;}
._2d{width:87.540000px;}
._2c{width:110.054407px;}
._28{width:114.049651px;}
._30{width:121.380000px;}
._2e{width:122.940000px;}
._31{width:133.920000px;}
._33{width:143.298000px;}
._2f{width:148.500000px;}
._34{width:156.978000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:2.880000px;}
.fsd{font-size:31.446403px;}
.fsa{font-size:36.893155px;}
.fs8{font-size:40.982709px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.y2ba{bottom:-7.605000px;}
.y263{bottom:-7.590000px;}
.y1d4{bottom:-7.560000px;}
.y2bf{bottom:-7.380000px;}
.y1d2{bottom:-5.400000px;}
.y1d7{bottom:-5.220000px;}
.y24f{bottom:-4.680000px;}
.y207{bottom:-4.545000px;}
.y1e4{bottom:-4.500000px;}
.y0{bottom:0.000000px;}
.y1ce{bottom:2.520000px;}
.y102{bottom:3.060000px;}
.yb3{bottom:4.454869px;}
.y10a{bottom:4.500000px;}
.y104{bottom:4.680000px;}
.yd7{bottom:6.840000px;}
.y12d{bottom:7.530000px;}
.y133{bottom:7.710000px;}
.y147{bottom:7.890000px;}
.y14d{bottom:8.175000px;}
.y167{bottom:8.895000px;}
.y140{bottom:9.000000px;}
.y139{bottom:9.180000px;}
.y111{bottom:9.720000px;}
.yf2{bottom:10.530269px;}
.y119{bottom:10.620000px;}
.y1e6{bottom:11.385000px;}
.y1e3{bottom:12.825000px;}
.yd1{bottom:13.170000px;}
.y161{bottom:13.215000px;}
.y18a{bottom:13.245000px;}
.y16d{bottom:13.290000px;}
.yc7{bottom:13.320000px;}
.y1da{bottom:16.200000px;}
.y1dc{bottom:16.380000px;}
.yf1{bottom:20.382436px;}
.y128{bottom:25.095000px;}
.y12f{bottom:25.230000px;}
.y142{bottom:25.455000px;}
.y149{bottom:25.740000px;}
.y163{bottom:26.460000px;}
.y13b{bottom:26.565000px;}
.y135{bottom:26.745000px;}
.y10c{bottom:27.285000px;}
.y114{bottom:28.155000px;}
.yb2{bottom:29.643197px;}
.yf0{bottom:30.256566px;}
.ycc{bottom:30.750000px;}
.y15d{bottom:30.780000px;}
.y184{bottom:30.810000px;}
.yc2{bottom:30.855000px;}
.yef{bottom:40.130695px;}
.yac{bottom:41.156868px;}
.y1c9{bottom:45.900000px;}
.yee{bottom:49.981946px;}
.y191{bottom:51.630000px;}
.y185{bottom:53.025000px;}
.y13c{bottom:53.130000px;}
.y129{bottom:53.385000px;}
.y10d{bottom:54.465000px;}
.yc3{bottom:56.310000px;}
.y115{bottom:56.775000px;}
.y198{bottom:57.495000px;}
.y143{bottom:57.675000px;}
.y164{bottom:57.780000px;}
.y16a{bottom:58.140000px;}
.y18d{bottom:58.605000px;}
.yed{bottom:59.856076px;}
.ycd{bottom:61.170000px;}
.y15e{bottom:61.815000px;}
.y130{bottom:62.850000px;}
.y136{bottom:62.925000px;}
.y16f{bottom:63.540000px;}
.y5{bottom:66.525004px;}
.y14a{bottom:69.375000px;}
.yec{bottom:69.707327px;}
.y192{bottom:72.465000px;}
.y186{bottom:75.270000px;}
.yeb{bottom:79.581457px;}
.y13d{bottom:79.665000px;}
.yad{bottom:81.086709px;}
.y10e{bottom:81.645000px;}
.y12a{bottom:81.690000px;}
.yc4{bottom:81.750000px;}
.y199{bottom:84.240000px;}
.y116{bottom:85.350000px;}
.y16b{bottom:85.425000px;}
.y18e{bottom:86.370000px;}
.y165{bottom:89.130000px;}
.yea{bottom:89.433624px;}
.y144{bottom:89.925000px;}
.yce{bottom:91.590000px;}
.y15f{bottom:92.850000px;}
.y193{bottom:93.315000px;}
.y24c{bottom:95.256000px;}
.y170{bottom:96.225000px;}
.y4{bottom:97.125005px;}
.y187{bottom:97.485000px;}
.y137{bottom:99.075000px;}
.ye9{bottom:99.308668px;}
.y131{bottom:100.470000px;}
.y218{bottom:102.636000px;}
.y13e{bottom:106.230000px;}
.yc5{bottom:107.205000px;}
.y27f{bottom:108.396000px;}
.y10f{bottom:108.870000px;}
.ye8{bottom:109.155344px;}
.y12b{bottom:109.980000px;}
.y2b8{bottom:110.196000px;}
.y19a{bottom:110.985000px;}
.y16c{bottom:112.710000px;}
.y217{bottom:112.716000px;}
.y14b{bottom:113.040000px;}
.y117{bottom:113.940000px;}
.y18f{bottom:114.150000px;}
.y24b{bottom:115.956000px;}
.ye7{bottom:119.029473px;}
.y216{bottom:119.556000px;}
.y188{bottom:119.730000px;}
.y166{bottom:120.495000px;}
.yae{bottom:121.045373px;}
.ycf{bottom:122.010000px;}
.y145{bottom:122.190000px;}
.y171{bottom:122.400000px;}
.y160{bottom:123.870000px;}
.y27e{bottom:129.096000px;}
.y2b7{bottom:129.636000px;}
.yc6{bottom:132.660000px;}
.y13f{bottom:132.810000px;}
.y168{bottom:133.560000px;}
.y194{bottom:135.000000px;}
.y138{bottom:135.255000px;}
.y110{bottom:136.050000px;}
.y215{bottom:136.296000px;}
.y24a{bottom:136.656000px;}
.y19b{bottom:137.775000px;}
.y132{bottom:138.090000px;}
.y12c{bottom:138.240000px;}
.ye6{bottom:138.759430px;}
.y16e{bottom:138.960000px;}
.y22{bottom:139.264499px;}
.y189{bottom:141.945000px;}
.y118{bottom:142.530000px;}
.y112{bottom:144.330000px;}
.y13a{bottom:144.360000px;}
.y12e{bottom:144.390000px;}
.y11a{bottom:148.830000px;}
.y27d{bottom:149.796000px;}
.y162{bottom:150.120000px;}
.y2b6{bottom:150.330000px;}
.yd0{bottom:152.430000px;}
.y214{bottom:153.210000px;}
.y146{bottom:154.440000px;}
.y195{bottom:155.850000px;}
.y14c{bottom:156.675000px;}
.y249{bottom:157.350000px;}
.ye5{bottom:158.480235px;}
.yca{bottom:158.730000px;}
.yaf{bottom:160.975213px;}
.y148{bottom:163.410000px;}
.y19d{bottom:163.905000px;}
.ye4{bottom:168.336062px;}
.y18c{bottom:168.555000px;}
.y213{bottom:170.130000px;}
.y27c{bottom:170.490000px;}
.y2b5{bottom:171.030000px;}
.yc9{bottom:175.290000px;}
.y248{bottom:178.050000px;}
.yd3{bottom:178.170000px;}
.ye3{bottom:178.210192px;}
.y19c{bottom:180.465000px;}
.y196{bottom:182.445000px;}
.y18b{bottom:186.915000px;}
.y212{bottom:187.050000px;}
.ydf{bottom:189.765000px;}
.y27b{bottom:191.190000px;}
.y2b4{bottom:191.730000px;}
.yc8{bottom:191.850000px;}
.yd2{bottom:192.930000px;}
.y19{bottom:196.933500px;}
.y247{bottom:198.750000px;}
.yb0{bottom:200.925642px;}
.y211{bottom:203.790000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y24{bottom:209.730000px;}
.y27a{bottom:211.890000px;}
.y2b3{bottom:212.430000px;}
.y246{bottom:219.450000px;}
.y210{bottom:220.710000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y279{bottom:232.590000px;}
.y2b2{bottom:233.130000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y20f{bottom:237.630000px;}
.y245{bottom:240.150000px;}
.yb1{bottom:240.752545px;}
.y20e{bottom:247.710000px;}
.y2b1{bottom:249.870000px;}
.y47{bottom:251.850000px;}
.y278{bottom:253.290000px;}
.y1b9{bottom:253.650000px;}
.y20d{bottom:254.550000px;}
.y15b{bottom:255.270000px;}
.y182{bottom:255.810000px;}
.yc0{bottom:257.070000px;}
.y82{bottom:257.790000px;}
.y70{bottom:258.690000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y2b0{bottom:259.950000px;}
.y244{bottom:260.850000px;}
.y9b{bottom:264.270000px;}
.y126{bottom:265.350000px;}
.y2af{bottom:266.790000px;}
.y100{bottom:268.590000px;}
.y46{bottom:269.130000px;}
.y88{bottom:269.670000px;}
.y20c{bottom:271.290000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.yaa{bottom:272.550000px;}
.y277{bottom:273.990000px;}
.y45{bottom:274.350000px;}
.y181{bottom:274.710000px;}
.ybf{bottom:275.970000px;}
.y81{bottom:276.690000px;}
.ye1{bottom:277.050000px;}
.y6f{bottom:277.590000px;}
.y1c7{bottom:281.550000px;}
.y9a{bottom:283.170000px;}
.y15a{bottom:283.350000px;}
.y2ae{bottom:283.710000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yff{bottom:287.670000px;}
.y44{bottom:287.850000px;}
.y20b{bottom:288.210000px;}
.y87{bottom:288.570000px;}
.y1b8{bottom:291.450000px;}
.y125{bottom:293.250000px;}
.y180{bottom:293.790000px;}
.y276{bottom:294.690000px;}
.y80{bottom:295.770000px;}
.ye0{bottom:295.950000px;}
.y6e{bottom:296.670000px;}
.y20a{bottom:298.290000px;}
.ya9{bottom:300.450000px;}
.y99{bottom:302.250000px;}
.ybe{bottom:303.690000px;}
.y109{bottom:304.050000px;}
.y209{bottom:305.130000px;}
.y113{bottom:305.280000px;}
.yfe{bottom:306.570000px;}
.y86{bottom:307.650000px;}
.y10b{bottom:309.780000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y159{bottom:311.250000px;}
.y17f{bottom:312.690000px;}
.y43{bottom:313.410000px;}
.y275{bottom:315.390000px;}
.y6d{bottom:315.570000px;}
.y2ad{bottom:317.370000px;}
.ybd{bottom:317.730000px;}
.yc1{bottom:317.880000px;}
.ycb{bottom:318.240000px;}
.y1b7{bottom:319.530000px;}
.y98{bottom:321.150000px;}
.y124{bottom:321.330000px;}
.ye2{bottom:321.390000px;}
.y208{bottom:322.050000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y243{bottom:322.950000px;}
.y7f{bottom:323.670000px;}
.yfd{bottom:325.650000px;}
.y85{bottom:326.550000px;}
.ya8{bottom:328.530000px;}
.y17e{bottom:331.815000px;}
.y206{bottom:332.175000px;}
.y42{bottom:332.535000px;}
.y2ac{bottom:334.335000px;}
.y6c{bottom:334.695000px;}
.y274{bottom:336.135000px;}
.y1b6{bottom:338.475000px;}
.y205{bottom:338.835000px;}
.y158{bottom:339.375000px;}
.y97{bottom:340.095000px;}
.y242{bottom:341.175000px;}
.yfc{bottom:344.595000px;}
.y84{bottom:345.495000px;}
.y10{bottom:348.133500px;}
.y123{bottom:349.275000px;}
.y17d{bottom:350.715000px;}
.y2ab{bottom:351.255000px;}
.y41{bottom:351.435000px;}
.y6b{bottom:353.595000px;}
.y204{bottom:355.755000px;}
.ya7{bottom:356.475000px;}
.y273{bottom:356.835000px;}
.y1b5{bottom:357.555000px;}
.y96{bottom:359.175000px;}
.y7e{bottom:360.795000px;}
.yfb{bottom:363.495000px;}
.y1a2{bottom:364.575000px;}
.y241{bottom:364.755000px;}
.y1c6{bottom:366.555000px;}
.y157{bottom:367.275000px;}
.y2aa{bottom:367.995000px;}
.y17c{bottom:369.615000px;}
.y40{bottom:370.515000px;}
.y6a{bottom:372.495000px;}
.y203{bottom:372.675000px;}
.y83{bottom:373.575000px;}
.y1b4{bottom:376.455000px;}
.y122{bottom:376.995000px;}
.y272{bottom:377.535000px;}
.y95{bottom:378.075000px;}
.y7d{bottom:379.695000px;}
.yfa{bottom:382.575000px;}
.y1a1{bottom:383.475000px;}
.ya6{bottom:384.555000px;}
.y2a9{bottom:384.915000px;}
.y1c5{bottom:385.455000px;}
.yf{bottom:386.785499px;}
.y17b{bottom:388.695000px;}
.y3f{bottom:389.415000px;}
.y202{bottom:389.595000px;}
.y121{bottom:391.035000px;}
.y141{bottom:391.140000px;}
.y69{bottom:391.575000px;}
.y240{bottom:393.195000px;}
.y271{bottom:394.275000px;}
.y2a8{bottom:394.995000px;}
.y156{bottom:395.355000px;}
.y94{bottom:397.155000px;}
.y7c{bottom:398.595000px;}
.yf9{bottom:401.475000px;}
.y2a7{bottom:401.835000px;}
.y1a0{bottom:402.555000px;}
.y1b3{bottom:404.355000px;}
.y17a{bottom:407.595000px;}
.ye{bottom:408.044999px;}
.y3e{bottom:408.315000px;}
.y68{bottom:410.475000px;}
.y270{bottom:411.195000px;}
.ya5{bottom:412.455000px;}
.y93{bottom:416.055000px;}
.y7b{bottom:417.675000px;}
.y2a6{bottom:418.755000px;}
.y201{bottom:418.935000px;}
.yf8{bottom:420.555000px;}
.y19f{bottom:421.455000px;}
.y23f{bottom:422.175000px;}
.y1b2{bottom:423.435000px;}
.y155{bottom:423.795000px;}
.y179{bottom:426.675000px;}
.y3d{bottom:427.395000px;}
.y26f{bottom:427.935000px;}
.y67{bottom:429.555000px;}
.y2a5{bottom:435.495000px;}
.y7a{bottom:436.575000px;}
.y200{bottom:437.835000px;}
.yf7{bottom:439.455000px;}
.ya4{bottom:440.355000px;}
.y1b1{bottom:442.335000px;}
.y92{bottom:443.955000px;}
.y26e{bottom:444.855000px;}
.y178{bottom:445.575000px;}
.y23e{bottom:445.755000px;}
.y66{bottom:448.455000px;}
.y2a4{bottom:452.415000px;}
.y26d{bottom:454.935000px;}
.y3c{bottom:455.295000px;}
.y79{bottom:455.655000px;}
.yf6{bottom:458.355000px;}
.ya3{bottom:459.435000px;}
.y1c4{bottom:461.415000px;}
.y26c{bottom:461.775000px;}
.y154{bottom:462.855000px;}
.y91{bottom:463.035000px;}
.y177{bottom:464.475000px;}
.y1ff{bottom:465.555000px;}
.y65{bottom:467.355000px;}
.y23d{bottom:468.255000px;}
.y2a3{bottom:469.335000px;}
.y1b0{bottom:470.415000px;}
.y78{bottom:474.555000px;}
.yf5{bottom:477.435000px;}
.ya2{bottom:478.335000px;}
.y26b{bottom:478.695000px;}
.y1fe{bottom:479.595000px;}
.y90{bottom:481.935000px;}
.y176{bottom:483.555000px;}
.y2a2{bottom:486.255000px;}
.y64{bottom:486.435000px;}
.y26a{bottom:488.775000px;}
.y1af{bottom:489.315000px;}
.y1fd{bottom:489.675000px;}
.y23c{bottom:491.655000px;}
.y108{bottom:492.015000px;}
.y3b{bottom:492.375000px;}
.y269{bottom:495.435000px;}
.yf4{bottom:496.335000px;}
.y1fc{bottom:496.515000px;}
.ya1{bottom:497.415000px;}
.y8f{bottom:500.835000px;}
.y77{bottom:502.275000px;}
.y175{bottom:502.455000px;}
.yd{bottom:502.864502px;}
.y2a1{bottom:502.995000px;}
.y63{bottom:505.335000px;}
.y1ae{bottom:508.395000px;}
.y107{bottom:511.095000px;}
.y268{bottom:512.355000px;}
.y1fb{bottom:513.255000px;}
.yf3{bottom:515.415000px;}
.y23b{bottom:515.595000px;}
.ya0{bottom:516.315000px;}
.y76{bottom:519.555000px;}
.y153{bottom:519.915000px;}
.y3a{bottom:520.275000px;}
.yc{bottom:520.864502px;}
.y8e{bottom:520.995000px;}
.y267{bottom:522.435000px;}
.y62{bottom:524.415000px;}
.y1c3{bottom:527.295000px;}
.y266{bottom:529.275000px;}
.y106{bottom:529.995000px;}
.y174{bottom:530.175000px;}
.y9f{bottom:535.395000px;}
.y1ad{bottom:536.295000px;}
.yde{bottom:536.835000px;}
.yb{bottom:538.864499px;}
.y39{bottom:539.175000px;}
.y8d{bottom:539.895000px;}
.y23a{bottom:540.795000px;}
.y61{bottom:543.315000px;}
.y173{bottom:544.215000px;}
.y190{bottom:545.580000px;}
.y75{bottom:546.015000px;}
.ybc{bottom:546.195000px;}
.y1fa{bottom:547.095000px;}
.y152{bottom:547.455000px;}
.y197{bottom:549.000000px;}
.y2a0{bottom:553.755000px;}
.y9e{bottom:554.295000px;}
.y1ac{bottom:555.195000px;}
.ydd{bottom:555.735000px;}
.ya{bottom:556.864499px;}
.y105{bottom:557.715000px;}
.y8c{bottom:560.055000px;}
.y151{bottom:561.495000px;}
.y60{bottom:562.395000px;}
.y169{bottom:562.860000px;}
.y265{bottom:562.935000px;}
.y19e{bottom:563.295000px;}
.y1f9{bottom:564.015000px;}
.y239{bottom:564.375000px;}
.y74{bottom:565.095000px;}
.ybb{bottom:565.275000px;}
.y38{bottom:567.255000px;}
.y29f{bottom:570.495000px;}
.y103{bottom:571.755000px;}
.y9d{bottom:573.195000px;}
.y1ab{bottom:574.275000px;}
.y8b{bottom:578.955000px;}
.y264{bottom:579.855000px;}
.y120{bottom:580.035000px;}
.y1f8{bottom:580.755000px;}
.y134{bottom:581.220000px;}
.y5f{bottom:581.295000px;}
.ydc{bottom:583.815000px;}
.y73{bottom:583.995000px;}
.yba{bottom:584.175000px;}
.y37{bottom:586.155000px;}
.y238{bottom:586.875000px;}
.y29e{bottom:587.415000px;}
.y1aa{bottom:593.175000px;}
.y262{bottom:596.805000px;}
.y1f7{bottom:597.705000px;}
.y8a{bottom:599.145000px;}
.y5e{bottom:600.225000px;}
.y9c{bottom:601.305000px;}
.ydb{bottom:602.745000px;}
.y72{bottom:602.925000px;}
.y36{bottom:605.265000px;}
.y261{bottom:606.885000px;}
.y237{bottom:609.405000px;}
.yb9{bottom:612.285000px;}
.y260{bottom:613.725000px;}
.y1f6{bottom:614.625000px;}
.y29d{bottom:616.785000px;}
.y89{bottom:618.045000px;}
.y5d{bottom:619.305000px;}
.y1a9{bottom:621.285000px;}
.yda{bottom:621.645000px;}
.y35{bottom:624.165000px;}
.y1f5{bottom:624.705000px;}
.y9{bottom:626.610001px;}
.y25f{bottom:630.465000px;}
.y71{bottom:630.645000px;}
.yb8{bottom:631.185000px;}
.y1f4{bottom:631.545000px;}
.y236{bottom:631.905000px;}
.y29c{bottom:635.865000px;}
.y5c{bottom:638.205000px;}
.y1a8{bottom:640.185000px;}
.yd9{bottom:640.725000px;}
.y34{bottom:643.065000px;}
.y8{bottom:645.510000px;}
.y25e{bottom:647.385000px;}
.y1f3{bottom:648.285000px;}
.yb7{bottom:650.085000px;}
.y29b{bottom:654.765000px;}
.y235{bottom:655.125000px;}
.y5b{bottom:657.285000px;}
.y1a7{bottom:659.085000px;}
.yd8{bottom:659.625000px;}
.y33{bottom:662.145000px;}
.y25d{bottom:664.305000px;}
.y1f2{bottom:665.205000px;}
.y7{bottom:666.771000px;}
.y2c5{bottom:671.865000px;}
.y1f1{bottom:675.285000px;}
.y5a{bottom:676.185000px;}
.yb6{bottom:677.805000px;}
.y1c2{bottom:678.165000px;}
.y32{bottom:681.045000px;}
.y25c{bottom:681.225000px;}
.y1f0{bottom:682.125000px;}
.y29a{bottom:683.205000px;}
.yd6{bottom:684.825000px;}
.y1a6{bottom:687.165000px;}
.y2c4{bottom:687.345000px;}
.y25b{bottom:691.305000px;}
.y234{bottom:691.665000px;}
.y59{bottom:695.085000px;}
.y1c1{bottom:697.065000px;}
.y2c3{bottom:697.425000px;}
.y25a{bottom:697.965000px;}
.y1ef{bottom:699.045000px;}
.y31{bottom:700.125000px;}
.y299{bottom:703.905000px;}
.yb5{bottom:704.085000px;}
.y1a5{bottom:706.065000px;}
.y1ee{bottom:709.125000px;}
.y233{bottom:710.565000px;}
.y58{bottom:714.165000px;}
.y259{bottom:714.885000px;}
.y1ed{bottom:715.785000px;}
.yab{bottom:718.095000px;}
.yb4{bottom:718.125000px;}
.y30{bottom:719.025000px;}
.y298{bottom:720.645000px;}
.y2c2{bottom:721.005000px;}
.y258{bottom:724.965000px;}
.y1a4{bottom:725.145000px;}
.y150{bottom:725.865000px;}
.y6{bottom:726.298500px;}
.y15c{bottom:727.200000px;}
.y232{bottom:729.645000px;}
.y297{bottom:730.725000px;}
.y257{bottom:731.805000px;}
.y1ec{bottom:732.705000px;}
.y57{bottom:733.065000px;}
.y296{bottom:737.565000px;}
.y2f{bottom:737.925000px;}
.y1c0{bottom:744.045000px;}
.y2c1{bottom:748.005000px;}
.y256{bottom:748.725000px;}
.y1eb{bottom:749.625000px;}
.y56{bottom:752.145000px;}
.y101{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y1a3{bottom:753.045000px;}
.y172{bottom:753.585000px;}
.y295{bottom:754.485000px;}
.y2c0{bottom:754.845000px;}
.y183{bottom:754.920000px;}
.y2e{bottom:757.005000px;}
.y231{bottom:757.545000px;}
.y255{bottom:758.805000px;}
.y1bf{bottom:762.945000px;}
.y11f{bottom:763.485000px;}
.y254{bottom:765.465000px;}
.y1ea{bottom:766.545000px;}
.y55{bottom:771.045000px;}
.y294{bottom:771.225000px;}
.y2be{bottom:771.585000px;}
.y2d{bottom:775.905000px;}
.y2bd{bottom:781.845000px;}
.y1be{bottom:782.025000px;}
.y253{bottom:782.385000px;}
.y11e{bottom:782.565000px;}
.y230{bottom:785.265000px;}
.y293{bottom:788.145000px;}
.y2bc{bottom:788.505000px;}
.y54{bottom:789.945000px;}
.y2c{bottom:794.985000px;}
.y1e9{bottom:795.885000px;}
.y22f{bottom:799.305000px;}
.y11d{bottom:801.465000px;}
.y292{bottom:805.065000px;}
.y53{bottom:809.025000px;}
.y22e{bottom:809.385000px;}
.y1bd{bottom:809.925000px;}
.y2b{bottom:813.885000px;}
.y1e8{bottom:814.785000px;}
.y22d{bottom:816.225000px;}
.y291{bottom:821.985000px;}
.y2bb{bottom:826.305000px;}
.y52{bottom:827.925000px;}
.y1bc{bottom:829.005000px;}
.y11c{bottom:829.185000px;}
.y2a{bottom:832.965000px;}
.y290{bottom:838.725000px;}
.y1e7{bottom:842.865000px;}
.y11b{bottom:843.225000px;}
.y127{bottom:844.380000px;}
.y51{bottom:847.005000px;}
.y1bb{bottom:847.905000px;}
.y22c{bottom:849.885000px;}
.y28f{bottom:855.645000px;}
.y1e2{bottom:859.065000px;}
.y29{bottom:860.865000px;}
.y28e{bottom:865.770000px;}
.y50{bottom:865.950000px;}
.y1ba{bottom:866.850000px;}
.y1e5{bottom:870.450000px;}
.y1e1{bottom:871.890000px;}
.y28d{bottom:872.610000px;}
.yd5{bottom:875.850000px;}
.y252{bottom:876.930000px;}
.y2{bottom:879.369000px;}
.y22b{bottom:883.770000px;}
.y4f{bottom:884.850000px;}
.y1e0{bottom:887.370000px;}
.y28c{bottom:889.530000px;}
.yd4{bottom:894.930000px;}
.y1df{bottom:897.450000px;}
.y22a{bottom:900.510000px;}
.y1de{bottom:903.570000px;}
.y4e{bottom:903.930000px;}
.y28b{bottom:906.270000px;}
.y2b9{bottom:910.770000px;}
.y14f{bottom:913.830000px;}
.y229{bottom:917.430000px;}
.y28{bottom:918.150000px;}
.y1dd{bottom:920.310000px;}
.y4d{bottom:922.830000px;}
.y28a{bottom:923.190000px;}
.y251{bottom:927.510000px;}
.y14e{bottom:932.910000px;}
.y228{bottom:934.350000px;}
.y1db{bottom:937.230000px;}
.y289{bottom:940.110000px;}
.y4c{bottom:941.910000px;}
.y227{bottom:944.430000px;}
.y27{bottom:946.410000px;}
.y226{bottom:951.270000px;}
.y288{bottom:957.030000px;}
.y4b{bottom:960.810000px;}
.y250{bottom:961.350000px;}
.y1d9{bottom:966.030000px;}
.y1{bottom:966.726000px;}
.y287{bottom:967.110000px;}
.y225{bottom:968.010000px;}
.y26{bottom:970.530000px;}
.y286{bottom:973.770000px;}
.y4a{bottom:979.890000px;}
.y224{bottom:984.930000px;}
.y285{bottom:990.690000px;}
.y1d8{bottom:993.570000px;}
.y25{bottom:994.650000px;}
.y223{bottom:995.010000px;}
.y49{bottom:998.790000px;}
.y284{bottom:1000.770000px;}
.y222{bottom:1001.850000px;}
.y1d6{bottom:1003.650000px;}
.y283{bottom:1007.610000px;}
.y1d5{bottom:1009.770000px;}
.y221{bottom:1018.770000px;}
.y282{bottom:1024.530000px;}
.y1d3{bottom:1026.510000px;}
.y220{bottom:1028.850000px;}
.y21f{bottom:1035.510000px;}
.y1d1{bottom:1036.770000px;}
.y48{bottom:1038.930000px;}
.y23{bottom:1041.270000px;}
.y1d0{bottom:1042.710000px;}
.y24e{bottom:1045.770000px;}
.y21e{bottom:1052.430000px;}
.y281{bottom:1058.190000px;}
.y1cf{bottom:1059.630000px;}
.y21d{bottom:1069.350000px;}
.y1cd{bottom:1076.370000px;}
.y24d{bottom:1079.430000px;}
.y21c{bottom:1086.270000px;}
.y280{bottom:1087.530000px;}
.y1cc{bottom:1106.610000px;}
.y21b{bottom:1115.610000px;}
.y1cb{bottom:1125.510000px;}
.y21a{bottom:1134.540000px;}
.y1ca{bottom:1153.620000px;}
.y219{bottom:1162.620000px;}
.y1c8{bottom:1205.100000px;}
.h34{height:2.826563px;}
.h38{height:3.600000px;}
.h2f{height:3.780000px;}
.h2e{height:5.940000px;}
.h30{height:6.120000px;}
.h35{height:6.660000px;}
.h36{height:6.840000px;}
.h32{height:15.480000px;}
.h2d{height:16.740000px;}
.h2b{height:16.920000px;}
.h37{height:16.956000px;}
.h39{height:22.500000px;}
.h3b{height:22.536000px;}
.h3c{height:23.580000px;}
.h31{height:27.540000px;}
.h3e{height:27.720000px;}
.hb{height:28.455767px;}
.h7{height:32.130000px;}
.h1a{height:32.797615px;}
.h10{height:38.478408px;}
.h15{height:38.818125px;}
.h13{height:43.453125px;}
.h6{height:45.900000px;}
.h3a{height:47.321367px;}
.h2c{height:47.344922px;}
.h1f{height:48.088125px;}
.h3{height:48.195000px;}
.h3d{height:48.616875px;}
.h2{height:55.080000px;}
.h18{height:56.320312px;}
.hc{height:58.621992px;}
.he{height:59.415469px;}
.hd{height:62.327813px;}
.h9{height:69.086250px;}
.h11{height:70.664062px;}
.h5{height:78.030000px;}
.ha{height:87.859687px;}
.h4{height:119.055004px;}
.h25{height:163.080000px;}
.h23{height:164.370000px;}
.h1e{height:169.920000px;}
.h21{height:171.030000px;}
.h24{height:174.240000px;}
.h20{height:174.420000px;}
.h1d{height:175.530000px;}
.h1b{height:176.970000px;}
.h16{height:177.870000px;}
.h1c{height:180.570000px;}
.h19{height:186.748248px;}
.h22{height:189.000000px;}
.h17{height:202.350000px;}
.h2a{height:204.660000px;}
.h29{height:208.080000px;}
.h27{height:209.370000px;}
.h28{height:212.400000px;}
.h26{height:213.690000px;}
.h14{height:215.640000px;}
.h12{height:216.000000px;}
.h33{height:234.210000px;}
.hf{height:249.142032px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w27{width:40.680000px;}
.w45{width:41.760000px;}
.w4c{width:44.280000px;}
.w2e{width:51.840000px;}
.w26{width:51.876000px;}
.w23{width:57.600000px;}
.w4a{width:61.740000px;}
.w28{width:70.380000px;}
.w2f{width:70.416000px;}
.w48{width:70.560000px;}
.w43{width:72.900000px;}
.w34{width:74.916000px;}
.w3e{width:79.200000px;}
.w40{width:79.236000px;}
.w50{width:79.560000px;}
.w36{width:82.620000px;}
.w4e{width:87.660000px;}
.w3b{width:88.020000px;}
.w3c{width:88.056000px;}
.w3d{width:88.236000px;}
.w25{width:90.360000px;}
.w2d{width:90.396000px;}
.w33{width:90.540000px;}
.w37{width:90.576000px;}
.w51{width:97.200000px;}
.w3f{width:106.380000px;}
.w42{width:106.776000px;}
.w47{width:114.876000px;}
.w52{width:123.516000px;}
.w35{width:151.410000px;}
.w4d{width:158.610000px;}
.w38{width:181.110000px;}
.w29{width:182.730000px;}
.w30{width:182.910000px;}
.w3a{width:185.610000px;}
.w19{width:217.080000px;}
.w21{width:228.420000px;}
.w14{width:229.500000px;}
.w18{width:231.660000px;}
.w1d{width:234.000000px;}
.w1c{width:238.500000px;}
.w20{width:241.920000px;}
.w12{width:243.075000px;}
.w7{width:245.160000px;}
.w8{width:245.340000px;}
.wd{width:246.165000px;}
.we{width:246.345000px;}
.wa{width:247.215000px;}
.w16{width:247.395000px;}
.w17{width:247.500000px;}
.w1f{width:248.115000px;}
.w1b{width:250.275000px;}
.w13{width:253.080000px;}
.w22{width:253.110000px;}
.w2b{width:253.335000px;}
.wb{width:253.830000px;}
.wc{width:254.055000px;}
.w10{width:255.135000px;}
.w1e{width:259.230000px;}
.w1a{width:260.130000px;}
.w15{width:263.010000px;}
.w9{width:265.710000px;}
.w11{width:267.330000px;}
.wf{width:271.290000px;}
.w24{width:310.710000px;}
.w2c{width:310.935000px;}
.w32{width:324.615000px;}
.w2a{width:328.530000px;}
.w31{width:328.575000px;}
.w4f{width:358.995000px;}
.w4b{width:367.815000px;}
.w49{width:412.095000px;}
.w39{width:415.155000px;}
.w44{width:437.835000px;}
.w53{width:438.555000px;}
.w46{width:473.835000px;}
.w41{width:479.595000px;}
.w6{width:509.549237px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:1.800000px;}
.x58{left:4.680000px;}
.x14{left:7.608356px;}
.x1b{left:9.825000px;}
.x42{left:11.235000px;}
.x75{left:12.960000px;}
.x13{left:14.890554px;}
.x1a{left:16.665000px;}
.x39{left:20.445000px;}
.x32{left:21.705000px;}
.x35{left:23.580000px;}
.x55{left:25.920000px;}
.x89{left:27.540000px;}
.x53{left:28.800000px;}
.x1f{left:30.450000px;}
.x41{left:31.755000px;}
.x67{left:32.940000px;}
.x20{left:35.355000px;}
.x3a{left:36.390000px;}
.x1d{left:37.545000px;}
.x36{left:39.525000px;}
.x1c{left:41.145000px;}
.x64{left:42.510000px;}
.x65{left:43.740000px;}
.x68{left:44.850000px;}
.x4a{left:46.050000px;}
.x40{left:48.030000px;}
.x49{left:50.940000px;}
.x44{left:53.355000px;}
.x83{left:54.720000px;}
.x15{left:55.829641px;}
.x7d{left:57.420000px;}
.x46{left:59.220000px;}
.x88{left:61.785000px;}
.x37{left:65.595000px;}
.x3c{left:66.675000px;}
.x66{left:71.685000px;}
.x62{left:75.645000px;}
.x48{left:78.090000px;}
.x74{left:79.920000px;}
.x43{left:82.335000px;}
.x47{left:84.780000px;}
.x8a{left:89.865000px;}
.x86{left:94.185000px;}
.x3b{left:95.970000px;}
.x33{left:98.670000px;}
.x1{left:102.045000px;}
.x1e{left:104.865000px;}
.x2{left:106.297500px;}
.x28{left:139.035222px;}
.x27{left:144.374746px;}
.x4c{left:148.895987px;}
.x51{left:159.690000px;}
.x6d{left:169.950000px;}
.x87{left:179.499000px;}
.x6a{left:181.289987px;}
.x80{left:183.819000px;}
.x21{left:189.750000px;}
.x5{left:191.369987px;}
.x45{left:192.449987px;}
.x29{left:193.709987px;}
.xb{left:196.229987px;}
.x12{left:198.389987px;}
.x26{left:199.875000px;}
.x19{left:201.240000px;}
.x4{left:203.484001px;}
.x5f{left:205.049987px;}
.x69{left:210.989987px;}
.x7{left:213.149987px;}
.x7b{left:217.109987px;}
.x79{left:218.919000px;}
.x38{left:226.290000px;}
.x76{left:228.449987px;}
.x16{left:232.417447px;}
.xe{left:233.849987px;}
.x31{left:237.675000px;}
.x24{left:239.430000px;}
.x3f{left:242.130000px;}
.x2d{left:243.435000px;}
.x9{left:245.369987px;}
.x3d{left:246.645000px;}
.x54{left:250.050000px;}
.x2e{left:251.325000px;}
.x2b{left:252.585000px;}
.xf{left:255.269987px;}
.x22{left:257.445000px;}
.x25{left:261.765000px;}
.x2f{left:270.389987px;}
.x73{left:276.330000px;}
.x50{left:293.069987px;}
.x56{left:301.935000px;}
.x8{left:331.634987px;}
.x57{left:342.435000px;}
.xc{left:349.274987px;}
.x2a{left:353.774987px;}
.x6e{left:355.575000px;}
.x17{left:373.214987px;}
.x63{left:384.915000px;}
.x6c{left:393.194987px;}
.x4b{left:402.014987px;}
.xa{left:407.414987px;}
.x52{left:412.815000px;}
.xd{left:437.294987px;}
.x6f{left:443.595000px;}
.x6{left:446.474987px;}
.x3e{left:451.515000px;}
.x3{left:454.959000px;}
.x23{left:456.195000px;}
.x30{left:458.715000px;}
.x2c{left:462.675000px;}
.x34{left:466.740000px;}
.x4d{left:478.514987px;}
.x59{left:488.775000px;}
.x84{left:507.885000px;}
.x81{left:516.705000px;}
.x70{left:531.645000px;}
.x60{left:558.105000px;}
.x7f{left:560.985000px;}
.x5b{left:579.165000px;}
.x7a{left:586.725000px;}
.x71{left:619.665000px;}
.x7c{left:622.725000px;}
.x77{left:628.485000px;}
.x5c{left:631.005000px;}
.x11{left:637.484987px;}
.x61{left:648.645000px;}
.x5d{left:671.685000px;}
.x85{left:684.645000px;}
.x18{left:691.664987px;}
.x10{left:701.789987px;}
.x72{left:707.910000px;}
.x82{left:719.610000px;}
.x4e{left:723.749987px;}
.x78{left:735.270000px;}
.x7e{left:737.610000px;}
.x5a{left:742.110000px;}
.x4f{left:751.289987px;}
.x6b{left:808.169987px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v3{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.062720pt;}
.ls1d{letter-spacing:0.121067pt;}
.ls3{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.233067pt;}
.ls7{letter-spacing:0.235706pt;}
.ls2{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.698809pt;}
.ls8{letter-spacing:1.822698pt;}
.ls15{letter-spacing:7.040000pt;}
.ls1a{letter-spacing:11.151360pt;}
.ls1b{letter-spacing:15.631360pt;}
.ls16{letter-spacing:39.311360pt;}
.ls19{letter-spacing:48.271360pt;}
.lsc{letter-spacing:114.330667pt;}
.ls12{letter-spacing:144.250667pt;}
.lsd{letter-spacing:145.797333pt;}
.ls13{letter-spacing:155.504000pt;}
.lsf{letter-spacing:168.410667pt;}
.ls14{letter-spacing:221.050667pt;}
.ls10{letter-spacing:242.917333pt;}
.ls11{letter-spacing:258.810667pt;}
.ls1{letter-spacing:954.671360pt;}
.ws6{word-spacing:-58.880000pt;}
.ws1{word-spacing:-37.120000pt;}
.ws10{word-spacing:-16.640107pt;}
.ws1e{word-spacing:-16.601707pt;}
.ws2{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws5{word-spacing:-16.135573pt;}
.ws4{word-spacing:-15.632640pt;}
.ws14{word-spacing:-12.005120pt;}
.ws24{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.848000pt;}
.ws25{word-spacing:-10.841067pt;}
.ws23{word-spacing:-10.720000pt;}
.ws26{word-spacing:-10.400000pt;}
.ws7{word-spacing:-9.116709pt;}
.ws1a{word-spacing:-3.093333pt;}
.ws21{word-spacing:-1.994667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:3.169294pt;}
.wse{word-spacing:3.384808pt;}
.ws1f{word-spacing:4.138667pt;}
.wsd{word-spacing:4.790826pt;}
.wsb{word-spacing:5.653333pt;}
.ws9{word-spacing:7.072000pt;}
.wsc{word-spacing:17.263554pt;}
.ws1d{word-spacing:20.048000pt;}
.ws1c{word-spacing:25.221333pt;}
.ws11{word-spacing:54.714667pt;}
.ws8{word-spacing:56.226926pt;}
.ws1b{word-spacing:61.440000pt;}
.ws17{word-spacing:84.794667pt;}
.ws12{word-spacing:86.341333pt;}
.ws20{word-spacing:92.282667pt;}
.ws18{word-spacing:96.154667pt;}
.ws22{word-spacing:104.442667pt;}
.ws13{word-spacing:108.954667pt;}
.ws19{word-spacing:173.594667pt;}
.ws15{word-spacing:195.781333pt;}
.ws16{word-spacing:211.621333pt;}
._32{margin-left:-5.792000pt;}
._1d{margin-left:-4.443520pt;}
._4{margin-left:-3.532800pt;}
._2{margin-left:-2.021760pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.898560pt;}
._c{width:2.560000pt;}
._1e{width:3.481600pt;}
._b{width:4.553600pt;}
._a{width:5.448320pt;}
._13{width:6.359040pt;}
._3{width:7.862400pt;}
._1c{width:9.304320pt;}
._21{width:10.272640pt;}
._9{width:11.351680pt;}
._8{width:12.263040pt;}
._12{width:13.152000pt;}
._11{width:14.103040pt;}
._10{width:15.269760pt;}
._5{width:17.479680pt;}
._6{width:18.547200pt;}
._7{width:19.921280pt;}
._22{width:21.039360pt;}
._1b{width:22.251520pt;}
._1a{width:23.316480pt;}
._17{width:24.231040pt;}
._18{width:25.404800pt;}
._19{width:26.637440pt;}
._e{width:27.850240pt;}
._d{width:28.882560pt;}
._14{width:29.781760pt;}
._f{width:30.794240pt;}
._25{width:32.066560pt;}
._15{width:33.208320pt;}
._16{width:34.621440pt;}
._23{width:35.579520pt;}
._24{width:36.829227pt;}
._26{width:39.183360pt;}
._29{width:42.256000pt;}
._20{width:43.688960pt;}
._1f{width:44.945280pt;}
._35{width:48.271360pt;}
._2a{width:52.976000pt;}
._2b{width:58.111248pt;}
._36{width:65.121920pt;}
._27{width:66.706632pt;}
._2d{width:77.813333pt;}
._2c{width:97.826139pt;}
._28{width:101.377467pt;}
._30{width:107.893333pt;}
._2e{width:109.280000pt;}
._31{width:119.040000pt;}
._33{width:127.376000pt;}
._2f{width:132.000000pt;}
._34{width:139.536000pt;}
.fse{font-size:2.560000pt;}
.fsd{font-size:27.952358pt;}
.fsa{font-size:32.793916pt;}
.fs8{font-size:36.429074pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.y2ba{bottom:-6.760000pt;}
.y263{bottom:-6.746667pt;}
.y1d4{bottom:-6.720000pt;}
.y2bf{bottom:-6.560000pt;}
.y1d2{bottom:-4.800000pt;}
.y1d7{bottom:-4.640000pt;}
.y24f{bottom:-4.160000pt;}
.y207{bottom:-4.040000pt;}
.y1e4{bottom:-4.000000pt;}
.y0{bottom:0.000000pt;}
.y1ce{bottom:2.240000pt;}
.y102{bottom:2.720000pt;}
.yb3{bottom:3.959884pt;}
.y10a{bottom:4.000000pt;}
.y104{bottom:4.160000pt;}
.yd7{bottom:6.080000pt;}
.y12d{bottom:6.693333pt;}
.y133{bottom:6.853333pt;}
.y147{bottom:7.013333pt;}
.y14d{bottom:7.266667pt;}
.y167{bottom:7.906667pt;}
.y140{bottom:8.000000pt;}
.y139{bottom:8.160000pt;}
.y111{bottom:8.640000pt;}
.yf2{bottom:9.360240pt;}
.y119{bottom:9.440000pt;}
.y1e6{bottom:10.120000pt;}
.y1e3{bottom:11.400000pt;}
.yd1{bottom:11.706667pt;}
.y161{bottom:11.746667pt;}
.y18a{bottom:11.773333pt;}
.y16d{bottom:11.813333pt;}
.yc7{bottom:11.840000pt;}
.y1da{bottom:14.400000pt;}
.y1dc{bottom:14.560000pt;}
.yf1{bottom:18.117721pt;}
.y128{bottom:22.306667pt;}
.y12f{bottom:22.426667pt;}
.y142{bottom:22.626667pt;}
.y149{bottom:22.880000pt;}
.y163{bottom:23.520000pt;}
.y13b{bottom:23.613333pt;}
.y135{bottom:23.773333pt;}
.y10c{bottom:24.253333pt;}
.y114{bottom:25.026667pt;}
.yb2{bottom:26.349509pt;}
.yf0{bottom:26.894725pt;}
.ycc{bottom:27.333333pt;}
.y15d{bottom:27.360000pt;}
.y184{bottom:27.386667pt;}
.yc2{bottom:27.426667pt;}
.yef{bottom:35.671729pt;}
.yac{bottom:36.583882pt;}
.y1c9{bottom:40.800000pt;}
.yee{bottom:44.428397pt;}
.y191{bottom:45.893333pt;}
.y185{bottom:47.133333pt;}
.y13c{bottom:47.226667pt;}
.y129{bottom:47.453333pt;}
.y10d{bottom:48.413333pt;}
.yc3{bottom:50.053333pt;}
.y115{bottom:50.466667pt;}
.y198{bottom:51.106667pt;}
.y143{bottom:51.266667pt;}
.y164{bottom:51.360000pt;}
.y16a{bottom:51.680000pt;}
.y18d{bottom:52.093333pt;}
.yed{bottom:53.205401pt;}
.ycd{bottom:54.373333pt;}
.y15e{bottom:54.946667pt;}
.y130{bottom:55.866667pt;}
.y136{bottom:55.933333pt;}
.y16f{bottom:56.480000pt;}
.y5{bottom:59.133337pt;}
.y14a{bottom:61.666667pt;}
.yec{bottom:61.962069pt;}
.y192{bottom:64.413333pt;}
.y186{bottom:66.906667pt;}
.yeb{bottom:70.739073pt;}
.y13d{bottom:70.813333pt;}
.yad{bottom:72.077074pt;}
.y10e{bottom:72.573333pt;}
.y12a{bottom:72.613333pt;}
.yc4{bottom:72.666667pt;}
.y199{bottom:74.880000pt;}
.y116{bottom:75.866667pt;}
.y16b{bottom:75.933333pt;}
.y18e{bottom:76.773333pt;}
.y165{bottom:79.226667pt;}
.yea{bottom:79.496554pt;}
.y144{bottom:79.933333pt;}
.yce{bottom:81.413333pt;}
.y15f{bottom:82.533333pt;}
.y193{bottom:82.946667pt;}
.y24c{bottom:84.672000pt;}
.y170{bottom:85.533333pt;}
.y4{bottom:86.333337pt;}
.y187{bottom:86.653333pt;}
.y137{bottom:88.066667pt;}
.ye9{bottom:88.274372pt;}
.y131{bottom:89.306667pt;}
.y218{bottom:91.232000pt;}
.y13e{bottom:94.426667pt;}
.yc5{bottom:95.293333pt;}
.y27f{bottom:96.352000pt;}
.y10f{bottom:96.773333pt;}
.ye8{bottom:97.026972pt;}
.y12b{bottom:97.760000pt;}
.y2b8{bottom:97.952000pt;}
.y19a{bottom:98.653333pt;}
.y16c{bottom:100.186667pt;}
.y217{bottom:100.192000pt;}
.y14b{bottom:100.480000pt;}
.y117{bottom:101.280000pt;}
.y18f{bottom:101.466667pt;}
.y24b{bottom:103.072000pt;}
.ye7{bottom:105.803976pt;}
.y216{bottom:106.272000pt;}
.y188{bottom:106.426667pt;}
.y166{bottom:107.106667pt;}
.yae{bottom:107.595887pt;}
.ycf{bottom:108.453333pt;}
.y145{bottom:108.613333pt;}
.y171{bottom:108.800000pt;}
.y160{bottom:110.106667pt;}
.y27e{bottom:114.752000pt;}
.y2b7{bottom:115.232000pt;}
.yc6{bottom:117.920000pt;}
.y13f{bottom:118.053333pt;}
.y168{bottom:118.720000pt;}
.y194{bottom:120.000000pt;}
.y138{bottom:120.226667pt;}
.y110{bottom:120.933333pt;}
.y215{bottom:121.152000pt;}
.y24a{bottom:121.472000pt;}
.y19b{bottom:122.466667pt;}
.y132{bottom:122.746667pt;}
.y12c{bottom:122.880000pt;}
.ye6{bottom:123.341716pt;}
.y16e{bottom:123.520000pt;}
.y22{bottom:123.790666pt;}
.y189{bottom:126.173333pt;}
.y118{bottom:126.693333pt;}
.y112{bottom:128.293333pt;}
.y13a{bottom:128.320000pt;}
.y12e{bottom:128.346667pt;}
.y11a{bottom:132.293333pt;}
.y27d{bottom:133.152000pt;}
.y162{bottom:133.440000pt;}
.y2b6{bottom:133.626667pt;}
.yd0{bottom:135.493333pt;}
.y214{bottom:136.186667pt;}
.y146{bottom:137.280000pt;}
.y195{bottom:138.533333pt;}
.y14c{bottom:139.266667pt;}
.y249{bottom:139.866667pt;}
.ye5{bottom:140.871320pt;}
.yca{bottom:141.093333pt;}
.yaf{bottom:143.089079pt;}
.y148{bottom:145.253333pt;}
.y19d{bottom:145.693333pt;}
.ye4{bottom:149.632055pt;}
.y18c{bottom:149.826667pt;}
.y213{bottom:151.226667pt;}
.y27c{bottom:151.546667pt;}
.y2b5{bottom:152.026667pt;}
.yc9{bottom:155.813333pt;}
.y248{bottom:158.266667pt;}
.yd3{bottom:158.373333pt;}
.ye3{bottom:158.409059pt;}
.y19c{bottom:160.413333pt;}
.y196{bottom:162.173333pt;}
.y18b{bottom:166.146667pt;}
.y212{bottom:166.266667pt;}
.ydf{bottom:168.680000pt;}
.y27b{bottom:169.946667pt;}
.y2b4{bottom:170.426667pt;}
.yc8{bottom:170.533333pt;}
.yd2{bottom:171.493333pt;}
.y19{bottom:175.052000pt;}
.y247{bottom:176.666667pt;}
.yb0{bottom:178.600571pt;}
.y211{bottom:181.146667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y24{bottom:186.426667pt;}
.y27a{bottom:188.346667pt;}
.y2b3{bottom:188.826667pt;}
.y246{bottom:195.066667pt;}
.y210{bottom:196.186667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y279{bottom:206.746667pt;}
.y2b2{bottom:207.226667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y20f{bottom:211.226667pt;}
.y245{bottom:213.466667pt;}
.yb1{bottom:214.002262pt;}
.y20e{bottom:220.186667pt;}
.y2b1{bottom:222.106667pt;}
.y47{bottom:223.866667pt;}
.y278{bottom:225.146667pt;}
.y1b9{bottom:225.466667pt;}
.y20d{bottom:226.266667pt;}
.y15b{bottom:226.906667pt;}
.y182{bottom:227.386667pt;}
.yc0{bottom:228.506667pt;}
.y82{bottom:229.146667pt;}
.y70{bottom:229.946667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y2b0{bottom:231.066667pt;}
.y244{bottom:231.866667pt;}
.y9b{bottom:234.906667pt;}
.y126{bottom:235.866667pt;}
.y2af{bottom:237.146667pt;}
.y100{bottom:238.746667pt;}
.y46{bottom:239.226667pt;}
.y88{bottom:239.706667pt;}
.y20c{bottom:241.146667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.yaa{bottom:242.266667pt;}
.y277{bottom:243.546667pt;}
.y45{bottom:243.866667pt;}
.y181{bottom:244.186667pt;}
.ybf{bottom:245.306667pt;}
.y81{bottom:245.946667pt;}
.ye1{bottom:246.266667pt;}
.y6f{bottom:246.746667pt;}
.y1c7{bottom:250.266667pt;}
.y9a{bottom:251.706667pt;}
.y15a{bottom:251.866667pt;}
.y2ae{bottom:252.186667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yff{bottom:255.706667pt;}
.y44{bottom:255.866667pt;}
.y20b{bottom:256.186667pt;}
.y87{bottom:256.506667pt;}
.y1b8{bottom:259.066667pt;}
.y125{bottom:260.666667pt;}
.y180{bottom:261.146667pt;}
.y276{bottom:261.946667pt;}
.y80{bottom:262.906667pt;}
.ye0{bottom:263.066667pt;}
.y6e{bottom:263.706667pt;}
.y20a{bottom:265.146667pt;}
.ya9{bottom:267.066667pt;}
.y99{bottom:268.666667pt;}
.ybe{bottom:269.946667pt;}
.y109{bottom:270.266667pt;}
.y209{bottom:271.226667pt;}
.y113{bottom:271.360000pt;}
.yfe{bottom:272.506667pt;}
.y86{bottom:273.466667pt;}
.y10b{bottom:275.360000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y159{bottom:276.666667pt;}
.y17f{bottom:277.946667pt;}
.y43{bottom:278.586667pt;}
.y275{bottom:280.346667pt;}
.y6d{bottom:280.506667pt;}
.y2ad{bottom:282.106667pt;}
.ybd{bottom:282.426667pt;}
.yc1{bottom:282.560000pt;}
.ycb{bottom:282.880000pt;}
.y1b7{bottom:284.026667pt;}
.y98{bottom:285.466667pt;}
.y124{bottom:285.626667pt;}
.ye2{bottom:285.680000pt;}
.y208{bottom:286.266667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y243{bottom:287.066667pt;}
.y7f{bottom:287.706667pt;}
.yfd{bottom:289.466667pt;}
.y85{bottom:290.266667pt;}
.ya8{bottom:292.026667pt;}
.y17e{bottom:294.946667pt;}
.y206{bottom:295.266667pt;}
.y42{bottom:295.586667pt;}
.y2ac{bottom:297.186667pt;}
.y6c{bottom:297.506667pt;}
.y274{bottom:298.786667pt;}
.y1b6{bottom:300.866667pt;}
.y205{bottom:301.186667pt;}
.y158{bottom:301.666667pt;}
.y97{bottom:302.306667pt;}
.y242{bottom:303.266667pt;}
.yfc{bottom:306.306667pt;}
.y84{bottom:307.106667pt;}
.y10{bottom:309.452000pt;}
.y123{bottom:310.466667pt;}
.y17d{bottom:311.746667pt;}
.y2ab{bottom:312.226667pt;}
.y41{bottom:312.386667pt;}
.y6b{bottom:314.306667pt;}
.y204{bottom:316.226667pt;}
.ya7{bottom:316.866667pt;}
.y273{bottom:317.186667pt;}
.y1b5{bottom:317.826667pt;}
.y96{bottom:319.266667pt;}
.y7e{bottom:320.706667pt;}
.yfb{bottom:323.106667pt;}
.y1a2{bottom:324.066667pt;}
.y241{bottom:324.226667pt;}
.y1c6{bottom:325.826667pt;}
.y157{bottom:326.466667pt;}
.y2aa{bottom:327.106667pt;}
.y17c{bottom:328.546667pt;}
.y40{bottom:329.346667pt;}
.y6a{bottom:331.106667pt;}
.y203{bottom:331.266667pt;}
.y83{bottom:332.066667pt;}
.y1b4{bottom:334.626667pt;}
.y122{bottom:335.106667pt;}
.y272{bottom:335.586667pt;}
.y95{bottom:336.066667pt;}
.y7d{bottom:337.506667pt;}
.yfa{bottom:340.066667pt;}
.y1a1{bottom:340.866667pt;}
.ya6{bottom:341.826667pt;}
.y2a9{bottom:342.146667pt;}
.y1c5{bottom:342.626667pt;}
.yf{bottom:343.809333pt;}
.y17b{bottom:345.506667pt;}
.y3f{bottom:346.146667pt;}
.y202{bottom:346.306667pt;}
.y121{bottom:347.586667pt;}
.y141{bottom:347.680000pt;}
.y69{bottom:348.066667pt;}
.y240{bottom:349.506667pt;}
.y271{bottom:350.466667pt;}
.y2a8{bottom:351.106667pt;}
.y156{bottom:351.426667pt;}
.y94{bottom:353.026667pt;}
.y7c{bottom:354.306667pt;}
.yf9{bottom:356.866667pt;}
.y2a7{bottom:357.186667pt;}
.y1a0{bottom:357.826667pt;}
.y1b3{bottom:359.426667pt;}
.y17a{bottom:362.306667pt;}
.ye{bottom:362.706666pt;}
.y3e{bottom:362.946667pt;}
.y68{bottom:364.866667pt;}
.y270{bottom:365.506667pt;}
.ya5{bottom:366.626667pt;}
.y93{bottom:369.826667pt;}
.y7b{bottom:371.266667pt;}
.y2a6{bottom:372.226667pt;}
.y201{bottom:372.386667pt;}
.yf8{bottom:373.826667pt;}
.y19f{bottom:374.626667pt;}
.y23f{bottom:375.266667pt;}
.y1b2{bottom:376.386667pt;}
.y155{bottom:376.706667pt;}
.y179{bottom:379.266667pt;}
.y3d{bottom:379.906667pt;}
.y26f{bottom:380.386667pt;}
.y67{bottom:381.826667pt;}
.y2a5{bottom:387.106667pt;}
.y7a{bottom:388.066667pt;}
.y200{bottom:389.186667pt;}
.yf7{bottom:390.626667pt;}
.ya4{bottom:391.426667pt;}
.y1b1{bottom:393.186667pt;}
.y92{bottom:394.626667pt;}
.y26e{bottom:395.426667pt;}
.y178{bottom:396.066667pt;}
.y23e{bottom:396.226667pt;}
.y66{bottom:398.626667pt;}
.y2a4{bottom:402.146667pt;}
.y26d{bottom:404.386667pt;}
.y3c{bottom:404.706667pt;}
.y79{bottom:405.026667pt;}
.yf6{bottom:407.426667pt;}
.ya3{bottom:408.386667pt;}
.y1c4{bottom:410.146667pt;}
.y26c{bottom:410.466667pt;}
.y154{bottom:411.426667pt;}
.y91{bottom:411.586667pt;}
.y177{bottom:412.866667pt;}
.y1ff{bottom:413.826667pt;}
.y65{bottom:415.426667pt;}
.y23d{bottom:416.226667pt;}
.y2a3{bottom:417.186667pt;}
.y1b0{bottom:418.146667pt;}
.y78{bottom:421.826667pt;}
.yf5{bottom:424.386667pt;}
.ya2{bottom:425.186667pt;}
.y26b{bottom:425.506667pt;}
.y1fe{bottom:426.306667pt;}
.y90{bottom:428.386667pt;}
.y176{bottom:429.826667pt;}
.y2a2{bottom:432.226667pt;}
.y64{bottom:432.386667pt;}
.y26a{bottom:434.466667pt;}
.y1af{bottom:434.946667pt;}
.y1fd{bottom:435.266667pt;}
.y23c{bottom:437.026667pt;}
.y108{bottom:437.346667pt;}
.y3b{bottom:437.666667pt;}
.y269{bottom:440.386667pt;}
.yf4{bottom:441.186667pt;}
.y1fc{bottom:441.346667pt;}
.ya1{bottom:442.146667pt;}
.y8f{bottom:445.186667pt;}
.y77{bottom:446.466667pt;}
.y175{bottom:446.626667pt;}
.yd{bottom:446.990669pt;}
.y2a1{bottom:447.106667pt;}
.y63{bottom:449.186667pt;}
.y1ae{bottom:451.906667pt;}
.y107{bottom:454.306667pt;}
.y268{bottom:455.426667pt;}
.y1fb{bottom:456.226667pt;}
.yf3{bottom:458.146667pt;}
.y23b{bottom:458.306667pt;}
.ya0{bottom:458.946667pt;}
.y76{bottom:461.826667pt;}
.y153{bottom:462.146667pt;}
.y3a{bottom:462.466667pt;}
.yc{bottom:462.990669pt;}
.y8e{bottom:463.106667pt;}
.y267{bottom:464.386667pt;}
.y62{bottom:466.146667pt;}
.y1c3{bottom:468.706667pt;}
.y266{bottom:470.466667pt;}
.y106{bottom:471.106667pt;}
.y174{bottom:471.266667pt;}
.y9f{bottom:475.906667pt;}
.y1ad{bottom:476.706667pt;}
.yde{bottom:477.186667pt;}
.yb{bottom:478.990666pt;}
.y39{bottom:479.266667pt;}
.y8d{bottom:479.906667pt;}
.y23a{bottom:480.706667pt;}
.y61{bottom:482.946667pt;}
.y173{bottom:483.746667pt;}
.y190{bottom:484.960000pt;}
.y75{bottom:485.346667pt;}
.ybc{bottom:485.506667pt;}
.y1fa{bottom:486.306667pt;}
.y152{bottom:486.626667pt;}
.y197{bottom:488.000000pt;}
.y2a0{bottom:492.226667pt;}
.y9e{bottom:492.706667pt;}
.y1ac{bottom:493.506667pt;}
.ydd{bottom:493.986667pt;}
.ya{bottom:494.990666pt;}
.y105{bottom:495.746667pt;}
.y8c{bottom:497.826667pt;}
.y151{bottom:499.106667pt;}
.y60{bottom:499.906667pt;}
.y169{bottom:500.320000pt;}
.y265{bottom:500.386667pt;}
.y19e{bottom:500.706667pt;}
.y1f9{bottom:501.346667pt;}
.y239{bottom:501.666667pt;}
.y74{bottom:502.306667pt;}
.ybb{bottom:502.466667pt;}
.y38{bottom:504.226667pt;}
.y29f{bottom:507.106667pt;}
.y103{bottom:508.226667pt;}
.y9d{bottom:509.506667pt;}
.y1ab{bottom:510.466667pt;}
.y8b{bottom:514.626667pt;}
.y264{bottom:515.426667pt;}
.y120{bottom:515.586667pt;}
.y1f8{bottom:516.226667pt;}
.y134{bottom:516.640000pt;}
.y5f{bottom:516.706667pt;}
.ydc{bottom:518.946667pt;}
.y73{bottom:519.106667pt;}
.yba{bottom:519.266667pt;}
.y37{bottom:521.026667pt;}
.y238{bottom:521.666667pt;}
.y29e{bottom:522.146667pt;}
.y1aa{bottom:527.266667pt;}
.y262{bottom:530.493333pt;}
.y1f7{bottom:531.293333pt;}
.y8a{bottom:532.573333pt;}
.y5e{bottom:533.533333pt;}
.y9c{bottom:534.493333pt;}
.ydb{bottom:535.773333pt;}
.y72{bottom:535.933333pt;}
.y36{bottom:538.013333pt;}
.y261{bottom:539.453333pt;}
.y237{bottom:541.693333pt;}
.yb9{bottom:544.253333pt;}
.y260{bottom:545.533333pt;}
.y1f6{bottom:546.333333pt;}
.y29d{bottom:548.253333pt;}
.y89{bottom:549.373333pt;}
.y5d{bottom:550.493333pt;}
.y1a9{bottom:552.253333pt;}
.yda{bottom:552.573333pt;}
.y35{bottom:554.813333pt;}
.y1f5{bottom:555.293333pt;}
.y9{bottom:556.986668pt;}
.y25f{bottom:560.413333pt;}
.y71{bottom:560.573333pt;}
.yb8{bottom:561.053333pt;}
.y1f4{bottom:561.373333pt;}
.y236{bottom:561.693333pt;}
.y29c{bottom:565.213333pt;}
.y5c{bottom:567.293333pt;}
.y1a8{bottom:569.053333pt;}
.yd9{bottom:569.533333pt;}
.y34{bottom:571.613333pt;}
.y8{bottom:573.786667pt;}
.y25e{bottom:575.453333pt;}
.y1f3{bottom:576.253333pt;}
.yb7{bottom:577.853333pt;}
.y29b{bottom:582.013333pt;}
.y235{bottom:582.333333pt;}
.y5b{bottom:584.253333pt;}
.y1a7{bottom:585.853333pt;}
.yd8{bottom:586.333333pt;}
.y33{bottom:588.573333pt;}
.y25d{bottom:590.493333pt;}
.y1f2{bottom:591.293333pt;}
.y7{bottom:592.685334pt;}
.y2c5{bottom:597.213333pt;}
.y1f1{bottom:600.253333pt;}
.y5a{bottom:601.053333pt;}
.yb6{bottom:602.493333pt;}
.y1c2{bottom:602.813333pt;}
.y32{bottom:605.373333pt;}
.y25c{bottom:605.533333pt;}
.y1f0{bottom:606.333333pt;}
.y29a{bottom:607.293333pt;}
.yd6{bottom:608.733333pt;}
.y1a6{bottom:610.813333pt;}
.y2c4{bottom:610.973333pt;}
.y25b{bottom:614.493333pt;}
.y234{bottom:614.813333pt;}
.y59{bottom:617.853333pt;}
.y1c1{bottom:619.613333pt;}
.y2c3{bottom:619.933333pt;}
.y25a{bottom:620.413333pt;}
.y1ef{bottom:621.373333pt;}
.y31{bottom:622.333333pt;}
.y299{bottom:625.693333pt;}
.yb5{bottom:625.853333pt;}
.y1a5{bottom:627.613333pt;}
.y1ee{bottom:630.333333pt;}
.y233{bottom:631.613333pt;}
.y58{bottom:634.813333pt;}
.y259{bottom:635.453333pt;}
.y1ed{bottom:636.253333pt;}
.yab{bottom:638.306667pt;}
.yb4{bottom:638.333333pt;}
.y30{bottom:639.133333pt;}
.y298{bottom:640.573333pt;}
.y2c2{bottom:640.893333pt;}
.y258{bottom:644.413333pt;}
.y1a4{bottom:644.573333pt;}
.y150{bottom:645.213333pt;}
.y6{bottom:645.598667pt;}
.y15c{bottom:646.400000pt;}
.y232{bottom:648.573333pt;}
.y297{bottom:649.533333pt;}
.y257{bottom:650.493333pt;}
.y1ec{bottom:651.293333pt;}
.y57{bottom:651.613333pt;}
.y296{bottom:655.613333pt;}
.y2f{bottom:655.933333pt;}
.y1c0{bottom:661.373333pt;}
.y2c1{bottom:664.893333pt;}
.y256{bottom:665.533333pt;}
.y1eb{bottom:666.333333pt;}
.y56{bottom:668.573333pt;}
.y101{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y1a3{bottom:669.373333pt;}
.y172{bottom:669.853333pt;}
.y295{bottom:670.653333pt;}
.y2c0{bottom:670.973333pt;}
.y183{bottom:671.040000pt;}
.y2e{bottom:672.893333pt;}
.y231{bottom:673.373333pt;}
.y255{bottom:674.493333pt;}
.y1bf{bottom:678.173333pt;}
.y11f{bottom:678.653333pt;}
.y254{bottom:680.413333pt;}
.y1ea{bottom:681.373333pt;}
.y55{bottom:685.373333pt;}
.y294{bottom:685.533333pt;}
.y2be{bottom:685.853333pt;}
.y2d{bottom:689.693333pt;}
.y2bd{bottom:694.973333pt;}
.y1be{bottom:695.133333pt;}
.y253{bottom:695.453333pt;}
.y11e{bottom:695.613333pt;}
.y230{bottom:698.013333pt;}
.y293{bottom:700.573333pt;}
.y2bc{bottom:700.893333pt;}
.y54{bottom:702.173333pt;}
.y2c{bottom:706.653333pt;}
.y1e9{bottom:707.453333pt;}
.y22f{bottom:710.493333pt;}
.y11d{bottom:712.413333pt;}
.y292{bottom:715.613333pt;}
.y53{bottom:719.133333pt;}
.y22e{bottom:719.453333pt;}
.y1bd{bottom:719.933333pt;}
.y2b{bottom:723.453333pt;}
.y1e8{bottom:724.253333pt;}
.y22d{bottom:725.533333pt;}
.y291{bottom:730.653333pt;}
.y2bb{bottom:734.493333pt;}
.y52{bottom:735.933333pt;}
.y1bc{bottom:736.893333pt;}
.y11c{bottom:737.053333pt;}
.y2a{bottom:740.413333pt;}
.y290{bottom:745.533333pt;}
.y1e7{bottom:749.213333pt;}
.y11b{bottom:749.533333pt;}
.y127{bottom:750.560000pt;}
.y51{bottom:752.893333pt;}
.y1bb{bottom:753.693333pt;}
.y22c{bottom:755.453333pt;}
.y28f{bottom:760.573333pt;}
.y1e2{bottom:763.613333pt;}
.y29{bottom:765.213333pt;}
.y28e{bottom:769.573333pt;}
.y50{bottom:769.733333pt;}
.y1ba{bottom:770.533333pt;}
.y1e5{bottom:773.733333pt;}
.y1e1{bottom:775.013333pt;}
.y28d{bottom:775.653333pt;}
.yd5{bottom:778.533333pt;}
.y252{bottom:779.493333pt;}
.y2{bottom:781.661334pt;}
.y22b{bottom:785.573333pt;}
.y4f{bottom:786.533333pt;}
.y1e0{bottom:788.773333pt;}
.y28c{bottom:790.693333pt;}
.yd4{bottom:795.493333pt;}
.y1df{bottom:797.733333pt;}
.y22a{bottom:800.453333pt;}
.y1de{bottom:803.173333pt;}
.y4e{bottom:803.493333pt;}
.y28b{bottom:805.573333pt;}
.y2b9{bottom:809.573333pt;}
.y14f{bottom:812.293333pt;}
.y229{bottom:815.493333pt;}
.y28{bottom:816.133333pt;}
.y1dd{bottom:818.053333pt;}
.y4d{bottom:820.293333pt;}
.y28a{bottom:820.613333pt;}
.y251{bottom:824.453333pt;}
.y14e{bottom:829.253333pt;}
.y228{bottom:830.533333pt;}
.y1db{bottom:833.093333pt;}
.y289{bottom:835.653333pt;}
.y4c{bottom:837.253333pt;}
.y227{bottom:839.493333pt;}
.y27{bottom:841.253333pt;}
.y226{bottom:845.573333pt;}
.y288{bottom:850.693333pt;}
.y4b{bottom:854.053333pt;}
.y250{bottom:854.533333pt;}
.y1d9{bottom:858.693333pt;}
.y1{bottom:859.312000pt;}
.y287{bottom:859.653333pt;}
.y225{bottom:860.453333pt;}
.y26{bottom:862.693333pt;}
.y286{bottom:865.573333pt;}
.y4a{bottom:871.013333pt;}
.y224{bottom:875.493333pt;}
.y285{bottom:880.613333pt;}
.y1d8{bottom:883.173333pt;}
.y25{bottom:884.133333pt;}
.y223{bottom:884.453333pt;}
.y49{bottom:887.813333pt;}
.y284{bottom:889.573333pt;}
.y222{bottom:890.533333pt;}
.y1d6{bottom:892.133333pt;}
.y283{bottom:895.653333pt;}
.y1d5{bottom:897.573333pt;}
.y221{bottom:905.573333pt;}
.y282{bottom:910.693333pt;}
.y1d3{bottom:912.453333pt;}
.y220{bottom:914.533333pt;}
.y21f{bottom:920.453333pt;}
.y1d1{bottom:921.573333pt;}
.y48{bottom:923.493333pt;}
.y23{bottom:925.573333pt;}
.y1d0{bottom:926.853333pt;}
.y24e{bottom:929.573333pt;}
.y21e{bottom:935.493333pt;}
.y281{bottom:940.613333pt;}
.y1cf{bottom:941.893333pt;}
.y21d{bottom:950.533333pt;}
.y1cd{bottom:956.773333pt;}
.y24d{bottom:959.493333pt;}
.y21c{bottom:965.573333pt;}
.y280{bottom:966.693333pt;}
.y1cc{bottom:983.653333pt;}
.y21b{bottom:991.653333pt;}
.y1cb{bottom:1000.453333pt;}
.y21a{bottom:1008.480000pt;}
.y1ca{bottom:1025.440000pt;}
.y219{bottom:1033.440000pt;}
.y1c8{bottom:1071.200000pt;}
.h34{height:2.512500pt;}
.h38{height:3.200000pt;}
.h2f{height:3.360000pt;}
.h2e{height:5.280000pt;}
.h30{height:5.440000pt;}
.h35{height:5.920000pt;}
.h36{height:6.080000pt;}
.h32{height:13.760000pt;}
.h2d{height:14.880000pt;}
.h2b{height:15.040000pt;}
.h37{height:15.072000pt;}
.h39{height:20.000000pt;}
.h3b{height:20.032000pt;}
.h3c{height:20.960000pt;}
.h31{height:24.480000pt;}
.h3e{height:24.640000pt;}
.hb{height:25.294016pt;}
.h7{height:28.560000pt;}
.h1a{height:29.153436pt;}
.h10{height:34.203030pt;}
.h15{height:34.505000pt;}
.h13{height:38.625000pt;}
.h6{height:40.800000pt;}
.h3a{height:42.063437pt;}
.h2c{height:42.084375pt;}
.h1f{height:42.745000pt;}
.h3{height:42.840000pt;}
.h3d{height:43.215000pt;}
.h2{height:48.960000pt;}
.h18{height:50.062500pt;}
.hc{height:52.108438pt;}
.he{height:52.813750pt;}
.hd{height:55.402500pt;}
.h9{height:61.410000pt;}
.h11{height:62.812500pt;}
.h5{height:69.360000pt;}
.ha{height:78.097500pt;}
.h4{height:105.826671pt;}
.h25{height:144.960000pt;}
.h23{height:146.106667pt;}
.h1e{height:151.040000pt;}
.h21{height:152.026667pt;}
.h24{height:154.880000pt;}
.h20{height:155.040000pt;}
.h1d{height:156.026667pt;}
.h1b{height:157.306667pt;}
.h16{height:158.106667pt;}
.h1c{height:160.506667pt;}
.h19{height:165.998443pt;}
.h22{height:168.000000pt;}
.h17{height:179.866667pt;}
.h2a{height:181.920000pt;}
.h29{height:184.960000pt;}
.h27{height:186.106667pt;}
.h28{height:188.800000pt;}
.h26{height:189.946667pt;}
.h14{height:191.680000pt;}
.h12{height:192.000000pt;}
.h33{height:208.186667pt;}
.hf{height:221.459584pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w27{width:36.160000pt;}
.w45{width:37.120000pt;}
.w4c{width:39.360000pt;}
.w2e{width:46.080000pt;}
.w26{width:46.112000pt;}
.w23{width:51.200000pt;}
.w4a{width:54.880000pt;}
.w28{width:62.560000pt;}
.w2f{width:62.592000pt;}
.w48{width:62.720000pt;}
.w43{width:64.800000pt;}
.w34{width:66.592000pt;}
.w3e{width:70.400000pt;}
.w40{width:70.432000pt;}
.w50{width:70.720000pt;}
.w36{width:73.440000pt;}
.w4e{width:77.920000pt;}
.w3b{width:78.240000pt;}
.w3c{width:78.272000pt;}
.w3d{width:78.432000pt;}
.w25{width:80.320000pt;}
.w2d{width:80.352000pt;}
.w33{width:80.480000pt;}
.w37{width:80.512000pt;}
.w51{width:86.400000pt;}
.w3f{width:94.560000pt;}
.w42{width:94.912000pt;}
.w47{width:102.112000pt;}
.w52{width:109.792000pt;}
.w35{width:134.586667pt;}
.w4d{width:140.986667pt;}
.w38{width:160.986667pt;}
.w29{width:162.426667pt;}
.w30{width:162.586667pt;}
.w3a{width:164.986667pt;}
.w19{width:192.960000pt;}
.w21{width:203.040000pt;}
.w14{width:204.000000pt;}
.w18{width:205.920000pt;}
.w1d{width:208.000000pt;}
.w1c{width:212.000000pt;}
.w20{width:215.040000pt;}
.w12{width:216.066667pt;}
.w7{width:217.920000pt;}
.w8{width:218.080000pt;}
.wd{width:218.813333pt;}
.we{width:218.973333pt;}
.wa{width:219.746667pt;}
.w16{width:219.906667pt;}
.w17{width:220.000000pt;}
.w1f{width:220.546667pt;}
.w1b{width:222.466667pt;}
.w13{width:224.960000pt;}
.w22{width:224.986667pt;}
.w2b{width:225.186667pt;}
.wb{width:225.626667pt;}
.wc{width:225.826667pt;}
.w10{width:226.786667pt;}
.w1e{width:230.426667pt;}
.w1a{width:231.226667pt;}
.w15{width:233.786667pt;}
.w9{width:236.186667pt;}
.w11{width:237.626667pt;}
.wf{width:241.146667pt;}
.w24{width:276.186667pt;}
.w2c{width:276.386667pt;}
.w32{width:288.546667pt;}
.w2a{width:292.026667pt;}
.w31{width:292.066667pt;}
.w4f{width:319.106667pt;}
.w4b{width:326.946667pt;}
.w49{width:366.306667pt;}
.w39{width:369.026667pt;}
.w44{width:389.186667pt;}
.w53{width:389.826667pt;}
.w46{width:421.186667pt;}
.w41{width:426.306667pt;}
.w6{width:452.932655pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:1.600000pt;}
.x58{left:4.160000pt;}
.x14{left:6.762983pt;}
.x1b{left:8.733333pt;}
.x42{left:9.986667pt;}
.x75{left:11.520000pt;}
.x13{left:13.236048pt;}
.x1a{left:14.813333pt;}
.x39{left:18.173333pt;}
.x32{left:19.293333pt;}
.x35{left:20.960000pt;}
.x55{left:23.040000pt;}
.x89{left:24.480000pt;}
.x53{left:25.600000pt;}
.x1f{left:27.066667pt;}
.x41{left:28.226667pt;}
.x67{left:29.280000pt;}
.x20{left:31.426667pt;}
.x3a{left:32.346667pt;}
.x1d{left:33.373333pt;}
.x36{left:35.133333pt;}
.x1c{left:36.573333pt;}
.x64{left:37.786667pt;}
.x65{left:38.880000pt;}
.x68{left:39.866667pt;}
.x4a{left:40.933333pt;}
.x40{left:42.693333pt;}
.x49{left:45.280000pt;}
.x44{left:47.426667pt;}
.x83{left:48.640000pt;}
.x15{left:49.626347pt;}
.x7d{left:51.040000pt;}
.x46{left:52.640000pt;}
.x88{left:54.920000pt;}
.x37{left:58.306667pt;}
.x3c{left:59.266667pt;}
.x66{left:63.720000pt;}
.x62{left:67.240000pt;}
.x48{left:69.413333pt;}
.x74{left:71.040000pt;}
.x43{left:73.186667pt;}
.x47{left:75.360000pt;}
.x8a{left:79.880000pt;}
.x86{left:83.720000pt;}
.x3b{left:85.306667pt;}
.x33{left:87.706667pt;}
.x1{left:90.706667pt;}
.x1e{left:93.213333pt;}
.x2{left:94.486667pt;}
.x28{left:123.586864pt;}
.x27{left:128.333108pt;}
.x4c{left:132.351988pt;}
.x51{left:141.946667pt;}
.x6d{left:151.066667pt;}
.x87{left:159.554667pt;}
.x6a{left:161.146655pt;}
.x80{left:163.394667pt;}
.x21{left:168.666667pt;}
.x5{left:170.106655pt;}
.x45{left:171.066655pt;}
.x29{left:172.186655pt;}
.xb{left:174.426655pt;}
.x12{left:176.346655pt;}
.x26{left:177.666667pt;}
.x19{left:178.880000pt;}
.x4{left:180.874667pt;}
.x5f{left:182.266655pt;}
.x69{left:187.546655pt;}
.x7{left:189.466655pt;}
.x7b{left:192.986655pt;}
.x79{left:194.594667pt;}
.x38{left:201.146667pt;}
.x76{left:203.066655pt;}
.x16{left:206.593286pt;}
.xe{left:207.866655pt;}
.x31{left:211.266667pt;}
.x24{left:212.826667pt;}
.x3f{left:215.226667pt;}
.x2d{left:216.386667pt;}
.x9{left:218.106655pt;}
.x3d{left:219.240000pt;}
.x54{left:222.266667pt;}
.x2e{left:223.400000pt;}
.x2b{left:224.520000pt;}
.xf{left:226.906655pt;}
.x22{left:228.840000pt;}
.x25{left:232.680000pt;}
.x2f{left:240.346655pt;}
.x73{left:245.626667pt;}
.x50{left:260.506655pt;}
.x56{left:268.386667pt;}
.x8{left:294.786655pt;}
.x57{left:304.386667pt;}
.xc{left:310.466655pt;}
.x2a{left:314.466655pt;}
.x6e{left:316.066667pt;}
.x17{left:331.746655pt;}
.x63{left:342.146667pt;}
.x6c{left:349.506655pt;}
.x4b{left:357.346655pt;}
.xa{left:362.146655pt;}
.x52{left:366.946667pt;}
.xd{left:388.706655pt;}
.x6f{left:394.306667pt;}
.x6{left:396.866655pt;}
.x3e{left:401.346667pt;}
.x3{left:404.408000pt;}
.x23{left:405.506667pt;}
.x30{left:407.746667pt;}
.x2c{left:411.266667pt;}
.x34{left:414.880000pt;}
.x4d{left:425.346655pt;}
.x59{left:434.466667pt;}
.x84{left:451.453333pt;}
.x81{left:459.293333pt;}
.x70{left:472.573333pt;}
.x60{left:496.093333pt;}
.x7f{left:498.653333pt;}
.x5b{left:514.813333pt;}
.x7a{left:521.533333pt;}
.x71{left:550.813333pt;}
.x7c{left:553.533333pt;}
.x77{left:558.653333pt;}
.x5c{left:560.893333pt;}
.x11{left:566.653322pt;}
.x61{left:576.573333pt;}
.x5d{left:597.053333pt;}
.x85{left:608.573333pt;}
.x18{left:614.813322pt;}
.x10{left:623.813322pt;}
.x72{left:629.253333pt;}
.x82{left:639.653333pt;}
.x4e{left:643.333322pt;}
.x78{left:653.573333pt;}
.x7e{left:655.653333pt;}
.x5a{left:659.653333pt;}
.x4f{left:667.813322pt;}
.x6b{left:718.373322pt;}
}




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