
    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_3a2af960df8b3098264b49d6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_dbbb311ecf90133fffc11e01.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_5b773dd9b3220d4854132255.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_95f6c7e233bd8eb71dbbf4ba.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8f0518100a0cbdf490ab24a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c3699edb028de1fd7378a0ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ad86998ef42dc0f47599ad33.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_564d1fb190ce7cd94ffcb1bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_5e09f8cfb8bd1be01cb62470.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_225f4a56d67f997555a49eab.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a4a877773a58a3354ca12028.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;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_400a2cf4b446f02849ea4882.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_ea163bddda43f88ec4e5a81a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_f3f2f54066ebcfb4267fc6bc.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b848e63c1f01895a1e5b40a6.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_f9b1b735cd920738c7fbbada.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.948242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d542918f01c94fbcce78ea7f.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3e5f680f5de11b140d87a7e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.941406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4036b6b8a596799053a02f85.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.844727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.144337,-0.204124,0.204124,0.144337,0,0);-ms-transform:matrix(0.144337,-0.204124,0.204124,0.144337,0,0);-webkit-transform:matrix(0.144337,-0.204124,0.204124,0.144337,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.089280px;}
.ls2{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.149760px;}
.lsc{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.666720px;}
.lsa{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.792000px;}
.ls6{letter-spacing:3.029760px;}
.ls7{letter-spacing:5.189760px;}
.ls15{letter-spacing:7.866720px;}
.ls5{letter-spacing:21.749760px;}
.ls4{letter-spacing:23.909760px;}
.ls3{letter-spacing:32.256000px;}
.ls11{letter-spacing:41.706720px;}
.lse{letter-spacing:373.080000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws15{word-spacing:-18.288000px;}
.ws16{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000000px;}
.ws19{word-spacing:-16.873080px;}
.ws1b{word-spacing:-16.666560px;}
.ws18{word-spacing:-16.613280px;}
.ws1a{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.506480px;}
.ws14{word-spacing:-0.531000px;}
.ws7{word-spacing:-0.031200px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:2.159400px;}
.wsf{word-spacing:6.082800px;}
.ws12{word-spacing:6.228600px;}
.ws4{word-spacing:11.291400px;}
.ws10{word-spacing:11.761200px;}
.ws13{word-spacing:15.397800px;}
.ws5{word-spacing:19.152000px;}
.wsc{word-spacing:19.579200px;}
.ws6{word-spacing:20.763000px;}
.ws2{word-spacing:22.470600px;}
.ws3{word-spacing:22.957200px;}
.wsb{word-spacing:30.322800px;}
.wsd{word-spacing:39.525000px;}
.wse{word-spacing:39.621000px;}
.ws9{word-spacing:595.527600px;}
.ws8{word-spacing:635.487600px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.508000px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._f{width:1.348800px;}
._10{width:2.644800px;}
._13{width:3.691200px;}
._0{width:5.587200px;}
._14{width:6.604800px;}
._19{width:7.632000px;}
._18{width:8.716800px;}
._1f{width:10.728000px;}
._1d{width:11.952000px;}
._1e{width:13.084800px;}
._1a{width:14.184000px;}
._1b{width:15.264000px;}
._15{width:16.632000px;}
._1c{width:19.584000px;}
._d{width:21.210600px;}
._26{width:22.217400px;}
._12{width:23.256000px;}
._29{width:24.264000px;}
._e{width:25.276200px;}
._17{width:26.707800px;}
._22{width:27.720000px;}
._20{width:29.016000px;}
._21{width:30.384000px;}
._27{width:31.464000px;}
._28{width:32.472000px;}
._23{width:34.128000px;}
._2a{width:35.280000px;}
._24{width:36.360000px;}
._25{width:37.735200px;}
._b{width:38.744400px;}
._16{width:40.095600px;}
._4{width:42.027000px;}
._c{width:58.548600px;}
._2c{width:158.346720px;}
._a{width:332.223600px;}
._8{width:336.255600px;}
._9{width:372.039600px;}
._7{width:383.451600px;}
._6{width:450.087600px;}
._11{width:846.300000px;}
._2b{width:850.889280px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(229,229,229);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:81.600000px;}
.fs1{font-size:84.000000px;}
.fs3{font-size:94.500000px;}
.fs9{font-size:95.760000px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:288.000759px;}
.y0{bottom:0.000000px;}
.y2cf{bottom:3.232500px;}
.y291{bottom:5.745000px;}
.y2f4{bottom:5.752500px;}
.y26b{bottom:5.760000px;}
.y26d{bottom:5.940000px;}
.y27d{bottom:7.200000px;}
.y270{bottom:7.380000px;}
.y279{bottom:7.560000px;}
.yc{bottom:8.040000px;}
.y3bf{bottom:10.500000px;}
.y2c6{bottom:18.165000px;}
.y369{bottom:18.172500px;}
.y2ad{bottom:18.180000px;}
.y375{bottom:18.210000px;}
.y29a{bottom:18.360000px;}
.y2ce{bottom:20.512500px;}
.y3a6{bottom:20.692500px;}
.y319{bottom:20.700000px;}
.y2f8{bottom:20.730000px;}
.y323{bottom:20.865000px;}
.y344{bottom:20.866500px;}
.y2e8{bottom:20.880000px;}
.y33b{bottom:20.910000px;}
.y304{bottom:20.925000px;}
.y326{bottom:25.552500px;}
.y26a{bottom:25.560000px;}
.y2f3{bottom:25.726500px;}
.y17{bottom:33.555000px;}
.y297{bottom:35.460000px;}
.y2c5{bottom:35.625000px;}
.y368{bottom:35.626500px;}
.y299{bottom:35.640000px;}
.y358{bottom:35.670000px;}
.y2cd{bottom:37.786500px;}
.y3a5{bottom:40.486500px;}
.y318{bottom:40.500000px;}
.y399{bottom:40.530000px;}
.y322{bottom:40.665000px;}
.y343{bottom:40.666500px;}
.y2e7{bottom:40.680000px;}
.y33a{bottom:40.710000px;}
.y303{bottom:40.725000px;}
.y325{bottom:45.346500px;}
.y2f2{bottom:45.526500px;}
.y3b7{bottom:50.400000px;}
.y2b3{bottom:52.740000px;}
.y2c4{bottom:52.770000px;}
.y367{bottom:52.906500px;}
.y296{bottom:52.920000px;}
.y357{bottom:52.950000px;}
.y352{bottom:52.965000px;}
.y2d1{bottom:53.806500px;}
.y363{bottom:54.886500px;}
.y2cc{bottom:55.066500px;}
.y16{bottom:55.635000px;}
.y3a4{bottom:60.286500px;}
.y317{bottom:60.300000px;}
.y398{bottom:60.330000px;}
.y342{bottom:60.466500px;}
.y2e6{bottom:60.480000px;}
.y321{bottom:60.510000px;}
.y302{bottom:60.525000px;}
.y378{bottom:61.200000px;}
.y36b{bottom:61.366500px;}
.y3b0{bottom:63.000000px;}
.y2f1{bottom:65.326500px;}
.y1d{bottom:69.510000px;}
.y29b{bottom:70.020000px;}
.y2c3{bottom:70.050000px;}
.y366{bottom:70.186500px;}
.y295{bottom:70.200000px;}
.y356{bottom:70.230000px;}
.y2ac{bottom:70.245000px;}
.y2d0{bottom:71.086500px;}
.y2cb{bottom:72.346500px;}
.y15{bottom:77.715000px;}
.y377{bottom:78.660000px;}
.y36a{bottom:78.826500px;}
.y341{bottom:80.266500px;}
.y2fb{bottom:80.280000px;}
.y320{bottom:80.310000px;}
.y301{bottom:80.325000px;}
.y2e5{bottom:80.460000px;}
.y387{bottom:82.800000px;}
.y2f0{bottom:85.126500px;}
.y2c7{bottom:87.150000px;}
.y362{bottom:87.286500px;}
.y298{bottom:87.300000px;}
.y2c2{bottom:87.330000px;}
.y351{bottom:87.345000px;}
.y294{bottom:87.480000px;}
.y355{bottom:87.510000px;}
.y2ab{bottom:87.525000px;}
.y328{bottom:87.646500px;}
.y2ca{bottom:89.626500px;}
.y1c{bottom:91.590000px;}
.y2d7{bottom:95.805000px;}
.y14{bottom:99.795000px;}
.y380{bottom:100.066500px;}
.y2fa{bottom:100.080000px;}
.y334{bottom:100.110000px;}
.y340{bottom:100.246500px;}
.y2e4{bottom:100.260000px;}
.y31f{bottom:100.290000px;}
.y300{bottom:100.305000px;}
.y382{bottom:102.766500px;}
.y306{bottom:102.825000px;}
.y2b4{bottom:104.400000px;}
.y370{bottom:104.445000px;}
.y365{bottom:104.566500px;}
.y2b2{bottom:104.580000px;}
.y2c1{bottom:104.610000px;}
.y2aa{bottom:104.625000px;}
.y361{bottom:104.746500px;}
.y2ba{bottom:104.760000px;}
.y35c{bottom:104.790000px;}
.y2ef{bottom:104.926500px;}
.y327{bottom:105.106500px;}
.y2af{bottom:105.885000px;}
.y2d2{bottom:106.546500px;}
.y2c9{bottom:106.726500px;}
.y30e{bottom:109.123500px;}
.y2d6{bottom:113.265000px;}
.y266{bottom:113.616000px;}
.y1b{bottom:113.670000px;}
.y13e{bottom:117.396000px;}
.y1c3{bottom:117.576000px;}
.y3a3{bottom:119.866500px;}
.y316{bottom:119.880000px;}
.y333{bottom:119.910000px;}
.y33f{bottom:120.046500px;}
.y2e3{bottom:120.060000px;}
.y31e{bottom:120.090000px;}
.y2ff{bottom:120.105000px;}
.y381{bottom:120.226500px;}
.y305{bottom:120.285000px;}
.y36c{bottom:121.666500px;}
.y373{bottom:121.680000px;}
.y36e{bottom:121.710000px;}
.y353{bottom:121.725000px;}
.y364{bottom:121.846500px;}
.y2b9{bottom:121.860000px;}
.y2c0{bottom:121.890000px;}
.y2a9{bottom:121.905000px;}
.y360{bottom:122.026500px;}
.y31a{bottom:122.400000px;}
.y346{bottom:122.566500px;}
.y2fd{bottom:122.580000px;}
.y336{bottom:122.610000px;}
.y104{bottom:122.976000px;}
.y2ae{bottom:123.165000px;}
.y3a{bottom:123.976800px;}
.y29c{bottom:124.063500px;}
.ye4{bottom:124.776000px;}
.y2ee{bottom:124.906500px;}
.y6c{bottom:125.496000px;}
.y388{bottom:125.683500px;}
.ya8{bottom:127.836000px;}
.y159{bottom:129.276000px;}
.y33d{bottom:129.643500px;}
.y35f{bottom:130.543500px;}
.y1de{bottom:132.156000px;}
.y11e{bottom:132.696000px;}
.y379{bottom:132.883500px;}
.y2db{bottom:133.423500px;}
.y10{bottom:133.935000px;}
.y265{bottom:134.496000px;}
.y20b{bottom:134.856000px;}
.y1a{bottom:135.750000px;}
.y1b3{bottom:138.636000px;}
.y2bf{bottom:138.990000px;}
.y354{bottom:139.005000px;}
.y34f{bottom:139.140000px;}
.y2b8{bottom:139.170000px;}
.yc5{bottom:139.176000px;}
.y2a8{bottom:139.185000px;}
.y3a2{bottom:139.666500px;}
.y315{bottom:139.680000px;}
.y397{bottom:139.710000px;}
.y33e{bottom:139.846500px;}
.y2e2{bottom:139.860000px;}
.y31d{bottom:139.890000px;}
.y345{bottom:140.026500px;}
.y2fc{bottom:140.040000px;}
.y335{bottom:140.070000px;}
.y2ea{bottom:142.560000px;}
.y385{bottom:142.590000px;}
.y2ed{bottom:144.706500px;}
.y6b{bottom:146.196000px;}
.y168{bottom:147.636000px;}
.y13d{bottom:148.536000px;}
.y178{bottom:148.716000px;}
.y231{bottom:150.690000px;}
.y251{bottom:152.850000px;}
.y103{bottom:153.930000px;}
.y18{bottom:154.950000px;}
.y264{bottom:155.190000px;}
.ye3{bottom:155.730000px;}
.yf{bottom:156.015000px;}
.y2be{bottom:156.270000px;}
.y34e{bottom:156.420000px;}
.y2b7{bottom:156.450000px;}
.y2a7{bottom:156.465000px;}
.y19{bottom:157.830000px;}
.y3a1{bottom:159.466500px;}
.y396{bottom:159.510000px;}
.y2e1{bottom:159.660000px;}
.y31c{bottom:159.690000px;}
.y2e9{bottom:159.840000px;}
.y384{bottom:159.870000px;}
.y158{bottom:160.410000px;}
.y39d{bottom:162.360000px;}
.y324{bottom:162.390000px;}
.y1dd{bottom:163.110000px;}
.y11d{bottom:163.650000px;}
.y2ec{bottom:164.551500px;}
.y6a{bottom:166.890000px;}
.y2f6{bottom:167.071500px;}
.y1eb{bottom:167.790000px;}
.y1b2{bottom:169.590000px;}
.y197{bottom:170.850000px;}
.y230{bottom:171.570000px;}
.ya7{bottom:173.190000px;}
.y2c8{bottom:173.370000px;}
.y2bd{bottom:173.550000px;}
.y36f{bottom:173.565000px;}
.y250{bottom:173.730000px;}
.y2a6{bottom:173.745000px;}
.y20a{bottom:176.430000px;}
.yc4{bottom:177.330000px;}
.y167{bottom:178.590000px;}
.y32a{bottom:179.460000px;}
.y13c{bottom:179.490000px;}
.y3a0{bottom:179.491500px;}
.y32f{bottom:179.505000px;}
.y30b{bottom:179.640000px;}
.y177{bottom:179.670000px;}
.y331{bottom:182.025000px;}
.y2eb{bottom:184.351500px;}
.y2f5{bottom:184.531500px;}
.y102{bottom:185.070000px;}
.ye2{bottom:186.870000px;}
.y69{bottom:187.590000px;}
.y263{bottom:190.650000px;}
.y37e{bottom:190.651500px;}
.y2d8{bottom:190.665000px;}
.y34d{bottom:190.830000px;}
.y2d5{bottom:190.845000px;}
.y2b6{bottom:191.010000px;}
.y2a5{bottom:191.025000px;}
.y157{bottom:191.370000px;}
.y22f{bottom:192.270000px;}
.y39{bottom:192.826800px;}
.y1dc{bottom:194.250000px;}
.y24f{bottom:194.430000px;}
.y11c{bottom:194.790000px;}
.y1ea{bottom:198.750000px;}
.y339{bottom:199.290000px;}
.y39f{bottom:199.291500px;}
.y32e{bottom:199.305000px;}
.y30a{bottom:199.440000px;}
.y330{bottom:199.485000px;}
.y1b1{bottom:200.730000px;}
.y3a8{bottom:201.811500px;}
.y32c{bottom:201.960000px;}
.y196{bottom:201.990000px;}
.y371{bottom:207.945000px;}
.y2bb{bottom:208.110000px;}
.y2a4{bottom:208.125000px;}
.y68{bottom:208.290000px;}
.y166{bottom:209.730000px;}
.y13b{bottom:210.630000px;}
.y176{bottom:210.810000px;}
.y262{bottom:211.530000px;}
.y209{bottom:212.070000px;}
.y22e{bottom:212.970000px;}
.y38{bottom:214.426800px;}
.yc3{bottom:215.490000px;}
.y101{bottom:216.030000px;}
.ye1{bottom:217.830000px;}
.ya6{bottom:218.370000px;}
.y395{bottom:219.090000px;}
.y39e{bottom:219.091500px;}
.y309{bottom:219.240000px;}
.y338{bottom:219.270000px;}
.y3a7{bottom:219.271500px;}
.y32b{bottom:219.420000px;}
.y33c{bottom:219.450000px;}
.y30d{bottom:221.760000px;}
.y156{bottom:222.510000px;}
.y37d{bottom:223.051500px;}
.y2b0{bottom:225.225000px;}
.y35b{bottom:225.390000px;}
.y2a3{bottom:225.405000px;}
.y11b{bottom:225.750000px;}
.y67{bottom:228.630000px;}
.y31b{bottom:228.825000px;}
.y1e9{bottom:229.890000px;}
.y1b0{bottom:231.690000px;}
.y261{bottom:232.230000px;}
.y195{bottom:232.950000px;}
.y13a{bottom:233.130000px;}
.y22d{bottom:233.670000px;}
.y293{bottom:234.570000px;}
.y37{bottom:236.026800px;}
.y394{bottom:238.890000px;}
.y308{bottom:239.040000px;}
.y30c{bottom:239.220000px;}
.y1db{bottom:240.150000px;}
.y37c{bottom:240.511500px;}
.y165{bottom:240.690000px;}
.y175{bottom:241.770000px;}
.y35d{bottom:242.490000px;}
.y35a{bottom:242.670000px;}
.y2bc{bottom:245.565000px;}
.y100{bottom:247.170000px;}
.ye0{bottom:248.970000px;}
.y66{bottom:249.690000px;}
.y24e{bottom:250.770000px;}
.y155{bottom:253.470000px;}
.yc2{bottom:253.650000px;}
.y22c{bottom:254.370000px;}
.y1c2{bottom:256.710000px;}
.y11a{bottom:256.890000px;}
.y36{bottom:257.626800px;}
.y37b{bottom:257.791500px;}
.y393{bottom:258.690000px;}
.y35e{bottom:259.770000px;}
.y359{bottom:259.950000px;}
.y1e8{bottom:260.850000px;}
.y292{bottom:261.390000px;}
.y1af{bottom:262.830000px;}
.ya5{bottom:263.550000px;}
.y194{bottom:264.090000px;}
.y347{bottom:266.985000px;}
.y260{bottom:267.690000px;}
.y37f{bottom:267.705000px;}
.y208{bottom:268.410000px;}
.y65{bottom:270.390000px;}
.y1da{bottom:271.290000px;}
.y24d{bottom:271.470000px;}
.y164{bottom:271.830000px;}
.y290{bottom:272.385000px;}
.y174{bottom:272.910000px;}
.y2e0{bottom:274.891500px;}
.y22b{bottom:275.070000px;}
.y37a{bottom:275.071500px;}
.yff{bottom:278.130000px;}
.y392{bottom:278.670000px;}
.y35{bottom:279.226800px;}
.y119{bottom:279.390000px;}
.ydf{bottom:279.930000px;}
.y39b{bottom:281.190000px;}
.y139{bottom:281.370000px;}
.y337{bottom:284.265000px;}
.y154{bottom:284.610000px;}
.y1c1{bottom:287.895000px;}
.y25f{bottom:288.615000px;}
.y207{bottom:289.335000px;}
.y64{bottom:291.135000px;}
.yc1{bottom:291.855000px;}
.y28f{bottom:293.115000px;}
.y1ae{bottom:293.835000px;}
.y193{bottom:295.095000px;}
.y22a{bottom:295.815000px;}
.y391{bottom:298.515000px;}
.y39a{bottom:298.695000px;}
.y34{bottom:300.826800px;}
.y1d9{bottom:302.295000px;}
.y163{bottom:302.835000px;}
.y173{bottom:303.915000px;}
.y1e7{bottom:306.975000px;}
.y24c{bottom:307.155000px;}
.y2df{bottom:307.291500px;}
.y118{bottom:308.595000px;}
.ya4{bottom:308.775000px;}
.yfe{bottom:309.315000px;}
.y206{bottom:310.035000px;}
.yde{bottom:311.115000px;}
.y63{bottom:311.475000px;}
.y138{bottom:312.375000px;}
.y28e{bottom:312.915000px;}
.y153{bottom:315.615000px;}
.y229{bottom:316.515000px;}
.y1c0{bottom:318.855000px;}
.y33{bottom:322.426800px;}
.y25e{bottom:324.255000px;}
.y2de{bottom:324.751500px;}
.y1ad{bottom:324.975000px;}
.y192{bottom:326.235000px;}
.y24b{bottom:328.035000px;}
.yc0{bottom:330.015000px;}
.y62{bottom:332.535000px;}
.y28d{bottom:332.715000px;}
.y1d8{bottom:333.435000px;}
.y162{bottom:333.975000px;}
.y172{bottom:335.055000px;}
.y228{bottom:337.215000px;}
.y1e6{bottom:337.935000px;}
.yfd{bottom:340.275000px;}
.y2dd{bottom:342.031500px;}
.ydd{bottom:342.075000px;}
.y137{bottom:343.515000px;}
.ya{bottom:344.680500px;}
.y25d{bottom:345.135000px;}
.y205{bottom:345.495000px;}
.y3b5{bottom:345.855000px;}
.y152{bottom:346.755000px;}
.y24a{bottom:348.735000px;}
.y1bf{bottom:349.995000px;}
.y28c{bottom:352.515000px;}
.y61{bottom:353.235000px;}
.ya3{bottom:353.955000px;}
.y1ac{bottom:355.935000px;}
.y191{bottom:357.195000px;}
.y227{bottom:357.915000px;}
.y2dc{bottom:359.131500px;}
.y39c{bottom:359.535000px;}
.y117{bottom:363.855000px;}
.y1d7{bottom:364.395000px;}
.y161{bottom:364.935000px;}
.y171{bottom:366.015000px;}
.y204{bottom:366.375000px;}
.ybf{bottom:368.175000px;}
.y1e5{bottom:369.075000px;}
.y313{bottom:369.931500px;}
.yfc{bottom:371.415000px;}
.y28b{bottom:372.315000px;}
.ydc{bottom:373.215000px;}
.y60{bottom:373.935000px;}
.y136{bottom:374.475000px;}
.y151{bottom:377.715000px;}
.y226{bottom:378.615000px;}
.y3b4{bottom:379.875000px;}
.y25c{bottom:380.595000px;}
.y1be{bottom:380.955000px;}
.y249{bottom:384.195000px;}
.yd{bottom:386.490000px;}
.y1ab{bottom:387.075000px;}
.y190{bottom:388.335000px;}
.y32{bottom:391.276800px;}
.y28a{bottom:392.295000px;}
.y5f{bottom:394.635000px;}
.y116{bottom:394.995000px;}
.y1d6{bottom:395.535000px;}
.y9{bottom:395.689500px;}
.y160{bottom:396.075000px;}
.y170{bottom:397.155000px;}
.ya2{bottom:399.315000px;}
.y1e4{bottom:400.035000px;}
.y25b{bottom:401.475000px;}
.y203{bottom:402.015000px;}
.y3ad{bottom:402.195000px;}
.y312{bottom:402.331500px;}
.yfb{bottom:402.375000px;}
.y3b{bottom:404.370000px;}
.y135{bottom:405.615000px;}
.ybe{bottom:406.335000px;}
.y150{bottom:408.855000px;}
.y1bd{bottom:412.095000px;}
.y31{bottom:412.876800px;}
.y3b3{bottom:413.715000px;}
.y5e{bottom:415.335000px;}
.ydb{bottom:419.115000px;}
.y18f{bottom:419.295000px;}
.y311{bottom:419.791500px;}
.y248{bottom:419.835000px;}
.y225{bottom:420.015000px;}
.y376{bottom:422.355000px;}
.y202{bottom:422.895000px;}
.y314{bottom:423.255000px;}
.y115{bottom:425.955000px;}
.y1d5{bottom:426.495000px;}
.y15f{bottom:427.035000px;}
.y16f{bottom:428.115000px;}
.ya1{bottom:430.455000px;}
.y1e3{bottom:431.175000px;}
.y14f{bottom:431.355000px;}
.y289{bottom:431.895000px;}
.y1aa{bottom:432.975000px;}
.yfa{bottom:433.515000px;}
.y2b5{bottom:433.695000px;}
.y30{bottom:434.476800px;}
.y3ac{bottom:434.595000px;}
.yb{bottom:434.850000px;}
.y5d{bottom:436.035000px;}
.y134{bottom:436.575000px;}
.y310{bottom:436.891500px;}
.y25a{bottom:436.935000px;}
.y224{bottom:440.715000px;}
.y1bc{bottom:443.055000px;}
.ybd{bottom:444.495000px;}
.y8{bottom:446.698500px;}
.yda{bottom:450.255000px;}
.y18e{bottom:450.435000px;}
.y3b2{bottom:451.515000px;}
.y288{bottom:451.695000px;}
.y3ab{bottom:452.055000px;}
.y30f{bottom:454.171500px;}
.y2f{bottom:456.076800px;}
.y5c{bottom:456.735000px;}
.y114{bottom:457.095000px;}
.y1d4{bottom:457.635000px;}
.y259{bottom:457.815000px;}
.y15e{bottom:458.175000px;}
.y201{bottom:458.355000px;}
.y16e{bottom:459.255000px;}
.y223{bottom:461.415000px;}
.y1e2{bottom:462.135000px;}
.y1a9{bottom:464.115000px;}
.yf9{bottom:464.475000px;}
.y133{bottom:467.715000px;}
.y3b1{bottom:468.075000px;}
.ya0{bottom:469.155000px;}
.y3aa{bottom:469.335000px;}
.y287{bottom:471.495000px;}
.y5b{bottom:477.435000px;}
.y200{bottom:479.235000px;}
.y14e{bottom:479.415000px;}
.yd9{bottom:481.215000px;}
.y18d{bottom:481.395000px;}
.y222{bottom:482.115000px;}
.ybc{bottom:482.655000px;}
.y11{bottom:488.055000px;}
.y1d3{bottom:488.595000px;}
.y15d{bottom:489.135000px;}
.y16d{bottom:490.215000px;}
.y286{bottom:491.475000px;}
.y9f{bottom:492.915000px;}
.y1e1{bottom:493.275000px;}
.y1a8{bottom:495.075000px;}
.yf8{bottom:495.615000px;}
.y7{bottom:497.707500px;}
.y5a{bottom:498.135000px;}
.y132{bottom:498.675000px;}
.y1ff{bottom:499.935000px;}
.y221{bottom:502.815000px;}
.y18c{bottom:503.355000px;}
.y2da{bottom:507.135000px;}
.y14d{bottom:510.555000px;}
.y285{bottom:511.275000px;}
.yd8{bottom:512.355000px;}
.y2e{bottom:513.676800px;}
.y258{bottom:514.155000px;}
.y9e{bottom:516.855000px;}
.y247{bottom:517.575000px;}
.y332{bottom:518.295000px;}
.y59{bottom:518.835000px;}
.y113{bottom:519.195000px;}
.y1d2{bottom:519.735000px;}
.y1bb{bottom:520.275000px;}
.ybb{bottom:520.815000px;}
.y16c{bottom:521.355000px;}
.y220{bottom:523.515000px;}
.y1e0{bottom:524.235000px;}
.y1a7{bottom:526.215000px;}
.yf7{bottom:526.575000px;}
.y18b{bottom:529.635000px;}
.y131{bottom:529.815000px;}
.y284{bottom:531.075000px;}
.y15c{bottom:535.215000px;}
.y1fe{bottom:535.395000px;}
.y12{bottom:538.230000px;}
.y246{bottom:538.455000px;}
.y58{bottom:539.535000px;}
.y14c{bottom:541.515000px;}
.yd7{bottom:543.315000px;}
.y21f{bottom:544.215000px;}
.y2d{bottom:546.526800px;}
.y1df{bottom:548.355000px;}
.y6{bottom:548.716500px;}
.y257{bottom:549.795000px;}
.y87{bottom:549.975000px;}
.y112{bottom:550.155000px;}
.y1d1{bottom:550.695000px;}
.y283{bottom:550.875000px;}
.y1ba{bottom:551.235000px;}
.y16b{bottom:552.315000px;}
.y390{bottom:553.935000px;}
.y9d{bottom:555.555000px;}
.y1fd{bottom:556.275000px;}
.y1a6{bottom:557.175000px;}
.yf6{bottom:557.715000px;}
.y374{bottom:558.795000px;}
.yba{bottom:558.975000px;}
.y245{bottom:559.155000px;}
.y57{bottom:559.875000px;}
.y130{bottom:560.775000px;}
.y21e{bottom:564.915000px;}
.y15b{bottom:566.385000px;}
.y256{bottom:570.705000px;}
.y14b{bottom:572.685000px;}
.yd6{bottom:574.485000px;}
.y16a{bottom:575.025000px;}
.y307{bottom:577.725000px;}
.y18a{bottom:577.905000px;}
.y9c{bottom:579.345000px;}
.y2c{bottom:579.376800px;}
.yf5{bottom:580.245000px;}
.y56{bottom:580.965000px;}
.y111{bottom:581.325000px;}
.y1d0{bottom:581.865000px;}
.y1b9{bottom:582.405000px;}
.y21d{bottom:585.645000px;}
.y1a5{bottom:588.345000px;}
.y86{bottom:588.525000px;}
.y1e{bottom:589.605000px;}
.y282{bottom:590.685000px;}
.y12f{bottom:591.765000px;}
.y1fc{bottom:591.945000px;}
.y244{bottom:594.825000px;}
.yb9{bottom:597.165000px;}
.y15a{bottom:597.345000px;}
.y5{bottom:599.725500px;}
.y55{bottom:601.665000px;}
.y9b{bottom:603.285000px;}
.y14a{bottom:603.645000px;}
.y169{bottom:604.005000px;}
.yd5{bottom:605.445000px;}
.y255{bottom:606.165000px;}
.y21c{bottom:606.345000px;}
.y38f{bottom:608.281500px;}
.y189{bottom:609.045000px;}
.y281{bottom:610.485000px;}
.y85{bottom:612.285000px;}
.y1fb{bottom:612.825000px;}
.y1b8{bottom:613.365000px;}
.y243{bottom:615.705000px;}
.y1a4{bottom:619.305000px;}
.y54{bottom:622.005000px;}
.y12e{bottom:622.905000px;}
.y9a{bottom:627.045000px;}
.y1cf{bottom:627.765000px;}
.yf4{bottom:628.305000px;}
.y280{bottom:630.285000px;}
.y2b{bottom:631.351800px;}
.ye{bottom:631.920000px;}
.y1fa{bottom:633.525000px;}
.y149{bottom:634.785000px;}
.yb8{bottom:635.325000px;}
.y84{bottom:636.225000px;}
.y242{bottom:636.405000px;}
.yd4{bottom:636.585000px;}
.y188{bottom:640.005000px;}
.y38e{bottom:640.681500px;}
.y53{bottom:643.065000px;}
.y110{bottom:643.425000px;}
.y1b7{bottom:644.505000px;}
.y27f{bottom:650.085000px;}
.y1a3{bottom:650.445000px;}
.y99{bottom:650.805000px;}
.y12d{bottom:653.865000px;}
.y2b1{bottom:656.565000px;}
.y38d{bottom:658.141500px;}
.y1ce{bottom:658.905000px;}
.yf3{bottom:659.445000px;}
.y83{bottom:659.985000px;}
.y372{bottom:660.885000px;}
.y21b{bottom:662.505000px;}
.y52{bottom:663.765000px;}
.y148{bottom:665.745000px;}
.yd3{bottom:667.545000px;}
.y1f9{bottom:668.985000px;}
.y27e{bottom:669.885000px;}
.y187{bottom:671.145000px;}
.y241{bottom:671.865000px;}
.y32d{bottom:672.945000px;}
.yb7{bottom:673.665000px;}
.y10f{bottom:674.385000px;}
.y98{bottom:674.565000px;}
.y38c{bottom:675.241500px;}
.y1b6{bottom:675.465000px;}
.y12c{bottom:676.545000px;}
.y1a2{bottom:681.405000px;}
.y2a{bottom:683.326800px;}
.y21a{bottom:683.385000px;}
.y82{bottom:683.745000px;}
.y51{bottom:684.105000px;}
.y1cd{bottom:689.865000px;}
.yf2{bottom:690.405000px;}
.y38b{bottom:692.521500px;}
.y240{bottom:692.745000px;}
.y2d9{bottom:695.265000px;}
.y147{bottom:696.885000px;}
.y97{bottom:698.505000px;}
.yd2{bottom:698.685000px;}
.y186{bottom:702.105000px;}
.y3be{bottom:702.285000px;}
.y50{bottom:705.165000px;}
.y10e{bottom:705.525000px;}
.y1b5{bottom:706.605000px;}
.y81{bottom:707.505000px;}
.y27c{bottom:709.665000px;}
.y38a{bottom:709.801500px;}
.yb6{bottom:711.825000px;}
.y1a1{bottom:712.545000px;}
.y29{bottom:716.176800px;}
.y219{bottom:719.025000px;}
.y1cc{bottom:721.005000px;}
.yf1{bottom:721.545000px;}
.y96{bottom:722.265000px;}
.y12b{bottom:724.605000px;}
.y1f8{bottom:725.325000px;}
.y4f{bottom:725.865000px;}
.y389{bottom:727.126500px;}
.y146{bottom:727.845000px;}
.y23f{bottom:728.205000px;}
.y27b{bottom:729.465000px;}
.yd1{bottom:729.645000px;}
.y80{bottom:731.445000px;}
.y10d{bottom:736.485000px;}
.y1b4{bottom:737.565000px;}
.y218{bottom:739.905000px;}
.y3bd{bottom:741.165000px;}
.y1a0{bottom:743.505000px;}
.y1f7{bottom:746.205000px;}
.y4e{bottom:746.565000px;}
.y185{bottom:748.185000px;}
.y28{bottom:749.026800px;}
.y23e{bottom:749.085000px;}
.y27a{bottom:749.265000px;}
.yb5{bottom:749.985000px;}
.y1cb{bottom:751.965000px;}
.y3af{bottom:752.325000px;}
.yf0{bottom:752.505000px;}
.y12a{bottom:755.745000px;}
.y3bc{bottom:756.825000px;}
.y145{bottom:758.985000px;}
.y217{bottom:760.605000px;}
.yd0{bottom:760.785000px;}
.y95{bottom:760.965000px;}
.y4d{bottom:767.265000px;}
.y10c{bottom:767.625000px;}
.y278{bottom:769.065000px;}
.y7f{bottom:770.145000px;}
.y19f{bottom:774.645000px;}
.y2a2{bottom:775.725000px;}
.y4{bottom:778.225500px;}
.y184{bottom:779.145000px;}
.y2d4{bottom:780.045000px;}
.y1f6{bottom:781.665000px;}
.y1ca{bottom:783.105000px;}
.yef{bottom:783.645000px;}
.y23d{bottom:784.725000px;}
.y94{bottom:784.905000px;}
.y129{bottom:786.705000px;}
.y4c{bottom:787.965000px;}
.yb4{bottom:788.145000px;}
.y277{bottom:789.045000px;}
.y144{bottom:789.945000px;}
.ycf{bottom:791.745000px;}
.y2a1{bottom:793.006500px;}
.y216{bottom:796.065000px;}
.y27{bottom:796.951800px;}
.y350{bottom:797.325000px;}
.y10b{bottom:798.585000px;}
.y1f5{bottom:802.545000px;}
.y23c{bottom:805.605000px;}
.y34b{bottom:808.125000px;}
.y4b{bottom:808.665000px;}
.y276{bottom:808.845000px;}
.y7e{bottom:809.025000px;}
.y183{bottom:810.285000px;}
.y1c9{bottom:814.065000px;}
.yee{bottom:814.605000px;}
.y13{bottom:815.670000px;}
.y215{bottom:816.945000px;}
.y26{bottom:817.201800px;}
.y128{bottom:817.845000px;}
.y143{bottom:821.085000px;}
.yce{bottom:822.885000px;}
.y1f4{bottom:823.245000px;}
.y3bb{bottom:824.325000px;}
.y2a0{bottom:825.406500px;}
.yb3{bottom:826.125000px;}
.y275{bottom:828.645000px;}
.y4a{bottom:829.365000px;}
.y10a{bottom:829.725000px;}
.y7d{bottom:829.905000px;}
.y2fe{bottom:831.525000px;}
.y93{bottom:832.425000px;}
.y25{bottom:837.451800px;}
.y34a{bottom:840.525000px;}
.y23b{bottom:841.065000px;}
.y182{bottom:841.245000px;}
.y29f{bottom:842.866500px;}
.y1c8{bottom:845.250000px;}
.yed{bottom:845.790000px;}
.y3ae{bottom:847.410000px;}
.y274{bottom:848.490000px;}
.y127{bottom:848.850000px;}
.yb2{bottom:849.930000px;}
.y49{bottom:850.110000px;}
.y7c{bottom:850.650000px;}
.y142{bottom:852.090000px;}
.y214{bottom:852.450000px;}
.ycd{bottom:853.890000px;}
.y19e{bottom:854.070000px;}
.y92{bottom:856.230000px;}
.y3ba{bottom:856.590000px;}
.y24{bottom:857.701800px;}
.y349{bottom:858.015000px;}
.y1f3{bottom:858.930000px;}
.y29e{bottom:859.966500px;}
.y109{bottom:860.730000px;}
.y23a{bottom:861.990000px;}
.y386{bottom:867.210000px;}
.y273{bottom:868.290000px;}
.y48{bottom:870.810000px;}
.y7b{bottom:871.350000px;}
.y181{bottom:872.430000px;}
.y213{bottom:873.330000px;}
.y348{bottom:875.115000px;}
.y1c7{bottom:876.210000px;}
.yec{bottom:876.750000px;}
.y29d{bottom:877.246500px;}
.y23{bottom:877.951800px;}
.y1f2{bottom:879.810000px;}
.y126{bottom:879.990000px;}
.y91{bottom:880.170000px;}
.y239{bottom:882.690000px;}
.y141{bottom:883.230000px;}
.ycc{bottom:885.030000px;}
.y329{bottom:887.010000px;}
.y272{bottom:888.270000px;}
.yb1{bottom:888.810000px;}
.y47{bottom:891.510000px;}
.y108{bottom:891.870000px;}
.y7a{bottom:892.050000px;}
.y180{bottom:903.390000px;}
.y3{bottom:905.716500px;}
.yeb{bottom:907.890000px;}
.y271{bottom:908.070000px;}
.y212{bottom:908.970000px;}
.y125{bottom:910.950000px;}
.y46{bottom:912.210000px;}
.yb0{bottom:912.570000px;}
.y79{bottom:912.750000px;}
.y140{bottom:914.190000px;}
.y1f1{bottom:915.270000px;}
.ycb{bottom:915.990000px;}
.y19d{bottom:916.170000px;}
.y90{bottom:918.870000px;}
.y3b9{bottom:921.030000px;}
.y1c6{bottom:922.290000px;}
.y107{bottom:922.830000px;}
.y238{bottom:924.090000px;}
.y26f{bottom:927.870000px;}
.y211{bottom:929.850000px;}
.y45{bottom:932.910000px;}
.y78{bottom:933.090000px;}
.y17f{bottom:934.530000px;}
.y1f0{bottom:936.150000px;}
.yaf{bottom:936.330000px;}
.y13f{bottom:936.690000px;}
.yea{bottom:938.850000px;}
.yca{bottom:940.110000px;}
.y124{bottom:942.090000px;}
.y237{bottom:944.790000px;}
.y19c{bottom:947.130000px;}
.y26e{bottom:947.670000px;}
.y22{bottom:947.701800px;}
.y210{bottom:950.550000px;}
.y34c{bottom:951.090000px;}
.y3b8{bottom:953.250000px;}
.y1c5{bottom:953.430000px;}
.y44{bottom:953.610000px;}
.y106{bottom:953.970000px;}
.y77{bottom:954.150000px;}
.y8f{bottom:957.750000px;}
.yae{bottom:960.270000px;}
.y2{bottom:964.228500px;}
.y254{bottom:965.310000px;}
.y17e{bottom:965.490000px;}
.y2f9{bottom:966.390000px;}
.y26c{bottom:967.470000px;}
.y21{bottom:967.951800px;}
.ye9{bottom:969.990000px;}
.y1ef{bottom:971.610000px;}
.y123{bottom:973.050000px;}
.y43{bottom:974.310000px;}
.y76{bottom:974.850000px;}
.y19b{bottom:978.270000px;}
.y8e{bottom:981.510000px;}
.y383{bottom:982.050000px;}
.y1c4{bottom:984.390000px;}
.y105{bottom:984.930000px;}
.y2d3{bottom:985.650000px;}
.y20f{bottom:986.010000px;}
.y253{bottom:986.190000px;}
.y269{bottom:988.170000px;}
.y20{bottom:988.201800px;}
.yc9{bottom:988.350000px;}
.y1{bottom:989.716500px;}
.y1ee{bottom:992.490000px;}
.y42{bottom:995.010000px;}
.y75{bottom:995.550000px;}
.y17d{bottom:996.630000px;}
.yad{bottom:998.970000px;}
.y236{bottom:1000.950000px;}
.y3a9{bottom:1002.030000px;}
.y122{bottom:1004.190000px;}
.y20e{bottom:1006.890000px;}
.y19a{bottom:1009.230000px;}
.y1ed{bottom:1014.810000px;}
.y41{bottom:1015.710000px;}
.ye8{bottom:1016.070000px;}
.y74{bottom:1016.250000px;}
.y36d{bottom:1020.030000px;}
.y8d{bottom:1020.390000px;}
.y235{bottom:1021.830000px;}
.yc8{bottom:1026.510000px;}
.y17c{bottom:1027.590000px;}
.y121{bottom:1035.150000px;}
.y40{bottom:1036.050000px;}
.y73{bottom:1036.950000px;}
.yac{bottom:1037.850000px;}
.y199{bottom:1040.370000px;}
.y234{bottom:1042.530000px;}
.y8c{bottom:1044.150000px;}
.ye7{bottom:1047.030000px;}
.y3b6{bottom:1053.330000px;}
.y3f{bottom:1056.750000px;}
.y72{bottom:1057.650000px;}
.y17b{bottom:1058.730000px;}
.y1f{bottom:1060.103850px;}
.yab{bottom:1061.610000px;}
.y198{bottom:1062.330000px;}
.y1ec{bottom:1063.050000px;}
.y233{bottom:1063.230000px;}
.yc7{bottom:1064.670000px;}
.y268{bottom:1067.370000px;}
.y8b{bottom:1067.910000px;}
.y3e{bottom:1077.810000px;}
.ye6{bottom:1078.170000px;}
.y71{bottom:1078.350000px;}
.y20d{bottom:1083.930000px;}
.yaa{bottom:1085.550000px;}
.y17a{bottom:1089.690000px;}
.y8a{bottom:1091.670000px;}
.y232{bottom:1098.870000px;}
.y70{bottom:1099.050000px;}
.yc6{bottom:1102.830000px;}
.y20c{bottom:1104.630000px;}
.y267{bottom:1104.810000px;}
.y120{bottom:1105.890000px;}
.ye5{bottom:1109.130000px;}
.y179{bottom:1111.830000px;}
.y89{bottom:1115.610000px;}
.y3d{bottom:1116.330000px;}
.y252{bottom:1119.570000px;}
.y6f{bottom:1119.750000px;}
.y2f7{bottom:1121.010000px;}
.y88{bottom:1138.140000px;}
.y11f{bottom:1138.320000px;}
.y3c{bottom:1140.300000px;}
.y6e{bottom:1140.480000px;}
.ya9{bottom:1141.020000px;}
.y6d{bottom:1195.380000px;}
.h1b{height:19.785000px;}
.h1e{height:19.800000px;}
.h21{height:19.821000px;}
.h1d{height:19.822500px;}
.h20{height:19.830000px;}
.h1a{height:19.965000px;}
.h1f{height:19.980000px;}
.h5a{height:32.205000px;}
.h5b{height:32.242500px;}
.h4{height:33.000000px;}
.h32{height:34.770000px;}
.h59{height:34.905000px;}
.h5f{height:35.991211px;}
.h18{height:39.585000px;}
.h31{height:43.681992px;}
.h55{height:49.485000px;}
.hb{height:50.027344px;}
.h22{height:50.312812px;}
.h14{height:53.302500px;}
.h1c{height:56.320312px;}
.h3{height:58.406250px;}
.h17{height:58.651172px;}
.h13{height:60.046875px;}
.h16{height:60.960938px;}
.h19{height:62.327813px;}
.h58{height:64.425000px;}
.ha{height:65.660889px;}
.h12{height:65.837812px;}
.h5c{height:66.600000px;}
.h2{height:66.750000px;}
.h57{height:66.765000px;}
.h5{height:67.740234px;}
.h56{height:69.086250px;}
.h10{height:70.628906px;}
.hf{height:70.664062px;}
.he{height:72.562500px;}
.h15{height:81.078047px;}
.h2c{height:84.060000px;}
.h11{height:85.106250px;}
.h53{height:94.342500px;}
.h47{height:101.190000px;}
.h23{height:101.325000px;}
.h4d{height:114.105000px;}
.h7{height:115.215000px;}
.h26{height:118.440000px;}
.h39{height:118.972500px;}
.h29{height:120.592500px;}
.h4b{height:134.092500px;}
.h34{height:134.122500px;}
.h48{height:135.705000px;}
.h43{height:135.712500px;}
.h46{height:135.720000px;}
.h44{height:135.750000px;}
.h40{height:153.015000px;}
.h37{height:153.750000px;}
.h33{height:153.885000px;}
.h3e{height:153.892500px;}
.h4a{height:153.915000px;}
.h3c{height:153.930000px;}
.h2a{height:170.130000px;}
.h41{height:170.310000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h2f{height:173.685000px;}
.h4c{height:173.730000px;}
.h28{height:187.395000px;}
.h2d{height:187.410000px;}
.h50{height:193.485000px;}
.h38{height:193.515000px;}
.h30{height:198.382500px;}
.h2b{height:204.690000px;}
.h3b{height:213.330000px;}
.h45{height:221.970000px;}
.h27{height:222.150000px;}
.h51{height:233.122500px;}
.h54{height:233.130000px;}
.h3a{height:233.265000px;}
.h3d{height:233.295000px;}
.h25{height:239.250000px;}
.h35{height:253.080000px;}
.h42{height:273.795000px;}
.h49{height:288.742500px;}
.hd{height:300.375792px;}
.h4f{height:312.540000px;}
.h2e{height:372.802500px;}
.h36{height:467.887500px;}
.h52{height:483.000000px;}
.h5e{height:612.000000px;}
.h5d{height:612.090000px;}
.h4e{height:740.790000px;}
.h3f{height:888.795000px;}
.h24{height:890.910000px;}
.h9{height:1188.000000px;}
.h0{height:1262.835000px;}
.hc{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:67.665000px;}
.w10{width:77.976000px;}
.w13{width:78.141000px;}
.w11{width:81.165000px;}
.w14{width:82.605000px;}
.wc{width:103.125000px;}
.wd{width:103.161000px;}
.w17{width:127.656000px;}
.we{width:141.289500px;}
.wf{width:146.361000px;}
.w15{width:159.139500px;}
.w16{width:159.480000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.wb{width:388.860000px;}
.w18{width:446.284500px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w1a{width:798.000000px;}
.w19{width:798.090000px;}
.w0{width:892.920000px;}
.wa{width:892.980000px;}
.w1{width:893.250000px;}
.w9{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xf{left:8.085000px;}
.x1b{left:10.065000px;}
.x17{left:11.340000px;}
.x20{left:14.385000px;}
.x26{left:16.725000px;}
.x22{left:18.360000px;}
.x16{left:20.160000px;}
.x25{left:23.385000px;}
.x1f{left:24.645000px;}
.x23{left:27.180000px;}
.x1d{left:30.045000px;}
.x18{left:34.740000px;}
.x19{left:36.360000px;}
.x27{left:38.880000px;}
.x28{left:40.485000px;}
.x24{left:62.130000px;}
.xc{left:84.960000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xa{left:135.000000px;}
.x13{left:140.806500px;}
.x12{left:148.896000px;}
.x5{left:174.105000px;}
.xe{left:182.925000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x14{left:282.105000px;}
.xb{left:285.930000px;}
.x29{left:299.595000px;}
.xd{left:360.915000px;}
.x2b{left:377.040000px;}
.x15{left:428.475000px;}
.x2a{left:459.075000px;}
.x1a{left:506.460000px;}
.x10{left:571.800000px;}
.x1c{left:587.640000px;}
.x1e{left:655.320000px;}
.x11{left:674.940000px;}
.x21{left:733.470000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.079360pt;}
.ls2{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.133120pt;}
.lsc{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.592640pt;}
.lsa{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.704000pt;}
.ls6{letter-spacing:2.693120pt;}
.ls7{letter-spacing:4.613120pt;}
.ls15{letter-spacing:6.992640pt;}
.ls5{letter-spacing:19.333120pt;}
.ls4{letter-spacing:21.253120pt;}
.ls3{letter-spacing:28.672000pt;}
.ls11{letter-spacing:37.072640pt;}
.lse{letter-spacing:331.626667pt;}
.ws0{word-spacing:-16.874667pt;}
.ws15{word-spacing:-16.256000pt;}
.ws16{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws19{word-spacing:-14.998293pt;}
.ws1b{word-spacing:-14.814720pt;}
.ws18{word-spacing:-14.767360pt;}
.ws1a{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.672427pt;}
.ws14{word-spacing:-0.472000pt;}
.ws7{word-spacing:-0.027733pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:1.919467pt;}
.wsf{word-spacing:5.406933pt;}
.ws12{word-spacing:5.536533pt;}
.ws4{word-spacing:10.036800pt;}
.ws10{word-spacing:10.454400pt;}
.ws13{word-spacing:13.686933pt;}
.ws5{word-spacing:17.024000pt;}
.wsc{word-spacing:17.403733pt;}
.ws6{word-spacing:18.456000pt;}
.ws2{word-spacing:19.973867pt;}
.ws3{word-spacing:20.406400pt;}
.wsb{word-spacing:26.953600pt;}
.wsd{word-spacing:35.133333pt;}
.wse{word-spacing:35.218667pt;}
.ws9{word-spacing:529.357867pt;}
.ws8{word-spacing:564.877867pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-4.896000pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._f{width:1.198933pt;}
._10{width:2.350933pt;}
._13{width:3.281067pt;}
._0{width:4.966400pt;}
._14{width:5.870933pt;}
._19{width:6.784000pt;}
._18{width:7.748267pt;}
._1f{width:9.536000pt;}
._1d{width:10.624000pt;}
._1e{width:11.630933pt;}
._1a{width:12.608000pt;}
._1b{width:13.568000pt;}
._15{width:14.784000pt;}
._1c{width:17.408000pt;}
._d{width:18.853867pt;}
._26{width:19.748800pt;}
._12{width:20.672000pt;}
._29{width:21.568000pt;}
._e{width:22.467733pt;}
._17{width:23.740267pt;}
._22{width:24.640000pt;}
._20{width:25.792000pt;}
._21{width:27.008000pt;}
._27{width:27.968000pt;}
._28{width:28.864000pt;}
._23{width:30.336000pt;}
._2a{width:31.360000pt;}
._24{width:32.320000pt;}
._25{width:33.542400pt;}
._b{width:34.439467pt;}
._16{width:35.640533pt;}
._4{width:37.357333pt;}
._c{width:52.043200pt;}
._2c{width:140.752640pt;}
._a{width:295.309867pt;}
._8{width:298.893867pt;}
._9{width:330.701867pt;}
._7{width:340.845867pt;}
._6{width:400.077867pt;}
._11{width:752.266667pt;}
._2b{width:756.346027pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:72.533333pt;}
.fs1{font-size:74.666667pt;}
.fs3{font-size:84.000000pt;}
.fs9{font-size:85.120000pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:256.000675pt;}
.y0{bottom:0.000000pt;}
.y2cf{bottom:2.873333pt;}
.y291{bottom:5.106667pt;}
.y2f4{bottom:5.113333pt;}
.y26b{bottom:5.120000pt;}
.y26d{bottom:5.280000pt;}
.y27d{bottom:6.400000pt;}
.y270{bottom:6.560000pt;}
.y279{bottom:6.720000pt;}
.yc{bottom:7.146667pt;}
.y3bf{bottom:9.333333pt;}
.y2c6{bottom:16.146667pt;}
.y369{bottom:16.153333pt;}
.y2ad{bottom:16.160000pt;}
.y375{bottom:16.186667pt;}
.y29a{bottom:16.320000pt;}
.y2ce{bottom:18.233333pt;}
.y3a6{bottom:18.393333pt;}
.y319{bottom:18.400000pt;}
.y2f8{bottom:18.426667pt;}
.y323{bottom:18.546667pt;}
.y344{bottom:18.548000pt;}
.y2e8{bottom:18.560000pt;}
.y33b{bottom:18.586667pt;}
.y304{bottom:18.600000pt;}
.y326{bottom:22.713333pt;}
.y26a{bottom:22.720000pt;}
.y2f3{bottom:22.868000pt;}
.y17{bottom:29.826667pt;}
.y297{bottom:31.520000pt;}
.y2c5{bottom:31.666667pt;}
.y368{bottom:31.668000pt;}
.y299{bottom:31.680000pt;}
.y358{bottom:31.706667pt;}
.y2cd{bottom:33.588000pt;}
.y3a5{bottom:35.988000pt;}
.y318{bottom:36.000000pt;}
.y399{bottom:36.026667pt;}
.y322{bottom:36.146667pt;}
.y343{bottom:36.148000pt;}
.y2e7{bottom:36.160000pt;}
.y33a{bottom:36.186667pt;}
.y303{bottom:36.200000pt;}
.y325{bottom:40.308000pt;}
.y2f2{bottom:40.468000pt;}
.y3b7{bottom:44.800000pt;}
.y2b3{bottom:46.880000pt;}
.y2c4{bottom:46.906667pt;}
.y367{bottom:47.028000pt;}
.y296{bottom:47.040000pt;}
.y357{bottom:47.066667pt;}
.y352{bottom:47.080000pt;}
.y2d1{bottom:47.828000pt;}
.y363{bottom:48.788000pt;}
.y2cc{bottom:48.948000pt;}
.y16{bottom:49.453333pt;}
.y3a4{bottom:53.588000pt;}
.y317{bottom:53.600000pt;}
.y398{bottom:53.626667pt;}
.y342{bottom:53.748000pt;}
.y2e6{bottom:53.760000pt;}
.y321{bottom:53.786667pt;}
.y302{bottom:53.800000pt;}
.y378{bottom:54.400000pt;}
.y36b{bottom:54.548000pt;}
.y3b0{bottom:56.000000pt;}
.y2f1{bottom:58.068000pt;}
.y1d{bottom:61.786667pt;}
.y29b{bottom:62.240000pt;}
.y2c3{bottom:62.266667pt;}
.y366{bottom:62.388000pt;}
.y295{bottom:62.400000pt;}
.y356{bottom:62.426667pt;}
.y2ac{bottom:62.440000pt;}
.y2d0{bottom:63.188000pt;}
.y2cb{bottom:64.308000pt;}
.y15{bottom:69.080000pt;}
.y377{bottom:69.920000pt;}
.y36a{bottom:70.068000pt;}
.y341{bottom:71.348000pt;}
.y2fb{bottom:71.360000pt;}
.y320{bottom:71.386667pt;}
.y301{bottom:71.400000pt;}
.y2e5{bottom:71.520000pt;}
.y387{bottom:73.600000pt;}
.y2f0{bottom:75.668000pt;}
.y2c7{bottom:77.466667pt;}
.y362{bottom:77.588000pt;}
.y298{bottom:77.600000pt;}
.y2c2{bottom:77.626667pt;}
.y351{bottom:77.640000pt;}
.y294{bottom:77.760000pt;}
.y355{bottom:77.786667pt;}
.y2ab{bottom:77.800000pt;}
.y328{bottom:77.908000pt;}
.y2ca{bottom:79.668000pt;}
.y1c{bottom:81.413333pt;}
.y2d7{bottom:85.160000pt;}
.y14{bottom:88.706667pt;}
.y380{bottom:88.948000pt;}
.y2fa{bottom:88.960000pt;}
.y334{bottom:88.986667pt;}
.y340{bottom:89.108000pt;}
.y2e4{bottom:89.120000pt;}
.y31f{bottom:89.146667pt;}
.y300{bottom:89.160000pt;}
.y382{bottom:91.348000pt;}
.y306{bottom:91.400000pt;}
.y2b4{bottom:92.800000pt;}
.y370{bottom:92.840000pt;}
.y365{bottom:92.948000pt;}
.y2b2{bottom:92.960000pt;}
.y2c1{bottom:92.986667pt;}
.y2aa{bottom:93.000000pt;}
.y361{bottom:93.108000pt;}
.y2ba{bottom:93.120000pt;}
.y35c{bottom:93.146667pt;}
.y2ef{bottom:93.268000pt;}
.y327{bottom:93.428000pt;}
.y2af{bottom:94.120000pt;}
.y2d2{bottom:94.708000pt;}
.y2c9{bottom:94.868000pt;}
.y30e{bottom:96.998667pt;}
.y2d6{bottom:100.680000pt;}
.y266{bottom:100.992000pt;}
.y1b{bottom:101.040000pt;}
.y13e{bottom:104.352000pt;}
.y1c3{bottom:104.512000pt;}
.y3a3{bottom:106.548000pt;}
.y316{bottom:106.560000pt;}
.y333{bottom:106.586667pt;}
.y33f{bottom:106.708000pt;}
.y2e3{bottom:106.720000pt;}
.y31e{bottom:106.746667pt;}
.y2ff{bottom:106.760000pt;}
.y381{bottom:106.868000pt;}
.y305{bottom:106.920000pt;}
.y36c{bottom:108.148000pt;}
.y373{bottom:108.160000pt;}
.y36e{bottom:108.186667pt;}
.y353{bottom:108.200000pt;}
.y364{bottom:108.308000pt;}
.y2b9{bottom:108.320000pt;}
.y2c0{bottom:108.346667pt;}
.y2a9{bottom:108.360000pt;}
.y360{bottom:108.468000pt;}
.y31a{bottom:108.800000pt;}
.y346{bottom:108.948000pt;}
.y2fd{bottom:108.960000pt;}
.y336{bottom:108.986667pt;}
.y104{bottom:109.312000pt;}
.y2ae{bottom:109.480000pt;}
.y3a{bottom:110.201600pt;}
.y29c{bottom:110.278667pt;}
.ye4{bottom:110.912000pt;}
.y2ee{bottom:111.028000pt;}
.y6c{bottom:111.552000pt;}
.y388{bottom:111.718667pt;}
.ya8{bottom:113.632000pt;}
.y159{bottom:114.912000pt;}
.y33d{bottom:115.238667pt;}
.y35f{bottom:116.038667pt;}
.y1de{bottom:117.472000pt;}
.y11e{bottom:117.952000pt;}
.y379{bottom:118.118667pt;}
.y2db{bottom:118.598667pt;}
.y10{bottom:119.053333pt;}
.y265{bottom:119.552000pt;}
.y20b{bottom:119.872000pt;}
.y1a{bottom:120.666667pt;}
.y1b3{bottom:123.232000pt;}
.y2bf{bottom:123.546667pt;}
.y354{bottom:123.560000pt;}
.y34f{bottom:123.680000pt;}
.y2b8{bottom:123.706667pt;}
.yc5{bottom:123.712000pt;}
.y2a8{bottom:123.720000pt;}
.y3a2{bottom:124.148000pt;}
.y315{bottom:124.160000pt;}
.y397{bottom:124.186667pt;}
.y33e{bottom:124.308000pt;}
.y2e2{bottom:124.320000pt;}
.y31d{bottom:124.346667pt;}
.y345{bottom:124.468000pt;}
.y2fc{bottom:124.480000pt;}
.y335{bottom:124.506667pt;}
.y2ea{bottom:126.720000pt;}
.y385{bottom:126.746667pt;}
.y2ed{bottom:128.628000pt;}
.y6b{bottom:129.952000pt;}
.y168{bottom:131.232000pt;}
.y13d{bottom:132.032000pt;}
.y178{bottom:132.192000pt;}
.y231{bottom:133.946667pt;}
.y251{bottom:135.866667pt;}
.y103{bottom:136.826667pt;}
.y18{bottom:137.733333pt;}
.y264{bottom:137.946667pt;}
.ye3{bottom:138.426667pt;}
.yf{bottom:138.680000pt;}
.y2be{bottom:138.906667pt;}
.y34e{bottom:139.040000pt;}
.y2b7{bottom:139.066667pt;}
.y2a7{bottom:139.080000pt;}
.y19{bottom:140.293333pt;}
.y3a1{bottom:141.748000pt;}
.y396{bottom:141.786667pt;}
.y2e1{bottom:141.920000pt;}
.y31c{bottom:141.946667pt;}
.y2e9{bottom:142.080000pt;}
.y384{bottom:142.106667pt;}
.y158{bottom:142.586667pt;}
.y39d{bottom:144.320000pt;}
.y324{bottom:144.346667pt;}
.y1dd{bottom:144.986667pt;}
.y11d{bottom:145.466667pt;}
.y2ec{bottom:146.268000pt;}
.y6a{bottom:148.346667pt;}
.y2f6{bottom:148.508000pt;}
.y1eb{bottom:149.146667pt;}
.y1b2{bottom:150.746667pt;}
.y197{bottom:151.866667pt;}
.y230{bottom:152.506667pt;}
.ya7{bottom:153.946667pt;}
.y2c8{bottom:154.106667pt;}
.y2bd{bottom:154.266667pt;}
.y36f{bottom:154.280000pt;}
.y250{bottom:154.426667pt;}
.y2a6{bottom:154.440000pt;}
.y20a{bottom:156.826667pt;}
.yc4{bottom:157.626667pt;}
.y167{bottom:158.746667pt;}
.y32a{bottom:159.520000pt;}
.y13c{bottom:159.546667pt;}
.y3a0{bottom:159.548000pt;}
.y32f{bottom:159.560000pt;}
.y30b{bottom:159.680000pt;}
.y177{bottom:159.706667pt;}
.y331{bottom:161.800000pt;}
.y2eb{bottom:163.868000pt;}
.y2f5{bottom:164.028000pt;}
.y102{bottom:164.506667pt;}
.ye2{bottom:166.106667pt;}
.y69{bottom:166.746667pt;}
.y263{bottom:169.466667pt;}
.y37e{bottom:169.468000pt;}
.y2d8{bottom:169.480000pt;}
.y34d{bottom:169.626667pt;}
.y2d5{bottom:169.640000pt;}
.y2b6{bottom:169.786667pt;}
.y2a5{bottom:169.800000pt;}
.y157{bottom:170.106667pt;}
.y22f{bottom:170.906667pt;}
.y39{bottom:171.401600pt;}
.y1dc{bottom:172.666667pt;}
.y24f{bottom:172.826667pt;}
.y11c{bottom:173.146667pt;}
.y1ea{bottom:176.666667pt;}
.y339{bottom:177.146667pt;}
.y39f{bottom:177.148000pt;}
.y32e{bottom:177.160000pt;}
.y30a{bottom:177.280000pt;}
.y330{bottom:177.320000pt;}
.y1b1{bottom:178.426667pt;}
.y3a8{bottom:179.388000pt;}
.y32c{bottom:179.520000pt;}
.y196{bottom:179.546667pt;}
.y371{bottom:184.840000pt;}
.y2bb{bottom:184.986667pt;}
.y2a4{bottom:185.000000pt;}
.y68{bottom:185.146667pt;}
.y166{bottom:186.426667pt;}
.y13b{bottom:187.226667pt;}
.y176{bottom:187.386667pt;}
.y262{bottom:188.026667pt;}
.y209{bottom:188.506667pt;}
.y22e{bottom:189.306667pt;}
.y38{bottom:190.601600pt;}
.yc3{bottom:191.546667pt;}
.y101{bottom:192.026667pt;}
.ye1{bottom:193.626667pt;}
.ya6{bottom:194.106667pt;}
.y395{bottom:194.746667pt;}
.y39e{bottom:194.748000pt;}
.y309{bottom:194.880000pt;}
.y338{bottom:194.906667pt;}
.y3a7{bottom:194.908000pt;}
.y32b{bottom:195.040000pt;}
.y33c{bottom:195.066667pt;}
.y30d{bottom:197.120000pt;}
.y156{bottom:197.786667pt;}
.y37d{bottom:198.268000pt;}
.y2b0{bottom:200.200000pt;}
.y35b{bottom:200.346667pt;}
.y2a3{bottom:200.360000pt;}
.y11b{bottom:200.666667pt;}
.y67{bottom:203.226667pt;}
.y31b{bottom:203.400000pt;}
.y1e9{bottom:204.346667pt;}
.y1b0{bottom:205.946667pt;}
.y261{bottom:206.426667pt;}
.y195{bottom:207.066667pt;}
.y13a{bottom:207.226667pt;}
.y22d{bottom:207.706667pt;}
.y293{bottom:208.506667pt;}
.y37{bottom:209.801600pt;}
.y394{bottom:212.346667pt;}
.y308{bottom:212.480000pt;}
.y30c{bottom:212.640000pt;}
.y1db{bottom:213.466667pt;}
.y37c{bottom:213.788000pt;}
.y165{bottom:213.946667pt;}
.y175{bottom:214.906667pt;}
.y35d{bottom:215.546667pt;}
.y35a{bottom:215.706667pt;}
.y2bc{bottom:218.280000pt;}
.y100{bottom:219.706667pt;}
.ye0{bottom:221.306667pt;}
.y66{bottom:221.946667pt;}
.y24e{bottom:222.906667pt;}
.y155{bottom:225.306667pt;}
.yc2{bottom:225.466667pt;}
.y22c{bottom:226.106667pt;}
.y1c2{bottom:228.186667pt;}
.y11a{bottom:228.346667pt;}
.y36{bottom:229.001600pt;}
.y37b{bottom:229.148000pt;}
.y393{bottom:229.946667pt;}
.y35e{bottom:230.906667pt;}
.y359{bottom:231.066667pt;}
.y1e8{bottom:231.866667pt;}
.y292{bottom:232.346667pt;}
.y1af{bottom:233.626667pt;}
.ya5{bottom:234.266667pt;}
.y194{bottom:234.746667pt;}
.y347{bottom:237.320000pt;}
.y260{bottom:237.946667pt;}
.y37f{bottom:237.960000pt;}
.y208{bottom:238.586667pt;}
.y65{bottom:240.346667pt;}
.y1da{bottom:241.146667pt;}
.y24d{bottom:241.306667pt;}
.y164{bottom:241.626667pt;}
.y290{bottom:242.120000pt;}
.y174{bottom:242.586667pt;}
.y2e0{bottom:244.348000pt;}
.y22b{bottom:244.506667pt;}
.y37a{bottom:244.508000pt;}
.yff{bottom:247.226667pt;}
.y392{bottom:247.706667pt;}
.y35{bottom:248.201600pt;}
.y119{bottom:248.346667pt;}
.ydf{bottom:248.826667pt;}
.y39b{bottom:249.946667pt;}
.y139{bottom:250.106667pt;}
.y337{bottom:252.680000pt;}
.y154{bottom:252.986667pt;}
.y1c1{bottom:255.906667pt;}
.y25f{bottom:256.546667pt;}
.y207{bottom:257.186667pt;}
.y64{bottom:258.786667pt;}
.yc1{bottom:259.426667pt;}
.y28f{bottom:260.546667pt;}
.y1ae{bottom:261.186667pt;}
.y193{bottom:262.306667pt;}
.y22a{bottom:262.946667pt;}
.y391{bottom:265.346667pt;}
.y39a{bottom:265.506667pt;}
.y34{bottom:267.401600pt;}
.y1d9{bottom:268.706667pt;}
.y163{bottom:269.186667pt;}
.y173{bottom:270.146667pt;}
.y1e7{bottom:272.866667pt;}
.y24c{bottom:273.026667pt;}
.y2df{bottom:273.148000pt;}
.y118{bottom:274.306667pt;}
.ya4{bottom:274.466667pt;}
.yfe{bottom:274.946667pt;}
.y206{bottom:275.586667pt;}
.yde{bottom:276.546667pt;}
.y63{bottom:276.866667pt;}
.y138{bottom:277.666667pt;}
.y28e{bottom:278.146667pt;}
.y153{bottom:280.546667pt;}
.y229{bottom:281.346667pt;}
.y1c0{bottom:283.426667pt;}
.y33{bottom:286.601600pt;}
.y25e{bottom:288.226667pt;}
.y2de{bottom:288.668000pt;}
.y1ad{bottom:288.866667pt;}
.y192{bottom:289.986667pt;}
.y24b{bottom:291.586667pt;}
.yc0{bottom:293.346667pt;}
.y62{bottom:295.586667pt;}
.y28d{bottom:295.746667pt;}
.y1d8{bottom:296.386667pt;}
.y162{bottom:296.866667pt;}
.y172{bottom:297.826667pt;}
.y228{bottom:299.746667pt;}
.y1e6{bottom:300.386667pt;}
.yfd{bottom:302.466667pt;}
.y2dd{bottom:304.028000pt;}
.ydd{bottom:304.066667pt;}
.y137{bottom:305.346667pt;}
.ya{bottom:306.382667pt;}
.y25d{bottom:306.786667pt;}
.y205{bottom:307.106667pt;}
.y3b5{bottom:307.426667pt;}
.y152{bottom:308.226667pt;}
.y24a{bottom:309.986667pt;}
.y1bf{bottom:311.106667pt;}
.y28c{bottom:313.346667pt;}
.y61{bottom:313.986667pt;}
.ya3{bottom:314.626667pt;}
.y1ac{bottom:316.386667pt;}
.y191{bottom:317.506667pt;}
.y227{bottom:318.146667pt;}
.y2dc{bottom:319.228000pt;}
.y39c{bottom:319.586667pt;}
.y117{bottom:323.426667pt;}
.y1d7{bottom:323.906667pt;}
.y161{bottom:324.386667pt;}
.y171{bottom:325.346667pt;}
.y204{bottom:325.666667pt;}
.ybf{bottom:327.266667pt;}
.y1e5{bottom:328.066667pt;}
.y313{bottom:328.828000pt;}
.yfc{bottom:330.146667pt;}
.y28b{bottom:330.946667pt;}
.ydc{bottom:331.746667pt;}
.y60{bottom:332.386667pt;}
.y136{bottom:332.866667pt;}
.y151{bottom:335.746667pt;}
.y226{bottom:336.546667pt;}
.y3b4{bottom:337.666667pt;}
.y25c{bottom:338.306667pt;}
.y1be{bottom:338.626667pt;}
.y249{bottom:341.506667pt;}
.yd{bottom:343.546667pt;}
.y1ab{bottom:344.066667pt;}
.y190{bottom:345.186667pt;}
.y32{bottom:347.801600pt;}
.y28a{bottom:348.706667pt;}
.y5f{bottom:350.786667pt;}
.y116{bottom:351.106667pt;}
.y1d6{bottom:351.586667pt;}
.y9{bottom:351.724000pt;}
.y160{bottom:352.066667pt;}
.y170{bottom:353.026667pt;}
.ya2{bottom:354.946667pt;}
.y1e4{bottom:355.586667pt;}
.y25b{bottom:356.866667pt;}
.y203{bottom:357.346667pt;}
.y3ad{bottom:357.506667pt;}
.y312{bottom:357.628000pt;}
.yfb{bottom:357.666667pt;}
.y3b{bottom:359.440000pt;}
.y135{bottom:360.546667pt;}
.ybe{bottom:361.186667pt;}
.y150{bottom:363.426667pt;}
.y1bd{bottom:366.306667pt;}
.y31{bottom:367.001600pt;}
.y3b3{bottom:367.746667pt;}
.y5e{bottom:369.186667pt;}
.ydb{bottom:372.546667pt;}
.y18f{bottom:372.706667pt;}
.y311{bottom:373.148000pt;}
.y248{bottom:373.186667pt;}
.y225{bottom:373.346667pt;}
.y376{bottom:375.426667pt;}
.y202{bottom:375.906667pt;}
.y314{bottom:376.226667pt;}
.y115{bottom:378.626667pt;}
.y1d5{bottom:379.106667pt;}
.y15f{bottom:379.586667pt;}
.y16f{bottom:380.546667pt;}
.ya1{bottom:382.626667pt;}
.y1e3{bottom:383.266667pt;}
.y14f{bottom:383.426667pt;}
.y289{bottom:383.906667pt;}
.y1aa{bottom:384.866667pt;}
.yfa{bottom:385.346667pt;}
.y2b5{bottom:385.506667pt;}
.y30{bottom:386.201600pt;}
.y3ac{bottom:386.306667pt;}
.yb{bottom:386.533333pt;}
.y5d{bottom:387.586667pt;}
.y134{bottom:388.066667pt;}
.y310{bottom:388.348000pt;}
.y25a{bottom:388.386667pt;}
.y224{bottom:391.746667pt;}
.y1bc{bottom:393.826667pt;}
.ybd{bottom:395.106667pt;}
.y8{bottom:397.065333pt;}
.yda{bottom:400.226667pt;}
.y18e{bottom:400.386667pt;}
.y3b2{bottom:401.346667pt;}
.y288{bottom:401.506667pt;}
.y3ab{bottom:401.826667pt;}
.y30f{bottom:403.708000pt;}
.y2f{bottom:405.401600pt;}
.y5c{bottom:405.986667pt;}
.y114{bottom:406.306667pt;}
.y1d4{bottom:406.786667pt;}
.y259{bottom:406.946667pt;}
.y15e{bottom:407.266667pt;}
.y201{bottom:407.426667pt;}
.y16e{bottom:408.226667pt;}
.y223{bottom:410.146667pt;}
.y1e2{bottom:410.786667pt;}
.y1a9{bottom:412.546667pt;}
.yf9{bottom:412.866667pt;}
.y133{bottom:415.746667pt;}
.y3b1{bottom:416.066667pt;}
.ya0{bottom:417.026667pt;}
.y3aa{bottom:417.186667pt;}
.y287{bottom:419.106667pt;}
.y5b{bottom:424.386667pt;}
.y200{bottom:425.986667pt;}
.y14e{bottom:426.146667pt;}
.yd9{bottom:427.746667pt;}
.y18d{bottom:427.906667pt;}
.y222{bottom:428.546667pt;}
.ybc{bottom:429.026667pt;}
.y11{bottom:433.826667pt;}
.y1d3{bottom:434.306667pt;}
.y15d{bottom:434.786667pt;}
.y16d{bottom:435.746667pt;}
.y286{bottom:436.866667pt;}
.y9f{bottom:438.146667pt;}
.y1e1{bottom:438.466667pt;}
.y1a8{bottom:440.066667pt;}
.yf8{bottom:440.546667pt;}
.y7{bottom:442.406667pt;}
.y5a{bottom:442.786667pt;}
.y132{bottom:443.266667pt;}
.y1ff{bottom:444.386667pt;}
.y221{bottom:446.946667pt;}
.y18c{bottom:447.426667pt;}
.y2da{bottom:450.786667pt;}
.y14d{bottom:453.826667pt;}
.y285{bottom:454.466667pt;}
.yd8{bottom:455.426667pt;}
.y2e{bottom:456.601600pt;}
.y258{bottom:457.026667pt;}
.y9e{bottom:459.426667pt;}
.y247{bottom:460.066667pt;}
.y332{bottom:460.706667pt;}
.y59{bottom:461.186667pt;}
.y113{bottom:461.506667pt;}
.y1d2{bottom:461.986667pt;}
.y1bb{bottom:462.466667pt;}
.ybb{bottom:462.946667pt;}
.y16c{bottom:463.426667pt;}
.y220{bottom:465.346667pt;}
.y1e0{bottom:465.986667pt;}
.y1a7{bottom:467.746667pt;}
.yf7{bottom:468.066667pt;}
.y18b{bottom:470.786667pt;}
.y131{bottom:470.946667pt;}
.y284{bottom:472.066667pt;}
.y15c{bottom:475.746667pt;}
.y1fe{bottom:475.906667pt;}
.y12{bottom:478.426667pt;}
.y246{bottom:478.626667pt;}
.y58{bottom:479.586667pt;}
.y14c{bottom:481.346667pt;}
.yd7{bottom:482.946667pt;}
.y21f{bottom:483.746667pt;}
.y2d{bottom:485.801600pt;}
.y1df{bottom:487.426667pt;}
.y6{bottom:487.748000pt;}
.y257{bottom:488.706667pt;}
.y87{bottom:488.866667pt;}
.y112{bottom:489.026667pt;}
.y1d1{bottom:489.506667pt;}
.y283{bottom:489.666667pt;}
.y1ba{bottom:489.986667pt;}
.y16b{bottom:490.946667pt;}
.y390{bottom:492.386667pt;}
.y9d{bottom:493.826667pt;}
.y1fd{bottom:494.466667pt;}
.y1a6{bottom:495.266667pt;}
.yf6{bottom:495.746667pt;}
.y374{bottom:496.706667pt;}
.yba{bottom:496.866667pt;}
.y245{bottom:497.026667pt;}
.y57{bottom:497.666667pt;}
.y130{bottom:498.466667pt;}
.y21e{bottom:502.146667pt;}
.y15b{bottom:503.453333pt;}
.y256{bottom:507.293333pt;}
.y14b{bottom:509.053333pt;}
.yd6{bottom:510.653333pt;}
.y16a{bottom:511.133333pt;}
.y307{bottom:513.533333pt;}
.y18a{bottom:513.693333pt;}
.y9c{bottom:514.973333pt;}
.y2c{bottom:515.001600pt;}
.yf5{bottom:515.773333pt;}
.y56{bottom:516.413333pt;}
.y111{bottom:516.733333pt;}
.y1d0{bottom:517.213333pt;}
.y1b9{bottom:517.693333pt;}
.y21d{bottom:520.573333pt;}
.y1a5{bottom:522.973333pt;}
.y86{bottom:523.133333pt;}
.y1e{bottom:524.093333pt;}
.y282{bottom:525.053333pt;}
.y12f{bottom:526.013333pt;}
.y1fc{bottom:526.173333pt;}
.y244{bottom:528.733333pt;}
.yb9{bottom:530.813333pt;}
.y15a{bottom:530.973333pt;}
.y5{bottom:533.089333pt;}
.y55{bottom:534.813333pt;}
.y9b{bottom:536.253333pt;}
.y14a{bottom:536.573333pt;}
.y169{bottom:536.893333pt;}
.yd5{bottom:538.173333pt;}
.y255{bottom:538.813333pt;}
.y21c{bottom:538.973333pt;}
.y38f{bottom:540.694667pt;}
.y189{bottom:541.373333pt;}
.y281{bottom:542.653333pt;}
.y85{bottom:544.253333pt;}
.y1fb{bottom:544.733333pt;}
.y1b8{bottom:545.213333pt;}
.y243{bottom:547.293333pt;}
.y1a4{bottom:550.493333pt;}
.y54{bottom:552.893333pt;}
.y12e{bottom:553.693333pt;}
.y9a{bottom:557.373333pt;}
.y1cf{bottom:558.013333pt;}
.yf4{bottom:558.493333pt;}
.y280{bottom:560.253333pt;}
.y2b{bottom:561.201600pt;}
.ye{bottom:561.706667pt;}
.y1fa{bottom:563.133333pt;}
.y149{bottom:564.253333pt;}
.yb8{bottom:564.733333pt;}
.y84{bottom:565.533333pt;}
.y242{bottom:565.693333pt;}
.yd4{bottom:565.853333pt;}
.y188{bottom:568.893333pt;}
.y38e{bottom:569.494667pt;}
.y53{bottom:571.613333pt;}
.y110{bottom:571.933333pt;}
.y1b7{bottom:572.893333pt;}
.y27f{bottom:577.853333pt;}
.y1a3{bottom:578.173333pt;}
.y99{bottom:578.493333pt;}
.y12d{bottom:581.213333pt;}
.y2b1{bottom:583.613333pt;}
.y38d{bottom:585.014667pt;}
.y1ce{bottom:585.693333pt;}
.yf3{bottom:586.173333pt;}
.y83{bottom:586.653333pt;}
.y372{bottom:587.453333pt;}
.y21b{bottom:588.893333pt;}
.y52{bottom:590.013333pt;}
.y148{bottom:591.773333pt;}
.yd3{bottom:593.373333pt;}
.y1f9{bottom:594.653333pt;}
.y27e{bottom:595.453333pt;}
.y187{bottom:596.573333pt;}
.y241{bottom:597.213333pt;}
.y32d{bottom:598.173333pt;}
.yb7{bottom:598.813333pt;}
.y10f{bottom:599.453333pt;}
.y98{bottom:599.613333pt;}
.y38c{bottom:600.214667pt;}
.y1b6{bottom:600.413333pt;}
.y12c{bottom:601.373333pt;}
.y1a2{bottom:605.693333pt;}
.y2a{bottom:607.401600pt;}
.y21a{bottom:607.453333pt;}
.y82{bottom:607.773333pt;}
.y51{bottom:608.093333pt;}
.y1cd{bottom:613.213333pt;}
.yf2{bottom:613.693333pt;}
.y38b{bottom:615.574667pt;}
.y240{bottom:615.773333pt;}
.y2d9{bottom:618.013333pt;}
.y147{bottom:619.453333pt;}
.y97{bottom:620.893333pt;}
.yd2{bottom:621.053333pt;}
.y186{bottom:624.093333pt;}
.y3be{bottom:624.253333pt;}
.y50{bottom:626.813333pt;}
.y10e{bottom:627.133333pt;}
.y1b5{bottom:628.093333pt;}
.y81{bottom:628.893333pt;}
.y27c{bottom:630.813333pt;}
.y38a{bottom:630.934667pt;}
.yb6{bottom:632.733333pt;}
.y1a1{bottom:633.373333pt;}
.y29{bottom:636.601600pt;}
.y219{bottom:639.133333pt;}
.y1cc{bottom:640.893333pt;}
.yf1{bottom:641.373333pt;}
.y96{bottom:642.013333pt;}
.y12b{bottom:644.093333pt;}
.y1f8{bottom:644.733333pt;}
.y4f{bottom:645.213333pt;}
.y389{bottom:646.334667pt;}
.y146{bottom:646.973333pt;}
.y23f{bottom:647.293333pt;}
.y27b{bottom:648.413333pt;}
.yd1{bottom:648.573333pt;}
.y80{bottom:650.173333pt;}
.y10d{bottom:654.653333pt;}
.y1b4{bottom:655.613333pt;}
.y218{bottom:657.693333pt;}
.y3bd{bottom:658.813333pt;}
.y1a0{bottom:660.893333pt;}
.y1f7{bottom:663.293333pt;}
.y4e{bottom:663.613333pt;}
.y185{bottom:665.053333pt;}
.y28{bottom:665.801600pt;}
.y23e{bottom:665.853333pt;}
.y27a{bottom:666.013333pt;}
.yb5{bottom:666.653333pt;}
.y1cb{bottom:668.413333pt;}
.y3af{bottom:668.733333pt;}
.yf0{bottom:668.893333pt;}
.y12a{bottom:671.773333pt;}
.y3bc{bottom:672.733333pt;}
.y145{bottom:674.653333pt;}
.y217{bottom:676.093333pt;}
.yd0{bottom:676.253333pt;}
.y95{bottom:676.413333pt;}
.y4d{bottom:682.013333pt;}
.y10c{bottom:682.333333pt;}
.y278{bottom:683.613333pt;}
.y7f{bottom:684.573333pt;}
.y19f{bottom:688.573333pt;}
.y2a2{bottom:689.533333pt;}
.y4{bottom:691.756000pt;}
.y184{bottom:692.573333pt;}
.y2d4{bottom:693.373333pt;}
.y1f6{bottom:694.813333pt;}
.y1ca{bottom:696.093333pt;}
.yef{bottom:696.573333pt;}
.y23d{bottom:697.533333pt;}
.y94{bottom:697.693333pt;}
.y129{bottom:699.293333pt;}
.y4c{bottom:700.413333pt;}
.yb4{bottom:700.573333pt;}
.y277{bottom:701.373333pt;}
.y144{bottom:702.173333pt;}
.ycf{bottom:703.773333pt;}
.y2a1{bottom:704.894667pt;}
.y216{bottom:707.613333pt;}
.y27{bottom:708.401600pt;}
.y350{bottom:708.733333pt;}
.y10b{bottom:709.853333pt;}
.y1f5{bottom:713.373333pt;}
.y23c{bottom:716.093333pt;}
.y34b{bottom:718.333333pt;}
.y4b{bottom:718.813333pt;}
.y276{bottom:718.973333pt;}
.y7e{bottom:719.133333pt;}
.y183{bottom:720.253333pt;}
.y1c9{bottom:723.613333pt;}
.yee{bottom:724.093333pt;}
.y13{bottom:725.040000pt;}
.y215{bottom:726.173333pt;}
.y26{bottom:726.401600pt;}
.y128{bottom:726.973333pt;}
.y143{bottom:729.853333pt;}
.yce{bottom:731.453333pt;}
.y1f4{bottom:731.773333pt;}
.y3bb{bottom:732.733333pt;}
.y2a0{bottom:733.694667pt;}
.yb3{bottom:734.333333pt;}
.y275{bottom:736.573333pt;}
.y4a{bottom:737.213333pt;}
.y10a{bottom:737.533333pt;}
.y7d{bottom:737.693333pt;}
.y2fe{bottom:739.133333pt;}
.y93{bottom:739.933333pt;}
.y25{bottom:744.401600pt;}
.y34a{bottom:747.133333pt;}
.y23b{bottom:747.613333pt;}
.y182{bottom:747.773333pt;}
.y29f{bottom:749.214667pt;}
.y1c8{bottom:751.333333pt;}
.yed{bottom:751.813333pt;}
.y3ae{bottom:753.253333pt;}
.y274{bottom:754.213333pt;}
.y127{bottom:754.533333pt;}
.yb2{bottom:755.493333pt;}
.y49{bottom:755.653333pt;}
.y7c{bottom:756.133333pt;}
.y142{bottom:757.413333pt;}
.y214{bottom:757.733333pt;}
.ycd{bottom:759.013333pt;}
.y19e{bottom:759.173333pt;}
.y92{bottom:761.093333pt;}
.y3ba{bottom:761.413333pt;}
.y24{bottom:762.401600pt;}
.y349{bottom:762.680000pt;}
.y1f3{bottom:763.493333pt;}
.y29e{bottom:764.414667pt;}
.y109{bottom:765.093333pt;}
.y23a{bottom:766.213333pt;}
.y386{bottom:770.853333pt;}
.y273{bottom:771.813333pt;}
.y48{bottom:774.053333pt;}
.y7b{bottom:774.533333pt;}
.y181{bottom:775.493333pt;}
.y213{bottom:776.293333pt;}
.y348{bottom:777.880000pt;}
.y1c7{bottom:778.853333pt;}
.yec{bottom:779.333333pt;}
.y29d{bottom:779.774667pt;}
.y23{bottom:780.401600pt;}
.y1f2{bottom:782.053333pt;}
.y126{bottom:782.213333pt;}
.y91{bottom:782.373333pt;}
.y239{bottom:784.613333pt;}
.y141{bottom:785.093333pt;}
.ycc{bottom:786.693333pt;}
.y329{bottom:788.453333pt;}
.y272{bottom:789.573333pt;}
.yb1{bottom:790.053333pt;}
.y47{bottom:792.453333pt;}
.y108{bottom:792.773333pt;}
.y7a{bottom:792.933333pt;}
.y180{bottom:803.013333pt;}
.y3{bottom:805.081333pt;}
.yeb{bottom:807.013333pt;}
.y271{bottom:807.173333pt;}
.y212{bottom:807.973333pt;}
.y125{bottom:809.733333pt;}
.y46{bottom:810.853333pt;}
.yb0{bottom:811.173333pt;}
.y79{bottom:811.333333pt;}
.y140{bottom:812.613333pt;}
.y1f1{bottom:813.573333pt;}
.ycb{bottom:814.213333pt;}
.y19d{bottom:814.373333pt;}
.y90{bottom:816.773333pt;}
.y3b9{bottom:818.693333pt;}
.y1c6{bottom:819.813333pt;}
.y107{bottom:820.293333pt;}
.y238{bottom:821.413333pt;}
.y26f{bottom:824.773333pt;}
.y211{bottom:826.533333pt;}
.y45{bottom:829.253333pt;}
.y78{bottom:829.413333pt;}
.y17f{bottom:830.693333pt;}
.y1f0{bottom:832.133333pt;}
.yaf{bottom:832.293333pt;}
.y13f{bottom:832.613333pt;}
.yea{bottom:834.533333pt;}
.yca{bottom:835.653333pt;}
.y124{bottom:837.413333pt;}
.y237{bottom:839.813333pt;}
.y19c{bottom:841.893333pt;}
.y26e{bottom:842.373333pt;}
.y22{bottom:842.401600pt;}
.y210{bottom:844.933333pt;}
.y34c{bottom:845.413333pt;}
.y3b8{bottom:847.333333pt;}
.y1c5{bottom:847.493333pt;}
.y44{bottom:847.653333pt;}
.y106{bottom:847.973333pt;}
.y77{bottom:848.133333pt;}
.y8f{bottom:851.333333pt;}
.yae{bottom:853.573333pt;}
.y2{bottom:857.092000pt;}
.y254{bottom:858.053333pt;}
.y17e{bottom:858.213333pt;}
.y2f9{bottom:859.013333pt;}
.y26c{bottom:859.973333pt;}
.y21{bottom:860.401600pt;}
.ye9{bottom:862.213333pt;}
.y1ef{bottom:863.653333pt;}
.y123{bottom:864.933333pt;}
.y43{bottom:866.053333pt;}
.y76{bottom:866.533333pt;}
.y19b{bottom:869.573333pt;}
.y8e{bottom:872.453333pt;}
.y383{bottom:872.933333pt;}
.y1c4{bottom:875.013333pt;}
.y105{bottom:875.493333pt;}
.y2d3{bottom:876.133333pt;}
.y20f{bottom:876.453333pt;}
.y253{bottom:876.613333pt;}
.y269{bottom:878.373333pt;}
.y20{bottom:878.401600pt;}
.yc9{bottom:878.533333pt;}
.y1{bottom:879.748000pt;}
.y1ee{bottom:882.213333pt;}
.y42{bottom:884.453333pt;}
.y75{bottom:884.933333pt;}
.y17d{bottom:885.893333pt;}
.yad{bottom:887.973333pt;}
.y236{bottom:889.733333pt;}
.y3a9{bottom:890.693333pt;}
.y122{bottom:892.613333pt;}
.y20e{bottom:895.013333pt;}
.y19a{bottom:897.093333pt;}
.y1ed{bottom:902.053333pt;}
.y41{bottom:902.853333pt;}
.ye8{bottom:903.173333pt;}
.y74{bottom:903.333333pt;}
.y36d{bottom:906.693333pt;}
.y8d{bottom:907.013333pt;}
.y235{bottom:908.293333pt;}
.yc8{bottom:912.453333pt;}
.y17c{bottom:913.413333pt;}
.y121{bottom:920.133333pt;}
.y40{bottom:920.933333pt;}
.y73{bottom:921.733333pt;}
.yac{bottom:922.533333pt;}
.y199{bottom:924.773333pt;}
.y234{bottom:926.693333pt;}
.y8c{bottom:928.133333pt;}
.ye7{bottom:930.693333pt;}
.y3b6{bottom:936.293333pt;}
.y3f{bottom:939.333333pt;}
.y72{bottom:940.133333pt;}
.y17b{bottom:941.093333pt;}
.y1f{bottom:942.314533pt;}
.yab{bottom:943.653333pt;}
.y198{bottom:944.293333pt;}
.y1ec{bottom:944.933333pt;}
.y233{bottom:945.093333pt;}
.yc7{bottom:946.373333pt;}
.y268{bottom:948.773333pt;}
.y8b{bottom:949.253333pt;}
.y3e{bottom:958.053333pt;}
.ye6{bottom:958.373333pt;}
.y71{bottom:958.533333pt;}
.y20d{bottom:963.493333pt;}
.yaa{bottom:964.933333pt;}
.y17a{bottom:968.613333pt;}
.y8a{bottom:970.373333pt;}
.y232{bottom:976.773333pt;}
.y70{bottom:976.933333pt;}
.yc6{bottom:980.293333pt;}
.y20c{bottom:981.893333pt;}
.y267{bottom:982.053333pt;}
.y120{bottom:983.013333pt;}
.ye5{bottom:985.893333pt;}
.y179{bottom:988.293333pt;}
.y89{bottom:991.653333pt;}
.y3d{bottom:992.293333pt;}
.y252{bottom:995.173333pt;}
.y6f{bottom:995.333333pt;}
.y2f7{bottom:996.453333pt;}
.y88{bottom:1011.680000pt;}
.y11f{bottom:1011.840000pt;}
.y3c{bottom:1013.600000pt;}
.y6e{bottom:1013.760000pt;}
.ya9{bottom:1014.240000pt;}
.y6d{bottom:1062.560000pt;}
.h1b{height:17.586667pt;}
.h1e{height:17.600000pt;}
.h21{height:17.618667pt;}
.h1d{height:17.620000pt;}
.h20{height:17.626667pt;}
.h1a{height:17.746667pt;}
.h1f{height:17.760000pt;}
.h5a{height:28.626667pt;}
.h5b{height:28.660000pt;}
.h4{height:29.333333pt;}
.h32{height:30.906667pt;}
.h59{height:31.026667pt;}
.h5f{height:31.992188pt;}
.h18{height:35.186667pt;}
.h31{height:38.828437pt;}
.h55{height:43.986667pt;}
.hb{height:44.468750pt;}
.h22{height:44.722500pt;}
.h14{height:47.380000pt;}
.h1c{height:50.062500pt;}
.h3{height:51.916667pt;}
.h17{height:52.134375pt;}
.h13{height:53.375000pt;}
.h16{height:54.187500pt;}
.h19{height:55.402500pt;}
.h58{height:57.266667pt;}
.ha{height:58.365234pt;}
.h12{height:58.522500pt;}
.h5c{height:59.200000pt;}
.h2{height:59.333333pt;}
.h57{height:59.346667pt;}
.h5{height:60.213542pt;}
.h56{height:61.410000pt;}
.h10{height:62.781250pt;}
.hf{height:62.812500pt;}
.he{height:64.500000pt;}
.h15{height:72.069375pt;}
.h2c{height:74.720000pt;}
.h11{height:75.650000pt;}
.h53{height:83.860000pt;}
.h47{height:89.946667pt;}
.h23{height:90.066667pt;}
.h4d{height:101.426667pt;}
.h7{height:102.413333pt;}
.h26{height:105.280000pt;}
.h39{height:105.753333pt;}
.h29{height:107.193333pt;}
.h4b{height:119.193333pt;}
.h34{height:119.220000pt;}
.h48{height:120.626667pt;}
.h43{height:120.633333pt;}
.h46{height:120.640000pt;}
.h44{height:120.666667pt;}
.h40{height:136.013333pt;}
.h37{height:136.666667pt;}
.h33{height:136.786667pt;}
.h3e{height:136.793333pt;}
.h4a{height:136.813333pt;}
.h3c{height:136.826667pt;}
.h2a{height:151.226667pt;}
.h41{height:151.386667pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h2f{height:154.386667pt;}
.h4c{height:154.426667pt;}
.h28{height:166.573333pt;}
.h2d{height:166.586667pt;}
.h50{height:171.986667pt;}
.h38{height:172.013333pt;}
.h30{height:176.340000pt;}
.h2b{height:181.946667pt;}
.h3b{height:189.626667pt;}
.h45{height:197.306667pt;}
.h27{height:197.466667pt;}
.h51{height:207.220000pt;}
.h54{height:207.226667pt;}
.h3a{height:207.346667pt;}
.h3d{height:207.373333pt;}
.h25{height:212.666667pt;}
.h35{height:224.960000pt;}
.h42{height:243.373333pt;}
.h49{height:256.660000pt;}
.hd{height:267.000704pt;}
.h4f{height:277.813333pt;}
.h2e{height:331.380000pt;}
.h36{height:415.900000pt;}
.h52{height:429.333333pt;}
.h5e{height:544.000000pt;}
.h5d{height:544.080000pt;}
.h4e{height:658.480000pt;}
.h3f{height:790.040000pt;}
.h24{height:791.920000pt;}
.h9{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.hc{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:60.146667pt;}
.w10{width:69.312000pt;}
.w13{width:69.458667pt;}
.w11{width:72.146667pt;}
.w14{width:73.426667pt;}
.wc{width:91.666667pt;}
.wd{width:91.698667pt;}
.w17{width:113.472000pt;}
.we{width:125.590667pt;}
.wf{width:130.098667pt;}
.w15{width:141.457333pt;}
.w16{width:141.760000pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.wb{width:345.653333pt;}
.w18{width:396.697333pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w1a{width:709.333333pt;}
.w19{width:709.413333pt;}
.w0{width:793.706667pt;}
.wa{width:793.760000pt;}
.w1{width:794.000000pt;}
.w9{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xf{left:7.186667pt;}
.x1b{left:8.946667pt;}
.x17{left:10.080000pt;}
.x20{left:12.786667pt;}
.x26{left:14.866667pt;}
.x22{left:16.320000pt;}
.x16{left:17.920000pt;}
.x25{left:20.786667pt;}
.x1f{left:21.906667pt;}
.x23{left:24.160000pt;}
.x1d{left:26.706667pt;}
.x18{left:30.880000pt;}
.x19{left:32.320000pt;}
.x27{left:34.560000pt;}
.x28{left:35.986667pt;}
.x24{left:55.226667pt;}
.xc{left:75.520000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xa{left:120.000000pt;}
.x13{left:125.161333pt;}
.x12{left:132.352000pt;}
.x5{left:154.760000pt;}
.xe{left:162.600000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x14{left:250.760000pt;}
.xb{left:254.160000pt;}
.x29{left:266.306667pt;}
.xd{left:320.813333pt;}
.x2b{left:335.146667pt;}
.x15{left:380.866667pt;}
.x2a{left:408.066667pt;}
.x1a{left:450.186667pt;}
.x10{left:508.266667pt;}
.x1c{left:522.346667pt;}
.x1e{left:582.506667pt;}
.x11{left:599.946667pt;}
.x21{left:651.973333pt;}
}




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