
    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_2553285b12f109c26832b949.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_15a8768438a1e646a7e973d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.815000;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_0935e671ca1b82c0dd52feb2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944000;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_52b3e66cdfa3df73dc81d335.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944000;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_2009521d1de81950a6289faf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_6fee7bf2eb6db4fc7106193d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_6753483108ded1b6afe25af8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_d982a7271762f9f6b84b9eaf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091797;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_31c59391fea10af589f5fa43.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_03929875c9a27116401cc53b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_c8e30f5210406ecbe42819a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.087891;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_b055c13f94416892e7e1ac05.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.087891;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_cccd3afa8fa6df5cbcfc65e1.woff2')format("woff");}.fff{font-family:fff;line-height:1.090332;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-3.318000px;}
.ls10{letter-spacing:-2.712000px;}
.lsa{letter-spacing:-1.530000px;}
.ls21{letter-spacing:-1.206000px;}
.ls1b{letter-spacing:-1.140000px;}
.ls20{letter-spacing:-0.948000px;}
.ls31{letter-spacing:-0.810000px;}
.ls15{letter-spacing:-0.512400px;}
.ls19{letter-spacing:-0.486600px;}
.ls23{letter-spacing:-0.440400px;}
.ls17{letter-spacing:-0.371400px;}
.ls12{letter-spacing:-0.348600px;}
.ls2c{letter-spacing:-0.342600px;}
.ls7{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.238800px;}
.ls18{letter-spacing:-0.236400px;}
.ls1f{letter-spacing:-0.224400px;}
.ls2f{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.166800px;}
.ls13{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.092400px;}
.ls3{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000003px;}
.ls0{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.057600px;}
.ls1a{letter-spacing:0.063600px;}
.ls2e{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.169800px;}
.ls30{letter-spacing:0.198720px;}
.ls1d{letter-spacing:0.207600px;}
.ls2b{letter-spacing:0.222000px;}
.ls25{letter-spacing:0.305280px;}
.ls1e{letter-spacing:0.348600px;}
.ls27{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.377400px;}
.lsf{letter-spacing:0.720000px;}
.ls2a{letter-spacing:1.025280px;}
.lsd{letter-spacing:4.553280px;}
.ls26{letter-spacing:21.905280px;}
.ls2d{letter-spacing:35.585280px;}
.lsc{letter-spacing:37.025280px;}
.lse{letter-spacing:47.825280px;}
.ls4{letter-spacing:52.128000px;}
.ls5{letter-spacing:54.864000px;}
.ls28{letter-spacing:59.321280px;}
.ls8{letter-spacing:59.345280px;}
.ls1c{letter-spacing:59.489280px;}
.lsb{letter-spacing:69.569280px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1e{word-spacing:-72.360000px;}
.ws9{word-spacing:-72.144000px;}
.ws0{word-spacing:-72.000003px;}
.ws8{word-spacing:-72.000000px;}
.wsb{word-spacing:-66.240000px;}
.ws1{word-spacing:-17.100720px;}
.ws4{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.616000px;}
.ws7{word-spacing:-14.544000px;}
.wse{word-spacing:-14.166720px;}
.ws1f{word-spacing:-13.824120px;}
.ws1a{word-spacing:-13.795320px;}
.ws20{word-spacing:-13.668720px;}
.ws19{word-spacing:-13.654320px;}
.ws15{word-spacing:-13.616520px;}
.ws22{word-spacing:-13.553520px;}
.ws18{word-spacing:-13.510320px;}
.ws10{word-spacing:-13.504320px;}
.wsa{word-spacing:-13.446720px;}
.wsc{word-spacing:-13.354320px;}
.ws12{word-spacing:-13.337520px;}
.ws1b{word-spacing:-13.279920px;}
.ws23{word-spacing:-13.230720px;}
.ws17{word-spacing:-13.210320px;}
.ws1d{word-spacing:-13.207920px;}
.ws21{word-spacing:-13.104120px;}
.ws11{word-spacing:-13.098120px;}
.ws16{word-spacing:-13.075320px;}
.ws1c{word-spacing:-13.006320px;}
.ws14{word-spacing:-12.934320px;}
.ws24{word-spacing:-12.636720px;}
.wsd{word-spacing:-11.916720px;}
.wsf{word-spacing:-10.734720px;}
.ws13{word-spacing:-10.128720px;}
.ws5{word-spacing:-8.786880px;}
.ws3{word-spacing:-8.477280px;}
.ws6{word-spacing:0.000000px;}
._4a{margin-left:-8.352000px;}
._1a{margin-left:-5.976000px;}
._3{margin-left:-4.104000px;}
._2{margin-left:-2.448000px;}
._0{margin-left:-1.152000px;}
._1{width:1.008000px;}
._6{width:2.736000px;}
._11{width:3.972000px;}
._5{width:5.256000px;}
._4{width:6.336000px;}
._1c{width:8.064000px;}
._c{width:9.864000px;}
._d{width:10.944000px;}
._30{width:11.952000px;}
._3d{width:13.608000px;}
._4d{width:15.068160px;}
._2b{width:16.200000px;}
._28{width:17.376000px;}
._a{width:18.408000px;}
._b{width:19.776000px;}
._17{width:21.696000px;}
._2f{width:23.376000px;}
._4b{width:24.384000px;}
._2d{width:25.416000px;}
._2c{width:26.544000px;}
._27{width:28.152000px;}
._15{width:29.160000px;}
._16{width:30.240000px;}
._1f{width:31.464000px;}
._12{width:33.408000px;}
._19{width:34.632000px;}
._18{width:36.000000px;}
._3e{width:37.224000px;}
._21{width:38.232000px;}
._20{width:39.456000px;}
._13{width:40.536000px;}
._14{width:41.616000px;}
._2a{width:42.840000px;}
._24{width:44.856000px;}
._25{width:46.584000px;}
._26{width:48.384000px;}
._1b{width:49.896000px;}
._38{width:50.904000px;}
._9{width:52.344000px;}
._7{width:53.760000px;}
._36{width:55.656000px;}
._37{width:56.736000px;}
._10{width:59.184000px;}
._f{width:60.408000px;}
._42{width:62.208000px;}
._3b{width:63.360000px;}
._39{width:65.016000px;}
._43{width:66.096000px;}
._1e{width:67.680000px;}
._46{width:69.192000px;}
._3c{width:70.632000px;}
._2e{width:71.712000px;}
._3a{width:73.656000px;}
._3f{width:75.168000px;}
._40{width:76.176000px;}
._48{width:77.760000px;}
._31{width:79.776000px;}
._4e{width:81.236160px;}
._4c{width:84.024000px;}
._41{width:85.104000px;}
._1d{width:86.184000px;}
._29{width:87.528000px;}
._33{width:91.728000px;}
._32{width:93.168000px;}
._8{width:102.096000px;}
._44{width:110.880000px;}
._45{width:112.464000px;}
._22{width:121.584000px;}
._23{width:122.760000px;}
._47{width:136.728000px;}
._e{width:138.816000px;}
._49{width:142.128000px;}
._34{width:169.392000px;}
._35{width:170.424000px;}
._4f{width:1161.065760px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(2,25,80);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:2.880000px;}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:144.000000px;}
.y6{bottom:-7.200000px;}
.y0{bottom:0.000000px;}
.y296{bottom:0.180000px;}
.y157{bottom:4.674000px;}
.yc2{bottom:4.680000px;}
.y19b{bottom:4.725000px;}
.y1a0{bottom:4.860000px;}
.y116{bottom:5.040000px;}
.ye1{bottom:6.120000px;}
.ydd{bottom:6.300000px;}
.ye5{bottom:6.345000px;}
.ydf{bottom:6.480000px;}
.y5{bottom:7.380000px;}
.y17e{bottom:7.740000px;}
.y125{bottom:9.180000px;}
.y27f{bottom:10.260000px;}
.y198{bottom:10.980000px;}
.y243{bottom:11.520000px;}
.y1a9{bottom:11.700000px;}
.ydb{bottom:12.240000px;}
.y23e{bottom:12.780000px;}
.y287{bottom:13.680000px;}
.y1f1{bottom:13.860000px;}
.y146{bottom:14.760000px;}
.y275{bottom:15.120000px;}
.y1d7{bottom:15.300000px;}
.y270{bottom:16.380000px;}
.y1b6{bottom:16.560000px;}
.y180{bottom:17.100000px;}
.ye8{bottom:18.540000px;}
.y2a2{bottom:19.614000px;}
.y1f2{bottom:20.160000px;}
.y215{bottom:21.060000px;}
.y220{bottom:22.140000px;}
.y22a{bottom:22.500000px;}
.y13b{bottom:24.660000px;}
.y1e6{bottom:24.690000px;}
.y17c{bottom:24.834000px;}
.yc8{bottom:24.840000px;}
.y14d{bottom:24.870000px;}
.y133{bottom:24.885000px;}
.y115{bottom:25.560000px;}
.y27e{bottom:25.740000px;}
.y179{bottom:25.920000px;}
.y261{bottom:26.820000px;}
.y124{bottom:29.340000px;}
.y1a8{bottom:31.860000px;}
.yd9{bottom:33.120000px;}
.y252{bottom:33.840000px;}
.y1f0{bottom:34.020000px;}
.y1b5{bottom:36.720000px;}
.y2af{bottom:39.420000px;}
.y214{bottom:42.300000px;}
.y229{bottom:42.660000px;}
.y121{bottom:42.840000px;}
.y13a{bottom:44.814000px;}
.y142{bottom:44.820000px;}
.y1e5{bottom:44.850000px;}
.y19a{bottom:44.865000px;}
.yed{bottom:44.994000px;}
.yd6{bottom:45.000000px;}
.y14c{bottom:45.030000px;}
.ycb{bottom:45.045000px;}
.y114{bottom:45.720000px;}
.y277{bottom:46.080000px;}
.y241{bottom:46.110000px;}
.y178{bottom:46.125000px;}
.y19e{bottom:46.980000px;}
.y1d5{bottom:47.154000px;}
.y1db{bottom:47.160000px;}
.y1f5{bottom:47.514000px;}
.y1fe{bottom:48.414000px;}
.y123{bottom:49.500000px;}
.y1af{bottom:50.754000px;}
.y1a7{bottom:52.020000px;}
.y251{bottom:53.994000px;}
.y286{bottom:54.000000px;}
.y1ef{bottom:54.180000px;}
.y224{bottom:54.720000px;}
.y1df{bottom:54.930000px;}
.y1b8{bottom:55.980000px;}
.y1b4{bottom:56.874000px;}
.y257{bottom:56.880000px;}
.y3{bottom:57.456000px;}
.y1e9{bottom:59.400000px;}
.y2ae{bottom:59.580000px;}
.y120{bottom:62.820000px;}
.y213{bottom:63.540000px;}
.y139{bottom:64.974000px;}
.y13c{bottom:64.980000px;}
.y1e4{bottom:65.010000px;}
.y10e{bottom:65.025000px;}
.yec{bottom:65.154000px;}
.yf7{bottom:65.160000px;}
.y14b{bottom:65.190000px;}
.y132{bottom:65.205000px;}
.y113{bottom:65.880000px;}
.y289{bottom:66.060000px;}
.yd5{bottom:66.270000px;}
.y177{bottom:66.285000px;}
.y260{bottom:67.140000px;}
.y1a3{bottom:67.320000px;}
.y240{bottom:67.350000px;}
.y219{bottom:67.365000px;}
.y1da{bottom:68.400000px;}
.y1fd{bottom:68.574000px;}
.y1b7{bottom:70.914000px;}
.y200{bottom:71.100000px;}
.y1a6{bottom:72.180000px;}
.y1cb{bottom:73.110000px;}
.y250{bottom:74.154000px;}
.y285{bottom:74.160000px;}
.y1ee{bottom:74.340000px;}
.y22d{bottom:74.694000px;}
.y1e7{bottom:75.090000px;}
.y1b3{bottom:76.854000px;}
.y2{bottom:79.416000px;}
.y253{bottom:79.734000px;}
.y1f3{bottom:79.740000px;}
.y208{bottom:80.460000px;}
.y295{bottom:80.820000px;}
.y28d{bottom:81.360000px;}
.y2a7{bottom:82.440000px;}
.y11f{bottom:82.980000px;}
.y212{bottom:84.780000px;}
.y138{bottom:85.134000px;}
.y141{bottom:85.140000px;}
.y1e3{bottom:85.170000px;}
.y192{bottom:85.185000px;}
.yeb{bottom:85.314000px;}
.y186{bottom:85.320000px;}
.y14a{bottom:85.350000px;}
.y1ac{bottom:85.365000px;}
.yf6{bottom:85.500000px;}
.y24b{bottom:86.034000px;}
.y112{bottom:86.040000px;}
.y18e{bottom:86.070000px;}
.y10d{bottom:86.265000px;}
.y109{bottom:86.400000px;}
.yd4{bottom:86.430000px;}
.y25f{bottom:87.300000px;}
.y235{bottom:87.474000px;}
.y176{bottom:87.525000px;}
.y23f{bottom:88.590000px;}
.y218{bottom:88.605000px;}
.y1fc{bottom:88.734000px;}
.y27d{bottom:91.620000px;}
.y21f{bottom:91.665000px;}
.y1a5{bottom:92.370000px;}
.y2b1{bottom:92.520000px;}
.y1ca{bottom:93.090000px;}
.y24f{bottom:94.314000px;}
.y284{bottom:94.320000px;}
.y1ed{bottom:94.500000px;}
.y1b2{bottom:97.014000px;}
.y1c0{bottom:97.590000px;}
.y2ad{bottom:99.900000px;}
.y207{bottom:100.620000px;}
.y264{bottom:100.800000px;}
.y11e{bottom:103.140000px;}
.y137{bottom:105.294000px;}
.y140{bottom:105.300000px;}
.y1e2{bottom:105.330000px;}
.y191{bottom:105.345000px;}
.y248{bottom:105.480000px;}
.y149{bottom:105.510000px;}
.y185{bottom:105.525000px;}
.yf5{bottom:105.840000px;}
.y111{bottom:106.200000px;}
.y18d{bottom:106.230000px;}
.y10c{bottom:106.425000px;}
.y108{bottom:106.560000px;}
.y26b{bottom:106.740000px;}
.y25e{bottom:107.460000px;}
.y234{bottom:107.634000px;}
.yd3{bottom:107.670000px;}
.y175{bottom:107.685000px;}
.y1ae{bottom:108.036000px;}
.y1fb{bottom:108.894000px;}
.y2b0{bottom:112.680000px;}
.y1c9{bottom:113.250000px;}
.y24e{bottom:114.294000px;}
.y22b{bottom:114.300000px;}
.y24a{bottom:114.336000px;}
.y283{bottom:114.480000px;}
.y1ec{bottom:114.660000px;}
.y32{bottom:115.236000px;}
.y1be{bottom:115.380000px;}
.y135{bottom:115.956000px;}
.y72{bottom:116.136000px;}
.y262{bottom:116.460000px;}
.y1d4{bottom:117.036000px;}
.y1b1{bottom:117.174000px;}
.y9a{bottom:117.396000px;}
.ybb{bottom:118.656000px;}
.y2ac{bottom:119.880000px;}
.y89{bottom:119.916000px;}
.y206{bottom:120.780000px;}
.y294{bottom:120.960000px;}
.y22c{bottom:121.356000px;}
.y110{bottom:122.436000px;}
.y11d{bottom:123.300000px;}
.yea{bottom:123.336000px;}
.y271{bottom:124.956000px;}
.y136{bottom:125.454000px;}
.y13f{bottom:125.460000px;}
.y1e1{bottom:125.490000px;}
.y155{bottom:125.505000px;}
.y247{bottom:125.640000px;}
.y148{bottom:125.670000px;}
.y184{bottom:125.685000px;}
.yf4{bottom:126.180000px;}
.y18c{bottom:126.390000px;}
.y107{bottom:126.720000px;}
.y26a{bottom:126.900000px;}
.y17b{bottom:127.476000px;}
.y25d{bottom:127.620000px;}
.yd2{bottom:127.650000px;}
.y10b{bottom:127.665000px;}
.y233{bottom:127.794000px;}
.y174{bottom:127.845000px;}
.y1fa{bottom:129.054000px;}
.y1c8{bottom:133.410000px;}
.y31{bottom:133.596000px;}
.y24d{bottom:134.454000px;}
.y282{bottom:134.685000px;}
.y1eb{bottom:134.820000px;}
.y2a1{bottom:135.036000px;}
.y1b0{bottom:137.334000px;}
.y71{bottom:138.096000px;}
.y99{bottom:139.356000px;}
.y1ad{bottom:139.365000px;}
.y1f4{bottom:139.716000px;}
.y2ab{bottom:140.040000px;}
.yba{bottom:140.616000px;}
.y205{bottom:140.940000px;}
.y293{bottom:141.120000px;}
.y88{bottom:141.876000px;}
.y228{bottom:143.460000px;}
.y11c{bottom:143.505000px;}
.y13e{bottom:145.620000px;}
.y1e0{bottom:145.650000px;}
.y154{bottom:145.665000px;}
.y246{bottom:145.800000px;}
.y20f{bottom:145.830000px;}
.y183{bottom:145.845000px;}
.yf3{bottom:146.340000px;}
.y18b{bottom:146.550000px;}
.y156{bottom:146.736000px;}
.y269{bottom:146.880000px;}
.y25c{bottom:147.780000px;}
.y232{bottom:147.954000px;}
.y106{bottom:147.960000px;}
.yd1{bottom:148.890000px;}
.y1f9{bottom:149.259000px;}
.y21b{bottom:149.436000px;}
.y30{bottom:151.950000px;}
.y1c7{bottom:153.570000px;}
.y24c{bottom:154.614000px;}
.y1ea{bottom:154.800000px;}
.y281{bottom:154.845000px;}
.y222{bottom:154.980000px;}
.y280{bottom:159.690000px;}
.y70{bottom:160.050000px;}
.y2aa{bottom:160.200000px;}
.y204{bottom:161.100000px;}
.y292{bottom:161.280000px;}
.y98{bottom:161.310000px;}
.yb9{bottom:162.570000px;}
.y227{bottom:163.620000px;}
.y11b{bottom:163.665000px;}
.y87{bottom:163.830000px;}
.y1bc{bottom:165.780000px;}
.y172{bottom:165.810000px;}
.y153{bottom:165.825000px;}
.y245{bottom:165.960000px;}
.y182{bottom:166.005000px;}
.yf2{bottom:166.500000px;}
.y18a{bottom:166.710000px;}
.y268{bottom:167.070000px;}
.y151{bottom:167.790000px;}
.y25b{bottom:167.940000px;}
.y231{bottom:167.979000px;}
.y105{bottom:168.150000px;}
.y1f8{bottom:169.239000px;}
.yd0{bottom:170.130000px;}
.y2f{bottom:170.310000px;}
.y2a0{bottom:171.930000px;}
.y1c6{bottom:173.730000px;}
.y195{bottom:175.710000px;}
.y2a9{bottom:180.405000px;}
.y203{bottom:181.260000px;}
.y291{bottom:181.440000px;}
.y1d3{bottom:181.470000px;}
.y6f{bottom:182.010000px;}
.y97{bottom:183.270000px;}
.y226{bottom:183.810000px;}
.y11a{bottom:183.825000px;}
.yb8{bottom:184.530000px;}
.y86{bottom:185.790000px;}
.y1bb{bottom:185.940000px;}
.y171{bottom:185.970000px;}
.y152{bottom:185.985000px;}
.yf1{bottom:186.660000px;}
.y189{bottom:186.690000px;}
.y267{bottom:187.230000px;}
.y230{bottom:188.139000px;}
.y25a{bottom:188.145000px;}
.y104{bottom:188.310000px;}
.y2e{bottom:188.490000px;}
.y1f7{bottom:189.399000px;}
.y194{bottom:192.090000px;}
.y29f{bottom:192.810000px;}
.y1c5{bottom:193.890000px;}
.y2a8{bottom:200.565000px;}
.y202{bottom:201.420000px;}
.y290{bottom:201.600000px;}
.y1d2{bottom:202.350000px;}
.y225{bottom:203.790000px;}
.y6e{bottom:203.970000px;}
.y119{bottom:203.985000px;}
.y96{bottom:205.410000px;}
.y1ba{bottom:206.100000px;}
.y170{bottom:206.130000px;}
.yb7{bottom:206.490000px;}
.yf0{bottom:206.640000px;}
.y2d{bottom:206.850000px;}
.y266{bottom:207.390000px;}
.y85{bottom:207.750000px;}
.y259{bottom:208.125000px;}
.y22f{bottom:208.299000px;}
.y103{bottom:208.470000px;}
.y1f6{bottom:209.559000px;}
.y1c4{bottom:214.050000px;}
.y29e{bottom:214.770000px;}
.y2c{bottom:219.990000px;}
.y201{bottom:221.580000px;}
.y28f{bottom:221.760000px;}
.y1bd{bottom:222.300000px;}
.y10f{bottom:223.950000px;}
.ye9{bottom:224.850000px;}
.y2b{bottom:225.210000px;}
.y1b9{bottom:226.080000px;}
.y6d{bottom:226.110000px;}
.y28b{bottom:226.260000px;}
.y16f{bottom:226.290000px;}
.y95{bottom:227.370000px;}
.y265{bottom:227.550000px;}
.y258{bottom:228.285000px;}
.yb6{bottom:228.450000px;}
.y22e{bottom:228.459000px;}
.y17a{bottom:228.990000px;}
.y84{bottom:229.710000px;}
.y1c3{bottom:234.210000px;}
.y29d{bottom:235.650000px;}
.y2a{bottom:238.710000px;}
.y28e{bottom:241.920000px;}
.y10a{bottom:244.830000px;}
.ye7{bottom:245.730000px;}
.y16e{bottom:246.270000px;}
.y28a{bottom:246.420000px;}
.y6c{bottom:248.070000px;}
.y102{bottom:248.610000px;}
.y94{bottom:249.330000px;}
.y173{bottom:249.870000px;}
.yb5{bottom:250.410000px;}
.y21a{bottom:250.950000px;}
.y83{bottom:251.670000px;}
.y1c2{bottom:254.370000px;}
.y193{bottom:257.250000px;}
.y134{bottom:257.610000px;}
.y29{bottom:259.590000px;}
.y1ab{bottom:261.570000px;}
.y26f{bottom:263.550000px;}
.ye6{bottom:264.270000px;}
.y16d{bottom:266.430000px;}
.y101{bottom:268.770000px;}
.y6b{bottom:270.030000px;}
.y93{bottom:271.290000px;}
.y217{bottom:271.830000px;}
.yb4{bottom:272.370000px;}
.y82{bottom:273.630000px;}
.y190{bottom:273.810000px;}
.y1c1{bottom:274.530000px;}
.y46{bottom:277.950000px;}
.y131{bottom:278.490000px;}
.y28{bottom:281.550000px;}
.y26e{bottom:283.710000px;}
.y249{bottom:285.150000px;}
.y16c{bottom:286.590000px;}
.ye4{bottom:286.770000px;}
.y100{bottom:288.930000px;}
.y6a{bottom:292.035000px;}
.y92{bottom:293.295000px;}
.yb3{bottom:294.375000px;}
.y81{bottom:295.635000px;}
.y45{bottom:299.955000px;}
.y27{bottom:303.555000px;}
.y26d{bottom:303.915000px;}
.y244{bottom:306.075000px;}
.y16b{bottom:306.750000px;}
.ye3{bottom:308.595000px;}
.y2bd{bottom:309.315000px;}
.yff{bottom:310.170000px;}
.y69{bottom:313.995000px;}
.y91{bottom:316.515000px;}
.y80{bottom:317.595000px;}
.y26c{bottom:320.115000px;}
.y44{bottom:321.915000px;}
.y26{bottom:325.515000px;}
.y16a{bottom:327.990000px;}
.y2bc{bottom:329.835000px;}
.yfe{bottom:330.330000px;}
.ye2{bottom:330.555000px;}
.y27c{bottom:330.735000px;}
.y68{bottom:335.955000px;}
.y90{bottom:338.475000px;}
.y7f{bottom:339.555000px;}
.y43{bottom:343.875000px;}
.y25{bottom:347.475000px;}
.y169{bottom:348.150000px;}
.yfd{bottom:350.490000px;}
.y2bb{bottom:351.795000px;}
.ye0{bottom:352.335000px;}
.y67{bottom:357.915000px;}
.y130{bottom:359.895000px;}
.y8f{bottom:360.435000px;}
.y7e{bottom:361.515000px;}
.y1e8{bottom:365.475000px;}
.y42{bottom:365.835000px;}
.y223{bottom:366.015000px;}
.y168{bottom:368.310000px;}
.y24{bottom:369.435000px;}
.y150{bottom:369.975000px;}
.yfc{bottom:370.650000px;}
.y2ba{bottom:373.755000px;}
.yde{bottom:373.935000px;}
.y216{bottom:377.715000px;}
.y66{bottom:379.875000px;}
.y12f{bottom:380.775000px;}
.y263{bottom:381.315000px;}
.y8e{bottom:382.395000px;}
.y7d{bottom:383.475000px;}
.y1d1{bottom:384.555000px;}
.y41{bottom:387.795000px;}
.y167{bottom:388.470000px;}
.yf9{bottom:388.695000px;}
.yfb{bottom:390.810000px;}
.y14f{bottom:390.855000px;}
.y23{bottom:391.575000px;}
.y158{bottom:393.915000px;}
.y2b9{bottom:395.715000px;}
.ydc{bottom:395.895000px;}
.y211{bottom:398.595000px;}
.y65{bottom:401.835000px;}
.y8d{bottom:404.355000px;}
.y7c{bottom:405.435000px;}
.y166{bottom:408.630000px;}
.y40{bottom:409.755000px;}
.y1d0{bottom:410.115000px;}
.yfa{bottom:410.970000px;}
.y22{bottom:413.535000px;}
.yd8{bottom:417.675000px;}
.y29c{bottom:417.855000px;}
.y12e{bottom:421.095000px;}
.y64{bottom:423.795000px;}
.y8c{bottom:426.315000px;}
.y7b{bottom:427.575000px;}
.y165{bottom:428.835000px;}
.y1cf{bottom:430.275000px;}
.y3f{bottom:432.795000px;}
.y21{bottom:435.495000px;}
.y2b8{bottom:439.635000px;}
.y12d{bottom:441.255000px;}
.y29b{bottom:443.415000px;}
.y1aa{bottom:443.595000px;}
.y63{bottom:445.755000px;}
.yda{bottom:446.115000px;}
.y8b{bottom:448.275000px;}
.y164{bottom:448.995000px;}
.y7a{bottom:449.535000px;}
.y1ce{bottom:450.255000px;}
.y18f{bottom:455.835000px;}
.y20{bottom:457.455000px;}
.y3e{bottom:458.355000px;}
.y12c{bottom:461.415000px;}
.y2b7{bottom:461.595000px;}
.y29a{bottom:463.575000px;}
.y1a4{bottom:464.655000px;}
.y1cd{bottom:466.635000px;}
.yd7{bottom:466.995000px;}
.y62{bottom:467.715000px;}
.y163{bottom:468.975000px;}
.y8a{bottom:470.235000px;}
.y79{bottom:471.495000px;}
.y188{bottom:476.715000px;}
.y1f{bottom:479.415000px;}
.y12b{bottom:481.395000px;}
.y3d{bottom:483.015000px;}
.y2b6{bottom:483.195000px;}
.y299{bottom:483.735000px;}
.ycf{bottom:487.875000px;}
.y162{bottom:489.135000px;}
.y61{bottom:489.675000px;}
.yb2{bottom:492.195000px;}
.y78{bottom:493.455000px;}
.y298{bottom:499.935000px;}
.y1e{bottom:501.375000px;}
.y12a{bottom:502.275000px;}
.y2b5{bottom:503.355000px;}
.y3c{bottom:504.975000px;}
.y1cc{bottom:506.775000px;}
.y242{bottom:508.395000px;}
.y161{bottom:509.295000px;}
.y60{bottom:511.635000px;}
.y14e{bottom:512.355000px;}
.y27b{bottom:512.715000px;}
.yb1{bottom:514.155000px;}
.y77{bottom:515.415000px;}
.y210{bottom:515.955000px;}
.y1d{bottom:523.335000px;}
.y2b4{bottom:523.515000px;}
.y3b{bottom:526.935000px;}
.y1bf{bottom:527.655000px;}
.y129{bottom:528.375000px;}
.y160{bottom:529.455000px;}
.y147{bottom:533.235000px;}
.y27a{bottom:533.595000px;}
.y5f{bottom:533.775000px;}
.yb0{bottom:536.115000px;}
.y1de{bottom:536.655000px;}
.y20e{bottom:536.835000px;}
.y76{bottom:537.375000px;}
.y2b3{bottom:539.715000px;}
.y297{bottom:540.075000px;}
.y1c{bottom:545.295000px;}
.y128{bottom:548.565000px;}
.y3a{bottom:548.925000px;}
.y15f{bottom:549.615000px;}
.y5e{bottom:555.765000px;}
.yaf{bottom:558.105000px;}
.y75{bottom:559.365000px;}
.y28c{bottom:560.985000px;}
.y1b{bottom:567.285000px;}
.y15e{bottom:569.775000px;}
.y127{bottom:569.985000px;}
.y39{bottom:570.885000px;}
.y1a2{bottom:572.505000px;}
.y5d{bottom:577.725000px;}
.yae{bottom:580.065000px;}
.y74{bottom:581.325000px;}
.y1a{bottom:589.245000px;}
.y15d{bottom:589.935000px;}
.y38{bottom:593.025000px;}
.y126{bottom:594.645000px;}
.ybd{bottom:599.685000px;}
.y2b2{bottom:600.225000px;}
.y5c{bottom:600.585000px;}
.yad{bottom:602.025000px;}
.y73{bottom:603.285000px;}
.y221{bottom:606.165000px;}
.y15c{bottom:610.095000px;}
.y19{bottom:611.205000px;}
.y122{bottom:612.285000px;}
.y37{bottom:614.985000px;}
.ybc{bottom:622.545000px;}
.yac{bottom:624.165000px;}
.y256{bottom:625.065000px;}
.y5b{bottom:625.245000px;}
.y15b{bottom:630.255000px;}
.y18{bottom:633.165000px;}
.y279{bottom:634.425000px;}
.y36{bottom:636.945000px;}
.y2a6{bottom:641.265000px;}
.y23d{bottom:641.985000px;}
.yab{bottom:646.125000px;}
.y5a{bottom:647.205000px;}
.y15a{bottom:650.415000px;}
.y17{bottom:655.125000px;}
.y1a1{bottom:656.025000px;}
.y35{bottom:658.905000px;}
.yaa{bottom:668.085000px;}
.y59{bottom:669.165000px;}
.y159{bottom:670.395000px;}
.y23c{bottom:670.965000px;}
.yce{bottom:673.485000px;}
.y145{bottom:675.105000px;}
.y16{bottom:677.085000px;}
.y118{bottom:677.265000px;}
.y34{bottom:680.865000px;}
.ya9{bottom:690.045000px;}
.y58{bottom:691.125000px;}
.ycd{bottom:693.645000px;}
.y19f{bottom:698.145000px;}
.y1dd{bottom:698.505000px;}
.y20d{bottom:698.865000px;}
.y187{bottom:699.765000px;}
.y15{bottom:700.125000px;}
.y33{bottom:702.825000px;}
.ya8{bottom:712.005000px;}
.y57{bottom:713.085000px;}
.y144{bottom:716.145000px;}
.y19d{bottom:719.385000px;}
.y181{bottom:720.645000px;}
.y14{bottom:724.605000px;}
.y20c{bottom:726.225000px;}
.ya7{bottom:733.965000px;}
.y56{bottom:735.225000px;}
.y23b{bottom:735.405000px;}
.y278{bottom:735.765000px;}
.y13{bottom:745.845000px;}
.y20b{bottom:746.385000px;}
.ycc{bottom:754.845000px;}
.ya6{bottom:755.925000px;}
.y23a{bottom:756.465000px;}
.y276{bottom:756.645000px;}
.y55{bottom:757.185000px;}
.y12{bottom:764.205000px;}
.y20a{bottom:766.545000px;}
.yca{bottom:775.725000px;}
.y21e{bottom:777.345000px;}
.ya5{bottom:777.885000px;}
.y54{bottom:779.145000px;}
.y209{bottom:782.745000px;}
.y11{bottom:783.105000px;}
.y19c{bottom:783.825000px;}
.y143{bottom:797.505000px;}
.ya4{bottom:799.845000px;}
.y53{bottom:801.105000px;}
.y199{bottom:804.705000px;}
.y10{bottom:805.245000px;}
.yf8{bottom:816.990000px;}
.y13d{bottom:818.430000px;}
.y288{bottom:819.150000px;}
.ya3{bottom:821.850000px;}
.y52{bottom:823.110000px;}
.yf{bottom:827.070000px;}
.yc9{bottom:836.970000px;}
.yef{bottom:837.870000px;}
.ya2{bottom:843.810000px;}
.y1ff{bottom:843.990000px;}
.y51{bottom:845.070000px;}
.ye{bottom:846.870000px;}
.yc7{bottom:857.850000px;}
.y2a5{bottom:858.030000px;}
.y274{bottom:862.530000px;}
.ya1{bottom:865.770000px;}
.y50{bottom:867.030000px;}
.y255{bottom:869.550000px;}
.y2a4{bottom:878.910000px;}
.yc{bottom:879.630000px;}
.yd{bottom:885.570000px;}
.ya0{bottom:887.730000px;}
.y4f{bottom:888.990000px;}
.y273{bottom:893.850000px;}
.y117{bottom:897.450000px;}
.yc6{bottom:898.170000px;}
.yb{bottom:901.590000px;}
.y17f{bottom:902.850000px;}
.y9f{bottom:909.690000px;}
.y4e{bottom:910.950000px;}
.yc5{bottom:918.330000px;}
.y1dc{bottom:921.570000px;}
.y9e{bottom:931.830000px;}
.y4d{bottom:932.910000px;}
.ya{bottom:936.330000px;}
.yc4{bottom:938.490000px;}
.y1d9{bottom:942.450000px;}
.y9d{bottom:953.790000px;}
.y4c{bottom:954.870000px;}
.yc3{bottom:958.650000px;}
.y21d{bottom:959.370000px;}
.y9{bottom:962.250000px;}
.y239{bottom:964.050000px;}
.y9c{bottom:975.750000px;}
.y4b{bottom:976.830000px;}
.yc1{bottom:979.530000px;}
.y2a3{bottom:979.710000px;}
.y21c{bottom:980.250000px;}
.y238{bottom:984.210000px;}
.y197{bottom:986.730000px;}
.y9b{bottom:997.710000px;}
.y4a{bottom:998.790000px;}
.y272{bottom:1000.410000px;}
.y8{bottom:1003.830000px;}
.y237{bottom:1004.370000px;}
.yc0{bottom:1018.410000px;}
.y196{bottom:1018.590000px;}
.y236{bottom:1020.570000px;}
.y49{bottom:1020.750000px;}
.y1d8{bottom:1028.130000px;}
.ybf{bottom:1039.110000px;}
.y254{bottom:1040.730000px;}
.y48{bottom:1042.890000px;}
.y7{bottom:1047.930000px;}
.y1d6{bottom:1049.010000px;}
.y17d{bottom:1057.830000px;}
.yee{bottom:1060.890000px;}
.ybe{bottom:1062.150000px;}
.y47{bottom:1064.850000px;}
.y1{bottom:1119.240000px;}
.y4{bottom:1123.020000px;}
.h1c{height:2.496094px;}
.h2{height:17.640000px;}
.h11{height:19.980000px;}
.h1e{height:20.016000px;}
.hf{height:20.160000px;}
.h52{height:20.196000px;}
.h38{height:20.340000px;}
.h5f{height:21.240000px;}
.h19{height:21.600000px;}
.h17{height:21.780000px;}
.h1a{height:21.816000px;}
.h18{height:21.960000px;}
.h2f{height:23.076000px;}
.h36{height:26.460000px;}
.h50{height:27.000000px;}
.h16{height:27.720000px;}
.h4f{height:28.260000px;}
.h3{height:28.980000px;}
.h59{height:30.420000px;}
.h57{height:31.860000px;}
.h41{height:31.896000px;}
.h30{height:32.580000px;}
.h60{height:36.180000px;}
.h7{height:36.193359px;}
.hc{height:38.671172px;}
.h3f{height:40.140000px;}
.h54{height:40.176000px;}
.h12{height:40.320000px;}
.h48{height:40.356000px;}
.h39{height:41.400000px;}
.h15{height:48.600000px;}
.ha{height:51.793945px;}
.h34{height:57.248437px;}
.h8{height:57.410156px;}
.h10{height:57.507187px;}
.hd{height:59.439023px;}
.h61{height:60.300000px;}
.h35{height:60.480000px;}
.h13{height:60.516000px;}
.h6{height:62.402344px;}
.he{height:62.507812px;}
.h37{height:63.540000px;}
.h40{height:63.720000px;}
.h25{height:64.980000px;}
.h1{height:65.884219px;}
.h9{height:71.613281px;}
.h5{height:73.010742px;}
.hb{height:73.134141px;}
.h28{height:80.460000px;}
.h58{height:80.496000px;}
.h26{height:80.676000px;}
.h3a{height:82.800000px;}
.h42{height:84.960000px;}
.h1d{height:100.620000px;}
.h4c{height:100.656000px;}
.h22{height:100.800000px;}
.h5a{height:100.836000px;}
.h4b{height:105.156000px;}
.h3b{height:107.856000px;}
.h4a{height:116.640000px;}
.h2b{height:120.780000px;}
.h4{height:124.804688px;}
.h27{height:140.940000px;}
.h2a{height:141.156000px;}
.h23{height:141.660000px;}
.h21{height:143.136000px;}
.h2e{height:143.316000px;}
.h3c{height:152.820000px;}
.h29{height:161.100000px;}
.h44{height:161.130000px;}
.h49{height:161.310000px;}
.h53{height:170.100000px;}
.h45{height:170.280000px;}
.h5c{height:170.310000px;}
.h5b{height:181.260000px;}
.h33{height:181.290000px;}
.h31{height:181.470000px;}
.h14{height:185.610000px;}
.h2c{height:201.270000px;}
.h51{height:201.420000px;}
.h43{height:201.450000px;}
.h62{height:216.030000px;}
.h24{height:219.450000px;}
.h1b{height:220.530000px;}
.h1f{height:222.120000px;}
.h32{height:222.330000px;}
.h46{height:225.030000px;}
.h47{height:236.910000px;}
.h4d{height:239.430000px;}
.h3d{height:241.560000px;}
.h56{height:243.030000px;}
.h55{height:243.750000px;}
.h4e{height:243.930000px;}
.h5e{height:257.430000px;}
.h5d{height:261.750000px;}
.h3e{height:289.875000px;}
.h20{height:427.575000px;}
.h2d{height:686.985000px;}
.h0{height:1188.000000px;}
.wf{width:63.936000px;}
.w19{width:74.376000px;}
.w1e{width:74.556000px;}
.w17{width:74.700000px;}
.w14{width:74.916000px;}
.w12{width:75.060000px;}
.w1d{width:87.300000px;}
.w1b{width:87.480000px;}
.w9{width:95.760000px;}
.w7{width:103.176000px;}
.w8{width:111.996000px;}
.wc{width:255.270000px;}
.w1a{width:261.615000px;}
.w1c{width:261.795000px;}
.w11{width:274.035000px;}
.w16{width:274.215000px;}
.w6{width:310.935000px;}
.w15{width:324.030000px;}
.w1f{width:324.210000px;}
.w10{width:324.570000px;}
.w2{width:371.955000px;}
.w5{width:396.255000px;}
.wb{width:467.925000px;}
.wd{width:627.405000px;}
.wa{width:723.210000px;}
.w4{width:723.390000px;}
.we{width:737.610000px;}
.w13{width:747.870000px;}
.w18{width:748.050000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x33{left:-16.380000px;}
.x0{left:0.000000px;}
.x6d{left:4.860000px;}
.x2c{left:8.136000px;}
.x4{left:10.800000px;}
.x49{left:13.536000px;}
.x5c{left:14.760000px;}
.x50{left:16.020000px;}
.x67{left:20.016000px;}
.x3e{left:21.780000px;}
.x4f{left:24.660000px;}
.x29{left:27.570000px;}
.x6b{left:30.780000px;}
.x6e{left:31.860000px;}
.x23{left:37.656000px;}
.x64{left:40.500000px;}
.x30{left:42.840000px;}
.x2f{left:47.160000px;}
.x2d{left:50.610000px;}
.x2e{left:55.440000px;}
.x68{left:57.780000px;}
.x69{left:60.330000px;}
.x4d{left:64.110000px;}
.x55{left:66.600000px;}
.x3d{left:73.440000px;}
.x4b{left:80.634000px;}
.x61{left:83.190000px;}
.x1{left:84.959986px;}
.x9{left:88.199986px;}
.x14{left:89.819973px;}
.x25{left:93.060000px;}
.x15{left:94.715986px;}
.x44{left:95.796000px;}
.x7{left:104.975986px;}
.x18{left:106.235986px;}
.x28{left:108.030000px;}
.x1e{left:111.995986px;}
.x63{left:116.640000px;}
.x6{left:121.175986px;}
.x5{left:124.055986px;}
.x51{left:131.970000px;}
.x53{left:137.010000px;}
.x1d{left:138.995986px;}
.x4a{left:148.896000px;}
.x6c{left:157.170000px;}
.x3b{left:159.150000px;}
.x26{left:162.750000px;}
.x45{left:164.910000px;}
.x60{left:168.510000px;}
.x56{left:170.130000px;}
.x42{left:175.710000px;}
.x66{left:194.970000px;}
.x3f{left:205.050000px;}
.x31{left:208.515000px;}
.x52{left:218.595000px;}
.x65{left:220.755000px;}
.x46{left:224.535000px;}
.x5d{left:225.975000px;}
.x57{left:227.235000px;}
.x48{left:230.835000px;}
.x62{left:233.175000px;}
.x54{left:235.695000px;}
.x3a{left:240.015000px;}
.x38{left:243.075000px;}
.x5e{left:244.515000px;}
.x5f{left:245.775000px;}
.x47{left:249.195000px;}
.x20{left:250.815000px;}
.x58{left:251.895000px;}
.x24{left:255.495000px;}
.x59{left:260.355000px;}
.x43{left:267.555000px;}
.x39{left:269.895000px;}
.xf{left:273.089986px;}
.x21{left:276.375000px;}
.x36{left:280.335000px;}
.x37{left:281.595000px;}
.x40{left:289.875000px;}
.x32{left:296.175000px;}
.x13{left:301.034986px;}
.x41{left:304.095000px;}
.x35{left:307.875000px;}
.x34{left:309.855000px;}
.x22{left:313.815000px;}
.x12{left:320.294986px;}
.x11{left:321.734986px;}
.xa{left:376.994986px;}
.xd{left:388.694986px;}
.x8{left:440.174986px;}
.xe{left:458.894986px;}
.x10{left:468.074986px;}
.x4c{left:473.475000px;}
.x5a{left:483.915000px;}
.x16{left:485.534986px;}
.x27{left:489.315000px;}
.x19{left:506.804986px;}
.x1a{left:512.564986px;}
.xb{left:535.244973px;}
.x1b{left:539.564986px;}
.xc{left:540.824986px;}
.x3{left:546.045000px;}
.x3c{left:552.885000px;}
.x2a{left:592.485000px;}
.x2b{left:704.490000px;}
.x6a{left:745.530000px;}
.x4e{left:747.510000px;}
.x5b{left:758.130000px;}
.x1c{left:809.969986px;}
.x17{left:811.409986px;}
.x2{left:812.849986px;}
.x1f{left:815.189986px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-2.949333pt;}
.ls10{letter-spacing:-2.410667pt;}
.lsa{letter-spacing:-1.360000pt;}
.ls21{letter-spacing:-1.072000pt;}
.ls1b{letter-spacing:-1.013333pt;}
.ls20{letter-spacing:-0.842667pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls15{letter-spacing:-0.455467pt;}
.ls19{letter-spacing:-0.432533pt;}
.ls23{letter-spacing:-0.391467pt;}
.ls17{letter-spacing:-0.330133pt;}
.ls12{letter-spacing:-0.309867pt;}
.ls2c{letter-spacing:-0.304533pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.212267pt;}
.ls18{letter-spacing:-0.210133pt;}
.ls1f{letter-spacing:-0.199467pt;}
.ls2f{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.148267pt;}
.ls13{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.082133pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000003pt;}
.ls0{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.051200pt;}
.ls1a{letter-spacing:0.056533pt;}
.ls2e{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.150933pt;}
.ls30{letter-spacing:0.176640pt;}
.ls1d{letter-spacing:0.184533pt;}
.ls2b{letter-spacing:0.197333pt;}
.ls25{letter-spacing:0.271360pt;}
.ls1e{letter-spacing:0.309867pt;}
.ls27{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.335467pt;}
.lsf{letter-spacing:0.640000pt;}
.ls2a{letter-spacing:0.911360pt;}
.lsd{letter-spacing:4.047360pt;}
.ls26{letter-spacing:19.471360pt;}
.ls2d{letter-spacing:31.631360pt;}
.lsc{letter-spacing:32.911360pt;}
.lse{letter-spacing:42.511360pt;}
.ls4{letter-spacing:46.336000pt;}
.ls5{letter-spacing:48.768000pt;}
.ls28{letter-spacing:52.730027pt;}
.ls8{letter-spacing:52.751360pt;}
.ls1c{letter-spacing:52.879360pt;}
.lsb{letter-spacing:61.839360pt;}
.ws1e{word-spacing:-64.320000pt;}
.ws9{word-spacing:-64.128000pt;}
.ws0{word-spacing:-64.000003pt;}
.ws8{word-spacing:-64.000000pt;}
.wsb{word-spacing:-58.880000pt;}
.ws1{word-spacing:-15.200640pt;}
.ws4{word-spacing:-13.306880pt;}
.ws2{word-spacing:-12.992000pt;}
.ws7{word-spacing:-12.928000pt;}
.wse{word-spacing:-12.592640pt;}
.ws1f{word-spacing:-12.288107pt;}
.ws1a{word-spacing:-12.262507pt;}
.ws20{word-spacing:-12.149973pt;}
.ws19{word-spacing:-12.137173pt;}
.ws15{word-spacing:-12.103573pt;}
.ws22{word-spacing:-12.047573pt;}
.ws18{word-spacing:-12.009173pt;}
.ws10{word-spacing:-12.003840pt;}
.wsa{word-spacing:-11.952640pt;}
.wsc{word-spacing:-11.870507pt;}
.ws12{word-spacing:-11.855573pt;}
.ws1b{word-spacing:-11.804373pt;}
.ws23{word-spacing:-11.760640pt;}
.ws17{word-spacing:-11.742507pt;}
.ws1d{word-spacing:-11.740373pt;}
.ws21{word-spacing:-11.648107pt;}
.ws11{word-spacing:-11.642773pt;}
.ws16{word-spacing:-11.622507pt;}
.ws1c{word-spacing:-11.561173pt;}
.ws14{word-spacing:-11.497173pt;}
.ws24{word-spacing:-11.232640pt;}
.wsd{word-spacing:-10.592640pt;}
.wsf{word-spacing:-9.541973pt;}
.ws13{word-spacing:-9.003307pt;}
.ws5{word-spacing:-7.810560pt;}
.ws3{word-spacing:-7.535360pt;}
.ws6{word-spacing:0.000000pt;}
._4a{margin-left:-7.424000pt;}
._1a{margin-left:-5.312000pt;}
._3{margin-left:-3.648000pt;}
._2{margin-left:-2.176000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.896000pt;}
._6{width:2.432000pt;}
._11{width:3.530667pt;}
._5{width:4.672000pt;}
._4{width:5.632000pt;}
._1c{width:7.168000pt;}
._c{width:8.768000pt;}
._d{width:9.728000pt;}
._30{width:10.624000pt;}
._3d{width:12.096000pt;}
._4d{width:13.393920pt;}
._2b{width:14.400000pt;}
._28{width:15.445333pt;}
._a{width:16.362667pt;}
._b{width:17.578667pt;}
._17{width:19.285333pt;}
._2f{width:20.778667pt;}
._4b{width:21.674667pt;}
._2d{width:22.592000pt;}
._2c{width:23.594667pt;}
._27{width:25.024000pt;}
._15{width:25.920000pt;}
._16{width:26.880000pt;}
._1f{width:27.968000pt;}
._12{width:29.696000pt;}
._19{width:30.784000pt;}
._18{width:32.000000pt;}
._3e{width:33.088000pt;}
._21{width:33.984000pt;}
._20{width:35.072000pt;}
._13{width:36.032000pt;}
._14{width:36.992000pt;}
._2a{width:38.080000pt;}
._24{width:39.872000pt;}
._25{width:41.408000pt;}
._26{width:43.008000pt;}
._1b{width:44.352000pt;}
._38{width:45.248000pt;}
._9{width:46.528000pt;}
._7{width:47.786667pt;}
._36{width:49.472000pt;}
._37{width:50.432000pt;}
._10{width:52.608000pt;}
._f{width:53.696000pt;}
._42{width:55.296000pt;}
._3b{width:56.320000pt;}
._39{width:57.792000pt;}
._43{width:58.752000pt;}
._1e{width:60.160000pt;}
._46{width:61.504000pt;}
._3c{width:62.784000pt;}
._2e{width:63.744000pt;}
._3a{width:65.472000pt;}
._3f{width:66.816000pt;}
._40{width:67.712000pt;}
._48{width:69.120000pt;}
._31{width:70.912000pt;}
._4e{width:72.209920pt;}
._4c{width:74.688000pt;}
._41{width:75.648000pt;}
._1d{width:76.608000pt;}
._29{width:77.802667pt;}
._33{width:81.536000pt;}
._32{width:82.816000pt;}
._8{width:90.752000pt;}
._44{width:98.560000pt;}
._45{width:99.968000pt;}
._22{width:108.074667pt;}
._23{width:109.120000pt;}
._47{width:121.536000pt;}
._e{width:123.392000pt;}
._49{width:126.336000pt;}
._34{width:150.570667pt;}
._35{width:151.488000pt;}
._4f{width:1032.058453pt;}
.fs8{font-size:2.560000pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:128.000000pt;}
.y6{bottom:-6.400000pt;}
.y0{bottom:0.000000pt;}
.y296{bottom:0.160000pt;}
.y157{bottom:4.154667pt;}
.yc2{bottom:4.160000pt;}
.y19b{bottom:4.200000pt;}
.y1a0{bottom:4.320000pt;}
.y116{bottom:4.480000pt;}
.ye1{bottom:5.440000pt;}
.ydd{bottom:5.600000pt;}
.ye5{bottom:5.640000pt;}
.ydf{bottom:5.760000pt;}
.y5{bottom:6.560000pt;}
.y17e{bottom:6.880000pt;}
.y125{bottom:8.160000pt;}
.y27f{bottom:9.120000pt;}
.y198{bottom:9.760000pt;}
.y243{bottom:10.240000pt;}
.y1a9{bottom:10.400000pt;}
.ydb{bottom:10.880000pt;}
.y23e{bottom:11.360000pt;}
.y287{bottom:12.160000pt;}
.y1f1{bottom:12.320000pt;}
.y146{bottom:13.120000pt;}
.y275{bottom:13.440000pt;}
.y1d7{bottom:13.600000pt;}
.y270{bottom:14.560000pt;}
.y1b6{bottom:14.720000pt;}
.y180{bottom:15.200000pt;}
.ye8{bottom:16.480000pt;}
.y2a2{bottom:17.434667pt;}
.y1f2{bottom:17.920000pt;}
.y215{bottom:18.720000pt;}
.y220{bottom:19.680000pt;}
.y22a{bottom:20.000000pt;}
.y13b{bottom:21.920000pt;}
.y1e6{bottom:21.946667pt;}
.y17c{bottom:22.074667pt;}
.yc8{bottom:22.080000pt;}
.y14d{bottom:22.106667pt;}
.y133{bottom:22.120000pt;}
.y115{bottom:22.720000pt;}
.y27e{bottom:22.880000pt;}
.y179{bottom:23.040000pt;}
.y261{bottom:23.840000pt;}
.y124{bottom:26.080000pt;}
.y1a8{bottom:28.320000pt;}
.yd9{bottom:29.440000pt;}
.y252{bottom:30.080000pt;}
.y1f0{bottom:30.240000pt;}
.y1b5{bottom:32.640000pt;}
.y2af{bottom:35.040000pt;}
.y214{bottom:37.600000pt;}
.y229{bottom:37.920000pt;}
.y121{bottom:38.080000pt;}
.y13a{bottom:39.834667pt;}
.y142{bottom:39.840000pt;}
.y1e5{bottom:39.866667pt;}
.y19a{bottom:39.880000pt;}
.yed{bottom:39.994667pt;}
.yd6{bottom:40.000000pt;}
.y14c{bottom:40.026667pt;}
.ycb{bottom:40.040000pt;}
.y114{bottom:40.640000pt;}
.y277{bottom:40.960000pt;}
.y241{bottom:40.986667pt;}
.y178{bottom:41.000000pt;}
.y19e{bottom:41.760000pt;}
.y1d5{bottom:41.914667pt;}
.y1db{bottom:41.920000pt;}
.y1f5{bottom:42.234667pt;}
.y1fe{bottom:43.034667pt;}
.y123{bottom:44.000000pt;}
.y1af{bottom:45.114667pt;}
.y1a7{bottom:46.240000pt;}
.y251{bottom:47.994667pt;}
.y286{bottom:48.000000pt;}
.y1ef{bottom:48.160000pt;}
.y224{bottom:48.640000pt;}
.y1df{bottom:48.826667pt;}
.y1b8{bottom:49.760000pt;}
.y1b4{bottom:50.554667pt;}
.y257{bottom:50.560000pt;}
.y3{bottom:51.072000pt;}
.y1e9{bottom:52.800000pt;}
.y2ae{bottom:52.960000pt;}
.y120{bottom:55.840000pt;}
.y213{bottom:56.480000pt;}
.y139{bottom:57.754667pt;}
.y13c{bottom:57.760000pt;}
.y1e4{bottom:57.786667pt;}
.y10e{bottom:57.800000pt;}
.yec{bottom:57.914667pt;}
.yf7{bottom:57.920000pt;}
.y14b{bottom:57.946667pt;}
.y132{bottom:57.960000pt;}
.y113{bottom:58.560000pt;}
.y289{bottom:58.720000pt;}
.yd5{bottom:58.906667pt;}
.y177{bottom:58.920000pt;}
.y260{bottom:59.680000pt;}
.y1a3{bottom:59.840000pt;}
.y240{bottom:59.866667pt;}
.y219{bottom:59.880000pt;}
.y1da{bottom:60.800000pt;}
.y1fd{bottom:60.954667pt;}
.y1b7{bottom:63.034667pt;}
.y200{bottom:63.200000pt;}
.y1a6{bottom:64.160000pt;}
.y1cb{bottom:64.986667pt;}
.y250{bottom:65.914667pt;}
.y285{bottom:65.920000pt;}
.y1ee{bottom:66.080000pt;}
.y22d{bottom:66.394667pt;}
.y1e7{bottom:66.746667pt;}
.y1b3{bottom:68.314667pt;}
.y2{bottom:70.592000pt;}
.y253{bottom:70.874667pt;}
.y1f3{bottom:70.880000pt;}
.y208{bottom:71.520000pt;}
.y295{bottom:71.840000pt;}
.y28d{bottom:72.320000pt;}
.y2a7{bottom:73.280000pt;}
.y11f{bottom:73.760000pt;}
.y212{bottom:75.360000pt;}
.y138{bottom:75.674667pt;}
.y141{bottom:75.680000pt;}
.y1e3{bottom:75.706667pt;}
.y192{bottom:75.720000pt;}
.yeb{bottom:75.834667pt;}
.y186{bottom:75.840000pt;}
.y14a{bottom:75.866667pt;}
.y1ac{bottom:75.880000pt;}
.yf6{bottom:76.000000pt;}
.y24b{bottom:76.474667pt;}
.y112{bottom:76.480000pt;}
.y18e{bottom:76.506667pt;}
.y10d{bottom:76.680000pt;}
.y109{bottom:76.800000pt;}
.yd4{bottom:76.826667pt;}
.y25f{bottom:77.600000pt;}
.y235{bottom:77.754667pt;}
.y176{bottom:77.800000pt;}
.y23f{bottom:78.746667pt;}
.y218{bottom:78.760000pt;}
.y1fc{bottom:78.874667pt;}
.y27d{bottom:81.440000pt;}
.y21f{bottom:81.480000pt;}
.y1a5{bottom:82.106667pt;}
.y2b1{bottom:82.240000pt;}
.y1ca{bottom:82.746667pt;}
.y24f{bottom:83.834667pt;}
.y284{bottom:83.840000pt;}
.y1ed{bottom:84.000000pt;}
.y1b2{bottom:86.234667pt;}
.y1c0{bottom:86.746667pt;}
.y2ad{bottom:88.800000pt;}
.y207{bottom:89.440000pt;}
.y264{bottom:89.600000pt;}
.y11e{bottom:91.680000pt;}
.y137{bottom:93.594667pt;}
.y140{bottom:93.600000pt;}
.y1e2{bottom:93.626667pt;}
.y191{bottom:93.640000pt;}
.y248{bottom:93.760000pt;}
.y149{bottom:93.786667pt;}
.y185{bottom:93.800000pt;}
.yf5{bottom:94.080000pt;}
.y111{bottom:94.400000pt;}
.y18d{bottom:94.426667pt;}
.y10c{bottom:94.600000pt;}
.y108{bottom:94.720000pt;}
.y26b{bottom:94.880000pt;}
.y25e{bottom:95.520000pt;}
.y234{bottom:95.674667pt;}
.yd3{bottom:95.706667pt;}
.y175{bottom:95.720000pt;}
.y1ae{bottom:96.032000pt;}
.y1fb{bottom:96.794667pt;}
.y2b0{bottom:100.160000pt;}
.y1c9{bottom:100.666667pt;}
.y24e{bottom:101.594667pt;}
.y22b{bottom:101.600000pt;}
.y24a{bottom:101.632000pt;}
.y283{bottom:101.760000pt;}
.y1ec{bottom:101.920000pt;}
.y32{bottom:102.432000pt;}
.y1be{bottom:102.560000pt;}
.y135{bottom:103.072000pt;}
.y72{bottom:103.232000pt;}
.y262{bottom:103.520000pt;}
.y1d4{bottom:104.032000pt;}
.y1b1{bottom:104.154667pt;}
.y9a{bottom:104.352000pt;}
.ybb{bottom:105.472000pt;}
.y2ac{bottom:106.560000pt;}
.y89{bottom:106.592000pt;}
.y206{bottom:107.360000pt;}
.y294{bottom:107.520000pt;}
.y22c{bottom:107.872000pt;}
.y110{bottom:108.832000pt;}
.y11d{bottom:109.600000pt;}
.yea{bottom:109.632000pt;}
.y271{bottom:111.072000pt;}
.y136{bottom:111.514667pt;}
.y13f{bottom:111.520000pt;}
.y1e1{bottom:111.546667pt;}
.y155{bottom:111.560000pt;}
.y247{bottom:111.680000pt;}
.y148{bottom:111.706667pt;}
.y184{bottom:111.720000pt;}
.yf4{bottom:112.160000pt;}
.y18c{bottom:112.346667pt;}
.y107{bottom:112.640000pt;}
.y26a{bottom:112.800000pt;}
.y17b{bottom:113.312000pt;}
.y25d{bottom:113.440000pt;}
.yd2{bottom:113.466667pt;}
.y10b{bottom:113.480000pt;}
.y233{bottom:113.594667pt;}
.y174{bottom:113.640000pt;}
.y1fa{bottom:114.714667pt;}
.y1c8{bottom:118.586667pt;}
.y31{bottom:118.752000pt;}
.y24d{bottom:119.514667pt;}
.y282{bottom:119.720000pt;}
.y1eb{bottom:119.840000pt;}
.y2a1{bottom:120.032000pt;}
.y1b0{bottom:122.074667pt;}
.y71{bottom:122.752000pt;}
.y99{bottom:123.872000pt;}
.y1ad{bottom:123.880000pt;}
.y1f4{bottom:124.192000pt;}
.y2ab{bottom:124.480000pt;}
.yba{bottom:124.992000pt;}
.y205{bottom:125.280000pt;}
.y293{bottom:125.440000pt;}
.y88{bottom:126.112000pt;}
.y228{bottom:127.520000pt;}
.y11c{bottom:127.560000pt;}
.y13e{bottom:129.440000pt;}
.y1e0{bottom:129.466667pt;}
.y154{bottom:129.480000pt;}
.y246{bottom:129.600000pt;}
.y20f{bottom:129.626667pt;}
.y183{bottom:129.640000pt;}
.yf3{bottom:130.080000pt;}
.y18b{bottom:130.266667pt;}
.y156{bottom:130.432000pt;}
.y269{bottom:130.560000pt;}
.y25c{bottom:131.360000pt;}
.y232{bottom:131.514667pt;}
.y106{bottom:131.520000pt;}
.yd1{bottom:132.346667pt;}
.y1f9{bottom:132.674667pt;}
.y21b{bottom:132.832000pt;}
.y30{bottom:135.066667pt;}
.y1c7{bottom:136.506667pt;}
.y24c{bottom:137.434667pt;}
.y1ea{bottom:137.600000pt;}
.y281{bottom:137.640000pt;}
.y222{bottom:137.760000pt;}
.y280{bottom:141.946667pt;}
.y70{bottom:142.266667pt;}
.y2aa{bottom:142.400000pt;}
.y204{bottom:143.200000pt;}
.y292{bottom:143.360000pt;}
.y98{bottom:143.386667pt;}
.yb9{bottom:144.506667pt;}
.y227{bottom:145.440000pt;}
.y11b{bottom:145.480000pt;}
.y87{bottom:145.626667pt;}
.y1bc{bottom:147.360000pt;}
.y172{bottom:147.386667pt;}
.y153{bottom:147.400000pt;}
.y245{bottom:147.520000pt;}
.y182{bottom:147.560000pt;}
.yf2{bottom:148.000000pt;}
.y18a{bottom:148.186667pt;}
.y268{bottom:148.506667pt;}
.y151{bottom:149.146667pt;}
.y25b{bottom:149.280000pt;}
.y231{bottom:149.314667pt;}
.y105{bottom:149.466667pt;}
.y1f8{bottom:150.434667pt;}
.yd0{bottom:151.226667pt;}
.y2f{bottom:151.386667pt;}
.y2a0{bottom:152.826667pt;}
.y1c6{bottom:154.426667pt;}
.y195{bottom:156.186667pt;}
.y2a9{bottom:160.360000pt;}
.y203{bottom:161.120000pt;}
.y291{bottom:161.280000pt;}
.y1d3{bottom:161.306667pt;}
.y6f{bottom:161.786667pt;}
.y97{bottom:162.906667pt;}
.y226{bottom:163.386667pt;}
.y11a{bottom:163.400000pt;}
.yb8{bottom:164.026667pt;}
.y86{bottom:165.146667pt;}
.y1bb{bottom:165.280000pt;}
.y171{bottom:165.306667pt;}
.y152{bottom:165.320000pt;}
.yf1{bottom:165.920000pt;}
.y189{bottom:165.946667pt;}
.y267{bottom:166.426667pt;}
.y230{bottom:167.234667pt;}
.y25a{bottom:167.240000pt;}
.y104{bottom:167.386667pt;}
.y2e{bottom:167.546667pt;}
.y1f7{bottom:168.354667pt;}
.y194{bottom:170.746667pt;}
.y29f{bottom:171.386667pt;}
.y1c5{bottom:172.346667pt;}
.y2a8{bottom:178.280000pt;}
.y202{bottom:179.040000pt;}
.y290{bottom:179.200000pt;}
.y1d2{bottom:179.866667pt;}
.y225{bottom:181.146667pt;}
.y6e{bottom:181.306667pt;}
.y119{bottom:181.320000pt;}
.y96{bottom:182.586667pt;}
.y1ba{bottom:183.200000pt;}
.y170{bottom:183.226667pt;}
.yb7{bottom:183.546667pt;}
.yf0{bottom:183.680000pt;}
.y2d{bottom:183.866667pt;}
.y266{bottom:184.346667pt;}
.y85{bottom:184.666667pt;}
.y259{bottom:185.000000pt;}
.y22f{bottom:185.154667pt;}
.y103{bottom:185.306667pt;}
.y1f6{bottom:186.274667pt;}
.y1c4{bottom:190.266667pt;}
.y29e{bottom:190.906667pt;}
.y2c{bottom:195.546667pt;}
.y201{bottom:196.960000pt;}
.y28f{bottom:197.120000pt;}
.y1bd{bottom:197.600000pt;}
.y10f{bottom:199.066667pt;}
.ye9{bottom:199.866667pt;}
.y2b{bottom:200.186667pt;}
.y1b9{bottom:200.960000pt;}
.y6d{bottom:200.986667pt;}
.y28b{bottom:201.120000pt;}
.y16f{bottom:201.146667pt;}
.y95{bottom:202.106667pt;}
.y265{bottom:202.266667pt;}
.y258{bottom:202.920000pt;}
.yb6{bottom:203.066667pt;}
.y22e{bottom:203.074667pt;}
.y17a{bottom:203.546667pt;}
.y84{bottom:204.186667pt;}
.y1c3{bottom:208.186667pt;}
.y29d{bottom:209.466667pt;}
.y2a{bottom:212.186667pt;}
.y28e{bottom:215.040000pt;}
.y10a{bottom:217.626667pt;}
.ye7{bottom:218.426667pt;}
.y16e{bottom:218.906667pt;}
.y28a{bottom:219.040000pt;}
.y6c{bottom:220.506667pt;}
.y102{bottom:220.986667pt;}
.y94{bottom:221.626667pt;}
.y173{bottom:222.106667pt;}
.yb5{bottom:222.586667pt;}
.y21a{bottom:223.066667pt;}
.y83{bottom:223.706667pt;}
.y1c2{bottom:226.106667pt;}
.y193{bottom:228.666667pt;}
.y134{bottom:228.986667pt;}
.y29{bottom:230.746667pt;}
.y1ab{bottom:232.506667pt;}
.y26f{bottom:234.266667pt;}
.ye6{bottom:234.906667pt;}
.y16d{bottom:236.826667pt;}
.y101{bottom:238.906667pt;}
.y6b{bottom:240.026667pt;}
.y93{bottom:241.146667pt;}
.y217{bottom:241.626667pt;}
.yb4{bottom:242.106667pt;}
.y82{bottom:243.226667pt;}
.y190{bottom:243.386667pt;}
.y1c1{bottom:244.026667pt;}
.y46{bottom:247.066667pt;}
.y131{bottom:247.546667pt;}
.y28{bottom:250.266667pt;}
.y26e{bottom:252.186667pt;}
.y249{bottom:253.466667pt;}
.y16c{bottom:254.746667pt;}
.ye4{bottom:254.906667pt;}
.y100{bottom:256.826667pt;}
.y6a{bottom:259.586667pt;}
.y92{bottom:260.706667pt;}
.yb3{bottom:261.666667pt;}
.y81{bottom:262.786667pt;}
.y45{bottom:266.626667pt;}
.y27{bottom:269.826667pt;}
.y26d{bottom:270.146667pt;}
.y244{bottom:272.066667pt;}
.y16b{bottom:272.666667pt;}
.ye3{bottom:274.306667pt;}
.y2bd{bottom:274.946667pt;}
.yff{bottom:275.706667pt;}
.y69{bottom:279.106667pt;}
.y91{bottom:281.346667pt;}
.y80{bottom:282.306667pt;}
.y26c{bottom:284.546667pt;}
.y44{bottom:286.146667pt;}
.y26{bottom:289.346667pt;}
.y16a{bottom:291.546667pt;}
.y2bc{bottom:293.186667pt;}
.yfe{bottom:293.626667pt;}
.ye2{bottom:293.826667pt;}
.y27c{bottom:293.986667pt;}
.y68{bottom:298.626667pt;}
.y90{bottom:300.866667pt;}
.y7f{bottom:301.826667pt;}
.y43{bottom:305.666667pt;}
.y25{bottom:308.866667pt;}
.y169{bottom:309.466667pt;}
.yfd{bottom:311.546667pt;}
.y2bb{bottom:312.706667pt;}
.ye0{bottom:313.186667pt;}
.y67{bottom:318.146667pt;}
.y130{bottom:319.906667pt;}
.y8f{bottom:320.386667pt;}
.y7e{bottom:321.346667pt;}
.y1e8{bottom:324.866667pt;}
.y42{bottom:325.186667pt;}
.y223{bottom:325.346667pt;}
.y168{bottom:327.386667pt;}
.y24{bottom:328.386667pt;}
.y150{bottom:328.866667pt;}
.yfc{bottom:329.466667pt;}
.y2ba{bottom:332.226667pt;}
.yde{bottom:332.386667pt;}
.y216{bottom:335.746667pt;}
.y66{bottom:337.666667pt;}
.y12f{bottom:338.466667pt;}
.y263{bottom:338.946667pt;}
.y8e{bottom:339.906667pt;}
.y7d{bottom:340.866667pt;}
.y1d1{bottom:341.826667pt;}
.y41{bottom:344.706667pt;}
.y167{bottom:345.306667pt;}
.yf9{bottom:345.506667pt;}
.yfb{bottom:347.386667pt;}
.y14f{bottom:347.426667pt;}
.y23{bottom:348.066667pt;}
.y158{bottom:350.146667pt;}
.y2b9{bottom:351.746667pt;}
.ydc{bottom:351.906667pt;}
.y211{bottom:354.306667pt;}
.y65{bottom:357.186667pt;}
.y8d{bottom:359.426667pt;}
.y7c{bottom:360.386667pt;}
.y166{bottom:363.226667pt;}
.y40{bottom:364.226667pt;}
.y1d0{bottom:364.546667pt;}
.yfa{bottom:365.306667pt;}
.y22{bottom:367.586667pt;}
.yd8{bottom:371.266667pt;}
.y29c{bottom:371.426667pt;}
.y12e{bottom:374.306667pt;}
.y64{bottom:376.706667pt;}
.y8c{bottom:378.946667pt;}
.y7b{bottom:380.066667pt;}
.y165{bottom:381.186667pt;}
.y1cf{bottom:382.466667pt;}
.y3f{bottom:384.706667pt;}
.y21{bottom:387.106667pt;}
.y2b8{bottom:390.786667pt;}
.y12d{bottom:392.226667pt;}
.y29b{bottom:394.146667pt;}
.y1aa{bottom:394.306667pt;}
.y63{bottom:396.226667pt;}
.yda{bottom:396.546667pt;}
.y8b{bottom:398.466667pt;}
.y164{bottom:399.106667pt;}
.y7a{bottom:399.586667pt;}
.y1ce{bottom:400.226667pt;}
.y18f{bottom:405.186667pt;}
.y20{bottom:406.626667pt;}
.y3e{bottom:407.426667pt;}
.y12c{bottom:410.146667pt;}
.y2b7{bottom:410.306667pt;}
.y29a{bottom:412.066667pt;}
.y1a4{bottom:413.026667pt;}
.y1cd{bottom:414.786667pt;}
.yd7{bottom:415.106667pt;}
.y62{bottom:415.746667pt;}
.y163{bottom:416.866667pt;}
.y8a{bottom:417.986667pt;}
.y79{bottom:419.106667pt;}
.y188{bottom:423.746667pt;}
.y1f{bottom:426.146667pt;}
.y12b{bottom:427.906667pt;}
.y3d{bottom:429.346667pt;}
.y2b6{bottom:429.506667pt;}
.y299{bottom:429.986667pt;}
.ycf{bottom:433.666667pt;}
.y162{bottom:434.786667pt;}
.y61{bottom:435.266667pt;}
.yb2{bottom:437.506667pt;}
.y78{bottom:438.626667pt;}
.y298{bottom:444.386667pt;}
.y1e{bottom:445.666667pt;}
.y12a{bottom:446.466667pt;}
.y2b5{bottom:447.426667pt;}
.y3c{bottom:448.866667pt;}
.y1cc{bottom:450.466667pt;}
.y242{bottom:451.906667pt;}
.y161{bottom:452.706667pt;}
.y60{bottom:454.786667pt;}
.y14e{bottom:455.426667pt;}
.y27b{bottom:455.746667pt;}
.yb1{bottom:457.026667pt;}
.y77{bottom:458.146667pt;}
.y210{bottom:458.626667pt;}
.y1d{bottom:465.186667pt;}
.y2b4{bottom:465.346667pt;}
.y3b{bottom:468.386667pt;}
.y1bf{bottom:469.026667pt;}
.y129{bottom:469.666667pt;}
.y160{bottom:470.626667pt;}
.y147{bottom:473.986667pt;}
.y27a{bottom:474.306667pt;}
.y5f{bottom:474.466667pt;}
.yb0{bottom:476.546667pt;}
.y1de{bottom:477.026667pt;}
.y20e{bottom:477.186667pt;}
.y76{bottom:477.666667pt;}
.y2b3{bottom:479.746667pt;}
.y297{bottom:480.066667pt;}
.y1c{bottom:484.706667pt;}
.y128{bottom:487.613333pt;}
.y3a{bottom:487.933333pt;}
.y15f{bottom:488.546667pt;}
.y5e{bottom:494.013333pt;}
.yaf{bottom:496.093333pt;}
.y75{bottom:497.213333pt;}
.y28c{bottom:498.653333pt;}
.y1b{bottom:504.253333pt;}
.y15e{bottom:506.466667pt;}
.y127{bottom:506.653333pt;}
.y39{bottom:507.453333pt;}
.y1a2{bottom:508.893333pt;}
.y5d{bottom:513.533333pt;}
.yae{bottom:515.613333pt;}
.y74{bottom:516.733333pt;}
.y1a{bottom:523.773333pt;}
.y15d{bottom:524.386667pt;}
.y38{bottom:527.133333pt;}
.y126{bottom:528.573333pt;}
.ybd{bottom:533.053333pt;}
.y2b2{bottom:533.533333pt;}
.y5c{bottom:533.853333pt;}
.yad{bottom:535.133333pt;}
.y73{bottom:536.253333pt;}
.y221{bottom:538.813333pt;}
.y15c{bottom:542.306667pt;}
.y19{bottom:543.293333pt;}
.y122{bottom:544.253333pt;}
.y37{bottom:546.653333pt;}
.ybc{bottom:553.373333pt;}
.yac{bottom:554.813333pt;}
.y256{bottom:555.613333pt;}
.y5b{bottom:555.773333pt;}
.y15b{bottom:560.226667pt;}
.y18{bottom:562.813333pt;}
.y279{bottom:563.933333pt;}
.y36{bottom:566.173333pt;}
.y2a6{bottom:570.013333pt;}
.y23d{bottom:570.653333pt;}
.yab{bottom:574.333333pt;}
.y5a{bottom:575.293333pt;}
.y15a{bottom:578.146667pt;}
.y17{bottom:582.333333pt;}
.y1a1{bottom:583.133333pt;}
.y35{bottom:585.693333pt;}
.yaa{bottom:593.853333pt;}
.y59{bottom:594.813333pt;}
.y159{bottom:595.906667pt;}
.y23c{bottom:596.413333pt;}
.yce{bottom:598.653333pt;}
.y145{bottom:600.093333pt;}
.y16{bottom:601.853333pt;}
.y118{bottom:602.013333pt;}
.y34{bottom:605.213333pt;}
.ya9{bottom:613.373333pt;}
.y58{bottom:614.333333pt;}
.ycd{bottom:616.573333pt;}
.y19f{bottom:620.573333pt;}
.y1dd{bottom:620.893333pt;}
.y20d{bottom:621.213333pt;}
.y187{bottom:622.013333pt;}
.y15{bottom:622.333333pt;}
.y33{bottom:624.733333pt;}
.ya8{bottom:632.893333pt;}
.y57{bottom:633.853333pt;}
.y144{bottom:636.573333pt;}
.y19d{bottom:639.453333pt;}
.y181{bottom:640.573333pt;}
.y14{bottom:644.093333pt;}
.y20c{bottom:645.533333pt;}
.ya7{bottom:652.413333pt;}
.y56{bottom:653.533333pt;}
.y23b{bottom:653.693333pt;}
.y278{bottom:654.013333pt;}
.y13{bottom:662.973333pt;}
.y20b{bottom:663.453333pt;}
.ycc{bottom:670.973333pt;}
.ya6{bottom:671.933333pt;}
.y23a{bottom:672.413333pt;}
.y276{bottom:672.573333pt;}
.y55{bottom:673.053333pt;}
.y12{bottom:679.293333pt;}
.y20a{bottom:681.373333pt;}
.yca{bottom:689.533333pt;}
.y21e{bottom:690.973333pt;}
.ya5{bottom:691.453333pt;}
.y54{bottom:692.573333pt;}
.y209{bottom:695.773333pt;}
.y11{bottom:696.093333pt;}
.y19c{bottom:696.733333pt;}
.y143{bottom:708.893333pt;}
.ya4{bottom:710.973333pt;}
.y53{bottom:712.093333pt;}
.y199{bottom:715.293333pt;}
.y10{bottom:715.773333pt;}
.yf8{bottom:726.213333pt;}
.y13d{bottom:727.493333pt;}
.y288{bottom:728.133333pt;}
.ya3{bottom:730.533333pt;}
.y52{bottom:731.653333pt;}
.yf{bottom:735.173333pt;}
.yc9{bottom:743.973333pt;}
.yef{bottom:744.773333pt;}
.ya2{bottom:750.053333pt;}
.y1ff{bottom:750.213333pt;}
.y51{bottom:751.173333pt;}
.ye{bottom:752.773333pt;}
.yc7{bottom:762.533333pt;}
.y2a5{bottom:762.693333pt;}
.y274{bottom:766.693333pt;}
.ya1{bottom:769.573333pt;}
.y50{bottom:770.693333pt;}
.y255{bottom:772.933333pt;}
.y2a4{bottom:781.253333pt;}
.yc{bottom:781.893333pt;}
.yd{bottom:787.173333pt;}
.ya0{bottom:789.093333pt;}
.y4f{bottom:790.213333pt;}
.y273{bottom:794.533333pt;}
.y117{bottom:797.733333pt;}
.yc6{bottom:798.373333pt;}
.yb{bottom:801.413333pt;}
.y17f{bottom:802.533333pt;}
.y9f{bottom:808.613333pt;}
.y4e{bottom:809.733333pt;}
.yc5{bottom:816.293333pt;}
.y1dc{bottom:819.173333pt;}
.y9e{bottom:828.293333pt;}
.y4d{bottom:829.253333pt;}
.ya{bottom:832.293333pt;}
.yc4{bottom:834.213333pt;}
.y1d9{bottom:837.733333pt;}
.y9d{bottom:847.813333pt;}
.y4c{bottom:848.773333pt;}
.yc3{bottom:852.133333pt;}
.y21d{bottom:852.773333pt;}
.y9{bottom:855.333333pt;}
.y239{bottom:856.933333pt;}
.y9c{bottom:867.333333pt;}
.y4b{bottom:868.293333pt;}
.yc1{bottom:870.693333pt;}
.y2a3{bottom:870.853333pt;}
.y21c{bottom:871.333333pt;}
.y238{bottom:874.853333pt;}
.y197{bottom:877.093333pt;}
.y9b{bottom:886.853333pt;}
.y4a{bottom:887.813333pt;}
.y272{bottom:889.253333pt;}
.y8{bottom:892.293333pt;}
.y237{bottom:892.773333pt;}
.yc0{bottom:905.253333pt;}
.y196{bottom:905.413333pt;}
.y236{bottom:907.173333pt;}
.y49{bottom:907.333333pt;}
.y1d8{bottom:913.893333pt;}
.ybf{bottom:923.653333pt;}
.y254{bottom:925.093333pt;}
.y48{bottom:927.013333pt;}
.y7{bottom:931.493333pt;}
.y1d6{bottom:932.453333pt;}
.y17d{bottom:940.293333pt;}
.yee{bottom:943.013333pt;}
.ybe{bottom:944.133333pt;}
.y47{bottom:946.533333pt;}
.y1{bottom:994.880000pt;}
.y4{bottom:998.240000pt;}
.h1c{height:2.218750pt;}
.h2{height:15.680000pt;}
.h11{height:17.760000pt;}
.h1e{height:17.792000pt;}
.hf{height:17.920000pt;}
.h52{height:17.952000pt;}
.h38{height:18.080000pt;}
.h5f{height:18.880000pt;}
.h19{height:19.200000pt;}
.h17{height:19.360000pt;}
.h1a{height:19.392000pt;}
.h18{height:19.520000pt;}
.h2f{height:20.512000pt;}
.h36{height:23.520000pt;}
.h50{height:24.000000pt;}
.h16{height:24.640000pt;}
.h4f{height:25.120000pt;}
.h3{height:25.760000pt;}
.h59{height:27.040000pt;}
.h57{height:28.320000pt;}
.h41{height:28.352000pt;}
.h30{height:28.960000pt;}
.h60{height:32.160000pt;}
.h7{height:32.171875pt;}
.hc{height:34.374375pt;}
.h3f{height:35.680000pt;}
.h54{height:35.712000pt;}
.h12{height:35.840000pt;}
.h48{height:35.872000pt;}
.h39{height:36.800000pt;}
.h15{height:43.200000pt;}
.ha{height:46.039063pt;}
.h34{height:50.887500pt;}
.h8{height:51.031250pt;}
.h10{height:51.117500pt;}
.hd{height:52.834688pt;}
.h61{height:53.600000pt;}
.h35{height:53.760000pt;}
.h13{height:53.792000pt;}
.h6{height:55.468750pt;}
.he{height:55.562500pt;}
.h37{height:56.480000pt;}
.h40{height:56.640000pt;}
.h25{height:57.760000pt;}
.h1{height:58.563750pt;}
.h9{height:63.656250pt;}
.h5{height:64.898438pt;}
.hb{height:65.008125pt;}
.h28{height:71.520000pt;}
.h58{height:71.552000pt;}
.h26{height:71.712000pt;}
.h3a{height:73.600000pt;}
.h42{height:75.520000pt;}
.h1d{height:89.440000pt;}
.h4c{height:89.472000pt;}
.h22{height:89.600000pt;}
.h5a{height:89.632000pt;}
.h4b{height:93.472000pt;}
.h3b{height:95.872000pt;}
.h4a{height:103.680000pt;}
.h2b{height:107.360000pt;}
.h4{height:110.937500pt;}
.h27{height:125.280000pt;}
.h2a{height:125.472000pt;}
.h23{height:125.920000pt;}
.h21{height:127.232000pt;}
.h2e{height:127.392000pt;}
.h3c{height:135.840000pt;}
.h29{height:143.200000pt;}
.h44{height:143.226667pt;}
.h49{height:143.386667pt;}
.h53{height:151.200000pt;}
.h45{height:151.360000pt;}
.h5c{height:151.386667pt;}
.h5b{height:161.120000pt;}
.h33{height:161.146667pt;}
.h31{height:161.306667pt;}
.h14{height:164.986667pt;}
.h2c{height:178.906667pt;}
.h51{height:179.040000pt;}
.h43{height:179.066667pt;}
.h62{height:192.026667pt;}
.h24{height:195.066667pt;}
.h1b{height:196.026667pt;}
.h1f{height:197.440000pt;}
.h32{height:197.626667pt;}
.h46{height:200.026667pt;}
.h47{height:210.586667pt;}
.h4d{height:212.826667pt;}
.h3d{height:214.720000pt;}
.h56{height:216.026667pt;}
.h55{height:216.666667pt;}
.h4e{height:216.826667pt;}
.h5e{height:228.826667pt;}
.h5d{height:232.666667pt;}
.h3e{height:257.666667pt;}
.h20{height:380.066667pt;}
.h2d{height:610.653333pt;}
.h0{height:1056.000000pt;}
.wf{width:56.832000pt;}
.w19{width:66.112000pt;}
.w1e{width:66.272000pt;}
.w17{width:66.400000pt;}
.w14{width:66.592000pt;}
.w12{width:66.720000pt;}
.w1d{width:77.600000pt;}
.w1b{width:77.760000pt;}
.w9{width:85.120000pt;}
.w7{width:91.712000pt;}
.w8{width:99.552000pt;}
.wc{width:226.906667pt;}
.w1a{width:232.546667pt;}
.w1c{width:232.706667pt;}
.w11{width:243.586667pt;}
.w16{width:243.746667pt;}
.w6{width:276.386667pt;}
.w15{width:288.026667pt;}
.w1f{width:288.186667pt;}
.w10{width:288.506667pt;}
.w2{width:330.626667pt;}
.w5{width:352.226667pt;}
.wb{width:415.933333pt;}
.wd{width:557.693333pt;}
.wa{width:642.853333pt;}
.w4{width:643.013333pt;}
.we{width:655.653333pt;}
.w13{width:664.773333pt;}
.w18{width:664.933333pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x33{left:-14.560000pt;}
.x0{left:0.000000pt;}
.x6d{left:4.320000pt;}
.x2c{left:7.232000pt;}
.x4{left:9.600000pt;}
.x49{left:12.032000pt;}
.x5c{left:13.120000pt;}
.x50{left:14.240000pt;}
.x67{left:17.792000pt;}
.x3e{left:19.360000pt;}
.x4f{left:21.920000pt;}
.x29{left:24.506667pt;}
.x6b{left:27.360000pt;}
.x6e{left:28.320000pt;}
.x23{left:33.472000pt;}
.x64{left:36.000000pt;}
.x30{left:38.080000pt;}
.x2f{left:41.920000pt;}
.x2d{left:44.986667pt;}
.x2e{left:49.280000pt;}
.x68{left:51.360000pt;}
.x69{left:53.626667pt;}
.x4d{left:56.986667pt;}
.x55{left:59.200000pt;}
.x3d{left:65.280000pt;}
.x4b{left:71.674667pt;}
.x61{left:73.946667pt;}
.x1{left:75.519988pt;}
.x9{left:78.399988pt;}
.x14{left:79.839976pt;}
.x25{left:82.720000pt;}
.x15{left:84.191988pt;}
.x44{left:85.152000pt;}
.x7{left:93.311988pt;}
.x18{left:94.431988pt;}
.x28{left:96.026667pt;}
.x1e{left:99.551988pt;}
.x63{left:103.680000pt;}
.x6{left:107.711988pt;}
.x5{left:110.271988pt;}
.x51{left:117.306667pt;}
.x53{left:121.786667pt;}
.x1d{left:123.551988pt;}
.x4a{left:132.352000pt;}
.x6c{left:139.706667pt;}
.x3b{left:141.466667pt;}
.x26{left:144.666667pt;}
.x45{left:146.586667pt;}
.x60{left:149.786667pt;}
.x56{left:151.226667pt;}
.x42{left:156.186667pt;}
.x66{left:173.306667pt;}
.x3f{left:182.266667pt;}
.x31{left:185.346667pt;}
.x52{left:194.306667pt;}
.x65{left:196.226667pt;}
.x46{left:199.586667pt;}
.x5d{left:200.866667pt;}
.x57{left:201.986667pt;}
.x48{left:205.186667pt;}
.x62{left:207.266667pt;}
.x54{left:209.506667pt;}
.x3a{left:213.346667pt;}
.x38{left:216.066667pt;}
.x5e{left:217.346667pt;}
.x5f{left:218.466667pt;}
.x47{left:221.506667pt;}
.x20{left:222.946667pt;}
.x58{left:223.906667pt;}
.x24{left:227.106667pt;}
.x59{left:231.426667pt;}
.x43{left:237.826667pt;}
.x39{left:239.906667pt;}
.xf{left:242.746655pt;}
.x21{left:245.666667pt;}
.x36{left:249.186667pt;}
.x37{left:250.306667pt;}
.x40{left:257.666667pt;}
.x32{left:263.266667pt;}
.x13{left:267.586655pt;}
.x41{left:270.306667pt;}
.x35{left:273.666667pt;}
.x34{left:275.426667pt;}
.x22{left:278.946667pt;}
.x12{left:284.706655pt;}
.x11{left:285.986655pt;}
.xa{left:335.106655pt;}
.xd{left:345.506655pt;}
.x8{left:391.266655pt;}
.xe{left:407.906655pt;}
.x10{left:416.066655pt;}
.x4c{left:420.866667pt;}
.x5a{left:430.146667pt;}
.x16{left:431.586655pt;}
.x27{left:434.946667pt;}
.x19{left:450.493321pt;}
.x1a{left:455.613321pt;}
.xb{left:475.773309pt;}
.x1b{left:479.613321pt;}
.xc{left:480.733321pt;}
.x3{left:485.373333pt;}
.x3c{left:491.453333pt;}
.x2a{left:526.653333pt;}
.x2b{left:626.213333pt;}
.x6a{left:662.693333pt;}
.x4e{left:664.453333pt;}
.x5b{left:673.893333pt;}
.x1c{left:719.973321pt;}
.x17{left:721.253321pt;}
.x2{left:722.533321pt;}
.x1f{left:724.613321pt;}
}




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