
    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_4bb2d1d8441ca5834cd9ddae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7f6bad4fb256be51005e3c80.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cfe70e6bdafcba57ddf28f25.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fafcec2a01ed4b4ee6d3a99b.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_8eb61a1048e3766d20ec1896.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_ec852a1046d30e2d1e1c15ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689941;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_562bac2e2d05cf21c9816198.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.751953;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_0f6419e5d6ea022fea3afc04.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d4f6ff10fa0550e318c4ea7b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.706543;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_e3e65b71a91048329e6176a0.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.864000px;}
.ls8{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.504000px;}
.ls5{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.034560px;}
.lse{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.648000px;}
.lsc{letter-spacing:1.704000px;}
.ls12{letter-spacing:2.592000px;}
.ls18{letter-spacing:5.904000px;}
.ls1a{letter-spacing:6.624000px;}
.ls19{letter-spacing:8.784000px;}
.lsb{letter-spacing:16.704000px;}
.ls1b{letter-spacing:24.768000px;}
.ls16{letter-spacing:39.744000px;}
.ls17{letter-spacing:44.784000px;}
.ls15{letter-spacing:63.504000px;}
.ls14{letter-spacing:136.224000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.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(46,116,181);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.wsf{word-spacing:-22.608000px;}
.wse{word-spacing:-21.625920px;}
.wsc{word-spacing:-21.617280px;}
.wsd{word-spacing:-21.600000px;}
.ws11{word-spacing:-21.582720px;}
.ws4{word-spacing:-20.664000px;}
.ws6{word-spacing:-20.520000px;}
.ws5{word-spacing:-20.304000px;}
.wsb{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.ws9{word-spacing:-19.872000px;}
.ws12{word-spacing:-19.800000px;}
.ws3{word-spacing:-19.584000px;}
.ws10{word-spacing:-19.512000px;}
.ws13{word-spacing:-19.440000px;}
.ws7{word-spacing:-19.296000px;}
.ws14{word-spacing:-19.152000px;}
.ws16{word-spacing:-18.414720px;}
.ws15{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._37{margin-left:-17.820000px;}
._36{margin-left:-16.596000px;}
._39{margin-left:-15.372000px;}
._38{margin-left:-14.114880px;}
._34{margin-left:-13.056000px;}
._3d{margin-left:-12.033120px;}
._33{margin-left:-10.994880px;}
._3a{margin-left:-9.180000px;}
._3b{margin-left:-7.308000px;}
._35{margin-left:-5.604000px;}
._3c{margin-left:-4.500000px;}
._5{margin-left:-2.325120px;}
._3{margin-left:-1.008000px;}
._2{width:1.140000px;}
._2a{width:2.325120px;}
._26{width:3.864000px;}
._27{width:5.049120px;}
._21{width:6.264000px;}
._2e{width:7.488000px;}
._20{width:8.496000px;}
._31{width:9.612000px;}
._28{width:10.728000px;}
._1d{width:12.384000px;}
._60{width:13.392000px;}
._1c{width:14.400000px;}
._6{width:15.852000px;}
._14{width:17.484000px;}
._13{width:18.648000px;}
._22{width:21.144000px;}
._10{width:22.800000px;}
._2f{width:23.976000px;}
._12{width:25.128000px;}
._29{width:26.532000px;}
._f{width:27.768000px;}
._2b{width:29.208000px;}
._40{width:30.600000px;}
._16{width:31.824000px;}
._15{width:32.832000px;}
._17{width:34.260000px;}
._59{width:35.298240px;}
._18{width:36.360000px;}
._19{width:37.572000px;}
._3e{width:38.616000px;}
._a{width:39.780000px;}
._3f{width:41.064000px;}
._2d{width:42.192000px;}
._2c{width:43.320000px;}
._43{width:44.568000px;}
._45{width:46.512000px;}
._46{width:47.892000px;}
._30{width:49.368000px;}
._4c{width:50.400000px;}
._56{width:52.218240px;}
._4f{width:53.424000px;}
._52{width:54.477120px;}
._1e{width:55.800000px;}
._1f{width:57.096000px;}
._4e{width:58.593120px;}
._65{width:59.786880px;}
._64{width:60.809760px;}
._5f{width:62.145120px;}
._41{width:63.288000px;}
._66{width:64.313760px;}
._1b{width:65.337120px;}
._1a{width:66.816000px;}
._42{width:67.824000px;}
._53{width:69.240000px;}
._4a{width:71.136000px;}
._57{width:72.504000px;}
._61{width:74.160000px;}
._49{width:75.960000px;}
._32{width:77.567040px;}
._67{width:78.996000px;}
._48{width:80.604000px;}
._47{width:81.984000px;}
._9{width:84.036000px;}
._63{width:85.296000px;}
._84{width:86.352000px;}
._68{width:88.056000px;}
._72{width:89.112000px;}
._7c{width:90.537120px;}
._50{width:91.584000px;}
._5d{width:93.165120px;}
._5c{width:94.188000px;}
._23{width:96.048000px;}
._76{width:97.128000px;}
._75{width:98.280000px;}
._4d{width:99.576000px;}
._78{width:100.872000px;}
._77{width:102.168000px;}
._79{width:103.248000px;}
._7d{width:104.880000px;}
._80{width:106.236000px;}
._b{width:107.760000px;}
._6e{width:108.984000px;}
._7e{width:110.064000px;}
._6c{width:111.744000px;}
._6b{width:112.968000px;}
._58{width:114.120000px;}
._5e{width:115.608000px;}
._55{width:116.784000px;}
._54{width:118.020000px;}
._73{width:119.088000px;}
._74{width:120.168000px;}
._7f{width:121.608000px;}
._d{width:123.564000px;}
._85{width:125.064000px;}
._70{width:126.684000px;}
._6f{width:127.704000px;}
._62{width:129.108000px;}
._69{width:131.004000px;}
._5b{width:132.060000px;}
._5a{width:133.200000px;}
._6d{width:135.360000px;}
._6a{width:138.033120px;}
._25{width:139.872000px;}
._82{width:142.128000px;}
._81{width:143.460000px;}
._7a{width:150.048000px;}
._7b{width:151.356000px;}
._51{width:152.712000px;}
._44{width:154.056000px;}
._4{width:155.820000px;}
._24{width:159.816000px;}
._0{width:175.944000px;}
._71{width:177.552000px;}
._8{width:179.904000px;}
._4b{width:181.368000px;}
._e{width:184.044000px;}
._7{width:187.716000px;}
._c{width:191.856000px;}
._1{width:195.960000px;}
._83{width:209.712000px;}
._11{width:488.028000px;}
.fc6{color:rgb(5,99,193);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(46,116,181);}
.fc5{color:rgb(68,84,106);}
.fc3{color:rgb(43,43,43);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs6{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2a6{bottom:89.136000px;}
.y2c0{bottom:89.496000px;}
.y36d{bottom:91.296000px;}
.ye4{bottom:91.476000px;}
.y34f{bottom:91.836000px;}
.y245{bottom:92.556000px;}
.y287{bottom:93.276000px;}
.y68{bottom:93.636000px;}
.y300{bottom:94.176000px;}
.y1a5{bottom:95.436000px;}
.yd8{bottom:98.136000px;}
.y24d{bottom:98.496000px;}
.y20c{bottom:98.676000px;}
.y228{bottom:98.856000px;}
.y92{bottom:99.216000px;}
.y3a{bottom:99.396000px;}
.y1ec{bottom:101.016000px;}
.y1e1{bottom:101.736000px;}
.y178{bottom:102.276000px;}
.y24{bottom:103.536000px;}
.y340{bottom:103.716000px;}
.y1b8{bottom:105.696000px;}
.yca{bottom:106.056000px;}
.y71{bottom:106.776000px;}
.y12e{bottom:107.136000px;}
.y1f2{bottom:108.936000px;}
.y333{bottom:109.836000px;}
.y27c{bottom:111.276000px;}
.y238{bottom:111.456000px;}
.y4a{bottom:111.636000px;}
.y194{bottom:112.176000px;}
.y3d6{bottom:112.536000px;}
.y1cc{bottom:113.436000px;}
.y267{bottom:114.516000px;}
.y344{bottom:114.876000px;}
.y208{bottom:115.776000px;}
.yf7{bottom:116.136000px;}
.y1f9{bottom:116.676000px;}
.y394{bottom:116.856000px;}
.y322{bottom:117.216000px;}
.y271{bottom:119.736000px;}
.y39{bottom:120.276000px;}
.yad{bottom:120.636000px;}
.y244{bottom:123.516000px;}
.ye3{bottom:123.696000px;}
.y67{bottom:124.776000px;}
.y117{bottom:125.136000px;}
.y1a4{bottom:126.576000px;}
.y353{bottom:127.836000px;}
.y3b7{bottom:128.736000px;}
.yd7{bottom:129.276000px;}
.y13d{bottom:129.636000px;}
.y227{bottom:129.996000px;}
.y91{bottom:130.356000px;}
.y1eb{bottom:132.156000px;}
.y1e0{bottom:132.876000px;}
.y177{bottom:133.236000px;}
.y22e{bottom:134.136000px;}
.y23{bottom:134.676000px;}
.y164{bottom:135.396000px;}
.y3d5{bottom:136.296000px;}
.y1b7{bottom:136.836000px;}
.y70{bottom:137.736000px;}
.y2ef{bottom:137.916000px;}
.y12d{bottom:138.276000px;}
.y1f1{bottom:140.076000px;}
.y36c{bottom:140.256000px;}
.y1fe{bottom:140.796000px;}
.y38{bottom:140.976000px;}
.y27b{bottom:142.236000px;}
.y49{bottom:142.776000px;}
.y193{bottom:143.136000px;}
.y237{bottom:143.676000px;}
.y266{bottom:145.656000px;}
.y343{bottom:145.836000px;}
.yf6{bottom:147.276000px;}
.y2da{bottom:147.456000px;}
.y1f8{bottom:147.636000px;}
.y321{bottom:148.176000px;}
.y375{bottom:148.356000px;}
.y14b{bottom:150.150000px;}
.y293{bottom:150.870000px;}
.y2fb{bottom:151.230000px;}
.yac{bottom:151.770000px;}
.y33f{bottom:152.850000px;}
.y243{bottom:154.650000px;}
.ye2{bottom:154.830000px;}
.yc9{bottom:155.010000px;}
.y66{bottom:155.730000px;}
.y116{bottom:156.270000px;}
.y1a3{bottom:157.530000px;}
.y332{bottom:158.970000px;}
.y3d4{bottom:160.050000px;}
.yd6{bottom:160.230000px;}
.y13c{bottom:160.590000px;}
.y20b{bottom:160.770000px;}
.y226{bottom:160.950000px;}
.y90{bottom:161.310000px;}
.y37{bottom:161.670000px;}
.y1cb{bottom:162.570000px;}
.y1ea{bottom:163.110000px;}
.y1df{bottom:163.830000px;}
.y176{bottom:164.370000px;}
.y2ff{bottom:164.730000px;}
.y22d{bottom:165.270000px;}
.y22{bottom:165.630000px;}
.y163{bottom:166.350000px;}
.y3b6{bottom:167.610000px;}
.y1b6{bottom:167.790000px;}
.y6f{bottom:168.870000px;}
.y12c{bottom:169.230000px;}
.y2bf{bottom:169.590000px;}
.y1f0{bottom:171.030000px;}
.y36b{bottom:171.390000px;}
.y1fd{bottom:171.750000px;}
.y34e{bottom:171.930000px;}
.y27a{bottom:173.370000px;}
.y48{bottom:173.730000px;}
.y192{bottom:174.270000px;}
.y236{bottom:176.070000px;}
.y265{bottom:176.610000px;}
.y342{bottom:176.970000px;}
.yf9{bottom:177.870000px;}
.yf5{bottom:178.230000px;}
.y2d9{bottom:178.410000px;}
.y1f7{bottom:178.770000px;}
.y320{bottom:179.310000px;}
.y14a{bottom:181.110000px;}
.y292{bottom:181.830000px;}
.y2fa{bottom:182.370000px;}
.y3d3{bottom:183.990000px;}
.y242{bottom:185.610000px;}
.yc8{bottom:186.150000px;}
.y65{bottom:186.870000px;}
.ye1{bottom:187.050000px;}
.y115{bottom:187.230000px;}
.y1a2{bottom:188.670000px;}
.y331{bottom:189.930000px;}
.y2a4{bottom:190.830000px;}
.y183{bottom:191.370000px;}
.y13b{bottom:191.730000px;}
.y225{bottom:192.090000px;}
.y8f{bottom:192.450000px;}
.y1ca{bottom:193.530000px;}
.y36{bottom:194.070000px;}
.y393{bottom:194.610000px;}
.y2a2{bottom:194.970000px;}
.y22c{bottom:196.230000px;}
.y21{bottom:196.770000px;}
.y162{bottom:197.490000px;}
.y120{bottom:199.830000px;}
.y12b{bottom:200.370000px;}
.yab{bottom:200.730000px;}
.y33e{bottom:201.990000px;}
.y1ef{bottom:202.170000px;}
.y34d{bottom:203.070000px;}
.y279{bottom:204.330000px;}
.y47{bottom:204.870000px;}
.y191{bottom:205.230000px;}
.y3b5{bottom:206.310000px;}
.y288{bottom:207.390000px;}
.y3d2{bottom:207.750000px;}
.y235{bottom:208.290000px;}
.yd5{bottom:209.370000px;}
.y2d8{bottom:209.550000px;}
.y1f6{bottom:209.730000px;}
.y1e9{bottom:210.450000px;}
.y149{bottom:212.250000px;}
.y1de{bottom:212.970000px;}
.y175{bottom:213.330000px;}
.y1b5{bottom:216.930000px;}
.yc7{bottom:217.110000px;}
.y64{bottom:217.830000px;}
.y2ee{bottom:218.010000px;}
.y114{bottom:218.370000px;}
.ye0{bottom:219.270000px;}
.y1a1{bottom:219.630000px;}
.y36a{bottom:220.350000px;}
.y330{bottom:221.070000px;}
.y182{bottom:222.330000px;}
.y13a{bottom:222.690000px;}
.y20a{bottom:222.870000px;}
.y224{bottom:223.050000px;}
.y8e{bottom:223.410000px;}
.y30a{bottom:224.130000px;}
.y1c9{bottom:224.670000px;}
.y264{bottom:225.750000px;}
.y2a1{bottom:225.930000px;}
.y35{bottom:227.010000px;}
.y22b{bottom:227.370000px;}
.y20{bottom:227.730000px;}
.y31f{bottom:228.270000px;}
.y161{bottom:228.450000px;}
.y11f{bottom:230.970000px;}
.y12a{bottom:231.330000px;}
.y3d1{bottom:231.510000px;}
.y2be{bottom:231.690000px;}
.y33d{bottom:232.950000px;}
.y392{bottom:233.310000px;}
.y241{bottom:234.750000px;}
.y286{bottom:235.470000px;}
.y46{bottom:235.830000px;}
.y190{bottom:236.370000px;}
.y348{bottom:239.070000px;}
.y234{bottom:239.430000px;}
.yd4{bottom:240.330000px;}
.y2d7{bottom:240.510000px;}
.y24c{bottom:240.690000px;}
.yaa{bottom:240.870000px;}
.y148{bottom:243.210000px;}
.y2a3{bottom:243.930000px;}
.y174{bottom:244.470000px;}
.y3b4{bottom:244.650000px;}
.y374{bottom:246.450000px;}
.y1ee{bottom:247.350000px;}
.y1b4{bottom:247.890000px;}
.yc6{bottom:248.250000px;}
.y63{bottom:248.970000px;}
.y113{bottom:249.330000px;}
.ydf{bottom:250.410000px;}
.y1a0{bottom:250.770000px;}
.y294{bottom:251.490000px;}
.y34c{bottom:252.030000px;}
.y278{bottom:253.470000px;}
.y139{bottom:253.830000px;}
.y223{bottom:254.190000px;}
.y8d{bottom:254.550000px;}
.y3d0{bottom:255.270000px;}
.y1c8{bottom:255.630000px;}
.y263{bottom:256.710000px;}
.y341{bottom:257.070000px;}
.y1fc{bottom:258.330000px;}
.y1f{bottom:258.870000px;}
.y31e{bottom:259.410000px;}
.y160{bottom:259.590000px;}
.y34{bottom:260.130000px;}
.y270{bottom:261.930000px;}
.y250{bottom:262.470000px;}
.y2bd{bottom:262.830000px;}
.y33c{bottom:263.910000px;}
.y2ed{bottom:265.170000px;}
.y240{bottom:265.710000px;}
.y3b3{bottom:266.430000px;}
.y45{bottom:266.970000px;}
.y18f{bottom:267.330000px;}
.y369{bottom:269.490000px;}
.y1e8{bottom:269.850000px;}
.y32f{bottom:270.030000px;}
.y233{bottom:270.390000px;}
.y1dd{bottom:270.930000px;}
.yd3{bottom:271.470000px;}
.y2d6{bottom:271.650000px;}
.ya9{bottom:271.830000px;}
.y309{bottom:273.315000px;}
.y147{bottom:274.395000px;}
.y2a0{bottom:275.115000px;}
.y173{bottom:275.475000px;}
.y2c1{bottom:278.535000px;}
.y1b3{bottom:279.075000px;}
.yc5{bottom:279.255000px;}
.y6e{bottom:279.975000px;}
.y112{bottom:280.515000px;}
.y391{bottom:281.055000px;}
.y19f{bottom:281.775000px;}
.yde{bottom:282.675000px;}
.y34b{bottom:283.215000px;}
.y277{bottom:284.475000px;}
.y138{bottom:284.835000px;}
.y209{bottom:285.015000px;}
.y222{bottom:285.195000px;}
.y8c{bottom:285.555000px;}
.y1c7{bottom:286.815000px;}
.y262{bottom:287.895000px;}
.y3b2{bottom:288.255000px;}
.y1fb{bottom:289.515000px;}
.y1e{bottom:289.875000px;}
.y15f{bottom:290.595000px;}
.y33{bottom:293.115000px;}
.y2a5{bottom:293.475000px;}
.y2bc{bottom:293.835000px;}
.y373{bottom:295.635000px;}
.y23f{bottom:296.895000px;}
.y62{bottom:297.975000px;}
.y18e{bottom:298.515000px;}
.y368{bottom:300.495000px;}
.y1e7{bottom:300.855000px;}
.y32e{bottom:301.215000px;}
.y232{bottom:301.575000px;}
.y1dc{bottom:302.115000px;}
.yd2{bottom:302.475000px;}
.y2d5{bottom:302.655000px;}
.y24b{bottom:302.835000px;}
.ya8{bottom:303.015000px;}
.y146{bottom:305.355000px;}
.y29f{bottom:306.075000px;}
.y172{bottom:306.615000px;}
.y31d{bottom:308.415000px;}
.y2f9{bottom:309.675000px;}
.y1b2{bottom:310.035000px;}
.y3b1{bottom:310.215000px;}
.yc4{bottom:310.395000px;}
.y6d{bottom:311.115000px;}
.y111{bottom:311.475000px;}
.y19e{bottom:312.915000px;}
.y33b{bottom:313.455000px;}
.y276{bottom:315.615000px;}
.y2ec{bottom:315.795000px;}
.y44{bottom:315.975000px;}
.y229{bottom:318.675000px;}
.y261{bottom:318.855000px;}
.y347{bottom:319.215000px;}
.y390{bottom:319.755000px;}
.y2c6{bottom:320.115000px;}
.y1fa{bottom:320.475000px;}
.y1d{bottom:321.015000px;}
.y15e{bottom:321.735000px;}
.y308{bottom:322.275000px;}
.ydd{bottom:322.815000px;}
.y291{bottom:324.075000px;}
.y2bb{bottom:324.975000px;}
.y8b{bottom:325.695000px;}
.y32{bottom:326.055000px;}
.y3cf{bottom:326.775000px;}
.y23e{bottom:327.855000px;}
.y61{bottom:329.115000px;}
.y18d{bottom:329.475000px;}
.y367{bottom:331.635000px;}
.y1e6{bottom:331.995000px;}
.y32d{bottom:332.175000px;}
.y221{bottom:332.355000px;}
.y1db{bottom:333.075000px;}
.yf4{bottom:333.615000px;}
.y2d4{bottom:333.795000px;}
.ya7{bottom:333.975000px;}
.y1c6{bottom:335.775000px;}
.y145{bottom:336.495000px;}
.y29e{bottom:337.215000px;}
.y171{bottom:337.575000px;}
.y31c{bottom:339.555000px;}
.y1b1{bottom:341.175000px;}
.y207{bottom:341.355000px;}
.y11e{bottom:342.075000px;}
.y110{bottom:342.615000px;}
.y38f{bottom:343.515000px;}
.y372{bottom:344.595000px;}
.y33a{bottom:345.135000px;}
.y275{bottom:346.575000px;}
.y137{bottom:346.935000px;}
.y43{bottom:347.115000px;}
.y231{bottom:348.735000px;}
.y184{bottom:349.635000px;}
.y352{bottom:350.175000px;}
.y3ce{bottom:350.535000px;}
.y2c5{bottom:351.075000px;}
.yd1{bottom:351.615000px;}
.y1c{bottom:351.975000px;}
.y15d{bottom:352.695000px;}
.ydc{bottom:353.775000px;}
.y290{bottom:355.215000px;}
.y2ba{bottom:355.935000px;}
.y8a{bottom:356.655000px;}
.y31{bottom:358.995000px;}
.yc3{bottom:359.355000px;}
.y60{bottom:360.075000px;}
.y18c{bottom:360.615000px;}
.y19d{bottom:361.875000px;}
.y1e5{bottom:362.955000px;}
.y34a{bottom:363.315000px;}
.y1da{bottom:364.215000px;}
.yf3{bottom:364.575000px;}
.y2d3{bottom:364.755000px;}
.y24a{bottom:364.935000px;}
.ya6{bottom:365.115000px;}
.y1c5{bottom:366.915000px;}
.y144{bottom:367.455000px;}
.y260{bottom:367.995000px;}
.y29d{bottom:368.175000px;}
.y170{bottom:368.715000px;}
.y2f8{bottom:369.075000px;}
.y31b{bottom:370.515000px;}
.y307{bottom:371.415000px;}
.y1b0{bottom:372.135000px;}
.y206{bottom:372.495000px;}
.y11d{bottom:373.215000px;}
.y129{bottom:373.575000px;}
.y3cd{bottom:374.475000px;}
.y274{bottom:377.715000px;}
.y42{bottom:378.075000px;}
.y366{bottom:380.595000px;}
.y2fd{bottom:380.775000px;}
.y32c{bottom:381.315000px;}
.y2c4{bottom:382.215000px;}
.yd0{bottom:382.575000px;}
.y1b{bottom:383.115000px;}
.ydb{bottom:384.915000px;}
.y28f{bottom:386.175000px;}
.y2b9{bottom:387.075000px;}
.y89{bottom:387.795000px;}
.y2fc{bottom:389.775000px;}
.y23d{bottom:389.955000px;}
.yc2{bottom:390.495000px;}
.y3b0{bottom:390.675000px;}
.y5f{bottom:391.215000px;}
.y10f{bottom:391.575000px;}
.y30{bottom:391.935000px;}
.y19c{bottom:393.015000px;}
.y371{bottom:393.735000px;}
.y339{bottom:394.275000px;}
.y1d9{bottom:395.175000px;}
.yf2{bottom:395.715000px;}
.y2d2{bottom:395.895000px;}
.ya5{bottom:396.075000px;}
.y1c4{bottom:397.875000px;}
.y143{bottom:398.595000px;}
.y22a{bottom:398.775000px;}
.y25f{bottom:398.955000px;}
.y29c{bottom:399.315000px;}
.y16f{bottom:399.675000px;}
.y2f7{bottom:400.215000px;}
.y15c{bottom:401.835000px;}
.y1af{bottom:403.275000px;}
.y205{bottom:403.455000px;}
.y11c{bottom:404.175000px;}
.y230{bottom:404.355000px;}
.y128{bottom:404.715000px;}
.y285{bottom:408.675000px;}
.y41{bottom:409.215000px;}
.y365{bottom:411.735000px;}
.y32b{bottom:412.275000px;}
.y3af{bottom:412.455000px;}
.y2c3{bottom:413.175000px;}
.y2eb{bottom:413.355000px;}
.ycf{bottom:413.715000px;}
.y1a{bottom:414.075000px;}
.y1e4{bottom:414.615000px;}
.y38e{bottom:414.975000px;}
.y28e{bottom:417.315000px;}
.y88{bottom:418.755000px;}
.y31a{bottom:419.655000px;}
.y306{bottom:420.375000px;}
.y23c{bottom:420.915000px;}
.yc1{bottom:421.455000px;}
.y5e{bottom:422.175000px;}
.y10e{bottom:422.715000px;}
.y220{bottom:422.895000px;}
.y19b{bottom:423.975000px;}
.y2f{bottom:424.875000px;}
.y338{bottom:425.415000px;}
.y1d8{bottom:426.315000px;}
.y181{bottom:426.675000px;}
.y2d1{bottom:426.855000px;}
.y136{bottom:427.035000px;}
.ya4{bottom:427.215000px;}
.y1c3{bottom:429.015000px;}
.y25e{bottom:430.095000px;}
.y346{bottom:430.275000px;}
.y2f6{bottom:431.175000px;}
.y15b{bottom:432.795000px;}
.yda{bottom:433.875000px;}
.y1ae{bottom:434.235000px;}
.y204{bottom:434.595000px;}
.y11b{bottom:435.315000px;}
.y127{bottom:435.675000px;}
.y2b8{bottom:436.035000px;}
.y3cc{bottom:436.935000px;}
.y38d{bottom:438.735000px;}
.y284{bottom:439.635000px;}
.y40{bottom:440.175000px;}
.y364{bottom:442.695000px;}
.y32a{bottom:443.415000px;}
.y2c2{bottom:444.315000px;}
.y2ea{bottom:444.495000px;}
.yf1{bottom:444.675000px;}
.y19{bottom:445.215000px;}
.y142{bottom:445.755000px;}
.y28d{bottom:448.275000px;}
.y16e{bottom:448.635000px;}
.y319{bottom:450.615000px;}
.y23b{bottom:452.055000px;}
.yc0{bottom:452.595000px;}
.y5d{bottom:453.315000px;}
.y10d{bottom:453.675000px;}
.y21f{bottom:454.035000px;}
.y19a{bottom:455.115000px;}
.y180{bottom:457.635000px;}
.y2e{bottom:457.815000px;}
.y2d0{bottom:457.995000px;}
.ya3{bottom:458.175000px;}
.y87{bottom:458.895000px;}
.y1c2{bottom:459.975000px;}
.yce{bottom:460.875000px;}
.y25d{bottom:461.055000px;}
.y351{bottom:461.415000px;}
.y2f5{bottom:462.315000px;}
.y15a{bottom:463.935000px;}
.y1ad{bottom:465.375000px;}
.y26f{bottom:466.275000px;}
.y126{bottom:466.635000px;}
.y2b7{bottom:467.175000px;}
.y305{bottom:469.515000px;}
.y283{bottom:470.775000px;}
.y3ae{bottom:471.135000px;}
.y3f{bottom:471.315000px;}
.y18b{bottom:471.675000px;}
.y370{bottom:473.835000px;}
.y249{bottom:474.195000px;}
.y329{bottom:474.375000px;}
.y1d7{bottom:475.275000px;}
.y2e9{bottom:475.455000px;}
.yf0{bottom:475.635000px;}
.y18{bottom:476.175000px;}
.y38c{bottom:477.615000px;}
.yd9{bottom:479.055000px;}
.y28c{bottom:479.415000px;}
.y16d{bottom:479.775000px;}
.ybf{bottom:483.555000px;}
.y5c{bottom:484.275000px;}
.y10c{bottom:484.635000px;}
.y21e{bottom:484.995000px;}
.y199{bottom:486.075000px;}
.y17f{bottom:488.775000px;}
.y135{bottom:489.135000px;}
.y1f5{bottom:489.315000px;}
.y86{bottom:489.855000px;}
.y2d{bottom:490.755000px;}
.y1c1{bottom:491.115000px;}
.y363{bottom:491.835000px;}
.y349{bottom:492.375000px;}
.y3ad{bottom:492.915000px;}
.y2f4{bottom:493.275000px;}
.y159{bottom:494.895000px;}
.y26e{bottom:497.415000px;}
.y24f{bottom:497.775000px;}
.y2b6{bottom:498.135000px;}
.ya2{bottom:498.315000px;}
.y318{bottom:499.755000px;}
.y38b{bottom:501.375000px;}
.y282{bottom:501.735000px;}
.y3e{bottom:502.275000px;}
.y18a{bottom:502.635000px;}
.y2fe{bottom:504.975000px;}
.y141{bottom:505.155000px;}
.y337{bottom:505.515000px;}
.y1d6{bottom:506.415000px;}
.y2e8{bottom:506.595000px;}
.yef{bottom:506.775000px;}
.y2cf{bottom:506.955000px;}
.y17{bottom:507.315000px;}
.y3cb{bottom:508.395000px;}
.y25c{bottom:510.015000px;}
.y29b{bottom:510.375000px;}
.y350{bottom:510.555000px;}
.y16c{bottom:510.735000px;}
.y1ac{bottom:514.335000px;}
.ybe{bottom:514.695000px;}
.y5b{bottom:515.415000px;}
.y10b{bottom:515.775000px;}
.y21d{bottom:516.135000px;}
.y198{bottom:517.035000px;}
.y2a7{bottom:517.935000px;}
.y304{bottom:518.475000px;}
.y17e{bottom:519.735000px;}
.ycd{bottom:520.275000px;}
.y85{bottom:520.815000px;}
.y1c0{bottom:522.075000px;}
.y362{bottom:522.795000px;}
.y328{bottom:523.515000px;}
.y2c{bottom:523.695000px;}
.y2f3{bottom:524.415000px;}
.y248{bottom:524.775000px;}
.y38a{bottom:525.135000px;}
.y28b{bottom:528.375000px;}
.y24e{bottom:528.735000px;}
.ya1{bottom:529.275000px;}
.y317{bottom:530.715000px;}
.y3ca{bottom:532.155000px;}
.y281{bottom:532.875000px;}
.yf8{bottom:533.415000px;}
.y1ed{bottom:533.595000px;}
.y189{bottom:533.775000px;}
.y140{bottom:536.295000px;}
.y3ac{bottom:536.475000px;}
.y1d5{bottom:537.375000px;}
.y2e7{bottom:537.555000px;}
.yee{bottom:537.735000px;}
.y2ce{bottom:538.095000px;}
.y16{bottom:538.275000px;}
.y25b{bottom:541.155000px;}
.y29a{bottom:541.515000px;}
.y16b{bottom:541.875000px;}
.y158{bottom:544.035000px;}
.y1ab{bottom:545.475000px;}
.ybd{bottom:545.655000px;}
.y6c{bottom:546.375000px;}
.y10a{bottom:546.735000px;}
.y21c{bottom:547.095000px;}
.y197{bottom:548.175000px;}
.y389{bottom:549.075000px;}
.y17d{bottom:550.875000px;}
.y3d{bottom:551.415000px;}
.y84{bottom:551.955000px;}
.y1bf{bottom:553.035000px;}
.y361{bottom:553.935000px;}
.y327{bottom:554.475000px;}
.y2f2{bottom:555.375000px;}
.y247{bottom:555.765000px;}
.y3c9{bottom:556.125000px;}
.y2b{bottom:556.845000px;}
.y3ab{bottom:558.285000px;}
.y28a{bottom:559.545000px;}
.y2b5{bottom:560.265000px;}
.ya0{bottom:560.445000px;}
.y316{bottom:561.705000px;}
.y5a{bottom:564.405000px;}
.y188{bottom:564.765000px;}
.y273{bottom:567.105000px;}
.y13f{bottom:567.285000px;}
.y303{bottom:567.645000px;}
.y1d4{bottom:568.545000px;}
.y2e6{bottom:568.725000px;}
.yed{bottom:568.905000px;}
.y2cd{bottom:569.085000px;}
.y134{bottom:569.265000px;}
.y15{bottom:569.445000px;}
.y345{bottom:572.505000px;}
.y388{bottom:572.865000px;}
.y157{bottom:575.025000px;}
.y1aa{bottom:576.465000px;}
.ybc{bottom:576.825000px;}
.y6b{bottom:577.545000px;}
.y109{bottom:577.905000px;}
.y21b{bottom:578.265000px;}
.y196{bottom:579.165000px;}
.y3c8{bottom:579.885000px;}
.y3aa{bottom:580.245000px;}
.y17c{bottom:581.865000px;}
.y3c{bottom:582.405000px;}
.y83{bottom:582.945000px;}
.y1be{bottom:584.205000px;}
.y36f{bottom:584.925000px;}
.y272{bottom:585.105000px;}
.y336{bottom:585.645000px;}
.y2f1{bottom:586.545000px;}
.y1f4{bottom:586.905000px;}
.y16a{bottom:589.065000px;}
.y2a{bottom:589.785000px;}
.y25a{bottom:590.145000px;}
.y289{bottom:590.505000px;}
.y9f{bottom:591.405000px;}
.y59{bottom:595.545000px;}
.y22f{bottom:595.725000px;}
.y187{bottom:595.905000px;}
.y387{bottom:596.625000px;}
.y1d3{bottom:599.505000px;}
.y2e5{bottom:599.685000px;}
.y216{bottom:599.865000px;}
.y2cc{bottom:600.225000px;}
.y14{bottom:600.405000px;}
.y3a9{bottom:602.025000px;}
.y360{bottom:602.925000px;}
.y326{bottom:603.645000px;}
.y1a9{bottom:607.605000px;}
.y203{bottom:607.785000px;}
.y11a{bottom:608.505000px;}
.y108{bottom:608.865000px;}
.y315{bottom:610.845000px;}
.y280{bottom:613.005000px;}
.y3b{bottom:613.545000px;}
.y302{bottom:616.605000px;}
.y2f0{bottom:617.505000px;}
.yec{bottom:617.865000px;}
.y13e{bottom:618.945000px;}
.y386{bottom:620.385000px;}
.y29{bottom:621.105000px;}
.y259{bottom:621.285000px;}
.y299{bottom:621.645000px;}
.y9e{bottom:622.545000px;}
.y82{bottom:623.085000px;}
.y3a8{bottom:623.805000px;}
.y156{bottom:624.165000px;}
.y195{bottom:624.345000px;}
.ybb{bottom:625.785000px;}
.y58{bottom:626.505000px;}
.y186{bottom:626.865000px;}
.y3c7{bottom:627.405000px;}
.y17b{bottom:629.205000px;}
.y21a{bottom:629.745000px;}
.y1d2{bottom:630.645000px;}
.y2e4{bottom:630.825000px;}
.y215{bottom:631.005000px;}
.y2cb{bottom:631.185000px;}
.y133{bottom:631.365000px;}
.y13{bottom:631.545000px;}
.y1bd{bottom:633.165000px;}
.y35f{bottom:634.065000px;}
.y325{bottom:634.605000px;}
.y202{bottom:638.925000px;}
.y1e3{bottom:639.645000px;}
.y107{bottom:640.005000px;}
.y2b4{bottom:640.365000px;}
.y314{bottom:641.805000px;}
.ycc{bottom:644.505000px;}
.y169{bottom:648.645000px;}
.yeb{bottom:649.005000px;}
.y3c6{bottom:651.345000px;}
.y28{bottom:652.245000px;}
.y298{bottom:652.605000px;}
.y9d{bottom:653.505000px;}
.y81{bottom:654.045000px;}
.y155{bottom:655.125000px;}
.y1a8{bottom:656.565000px;}
.yba{bottom:656.925000px;}
.y57{bottom:657.645000px;}
.y185{bottom:658.005000px;}
.y385{bottom:659.265000px;}
.y3a7{bottom:660.705000px;}
.y1d1{bottom:661.605000px;}
.y2e3{bottom:661.785000px;}
.y214{bottom:661.965000px;}
.y2ca{bottom:662.325000px;}
.y12{bottom:662.505000px;}
.y35e{bottom:665.025000px;}
.y301{bottom:665.745000px;}
.y258{bottom:670.245000px;}
.y1e2{bottom:670.605000px;}
.y125{bottom:670.965000px;}
.y2b3{bottom:671.505000px;}
.y313{bottom:672.945000px;}
.y3c5{bottom:675.105000px;}
.ycb{bottom:675.645000px;}
.y23a{bottom:678.165000px;}
.y132{bottom:678.525000px;}
.y168{bottom:679.605000px;}
.yea{bottom:679.965000px;}
.y3a6{bottom:682.485000px;}
.y384{bottom:683.025000px;}
.y297{bottom:683.745000px;}
.y9c{bottom:684.645000px;}
.y80{bottom:685.185000px;}
.y27{bottom:685.725000px;}
.y154{bottom:686.265000px;}
.yb9{bottom:687.885000px;}
.y6a{bottom:688.605000px;}
.y106{bottom:688.965000px;}
.y1bc{bottom:691.305000px;}
.y2e2{bottom:692.925000px;}
.y213{bottom:693.105000px;}
.y11{bottom:693.645000px;}
.y335{bottom:696.705000px;}
.y3c4{bottom:698.865000px;}
.y219{bottom:699.405000px;}
.y257{bottom:701.385000px;}
.y26d{bottom:701.745000px;}
.y124{bottom:702.105000px;}
.y2b2{bottom:702.465000px;}
.y3a5{bottom:704.265000px;}
.y56{bottom:706.605000px;}
.y383{bottom:706.785000px;}
.y239{bottom:709.305000px;}
.y167{bottom:710.745000px;}
.ye9{bottom:711.105000px;}
.y2c9{bottom:711.285000px;}
.y35d{bottom:714.165000px;}
.y1a7{bottom:714.705000px;}
.y9b{bottom:715.605000px;}
.y7f{bottom:716.145000px;}
.y153{bottom:717.225000px;}
.yb8{bottom:719.025000px;}
.y69{bottom:719.745000px;}
.y105{bottom:720.105000px;}
.y26{bottom:721.905000px;}
.y1bb{bottom:722.265000px;}
.y27f{bottom:724.065000px;}
.y10{bottom:724.605000px;}
.y3a4{bottom:726.045000px;}
.y218{bottom:730.545000px;}
.y382{bottom:730.725000px;}
.y256{bottom:732.345000px;}
.y26c{bottom:732.705000px;}
.y2b1{bottom:733.605000px;}
.y55{bottom:737.745000px;}
.y131{bottom:738.105000px;}
.y166{bottom:741.705000px;}
.y2e1{bottom:741.885000px;}
.ye8{bottom:742.065000px;}
.y2c8{bottom:742.425000px;}
.y35c{bottom:745.125000px;}
.y36e{bottom:745.665000px;}
.y324{bottom:745.845000px;}
.y9a{bottom:746.745000px;}
.y7e{bottom:747.285000px;}
.y3a3{bottom:747.825000px;}
.y152{bottom:748.365000px;}
.yb7{bottom:749.985000px;}
.y119{bottom:750.705000px;}
.y104{bottom:751.065000px;}
.y312{bottom:753.045000px;}
.y381{bottom:754.485000px;}
.yf{bottom:755.745000px;}
.y1a6{bottom:759.705000px;}
.y3c3{bottom:761.505000px;}
.y255{bottom:763.485000px;}
.y26b{bottom:763.845000px;}
.y1ba{bottom:767.445000px;}
.y54{bottom:768.705000px;}
.y130{bottom:769.065000px;}
.y3a2{bottom:769.785000px;}
.y27e{bottom:771.405000px;}
.y165{bottom:772.845000px;}
.y2e0{bottom:773.025000px;}
.ye7{bottom:773.205000px;}
.y217{bottom:775.545000px;}
.y334{bottom:776.805000px;}
.y99{bottom:777.705000px;}
.y7d{bottom:778.245000px;}
.y151{bottom:779.325000px;}
.yb6{bottom:781.125000px;}
.y118{bottom:781.845000px;}
.y103{bottom:782.205000px;}
.y2b0{bottom:782.565000px;}
.y311{bottom:784.005000px;}
.y3c2{bottom:785.265000px;}
.ye{bottom:786.705000px;}
.y2c7{bottom:787.425000px;}
.y1f3{bottom:789.405000px;}
.y3a1{bottom:791.565000px;}
.y380{bottom:793.185000px;}
.y35b{bottom:794.265000px;}
.y254{bottom:794.445000px;}
.y296{bottom:794.805000px;}
.y53{bottom:799.845000px;}
.y12f{bottom:800.205000px;}
.y1d0{bottom:803.805000px;}
.y2df{bottom:803.985000px;}
.ye6{bottom:804.165000px;}
.y98{bottom:808.845000px;}
.y3c1{bottom:809.025000px;}
.y150{bottom:810.465000px;}
.yb5{bottom:812.085000px;}
.y17a{bottom:812.805000px;}
.y123{bottom:813.165000px;}
.y3a0{bottom:813.345000px;}
.y2af{bottom:813.705000px;}
.y37f{bottom:817.125000px;}
.yd{bottom:817.845000px;}
.y7c{bottom:818.385000px;}
.y246{bottom:820.365000px;}
.y35a{bottom:825.225000px;}
.y253{bottom:825.585000px;}
.y295{bottom:825.945000px;}
.y201{bottom:828.285000px;}
.y52{bottom:830.805000px;}
.y102{bottom:831.165000px;}
.y3c0{bottom:832.965000px;}
.y310{bottom:833.505000px;}
.y1cf{bottom:834.945000px;}
.y39f{bottom:835.125000px;}
.y212{bottom:835.305000px;}
.y97{bottom:839.850000px;}
.y37e{bottom:840.930000px;}
.y14f{bottom:841.470000px;}
.yb4{bottom:843.270000px;}
.y179{bottom:843.990000px;}
.y122{bottom:844.350000px;}
.y2ae{bottom:844.710000px;}
.yc{bottom:848.850000px;}
.y7b{bottom:849.390000px;}
.ye5{bottom:851.550000px;}
.y2de{bottom:852.990000px;}
.y3bf{bottom:856.770000px;}
.y323{bottom:856.950000px;}
.y51{bottom:861.990000px;}
.y101{bottom:862.350000px;}
.y37d{bottom:864.690000px;}
.y30f{bottom:864.870000px;}
.y1ce{bottom:865.950000px;}
.y211{bottom:866.310000px;}
.y96{bottom:870.990000px;}
.y39e{bottom:872.070000px;}
.y14e{bottom:872.610000px;}
.y252{bottom:872.790000px;}
.y359{bottom:874.410000px;}
.y1b9{bottom:874.950000px;}
.y121{bottom:875.310000px;}
.y2ad{bottom:875.850000px;}
.yb{bottom:879.990000px;}
.y7a{bottom:880.530000px;}
.y2dd{bottom:885.390000px;}
.y200{bottom:887.730000px;}
.yb3{bottom:890.430000px;}
.y50{bottom:892.950000px;}
.y100{bottom:893.310000px;}
.y39d{bottom:893.850000px;}
.y30e{bottom:895.830000px;}
.y210{bottom:897.450000px;}
.y95{bottom:901.950000px;}
.y37c{bottom:903.570000px;}
.y3be{bottom:904.290000px;}
.y358{bottom:905.370000px;}
.y26a{bottom:905.910000px;}
.y2ac{bottom:906.810000px;}
.ya{bottom:910.950000px;}
.y79{bottom:911.490000px;}
.y27d{bottom:913.470000px;}
.y1cd{bottom:914.910000px;}
.y39c{bottom:915.630000px;}
.y2dc{bottom:916.350000px;}
.y1ff{bottom:918.870000px;}
.y251{bottom:921.390000px;}
.y14d{bottom:921.570000px;}
.y4f{bottom:923.910000px;}
.yff{bottom:924.450000px;}
.y37b{bottom:927.330000px;}
.y3bd{bottom:928.050000px;}
.y20f{bottom:928.410000px;}
.y94{bottom:932.910000px;}
.y269{bottom:937.050000px;}
.y39b{bottom:937.590000px;}
.y2ab{bottom:937.950000px;}
.y9{bottom:941.910000px;}
.y78{bottom:942.630000px;}
.y30d{bottom:944.970000px;}
.y2db{bottom:948.570000px;}
.yb2{bottom:949.830000px;}
.y3bc{bottom:951.990000px;}
.y357{bottom:954.510000px;}
.y4e{bottom:955.050000px;}
.yfe{bottom:955.410000px;}
.y39a{bottom:959.370000px;}
.y20e{bottom:959.550000px;}
.y93{bottom:964.050000px;}
.y37a{bottom:966.210000px;}
.y14c{bottom:966.750000px;}
.y268{bottom:968.010000px;}
.y2aa{bottom:968.910000px;}
.y8{bottom:973.050000px;}
.y77{bottom:973.590000px;}
.y3bb{bottom:975.750000px;}
.yb1{bottom:980.970000px;}
.y399{bottom:981.150000px;}
.y356{bottom:985.470000px;}
.y4d{bottom:986.010000px;}
.yfd{bottom:986.550000px;}
.y30c{bottom:993.930000px;}
.y3ba{bottom:999.510000px;}
.y2a9{bottom:1000.050000px;}
.y398{bottom:1002.930000px;}
.y7{bottom:1004.010000px;}
.y76{bottom:1004.730000px;}
.y379{bottom:1004.910000px;}
.y20d{bottom:1006.710000px;}
.yb0{bottom:1011.930000px;}
.y355{bottom:1016.610000px;}
.y4c{bottom:1017.150000px;}
.yfc{bottom:1017.510000px;}
.y397{bottom:1024.710000px;}
.y378{bottom:1028.670000px;}
.y6{bottom:1035.150000px;}
.y75{bottom:1035.690000px;}
.y3b9{bottom:1038.390000px;}
.yaf{bottom:1043.070000px;}
.y2a8{bottom:1047.210000px;}
.y4b{bottom:1048.110000px;}
.yfb{bottom:1048.650000px;}
.y74{bottom:1053.330000px;}
.y396{bottom:1062.150000px;}
.y30b{bottom:1063.410000px;}
.y354{bottom:1065.930000px;}
.y5{bottom:1066.110000px;}
.y377{bottom:1067.550000px;}
.y3b8{bottom:1077.090000px;}
.y73{bottom:1092.030000px;}
.yae{bottom:1094.550000px;}
.yfa{bottom:1095.810000px;}
.y4{bottom:1097.250000px;}
.y376{bottom:1101.030000px;}
.y395{bottom:1139.760000px;}
.y3{bottom:1151.640000px;}
.y72{bottom:1184.220000px;}
.y25{bottom:1204.920000px;}
.y2{bottom:1225.620000px;}
.y1{bottom:1246.320000px;}
.h6{height:3.926250px;}
.h4{height:49.113281px;}
.h8{height:61.910156px;}
.h9{height:69.086250px;}
.h2{height:75.093750px;}
.h7{height:81.101250px;}
.h3{height:87.859687px;}
.h5{height:99.874688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:106.416000px;}
.x1c{left:133.236000px;}
.x2{left:148.896000px;}
.x1d{left:159.870000px;}
.x8{left:166.890000px;}
.x13{left:175.890000px;}
.x18{left:192.270000px;}
.x9{left:202.890000px;}
.x1b{left:204.150000px;}
.xb{left:229.350000px;}
.xc{left:256.350000px;}
.x17{left:283.890000px;}
.x4{left:353.415000px;}
.x6{left:364.935000px;}
.x3{left:397.335000px;}
.x5{left:478.335000px;}
.xa{left:616.785000px;}
.x12{left:659.445000px;}
.x11{left:673.125000px;}
.x15{left:682.305000px;}
.xe{left:701.205000px;}
.x16{left:724.830000px;}
.xf{left:744.990000px;}
.x14{left:770.010000px;}
.x19{left:777.930000px;}
.x10{left:786.750000px;}
.xd{left:788.010000px;}
.x7{left:797.910000px;}
.x1{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.448000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.030720pt;}
.lse{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.576000pt;}
.lsc{letter-spacing:1.514667pt;}
.ls12{letter-spacing:2.304000pt;}
.ls18{letter-spacing:5.248000pt;}
.ls1a{letter-spacing:5.888000pt;}
.ls19{letter-spacing:7.808000pt;}
.lsb{letter-spacing:14.848000pt;}
.ls1b{letter-spacing:22.016000pt;}
.ls16{letter-spacing:35.328000pt;}
.ls17{letter-spacing:39.808000pt;}
.ls15{letter-spacing:56.448000pt;}
.ls14{letter-spacing:121.088000pt;}
.wsa{word-spacing:-64.000000pt;}
.wsf{word-spacing:-20.096000pt;}
.wse{word-spacing:-19.223040pt;}
.wsc{word-spacing:-19.215360pt;}
.wsd{word-spacing:-19.200000pt;}
.ws11{word-spacing:-19.184640pt;}
.ws4{word-spacing:-18.368000pt;}
.ws6{word-spacing:-18.240000pt;}
.ws5{word-spacing:-18.048000pt;}
.wsb{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.ws9{word-spacing:-17.664000pt;}
.ws12{word-spacing:-17.600000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws10{word-spacing:-17.344000pt;}
.ws13{word-spacing:-17.280000pt;}
.ws7{word-spacing:-17.152000pt;}
.ws14{word-spacing:-17.024000pt;}
.ws16{word-spacing:-16.368640pt;}
.ws15{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._37{margin-left:-15.840000pt;}
._36{margin-left:-14.752000pt;}
._39{margin-left:-13.664000pt;}
._38{margin-left:-12.546560pt;}
._34{margin-left:-11.605333pt;}
._3d{margin-left:-10.696107pt;}
._33{margin-left:-9.773227pt;}
._3a{margin-left:-8.160000pt;}
._3b{margin-left:-6.496000pt;}
._35{margin-left:-4.981333pt;}
._3c{margin-left:-4.000000pt;}
._5{margin-left:-2.066773pt;}
._3{margin-left:-0.896000pt;}
._2{width:1.013333pt;}
._2a{width:2.066773pt;}
._26{width:3.434667pt;}
._27{width:4.488107pt;}
._21{width:5.568000pt;}
._2e{width:6.656000pt;}
._20{width:7.552000pt;}
._31{width:8.544000pt;}
._28{width:9.536000pt;}
._1d{width:11.008000pt;}
._60{width:11.904000pt;}
._1c{width:12.800000pt;}
._6{width:14.090667pt;}
._14{width:15.541333pt;}
._13{width:16.576000pt;}
._22{width:18.794667pt;}
._10{width:20.266667pt;}
._2f{width:21.312000pt;}
._12{width:22.336000pt;}
._29{width:23.584000pt;}
._f{width:24.682667pt;}
._2b{width:25.962667pt;}
._40{width:27.200000pt;}
._16{width:28.288000pt;}
._15{width:29.184000pt;}
._17{width:30.453333pt;}
._59{width:31.376213pt;}
._18{width:32.320000pt;}
._19{width:33.397333pt;}
._3e{width:34.325333pt;}
._a{width:35.360000pt;}
._3f{width:36.501333pt;}
._2d{width:37.504000pt;}
._2c{width:38.506667pt;}
._43{width:39.616000pt;}
._45{width:41.344000pt;}
._46{width:42.570667pt;}
._30{width:43.882667pt;}
._4c{width:44.800000pt;}
._56{width:46.416213pt;}
._4f{width:47.488000pt;}
._52{width:48.424107pt;}
._1e{width:49.600000pt;}
._1f{width:50.752000pt;}
._4e{width:52.082773pt;}
._65{width:53.143893pt;}
._64{width:54.053120pt;}
._5f{width:55.240107pt;}
._41{width:56.256000pt;}
._66{width:57.167787pt;}
._1b{width:58.077440pt;}
._1a{width:59.392000pt;}
._42{width:60.288000pt;}
._53{width:61.546667pt;}
._4a{width:63.232000pt;}
._57{width:64.448000pt;}
._61{width:65.920000pt;}
._49{width:67.520000pt;}
._32{width:68.948480pt;}
._67{width:70.218667pt;}
._48{width:71.648000pt;}
._47{width:72.874667pt;}
._9{width:74.698667pt;}
._63{width:75.818667pt;}
._84{width:76.757333pt;}
._68{width:78.272000pt;}
._72{width:79.210667pt;}
._7c{width:80.477440pt;}
._50{width:81.408000pt;}
._5d{width:82.813440pt;}
._5c{width:83.722667pt;}
._23{width:85.376000pt;}
._76{width:86.336000pt;}
._75{width:87.360000pt;}
._4d{width:88.512000pt;}
._78{width:89.664000pt;}
._77{width:90.816000pt;}
._79{width:91.776000pt;}
._7d{width:93.226667pt;}
._80{width:94.432000pt;}
._b{width:95.786667pt;}
._6e{width:96.874667pt;}
._7e{width:97.834667pt;}
._6c{width:99.328000pt;}
._6b{width:100.416000pt;}
._58{width:101.440000pt;}
._5e{width:102.762667pt;}
._55{width:103.808000pt;}
._54{width:104.906667pt;}
._73{width:105.856000pt;}
._74{width:106.816000pt;}
._7f{width:108.096000pt;}
._d{width:109.834667pt;}
._85{width:111.168000pt;}
._70{width:112.608000pt;}
._6f{width:113.514667pt;}
._62{width:114.762667pt;}
._69{width:116.448000pt;}
._5b{width:117.386667pt;}
._5a{width:118.400000pt;}
._6d{width:120.320000pt;}
._6a{width:122.696107pt;}
._25{width:124.330667pt;}
._82{width:126.336000pt;}
._81{width:127.520000pt;}
._7a{width:133.376000pt;}
._7b{width:134.538667pt;}
._51{width:135.744000pt;}
._44{width:136.938667pt;}
._4{width:138.506667pt;}
._24{width:142.058667pt;}
._0{width:156.394667pt;}
._71{width:157.824000pt;}
._8{width:159.914667pt;}
._4b{width:161.216000pt;}
._e{width:163.594667pt;}
._7{width:166.858667pt;}
._c{width:170.538667pt;}
._1{width:174.186667pt;}
._83{width:186.410667pt;}
._11{width:433.802667pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2a6{bottom:79.232000pt;}
.y2c0{bottom:79.552000pt;}
.y36d{bottom:81.152000pt;}
.ye4{bottom:81.312000pt;}
.y34f{bottom:81.632000pt;}
.y245{bottom:82.272000pt;}
.y287{bottom:82.912000pt;}
.y68{bottom:83.232000pt;}
.y300{bottom:83.712000pt;}
.y1a5{bottom:84.832000pt;}
.yd8{bottom:87.232000pt;}
.y24d{bottom:87.552000pt;}
.y20c{bottom:87.712000pt;}
.y228{bottom:87.872000pt;}
.y92{bottom:88.192000pt;}
.y3a{bottom:88.352000pt;}
.y1ec{bottom:89.792000pt;}
.y1e1{bottom:90.432000pt;}
.y178{bottom:90.912000pt;}
.y24{bottom:92.032000pt;}
.y340{bottom:92.192000pt;}
.y1b8{bottom:93.952000pt;}
.yca{bottom:94.272000pt;}
.y71{bottom:94.912000pt;}
.y12e{bottom:95.232000pt;}
.y1f2{bottom:96.832000pt;}
.y333{bottom:97.632000pt;}
.y27c{bottom:98.912000pt;}
.y238{bottom:99.072000pt;}
.y4a{bottom:99.232000pt;}
.y194{bottom:99.712000pt;}
.y3d6{bottom:100.032000pt;}
.y1cc{bottom:100.832000pt;}
.y267{bottom:101.792000pt;}
.y344{bottom:102.112000pt;}
.y208{bottom:102.912000pt;}
.yf7{bottom:103.232000pt;}
.y1f9{bottom:103.712000pt;}
.y394{bottom:103.872000pt;}
.y322{bottom:104.192000pt;}
.y271{bottom:106.432000pt;}
.y39{bottom:106.912000pt;}
.yad{bottom:107.232000pt;}
.y244{bottom:109.792000pt;}
.ye3{bottom:109.952000pt;}
.y67{bottom:110.912000pt;}
.y117{bottom:111.232000pt;}
.y1a4{bottom:112.512000pt;}
.y353{bottom:113.632000pt;}
.y3b7{bottom:114.432000pt;}
.yd7{bottom:114.912000pt;}
.y13d{bottom:115.232000pt;}
.y227{bottom:115.552000pt;}
.y91{bottom:115.872000pt;}
.y1eb{bottom:117.472000pt;}
.y1e0{bottom:118.112000pt;}
.y177{bottom:118.432000pt;}
.y22e{bottom:119.232000pt;}
.y23{bottom:119.712000pt;}
.y164{bottom:120.352000pt;}
.y3d5{bottom:121.152000pt;}
.y1b7{bottom:121.632000pt;}
.y70{bottom:122.432000pt;}
.y2ef{bottom:122.592000pt;}
.y12d{bottom:122.912000pt;}
.y1f1{bottom:124.512000pt;}
.y36c{bottom:124.672000pt;}
.y1fe{bottom:125.152000pt;}
.y38{bottom:125.312000pt;}
.y27b{bottom:126.432000pt;}
.y49{bottom:126.912000pt;}
.y193{bottom:127.232000pt;}
.y237{bottom:127.712000pt;}
.y266{bottom:129.472000pt;}
.y343{bottom:129.632000pt;}
.yf6{bottom:130.912000pt;}
.y2da{bottom:131.072000pt;}
.y1f8{bottom:131.232000pt;}
.y321{bottom:131.712000pt;}
.y375{bottom:131.872000pt;}
.y14b{bottom:133.466667pt;}
.y293{bottom:134.106667pt;}
.y2fb{bottom:134.426667pt;}
.yac{bottom:134.906667pt;}
.y33f{bottom:135.866667pt;}
.y243{bottom:137.466667pt;}
.ye2{bottom:137.626667pt;}
.yc9{bottom:137.786667pt;}
.y66{bottom:138.426667pt;}
.y116{bottom:138.906667pt;}
.y1a3{bottom:140.026667pt;}
.y332{bottom:141.306667pt;}
.y3d4{bottom:142.266667pt;}
.yd6{bottom:142.426667pt;}
.y13c{bottom:142.746667pt;}
.y20b{bottom:142.906667pt;}
.y226{bottom:143.066667pt;}
.y90{bottom:143.386667pt;}
.y37{bottom:143.706667pt;}
.y1cb{bottom:144.506667pt;}
.y1ea{bottom:144.986667pt;}
.y1df{bottom:145.626667pt;}
.y176{bottom:146.106667pt;}
.y2ff{bottom:146.426667pt;}
.y22d{bottom:146.906667pt;}
.y22{bottom:147.226667pt;}
.y163{bottom:147.866667pt;}
.y3b6{bottom:148.986667pt;}
.y1b6{bottom:149.146667pt;}
.y6f{bottom:150.106667pt;}
.y12c{bottom:150.426667pt;}
.y2bf{bottom:150.746667pt;}
.y1f0{bottom:152.026667pt;}
.y36b{bottom:152.346667pt;}
.y1fd{bottom:152.666667pt;}
.y34e{bottom:152.826667pt;}
.y27a{bottom:154.106667pt;}
.y48{bottom:154.426667pt;}
.y192{bottom:154.906667pt;}
.y236{bottom:156.506667pt;}
.y265{bottom:156.986667pt;}
.y342{bottom:157.306667pt;}
.yf9{bottom:158.106667pt;}
.yf5{bottom:158.426667pt;}
.y2d9{bottom:158.586667pt;}
.y1f7{bottom:158.906667pt;}
.y320{bottom:159.386667pt;}
.y14a{bottom:160.986667pt;}
.y292{bottom:161.626667pt;}
.y2fa{bottom:162.106667pt;}
.y3d3{bottom:163.546667pt;}
.y242{bottom:164.986667pt;}
.yc8{bottom:165.466667pt;}
.y65{bottom:166.106667pt;}
.ye1{bottom:166.266667pt;}
.y115{bottom:166.426667pt;}
.y1a2{bottom:167.706667pt;}
.y331{bottom:168.826667pt;}
.y2a4{bottom:169.626667pt;}
.y183{bottom:170.106667pt;}
.y13b{bottom:170.426667pt;}
.y225{bottom:170.746667pt;}
.y8f{bottom:171.066667pt;}
.y1ca{bottom:172.026667pt;}
.y36{bottom:172.506667pt;}
.y393{bottom:172.986667pt;}
.y2a2{bottom:173.306667pt;}
.y22c{bottom:174.426667pt;}
.y21{bottom:174.906667pt;}
.y162{bottom:175.546667pt;}
.y120{bottom:177.626667pt;}
.y12b{bottom:178.106667pt;}
.yab{bottom:178.426667pt;}
.y33e{bottom:179.546667pt;}
.y1ef{bottom:179.706667pt;}
.y34d{bottom:180.506667pt;}
.y279{bottom:181.626667pt;}
.y47{bottom:182.106667pt;}
.y191{bottom:182.426667pt;}
.y3b5{bottom:183.386667pt;}
.y288{bottom:184.346667pt;}
.y3d2{bottom:184.666667pt;}
.y235{bottom:185.146667pt;}
.yd5{bottom:186.106667pt;}
.y2d8{bottom:186.266667pt;}
.y1f6{bottom:186.426667pt;}
.y1e9{bottom:187.066667pt;}
.y149{bottom:188.666667pt;}
.y1de{bottom:189.306667pt;}
.y175{bottom:189.626667pt;}
.y1b5{bottom:192.826667pt;}
.yc7{bottom:192.986667pt;}
.y64{bottom:193.626667pt;}
.y2ee{bottom:193.786667pt;}
.y114{bottom:194.106667pt;}
.ye0{bottom:194.906667pt;}
.y1a1{bottom:195.226667pt;}
.y36a{bottom:195.866667pt;}
.y330{bottom:196.506667pt;}
.y182{bottom:197.626667pt;}
.y13a{bottom:197.946667pt;}
.y20a{bottom:198.106667pt;}
.y224{bottom:198.266667pt;}
.y8e{bottom:198.586667pt;}
.y30a{bottom:199.226667pt;}
.y1c9{bottom:199.706667pt;}
.y264{bottom:200.666667pt;}
.y2a1{bottom:200.826667pt;}
.y35{bottom:201.786667pt;}
.y22b{bottom:202.106667pt;}
.y20{bottom:202.426667pt;}
.y31f{bottom:202.906667pt;}
.y161{bottom:203.066667pt;}
.y11f{bottom:205.306667pt;}
.y12a{bottom:205.626667pt;}
.y3d1{bottom:205.786667pt;}
.y2be{bottom:205.946667pt;}
.y33d{bottom:207.066667pt;}
.y392{bottom:207.386667pt;}
.y241{bottom:208.666667pt;}
.y286{bottom:209.306667pt;}
.y46{bottom:209.626667pt;}
.y190{bottom:210.106667pt;}
.y348{bottom:212.506667pt;}
.y234{bottom:212.826667pt;}
.yd4{bottom:213.626667pt;}
.y2d7{bottom:213.786667pt;}
.y24c{bottom:213.946667pt;}
.yaa{bottom:214.106667pt;}
.y148{bottom:216.186667pt;}
.y2a3{bottom:216.826667pt;}
.y174{bottom:217.306667pt;}
.y3b4{bottom:217.466667pt;}
.y374{bottom:219.066667pt;}
.y1ee{bottom:219.866667pt;}
.y1b4{bottom:220.346667pt;}
.yc6{bottom:220.666667pt;}
.y63{bottom:221.306667pt;}
.y113{bottom:221.626667pt;}
.ydf{bottom:222.586667pt;}
.y1a0{bottom:222.906667pt;}
.y294{bottom:223.546667pt;}
.y34c{bottom:224.026667pt;}
.y278{bottom:225.306667pt;}
.y139{bottom:225.626667pt;}
.y223{bottom:225.946667pt;}
.y8d{bottom:226.266667pt;}
.y3d0{bottom:226.906667pt;}
.y1c8{bottom:227.226667pt;}
.y263{bottom:228.186667pt;}
.y341{bottom:228.506667pt;}
.y1fc{bottom:229.626667pt;}
.y1f{bottom:230.106667pt;}
.y31e{bottom:230.586667pt;}
.y160{bottom:230.746667pt;}
.y34{bottom:231.226667pt;}
.y270{bottom:232.826667pt;}
.y250{bottom:233.306667pt;}
.y2bd{bottom:233.626667pt;}
.y33c{bottom:234.586667pt;}
.y2ed{bottom:235.706667pt;}
.y240{bottom:236.186667pt;}
.y3b3{bottom:236.826667pt;}
.y45{bottom:237.306667pt;}
.y18f{bottom:237.626667pt;}
.y369{bottom:239.546667pt;}
.y1e8{bottom:239.866667pt;}
.y32f{bottom:240.026667pt;}
.y233{bottom:240.346667pt;}
.y1dd{bottom:240.826667pt;}
.yd3{bottom:241.306667pt;}
.y2d6{bottom:241.466667pt;}
.ya9{bottom:241.626667pt;}
.y309{bottom:242.946667pt;}
.y147{bottom:243.906667pt;}
.y2a0{bottom:244.546667pt;}
.y173{bottom:244.866667pt;}
.y2c1{bottom:247.586667pt;}
.y1b3{bottom:248.066667pt;}
.yc5{bottom:248.226667pt;}
.y6e{bottom:248.866667pt;}
.y112{bottom:249.346667pt;}
.y391{bottom:249.826667pt;}
.y19f{bottom:250.466667pt;}
.yde{bottom:251.266667pt;}
.y34b{bottom:251.746667pt;}
.y277{bottom:252.866667pt;}
.y138{bottom:253.186667pt;}
.y209{bottom:253.346667pt;}
.y222{bottom:253.506667pt;}
.y8c{bottom:253.826667pt;}
.y1c7{bottom:254.946667pt;}
.y262{bottom:255.906667pt;}
.y3b2{bottom:256.226667pt;}
.y1fb{bottom:257.346667pt;}
.y1e{bottom:257.666667pt;}
.y15f{bottom:258.306667pt;}
.y33{bottom:260.546667pt;}
.y2a5{bottom:260.866667pt;}
.y2bc{bottom:261.186667pt;}
.y373{bottom:262.786667pt;}
.y23f{bottom:263.906667pt;}
.y62{bottom:264.866667pt;}
.y18e{bottom:265.346667pt;}
.y368{bottom:267.106667pt;}
.y1e7{bottom:267.426667pt;}
.y32e{bottom:267.746667pt;}
.y232{bottom:268.066667pt;}
.y1dc{bottom:268.546667pt;}
.yd2{bottom:268.866667pt;}
.y2d5{bottom:269.026667pt;}
.y24b{bottom:269.186667pt;}
.ya8{bottom:269.346667pt;}
.y146{bottom:271.426667pt;}
.y29f{bottom:272.066667pt;}
.y172{bottom:272.546667pt;}
.y31d{bottom:274.146667pt;}
.y2f9{bottom:275.266667pt;}
.y1b2{bottom:275.586667pt;}
.y3b1{bottom:275.746667pt;}
.yc4{bottom:275.906667pt;}
.y6d{bottom:276.546667pt;}
.y111{bottom:276.866667pt;}
.y19e{bottom:278.146667pt;}
.y33b{bottom:278.626667pt;}
.y276{bottom:280.546667pt;}
.y2ec{bottom:280.706667pt;}
.y44{bottom:280.866667pt;}
.y229{bottom:283.266667pt;}
.y261{bottom:283.426667pt;}
.y347{bottom:283.746667pt;}
.y390{bottom:284.226667pt;}
.y2c6{bottom:284.546667pt;}
.y1fa{bottom:284.866667pt;}
.y1d{bottom:285.346667pt;}
.y15e{bottom:285.986667pt;}
.y308{bottom:286.466667pt;}
.ydd{bottom:286.946667pt;}
.y291{bottom:288.066667pt;}
.y2bb{bottom:288.866667pt;}
.y8b{bottom:289.506667pt;}
.y32{bottom:289.826667pt;}
.y3cf{bottom:290.466667pt;}
.y23e{bottom:291.426667pt;}
.y61{bottom:292.546667pt;}
.y18d{bottom:292.866667pt;}
.y367{bottom:294.786667pt;}
.y1e6{bottom:295.106667pt;}
.y32d{bottom:295.266667pt;}
.y221{bottom:295.426667pt;}
.y1db{bottom:296.066667pt;}
.yf4{bottom:296.546667pt;}
.y2d4{bottom:296.706667pt;}
.ya7{bottom:296.866667pt;}
.y1c6{bottom:298.466667pt;}
.y145{bottom:299.106667pt;}
.y29e{bottom:299.746667pt;}
.y171{bottom:300.066667pt;}
.y31c{bottom:301.826667pt;}
.y1b1{bottom:303.266667pt;}
.y207{bottom:303.426667pt;}
.y11e{bottom:304.066667pt;}
.y110{bottom:304.546667pt;}
.y38f{bottom:305.346667pt;}
.y372{bottom:306.306667pt;}
.y33a{bottom:306.786667pt;}
.y275{bottom:308.066667pt;}
.y137{bottom:308.386667pt;}
.y43{bottom:308.546667pt;}
.y231{bottom:309.986667pt;}
.y184{bottom:310.786667pt;}
.y352{bottom:311.266667pt;}
.y3ce{bottom:311.586667pt;}
.y2c5{bottom:312.066667pt;}
.yd1{bottom:312.546667pt;}
.y1c{bottom:312.866667pt;}
.y15d{bottom:313.506667pt;}
.ydc{bottom:314.466667pt;}
.y290{bottom:315.746667pt;}
.y2ba{bottom:316.386667pt;}
.y8a{bottom:317.026667pt;}
.y31{bottom:319.106667pt;}
.yc3{bottom:319.426667pt;}
.y60{bottom:320.066667pt;}
.y18c{bottom:320.546667pt;}
.y19d{bottom:321.666667pt;}
.y1e5{bottom:322.626667pt;}
.y34a{bottom:322.946667pt;}
.y1da{bottom:323.746667pt;}
.yf3{bottom:324.066667pt;}
.y2d3{bottom:324.226667pt;}
.y24a{bottom:324.386667pt;}
.ya6{bottom:324.546667pt;}
.y1c5{bottom:326.146667pt;}
.y144{bottom:326.626667pt;}
.y260{bottom:327.106667pt;}
.y29d{bottom:327.266667pt;}
.y170{bottom:327.746667pt;}
.y2f8{bottom:328.066667pt;}
.y31b{bottom:329.346667pt;}
.y307{bottom:330.146667pt;}
.y1b0{bottom:330.786667pt;}
.y206{bottom:331.106667pt;}
.y11d{bottom:331.746667pt;}
.y129{bottom:332.066667pt;}
.y3cd{bottom:332.866667pt;}
.y274{bottom:335.746667pt;}
.y42{bottom:336.066667pt;}
.y366{bottom:338.306667pt;}
.y2fd{bottom:338.466667pt;}
.y32c{bottom:338.946667pt;}
.y2c4{bottom:339.746667pt;}
.yd0{bottom:340.066667pt;}
.y1b{bottom:340.546667pt;}
.ydb{bottom:342.146667pt;}
.y28f{bottom:343.266667pt;}
.y2b9{bottom:344.066667pt;}
.y89{bottom:344.706667pt;}
.y2fc{bottom:346.466667pt;}
.y23d{bottom:346.626667pt;}
.yc2{bottom:347.106667pt;}
.y3b0{bottom:347.266667pt;}
.y5f{bottom:347.746667pt;}
.y10f{bottom:348.066667pt;}
.y30{bottom:348.386667pt;}
.y19c{bottom:349.346667pt;}
.y371{bottom:349.986667pt;}
.y339{bottom:350.466667pt;}
.y1d9{bottom:351.266667pt;}
.yf2{bottom:351.746667pt;}
.y2d2{bottom:351.906667pt;}
.ya5{bottom:352.066667pt;}
.y1c4{bottom:353.666667pt;}
.y143{bottom:354.306667pt;}
.y22a{bottom:354.466667pt;}
.y25f{bottom:354.626667pt;}
.y29c{bottom:354.946667pt;}
.y16f{bottom:355.266667pt;}
.y2f7{bottom:355.746667pt;}
.y15c{bottom:357.186667pt;}
.y1af{bottom:358.466667pt;}
.y205{bottom:358.626667pt;}
.y11c{bottom:359.266667pt;}
.y230{bottom:359.426667pt;}
.y128{bottom:359.746667pt;}
.y285{bottom:363.266667pt;}
.y41{bottom:363.746667pt;}
.y365{bottom:365.986667pt;}
.y32b{bottom:366.466667pt;}
.y3af{bottom:366.626667pt;}
.y2c3{bottom:367.266667pt;}
.y2eb{bottom:367.426667pt;}
.ycf{bottom:367.746667pt;}
.y1a{bottom:368.066667pt;}
.y1e4{bottom:368.546667pt;}
.y38e{bottom:368.866667pt;}
.y28e{bottom:370.946667pt;}
.y88{bottom:372.226667pt;}
.y31a{bottom:373.026667pt;}
.y306{bottom:373.666667pt;}
.y23c{bottom:374.146667pt;}
.yc1{bottom:374.626667pt;}
.y5e{bottom:375.266667pt;}
.y10e{bottom:375.746667pt;}
.y220{bottom:375.906667pt;}
.y19b{bottom:376.866667pt;}
.y2f{bottom:377.666667pt;}
.y338{bottom:378.146667pt;}
.y1d8{bottom:378.946667pt;}
.y181{bottom:379.266667pt;}
.y2d1{bottom:379.426667pt;}
.y136{bottom:379.586667pt;}
.ya4{bottom:379.746667pt;}
.y1c3{bottom:381.346667pt;}
.y25e{bottom:382.306667pt;}
.y346{bottom:382.466667pt;}
.y2f6{bottom:383.266667pt;}
.y15b{bottom:384.706667pt;}
.yda{bottom:385.666667pt;}
.y1ae{bottom:385.986667pt;}
.y204{bottom:386.306667pt;}
.y11b{bottom:386.946667pt;}
.y127{bottom:387.266667pt;}
.y2b8{bottom:387.586667pt;}
.y3cc{bottom:388.386667pt;}
.y38d{bottom:389.986667pt;}
.y284{bottom:390.786667pt;}
.y40{bottom:391.266667pt;}
.y364{bottom:393.506667pt;}
.y32a{bottom:394.146667pt;}
.y2c2{bottom:394.946667pt;}
.y2ea{bottom:395.106667pt;}
.yf1{bottom:395.266667pt;}
.y19{bottom:395.746667pt;}
.y142{bottom:396.226667pt;}
.y28d{bottom:398.466667pt;}
.y16e{bottom:398.786667pt;}
.y319{bottom:400.546667pt;}
.y23b{bottom:401.826667pt;}
.yc0{bottom:402.306667pt;}
.y5d{bottom:402.946667pt;}
.y10d{bottom:403.266667pt;}
.y21f{bottom:403.586667pt;}
.y19a{bottom:404.546667pt;}
.y180{bottom:406.786667pt;}
.y2e{bottom:406.946667pt;}
.y2d0{bottom:407.106667pt;}
.ya3{bottom:407.266667pt;}
.y87{bottom:407.906667pt;}
.y1c2{bottom:408.866667pt;}
.yce{bottom:409.666667pt;}
.y25d{bottom:409.826667pt;}
.y351{bottom:410.146667pt;}
.y2f5{bottom:410.946667pt;}
.y15a{bottom:412.386667pt;}
.y1ad{bottom:413.666667pt;}
.y26f{bottom:414.466667pt;}
.y126{bottom:414.786667pt;}
.y2b7{bottom:415.266667pt;}
.y305{bottom:417.346667pt;}
.y283{bottom:418.466667pt;}
.y3ae{bottom:418.786667pt;}
.y3f{bottom:418.946667pt;}
.y18b{bottom:419.266667pt;}
.y370{bottom:421.186667pt;}
.y249{bottom:421.506667pt;}
.y329{bottom:421.666667pt;}
.y1d7{bottom:422.466667pt;}
.y2e9{bottom:422.626667pt;}
.yf0{bottom:422.786667pt;}
.y18{bottom:423.266667pt;}
.y38c{bottom:424.546667pt;}
.yd9{bottom:425.826667pt;}
.y28c{bottom:426.146667pt;}
.y16d{bottom:426.466667pt;}
.ybf{bottom:429.826667pt;}
.y5c{bottom:430.466667pt;}
.y10c{bottom:430.786667pt;}
.y21e{bottom:431.106667pt;}
.y199{bottom:432.066667pt;}
.y17f{bottom:434.466667pt;}
.y135{bottom:434.786667pt;}
.y1f5{bottom:434.946667pt;}
.y86{bottom:435.426667pt;}
.y2d{bottom:436.226667pt;}
.y1c1{bottom:436.546667pt;}
.y363{bottom:437.186667pt;}
.y349{bottom:437.666667pt;}
.y3ad{bottom:438.146667pt;}
.y2f4{bottom:438.466667pt;}
.y159{bottom:439.906667pt;}
.y26e{bottom:442.146667pt;}
.y24f{bottom:442.466667pt;}
.y2b6{bottom:442.786667pt;}
.ya2{bottom:442.946667pt;}
.y318{bottom:444.226667pt;}
.y38b{bottom:445.666667pt;}
.y282{bottom:445.986667pt;}
.y3e{bottom:446.466667pt;}
.y18a{bottom:446.786667pt;}
.y2fe{bottom:448.866667pt;}
.y141{bottom:449.026667pt;}
.y337{bottom:449.346667pt;}
.y1d6{bottom:450.146667pt;}
.y2e8{bottom:450.306667pt;}
.yef{bottom:450.466667pt;}
.y2cf{bottom:450.626667pt;}
.y17{bottom:450.946667pt;}
.y3cb{bottom:451.906667pt;}
.y25c{bottom:453.346667pt;}
.y29b{bottom:453.666667pt;}
.y350{bottom:453.826667pt;}
.y16c{bottom:453.986667pt;}
.y1ac{bottom:457.186667pt;}
.ybe{bottom:457.506667pt;}
.y5b{bottom:458.146667pt;}
.y10b{bottom:458.466667pt;}
.y21d{bottom:458.786667pt;}
.y198{bottom:459.586667pt;}
.y2a7{bottom:460.386667pt;}
.y304{bottom:460.866667pt;}
.y17e{bottom:461.986667pt;}
.ycd{bottom:462.466667pt;}
.y85{bottom:462.946667pt;}
.y1c0{bottom:464.066667pt;}
.y362{bottom:464.706667pt;}
.y328{bottom:465.346667pt;}
.y2c{bottom:465.506667pt;}
.y2f3{bottom:466.146667pt;}
.y248{bottom:466.466667pt;}
.y38a{bottom:466.786667pt;}
.y28b{bottom:469.666667pt;}
.y24e{bottom:469.986667pt;}
.ya1{bottom:470.466667pt;}
.y317{bottom:471.746667pt;}
.y3ca{bottom:473.026667pt;}
.y281{bottom:473.666667pt;}
.yf8{bottom:474.146667pt;}
.y1ed{bottom:474.306667pt;}
.y189{bottom:474.466667pt;}
.y140{bottom:476.706667pt;}
.y3ac{bottom:476.866667pt;}
.y1d5{bottom:477.666667pt;}
.y2e7{bottom:477.826667pt;}
.yee{bottom:477.986667pt;}
.y2ce{bottom:478.306667pt;}
.y16{bottom:478.466667pt;}
.y25b{bottom:481.026667pt;}
.y29a{bottom:481.346667pt;}
.y16b{bottom:481.666667pt;}
.y158{bottom:483.586667pt;}
.y1ab{bottom:484.866667pt;}
.ybd{bottom:485.026667pt;}
.y6c{bottom:485.666667pt;}
.y10a{bottom:485.986667pt;}
.y21c{bottom:486.306667pt;}
.y197{bottom:487.266667pt;}
.y389{bottom:488.066667pt;}
.y17d{bottom:489.666667pt;}
.y3d{bottom:490.146667pt;}
.y84{bottom:490.626667pt;}
.y1bf{bottom:491.586667pt;}
.y361{bottom:492.386667pt;}
.y327{bottom:492.866667pt;}
.y2f2{bottom:493.666667pt;}
.y247{bottom:494.013333pt;}
.y3c9{bottom:494.333333pt;}
.y2b{bottom:494.973333pt;}
.y3ab{bottom:496.253333pt;}
.y28a{bottom:497.373333pt;}
.y2b5{bottom:498.013333pt;}
.ya0{bottom:498.173333pt;}
.y316{bottom:499.293333pt;}
.y5a{bottom:501.693333pt;}
.y188{bottom:502.013333pt;}
.y273{bottom:504.093333pt;}
.y13f{bottom:504.253333pt;}
.y303{bottom:504.573333pt;}
.y1d4{bottom:505.373333pt;}
.y2e6{bottom:505.533333pt;}
.yed{bottom:505.693333pt;}
.y2cd{bottom:505.853333pt;}
.y134{bottom:506.013333pt;}
.y15{bottom:506.173333pt;}
.y345{bottom:508.893333pt;}
.y388{bottom:509.213333pt;}
.y157{bottom:511.133333pt;}
.y1aa{bottom:512.413333pt;}
.ybc{bottom:512.733333pt;}
.y6b{bottom:513.373333pt;}
.y109{bottom:513.693333pt;}
.y21b{bottom:514.013333pt;}
.y196{bottom:514.813333pt;}
.y3c8{bottom:515.453333pt;}
.y3aa{bottom:515.773333pt;}
.y17c{bottom:517.213333pt;}
.y3c{bottom:517.693333pt;}
.y83{bottom:518.173333pt;}
.y1be{bottom:519.293333pt;}
.y36f{bottom:519.933333pt;}
.y272{bottom:520.093333pt;}
.y336{bottom:520.573333pt;}
.y2f1{bottom:521.373333pt;}
.y1f4{bottom:521.693333pt;}
.y16a{bottom:523.613333pt;}
.y2a{bottom:524.253333pt;}
.y25a{bottom:524.573333pt;}
.y289{bottom:524.893333pt;}
.y9f{bottom:525.693333pt;}
.y59{bottom:529.373333pt;}
.y22f{bottom:529.533333pt;}
.y187{bottom:529.693333pt;}
.y387{bottom:530.333333pt;}
.y1d3{bottom:532.893333pt;}
.y2e5{bottom:533.053333pt;}
.y216{bottom:533.213333pt;}
.y2cc{bottom:533.533333pt;}
.y14{bottom:533.693333pt;}
.y3a9{bottom:535.133333pt;}
.y360{bottom:535.933333pt;}
.y326{bottom:536.573333pt;}
.y1a9{bottom:540.093333pt;}
.y203{bottom:540.253333pt;}
.y11a{bottom:540.893333pt;}
.y108{bottom:541.213333pt;}
.y315{bottom:542.973333pt;}
.y280{bottom:544.893333pt;}
.y3b{bottom:545.373333pt;}
.y302{bottom:548.093333pt;}
.y2f0{bottom:548.893333pt;}
.yec{bottom:549.213333pt;}
.y13e{bottom:550.173333pt;}
.y386{bottom:551.453333pt;}
.y29{bottom:552.093333pt;}
.y259{bottom:552.253333pt;}
.y299{bottom:552.573333pt;}
.y9e{bottom:553.373333pt;}
.y82{bottom:553.853333pt;}
.y3a8{bottom:554.493333pt;}
.y156{bottom:554.813333pt;}
.y195{bottom:554.973333pt;}
.ybb{bottom:556.253333pt;}
.y58{bottom:556.893333pt;}
.y186{bottom:557.213333pt;}
.y3c7{bottom:557.693333pt;}
.y17b{bottom:559.293333pt;}
.y21a{bottom:559.773333pt;}
.y1d2{bottom:560.573333pt;}
.y2e4{bottom:560.733333pt;}
.y215{bottom:560.893333pt;}
.y2cb{bottom:561.053333pt;}
.y133{bottom:561.213333pt;}
.y13{bottom:561.373333pt;}
.y1bd{bottom:562.813333pt;}
.y35f{bottom:563.613333pt;}
.y325{bottom:564.093333pt;}
.y202{bottom:567.933333pt;}
.y1e3{bottom:568.573333pt;}
.y107{bottom:568.893333pt;}
.y2b4{bottom:569.213333pt;}
.y314{bottom:570.493333pt;}
.ycc{bottom:572.893333pt;}
.y169{bottom:576.573333pt;}
.yeb{bottom:576.893333pt;}
.y3c6{bottom:578.973333pt;}
.y28{bottom:579.773333pt;}
.y298{bottom:580.093333pt;}
.y9d{bottom:580.893333pt;}
.y81{bottom:581.373333pt;}
.y155{bottom:582.333333pt;}
.y1a8{bottom:583.613333pt;}
.yba{bottom:583.933333pt;}
.y57{bottom:584.573333pt;}
.y185{bottom:584.893333pt;}
.y385{bottom:586.013333pt;}
.y3a7{bottom:587.293333pt;}
.y1d1{bottom:588.093333pt;}
.y2e3{bottom:588.253333pt;}
.y214{bottom:588.413333pt;}
.y2ca{bottom:588.733333pt;}
.y12{bottom:588.893333pt;}
.y35e{bottom:591.133333pt;}
.y301{bottom:591.773333pt;}
.y258{bottom:595.773333pt;}
.y1e2{bottom:596.093333pt;}
.y125{bottom:596.413333pt;}
.y2b3{bottom:596.893333pt;}
.y313{bottom:598.173333pt;}
.y3c5{bottom:600.093333pt;}
.ycb{bottom:600.573333pt;}
.y23a{bottom:602.813333pt;}
.y132{bottom:603.133333pt;}
.y168{bottom:604.093333pt;}
.yea{bottom:604.413333pt;}
.y3a6{bottom:606.653333pt;}
.y384{bottom:607.133333pt;}
.y297{bottom:607.773333pt;}
.y9c{bottom:608.573333pt;}
.y80{bottom:609.053333pt;}
.y27{bottom:609.533333pt;}
.y154{bottom:610.013333pt;}
.yb9{bottom:611.453333pt;}
.y6a{bottom:612.093333pt;}
.y106{bottom:612.413333pt;}
.y1bc{bottom:614.493333pt;}
.y2e2{bottom:615.933333pt;}
.y213{bottom:616.093333pt;}
.y11{bottom:616.573333pt;}
.y335{bottom:619.293333pt;}
.y3c4{bottom:621.213333pt;}
.y219{bottom:621.693333pt;}
.y257{bottom:623.453333pt;}
.y26d{bottom:623.773333pt;}
.y124{bottom:624.093333pt;}
.y2b2{bottom:624.413333pt;}
.y3a5{bottom:626.013333pt;}
.y56{bottom:628.093333pt;}
.y383{bottom:628.253333pt;}
.y239{bottom:630.493333pt;}
.y167{bottom:631.773333pt;}
.ye9{bottom:632.093333pt;}
.y2c9{bottom:632.253333pt;}
.y35d{bottom:634.813333pt;}
.y1a7{bottom:635.293333pt;}
.y9b{bottom:636.093333pt;}
.y7f{bottom:636.573333pt;}
.y153{bottom:637.533333pt;}
.yb8{bottom:639.133333pt;}
.y69{bottom:639.773333pt;}
.y105{bottom:640.093333pt;}
.y26{bottom:641.693333pt;}
.y1bb{bottom:642.013333pt;}
.y27f{bottom:643.613333pt;}
.y10{bottom:644.093333pt;}
.y3a4{bottom:645.373333pt;}
.y218{bottom:649.373333pt;}
.y382{bottom:649.533333pt;}
.y256{bottom:650.973333pt;}
.y26c{bottom:651.293333pt;}
.y2b1{bottom:652.093333pt;}
.y55{bottom:655.773333pt;}
.y131{bottom:656.093333pt;}
.y166{bottom:659.293333pt;}
.y2e1{bottom:659.453333pt;}
.ye8{bottom:659.613333pt;}
.y2c8{bottom:659.933333pt;}
.y35c{bottom:662.333333pt;}
.y36e{bottom:662.813333pt;}
.y324{bottom:662.973333pt;}
.y9a{bottom:663.773333pt;}
.y7e{bottom:664.253333pt;}
.y3a3{bottom:664.733333pt;}
.y152{bottom:665.213333pt;}
.yb7{bottom:666.653333pt;}
.y119{bottom:667.293333pt;}
.y104{bottom:667.613333pt;}
.y312{bottom:669.373333pt;}
.y381{bottom:670.653333pt;}
.yf{bottom:671.773333pt;}
.y1a6{bottom:675.293333pt;}
.y3c3{bottom:676.893333pt;}
.y255{bottom:678.653333pt;}
.y26b{bottom:678.973333pt;}
.y1ba{bottom:682.173333pt;}
.y54{bottom:683.293333pt;}
.y130{bottom:683.613333pt;}
.y3a2{bottom:684.253333pt;}
.y27e{bottom:685.693333pt;}
.y165{bottom:686.973333pt;}
.y2e0{bottom:687.133333pt;}
.ye7{bottom:687.293333pt;}
.y217{bottom:689.373333pt;}
.y334{bottom:690.493333pt;}
.y99{bottom:691.293333pt;}
.y7d{bottom:691.773333pt;}
.y151{bottom:692.733333pt;}
.yb6{bottom:694.333333pt;}
.y118{bottom:694.973333pt;}
.y103{bottom:695.293333pt;}
.y2b0{bottom:695.613333pt;}
.y311{bottom:696.893333pt;}
.y3c2{bottom:698.013333pt;}
.ye{bottom:699.293333pt;}
.y2c7{bottom:699.933333pt;}
.y1f3{bottom:701.693333pt;}
.y3a1{bottom:703.613333pt;}
.y380{bottom:705.053333pt;}
.y35b{bottom:706.013333pt;}
.y254{bottom:706.173333pt;}
.y296{bottom:706.493333pt;}
.y53{bottom:710.973333pt;}
.y12f{bottom:711.293333pt;}
.y1d0{bottom:714.493333pt;}
.y2df{bottom:714.653333pt;}
.ye6{bottom:714.813333pt;}
.y98{bottom:718.973333pt;}
.y3c1{bottom:719.133333pt;}
.y150{bottom:720.413333pt;}
.yb5{bottom:721.853333pt;}
.y17a{bottom:722.493333pt;}
.y123{bottom:722.813333pt;}
.y3a0{bottom:722.973333pt;}
.y2af{bottom:723.293333pt;}
.y37f{bottom:726.333333pt;}
.yd{bottom:726.973333pt;}
.y7c{bottom:727.453333pt;}
.y246{bottom:729.213333pt;}
.y35a{bottom:733.533333pt;}
.y253{bottom:733.853333pt;}
.y295{bottom:734.173333pt;}
.y201{bottom:736.253333pt;}
.y52{bottom:738.493333pt;}
.y102{bottom:738.813333pt;}
.y3c0{bottom:740.413333pt;}
.y310{bottom:740.893333pt;}
.y1cf{bottom:742.173333pt;}
.y39f{bottom:742.333333pt;}
.y212{bottom:742.493333pt;}
.y97{bottom:746.533333pt;}
.y37e{bottom:747.493333pt;}
.y14f{bottom:747.973333pt;}
.yb4{bottom:749.573333pt;}
.y179{bottom:750.213333pt;}
.y122{bottom:750.533333pt;}
.y2ae{bottom:750.853333pt;}
.yc{bottom:754.533333pt;}
.y7b{bottom:755.013333pt;}
.ye5{bottom:756.933333pt;}
.y2de{bottom:758.213333pt;}
.y3bf{bottom:761.573333pt;}
.y323{bottom:761.733333pt;}
.y51{bottom:766.213333pt;}
.y101{bottom:766.533333pt;}
.y37d{bottom:768.613333pt;}
.y30f{bottom:768.773333pt;}
.y1ce{bottom:769.733333pt;}
.y211{bottom:770.053333pt;}
.y96{bottom:774.213333pt;}
.y39e{bottom:775.173333pt;}
.y14e{bottom:775.653333pt;}
.y252{bottom:775.813333pt;}
.y359{bottom:777.253333pt;}
.y1b9{bottom:777.733333pt;}
.y121{bottom:778.053333pt;}
.y2ad{bottom:778.533333pt;}
.yb{bottom:782.213333pt;}
.y7a{bottom:782.693333pt;}
.y2dd{bottom:787.013333pt;}
.y200{bottom:789.093333pt;}
.yb3{bottom:791.493333pt;}
.y50{bottom:793.733333pt;}
.y100{bottom:794.053333pt;}
.y39d{bottom:794.533333pt;}
.y30e{bottom:796.293333pt;}
.y210{bottom:797.733333pt;}
.y95{bottom:801.733333pt;}
.y37c{bottom:803.173333pt;}
.y3be{bottom:803.813333pt;}
.y358{bottom:804.773333pt;}
.y26a{bottom:805.253333pt;}
.y2ac{bottom:806.053333pt;}
.ya{bottom:809.733333pt;}
.y79{bottom:810.213333pt;}
.y27d{bottom:811.973333pt;}
.y1cd{bottom:813.253333pt;}
.y39c{bottom:813.893333pt;}
.y2dc{bottom:814.533333pt;}
.y1ff{bottom:816.773333pt;}
.y251{bottom:819.013333pt;}
.y14d{bottom:819.173333pt;}
.y4f{bottom:821.253333pt;}
.yff{bottom:821.733333pt;}
.y37b{bottom:824.293333pt;}
.y3bd{bottom:824.933333pt;}
.y20f{bottom:825.253333pt;}
.y94{bottom:829.253333pt;}
.y269{bottom:832.933333pt;}
.y39b{bottom:833.413333pt;}
.y2ab{bottom:833.733333pt;}
.y9{bottom:837.253333pt;}
.y78{bottom:837.893333pt;}
.y30d{bottom:839.973333pt;}
.y2db{bottom:843.173333pt;}
.yb2{bottom:844.293333pt;}
.y3bc{bottom:846.213333pt;}
.y357{bottom:848.453333pt;}
.y4e{bottom:848.933333pt;}
.yfe{bottom:849.253333pt;}
.y39a{bottom:852.773333pt;}
.y20e{bottom:852.933333pt;}
.y93{bottom:856.933333pt;}
.y37a{bottom:858.853333pt;}
.y14c{bottom:859.333333pt;}
.y268{bottom:860.453333pt;}
.y2aa{bottom:861.253333pt;}
.y8{bottom:864.933333pt;}
.y77{bottom:865.413333pt;}
.y3bb{bottom:867.333333pt;}
.yb1{bottom:871.973333pt;}
.y399{bottom:872.133333pt;}
.y356{bottom:875.973333pt;}
.y4d{bottom:876.453333pt;}
.yfd{bottom:876.933333pt;}
.y30c{bottom:883.493333pt;}
.y3ba{bottom:888.453333pt;}
.y2a9{bottom:888.933333pt;}
.y398{bottom:891.493333pt;}
.y7{bottom:892.453333pt;}
.y76{bottom:893.093333pt;}
.y379{bottom:893.253333pt;}
.y20d{bottom:894.853333pt;}
.yb0{bottom:899.493333pt;}
.y355{bottom:903.653333pt;}
.y4c{bottom:904.133333pt;}
.yfc{bottom:904.453333pt;}
.y397{bottom:910.853333pt;}
.y378{bottom:914.373333pt;}
.y6{bottom:920.133333pt;}
.y75{bottom:920.613333pt;}
.y3b9{bottom:923.013333pt;}
.yaf{bottom:927.173333pt;}
.y2a8{bottom:930.853333pt;}
.y4b{bottom:931.653333pt;}
.yfb{bottom:932.133333pt;}
.y74{bottom:936.293333pt;}
.y396{bottom:944.133333pt;}
.y30b{bottom:945.253333pt;}
.y354{bottom:947.493333pt;}
.y5{bottom:947.653333pt;}
.y377{bottom:948.933333pt;}
.y3b8{bottom:957.413333pt;}
.y73{bottom:970.693333pt;}
.yae{bottom:972.933333pt;}
.yfa{bottom:974.053333pt;}
.y4{bottom:975.333333pt;}
.y376{bottom:978.693333pt;}
.y395{bottom:1013.120000pt;}
.y3{bottom:1023.680000pt;}
.y72{bottom:1052.640000pt;}
.y25{bottom:1071.040000pt;}
.y2{bottom:1089.440000pt;}
.y1{bottom:1107.840000pt;}
.h6{height:3.490000pt;}
.h4{height:43.656250pt;}
.h8{height:55.031250pt;}
.h9{height:61.410000pt;}
.h2{height:66.750000pt;}
.h7{height:72.090000pt;}
.h3{height:78.097500pt;}
.h5{height:88.777500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:94.592000pt;}
.x1c{left:118.432000pt;}
.x2{left:132.352000pt;}
.x1d{left:142.106667pt;}
.x8{left:148.346667pt;}
.x13{left:156.346667pt;}
.x18{left:170.906667pt;}
.x9{left:180.346667pt;}
.x1b{left:181.466667pt;}
.xb{left:203.866667pt;}
.xc{left:227.866667pt;}
.x17{left:252.346667pt;}
.x4{left:314.146667pt;}
.x6{left:324.386667pt;}
.x3{left:353.186667pt;}
.x5{left:425.186667pt;}
.xa{left:548.253333pt;}
.x12{left:586.173333pt;}
.x11{left:598.333333pt;}
.x15{left:606.493333pt;}
.xe{left:623.293333pt;}
.x16{left:644.293333pt;}
.xf{left:662.213333pt;}
.x14{left:684.453333pt;}
.x19{left:691.493333pt;}
.x10{left:699.333333pt;}
.xd{left:700.453333pt;}
.x7{left:709.253333pt;}
.x1{left:718.213333pt;}
}




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