
    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_4f9c7b3a172e58e814fd43b5.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f5f08bd88d6c7895999c45ad.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_6677280cdcde929a04fd8f94.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6f544401d818c43068f9139e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.711914;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_7d9acc05c1b5e5b97d23c470.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_b1a3638f832c9ef5ed18526d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_863fa374908edd152982e486.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bd65db4788f37ac972a2242c.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6d26946dead6b08958711be5.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-0.810000px;}
.ls1e{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.349800px;}
.ls1c{letter-spacing:-0.269400px;}
.ls18{letter-spacing:-0.226200px;}
.lse{letter-spacing:-0.223800px;}
.ls1d{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.089400px;}
.ls12{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144720px;}
.ls1a{letter-spacing:0.152640px;}
.ls1b{letter-spacing:0.156240px;}
.ls19{letter-spacing:0.178800px;}
.lsa{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls11{letter-spacing:0.315600px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493920px;}
.ls16{letter-spacing:0.666000px;}
.ls17{letter-spacing:0.924000px;}
.ls1f{letter-spacing:1.080000px;}
.ls4{letter-spacing:47.700000px;}
.ls1{letter-spacing:71.280000px;}
.ls0{letter-spacing:72.000000px;}
.ls2{letter-spacing:72.720000px;}
.ls3{letter-spacing:72.840000px;}
.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;}
}
.ws11{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.020000px;}
.ws14{word-spacing:-15.864000px;}
.ws2{word-spacing:-15.300000px;}
.ws19{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.274000px;}
.wse{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws13{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.241200px;}
.ws12{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.878800px;}
.ws16{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.990200px;}
.ws4{word-spacing:-10.980000px;}
.wsc{word-spacing:-10.755600px;}
.ws15{word-spacing:-10.618800px;}
.wsb{word-spacing:-10.529400px;}
.wsa{word-spacing:-10.440000px;}
.ws10{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsd{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._5{margin-left:-59.580000px;}
._10{margin-left:-3.533280px;}
._9{margin-left:-2.512320px;}
._2{margin-left:-1.391040px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._e{width:3.473760px;}
._b{width:4.539360px;}
._8{width:5.617440px;}
._7{width:7.230960px;}
._c{width:8.246880px;}
._1b{width:9.740880px;}
._a{width:11.354400px;}
._d{width:12.370320px;}
._14{width:13.864320px;}
._f{width:15.552000px;}
._11{width:17.051040px;}
._15{width:18.346320px;}
._16{width:19.541520px;}
._19{width:21.035520px;}
._1c{width:22.891680px;}
._21{width:24.012000px;}
._20{width:25.218720px;}
._22{width:26.389440px;}
._26{width:27.521280px;}
._23{width:29.282400px;}
._24{width:30.673440px;}
._18{width:31.852080px;}
._17{width:32.987520px;}
._33{width:34.242480px;}
._27{width:35.483520px;}
._2b{width:36.702720px;}
._1d{width:37.887840px;}
._3a{width:39.083040px;}
._32{width:41.473440px;}
._25{width:42.608880px;}
._28{width:44.282160px;}
._30{width:45.878400px;}
._36{width:49.780080px;}
._1e{width:50.915520px;}
._34{width:52.321680px;}
._2a{width:53.382240px;}
._29{width:54.620640px;}
._12{width:57.962880px;}
._1f{width:64.183200px;}
._3{width:65.496000px;}
._1a{width:69.413040px;}
._3b{width:71.174160px;}
._3d{width:81.441360px;}
._39{width:83.066400px;}
._2f{width:94.106160px;}
._3c{width:96.006240px;}
._37{width:109.838880px;}
._38{width:110.971200px;}
._3e{width:120.595680px;}
._2c{width:125.797440px;}
._35{width:128.915040px;}
._2d{width:130.564560px;}
._31{width:138.564720px;}
._2e{width:142.624560px;}
._4{width:199.620000px;}
._13{width:282.270000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fsf{font-size:6.000000px;}
.fs8{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:37.946952px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs3{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.y46{bottom:-247.710000px;}
.y45{bottom:-214.050000px;}
.y7d{bottom:-182.355000px;}
.y44{bottom:-180.210000px;}
.y7c{bottom:-148.695000px;}
.y43{bottom:-146.550000px;}
.y7b{bottom:-114.855000px;}
.y42{bottom:-112.890000px;}
.y7a{bottom:-81.195000px;}
.y41{bottom:-79.050000px;}
.y79{bottom:-47.355000px;}
.y40{bottom:-45.390000px;}
.y49{bottom:-27.180000px;}
.y7f{bottom:-17.922750px;}
.y78{bottom:-13.695000px;}
.y3f{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y318{bottom:1.837500px;}
.y64{bottom:2.505000px;}
.y2{bottom:3.960000px;}
.y192{bottom:4.125000px;}
.y183{bottom:4.140000px;}
.y1b1{bottom:4.170000px;}
.y193{bottom:4.305000px;}
.y185{bottom:4.320000px;}
.y186{bottom:4.500000px;}
.y1bf{bottom:4.665000px;}
.yf2{bottom:4.680000px;}
.y112{bottom:4.845000px;}
.yf7{bottom:4.860000px;}
.y115{bottom:5.025000px;}
.y48{bottom:5.040000px;}
.y252{bottom:5.205000px;}
.y117{bottom:5.565000px;}
.y6d{bottom:5.580000px;}
.y257{bottom:5.745000px;}
.yfe{bottom:5.760000px;}
.y133{bottom:5.925000px;}
.y1c9{bottom:5.940000px;}
.y134{bottom:6.105000px;}
.y131{bottom:6.120000px;}
.y11c{bottom:6.285000px;}
.yf4{bottom:6.300000px;}
.y202{bottom:6.465000px;}
.yf9{bottom:6.480000px;}
.y110{bottom:6.510000px;}
.y1c1{bottom:6.645000px;}
.y216{bottom:6.660000px;}
.y1c2{bottom:6.825000px;}
.y3e{bottom:6.840000px;}
.y211{bottom:7.020000px;}
.y130{bottom:7.065000px;}
.y21e{bottom:7.200000px;}
.y204{bottom:7.365000px;}
.y213{bottom:7.380000px;}
.y24c{bottom:7.410000px;}
.y200{bottom:7.725000px;}
.y1eb{bottom:7.740000px;}
.y22e{bottom:8.265000px;}
.y104{bottom:8.280000px;}
.y25e{bottom:8.310000px;}
.y25b{bottom:8.445000px;}
.y1e7{bottom:8.460000px;}
.y22a{bottom:8.505000px;}
.y20b{bottom:8.625000px;}
.y223{bottom:8.640000px;}
.y24e{bottom:8.805000px;}
.y20f{bottom:8.985000px;}
.y1f2{bottom:9.000000px;}
.y1d0{bottom:9.180000px;}
.y250{bottom:9.345000px;}
.y101{bottom:9.360000px;}
.y1fd{bottom:9.525000px;}
.y1d2{bottom:9.540000px;}
.y259{bottom:9.885000px;}
.y234{bottom:9.900000px;}
.y24b{bottom:9.930000px;}
.y1d5{bottom:10.080000px;}
.y208{bottom:10.245000px;}
.y1db{bottom:10.260000px;}
.y23a{bottom:10.440000px;}
.y1b9{bottom:10.605000px;}
.y23f{bottom:10.620000px;}
.y1ce{bottom:10.800000px;}
.y1c5{bottom:10.965000px;}
.y1bb{bottom:11.145000px;}
.y1c4{bottom:11.505000px;}
.y1bd{bottom:11.685000px;}
.y22d{bottom:11.865000px;}
.y103{bottom:11.880000px;}
.y229{bottom:11.925000px;}
.y5{bottom:12.600000px;}
.y1ca{bottom:12.960000px;}
.y1de{bottom:13.125000px;}
.y21c{bottom:13.320000px;}
.y100{bottom:13.860000px;}
.y24f{bottom:14.025000px;}
.y23e{bottom:14.040000px;}
.y139{bottom:14.580000px;}
.y244{bottom:15.300000px;}
.y1ea{bottom:16.020000px;}
.y260{bottom:16.560000px;}
.y238{bottom:16.740000px;}
.y256{bottom:16.905000px;}
.y218{bottom:17.100000px;}
.y77{bottom:17.310000px;}
.y206{bottom:17.445000px;}
.y215{bottom:17.460000px;}
.y6b{bottom:17.655000px;}
.y227{bottom:17.850000px;}
.y63{bottom:17.985000px;}
.y230{bottom:18.525000px;}
.y248{bottom:18.540000px;}
.y120{bottom:18.705000px;}
.y121{bottom:18.885000px;}
.y20e{bottom:19.785000px;}
.y262{bottom:19.800000px;}
.y1c8{bottom:20.010000px;}
.y1ff{bottom:20.505000px;}
.y1ef{bottom:20.520000px;}
.y3d{bottom:20.700000px;}
.y1c7{bottom:20.730000px;}
.y1e3{bottom:21.405000px;}
.y243{bottom:21.780000px;}
.y6{bottom:21.960000px;}
.y138{bottom:22.320000px;}
.y1d4{bottom:23.040000px;}
.y3{bottom:23.220000px;}
.y1d9{bottom:23.580000px;}
.y4{bottom:24.660000px;}
.y1bc{bottom:25.545000px;}
.y221{bottom:27.000000px;}
.y1ba{bottom:27.525000px;}
.y76{bottom:30.450000px;}
.y236{bottom:30.780000px;}
.y6a{bottom:31.155000px;}
.y23c{bottom:31.710000px;}
.y1be{bottom:32.565000px;}
.y1f9{bottom:32.940000px;}
.y62{bottom:33.285000px;}
.y1b7{bottom:33.465000px;}
.y3c{bottom:34.740000px;}
.y1f4{bottom:36.000000px;}
.y75{bottom:43.410000px;}
.y69{bottom:44.295000px;}
.y61{bottom:45.705000px;}
.y81{bottom:46.980000px;}
.y3b{bottom:47.520000px;}
.y74{bottom:56.370000px;}
.y68{bottom:57.255000px;}
.y1{bottom:57.420000px;}
.y60{bottom:63.525000px;}
.y7e{bottom:63.780000px;}
.y73{bottom:69.510000px;}
.y67{bottom:70.215000px;}
.y5f{bottom:81.345000px;}
.y72{bottom:82.470000px;}
.y66{bottom:87.315000px;}
.y5e{bottom:94.710000px;}
.y71{bottom:95.610000px;}
.y217{bottom:97.560000px;}
.y263{bottom:101.160000px;}
.y295{bottom:103.320000px;}
.y5d{bottom:103.710000px;}
.y2e6{bottom:104.580000px;}
.yb1{bottom:106.560000px;}
.y70{bottom:108.570000px;}
.y214{bottom:109.440000px;}
.yc9{bottom:109.620000px;}
.y261{bottom:112.860000px;}
.ye1{bottom:114.300000px;}
.y17f{bottom:115.020000px;}
.y39{bottom:115.560000px;}
.y159{bottom:118.080000px;}
.y5c{bottom:121.530000px;}
.y2e5{bottom:121.860000px;}
.y294{bottom:123.120000px;}
.y2b5{bottom:126.180000px;}
.yb0{bottom:126.360000px;}
.y317{bottom:126.720000px;}
.yc8{bottom:129.420000px;}
.y212{bottom:129.600000px;}
.y25f{bottom:131.040000px;}
.y1cb{bottom:132.660000px;}
.y6f{bottom:133.950000px;}
.y17e{bottom:134.820000px;}
.y38{bottom:135.360000px;}
.y158{bottom:137.880000px;}
.y2e4{bottom:138.960000px;}
.y5b{bottom:139.350000px;}
.y293{bottom:142.920000px;}
.y316{bottom:144.000000px;}
.y1c6{bottom:144.360000px;}
.y2b4{bottom:146.160000px;}
.yaf{bottom:146.340000px;}
.yc7{bottom:149.220000px;}
.y210{bottom:151.200000px;}
.y17d{bottom:154.620000px;}
.y37{bottom:155.160000px;}
.y2e3{bottom:156.240000px;}
.y5a{bottom:157.170000px;}
.y157{bottom:157.860000px;}
.y25d{bottom:159.300000px;}
.y315{bottom:161.280000px;}
.y292{bottom:162.930000px;}
.y2b3{bottom:165.990000px;}
.yae{bottom:166.170000px;}
.yc6{bottom:169.050000px;}
.y20d{bottom:172.305000px;}
.y2e2{bottom:173.550000px;}
.y122{bottom:174.450000px;}
.y17c{bottom:174.630000px;}
.y36{bottom:174.990000px;}
.y1c3{bottom:176.985000px;}
.y156{bottom:177.690000px;}
.y314{bottom:178.590000px;}
.y291{bottom:182.730000px;}
.y25c{bottom:183.105000px;}
.yad{bottom:185.970000px;}
.y11f{bottom:186.165000px;}
.y2b2{bottom:186.690000px;}
.yc5{bottom:189.030000px;}
.y2e1{bottom:190.830000px;}
.y59{bottom:192.810000px;}
.y17b{bottom:194.430000px;}
.y35{bottom:194.790000px;}
.ye0{bottom:194.970000px;}
.y313{bottom:195.870000px;}
.y20c{bottom:197.145000px;}
.y155{bottom:197.490000px;}
.y25a{bottom:201.285000px;}
.y290{bottom:202.530000px;}
.yac{bottom:205.770000px;}
.y1c0{bottom:207.405000px;}
.y2e0{bottom:208.110000px;}
.yc4{bottom:208.830000px;}
.y58{bottom:210.810000px;}
.y312{bottom:213.150000px;}
.y17a{bottom:214.230000px;}
.y34{bottom:214.770000px;}
.y11e{bottom:216.585000px;}
.y154{bottom:217.290000px;}
.y20a{bottom:218.745000px;}
.y28f{bottom:222.330000px;}
.y258{bottom:224.865000px;}
.y2df{bottom:225.390000px;}
.yab{bottom:226.470000px;}
.y2b1{bottom:227.550000px;}
.y1b6{bottom:227.925000px;}
.y57{bottom:228.630000px;}
.y311{bottom:230.250000px;}
.y11d{bottom:233.145000px;}
.y179{bottom:234.030000px;}
.y33{bottom:234.570000px;}
.y153{bottom:237.090000px;}
.y56{bottom:241.950000px;}
.y28e{bottom:242.130000px;}
.y2de{bottom:242.490000px;}
.y209{bottom:243.045000px;}
.yaa{bottom:246.450000px;}
.y2b0{bottom:247.350000px;}
.y310{bottom:247.530000px;}
.yc3{bottom:248.430000px;}
.y11b{bottom:249.885000px;}
.y55{bottom:250.770000px;}
.y255{bottom:251.865000px;}
.y178{bottom:253.830000px;}
.y32{bottom:254.370000px;}
.y152{bottom:257.070000px;}
.ya9{bottom:259.410000px;}
.y2dd{bottom:259.770000px;}
.y28d{bottom:262.110000px;}
.y207{bottom:263.385000px;}
.y30f{bottom:264.810000px;}
.yc2{bottom:268.230000px;}
.y54{bottom:268.590000px;}
.y11a{bottom:269.865000px;}
.y254{bottom:270.045000px;}
.y1b8{bottom:273.645000px;}
.y177{bottom:273.810000px;}
.ydf{bottom:274.170000px;}
.y31{bottom:275.070000px;}
.y151{bottom:276.870000px;}
.y2dc{bottom:277.050000px;}
.ya8{bottom:279.210000px;}
.y28c{bottom:281.910000px;}
.y30e{bottom:282.090000px;}
.y53{bottom:286.410000px;}
.y119{bottom:286.425000px;}
.yc1{bottom:288.210000px;}
.y205{bottom:291.105000px;}
.y30{bottom:292.350000px;}
.y253{bottom:292.365000px;}
.y176{bottom:293.610000px;}
.yde{bottom:294.150000px;}
.y2db{bottom:294.330000px;}
.y150{bottom:296.670000px;}
.ya7{bottom:299.010000px;}
.y30d{bottom:299.370000px;}
.y2f{bottom:300.810000px;}
.y28b{bottom:301.710000px;}
.y4a{bottom:302.265000px;}
.y118{bottom:302.985000px;}
.y52{bottom:304.230000px;}
.yc0{bottom:308.010000px;}
.y1b5{bottom:308.910000px;}
.y2af{bottom:309.090000px;}
.y203{bottom:311.265000px;}
.y2da{bottom:311.610000px;}
.y175{bottom:313.410000px;}
.ydd{bottom:313.950000px;}
.y14f{bottom:316.470000px;}
.y30c{bottom:316.650000px;}
.ya6{bottom:318.810000px;}
.y116{bottom:319.725000px;}
.y251{bottom:321.345000px;}
.y28a{bottom:321.510000px;}
.y2e{bottom:321.690000px;}
.y51{bottom:322.260000px;}
.y1b4{bottom:326.910000px;}
.ybf{bottom:327.810000px;}
.y2d9{bottom:328.710000px;}
.y2ae{bottom:328.890000px;}
.y201{bottom:332.865000px;}
.y174{bottom:333.210000px;}
.ydc{bottom:333.750000px;}
.y14e{bottom:336.270000px;}
.y114{bottom:338.265000px;}
.ya5{bottom:338.790000px;}
.y50{bottom:340.080000px;}
.y289{bottom:341.310000px;}
.y2d{bottom:341.670000px;}
.y2d8{bottom:345.990000px;}
.ybe{bottom:347.610000px;}
.y2ad{bottom:349.770000px;}
.y30b{bottom:351.030000px;}
.y173{bottom:353.010000px;}
.y1fe{bottom:353.205000px;}
.y4f{bottom:353.400000px;}
.ydb{bottom:353.550000px;}
.y113{bottom:355.185000px;}
.y2c{bottom:355.350000px;}
.y14d{bottom:356.250000px;}
.ya4{bottom:358.590000px;}
.y288{bottom:361.290000px;}
.y4e{bottom:362.220000px;}
.y2d7{bottom:363.270000px;}
.y2b{bottom:363.990000px;}
.y24d{bottom:364.005000px;}
.y1b3{bottom:365.790000px;}
.ybd{bottom:367.410000px;}
.y30a{bottom:368.310000px;}
.y111{bottom:371.745000px;}
.y172{bottom:372.810000px;}
.yda{bottom:373.350000px;}
.y1fc{bottom:375.345000px;}
.y14c{bottom:376.050000px;}
.y1b2{bottom:377.505000px;}
.ya3{bottom:378.390000px;}
.y6e{bottom:378.765000px;}
.y4d{bottom:380.040000px;}
.y2d6{bottom:380.550000px;}
.y287{bottom:381.090000px;}
.y309{bottom:385.590000px;}
.y2a{bottom:387.390000px;}
.y10f{bottom:388.305000px;}
.y24a{bottom:388.845000px;}
.y2ac{bottom:390.810000px;}
.y1b0{bottom:392.085000px;}
.y171{bottom:392.835000px;}
.yd9{bottom:393.375000px;}
.y14b{bottom:395.895000px;}
.y4c{bottom:397.860000px;}
.y2d5{bottom:397.875000px;}
.ya2{bottom:399.135000px;}
.y286{bottom:400.935000px;}
.y1fb{bottom:401.115000px;}
.y308{bottom:402.915000px;}
.y1af{bottom:406.875000px;}
.ybc{bottom:407.235000px;}
.y10e{bottom:408.315000px;}
.y249{bottom:410.475000px;}
.y29{bottom:410.655000px;}
.y2ab{bottom:411.375000px;}
.y170{bottom:412.635000px;}
.yd8{bottom:413.175000px;}
.y2d4{bottom:415.155000px;}
.y14a{bottom:415.695000px;}
.y4b{bottom:415.860000px;}
.ya1{bottom:420.015000px;}
.y285{bottom:420.735000px;}
.y1ae{bottom:421.455000px;}
.y10d{bottom:424.875000px;}
.y1f8{bottom:425.415000px;}
.ybb{bottom:427.035000px;}
.y2d3{bottom:432.255000px;}
.y16f{bottom:432.435000px;}
.yd7{bottom:432.975000px;}
.y28{bottom:433.875000px;}
.y2aa{bottom:435.135000px;}
.y149{bottom:435.495000px;}
.y1ad{bottom:436.035000px;}
.y307{bottom:437.295000px;}
.y284{bottom:440.535000px;}
.y10c{bottom:441.615000px;}
.yba{bottom:446.835000px;}
.y2d2{bottom:449.535000px;}
.y1ac{bottom:450.615000px;}
.y1fa{bottom:450.975000px;}
.y16e{bottom:452.235000px;}
.yd6{bottom:452.775000px;}
.y306{bottom:454.575000px;}
.y148{bottom:455.475000px;}
.y27{bottom:457.275000px;}
.y10b{bottom:459.795000px;}
.y283{bottom:460.515000px;}
.ya0{bottom:460.695000px;}
.y247{bottom:463.935000px;}
.y1ab{bottom:465.375000px;}
.yb9{bottom:466.635000px;}
.y2d1{bottom:466.815000px;}
.y305{bottom:471.855000px;}
.y16d{bottom:472.035000px;}
.yd5{bottom:472.575000px;}
.y1f7{bottom:473.295000px;}
.y147{bottom:475.275000px;}
.y2a9{bottom:475.995000px;}
.y10a{bottom:476.355000px;}
.y1aa{bottom:479.955000px;}
.y282{bottom:480.315000px;}
.y26{bottom:480.495000px;}
.y9f{bottom:480.675000px;}
.y2d0{bottom:484.095000px;}
.yb8{bottom:486.615000px;}
.y246{bottom:487.515000px;}
.y304{bottom:489.135000px;}
.y16c{bottom:492.015000px;}
.yd4{bottom:492.555000px;}
.y1a9{bottom:494.535000px;}
.y109{bottom:495.075000px;}
.y2a8{bottom:495.795000px;}
.y1f6{bottom:498.315000px;}
.y281{bottom:500.115000px;}
.y9e{bottom:500.475000px;}
.y2cf{bottom:501.375000px;}
.y25{bottom:503.715000px;}
.yb7{bottom:506.415000px;}
.y245{bottom:507.675000px;}
.y1a8{bottom:509.295000px;}
.y108{bottom:511.815000px;}
.yd3{bottom:512.355000px;}
.y146{bottom:514.875000px;}
.y2a7{bottom:515.775000px;}
.y2ce{bottom:518.655000px;}
.y280{bottom:519.915000px;}
.y9d{bottom:520.275000px;}
.y1f3{bottom:522.615000px;}
.y303{bottom:523.515000px;}
.y1a7{bottom:523.875000px;}
.yb6{bottom:526.215000px;}
.y107{bottom:528.555000px;}
.y242{bottom:531.435000px;}
.y16b{bottom:531.615000px;}
.yd2{bottom:532.155000px;}
.y65{bottom:533.580000px;}
.y145{bottom:534.675000px;}
.y2a6{bottom:535.575000px;}
.y2cd{bottom:535.755000px;}
.y1a6{bottom:538.455000px;}
.y27f{bottom:539.715000px;}
.y9c{bottom:540.075000px;}
.y302{bottom:540.795000px;}
.y106{bottom:545.115000px;}
.yb5{bottom:546.015000px;}
.y1f5{bottom:549.615000px;}
.yd1{bottom:551.955000px;}
.y16a{bottom:552.315000px;}
.y2cc{bottom:553.035000px;}
.y1a5{bottom:553.215000px;}
.y144{bottom:554.655000px;}
.y2a5{bottom:555.375000px;}
.y301{bottom:558.075000px;}
.y241{bottom:558.435000px;}
.y24{bottom:558.615000px;}
.y27e{bottom:559.695000px;}
.y9b{bottom:559.875000px;}
.y105{bottom:561.675000px;}
.yb4{bottom:565.815000px;}
.y1a4{bottom:567.795000px;}
.y2cb{bottom:570.315000px;}
.yd0{bottom:572.655000px;}
.y23{bottom:574.095000px;}
.y143{bottom:574.455000px;}
.y2a4{bottom:575.175000px;}
.y300{bottom:575.355000px;}
.y1f1{bottom:576.615000px;}
.y27d{bottom:579.495000px;}
.y9a{bottom:579.855000px;}
.y102{bottom:580.395000px;}
.y240{bottom:582.015000px;}
.y1a3{bottom:582.375000px;}
.yb3{bottom:586.695000px;}
.y2ca{bottom:587.595000px;}
.y22{bottom:589.755000px;}
.ycf{bottom:592.635000px;}
.y169{bottom:593.355000px;}
.y142{bottom:594.255000px;}
.y2a3{bottom:594.975000px;}
.y1a2{bottom:597.135000px;}
.y27c{bottom:599.295000px;}
.y99{bottom:599.655000px;}
.y1f0{bottom:601.635000px;}
.yff{bottom:603.975000px;}
.y2c9{bottom:604.875000px;}
.y21{bottom:605.235000px;}
.yce{bottom:605.595000px;}
.yb2{bottom:606.495000px;}
.y23b{bottom:607.575000px;}
.y2ff{bottom:609.915000px;}
.y1a1{bottom:611.715000px;}
.y168{bottom:613.155000px;}
.y141{bottom:614.055000px;}
.y2a2{bottom:614.955000px;}
.y27b{bottom:619.095000px;}
.y98{bottom:619.455000px;}
.y20{bottom:620.715000px;}
.y2c8{bottom:622.155000px;}
.y1ee{bottom:622.545000px;}
.ycd{bottom:625.425000px;}
.y1a0{bottom:626.325000px;}
.y2fe{bottom:627.045000px;}
.yfd{bottom:629.745000px;}
.y23d{bottom:629.925000px;}
.y1f{bottom:631.905000px;}
.y167{bottom:632.985000px;}
.y140{bottom:633.885000px;}
.y2a1{bottom:635.685000px;}
.y27a{bottom:638.925000px;}
.y97{bottom:639.285000px;}
.y3a{bottom:640.545000px;}
.y19f{bottom:640.905000px;}
.y2fd{bottom:644.325000px;}
.y1ed{bottom:644.865000px;}
.ycc{bottom:645.225000px;}
.y1e{bottom:645.585000px;}
.yfc{bottom:648.285000px;}
.y166{bottom:652.785000px;}
.y13f{bottom:653.865000px;}
.y19e{bottom:655.665000px;}
.y2c7{bottom:656.565000px;}
.y1d{bottom:658.365000px;}
.y279{bottom:658.905000px;}
.y96{bottom:659.085000px;}
.y2fc{bottom:661.605000px;}
.ycb{bottom:665.925000px;}
.yfb{bottom:668.265000px;}
.y19d{bottom:670.245000px;}
.y1ec{bottom:670.425000px;}
.y1c{bottom:671.325000px;}
.y165{bottom:672.585000px;}
.y13e{bottom:673.665000px;}
.y2c6{bottom:673.845000px;}
.y2a0{bottom:676.545000px;}
.y239{bottom:677.805000px;}
.y278{bottom:678.705000px;}
.y2fb{bottom:678.885000px;}
.y95{bottom:679.065000px;}
.y1b{bottom:684.285000px;}
.y19c{bottom:684.825000px;}
.yca{bottom:685.905000px;}
.yfa{bottom:686.445000px;}
.y2c5{bottom:691.125000px;}
.y1e9{bottom:691.305000px;}
.y164{bottom:692.565000px;}
.y13d{bottom:693.465000px;}
.y2fa{bottom:696.165000px;}
.y29f{bottom:696.345000px;}
.y1a{bottom:698.145000px;}
.y277{bottom:698.505000px;}
.y94{bottom:698.865000px;}
.y19b{bottom:699.585000px;}
.y235{bottom:702.825000px;}
.yf8{bottom:703.005000px;}
.y2c4{bottom:708.405000px;}
.y19{bottom:710.925000px;}
.y13c{bottom:711.465000px;}
.y163{bottom:712.365000px;}
.y2f9{bottom:713.445000px;}
.y1e8{bottom:713.625000px;}
.y19a{bottom:714.165000px;}
.y29e{bottom:716.145000px;}
.y276{bottom:718.305000px;}
.y93{bottom:718.665000px;}
.yf6{bottom:722.985000px;}
.y13b{bottom:723.345000px;}
.y2c3{bottom:725.505000px;}
.y199{bottom:728.745000px;}
.y1e6{bottom:730.365000px;}
.y2f8{bottom:730.545000px;}
.y237{bottom:731.265000px;}
.y162{bottom:732.165000px;}
.y29d{bottom:736.125000px;}
.y18{bottom:737.745000px;}
.y275{bottom:738.105000px;}
.y92{bottom:738.465000px;}
.yf5{bottom:739.545000px;}
.y13a{bottom:739.905000px;}
.y2c2{bottom:742.785000px;}
.y198{bottom:743.505000px;}
.y2f7{bottom:747.825000px;}
.y17{bottom:748.905000px;}
.y233{bottom:749.445000px;}
.y161{bottom:751.965000px;}
.y1e5{bottom:754.665000px;}
.y1e2{bottom:754.680000px;}
.y29c{bottom:755.925000px;}
.yf3{bottom:756.285000px;}
.y137{bottom:756.465000px;}
.y274{bottom:758.085000px;}
.y197{bottom:758.100000px;}
.y91{bottom:758.265000px;}
.y2c1{bottom:760.065000px;}
.y2f6{bottom:765.105000px;}
.y232{bottom:771.045000px;}
.y1e4{bottom:771.225000px;}
.y160{bottom:771.765000px;}
.y196{bottom:772.665000px;}
.y16{bottom:773.205000px;}
.y29b{bottom:775.725000px;}
.y2c0{bottom:777.345000px;}
.yf1{bottom:777.705000px;}
.y273{bottom:777.885000px;}
.y90{bottom:778.245000px;}
.y2f5{bottom:782.385000px;}
.y195{bottom:787.245000px;}
.y231{bottom:787.605000px;}
.y22f{bottom:787.620000px;}
.y1e1{bottom:787.800000px;}
.y15{bottom:791.205000px;}
.y15f{bottom:791.745000px;}
.y136{bottom:792.300000px;}
.y2bf{bottom:794.625000px;}
.y29a{bottom:795.525000px;}
.y272{bottom:797.685000px;}
.y8f{bottom:798.045000px;}
.y2f4{bottom:799.665000px;}
.yf0{bottom:801.465000px;}
.y194{bottom:802.005000px;}
.y1e0{bottom:804.525000px;}
.y14{bottom:805.965000px;}
.y22c{bottom:807.960000px;}
.y135{bottom:808.845000px;}
.y15e{bottom:811.545000px;}
.y2be{bottom:812.265000px;}
.y299{bottom:815.325000px;}
.y191{bottom:816.600000px;}
.y2f3{bottom:816.765000px;}
.y271{bottom:817.485000px;}
.y8e{bottom:817.845000px;}
.yef{bottom:819.285000px;}
.y13{bottom:821.805000px;}
.y1df{bottom:825.405000px;}
.y1dd{bottom:825.420000px;}
.y132{bottom:825.600000px;}
.y190{bottom:831.165000px;}
.y15d{bottom:831.345000px;}
.y22b{bottom:831.525000px;}
.y2f2{bottom:834.045000px;}
.y298{bottom:835.305000px;}
.yee{bottom:836.385000px;}
.y270{bottom:837.285000px;}
.y12{bottom:837.645000px;}
.y1dc{bottom:841.980000px;}
.y18f{bottom:845.925000px;}
.y12f{bottom:846.105000px;}
.y228{bottom:848.085000px;}
.y226{bottom:848.100000px;}
.y15c{bottom:851.145000px;}
.y2f1{bottom:851.325000px;}
.y2bd{bottom:852.990000px;}
.yed{bottom:853.530000px;}
.y11{bottom:853.710000px;}
.y297{bottom:855.150000px;}
.y26f{bottom:857.310000px;}
.y8d{bottom:857.490000px;}
.y1da{bottom:858.570000px;}
.y18e{bottom:860.550000px;}
.y10{bottom:868.650000px;}
.y15b{bottom:870.990000px;}
.y225{bottom:871.890000px;}
.y2bc{bottom:872.790000px;}
.yec{bottom:873.330000px;}
.y12e{bottom:874.410000px;}
.y296{bottom:874.950000px;}
.y18d{bottom:875.130000px;}
.y26e{bottom:877.110000px;}
.y8c{bottom:877.470000px;}
.yf{bottom:879.450000px;}
.y2f0{bottom:885.930000px;}
.y1d8{bottom:886.290000px;}
.y18c{bottom:889.890000px;}
.y224{bottom:890.790000px;}
.y15a{bottom:890.970000px;}
.y12d{bottom:892.410000px;}
.y2bb{bottom:892.590000px;}
.yeb{bottom:893.310000px;}
.ye{bottom:895.650000px;}
.y26d{bottom:896.910000px;}
.y8b{bottom:897.270000px;}
.y2ef{bottom:903.210000px;}
.y18b{bottom:904.470000px;}
.y220{bottom:907.350000px;}
.y12c{bottom:910.770000px;}
.yea{bottom:913.110000px;}
.y2ba{bottom:913.470000px;}
.y1d7{bottom:914.730000px;}
.y26c{bottom:916.710000px;}
.y8a{bottom:917.070000px;}
.y18a{bottom:919.050000px;}
.yd{bottom:920.130000px;}
.y2ee{bottom:920.310000px;}
.y222{bottom:927.510000px;}
.y12b{bottom:930.570000px;}
.ye9{bottom:932.910000px;}
.y189{bottom:933.810000px;}
.y26b{bottom:936.510000px;}
.y89{bottom:936.870000px;}
.y2ed{bottom:937.590000px;}
.y1d6{bottom:940.290000px;}
.yc{bottom:944.430000px;}
.y21f{bottom:947.850000px;}
.y188{bottom:948.390000px;}
.y12a{bottom:950.370000px;}
.ye8{bottom:952.710000px;}
.y2b9{bottom:954.330000px;}
.y2ec{bottom:954.870000px;}
.y26a{bottom:956.490000px;}
.y88{bottom:956.670000px;}
.y1d3{bottom:961.170000px;}
.y187{bottom:962.970000px;}
.yb{bottom:965.670000px;}
.y21d{bottom:968.010000px;}
.y129{bottom:970.170000px;}
.y2eb{bottom:972.150000px;}
.ye7{bottom:972.510000px;}
.y2b8{bottom:974.130000px;}
.y269{bottom:976.290000px;}
.y87{bottom:976.650000px;}
.y184{bottom:977.550000px;}
.ya{bottom:986.190000px;}
.y1d1{bottom:988.170000px;}
.y2ea{bottom:989.430000px;}
.y21b{bottom:989.610000px;}
.y128{bottom:990.150000px;}
.ye6{bottom:992.490000px;}
.y182{bottom:993.750000px;}
.y2b7{bottom:993.930000px;}
.y268{bottom:996.090000px;}
.y86{bottom:996.450000px;}
.y21a{bottom:1006.350000px;}
.y2e9{bottom:1006.710000px;}
.y127{bottom:1009.950000px;}
.ye5{bottom:1012.290000px;}
.y9{bottom:1013.730000px;}
.y1cf{bottom:1013.910000px;}
.y181{bottom:1014.450000px;}
.y2b6{bottom:1014.630000px;}
.y267{bottom:1015.890000px;}
.y85{bottom:1016.250000px;}
.y219{bottom:1022.910000px;}
.y2e8{bottom:1023.810000px;}
.y126{bottom:1029.750000px;}
.y180{bottom:1030.830000px;}
.ye4{bottom:1032.090000px;}
.y266{bottom:1035.690000px;}
.y84{bottom:1036.050000px;}
.y1cd{bottom:1041.090000px;}
.y8{bottom:1041.450000px;}
.y125{bottom:1049.550000px;}
.ye3{bottom:1051.890000px;}
.y265{bottom:1055.670000px;}
.y83{bottom:1055.850000px;}
.y2e7{bottom:1058.370000px;}
.y7{bottom:1067.550000px;}
.y124{bottom:1069.350000px;}
.ye2{bottom:1072.590000px;}
.y264{bottom:1075.470000px;}
.y82{bottom:1075.650000px;}
.y1cc{bottom:1077.090000px;}
.y123{bottom:1089.180000px;}
.y6c{bottom:1096.200000px;}
.y80{bottom:1123.200000px;}
.y47{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h19{height:5.805000px;}
.h8e{height:6.257812px;}
.h2{height:13.500000px;}
.h43{height:13.845000px;}
.h47{height:13.860000px;}
.h49{height:13.881000px;}
.h45{height:13.882500px;}
.h48{height:13.890000px;}
.h44{height:14.025000px;}
.h46{height:14.040000px;}
.h37{height:15.825000px;}
.h2e{height:15.840000px;}
.h5a{height:15.861000px;}
.h38{height:16.005000px;}
.h30{height:16.020000px;}
.h88{height:16.185000px;}
.h1d{height:16.920000px;}
.h39{height:17.445000px;}
.h32{height:17.460000px;}
.h3b{height:17.805000px;}
.h33{height:17.820000px;}
.h36{height:17.985000px;}
.h41{height:18.345000px;}
.h3c{height:19.065000px;}
.h2f{height:19.080000px;}
.h31{height:19.260000px;}
.h3a{height:19.281000px;}
.h6e{height:19.425000px;}
.h74{height:19.440000px;}
.h6b{height:19.605000px;}
.h7a{height:19.620000px;}
.h4e{height:19.785000px;}
.h57{height:20.145000px;}
.h5c{height:20.160000px;}
.h71{height:20.376000px;}
.h40{height:20.542500px;}
.h6c{height:20.865000px;}
.h72{height:20.880000px;}
.h86{height:20.901000px;}
.h6a{height:21.405000px;}
.h7e{height:21.420000px;}
.h67{height:21.585000px;}
.h60{height:21.600000px;}
.h81{height:21.630000px;}
.h24{height:22.140000px;}
.h35{height:22.845000px;}
.h78{height:22.882500px;}
.h83{height:23.025000px;}
.h8a{height:23.076000px;}
.h18{height:23.319141px;}
.h5e{height:23.400000px;}
.h65{height:23.565000px;}
.h70{height:24.105000px;}
.h63{height:24.285000px;}
.h7d{height:24.300000px;}
.he{height:24.421536px;}
.h53{height:24.825000px;}
.h61{height:24.840000px;}
.h34{height:24.870000px;}
.h54{height:25.005000px;}
.h80{height:25.020000px;}
.h68{height:25.041000px;}
.h56{height:26.265000px;}
.h59{height:26.985000px;}
.h4b{height:27.525000px;}
.h8b{height:27.540000px;}
.h85{height:27.705000px;}
.h7c{height:27.720000px;}
.h52{height:28.245000px;}
.hd{height:29.678906px;}
.h4f{height:29.685000px;}
.h3d{height:29.691000px;}
.h3e{height:29.700000px;}
.h11{height:30.963516px;}
.hc{height:31.081955px;}
.h50{height:31.896000px;}
.h51{height:31.905000px;}
.h5b{height:32.421000px;}
.h75{height:32.565000px;}
.h4{height:34.200000px;}
.h42{height:35.100000px;}
.h22{height:36.281250px;}
.h5f{height:38.160000px;}
.hb{height:38.671172px;}
.h16{height:39.503370px;}
.h89{height:39.765000px;}
.h5{height:40.985156px;}
.h6d{height:41.025000px;}
.h73{height:41.040000px;}
.h77{height:41.781000px;}
.h87{height:41.925000px;}
.h23{height:42.086250px;}
.h84{height:43.005000px;}
.h79{height:43.185000px;}
.h8d{height:43.472812px;}
.h4c{height:43.551000px;}
.h4d{height:43.560000px;}
.h29{height:43.983631px;}
.h13{height:44.518359px;}
.h6f{height:45.705000px;}
.h1b{height:45.714375px;}
.h8c{height:45.720000px;}
.h14{height:46.622932px;}
.h62{height:47.160000px;}
.h69{height:47.181000px;}
.h15{height:47.344922px;}
.h1e{height:48.616875px;}
.h5d{height:48.945000px;}
.h82{height:49.845000px;}
.h55{height:52.005000px;}
.h17{height:52.998047px;}
.h58{height:53.265000px;}
.h2c{height:53.573906px;}
.h1f{height:54.421875px;}
.h12{height:55.291992px;}
.h1a{height:57.780000px;}
.h28{height:58.621992px;}
.h3{height:58.651172px;}
.h2b{height:59.038594px;}
.h76{height:59.925000px;}
.h2d{height:60.226875px;}
.h3f{height:61.423863px;}
.ha{height:65.010937px;}
.h1c{height:65.884219px;}
.h9{height:66.757500px;}
.h7b{height:67.500000px;}
.hf{height:67.824844px;}
.h7{height:68.956875px;}
.h7f{height:69.510000px;}
.h2a{height:70.628906px;}
.h66{height:72.165000px;}
.h10{height:72.562500px;}
.h4a{height:73.245000px;}
.h25{height:74.953125px;}
.h27{height:75.093750px;}
.h64{height:78.285000px;}
.h21{height:95.445000px;}
.h8{height:96.508125px;}
.h26{height:144.922500px;}
.h20{height:428.115000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w14{width:66.276000px;}
.w13{width:70.920000px;}
.wc{width:74.145000px;}
.w3{width:82.071000px;}
.wd{width:101.370000px;}
.w16{width:121.485000px;}
.w17{width:129.990000px;}
.w5{width:154.470000px;}
.wb{width:168.495000px;}
.wf{width:168.510000px;}
.w10{width:175.530000px;}
.w11{width:175.545000px;}
.w1a{width:180.021000px;}
.w1e{width:180.195000px;}
.w1c{width:180.210000px;}
.w1d{width:180.225000px;}
.wa{width:180.390000px;}
.w8{width:184.170000px;}
.w12{width:201.441000px;}
.w19{width:251.490000px;}
.we{width:344.040000px;}
.w15{width:469.170000px;}
.w7{width:532.740000px;}
.w1b{width:540.645000px;}
.w4{width:639.855000px;}
.w18{width:720.675000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x47{left:4.252500px;}
.x2{left:8.091000px;}
.x24{left:9.720000px;}
.x16{left:10.791000px;}
.x2d{left:13.320000px;}
.x31{left:19.440000px;}
.x1c{left:21.255000px;}
.x33{left:22.320000px;}
.x30{left:26.460000px;}
.x27{left:28.080000px;}
.x32{left:29.340000px;}
.x26{left:30.990000px;}
.x2f{left:32.970000px;}
.x2e{left:35.460000px;}
.x28{left:37.110000px;}
.x29{left:39.990000px;}
.x40{left:41.025000px;}
.x37{left:43.020000px;}
.x36{left:52.560000px;}
.x38{left:54.360000px;}
.x39{left:55.440000px;}
.x3a{left:58.140000px;}
.x2b{left:60.495000px;}
.x44{left:65.685000px;}
.x43{left:67.140000px;}
.x42{left:68.220000px;}
.x46{left:69.660000px;}
.x3{left:73.965000px;}
.x1a{left:80.505000px;}
.x17{left:81.765000px;}
.x45{left:84.060000px;}
.x2a{left:87.690000px;}
.x3e{left:90.000000px;}
.x15{left:93.105000px;}
.x19{left:94.365000px;}
.x3b{left:104.400000px;}
.x1{left:108.045000px;}
.xa{left:111.636000px;}
.x21{left:115.776000px;}
.xb{left:119.016000px;}
.x22{left:128.376000px;}
.x13{left:132.696000px;}
.x6{left:146.016000px;}
.x7{left:150.330000px;}
.x3d{left:184.350000px;}
.x4{left:190.125000px;}
.xe{left:215.490000px;}
.x10{left:227.730000px;}
.x11{left:249.015000px;}
.xf{left:253.155000px;}
.x12{left:254.415000px;}
.x1e{left:259.095000px;}
.x3c{left:288.075000px;}
.x18{left:303.015000px;}
.x1b{left:310.350000px;}
.x1f{left:343.335000px;}
.x20{left:346.935000px;}
.x8{left:367.455000px;}
.x2c{left:380.415000px;}
.xc{left:406.695000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.xd{left:459.105000px;}
.x3f{left:468.300000px;}
.x14{left:490.785000px;}
.x34{left:577.230000px;}
.x1d{left:620.253000px;}
.x41{left:648.510000px;}
.x23{left:659.310000px;}
.x35{left:698.730000px;}
.x25{left:733.470000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-0.720000pt;}
.ls1e{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.310933pt;}
.ls1c{letter-spacing:-0.239467pt;}
.ls18{letter-spacing:-0.201067pt;}
.lse{letter-spacing:-0.198933pt;}
.ls1d{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.079467pt;}
.ls12{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128640pt;}
.ls1a{letter-spacing:0.135680pt;}
.ls1b{letter-spacing:0.138880pt;}
.ls19{letter-spacing:0.158933pt;}
.lsa{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls11{letter-spacing:0.280533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.439040pt;}
.ls16{letter-spacing:0.592000pt;}
.ls17{letter-spacing:0.821333pt;}
.ls1f{letter-spacing:0.960000pt;}
.ls4{letter-spacing:42.400000pt;}
.ls1{letter-spacing:63.360000pt;}
.ls0{letter-spacing:64.000000pt;}
.ls2{letter-spacing:64.640000pt;}
.ls3{letter-spacing:64.746667pt;}
.ws11{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.240000pt;}
.ws14{word-spacing:-14.101333pt;}
.ws2{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.280000pt;}
.ws18{word-spacing:-12.688000pt;}
.wse{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.881067pt;}
.ws12{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.558933pt;}
.ws16{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.769067pt;}
.ws4{word-spacing:-9.760000pt;}
.wsc{word-spacing:-9.560533pt;}
.ws15{word-spacing:-9.438933pt;}
.wsb{word-spacing:-9.359467pt;}
.wsa{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsd{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._5{margin-left:-52.960000pt;}
._10{margin-left:-3.140693pt;}
._9{margin-left:-2.233173pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._e{width:3.087787pt;}
._b{width:4.034987pt;}
._8{width:4.993280pt;}
._7{width:6.427520pt;}
._c{width:7.330560pt;}
._1b{width:8.658560pt;}
._a{width:10.092800pt;}
._d{width:10.995840pt;}
._14{width:12.323840pt;}
._f{width:13.824000pt;}
._11{width:15.156480pt;}
._15{width:16.307840pt;}
._16{width:17.370240pt;}
._19{width:18.698240pt;}
._1c{width:20.348160pt;}
._21{width:21.344000pt;}
._20{width:22.416640pt;}
._22{width:23.457280pt;}
._26{width:24.463360pt;}
._23{width:26.028800pt;}
._24{width:27.265280pt;}
._18{width:28.312960pt;}
._17{width:29.322240pt;}
._33{width:30.437760pt;}
._27{width:31.540907pt;}
._2b{width:32.624640pt;}
._1d{width:33.678080pt;}
._3a{width:34.740480pt;}
._32{width:36.865280pt;}
._25{width:37.874560pt;}
._28{width:39.361920pt;}
._30{width:40.780800pt;}
._36{width:44.248960pt;}
._1e{width:45.258240pt;}
._34{width:46.508160pt;}
._2a{width:47.450880pt;}
._29{width:48.551680pt;}
._12{width:51.522560pt;}
._1f{width:57.051733pt;}
._3{width:58.218667pt;}
._1a{width:61.700480pt;}
._3b{width:63.265920pt;}
._3d{width:72.392320pt;}
._39{width:73.836800pt;}
._2f{width:83.649920pt;}
._3c{width:85.338880pt;}
._37{width:97.634560pt;}
._38{width:98.641067pt;}
._3e{width:107.196160pt;}
._2c{width:111.819947pt;}
._35{width:114.591147pt;}
._2d{width:116.057387pt;}
._31{width:123.168640pt;}
._2e{width:126.777387pt;}
._4{width:177.440000pt;}
._13{width:250.906667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fs8{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:33.730624pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs3{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.y46{bottom:-220.186667pt;}
.y45{bottom:-190.266667pt;}
.y7d{bottom:-162.093333pt;}
.y44{bottom:-160.186667pt;}
.y7c{bottom:-132.173333pt;}
.y43{bottom:-130.266667pt;}
.y7b{bottom:-102.093333pt;}
.y42{bottom:-100.346667pt;}
.y7a{bottom:-72.173333pt;}
.y41{bottom:-70.266667pt;}
.y79{bottom:-42.093333pt;}
.y40{bottom:-40.346667pt;}
.y49{bottom:-24.160000pt;}
.y7f{bottom:-15.931333pt;}
.y78{bottom:-12.173333pt;}
.y3f{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y318{bottom:1.633333pt;}
.y64{bottom:2.226667pt;}
.y2{bottom:3.520000pt;}
.y192{bottom:3.666667pt;}
.y183{bottom:3.680000pt;}
.y1b1{bottom:3.706667pt;}
.y193{bottom:3.826667pt;}
.y185{bottom:3.840000pt;}
.y186{bottom:4.000000pt;}
.y1bf{bottom:4.146667pt;}
.yf2{bottom:4.160000pt;}
.y112{bottom:4.306667pt;}
.yf7{bottom:4.320000pt;}
.y115{bottom:4.466667pt;}
.y48{bottom:4.480000pt;}
.y252{bottom:4.626667pt;}
.y117{bottom:4.946667pt;}
.y6d{bottom:4.960000pt;}
.y257{bottom:5.106667pt;}
.yfe{bottom:5.120000pt;}
.y133{bottom:5.266667pt;}
.y1c9{bottom:5.280000pt;}
.y134{bottom:5.426667pt;}
.y131{bottom:5.440000pt;}
.y11c{bottom:5.586667pt;}
.yf4{bottom:5.600000pt;}
.y202{bottom:5.746667pt;}
.yf9{bottom:5.760000pt;}
.y110{bottom:5.786667pt;}
.y1c1{bottom:5.906667pt;}
.y216{bottom:5.920000pt;}
.y1c2{bottom:6.066667pt;}
.y3e{bottom:6.080000pt;}
.y211{bottom:6.240000pt;}
.y130{bottom:6.280000pt;}
.y21e{bottom:6.400000pt;}
.y204{bottom:6.546667pt;}
.y213{bottom:6.560000pt;}
.y24c{bottom:6.586667pt;}
.y200{bottom:6.866667pt;}
.y1eb{bottom:6.880000pt;}
.y22e{bottom:7.346667pt;}
.y104{bottom:7.360000pt;}
.y25e{bottom:7.386667pt;}
.y25b{bottom:7.506667pt;}
.y1e7{bottom:7.520000pt;}
.y22a{bottom:7.560000pt;}
.y20b{bottom:7.666667pt;}
.y223{bottom:7.680000pt;}
.y24e{bottom:7.826667pt;}
.y20f{bottom:7.986667pt;}
.y1f2{bottom:8.000000pt;}
.y1d0{bottom:8.160000pt;}
.y250{bottom:8.306667pt;}
.y101{bottom:8.320000pt;}
.y1fd{bottom:8.466667pt;}
.y1d2{bottom:8.480000pt;}
.y259{bottom:8.786667pt;}
.y234{bottom:8.800000pt;}
.y24b{bottom:8.826667pt;}
.y1d5{bottom:8.960000pt;}
.y208{bottom:9.106667pt;}
.y1db{bottom:9.120000pt;}
.y23a{bottom:9.280000pt;}
.y1b9{bottom:9.426667pt;}
.y23f{bottom:9.440000pt;}
.y1ce{bottom:9.600000pt;}
.y1c5{bottom:9.746667pt;}
.y1bb{bottom:9.906667pt;}
.y1c4{bottom:10.226667pt;}
.y1bd{bottom:10.386667pt;}
.y22d{bottom:10.546667pt;}
.y103{bottom:10.560000pt;}
.y229{bottom:10.600000pt;}
.y5{bottom:11.200000pt;}
.y1ca{bottom:11.520000pt;}
.y1de{bottom:11.666667pt;}
.y21c{bottom:11.840000pt;}
.y100{bottom:12.320000pt;}
.y24f{bottom:12.466667pt;}
.y23e{bottom:12.480000pt;}
.y139{bottom:12.960000pt;}
.y244{bottom:13.600000pt;}
.y1ea{bottom:14.240000pt;}
.y260{bottom:14.720000pt;}
.y238{bottom:14.880000pt;}
.y256{bottom:15.026667pt;}
.y218{bottom:15.200000pt;}
.y77{bottom:15.386667pt;}
.y206{bottom:15.506667pt;}
.y215{bottom:15.520000pt;}
.y6b{bottom:15.693333pt;}
.y227{bottom:15.866667pt;}
.y63{bottom:15.986667pt;}
.y230{bottom:16.466667pt;}
.y248{bottom:16.480000pt;}
.y120{bottom:16.626667pt;}
.y121{bottom:16.786667pt;}
.y20e{bottom:17.586667pt;}
.y262{bottom:17.600000pt;}
.y1c8{bottom:17.786667pt;}
.y1ff{bottom:18.226667pt;}
.y1ef{bottom:18.240000pt;}
.y3d{bottom:18.400000pt;}
.y1c7{bottom:18.426667pt;}
.y1e3{bottom:19.026667pt;}
.y243{bottom:19.360000pt;}
.y6{bottom:19.520000pt;}
.y138{bottom:19.840000pt;}
.y1d4{bottom:20.480000pt;}
.y3{bottom:20.640000pt;}
.y1d9{bottom:20.960000pt;}
.y4{bottom:21.920000pt;}
.y1bc{bottom:22.706667pt;}
.y221{bottom:24.000000pt;}
.y1ba{bottom:24.466667pt;}
.y76{bottom:27.066667pt;}
.y236{bottom:27.360000pt;}
.y6a{bottom:27.693333pt;}
.y23c{bottom:28.186667pt;}
.y1be{bottom:28.946667pt;}
.y1f9{bottom:29.280000pt;}
.y62{bottom:29.586667pt;}
.y1b7{bottom:29.746667pt;}
.y3c{bottom:30.880000pt;}
.y1f4{bottom:32.000000pt;}
.y75{bottom:38.586667pt;}
.y69{bottom:39.373333pt;}
.y61{bottom:40.626667pt;}
.y81{bottom:41.760000pt;}
.y3b{bottom:42.240000pt;}
.y74{bottom:50.106667pt;}
.y68{bottom:50.893333pt;}
.y1{bottom:51.040000pt;}
.y60{bottom:56.466667pt;}
.y7e{bottom:56.693333pt;}
.y73{bottom:61.786667pt;}
.y67{bottom:62.413333pt;}
.y5f{bottom:72.306667pt;}
.y72{bottom:73.306667pt;}
.y66{bottom:77.613333pt;}
.y5e{bottom:84.186667pt;}
.y71{bottom:84.986667pt;}
.y217{bottom:86.720000pt;}
.y263{bottom:89.920000pt;}
.y295{bottom:91.840000pt;}
.y5d{bottom:92.186667pt;}
.y2e6{bottom:92.960000pt;}
.yb1{bottom:94.720000pt;}
.y70{bottom:96.506667pt;}
.y214{bottom:97.280000pt;}
.yc9{bottom:97.440000pt;}
.y261{bottom:100.320000pt;}
.ye1{bottom:101.600000pt;}
.y17f{bottom:102.240000pt;}
.y39{bottom:102.720000pt;}
.y159{bottom:104.960000pt;}
.y5c{bottom:108.026667pt;}
.y2e5{bottom:108.320000pt;}
.y294{bottom:109.440000pt;}
.y2b5{bottom:112.160000pt;}
.yb0{bottom:112.320000pt;}
.y317{bottom:112.640000pt;}
.yc8{bottom:115.040000pt;}
.y212{bottom:115.200000pt;}
.y25f{bottom:116.480000pt;}
.y1cb{bottom:117.920000pt;}
.y6f{bottom:119.066667pt;}
.y17e{bottom:119.840000pt;}
.y38{bottom:120.320000pt;}
.y158{bottom:122.560000pt;}
.y2e4{bottom:123.520000pt;}
.y5b{bottom:123.866667pt;}
.y293{bottom:127.040000pt;}
.y316{bottom:128.000000pt;}
.y1c6{bottom:128.320000pt;}
.y2b4{bottom:129.920000pt;}
.yaf{bottom:130.080000pt;}
.yc7{bottom:132.640000pt;}
.y210{bottom:134.400000pt;}
.y17d{bottom:137.440000pt;}
.y37{bottom:137.920000pt;}
.y2e3{bottom:138.880000pt;}
.y5a{bottom:139.706667pt;}
.y157{bottom:140.320000pt;}
.y25d{bottom:141.600000pt;}
.y315{bottom:143.360000pt;}
.y292{bottom:144.826667pt;}
.y2b3{bottom:147.546667pt;}
.yae{bottom:147.706667pt;}
.yc6{bottom:150.266667pt;}
.y20d{bottom:153.160000pt;}
.y2e2{bottom:154.266667pt;}
.y122{bottom:155.066667pt;}
.y17c{bottom:155.226667pt;}
.y36{bottom:155.546667pt;}
.y1c3{bottom:157.320000pt;}
.y156{bottom:157.946667pt;}
.y314{bottom:158.746667pt;}
.y291{bottom:162.426667pt;}
.y25c{bottom:162.760000pt;}
.yad{bottom:165.306667pt;}
.y11f{bottom:165.480000pt;}
.y2b2{bottom:165.946667pt;}
.yc5{bottom:168.026667pt;}
.y2e1{bottom:169.626667pt;}
.y59{bottom:171.386667pt;}
.y17b{bottom:172.826667pt;}
.y35{bottom:173.146667pt;}
.ye0{bottom:173.306667pt;}
.y313{bottom:174.106667pt;}
.y20c{bottom:175.240000pt;}
.y155{bottom:175.546667pt;}
.y25a{bottom:178.920000pt;}
.y290{bottom:180.026667pt;}
.yac{bottom:182.906667pt;}
.y1c0{bottom:184.360000pt;}
.y2e0{bottom:184.986667pt;}
.yc4{bottom:185.626667pt;}
.y58{bottom:187.386667pt;}
.y312{bottom:189.466667pt;}
.y17a{bottom:190.426667pt;}
.y34{bottom:190.906667pt;}
.y11e{bottom:192.520000pt;}
.y154{bottom:193.146667pt;}
.y20a{bottom:194.440000pt;}
.y28f{bottom:197.626667pt;}
.y258{bottom:199.880000pt;}
.y2df{bottom:200.346667pt;}
.yab{bottom:201.306667pt;}
.y2b1{bottom:202.266667pt;}
.y1b6{bottom:202.600000pt;}
.y57{bottom:203.226667pt;}
.y311{bottom:204.666667pt;}
.y11d{bottom:207.240000pt;}
.y179{bottom:208.026667pt;}
.y33{bottom:208.506667pt;}
.y153{bottom:210.746667pt;}
.y56{bottom:215.066667pt;}
.y28e{bottom:215.226667pt;}
.y2de{bottom:215.546667pt;}
.y209{bottom:216.040000pt;}
.yaa{bottom:219.066667pt;}
.y2b0{bottom:219.866667pt;}
.y310{bottom:220.026667pt;}
.yc3{bottom:220.826667pt;}
.y11b{bottom:222.120000pt;}
.y55{bottom:222.906667pt;}
.y255{bottom:223.880000pt;}
.y178{bottom:225.626667pt;}
.y32{bottom:226.106667pt;}
.y152{bottom:228.506667pt;}
.ya9{bottom:230.586667pt;}
.y2dd{bottom:230.906667pt;}
.y28d{bottom:232.986667pt;}
.y207{bottom:234.120000pt;}
.y30f{bottom:235.386667pt;}
.yc2{bottom:238.426667pt;}
.y54{bottom:238.746667pt;}
.y11a{bottom:239.880000pt;}
.y254{bottom:240.040000pt;}
.y1b8{bottom:243.240000pt;}
.y177{bottom:243.386667pt;}
.ydf{bottom:243.706667pt;}
.y31{bottom:244.506667pt;}
.y151{bottom:246.106667pt;}
.y2dc{bottom:246.266667pt;}
.ya8{bottom:248.186667pt;}
.y28c{bottom:250.586667pt;}
.y30e{bottom:250.746667pt;}
.y53{bottom:254.586667pt;}
.y119{bottom:254.600000pt;}
.yc1{bottom:256.186667pt;}
.y205{bottom:258.760000pt;}
.y30{bottom:259.866667pt;}
.y253{bottom:259.880000pt;}
.y176{bottom:260.986667pt;}
.yde{bottom:261.466667pt;}
.y2db{bottom:261.626667pt;}
.y150{bottom:263.706667pt;}
.ya7{bottom:265.786667pt;}
.y30d{bottom:266.106667pt;}
.y2f{bottom:267.386667pt;}
.y28b{bottom:268.186667pt;}
.y4a{bottom:268.680000pt;}
.y118{bottom:269.320000pt;}
.y52{bottom:270.426667pt;}
.yc0{bottom:273.786667pt;}
.y1b5{bottom:274.586667pt;}
.y2af{bottom:274.746667pt;}
.y203{bottom:276.680000pt;}
.y2da{bottom:276.986667pt;}
.y175{bottom:278.586667pt;}
.ydd{bottom:279.066667pt;}
.y14f{bottom:281.306667pt;}
.y30c{bottom:281.466667pt;}
.ya6{bottom:283.386667pt;}
.y116{bottom:284.200000pt;}
.y251{bottom:285.640000pt;}
.y28a{bottom:285.786667pt;}
.y2e{bottom:285.946667pt;}
.y51{bottom:286.453333pt;}
.y1b4{bottom:290.586667pt;}
.ybf{bottom:291.386667pt;}
.y2d9{bottom:292.186667pt;}
.y2ae{bottom:292.346667pt;}
.y201{bottom:295.880000pt;}
.y174{bottom:296.186667pt;}
.ydc{bottom:296.666667pt;}
.y14e{bottom:298.906667pt;}
.y114{bottom:300.680000pt;}
.ya5{bottom:301.146667pt;}
.y50{bottom:302.293333pt;}
.y289{bottom:303.386667pt;}
.y2d{bottom:303.706667pt;}
.y2d8{bottom:307.546667pt;}
.ybe{bottom:308.986667pt;}
.y2ad{bottom:310.906667pt;}
.y30b{bottom:312.026667pt;}
.y173{bottom:313.786667pt;}
.y1fe{bottom:313.960000pt;}
.y4f{bottom:314.133333pt;}
.ydb{bottom:314.266667pt;}
.y113{bottom:315.720000pt;}
.y2c{bottom:315.866667pt;}
.y14d{bottom:316.666667pt;}
.ya4{bottom:318.746667pt;}
.y288{bottom:321.146667pt;}
.y4e{bottom:321.973333pt;}
.y2d7{bottom:322.906667pt;}
.y2b{bottom:323.546667pt;}
.y24d{bottom:323.560000pt;}
.y1b3{bottom:325.146667pt;}
.ybd{bottom:326.586667pt;}
.y30a{bottom:327.386667pt;}
.y111{bottom:330.440000pt;}
.y172{bottom:331.386667pt;}
.yda{bottom:331.866667pt;}
.y1fc{bottom:333.640000pt;}
.y14c{bottom:334.266667pt;}
.y1b2{bottom:335.560000pt;}
.ya3{bottom:336.346667pt;}
.y6e{bottom:336.680000pt;}
.y4d{bottom:337.813333pt;}
.y2d6{bottom:338.266667pt;}
.y287{bottom:338.746667pt;}
.y309{bottom:342.746667pt;}
.y2a{bottom:344.346667pt;}
.y10f{bottom:345.160000pt;}
.y24a{bottom:345.640000pt;}
.y2ac{bottom:347.386667pt;}
.y1b0{bottom:348.520000pt;}
.y171{bottom:349.186667pt;}
.yd9{bottom:349.666667pt;}
.y14b{bottom:351.906667pt;}
.y4c{bottom:353.653333pt;}
.y2d5{bottom:353.666667pt;}
.ya2{bottom:354.786667pt;}
.y286{bottom:356.386667pt;}
.y1fb{bottom:356.546667pt;}
.y308{bottom:358.146667pt;}
.y1af{bottom:361.666667pt;}
.ybc{bottom:361.986667pt;}
.y10e{bottom:362.946667pt;}
.y249{bottom:364.866667pt;}
.y29{bottom:365.026667pt;}
.y2ab{bottom:365.666667pt;}
.y170{bottom:366.786667pt;}
.yd8{bottom:367.266667pt;}
.y2d4{bottom:369.026667pt;}
.y14a{bottom:369.506667pt;}
.y4b{bottom:369.653333pt;}
.ya1{bottom:373.346667pt;}
.y285{bottom:373.986667pt;}
.y1ae{bottom:374.626667pt;}
.y10d{bottom:377.666667pt;}
.y1f8{bottom:378.146667pt;}
.ybb{bottom:379.586667pt;}
.y2d3{bottom:384.226667pt;}
.y16f{bottom:384.386667pt;}
.yd7{bottom:384.866667pt;}
.y28{bottom:385.666667pt;}
.y2aa{bottom:386.786667pt;}
.y149{bottom:387.106667pt;}
.y1ad{bottom:387.586667pt;}
.y307{bottom:388.706667pt;}
.y284{bottom:391.586667pt;}
.y10c{bottom:392.546667pt;}
.yba{bottom:397.186667pt;}
.y2d2{bottom:399.586667pt;}
.y1ac{bottom:400.546667pt;}
.y1fa{bottom:400.866667pt;}
.y16e{bottom:401.986667pt;}
.yd6{bottom:402.466667pt;}
.y306{bottom:404.066667pt;}
.y148{bottom:404.866667pt;}
.y27{bottom:406.466667pt;}
.y10b{bottom:408.706667pt;}
.y283{bottom:409.346667pt;}
.ya0{bottom:409.506667pt;}
.y247{bottom:412.386667pt;}
.y1ab{bottom:413.666667pt;}
.yb9{bottom:414.786667pt;}
.y2d1{bottom:414.946667pt;}
.y305{bottom:419.426667pt;}
.y16d{bottom:419.586667pt;}
.yd5{bottom:420.066667pt;}
.y1f7{bottom:420.706667pt;}
.y147{bottom:422.466667pt;}
.y2a9{bottom:423.106667pt;}
.y10a{bottom:423.426667pt;}
.y1aa{bottom:426.626667pt;}
.y282{bottom:426.946667pt;}
.y26{bottom:427.106667pt;}
.y9f{bottom:427.266667pt;}
.y2d0{bottom:430.306667pt;}
.yb8{bottom:432.546667pt;}
.y246{bottom:433.346667pt;}
.y304{bottom:434.786667pt;}
.y16c{bottom:437.346667pt;}
.yd4{bottom:437.826667pt;}
.y1a9{bottom:439.586667pt;}
.y109{bottom:440.066667pt;}
.y2a8{bottom:440.706667pt;}
.y1f6{bottom:442.946667pt;}
.y281{bottom:444.546667pt;}
.y9e{bottom:444.866667pt;}
.y2cf{bottom:445.666667pt;}
.y25{bottom:447.746667pt;}
.yb7{bottom:450.146667pt;}
.y245{bottom:451.266667pt;}
.y1a8{bottom:452.706667pt;}
.y108{bottom:454.946667pt;}
.yd3{bottom:455.426667pt;}
.y146{bottom:457.666667pt;}
.y2a7{bottom:458.466667pt;}
.y2ce{bottom:461.026667pt;}
.y280{bottom:462.146667pt;}
.y9d{bottom:462.466667pt;}
.y1f3{bottom:464.546667pt;}
.y303{bottom:465.346667pt;}
.y1a7{bottom:465.666667pt;}
.yb6{bottom:467.746667pt;}
.y107{bottom:469.826667pt;}
.y242{bottom:472.386667pt;}
.y16b{bottom:472.546667pt;}
.yd2{bottom:473.026667pt;}
.y65{bottom:474.293333pt;}
.y145{bottom:475.266667pt;}
.y2a6{bottom:476.066667pt;}
.y2cd{bottom:476.226667pt;}
.y1a6{bottom:478.626667pt;}
.y27f{bottom:479.746667pt;}
.y9c{bottom:480.066667pt;}
.y302{bottom:480.706667pt;}
.y106{bottom:484.546667pt;}
.yb5{bottom:485.346667pt;}
.y1f5{bottom:488.546667pt;}
.yd1{bottom:490.626667pt;}
.y16a{bottom:490.946667pt;}
.y2cc{bottom:491.586667pt;}
.y1a5{bottom:491.746667pt;}
.y144{bottom:493.026667pt;}
.y2a5{bottom:493.666667pt;}
.y301{bottom:496.066667pt;}
.y241{bottom:496.386667pt;}
.y24{bottom:496.546667pt;}
.y27e{bottom:497.506667pt;}
.y9b{bottom:497.666667pt;}
.y105{bottom:499.266667pt;}
.yb4{bottom:502.946667pt;}
.y1a4{bottom:504.706667pt;}
.y2cb{bottom:506.946667pt;}
.yd0{bottom:509.026667pt;}
.y23{bottom:510.306667pt;}
.y143{bottom:510.626667pt;}
.y2a4{bottom:511.266667pt;}
.y300{bottom:511.426667pt;}
.y1f1{bottom:512.546667pt;}
.y27d{bottom:515.106667pt;}
.y9a{bottom:515.426667pt;}
.y102{bottom:515.906667pt;}
.y240{bottom:517.346667pt;}
.y1a3{bottom:517.666667pt;}
.yb3{bottom:521.506667pt;}
.y2ca{bottom:522.306667pt;}
.y22{bottom:524.226667pt;}
.ycf{bottom:526.786667pt;}
.y169{bottom:527.426667pt;}
.y142{bottom:528.226667pt;}
.y2a3{bottom:528.866667pt;}
.y1a2{bottom:530.786667pt;}
.y27c{bottom:532.706667pt;}
.y99{bottom:533.026667pt;}
.y1f0{bottom:534.786667pt;}
.yff{bottom:536.866667pt;}
.y2c9{bottom:537.666667pt;}
.y21{bottom:537.986667pt;}
.yce{bottom:538.306667pt;}
.yb2{bottom:539.106667pt;}
.y23b{bottom:540.066667pt;}
.y2ff{bottom:542.146667pt;}
.y1a1{bottom:543.746667pt;}
.y168{bottom:545.026667pt;}
.y141{bottom:545.826667pt;}
.y2a2{bottom:546.626667pt;}
.y27b{bottom:550.306667pt;}
.y98{bottom:550.626667pt;}
.y20{bottom:551.746667pt;}
.y2c8{bottom:553.026667pt;}
.y1ee{bottom:553.373333pt;}
.ycd{bottom:555.933333pt;}
.y1a0{bottom:556.733333pt;}
.y2fe{bottom:557.373333pt;}
.yfd{bottom:559.773333pt;}
.y23d{bottom:559.933333pt;}
.y1f{bottom:561.693333pt;}
.y167{bottom:562.653333pt;}
.y140{bottom:563.453333pt;}
.y2a1{bottom:565.053333pt;}
.y27a{bottom:567.933333pt;}
.y97{bottom:568.253333pt;}
.y3a{bottom:569.373333pt;}
.y19f{bottom:569.693333pt;}
.y2fd{bottom:572.733333pt;}
.y1ed{bottom:573.213333pt;}
.ycc{bottom:573.533333pt;}
.y1e{bottom:573.853333pt;}
.yfc{bottom:576.253333pt;}
.y166{bottom:580.253333pt;}
.y13f{bottom:581.213333pt;}
.y19e{bottom:582.813333pt;}
.y2c7{bottom:583.613333pt;}
.y1d{bottom:585.213333pt;}
.y279{bottom:585.693333pt;}
.y96{bottom:585.853333pt;}
.y2fc{bottom:588.093333pt;}
.ycb{bottom:591.933333pt;}
.yfb{bottom:594.013333pt;}
.y19d{bottom:595.773333pt;}
.y1ec{bottom:595.933333pt;}
.y1c{bottom:596.733333pt;}
.y165{bottom:597.853333pt;}
.y13e{bottom:598.813333pt;}
.y2c6{bottom:598.973333pt;}
.y2a0{bottom:601.373333pt;}
.y239{bottom:602.493333pt;}
.y278{bottom:603.293333pt;}
.y2fb{bottom:603.453333pt;}
.y95{bottom:603.613333pt;}
.y1b{bottom:608.253333pt;}
.y19c{bottom:608.733333pt;}
.yca{bottom:609.693333pt;}
.yfa{bottom:610.173333pt;}
.y2c5{bottom:614.333333pt;}
.y1e9{bottom:614.493333pt;}
.y164{bottom:615.613333pt;}
.y13d{bottom:616.413333pt;}
.y2fa{bottom:618.813333pt;}
.y29f{bottom:618.973333pt;}
.y1a{bottom:620.573333pt;}
.y277{bottom:620.893333pt;}
.y94{bottom:621.213333pt;}
.y19b{bottom:621.853333pt;}
.y235{bottom:624.733333pt;}
.yf8{bottom:624.893333pt;}
.y2c4{bottom:629.693333pt;}
.y19{bottom:631.933333pt;}
.y13c{bottom:632.413333pt;}
.y163{bottom:633.213333pt;}
.y2f9{bottom:634.173333pt;}
.y1e8{bottom:634.333333pt;}
.y19a{bottom:634.813333pt;}
.y29e{bottom:636.573333pt;}
.y276{bottom:638.493333pt;}
.y93{bottom:638.813333pt;}
.yf6{bottom:642.653333pt;}
.y13b{bottom:642.973333pt;}
.y2c3{bottom:644.893333pt;}
.y199{bottom:647.773333pt;}
.y1e6{bottom:649.213333pt;}
.y2f8{bottom:649.373333pt;}
.y237{bottom:650.013333pt;}
.y162{bottom:650.813333pt;}
.y29d{bottom:654.333333pt;}
.y18{bottom:655.773333pt;}
.y275{bottom:656.093333pt;}
.y92{bottom:656.413333pt;}
.yf5{bottom:657.373333pt;}
.y13a{bottom:657.693333pt;}
.y2c2{bottom:660.253333pt;}
.y198{bottom:660.893333pt;}
.y2f7{bottom:664.733333pt;}
.y17{bottom:665.693333pt;}
.y233{bottom:666.173333pt;}
.y161{bottom:668.413333pt;}
.y1e5{bottom:670.813333pt;}
.y1e2{bottom:670.826667pt;}
.y29c{bottom:671.933333pt;}
.yf3{bottom:672.253333pt;}
.y137{bottom:672.413333pt;}
.y274{bottom:673.853333pt;}
.y197{bottom:673.866667pt;}
.y91{bottom:674.013333pt;}
.y2c1{bottom:675.613333pt;}
.y2f6{bottom:680.093333pt;}
.y232{bottom:685.373333pt;}
.y1e4{bottom:685.533333pt;}
.y160{bottom:686.013333pt;}
.y196{bottom:686.813333pt;}
.y16{bottom:687.293333pt;}
.y29b{bottom:689.533333pt;}
.y2c0{bottom:690.973333pt;}
.yf1{bottom:691.293333pt;}
.y273{bottom:691.453333pt;}
.y90{bottom:691.773333pt;}
.y2f5{bottom:695.453333pt;}
.y195{bottom:699.773333pt;}
.y231{bottom:700.093333pt;}
.y22f{bottom:700.106667pt;}
.y1e1{bottom:700.266667pt;}
.y15{bottom:703.293333pt;}
.y15f{bottom:703.773333pt;}
.y136{bottom:704.266667pt;}
.y2bf{bottom:706.333333pt;}
.y29a{bottom:707.133333pt;}
.y272{bottom:709.053333pt;}
.y8f{bottom:709.373333pt;}
.y2f4{bottom:710.813333pt;}
.yf0{bottom:712.413333pt;}
.y194{bottom:712.893333pt;}
.y1e0{bottom:715.133333pt;}
.y14{bottom:716.413333pt;}
.y22c{bottom:718.186667pt;}
.y135{bottom:718.973333pt;}
.y15e{bottom:721.373333pt;}
.y2be{bottom:722.013333pt;}
.y299{bottom:724.733333pt;}
.y191{bottom:725.866667pt;}
.y2f3{bottom:726.013333pt;}
.y271{bottom:726.653333pt;}
.y8e{bottom:726.973333pt;}
.yef{bottom:728.253333pt;}
.y13{bottom:730.493333pt;}
.y1df{bottom:733.693333pt;}
.y1dd{bottom:733.706667pt;}
.y132{bottom:733.866667pt;}
.y190{bottom:738.813333pt;}
.y15d{bottom:738.973333pt;}
.y22b{bottom:739.133333pt;}
.y2f2{bottom:741.373333pt;}
.y298{bottom:742.493333pt;}
.yee{bottom:743.453333pt;}
.y270{bottom:744.253333pt;}
.y12{bottom:744.573333pt;}
.y1dc{bottom:748.426667pt;}
.y18f{bottom:751.933333pt;}
.y12f{bottom:752.093333pt;}
.y228{bottom:753.853333pt;}
.y226{bottom:753.866667pt;}
.y15c{bottom:756.573333pt;}
.y2f1{bottom:756.733333pt;}
.y2bd{bottom:758.213333pt;}
.yed{bottom:758.693333pt;}
.y11{bottom:758.853333pt;}
.y297{bottom:760.133333pt;}
.y26f{bottom:762.053333pt;}
.y8d{bottom:762.213333pt;}
.y1da{bottom:763.173333pt;}
.y18e{bottom:764.933333pt;}
.y10{bottom:772.133333pt;}
.y15b{bottom:774.213333pt;}
.y225{bottom:775.013333pt;}
.y2bc{bottom:775.813333pt;}
.yec{bottom:776.293333pt;}
.y12e{bottom:777.253333pt;}
.y296{bottom:777.733333pt;}
.y18d{bottom:777.893333pt;}
.y26e{bottom:779.653333pt;}
.y8c{bottom:779.973333pt;}
.yf{bottom:781.733333pt;}
.y2f0{bottom:787.493333pt;}
.y1d8{bottom:787.813333pt;}
.y18c{bottom:791.013333pt;}
.y224{bottom:791.813333pt;}
.y15a{bottom:791.973333pt;}
.y12d{bottom:793.253333pt;}
.y2bb{bottom:793.413333pt;}
.yeb{bottom:794.053333pt;}
.ye{bottom:796.133333pt;}
.y26d{bottom:797.253333pt;}
.y8b{bottom:797.573333pt;}
.y2ef{bottom:802.853333pt;}
.y18b{bottom:803.973333pt;}
.y220{bottom:806.533333pt;}
.y12c{bottom:809.573333pt;}
.yea{bottom:811.653333pt;}
.y2ba{bottom:811.973333pt;}
.y1d7{bottom:813.093333pt;}
.y26c{bottom:814.853333pt;}
.y8a{bottom:815.173333pt;}
.y18a{bottom:816.933333pt;}
.yd{bottom:817.893333pt;}
.y2ee{bottom:818.053333pt;}
.y222{bottom:824.453333pt;}
.y12b{bottom:827.173333pt;}
.ye9{bottom:829.253333pt;}
.y189{bottom:830.053333pt;}
.y26b{bottom:832.453333pt;}
.y89{bottom:832.773333pt;}
.y2ed{bottom:833.413333pt;}
.y1d6{bottom:835.813333pt;}
.yc{bottom:839.493333pt;}
.y21f{bottom:842.533333pt;}
.y188{bottom:843.013333pt;}
.y12a{bottom:844.773333pt;}
.ye8{bottom:846.853333pt;}
.y2b9{bottom:848.293333pt;}
.y2ec{bottom:848.773333pt;}
.y26a{bottom:850.213333pt;}
.y88{bottom:850.373333pt;}
.y1d3{bottom:854.373333pt;}
.y187{bottom:855.973333pt;}
.yb{bottom:858.373333pt;}
.y21d{bottom:860.453333pt;}
.y129{bottom:862.373333pt;}
.y2eb{bottom:864.133333pt;}
.ye7{bottom:864.453333pt;}
.y2b8{bottom:865.893333pt;}
.y269{bottom:867.813333pt;}
.y87{bottom:868.133333pt;}
.y184{bottom:868.933333pt;}
.ya{bottom:876.613333pt;}
.y1d1{bottom:878.373333pt;}
.y2ea{bottom:879.493333pt;}
.y21b{bottom:879.653333pt;}
.y128{bottom:880.133333pt;}
.ye6{bottom:882.213333pt;}
.y182{bottom:883.333333pt;}
.y2b7{bottom:883.493333pt;}
.y268{bottom:885.413333pt;}
.y86{bottom:885.733333pt;}
.y21a{bottom:894.533333pt;}
.y2e9{bottom:894.853333pt;}
.y127{bottom:897.733333pt;}
.ye5{bottom:899.813333pt;}
.y9{bottom:901.093333pt;}
.y1cf{bottom:901.253333pt;}
.y181{bottom:901.733333pt;}
.y2b6{bottom:901.893333pt;}
.y267{bottom:903.013333pt;}
.y85{bottom:903.333333pt;}
.y219{bottom:909.253333pt;}
.y2e8{bottom:910.053333pt;}
.y126{bottom:915.333333pt;}
.y180{bottom:916.293333pt;}
.ye4{bottom:917.413333pt;}
.y266{bottom:920.613333pt;}
.y84{bottom:920.933333pt;}
.y1cd{bottom:925.413333pt;}
.y8{bottom:925.733333pt;}
.y125{bottom:932.933333pt;}
.ye3{bottom:935.013333pt;}
.y265{bottom:938.373333pt;}
.y83{bottom:938.533333pt;}
.y2e7{bottom:940.773333pt;}
.y7{bottom:948.933333pt;}
.y124{bottom:950.533333pt;}
.ye2{bottom:953.413333pt;}
.y264{bottom:955.973333pt;}
.y82{bottom:956.133333pt;}
.y1cc{bottom:957.413333pt;}
.y123{bottom:968.160000pt;}
.y6c{bottom:974.400000pt;}
.y80{bottom:998.400000pt;}
.y47{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h19{height:5.160000pt;}
.h8e{height:5.562500pt;}
.h2{height:12.000000pt;}
.h43{height:12.306667pt;}
.h47{height:12.320000pt;}
.h49{height:12.338667pt;}
.h45{height:12.340000pt;}
.h48{height:12.346667pt;}
.h44{height:12.466667pt;}
.h46{height:12.480000pt;}
.h37{height:14.066667pt;}
.h2e{height:14.080000pt;}
.h5a{height:14.098667pt;}
.h38{height:14.226667pt;}
.h30{height:14.240000pt;}
.h88{height:14.386667pt;}
.h1d{height:15.040000pt;}
.h39{height:15.506667pt;}
.h32{height:15.520000pt;}
.h3b{height:15.826667pt;}
.h33{height:15.840000pt;}
.h36{height:15.986667pt;}
.h41{height:16.306667pt;}
.h3c{height:16.946667pt;}
.h2f{height:16.960000pt;}
.h31{height:17.120000pt;}
.h3a{height:17.138667pt;}
.h6e{height:17.266667pt;}
.h74{height:17.280000pt;}
.h6b{height:17.426667pt;}
.h7a{height:17.440000pt;}
.h4e{height:17.586667pt;}
.h57{height:17.906667pt;}
.h5c{height:17.920000pt;}
.h71{height:18.112000pt;}
.h40{height:18.260000pt;}
.h6c{height:18.546667pt;}
.h72{height:18.560000pt;}
.h86{height:18.578667pt;}
.h6a{height:19.026667pt;}
.h7e{height:19.040000pt;}
.h67{height:19.186667pt;}
.h60{height:19.200000pt;}
.h81{height:19.226667pt;}
.h24{height:19.680000pt;}
.h35{height:20.306667pt;}
.h78{height:20.340000pt;}
.h83{height:20.466667pt;}
.h8a{height:20.512000pt;}
.h18{height:20.728125pt;}
.h5e{height:20.800000pt;}
.h65{height:20.946667pt;}
.h70{height:21.426667pt;}
.h63{height:21.586667pt;}
.h7d{height:21.600000pt;}
.he{height:21.708032pt;}
.h53{height:22.066667pt;}
.h61{height:22.080000pt;}
.h34{height:22.106667pt;}
.h54{height:22.226667pt;}
.h80{height:22.240000pt;}
.h68{height:22.258667pt;}
.h56{height:23.346667pt;}
.h59{height:23.986667pt;}
.h4b{height:24.466667pt;}
.h8b{height:24.480000pt;}
.h85{height:24.626667pt;}
.h7c{height:24.640000pt;}
.h52{height:25.106667pt;}
.hd{height:26.381250pt;}
.h4f{height:26.386667pt;}
.h3d{height:26.392000pt;}
.h3e{height:26.400000pt;}
.h11{height:27.523125pt;}
.hc{height:27.628404pt;}
.h50{height:28.352000pt;}
.h51{height:28.360000pt;}
.h5b{height:28.818667pt;}
.h75{height:28.946667pt;}
.h4{height:30.400000pt;}
.h42{height:31.200000pt;}
.h22{height:32.250000pt;}
.h5f{height:33.920000pt;}
.hb{height:34.374375pt;}
.h16{height:35.114107pt;}
.h89{height:35.346667pt;}
.h5{height:36.431250pt;}
.h6d{height:36.466667pt;}
.h73{height:36.480000pt;}
.h77{height:37.138667pt;}
.h87{height:37.266667pt;}
.h23{height:37.410000pt;}
.h84{height:38.226667pt;}
.h79{height:38.386667pt;}
.h8d{height:38.642500pt;}
.h4c{height:38.712000pt;}
.h4d{height:38.720000pt;}
.h29{height:39.096561pt;}
.h13{height:39.571875pt;}
.h6f{height:40.626667pt;}
.h1b{height:40.635000pt;}
.h8c{height:40.640000pt;}
.h14{height:41.442606pt;}
.h62{height:41.920000pt;}
.h69{height:41.938667pt;}
.h15{height:42.084375pt;}
.h1e{height:43.215000pt;}
.h5d{height:43.506667pt;}
.h82{height:44.306667pt;}
.h55{height:46.226667pt;}
.h17{height:47.109375pt;}
.h58{height:47.346667pt;}
.h2c{height:47.621250pt;}
.h1f{height:48.375000pt;}
.h12{height:49.148438pt;}
.h1a{height:51.360000pt;}
.h28{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2b{height:52.478750pt;}
.h76{height:53.266667pt;}
.h2d{height:53.535000pt;}
.h3f{height:54.598989pt;}
.ha{height:57.787500pt;}
.h1c{height:58.563750pt;}
.h9{height:59.340000pt;}
.h7b{height:60.000000pt;}
.hf{height:60.288750pt;}
.h7{height:61.295000pt;}
.h7f{height:61.786667pt;}
.h2a{height:62.781250pt;}
.h66{height:64.146667pt;}
.h10{height:64.500000pt;}
.h4a{height:65.106667pt;}
.h25{height:66.625000pt;}
.h27{height:66.750000pt;}
.h64{height:69.586667pt;}
.h21{height:84.840000pt;}
.h8{height:85.785000pt;}
.h26{height:128.820000pt;}
.h20{height:380.546667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w14{width:58.912000pt;}
.w13{width:63.040000pt;}
.wc{width:65.906667pt;}
.w3{width:72.952000pt;}
.wd{width:90.106667pt;}
.w16{width:107.986667pt;}
.w17{width:115.546667pt;}
.w5{width:137.306667pt;}
.wb{width:149.773333pt;}
.wf{width:149.786667pt;}
.w10{width:156.026667pt;}
.w11{width:156.040000pt;}
.w1a{width:160.018667pt;}
.w1e{width:160.173333pt;}
.w1c{width:160.186667pt;}
.w1d{width:160.200000pt;}
.wa{width:160.346667pt;}
.w8{width:163.706667pt;}
.w12{width:179.058667pt;}
.w19{width:223.546667pt;}
.we{width:305.813333pt;}
.w15{width:417.040000pt;}
.w7{width:473.546667pt;}
.w1b{width:480.573333pt;}
.w4{width:568.760000pt;}
.w18{width:640.600000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x47{left:3.780000pt;}
.x2{left:7.192000pt;}
.x24{left:8.640000pt;}
.x16{left:9.592000pt;}
.x2d{left:11.840000pt;}
.x31{left:17.280000pt;}
.x1c{left:18.893333pt;}
.x33{left:19.840000pt;}
.x30{left:23.520000pt;}
.x27{left:24.960000pt;}
.x32{left:26.080000pt;}
.x26{left:27.546667pt;}
.x2f{left:29.306667pt;}
.x2e{left:31.520000pt;}
.x28{left:32.986667pt;}
.x29{left:35.546667pt;}
.x40{left:36.466667pt;}
.x37{left:38.240000pt;}
.x36{left:46.720000pt;}
.x38{left:48.320000pt;}
.x39{left:49.280000pt;}
.x3a{left:51.680000pt;}
.x2b{left:53.773333pt;}
.x44{left:58.386667pt;}
.x43{left:59.680000pt;}
.x42{left:60.640000pt;}
.x46{left:61.920000pt;}
.x3{left:65.746667pt;}
.x1a{left:71.560000pt;}
.x17{left:72.680000pt;}
.x45{left:74.720000pt;}
.x2a{left:77.946667pt;}
.x3e{left:80.000000pt;}
.x15{left:82.760000pt;}
.x19{left:83.880000pt;}
.x3b{left:92.800000pt;}
.x1{left:96.040000pt;}
.xa{left:99.232000pt;}
.x21{left:102.912000pt;}
.xb{left:105.792000pt;}
.x22{left:114.112000pt;}
.x13{left:117.952000pt;}
.x6{left:129.792000pt;}
.x7{left:133.626667pt;}
.x3d{left:163.866667pt;}
.x4{left:169.000000pt;}
.xe{left:191.546667pt;}
.x10{left:202.426667pt;}
.x11{left:221.346667pt;}
.xf{left:225.026667pt;}
.x12{left:226.146667pt;}
.x1e{left:230.306667pt;}
.x3c{left:256.066667pt;}
.x18{left:269.346667pt;}
.x1b{left:275.866667pt;}
.x1f{left:305.186667pt;}
.x20{left:308.386667pt;}
.x8{left:326.626667pt;}
.x2c{left:338.146667pt;}
.xc{left:361.506667pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.xd{left:408.093333pt;}
.x3f{left:416.266667pt;}
.x14{left:436.253333pt;}
.x34{left:513.093333pt;}
.x1d{left:551.336000pt;}
.x41{left:576.453333pt;}
.x23{left:586.053333pt;}
.x35{left:621.093333pt;}
.x25{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; }
  