
    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_8189f919d63291677c8c23c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_34391ddf4583ce21cebe2b04.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae7231aaed7292b788b993cc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_04483a3256a3bcd92df58afc.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_751e52dce9791826cfd7c689.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a92475c595963631a6b121fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_9be062d8fd9286e60e31a041.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8b56d5834ce8e39a779282a3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_371c7de70342a8795fc2154f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b2aa8967761fb49ca8782f62.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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_1c5818cd36498c4de38bc740.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972168;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_2fb6069f7c55061bb8837a4c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.972168;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.fff{font-family:fff;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-69.120000px;}
.v4{vertical-align:-64.800000px;}
.v5{vertical-align:-13.680000px;}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v6{vertical-align:18.000000px;}
.ls2a{letter-spacing:-1.260000px;}
.ls27{letter-spacing:-1.182000px;}
.lsa{letter-spacing:-0.924000px;}
.ls1e{letter-spacing:-0.774000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.531600px;}
.ls4{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.269400px;}
.ls26{letter-spacing:-0.243600px;}
.ls25{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.208800px;}
.ls28{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.194400px;}
.ls9{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.037440px;}
.ls1b{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.070560px;}
.ls10{letter-spacing:0.106560px;}
.lsd{letter-spacing:0.106800px;}
.ls1f{letter-spacing:0.144720px;}
.ls21{letter-spacing:0.178800px;}
.ls2{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.181200px;}
.lsc{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls29{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.511200px;}
.ls2c{letter-spacing:0.540000px;}
.ls17{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.254240px;}
.ls16{letter-spacing:1.444320px;}
.ls15{letter-spacing:1.746000px;}
.lsf{letter-spacing:3.633120px;}
.lse{letter-spacing:4.062240px;}
.ls23{letter-spacing:4.500000px;}
.ls1c{letter-spacing:5.940000px;}
.ls1a{letter-spacing:7.752000px;}
.ls22{letter-spacing:8.100000px;}
.ls8{letter-spacing:43.866720px;}
.ls19{letter-spacing:198.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.046800px;}
.ws1c{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws34{word-spacing:-14.733600px;}
.ws1d{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.ws12{word-spacing:-14.220000px;}
.ws35{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.147200px;}
.ws2f{word-spacing:-12.712229px;}
.ws13{word-spacing:-12.513600px;}
.ws4{word-spacing:-12.420000px;}
.ws2a{word-spacing:-12.105360px;}
.ws3{word-spacing:-12.060000px;}
.ws31{word-spacing:-11.836200px;}
.ws30{word-spacing:-11.790600px;}
.ws5{word-spacing:-11.700000px;}
.ws2b{word-spacing:-11.340000px;}
.ws2e{word-spacing:-10.980000px;}
.ws2d{word-spacing:-10.618800px;}
.ws2c{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.187200px;}
.ws14{word-spacing:-8.553600px;}
.ws32{word-spacing:-7.560000px;}
.ws33{word-spacing:-7.316400px;}
.ws10{word-spacing:-0.187920px;}
.ws29{word-spacing:-0.133920px;}
.ws0{word-spacing:0.000000px;}
.ws28{word-spacing:0.344160px;}
.ws19{word-spacing:0.437040px;}
.wse{word-spacing:0.532080px;}
.ws17{word-spacing:0.557040px;}
.ws26{word-spacing:0.712080px;}
.ws23{word-spacing:3.092400px;}
.ws15{word-spacing:3.317040px;}
.wsc{word-spacing:3.412080px;}
.ws1e{word-spacing:3.812400px;}
.ws11{word-spacing:7.416000px;}
.ws1a{word-spacing:7.853760px;}
.ws18{word-spacing:8.219520px;}
.ws16{word-spacing:8.280000px;}
.wsd{word-spacing:8.436960px;}
.ws25{word-spacing:8.447040px;}
.ws1f{word-spacing:8.468640px;}
.ws22{word-spacing:8.519040px;}
.ws1b{word-spacing:8.568000px;}
.ws27{word-spacing:8.856000px;}
.ws24{word-spacing:9.208800px;}
.wsf{word-spacing:9.230400px;}
.ws21{word-spacing:9.350400px;}
.ws20{word-spacing:9.576000px;}
._23{margin-left:-197.820000px;}
._1d{margin-left:-10.049040px;}
._20{margin-left:-8.015040px;}
._1c{margin-left:-6.990960px;}
._21{margin-left:-5.732400px;}
._14{margin-left:-3.906000px;}
._7{margin-left:-2.462400px;}
._1{margin-left:-1.190640px;}
._0{width:1.135440px;}
._3{width:2.454240px;}
._8{width:3.585600px;}
._b{width:4.840560px;}
._d{width:6.740400px;}
._c{width:7.858800px;}
._13{width:8.974560px;}
._e{width:9.979920px;}
._6{width:11.354400px;}
._5{width:12.370320px;}
._4{width:13.685040px;}
._2b{width:15.426000px;}
._f{width:16.553520px;}
._10{width:17.748720px;}
._12{width:18.969840px;}
._a{width:20.254080px;}
._9{width:21.692880px;}
._11{width:23.605920px;}
._15{width:24.762960px;}
._19{width:26.601840px;}
._18{width:27.788400px;}
._1b{width:29.342160px;}
._17{width:30.630240px;}
._16{width:31.672800px;}
._1a{width:32.832480px;}
._2d{width:35.796240px;}
._2c{width:36.991440px;}
._2e{width:39.419040px;}
._2a{width:44.236080px;}
._1f{width:50.193840px;}
._1e{width:51.214320px;}
._26{width:57.465360px;}
._29{width:71.524560px;}
._27{width:118.429200px;}
._25{width:127.691280px;}
._28{width:132.225840px;}
._24{width:142.668000px;}
._22{width:198.000000px;}
._2{width:482.162160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:30.240000px;}
.fsc{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs11{font-size:50.848916px;}
.fs9{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:62.991941px;}
.fs1{font-size:63.000000px;}
.fse{font-size:66.240000px;}
.fs13{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.yfe{bottom:-12.600000px;}
.y105{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:2.340000px;}
.y111{bottom:2.520000px;}
.y277{bottom:2.550000px;}
.y16c{bottom:2.700000px;}
.y182{bottom:2.730000px;}
.y1ca{bottom:2.745000px;}
.y113{bottom:2.880000px;}
.y119{bottom:3.060000px;}
.y5d{bottom:3.240000px;}
.y276{bottom:3.270000px;}
.y121{bottom:3.420000px;}
.y101{bottom:3.780000px;}
.y120{bottom:4.320000px;}
.y27d{bottom:4.680000px;}
.y259{bottom:4.860000px;}
.y124{bottom:5.040000px;}
.yf2{bottom:5.580000px;}
.y253{bottom:6.120000px;}
.yfd{bottom:6.660000px;}
.y267{bottom:7.380000px;}
.y25b{bottom:7.560000px;}
.y26a{bottom:7.590000px;}
.y25e{bottom:7.605000px;}
.y1a5{bottom:8.280000px;}
.yf3{bottom:9.000000px;}
.y12b{bottom:9.360000px;}
.y131{bottom:9.540000px;}
.y3c{bottom:10.080000px;}
.y3d{bottom:10.620000px;}
.y115{bottom:11.160000px;}
.y141{bottom:12.060000px;}
.yf9{bottom:12.600000px;}
.y142{bottom:12.960000px;}
.yf6{bottom:13.320000px;}
.y145{bottom:13.680000px;}
.y14c{bottom:13.860000px;}
.y13a{bottom:14.400000px;}
.y147{bottom:15.480000px;}
.y13d{bottom:16.200000px;}
.y12d{bottom:16.380000px;}
.y110{bottom:16.425000px;}
.y16f{bottom:16.560000px;}
.y177{bottom:16.590000px;}
.y100{bottom:16.740000px;}
.y133{bottom:17.100000px;}
.y13f{bottom:17.280000px;}
.y39{bottom:17.460000px;}
.y104{bottom:17.820000px;}
.y37{bottom:18.360000px;}
.y117{bottom:18.540000px;}
.y11e{bottom:18.900000px;}
.y114{bottom:19.800000px;}
.y1c8{bottom:20.340000px;}
.yfc{bottom:20.520000px;}
.y283{bottom:20.880000px;}
.y257{bottom:22.320000px;}
.y12a{bottom:23.220000px;}
.y3a{bottom:24.300000px;}
.yf8{bottom:26.460000px;}
.yf5{bottom:27.180000px;}
.y144{bottom:27.540000px;}
.yf1{bottom:27.900000px;}
.y146{bottom:28.440000px;}
.y38{bottom:30.060000px;}
.y134{bottom:30.240000px;}
.y10f{bottom:30.285000px;}
.y170{bottom:30.420000px;}
.y103{bottom:31.500000px;}
.y255{bottom:33.840000px;}
.y11c{bottom:34.020000px;}
.yfb{bottom:34.200000px;}
.y11d{bottom:35.280000px;}
.y6{bottom:35.925007px;}
.y126{bottom:37.080000px;}
.y256{bottom:37.800000px;}
.y139{bottom:38.520000px;}
.y127{bottom:43.920000px;}
.y10e{bottom:43.965000px;}
.yf0{bottom:48.600000px;}
.y129{bottom:50.760000px;}
.y10c{bottom:56.565000px;}
.y12c{bottom:57.780000px;}
.y10d{bottom:57.825000px;}
.y128{bottom:64.620000px;}
.y5{bottom:66.525004px;}
.yef{bottom:69.840000px;}
.y12e{bottom:71.490000px;}
.yee{bottom:93.450000px;}
.y4{bottom:97.125005px;}
.yed{bottom:114.150000px;}
.yec{bottom:134.850000px;}
.y22{bottom:139.264499px;}
.yeb{bottom:155.550000px;}
.yea{bottom:176.250000px;}
.y5b{bottom:187.410000px;}
.y19{bottom:196.933500px;}
.y5a{bottom:208.110000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y59{bottom:228.810000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y58{bottom:249.510000px;}
.y52{bottom:252.390000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y57{bottom:270.210000px;}
.y51{bottom:270.390000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y50{bottom:288.390000px;}
.y56{bottom:290.910000px;}
.y4f{bottom:306.390000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y5c{bottom:311.115000px;}
.y55{bottom:311.655000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y4e{bottom:324.435000px;}
.y87{bottom:331.815000px;}
.y86{bottom:332.355000px;}
.y109{bottom:333.435000px;}
.y236{bottom:337.755000px;}
.yc1{bottom:339.555000px;}
.y1fd{bottom:341.535000px;}
.y4d{bottom:342.435000px;}
.y85{bottom:345.495000px;}
.y1e0{bottom:347.475000px;}
.y10{bottom:348.133500px;}
.y29a{bottom:351.075000px;}
.y108{bottom:351.435000px;}
.y1bf{bottom:354.135000px;}
.yd5{bottom:354.495000px;}
.y235{bottom:355.755000px;}
.yc0{bottom:357.555000px;}
.y180{bottom:359.535000px;}
.y15b{bottom:359.895000px;}
.y4c{bottom:360.435000px;}
.y274{bottom:361.335000px;}
.y84{bottom:363.495000px;}
.y1fc{bottom:364.035000px;}
.y21e{bottom:364.215000px;}
.y1a0{bottom:364.395000px;}
.y1df{bottom:365.475000px;}
.y135{bottom:367.275000px;}
.y1be{bottom:368.715000px;}
.y299{bottom:369.075000px;}
.ya3{bottom:369.435000px;}
.y234{bottom:370.875000px;}
.ye8{bottom:372.315000px;}
.yd4{bottom:372.495000px;}
.ybf{bottom:375.555000px;}
.y4b{bottom:378.435000px;}
.y17f{bottom:379.335000px;}
.y273{bottom:380.775000px;}
.y21d{bottom:380.955000px;}
.y83{bottom:381.495000px;}
.y132{bottom:382.395000px;}
.y1bd{bottom:383.295000px;}
.y1de{bottom:383.475000px;}
.y251{bottom:385.275000px;}
.y15a{bottom:386.175000px;}
.y1fb{bottom:386.715000px;}
.yf{bottom:386.785499px;}
.y298{bottom:387.075000px;}
.ya2{bottom:387.435000px;}
.yd3{bottom:390.495000px;}
.y19f{bottom:390.675000px;}
.y233{bottom:391.395000px;}
.ybe{bottom:393.555000px;}
.ye7{bottom:396.255000px;}
.y4a{bottom:396.435000px;}
.y21c{bottom:397.875000px;}
.y17e{bottom:399.135000px;}
.y82{bottom:399.495000px;}
.y272{bottom:400.395000px;}
.y1bc{bottom:400.755000px;}
.y1dd{bottom:401.475000px;}
.y250{bottom:403.275000px;}
.y297{bottom:405.075000px;}
.ya1{bottom:405.435000px;}
.ye{bottom:408.044999px;}
.yd2{bottom:408.495000px;}
.y1fa{bottom:409.215000px;}
.ybd{bottom:411.555000px;}
.y232{bottom:412.095000px;}
.y159{bottom:412.455000px;}
.y49{bottom:414.435000px;}
.y21b{bottom:414.795000px;}
.y19e{bottom:416.775000px;}
.y81{bottom:417.495000px;}
.y17d{bottom:419.115000px;}
.y1dc{bottom:419.475000px;}
.y271{bottom:420.015000px;}
.ye6{bottom:420.375000px;}
.y24f{bottom:421.275000px;}
.y296{bottom:423.075000px;}
.ya0{bottom:423.435000px;}
.y130{bottom:424.515000px;}
.yd1{bottom:426.495000px;}
.y1bb{bottom:429.195000px;}
.ybc{bottom:429.555000px;}
.y1f9{bottom:431.715000px;}
.y48{bottom:432.435000px;}
.y231{bottom:432.615000px;}
.y80{bottom:435.495000px;}
.y1db{bottom:437.475000px;}
.y158{bottom:438.735000px;}
.y17c{bottom:438.915000px;}
.y24e{bottom:439.275000px;}
.y270{bottom:439.635000px;}
.y295{bottom:441.075000px;}
.y9f{bottom:441.435000px;}
.y19d{bottom:443.055000px;}
.yd0{bottom:444.495000px;}
.ybb{bottom:447.555000px;}
.y21a{bottom:448.455000px;}
.y1ba{bottom:449.535000px;}
.y47{bottom:450.435000px;}
.y12f{bottom:452.955000px;}
.y230{bottom:453.135000px;}
.y7f{bottom:453.495000px;}
.y1da{bottom:455.475000px;}
.y24d{bottom:457.275000px;}
.y17b{bottom:458.895000px;}
.y26f{bottom:459.075000px;}
.y9e{bottom:459.435000px;}
.y1f8{bottom:460.155000px;}
.ye5{bottom:460.515000px;}
.ycf{bottom:462.495000px;}
.y157{bottom:465.015000px;}
.y219{bottom:465.375000px;}
.yba{bottom:465.555000px;}
.y46{bottom:468.435000px;}
.y19c{bottom:469.335000px;}
.y7e{bottom:471.495000px;}
.ye4{bottom:471.855000px;}
.y1d9{bottom:473.475000px;}
.y22f{bottom:473.655000px;}
.ye9{bottom:474.555000px;}
.y24c{bottom:475.275000px;}
.y294{bottom:477.075000px;}
.y9d{bottom:477.435000px;}
.y1b9{bottom:477.795000px;}
.y26e{bottom:478.695000px;}
.yce{bottom:480.495000px;}
.y218{bottom:482.295000px;}
.y1f7{bottom:482.835000px;}
.yb9{bottom:483.555000px;}
.yfa{bottom:485.895000px;}
.y45{bottom:486.435000px;}
.y17a{bottom:487.335000px;}
.y7d{bottom:489.495000px;}
.y102{bottom:489.855000px;}
.ye3{bottom:490.935000px;}
.y156{bottom:491.115000px;}
.y1d8{bottom:491.475000px;}
.y24b{bottom:493.275000px;}
.y22e{bottom:494.175000px;}
.y125{bottom:495.075000px;}
.y9c{bottom:495.435000px;}
.y19b{bottom:495.615000px;}
.y26d{bottom:498.315000px;}
.y217{bottom:499.215000px;}
.yd8{bottom:501.555000px;}
.yd{bottom:502.864502px;}
.y44{bottom:504.435000px;}
.y1f6{bottom:505.335000px;}
.y179{bottom:507.135000px;}
.y7c{bottom:507.495000px;}
.y22d{bottom:508.755000px;}
.y1d7{bottom:509.475000px;}
.ye2{bottom:509.835000px;}
.y24a{bottom:511.275000px;}
.y293{bottom:513.075000px;}
.y9b{bottom:513.435000px;}
.y1b8{bottom:515.775000px;}
.y216{bottom:515.955000px;}
.y155{bottom:517.395000px;}
.y26c{bottom:517.935000px;}
.yd7{bottom:519.555000px;}
.yc{bottom:520.864502px;}
.y19a{bottom:521.895000px;}
.y43{bottom:522.435000px;}
.yca{bottom:525.495000px;}
.y178{bottom:526.935000px;}
.y1d6{bottom:527.475000px;}
.ycd{bottom:528.015000px;}
.ye1{bottom:528.735000px;}
.y22c{bottom:529.275000px;}
.y292{bottom:531.075000px;}
.y7b{bottom:531.435000px;}
.y215{bottom:532.875000px;}
.yff{bottom:534.675000px;}
.y1b7{bottom:535.935000px;}
.y26b{bottom:537.375000px;}
.yd6{bottom:537.555000px;}
.yb{bottom:538.864499px;}
.y42{bottom:540.435000px;}
.yc9{bottom:543.495000px;}
.y154{bottom:543.675000px;}
.y1d5{bottom:545.475000px;}
.y176{bottom:546.915000px;}
.y249{bottom:547.275000px;}
.ye0{bottom:547.815000px;}
.y199{bottom:548.175000px;}
.y291{bottom:549.075000px;}
.y7a{bottom:549.435000px;}
.y214{bottom:549.795000px;}
.y22b{bottom:549.975000px;}
.y1f5{bottom:550.515000px;}
.yb8{bottom:555.555000px;}
.ya{bottom:556.864499px;}
.y269{bottom:556.995000px;}
.y41{bottom:558.435000px;}
.yc8{bottom:561.525000px;}
.y1d4{bottom:563.505000px;}
.y1b6{bottom:564.405000px;}
.y248{bottom:565.305000px;}
.ydf{bottom:566.745000px;}
.y290{bottom:567.105000px;}
.y79{bottom:567.465000px;}
.y153{bottom:569.985000px;}
.y22a{bottom:570.525000px;}
.y198{bottom:571.965000px;}
.y1f4{bottom:573.045000px;}
.yb7{bottom:573.585000px;}
.y175{bottom:575.385000px;}
.y40{bottom:576.465000px;}
.y268{bottom:576.645000px;}
.y123{bottom:578.625000px;}
.yc7{bottom:579.525000px;}
.y247{bottom:583.305000px;}
.y213{bottom:583.485000px;}
.y1b5{bottom:584.745000px;}
.y28f{bottom:585.105000px;}
.y78{bottom:585.465000px;}
.yde{bottom:585.825000px;}
.y1d3{bottom:587.625000px;}
.y229{bottom:591.045000px;}
.yb6{bottom:591.585000px;}
.yf4{bottom:592.485000px;}
.yf7{bottom:593.565000px;}
.y1f3{bottom:595.725000px;}
.y152{bottom:596.265000px;}
.yc6{bottom:597.525000px;}
.y3f{bottom:600.405000px;}
.y122{bottom:601.305000px;}
.y28e{bottom:603.105000px;}
.y77{bottom:603.465000px;}
.y174{bottom:603.825000px;}
.ydd{bottom:604.725000px;}
.y1b4{bottom:605.085000px;}
.y11f{bottom:607.065000px;}
.yb5{bottom:609.585000px;}
.y228{bottom:611.565000px;}
.yc5{bottom:615.525000px;}
.y266{bottom:615.705000px;}
.y212{bottom:617.325000px;}
.y3e{bottom:618.045000px;}
.y1f2{bottom:618.225000px;}
.y246{bottom:619.305000px;}
.y197{bottom:620.205000px;}
.y28d{bottom:621.105000px;}
.y76{bottom:621.465000px;}
.y151{bottom:622.365000px;}
.y11b{bottom:623.445000px;}
.ydc{bottom:623.625000px;}
.y1b3{bottom:625.425000px;}
.yb4{bottom:627.585000px;}
.y1d2{bottom:629.925000px;}
.y173{bottom:630.465000px;}
.y3b{bottom:632.085000px;}
.yc4{bottom:633.525000px;}
.y211{bottom:634.245000px;}
.y265{bottom:635.325000px;}
.y245{bottom:637.305000px;}
.y28c{bottom:639.105000px;}
.y75{bottom:639.465000px;}
.y1f1{bottom:640.905000px;}
.ydb{bottom:642.705000px;}
.y9{bottom:645.510000px;}
.yb3{bottom:645.585000px;}
.y1b2{bottom:645.765000px;}
.y227{bottom:646.665000px;}
.y150{bottom:648.645000px;}
.y1d1{bottom:649.005000px;}
.y172{bottom:650.265000px;}
.y210{bottom:650.985000px;}
.yc3{bottom:651.525000px;}
.y36{bottom:654.045000px;}
.y264{bottom:654.945000px;}
.y28b{bottom:657.105000px;}
.y74{bottom:657.465000px;}
.y244{bottom:661.425000px;}
.yda{bottom:661.605000px;}
.y196{bottom:662.505000px;}
.y1f0{bottom:663.405000px;}
.yb2{bottom:663.585000px;}
.y1b1{bottom:666.105000px;}
.y8{bottom:666.771000px;}
.y226{bottom:667.365000px;}
.y20f{bottom:667.905000px;}
.yc2{bottom:669.525000px;}
.y171{bottom:670.245000px;}
.y11a{bottom:670.785000px;}
.y263{bottom:674.565000px;}
.y14f{bottom:674.925000px;}
.y28a{bottom:675.105000px;}
.y73{bottom:675.465000px;}
.y1d0{bottom:677.445000px;}
.y243{bottom:679.425000px;}
.yd9{bottom:680.685000px;}
.yb1{bottom:681.585000px;}
.y195{bottom:682.485000px;}
.y20e{bottom:684.825000px;}
.y1b0{bottom:686.265000px;}
.ycc{bottom:687.525000px;}
.y225{bottom:687.885000px;}
.y16e{bottom:690.045000px;}
.y1ef{bottom:691.845000px;}
.y35{bottom:692.925000px;}
.y289{bottom:693.105000px;}
.y72{bottom:693.465000px;}
.y1cf{bottom:696.525000px;}
.y9a{bottom:699.585000px;}
.y14e{bottom:701.205000px;}
.y20d{bottom:701.745000px;}
.y194{bottom:702.285000px;}
.y118{bottom:702.465000px;}
.y242{bottom:703.365000px;}
.ycb{bottom:705.525000px;}
.y1af{bottom:706.605000px;}
.y224{bottom:708.405000px;}
.y262{bottom:709.665000px;}
.y34{bottom:710.205000px;}
.y288{bottom:711.105000px;}
.y71{bottom:711.465000px;}
.y1ee{bottom:714.345000px;}
.y1ce{bottom:715.425000px;}
.y99{bottom:717.585000px;}
.y20c{bottom:718.485000px;}
.y193{bottom:722.085000px;}
.yb0{bottom:723.525000px;}
.y7{bottom:726.298500px;}
.y33{bottom:727.125000px;}
.y14d{bottom:727.485000px;}
.y223{bottom:728.925000px;}
.y287{bottom:729.105000px;}
.y261{bottom:729.285000px;}
.y70{bottom:729.465000px;}
.y16d{bottom:732.345000px;}
.y116{bottom:734.325000px;}
.y1cd{bottom:734.505000px;}
.y20b{bottom:735.405000px;}
.y98{bottom:735.585000px;}
.y1ed{bottom:737.025000px;}
.yaf{bottom:741.525000px;}
.y192{bottom:742.065000px;}
.y32{bottom:742.965000px;}
.y241{bottom:746.385000px;}
.y286{bottom:747.105000px;}
.y6f{bottom:747.465000px;}
.y1ae{bottom:748.905000px;}
.y222{bottom:749.445000px;}
.y14b{bottom:751.245000px;}
.y16b{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y97{bottom:753.585000px;}
.yae{bottom:759.525000px;}
.y31{bottom:760.245000px;}
.y191{bottom:761.865000px;}
.y20a{bottom:763.845000px;}
.y285{bottom:765.105000px;}
.y6e{bottom:765.465000px;}
.y1ad{bottom:765.645000px;}
.y112{bottom:766.185000px;}
.y260{bottom:768.525000px;}
.y221{bottom:769.965000px;}
.y96{bottom:771.585000px;}
.y1cc{bottom:772.665000px;}
.y240{bottom:774.105000px;}
.y30{bottom:777.525000px;}
.y209{bottom:780.765000px;}
.y190{bottom:781.845000px;}
.y1ec{bottom:782.205000px;}
.y6d{bottom:783.465000px;}
.y25f{bottom:787.965000px;}
.y284{bottom:789.225000px;}
.y95{bottom:789.585000px;}
.y16a{bottom:790.305000px;}
.y220{bottom:790.665000px;}
.y14a{bottom:790.845000px;}
.y1cb{bottom:791.745000px;}
.y1ac{bottom:794.085000px;}
.y2f{bottom:794.445000px;}
.yad{bottom:795.525000px;}
.y208{bottom:797.685000px;}
.y10b{bottom:797.865000px;}
.y6c{bottom:801.465000px;}
.y18f{bottom:801.645000px;}
.y23f{bottom:802.545000px;}
.y1eb{bottom:804.705000px;}
.y94{bottom:807.585000px;}
.y169{bottom:808.305000px;}
.y2e{bottom:810.285000px;}
.y1c9{bottom:810.825000px;}
.y282{bottom:813.390000px;}
.yac{bottom:813.570000px;}
.y1ab{bottom:814.470000px;}
.y149{bottom:815.010000px;}
.y6b{bottom:819.510000px;}
.y18e{bottom:821.670000px;}
.y93{bottom:825.630000px;}
.y21f{bottom:825.990000px;}
.y168{bottom:826.350000px;}
.y1ea{bottom:827.250000px;}
.y2d{bottom:827.610000px;}
.y23e{bottom:830.310000px;}
.y207{bottom:831.390000px;}
.yab{bottom:831.570000px;}
.y1c7{bottom:835.710000px;}
.y6a{bottom:837.510000px;}
.y18d{bottom:841.470000px;}
.y1aa{bottom:842.730000px;}
.y148{bottom:843.450000px;}
.y92{bottom:843.630000px;}
.y167{bottom:844.350000px;}
.y2c{bottom:844.890000px;}
.y25d{bottom:846.870000px;}
.y206{bottom:848.310000px;}
.y281{bottom:849.030000px;}
.yaa{bottom:849.570000px;}
.y1e9{bottom:849.930000px;}
.y69{bottom:855.510000px;}
.y1a9{bottom:857.310000px;}
.y23d{bottom:858.210000px;}
.y18c{bottom:861.270000px;}
.y91{bottom:861.630000px;}
.y2b{bottom:861.810000px;}
.y166{bottom:862.350000px;}
.y205{bottom:865.230000px;}
.y25c{bottom:866.310000px;}
.ya9{bottom:867.570000px;}
.y280{bottom:868.470000px;}
.y1c6{bottom:870.810000px;}
.y143{bottom:871.710000px;}
.y1e8{bottom:872.430000px;}
.y68{bottom:873.510000px;}
.y1a8{bottom:874.770000px;}
.y2a{bottom:877.650000px;}
.y2{bottom:879.369000px;}
.y90{bottom:879.630000px;}
.y10a{bottom:879.990000px;}
.y165{bottom:880.350000px;}
.y18b{bottom:881.250000px;}
.y204{bottom:881.970000px;}
.ya8{bottom:885.570000px;}
.y25a{bottom:885.930000px;}
.y23c{bottom:886.470000px;}
.y27f{bottom:888.090000px;}
.y67{bottom:891.510000px;}
.y1c5{bottom:895.650000px;}
.y29{bottom:896.910000px;}
.y8f{bottom:897.630000px;}
.y164{bottom:898.350000px;}
.y203{bottom:898.890000px;}
.y18a{bottom:901.050000px;}
.ya7{bottom:903.570000px;}
.y258{bottom:905.550000px;}
.y27e{bottom:907.710000px;}
.y66{bottom:909.510000px;}
.y140{bottom:911.310000px;}
.y1c4{bottom:913.830000px;}
.y23b{bottom:914.370000px;}
.y1e7{bottom:914.730000px;}
.y8e{bottom:915.630000px;}
.y202{bottom:915.810000px;}
.y163{bottom:916.350000px;}
.y1a7{bottom:917.070000px;}
.y189{bottom:921.030000px;}
.ya6{bottom:921.570000px;}
.y28{bottom:924.450000px;}
.y254{bottom:925.170000px;}
.y27c{bottom:927.330000px;}
.y65{bottom:927.510000px;}
.y201{bottom:932.730000px;}
.y8d{bottom:933.630000px;}
.y162{bottom:934.350000px;}
.y13e{bottom:935.430000px;}
.y1a6{bottom:937.410000px;}
.ya5{bottom:939.570000px;}
.y188{bottom:940.830000px;}
.y1c3{bottom:941.370000px;}
.y23a{bottom:942.810000px;}
.y64{bottom:945.510000px;}
.y1e6{bottom:945.870000px;}
.y27b{bottom:946.770000px;}
.y8c{bottom:951.630000px;}
.y27{bottom:951.990000px;}
.y161{bottom:952.350000px;}
.y1c2{bottom:955.230000px;}
.ya4{bottom:957.570000px;}
.y1e5{bottom:959.730000px;}
.y187{bottom:960.630000px;}
.y200{bottom:961.170000px;}
.y63{bottom:963.510000px;}
.y13c{bottom:963.870000px;}
.y27a{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.y1c1{bottom:968.910000px;}
.y1e1{bottom:969.630000px;}
.y160{bottom:970.350000px;}
.y239{bottom:970.530000px;}
.y1e4{bottom:973.410000px;}
.y8b{bottom:975.570000px;}
.y252{bottom:976.470000px;}
.y26{bottom:979.710000px;}
.y186{bottom:980.610000px;}
.y62{bottom:981.510000px;}
.y1a4{bottom:986.010000px;}
.y1e3{bottom:987.270000px;}
.y1ff{bottom:987.630000px;}
.y1c0{bottom:987.990000px;}
.y15f{bottom:988.350000px;}
.y138{bottom:992.130000px;}
.y8a{bottom:993.570000px;}
.y238{bottom:998.970000px;}
.y61{bottom:999.510000px;}
.y185{bottom:1000.410000px;}
.y1e2{bottom:1001.130000px;}
.y1fe{bottom:1005.630000px;}
.y15e{bottom:1006.350000px;}
.y89{bottom:1011.570000px;}
.y1a3{bottom:1014.810000px;}
.y107{bottom:1017.510000px;}
.y184{bottom:1020.390000px;}
.y279{bottom:1021.290000px;}
.y60{bottom:1023.630000px;}
.y15d{bottom:1024.350000px;}
.y237{bottom:1026.690000px;}
.y1a2{bottom:1028.670000px;}
.y88{bottom:1029.570000px;}
.y25{bottom:1031.550000px;}
.y183{bottom:1040.190000px;}
.y278{bottom:1040.730000px;}
.y106{bottom:1041.630000px;}
.y15c{bottom:1042.350000px;}
.y1a1{bottom:1042.530000px;}
.y5f{bottom:1047.570000px;}
.y24{bottom:1048.650000px;}
.y137{bottom:1050.270000px;}
.y181{bottom:1060.170000px;}
.y275{bottom:1060.350000px;}
.y5e{bottom:1065.600000px;}
.y23{bottom:1065.960000px;}
.y136{bottom:1066.680000px;}
.y54{bottom:1099.980000px;}
.y53{bottom:1119.960000px;}
.h45{height:13.860000px;}
.h2d{height:15.660000px;}
.h47{height:16.020000px;}
.h51{height:16.056000px;}
.h50{height:16.200000px;}
.h52{height:16.236000px;}
.h44{height:16.740000px;}
.h14{height:17.280000px;}
.h4c{height:18.180000px;}
.h49{height:18.360000px;}
.h5a{height:18.720000px;}
.h5c{height:18.900000px;}
.h5d{height:18.936000px;}
.h39{height:19.080000px;}
.h40{height:19.116000px;}
.h3c{height:19.260000px;}
.h43{height:19.440000px;}
.h46{height:19.476000px;}
.h41{height:19.620000px;}
.h54{height:19.800000px;}
.h55{height:19.836000px;}
.h2e{height:20.880000px;}
.h4e{height:21.780000px;}
.h4f{height:21.816000px;}
.h11{height:21.960000px;}
.h35{height:23.400000px;}
.h37{height:23.436000px;}
.h4b{height:23.976000px;}
.h53{height:25.236000px;}
.h3d{height:25.920000px;}
.h57{height:27.000000px;}
.h59{height:27.036000px;}
.h58{height:27.180000px;}
.h34{height:27.540000px;}
.h31{height:27.720000px;}
.h3f{height:27.756000px;}
.h56{height:28.440000px;}
.h25{height:28.476000px;}
.h2a{height:30.960000px;}
.h2b{height:31.140000px;}
.h7{height:32.130000px;}
.h3e{height:34.307930px;}
.h4a{height:34.380000px;}
.h5e{height:34.560000px;}
.h5f{height:34.920000px;}
.he{height:35.640000px;}
.h38{height:36.486211px;}
.h3b{height:38.459459px;}
.h36{height:38.880000px;}
.h24{height:40.985156px;}
.h30{height:41.400000px;}
.h3a{height:41.580000px;}
.h27{height:42.840000px;}
.h4d{height:43.246406px;}
.h19{height:43.737568px;}
.h23{height:43.920000px;}
.h26{height:44.518359px;}
.h60{height:45.199336px;}
.h6{height:45.900000px;}
.h2c{height:46.620000px;}
.h10{height:47.344922px;}
.h61{height:47.643807px;}
.h42{height:47.678906px;}
.h22{height:47.700000px;}
.h3{height:48.195000px;}
.h33{height:48.240000px;}
.h48{height:48.480196px;}
.h21{height:48.600000px;}
.hf{height:48.616875px;}
.h12{height:50.171484px;}
.h1a{height:50.364141px;}
.h5b{height:50.400000px;}
.hd{height:52.998047px;}
.h15{height:53.573906px;}
.h62{height:53.709961px;}
.h29{height:54.421875px;}
.h2{height:55.080000px;}
.h16{height:55.824609px;}
.h32{height:57.324375px;}
.h18{height:58.621992px;}
.h9{height:58.651172px;}
.h63{height:59.439023px;}
.ha{height:60.226875px;}
.h20{height:60.679688px;}
.h17{height:61.423863px;}
.h1d{height:64.978594px;}
.h1b{height:65.010937px;}
.h1c{height:66.757500px;}
.h28{height:69.156000px;}
.h13{height:70.664062px;}
.h5{height:78.030000px;}
.h1f{height:82.676953px;}
.h2f{height:82.836000px;}
.hc{height:93.983203px;}
.hb{height:96.508125px;}
.h4{height:119.055004px;}
.h1e{height:194.430000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:7.596000px;}
.wa{width:15.156000px;}
.w1e{width:17.316000px;}
.w1a{width:39.780000px;}
.w16{width:46.440000px;}
.w14{width:46.656000px;}
.w21{width:53.100000px;}
.w12{width:53.280000px;}
.w3f{width:53.316000px;}
.w1f{width:54.720000px;}
.w13{width:59.940000px;}
.w20{width:59.976000px;}
.w1b{width:60.300000px;}
.w29{width:62.496000px;}
.w2c{width:64.260000px;}
.w15{width:66.780000px;}
.w1c{width:66.816000px;}
.w28{width:67.320000px;}
.w1d{width:67.500000px;}
.w2a{width:68.400000px;}
.w2b{width:68.796000px;}
.w19{width:73.296000px;}
.w3d{width:73.440000px;}
.w34{width:73.476000px;}
.w32{width:73.620000px;}
.w41{width:73.656000px;}
.w3c{width:77.760000px;}
.w31{width:79.956000px;}
.w38{width:80.100000px;}
.w37{width:80.136000px;}
.w33{width:80.280000px;}
.w17{width:80.316000px;}
.w36{width:86.400000px;}
.w2f{width:86.976000px;}
.w30{width:87.156000px;}
.w2e{width:93.780000px;}
.w42{width:98.856000px;}
.w2d{width:100.296000px;}
.w45{width:100.440000px;}
.wf{width:105.156000px;}
.w40{width:106.956000px;}
.w44{width:113.976000px;}
.w10{width:120.276000px;}
.w11{width:120.456000px;}
.w35{width:120.816000px;}
.wc{width:122.256000px;}
.wd{width:122.436000px;}
.w24{width:122.796000px;}
.w3b{width:122.976000px;}
.we{width:127.116000px;}
.w5{width:130.716000px;}
.w26{width:131.796000px;}
.w6{width:133.200000px;}
.w27{width:133.956000px;}
.w8{width:134.676000px;}
.w25{width:135.000000px;}
.w7{width:141.516000px;}
.w43{width:154.110000px;}
.w3e{width:154.290000px;}
.w39{width:167.430000px;}
.w3a{width:167.970000px;}
.w46{width:241.050000px;}
.w23{width:242.310000px;}
.w22{width:303.015000px;}
.w18{width:519.225000px;}
.wb{width:527.325000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x3c{left:9.360000px;}
.x22{left:10.800000px;}
.x26{left:12.060000px;}
.x42{left:13.320000px;}
.x2d{left:14.400000px;}
.x29{left:16.380000px;}
.x2e{left:17.460000px;}
.x35{left:18.930000px;}
.x44{left:20.520000px;}
.x33{left:21.780000px;}
.x3d{left:23.220000px;}
.x45{left:24.660000px;}
.x4f{left:26.460000px;}
.x51{left:27.900000px;}
.x3f{left:28.980000px;}
.x7e{left:30.600000px;}
.x6c{left:31.860000px;}
.x50{left:33.300000px;}
.x27{left:35.100000px;}
.x5b{left:36.360000px;}
.x2b{left:37.440000px;}
.x59{left:39.780000px;}
.x7f{left:41.220000px;}
.x7a{left:42.300000px;}
.x81{left:45.000000px;}
.x80{left:46.800000px;}
.x76{left:49.320000px;}
.x7c{left:54.900000px;}
.x7b{left:56.700000px;}
.x30{left:60.120000px;}
.x2a{left:63.585000px;}
.x7d{left:77.085000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x23{left:118.845000px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x52{left:217.649986px;}
.xb{left:221.609986px;}
.x53{left:223.230000px;}
.x39{left:226.470000px;}
.x77{left:228.269986px;}
.x25{left:230.610000px;}
.x19{left:243.029986px;}
.x6{left:246.449986px;}
.x31{left:250.769986px;}
.x7{left:254.369986px;}
.x66{left:257.070000px;}
.x65{left:259.229986px;}
.x24{left:260.325000px;}
.x1a{left:270.029986px;}
.x8{left:271.289986px;}
.x46{left:284.610000px;}
.x3a{left:300.495000px;}
.x47{left:302.655000px;}
.x60{left:303.734986px;}
.x61{left:307.335000px;}
.x15{left:308.954986px;}
.x6e{left:311.474986px;}
.x1b{left:314.534986px;}
.x1c{left:322.814986px;}
.x3b{left:340.995000px;}
.x6b{left:345.494986px;}
.x11{left:346.755000px;}
.x16{left:349.094986px;}
.x58{left:354.675000px;}
.x48{left:358.275000px;}
.xa{left:364.754986px;}
.x10{left:367.094986px;}
.x32{left:368.175000px;}
.x67{left:378.795000px;}
.x62{left:381.675000px;}
.xc{left:383.114986px;}
.x1d{left:391.934986px;}
.x18{left:393.014986px;}
.xe{left:394.634986px;}
.x78{left:398.595000px;}
.x1e{left:400.034986px;}
.x49{left:405.435000px;}
.xd{left:406.694986px;}
.x6f{left:408.675000px;}
.x55{left:414.435000px;}
.x34{left:422.175000px;}
.xf{left:431.894986px;}
.x2c{left:433.875000px;}
.x82{left:435.674986px;}
.x83{left:440.174986px;}
.x5a{left:449.175000px;}
.x73{left:453.315000px;}
.x3{left:454.959000px;}
.x3e{left:456.015000px;}
.x4a{left:459.435000px;}
.x63{left:462.675000px;}
.x68{left:466.095000px;}
.x6d{left:472.755000px;}
.x21{left:478.515000px;}
.x13{left:479.955000px;}
.x17{left:482.295000px;}
.x9{left:486.104986px;}
.x70{left:489.705000px;}
.x79{left:513.285000px;}
.x4b{left:520.305000px;}
.x40{left:523.545000px;}
.x74{left:527.685000px;}
.x36{left:530.205000px;}
.x1f{left:533.084986px;}
.x5c{left:536.865000px;}
.x20{left:541.364986px;}
.x56{left:545.865000px;}
.x69{left:547.125000px;}
.x4c{left:574.305000px;}
.x41{left:577.545000px;}
.x71{left:584.205000px;}
.x37{left:597.705000px;}
.x28{left:600.405000px;}
.x75{left:601.845000px;}
.x2f{left:605.085000px;}
.x54{left:614.985000px;}
.x14{left:621.465000px;}
.x6a{left:628.125000px;}
.x5d{left:631.365000px;}
.x4d{left:634.965000px;}
.x38{left:644.865000px;}
.x72{left:665.205000px;}
.x64{left:678.705000px;}
.x57{left:684.690000px;}
.x43{left:692.430000px;}
.x4e{left:702.510000px;}
.x84{left:716.909986px;}
.x5e{left:747.149986px;}
.x5f{left:756.149986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v4{vertical-align:-57.600000pt;}
.v5{vertical-align:-12.160000pt;}
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v6{vertical-align:16.000000pt;}
.ls2a{letter-spacing:-1.120000pt;}
.ls27{letter-spacing:-1.050667pt;}
.lsa{letter-spacing:-0.821333pt;}
.ls1e{letter-spacing:-0.688000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.472533pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.239467pt;}
.ls26{letter-spacing:-0.216533pt;}
.ls25{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.185600pt;}
.ls28{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.172800pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.033280pt;}
.ls1b{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.062720pt;}
.ls10{letter-spacing:0.094720pt;}
.lsd{letter-spacing:0.094933pt;}
.ls1f{letter-spacing:0.128640pt;}
.ls21{letter-spacing:0.158933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.161067pt;}
.lsc{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls29{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.454400pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls18{letter-spacing:1.114880pt;}
.ls16{letter-spacing:1.283840pt;}
.ls15{letter-spacing:1.552000pt;}
.lsf{letter-spacing:3.229440pt;}
.lse{letter-spacing:3.610880pt;}
.ls23{letter-spacing:4.000000pt;}
.ls1c{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:6.890667pt;}
.ls22{letter-spacing:7.200000pt;}
.ls8{letter-spacing:38.992640pt;}
.ls19{letter-spacing:176.000000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.374933pt;}
.ws1c{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws34{word-spacing:-13.096533pt;}
.ws1d{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.ws12{word-spacing:-12.640000pt;}
.ws35{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.686400pt;}
.ws2f{word-spacing:-11.299759pt;}
.ws13{word-spacing:-11.123200pt;}
.ws4{word-spacing:-11.040000pt;}
.ws2a{word-spacing:-10.760320pt;}
.ws3{word-spacing:-10.720000pt;}
.ws31{word-spacing:-10.521067pt;}
.ws30{word-spacing:-10.480533pt;}
.ws5{word-spacing:-10.400000pt;}
.ws2b{word-spacing:-10.080000pt;}
.ws2e{word-spacing:-9.760000pt;}
.ws2d{word-spacing:-9.438933pt;}
.ws2c{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.166400pt;}
.ws14{word-spacing:-7.603200pt;}
.ws32{word-spacing:-6.720000pt;}
.ws33{word-spacing:-6.503467pt;}
.ws10{word-spacing:-0.167040pt;}
.ws29{word-spacing:-0.119040pt;}
.ws0{word-spacing:0.000000pt;}
.ws28{word-spacing:0.305920pt;}
.ws19{word-spacing:0.388480pt;}
.wse{word-spacing:0.472960pt;}
.ws17{word-spacing:0.495147pt;}
.ws26{word-spacing:0.632960pt;}
.ws23{word-spacing:2.748800pt;}
.ws15{word-spacing:2.948480pt;}
.wsc{word-spacing:3.032960pt;}
.ws1e{word-spacing:3.388800pt;}
.ws11{word-spacing:6.592000pt;}
.ws1a{word-spacing:6.981120pt;}
.ws18{word-spacing:7.306240pt;}
.ws16{word-spacing:7.360000pt;}
.wsd{word-spacing:7.499520pt;}
.ws25{word-spacing:7.508480pt;}
.ws1f{word-spacing:7.527680pt;}
.ws22{word-spacing:7.572480pt;}
.ws1b{word-spacing:7.616000pt;}
.ws27{word-spacing:7.872000pt;}
.ws24{word-spacing:8.185600pt;}
.wsf{word-spacing:8.204800pt;}
.ws21{word-spacing:8.311467pt;}
.ws20{word-spacing:8.512000pt;}
._23{margin-left:-175.840000pt;}
._1d{margin-left:-8.932480pt;}
._20{margin-left:-7.124480pt;}
._1c{margin-left:-6.214187pt;}
._21{margin-left:-5.095467pt;}
._14{margin-left:-3.472000pt;}
._7{margin-left:-2.188800pt;}
._1{margin-left:-1.058347pt;}
._0{width:1.009280pt;}
._3{width:2.181547pt;}
._8{width:3.187200pt;}
._b{width:4.302720pt;}
._d{width:5.991467pt;}
._c{width:6.985600pt;}
._13{width:7.977387pt;}
._e{width:8.871040pt;}
._6{width:10.092800pt;}
._5{width:10.995840pt;}
._4{width:12.164480pt;}
._2b{width:13.712000pt;}
._f{width:14.714240pt;}
._10{width:15.776640pt;}
._12{width:16.862080pt;}
._a{width:18.003627pt;}
._9{width:19.282560pt;}
._11{width:20.983040pt;}
._15{width:22.011520pt;}
._19{width:23.646080pt;}
._18{width:24.700800pt;}
._1b{width:26.081920pt;}
._17{width:27.226880pt;}
._16{width:28.153600pt;}
._1a{width:29.184427pt;}
._2d{width:31.818880pt;}
._2c{width:32.881280pt;}
._2e{width:35.039147pt;}
._2a{width:39.320960pt;}
._1f{width:44.616747pt;}
._1e{width:45.523840pt;}
._26{width:51.080320pt;}
._29{width:63.577387pt;}
._27{width:105.270400pt;}
._25{width:113.503360pt;}
._28{width:117.534080pt;}
._24{width:126.816000pt;}
._22{width:176.000000pt;}
._2{width:428.588587pt;}
.fs12{font-size:26.880000pt;}
.fsc{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs11{font-size:45.199037pt;}
.fs9{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:55.992837pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.880000pt;}
.fs13{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.yfe{bottom:-11.200000pt;}
.y105{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:2.080000pt;}
.y111{bottom:2.240000pt;}
.y277{bottom:2.266667pt;}
.y16c{bottom:2.400000pt;}
.y182{bottom:2.426667pt;}
.y1ca{bottom:2.440000pt;}
.y113{bottom:2.560000pt;}
.y119{bottom:2.720000pt;}
.y5d{bottom:2.880000pt;}
.y276{bottom:2.906667pt;}
.y121{bottom:3.040000pt;}
.y101{bottom:3.360000pt;}
.y120{bottom:3.840000pt;}
.y27d{bottom:4.160000pt;}
.y259{bottom:4.320000pt;}
.y124{bottom:4.480000pt;}
.yf2{bottom:4.960000pt;}
.y253{bottom:5.440000pt;}
.yfd{bottom:5.920000pt;}
.y267{bottom:6.560000pt;}
.y25b{bottom:6.720000pt;}
.y26a{bottom:6.746667pt;}
.y25e{bottom:6.760000pt;}
.y1a5{bottom:7.360000pt;}
.yf3{bottom:8.000000pt;}
.y12b{bottom:8.320000pt;}
.y131{bottom:8.480000pt;}
.y3c{bottom:8.960000pt;}
.y3d{bottom:9.440000pt;}
.y115{bottom:9.920000pt;}
.y141{bottom:10.720000pt;}
.yf9{bottom:11.200000pt;}
.y142{bottom:11.520000pt;}
.yf6{bottom:11.840000pt;}
.y145{bottom:12.160000pt;}
.y14c{bottom:12.320000pt;}
.y13a{bottom:12.800000pt;}
.y147{bottom:13.760000pt;}
.y13d{bottom:14.400000pt;}
.y12d{bottom:14.560000pt;}
.y110{bottom:14.600000pt;}
.y16f{bottom:14.720000pt;}
.y177{bottom:14.746667pt;}
.y100{bottom:14.880000pt;}
.y133{bottom:15.200000pt;}
.y13f{bottom:15.360000pt;}
.y39{bottom:15.520000pt;}
.y104{bottom:15.840000pt;}
.y37{bottom:16.320000pt;}
.y117{bottom:16.480000pt;}
.y11e{bottom:16.800000pt;}
.y114{bottom:17.600000pt;}
.y1c8{bottom:18.080000pt;}
.yfc{bottom:18.240000pt;}
.y283{bottom:18.560000pt;}
.y257{bottom:19.840000pt;}
.y12a{bottom:20.640000pt;}
.y3a{bottom:21.600000pt;}
.yf8{bottom:23.520000pt;}
.yf5{bottom:24.160000pt;}
.y144{bottom:24.480000pt;}
.yf1{bottom:24.800000pt;}
.y146{bottom:25.280000pt;}
.y38{bottom:26.720000pt;}
.y134{bottom:26.880000pt;}
.y10f{bottom:26.920000pt;}
.y170{bottom:27.040000pt;}
.y103{bottom:28.000000pt;}
.y255{bottom:30.080000pt;}
.y11c{bottom:30.240000pt;}
.yfb{bottom:30.400000pt;}
.y11d{bottom:31.360000pt;}
.y6{bottom:31.933340pt;}
.y126{bottom:32.960000pt;}
.y256{bottom:33.600000pt;}
.y139{bottom:34.240000pt;}
.y127{bottom:39.040000pt;}
.y10e{bottom:39.080000pt;}
.yf0{bottom:43.200000pt;}
.y129{bottom:45.120000pt;}
.y10c{bottom:50.280000pt;}
.y12c{bottom:51.360000pt;}
.y10d{bottom:51.400000pt;}
.y128{bottom:57.440000pt;}
.y5{bottom:59.133337pt;}
.yef{bottom:62.080000pt;}
.y12e{bottom:63.546667pt;}
.yee{bottom:83.066667pt;}
.y4{bottom:86.333337pt;}
.yed{bottom:101.466667pt;}
.yec{bottom:119.866667pt;}
.y22{bottom:123.790666pt;}
.yeb{bottom:138.266667pt;}
.yea{bottom:156.666667pt;}
.y5b{bottom:166.586667pt;}
.y19{bottom:175.052000pt;}
.y5a{bottom:184.986667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y59{bottom:203.386667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y58{bottom:221.786667pt;}
.y52{bottom:224.346667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y57{bottom:240.186667pt;}
.y51{bottom:240.346667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y50{bottom:256.346667pt;}
.y56{bottom:258.586667pt;}
.y4f{bottom:272.346667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y5c{bottom:276.546667pt;}
.y55{bottom:277.026667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y4e{bottom:288.386667pt;}
.y87{bottom:294.946667pt;}
.y86{bottom:295.426667pt;}
.y109{bottom:296.386667pt;}
.y236{bottom:300.226667pt;}
.yc1{bottom:301.826667pt;}
.y1fd{bottom:303.586667pt;}
.y4d{bottom:304.386667pt;}
.y85{bottom:307.106667pt;}
.y1e0{bottom:308.866667pt;}
.y10{bottom:309.452000pt;}
.y29a{bottom:312.066667pt;}
.y108{bottom:312.386667pt;}
.y1bf{bottom:314.786667pt;}
.yd5{bottom:315.106667pt;}
.y235{bottom:316.226667pt;}
.yc0{bottom:317.826667pt;}
.y180{bottom:319.586667pt;}
.y15b{bottom:319.906667pt;}
.y4c{bottom:320.386667pt;}
.y274{bottom:321.186667pt;}
.y84{bottom:323.106667pt;}
.y1fc{bottom:323.586667pt;}
.y21e{bottom:323.746667pt;}
.y1a0{bottom:323.906667pt;}
.y1df{bottom:324.866667pt;}
.y135{bottom:326.466667pt;}
.y1be{bottom:327.746667pt;}
.y299{bottom:328.066667pt;}
.ya3{bottom:328.386667pt;}
.y234{bottom:329.666667pt;}
.ye8{bottom:330.946667pt;}
.yd4{bottom:331.106667pt;}
.ybf{bottom:333.826667pt;}
.y4b{bottom:336.386667pt;}
.y17f{bottom:337.186667pt;}
.y273{bottom:338.466667pt;}
.y21d{bottom:338.626667pt;}
.y83{bottom:339.106667pt;}
.y132{bottom:339.906667pt;}
.y1bd{bottom:340.706667pt;}
.y1de{bottom:340.866667pt;}
.y251{bottom:342.466667pt;}
.y15a{bottom:343.266667pt;}
.y1fb{bottom:343.746667pt;}
.yf{bottom:343.809333pt;}
.y298{bottom:344.066667pt;}
.ya2{bottom:344.386667pt;}
.yd3{bottom:347.106667pt;}
.y19f{bottom:347.266667pt;}
.y233{bottom:347.906667pt;}
.ybe{bottom:349.826667pt;}
.ye7{bottom:352.226667pt;}
.y4a{bottom:352.386667pt;}
.y21c{bottom:353.666667pt;}
.y17e{bottom:354.786667pt;}
.y82{bottom:355.106667pt;}
.y272{bottom:355.906667pt;}
.y1bc{bottom:356.226667pt;}
.y1dd{bottom:356.866667pt;}
.y250{bottom:358.466667pt;}
.y297{bottom:360.066667pt;}
.ya1{bottom:360.386667pt;}
.ye{bottom:362.706666pt;}
.yd2{bottom:363.106667pt;}
.y1fa{bottom:363.746667pt;}
.ybd{bottom:365.826667pt;}
.y232{bottom:366.306667pt;}
.y159{bottom:366.626667pt;}
.y49{bottom:368.386667pt;}
.y21b{bottom:368.706667pt;}
.y19e{bottom:370.466667pt;}
.y81{bottom:371.106667pt;}
.y17d{bottom:372.546667pt;}
.y1dc{bottom:372.866667pt;}
.y271{bottom:373.346667pt;}
.ye6{bottom:373.666667pt;}
.y24f{bottom:374.466667pt;}
.y296{bottom:376.066667pt;}
.ya0{bottom:376.386667pt;}
.y130{bottom:377.346667pt;}
.yd1{bottom:379.106667pt;}
.y1bb{bottom:381.506667pt;}
.ybc{bottom:381.826667pt;}
.y1f9{bottom:383.746667pt;}
.y48{bottom:384.386667pt;}
.y231{bottom:384.546667pt;}
.y80{bottom:387.106667pt;}
.y1db{bottom:388.866667pt;}
.y158{bottom:389.986667pt;}
.y17c{bottom:390.146667pt;}
.y24e{bottom:390.466667pt;}
.y270{bottom:390.786667pt;}
.y295{bottom:392.066667pt;}
.y9f{bottom:392.386667pt;}
.y19d{bottom:393.826667pt;}
.yd0{bottom:395.106667pt;}
.ybb{bottom:397.826667pt;}
.y21a{bottom:398.626667pt;}
.y1ba{bottom:399.586667pt;}
.y47{bottom:400.386667pt;}
.y12f{bottom:402.626667pt;}
.y230{bottom:402.786667pt;}
.y7f{bottom:403.106667pt;}
.y1da{bottom:404.866667pt;}
.y24d{bottom:406.466667pt;}
.y17b{bottom:407.906667pt;}
.y26f{bottom:408.066667pt;}
.y9e{bottom:408.386667pt;}
.y1f8{bottom:409.026667pt;}
.ye5{bottom:409.346667pt;}
.ycf{bottom:411.106667pt;}
.y157{bottom:413.346667pt;}
.y219{bottom:413.666667pt;}
.yba{bottom:413.826667pt;}
.y46{bottom:416.386667pt;}
.y19c{bottom:417.186667pt;}
.y7e{bottom:419.106667pt;}
.ye4{bottom:419.426667pt;}
.y1d9{bottom:420.866667pt;}
.y22f{bottom:421.026667pt;}
.ye9{bottom:421.826667pt;}
.y24c{bottom:422.466667pt;}
.y294{bottom:424.066667pt;}
.y9d{bottom:424.386667pt;}
.y1b9{bottom:424.706667pt;}
.y26e{bottom:425.506667pt;}
.yce{bottom:427.106667pt;}
.y218{bottom:428.706667pt;}
.y1f7{bottom:429.186667pt;}
.yb9{bottom:429.826667pt;}
.yfa{bottom:431.906667pt;}
.y45{bottom:432.386667pt;}
.y17a{bottom:433.186667pt;}
.y7d{bottom:435.106667pt;}
.y102{bottom:435.426667pt;}
.ye3{bottom:436.386667pt;}
.y156{bottom:436.546667pt;}
.y1d8{bottom:436.866667pt;}
.y24b{bottom:438.466667pt;}
.y22e{bottom:439.266667pt;}
.y125{bottom:440.066667pt;}
.y9c{bottom:440.386667pt;}
.y19b{bottom:440.546667pt;}
.y26d{bottom:442.946667pt;}
.y217{bottom:443.746667pt;}
.yd8{bottom:445.826667pt;}
.yd{bottom:446.990669pt;}
.y44{bottom:448.386667pt;}
.y1f6{bottom:449.186667pt;}
.y179{bottom:450.786667pt;}
.y7c{bottom:451.106667pt;}
.y22d{bottom:452.226667pt;}
.y1d7{bottom:452.866667pt;}
.ye2{bottom:453.186667pt;}
.y24a{bottom:454.466667pt;}
.y293{bottom:456.066667pt;}
.y9b{bottom:456.386667pt;}
.y1b8{bottom:458.466667pt;}
.y216{bottom:458.626667pt;}
.y155{bottom:459.906667pt;}
.y26c{bottom:460.386667pt;}
.yd7{bottom:461.826667pt;}
.yc{bottom:462.990669pt;}
.y19a{bottom:463.906667pt;}
.y43{bottom:464.386667pt;}
.yca{bottom:467.106667pt;}
.y178{bottom:468.386667pt;}
.y1d6{bottom:468.866667pt;}
.ycd{bottom:469.346667pt;}
.ye1{bottom:469.986667pt;}
.y22c{bottom:470.466667pt;}
.y292{bottom:472.066667pt;}
.y7b{bottom:472.386667pt;}
.y215{bottom:473.666667pt;}
.yff{bottom:475.266667pt;}
.y1b7{bottom:476.386667pt;}
.y26b{bottom:477.666667pt;}
.yd6{bottom:477.826667pt;}
.yb{bottom:478.990666pt;}
.y42{bottom:480.386667pt;}
.yc9{bottom:483.106667pt;}
.y154{bottom:483.266667pt;}
.y1d5{bottom:484.866667pt;}
.y176{bottom:486.146667pt;}
.y249{bottom:486.466667pt;}
.ye0{bottom:486.946667pt;}
.y199{bottom:487.266667pt;}
.y291{bottom:488.066667pt;}
.y7a{bottom:488.386667pt;}
.y214{bottom:488.706667pt;}
.y22b{bottom:488.866667pt;}
.y1f5{bottom:489.346667pt;}
.yb8{bottom:493.826667pt;}
.ya{bottom:494.990666pt;}
.y269{bottom:495.106667pt;}
.y41{bottom:496.386667pt;}
.yc8{bottom:499.133333pt;}
.y1d4{bottom:500.893333pt;}
.y1b6{bottom:501.693333pt;}
.y248{bottom:502.493333pt;}
.ydf{bottom:503.773333pt;}
.y290{bottom:504.093333pt;}
.y79{bottom:504.413333pt;}
.y153{bottom:506.653333pt;}
.y22a{bottom:507.133333pt;}
.y198{bottom:508.413333pt;}
.y1f4{bottom:509.373333pt;}
.yb7{bottom:509.853333pt;}
.y175{bottom:511.453333pt;}
.y40{bottom:512.413333pt;}
.y268{bottom:512.573333pt;}
.y123{bottom:514.333333pt;}
.yc7{bottom:515.133333pt;}
.y247{bottom:518.493333pt;}
.y213{bottom:518.653333pt;}
.y1b5{bottom:519.773333pt;}
.y28f{bottom:520.093333pt;}
.y78{bottom:520.413333pt;}
.yde{bottom:520.733333pt;}
.y1d3{bottom:522.333333pt;}
.y229{bottom:525.373333pt;}
.yb6{bottom:525.853333pt;}
.yf4{bottom:526.653333pt;}
.yf7{bottom:527.613333pt;}
.y1f3{bottom:529.533333pt;}
.y152{bottom:530.013333pt;}
.yc6{bottom:531.133333pt;}
.y3f{bottom:533.693333pt;}
.y122{bottom:534.493333pt;}
.y28e{bottom:536.093333pt;}
.y77{bottom:536.413333pt;}
.y174{bottom:536.733333pt;}
.ydd{bottom:537.533333pt;}
.y1b4{bottom:537.853333pt;}
.y11f{bottom:539.613333pt;}
.yb5{bottom:541.853333pt;}
.y228{bottom:543.613333pt;}
.yc5{bottom:547.133333pt;}
.y266{bottom:547.293333pt;}
.y212{bottom:548.733333pt;}
.y3e{bottom:549.373333pt;}
.y1f2{bottom:549.533333pt;}
.y246{bottom:550.493333pt;}
.y197{bottom:551.293333pt;}
.y28d{bottom:552.093333pt;}
.y76{bottom:552.413333pt;}
.y151{bottom:553.213333pt;}
.y11b{bottom:554.173333pt;}
.ydc{bottom:554.333333pt;}
.y1b3{bottom:555.933333pt;}
.yb4{bottom:557.853333pt;}
.y1d2{bottom:559.933333pt;}
.y173{bottom:560.413333pt;}
.y3b{bottom:561.853333pt;}
.yc4{bottom:563.133333pt;}
.y211{bottom:563.773333pt;}
.y265{bottom:564.733333pt;}
.y245{bottom:566.493333pt;}
.y28c{bottom:568.093333pt;}
.y75{bottom:568.413333pt;}
.y1f1{bottom:569.693333pt;}
.ydb{bottom:571.293333pt;}
.y9{bottom:573.786667pt;}
.yb3{bottom:573.853333pt;}
.y1b2{bottom:574.013333pt;}
.y227{bottom:574.813333pt;}
.y150{bottom:576.573333pt;}
.y1d1{bottom:576.893333pt;}
.y172{bottom:578.013333pt;}
.y210{bottom:578.653333pt;}
.yc3{bottom:579.133333pt;}
.y36{bottom:581.373333pt;}
.y264{bottom:582.173333pt;}
.y28b{bottom:584.093333pt;}
.y74{bottom:584.413333pt;}
.y244{bottom:587.933333pt;}
.yda{bottom:588.093333pt;}
.y196{bottom:588.893333pt;}
.y1f0{bottom:589.693333pt;}
.yb2{bottom:589.853333pt;}
.y1b1{bottom:592.093333pt;}
.y8{bottom:592.685334pt;}
.y226{bottom:593.213333pt;}
.y20f{bottom:593.693333pt;}
.yc2{bottom:595.133333pt;}
.y171{bottom:595.773333pt;}
.y11a{bottom:596.253333pt;}
.y263{bottom:599.613333pt;}
.y14f{bottom:599.933333pt;}
.y28a{bottom:600.093333pt;}
.y73{bottom:600.413333pt;}
.y1d0{bottom:602.173333pt;}
.y243{bottom:603.933333pt;}
.yd9{bottom:605.053333pt;}
.yb1{bottom:605.853333pt;}
.y195{bottom:606.653333pt;}
.y20e{bottom:608.733333pt;}
.y1b0{bottom:610.013333pt;}
.ycc{bottom:611.133333pt;}
.y225{bottom:611.453333pt;}
.y16e{bottom:613.373333pt;}
.y1ef{bottom:614.973333pt;}
.y35{bottom:615.933333pt;}
.y289{bottom:616.093333pt;}
.y72{bottom:616.413333pt;}
.y1cf{bottom:619.133333pt;}
.y9a{bottom:621.853333pt;}
.y14e{bottom:623.293333pt;}
.y20d{bottom:623.773333pt;}
.y194{bottom:624.253333pt;}
.y118{bottom:624.413333pt;}
.y242{bottom:625.213333pt;}
.ycb{bottom:627.133333pt;}
.y1af{bottom:628.093333pt;}
.y224{bottom:629.693333pt;}
.y262{bottom:630.813333pt;}
.y34{bottom:631.293333pt;}
.y288{bottom:632.093333pt;}
.y71{bottom:632.413333pt;}
.y1ee{bottom:634.973333pt;}
.y1ce{bottom:635.933333pt;}
.y99{bottom:637.853333pt;}
.y20c{bottom:638.653333pt;}
.y193{bottom:641.853333pt;}
.yb0{bottom:643.133333pt;}
.y7{bottom:645.598667pt;}
.y33{bottom:646.333333pt;}
.y14d{bottom:646.653333pt;}
.y223{bottom:647.933333pt;}
.y287{bottom:648.093333pt;}
.y261{bottom:648.253333pt;}
.y70{bottom:648.413333pt;}
.y16d{bottom:650.973333pt;}
.y116{bottom:652.733333pt;}
.y1cd{bottom:652.893333pt;}
.y20b{bottom:653.693333pt;}
.y98{bottom:653.853333pt;}
.y1ed{bottom:655.133333pt;}
.yaf{bottom:659.133333pt;}
.y192{bottom:659.613333pt;}
.y32{bottom:660.413333pt;}
.y241{bottom:663.453333pt;}
.y286{bottom:664.093333pt;}
.y6f{bottom:664.413333pt;}
.y1ae{bottom:665.693333pt;}
.y222{bottom:666.173333pt;}
.y14b{bottom:667.773333pt;}
.y16b{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y97{bottom:669.853333pt;}
.yae{bottom:675.133333pt;}
.y31{bottom:675.773333pt;}
.y191{bottom:677.213333pt;}
.y20a{bottom:678.973333pt;}
.y285{bottom:680.093333pt;}
.y6e{bottom:680.413333pt;}
.y1ad{bottom:680.573333pt;}
.y112{bottom:681.053333pt;}
.y260{bottom:683.133333pt;}
.y221{bottom:684.413333pt;}
.y96{bottom:685.853333pt;}
.y1cc{bottom:686.813333pt;}
.y240{bottom:688.093333pt;}
.y30{bottom:691.133333pt;}
.y209{bottom:694.013333pt;}
.y190{bottom:694.973333pt;}
.y1ec{bottom:695.293333pt;}
.y6d{bottom:696.413333pt;}
.y25f{bottom:700.413333pt;}
.y284{bottom:701.533333pt;}
.y95{bottom:701.853333pt;}
.y16a{bottom:702.493333pt;}
.y220{bottom:702.813333pt;}
.y14a{bottom:702.973333pt;}
.y1cb{bottom:703.773333pt;}
.y1ac{bottom:705.853333pt;}
.y2f{bottom:706.173333pt;}
.yad{bottom:707.133333pt;}
.y208{bottom:709.053333pt;}
.y10b{bottom:709.213333pt;}
.y6c{bottom:712.413333pt;}
.y18f{bottom:712.573333pt;}
.y23f{bottom:713.373333pt;}
.y1eb{bottom:715.293333pt;}
.y94{bottom:717.853333pt;}
.y169{bottom:718.493333pt;}
.y2e{bottom:720.253333pt;}
.y1c9{bottom:720.733333pt;}
.y282{bottom:723.013333pt;}
.yac{bottom:723.173333pt;}
.y1ab{bottom:723.973333pt;}
.y149{bottom:724.453333pt;}
.y6b{bottom:728.453333pt;}
.y18e{bottom:730.373333pt;}
.y93{bottom:733.893333pt;}
.y21f{bottom:734.213333pt;}
.y168{bottom:734.533333pt;}
.y1ea{bottom:735.333333pt;}
.y2d{bottom:735.653333pt;}
.y23e{bottom:738.053333pt;}
.y207{bottom:739.013333pt;}
.yab{bottom:739.173333pt;}
.y1c7{bottom:742.853333pt;}
.y6a{bottom:744.453333pt;}
.y18d{bottom:747.973333pt;}
.y1aa{bottom:749.093333pt;}
.y148{bottom:749.733333pt;}
.y92{bottom:749.893333pt;}
.y167{bottom:750.533333pt;}
.y2c{bottom:751.013333pt;}
.y25d{bottom:752.773333pt;}
.y206{bottom:754.053333pt;}
.y281{bottom:754.693333pt;}
.yaa{bottom:755.173333pt;}
.y1e9{bottom:755.493333pt;}
.y69{bottom:760.453333pt;}
.y1a9{bottom:762.053333pt;}
.y23d{bottom:762.853333pt;}
.y18c{bottom:765.573333pt;}
.y91{bottom:765.893333pt;}
.y2b{bottom:766.053333pt;}
.y166{bottom:766.533333pt;}
.y205{bottom:769.093333pt;}
.y25c{bottom:770.053333pt;}
.ya9{bottom:771.173333pt;}
.y280{bottom:771.973333pt;}
.y1c6{bottom:774.053333pt;}
.y143{bottom:774.853333pt;}
.y1e8{bottom:775.493333pt;}
.y68{bottom:776.453333pt;}
.y1a8{bottom:777.573333pt;}
.y2a{bottom:780.133333pt;}
.y2{bottom:781.661334pt;}
.y90{bottom:781.893333pt;}
.y10a{bottom:782.213333pt;}
.y165{bottom:782.533333pt;}
.y18b{bottom:783.333333pt;}
.y204{bottom:783.973333pt;}
.ya8{bottom:787.173333pt;}
.y25a{bottom:787.493333pt;}
.y23c{bottom:787.973333pt;}
.y27f{bottom:789.413333pt;}
.y67{bottom:792.453333pt;}
.y1c5{bottom:796.133333pt;}
.y29{bottom:797.253333pt;}
.y8f{bottom:797.893333pt;}
.y164{bottom:798.533333pt;}
.y203{bottom:799.013333pt;}
.y18a{bottom:800.933333pt;}
.ya7{bottom:803.173333pt;}
.y258{bottom:804.933333pt;}
.y27e{bottom:806.853333pt;}
.y66{bottom:808.453333pt;}
.y140{bottom:810.053333pt;}
.y1c4{bottom:812.293333pt;}
.y23b{bottom:812.773333pt;}
.y1e7{bottom:813.093333pt;}
.y8e{bottom:813.893333pt;}
.y202{bottom:814.053333pt;}
.y163{bottom:814.533333pt;}
.y1a7{bottom:815.173333pt;}
.y189{bottom:818.693333pt;}
.ya6{bottom:819.173333pt;}
.y28{bottom:821.733333pt;}
.y254{bottom:822.373333pt;}
.y27c{bottom:824.293333pt;}
.y65{bottom:824.453333pt;}
.y201{bottom:829.093333pt;}
.y8d{bottom:829.893333pt;}
.y162{bottom:830.533333pt;}
.y13e{bottom:831.493333pt;}
.y1a6{bottom:833.253333pt;}
.ya5{bottom:835.173333pt;}
.y188{bottom:836.293333pt;}
.y1c3{bottom:836.773333pt;}
.y23a{bottom:838.053333pt;}
.y64{bottom:840.453333pt;}
.y1e6{bottom:840.773333pt;}
.y27b{bottom:841.573333pt;}
.y8c{bottom:845.893333pt;}
.y27{bottom:846.213333pt;}
.y161{bottom:846.533333pt;}
.y1c2{bottom:849.093333pt;}
.ya4{bottom:851.173333pt;}
.y1e5{bottom:853.093333pt;}
.y187{bottom:853.893333pt;}
.y200{bottom:854.373333pt;}
.y63{bottom:856.453333pt;}
.y13c{bottom:856.773333pt;}
.y27a{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.y1c1{bottom:861.253333pt;}
.y1e1{bottom:861.893333pt;}
.y160{bottom:862.533333pt;}
.y239{bottom:862.693333pt;}
.y1e4{bottom:865.253333pt;}
.y8b{bottom:867.173333pt;}
.y252{bottom:867.973333pt;}
.y26{bottom:870.853333pt;}
.y186{bottom:871.653333pt;}
.y62{bottom:872.453333pt;}
.y1a4{bottom:876.453333pt;}
.y1e3{bottom:877.573333pt;}
.y1ff{bottom:877.893333pt;}
.y1c0{bottom:878.213333pt;}
.y15f{bottom:878.533333pt;}
.y138{bottom:881.893333pt;}
.y8a{bottom:883.173333pt;}
.y238{bottom:887.973333pt;}
.y61{bottom:888.453333pt;}
.y185{bottom:889.253333pt;}
.y1e2{bottom:889.893333pt;}
.y1fe{bottom:893.893333pt;}
.y15e{bottom:894.533333pt;}
.y89{bottom:899.173333pt;}
.y1a3{bottom:902.053333pt;}
.y107{bottom:904.453333pt;}
.y184{bottom:907.013333pt;}
.y279{bottom:907.813333pt;}
.y60{bottom:909.893333pt;}
.y15d{bottom:910.533333pt;}
.y237{bottom:912.613333pt;}
.y1a2{bottom:914.373333pt;}
.y88{bottom:915.173333pt;}
.y25{bottom:916.933333pt;}
.y183{bottom:924.613333pt;}
.y278{bottom:925.093333pt;}
.y106{bottom:925.893333pt;}
.y15c{bottom:926.533333pt;}
.y1a1{bottom:926.693333pt;}
.y5f{bottom:931.173333pt;}
.y24{bottom:932.133333pt;}
.y137{bottom:933.573333pt;}
.y181{bottom:942.373333pt;}
.y275{bottom:942.533333pt;}
.y5e{bottom:947.200000pt;}
.y23{bottom:947.520000pt;}
.y136{bottom:948.160000pt;}
.y54{bottom:977.760000pt;}
.y53{bottom:995.520000pt;}
.h45{height:12.320000pt;}
.h2d{height:13.920000pt;}
.h47{height:14.240000pt;}
.h51{height:14.272000pt;}
.h50{height:14.400000pt;}
.h52{height:14.432000pt;}
.h44{height:14.880000pt;}
.h14{height:15.360000pt;}
.h4c{height:16.160000pt;}
.h49{height:16.320000pt;}
.h5a{height:16.640000pt;}
.h5c{height:16.800000pt;}
.h5d{height:16.832000pt;}
.h39{height:16.960000pt;}
.h40{height:16.992000pt;}
.h3c{height:17.120000pt;}
.h43{height:17.280000pt;}
.h46{height:17.312000pt;}
.h41{height:17.440000pt;}
.h54{height:17.600000pt;}
.h55{height:17.632000pt;}
.h2e{height:18.560000pt;}
.h4e{height:19.360000pt;}
.h4f{height:19.392000pt;}
.h11{height:19.520000pt;}
.h35{height:20.800000pt;}
.h37{height:20.832000pt;}
.h4b{height:21.312000pt;}
.h53{height:22.432000pt;}
.h3d{height:23.040000pt;}
.h57{height:24.000000pt;}
.h59{height:24.032000pt;}
.h58{height:24.160000pt;}
.h34{height:24.480000pt;}
.h31{height:24.640000pt;}
.h3f{height:24.672000pt;}
.h56{height:25.280000pt;}
.h25{height:25.312000pt;}
.h2a{height:27.520000pt;}
.h2b{height:27.680000pt;}
.h7{height:28.560000pt;}
.h3e{height:30.495937pt;}
.h4a{height:30.560000pt;}
.h5e{height:30.720000pt;}
.h5f{height:31.040000pt;}
.he{height:31.680000pt;}
.h38{height:32.432187pt;}
.h3b{height:34.186185pt;}
.h36{height:34.560000pt;}
.h24{height:36.431250pt;}
.h30{height:36.800000pt;}
.h3a{height:36.960000pt;}
.h27{height:38.080000pt;}
.h4d{height:38.441250pt;}
.h19{height:38.877839pt;}
.h23{height:39.040000pt;}
.h26{height:39.571875pt;}
.h60{height:40.177188pt;}
.h6{height:40.800000pt;}
.h2c{height:41.440000pt;}
.h10{height:42.084375pt;}
.h61{height:42.350051pt;}
.h42{height:42.381250pt;}
.h22{height:42.400000pt;}
.h3{height:42.840000pt;}
.h33{height:42.880000pt;}
.h48{height:43.093508pt;}
.h21{height:43.200000pt;}
.hf{height:43.215000pt;}
.h12{height:44.596875pt;}
.h1a{height:44.768125pt;}
.h5b{height:44.800000pt;}
.hd{height:47.109375pt;}
.h15{height:47.621250pt;}
.h62{height:47.742188pt;}
.h29{height:48.375000pt;}
.h2{height:48.960000pt;}
.h16{height:49.621875pt;}
.h32{height:50.955000pt;}
.h18{height:52.108438pt;}
.h9{height:52.134375pt;}
.h63{height:52.834688pt;}
.ha{height:53.535000pt;}
.h20{height:53.937500pt;}
.h17{height:54.598989pt;}
.h1d{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1c{height:59.340000pt;}
.h28{height:61.472000pt;}
.h13{height:62.812500pt;}
.h5{height:69.360000pt;}
.h1f{height:73.490625pt;}
.h2f{height:73.632000pt;}
.hc{height:83.540625pt;}
.hb{height:85.785000pt;}
.h4{height:105.826671pt;}
.h1e{height:172.826667pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:6.752000pt;}
.wa{width:13.472000pt;}
.w1e{width:15.392000pt;}
.w1a{width:35.360000pt;}
.w16{width:41.280000pt;}
.w14{width:41.472000pt;}
.w21{width:47.200000pt;}
.w12{width:47.360000pt;}
.w3f{width:47.392000pt;}
.w1f{width:48.640000pt;}
.w13{width:53.280000pt;}
.w20{width:53.312000pt;}
.w1b{width:53.600000pt;}
.w29{width:55.552000pt;}
.w2c{width:57.120000pt;}
.w15{width:59.360000pt;}
.w1c{width:59.392000pt;}
.w28{width:59.840000pt;}
.w1d{width:60.000000pt;}
.w2a{width:60.800000pt;}
.w2b{width:61.152000pt;}
.w19{width:65.152000pt;}
.w3d{width:65.280000pt;}
.w34{width:65.312000pt;}
.w32{width:65.440000pt;}
.w41{width:65.472000pt;}
.w3c{width:69.120000pt;}
.w31{width:71.072000pt;}
.w38{width:71.200000pt;}
.w37{width:71.232000pt;}
.w33{width:71.360000pt;}
.w17{width:71.392000pt;}
.w36{width:76.800000pt;}
.w2f{width:77.312000pt;}
.w30{width:77.472000pt;}
.w2e{width:83.360000pt;}
.w42{width:87.872000pt;}
.w2d{width:89.152000pt;}
.w45{width:89.280000pt;}
.wf{width:93.472000pt;}
.w40{width:95.072000pt;}
.w44{width:101.312000pt;}
.w10{width:106.912000pt;}
.w11{width:107.072000pt;}
.w35{width:107.392000pt;}
.wc{width:108.672000pt;}
.wd{width:108.832000pt;}
.w24{width:109.152000pt;}
.w3b{width:109.312000pt;}
.we{width:112.992000pt;}
.w5{width:116.192000pt;}
.w26{width:117.152000pt;}
.w6{width:118.400000pt;}
.w27{width:119.072000pt;}
.w8{width:119.712000pt;}
.w25{width:120.000000pt;}
.w7{width:125.792000pt;}
.w43{width:136.986667pt;}
.w3e{width:137.146667pt;}
.w39{width:148.826667pt;}
.w3a{width:149.306667pt;}
.w46{width:214.266667pt;}
.w23{width:215.386667pt;}
.w22{width:269.346667pt;}
.w18{width:461.533333pt;}
.wb{width:468.733333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x3c{left:8.320000pt;}
.x22{left:9.600000pt;}
.x26{left:10.720000pt;}
.x42{left:11.840000pt;}
.x2d{left:12.800000pt;}
.x29{left:14.560000pt;}
.x2e{left:15.520000pt;}
.x35{left:16.826667pt;}
.x44{left:18.240000pt;}
.x33{left:19.360000pt;}
.x3d{left:20.640000pt;}
.x45{left:21.920000pt;}
.x4f{left:23.520000pt;}
.x51{left:24.800000pt;}
.x3f{left:25.760000pt;}
.x7e{left:27.200000pt;}
.x6c{left:28.320000pt;}
.x50{left:29.600000pt;}
.x27{left:31.200000pt;}
.x5b{left:32.320000pt;}
.x2b{left:33.280000pt;}
.x59{left:35.360000pt;}
.x7f{left:36.640000pt;}
.x7a{left:37.600000pt;}
.x81{left:40.000000pt;}
.x80{left:41.600000pt;}
.x76{left:43.840000pt;}
.x7c{left:48.800000pt;}
.x7b{left:50.400000pt;}
.x30{left:53.440000pt;}
.x2a{left:56.520000pt;}
.x7d{left:68.520000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x23{left:105.640000pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x52{left:193.466655pt;}
.xb{left:196.986655pt;}
.x53{left:198.426667pt;}
.x39{left:201.306667pt;}
.x77{left:202.906655pt;}
.x25{left:204.986667pt;}
.x19{left:216.026655pt;}
.x6{left:219.066655pt;}
.x31{left:222.906655pt;}
.x7{left:226.106655pt;}
.x66{left:228.506667pt;}
.x65{left:230.426655pt;}
.x24{left:231.400000pt;}
.x1a{left:240.026655pt;}
.x8{left:241.146655pt;}
.x46{left:252.986667pt;}
.x3a{left:267.106667pt;}
.x47{left:269.026667pt;}
.x60{left:269.986655pt;}
.x61{left:273.186667pt;}
.x15{left:274.626655pt;}
.x6e{left:276.866655pt;}
.x1b{left:279.586655pt;}
.x1c{left:286.946655pt;}
.x3b{left:303.106667pt;}
.x6b{left:307.106655pt;}
.x11{left:308.226667pt;}
.x16{left:310.306655pt;}
.x58{left:315.266667pt;}
.x48{left:318.466667pt;}
.xa{left:324.226655pt;}
.x10{left:326.306655pt;}
.x32{left:327.266667pt;}
.x67{left:336.706667pt;}
.x62{left:339.266667pt;}
.xc{left:340.546655pt;}
.x1d{left:348.386655pt;}
.x18{left:349.346655pt;}
.xe{left:350.786655pt;}
.x78{left:354.306667pt;}
.x1e{left:355.586655pt;}
.x49{left:360.386667pt;}
.xd{left:361.506655pt;}
.x6f{left:363.266667pt;}
.x55{left:368.386667pt;}
.x34{left:375.266667pt;}
.xf{left:383.906655pt;}
.x2c{left:385.666667pt;}
.x82{left:387.266655pt;}
.x83{left:391.266655pt;}
.x5a{left:399.266667pt;}
.x73{left:402.946667pt;}
.x3{left:404.408000pt;}
.x3e{left:405.346667pt;}
.x4a{left:408.386667pt;}
.x63{left:411.266667pt;}
.x68{left:414.306667pt;}
.x6d{left:420.226667pt;}
.x21{left:425.346667pt;}
.x13{left:426.626667pt;}
.x17{left:428.706667pt;}
.x9{left:432.093321pt;}
.x70{left:435.293333pt;}
.x79{left:456.253333pt;}
.x4b{left:462.493333pt;}
.x40{left:465.373333pt;}
.x74{left:469.053333pt;}
.x36{left:471.293333pt;}
.x1f{left:473.853321pt;}
.x5c{left:477.213333pt;}
.x20{left:481.213321pt;}
.x56{left:485.213333pt;}
.x69{left:486.333333pt;}
.x4c{left:510.493333pt;}
.x41{left:513.373333pt;}
.x71{left:519.293333pt;}
.x37{left:531.293333pt;}
.x28{left:533.693333pt;}
.x75{left:534.973333pt;}
.x2f{left:537.853333pt;}
.x54{left:546.653333pt;}
.x14{left:552.413333pt;}
.x6a{left:558.333333pt;}
.x5d{left:561.213333pt;}
.x4d{left:564.413333pt;}
.x38{left:573.213333pt;}
.x72{left:591.293333pt;}
.x64{left:603.293333pt;}
.x57{left:608.613333pt;}
.x43{left:615.493333pt;}
.x4e{left:624.453333pt;}
.x84{left:637.253321pt;}
.x5e{left:664.133321pt;}
.x5f{left:672.133321pt;}
}




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