
    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_a91e431a96057b3d34a56faa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_569e4ba7c162e4bcc725b6da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_7bc6d633a6e7fd6c0302743a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b929da85e08f3356d21c1e7e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_2c632d13539200fa7a31bbcf.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aa4e438c1b4eae5465b18c15.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.823730;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_73015969525f43c0bfe8a98a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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_7eedcb1ac6ddb51a7fe506b3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4e4127e169c9f7a8b8e3c390.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e256407d26523da8233729c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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_5fe81f52441e35147cd57389.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a4a877773a58a3354ca12028.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e82ba8468a6aecf480500207.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_69b19bdf83fd5bd2ae466aca.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.095703;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);}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.774000px;}
.ls11{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.540000px;}
.ls21{letter-spacing:-0.513600px;}
.ls20{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.303600px;}
.ls8{letter-spacing:-0.226200px;}
.ls14{letter-spacing:-0.206400px;}
.ls24{letter-spacing:-0.100200px;}
.lse{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.045360px;}
.ls26{letter-spacing:-0.008640px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.054720px;}
.ls4{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.128880px;}
.ls22{letter-spacing:0.135600px;}
.ls5{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.234720px;}
.lsd{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.466800px;}
.ls1b{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.666000px;}
.ls27{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.188000px;}
.ls28{letter-spacing:2.340000px;}
.ls16{letter-spacing:7.866720px;}
.ls17{letter-spacing:8.586720px;}
.ls15{letter-spacing:13.626720px;}
.ls1e{letter-spacing:26.640000px;}
.ls18{letter-spacing:26.959680px;}
.ls1d{letter-spacing:28.800000px;}
.ls2{letter-spacing:61.920000px;}
.lsc{letter-spacing:1500.834720px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws1{word-spacing:-31.105680px;}
.ws10{word-spacing:-16.128000px;}
.ws1a{word-spacing:-16.020000px;}
.wsb{word-spacing:-15.606000px;}
.ws18{word-spacing:-15.406800px;}
.ws6{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.238800px;}
.wse{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.839800px;}
.ws3{word-spacing:-14.780880px;}
.wsd{word-spacing:-14.733600px;}
.ws8{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.426400px;}
.ws9{word-spacing:-14.328000px;}
.ws7{word-spacing:-14.166000px;}
.ws13{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.734480px;}
.ws11{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws19{word-spacing:-9.711360px;}
.ws0{word-spacing:0.000000px;}
._14{margin-left:-2.428080px;}
._2{margin-left:-1.179360px;}
._0{width:1.203360px;}
._5{width:2.333760px;}
._4{width:3.525840px;}
._8{width:5.438160px;}
._13{width:6.812400px;}
._e{width:8.007840px;}
._b{width:9.023760px;}
._a{width:10.458000px;}
._9{width:12.430080px;}
._f{width:13.481280px;}
._12{width:16.127040px;}
._18{width:17.301840px;}
._1b{width:19.242720px;}
._16{width:21.200160px;}
._d{width:22.435200px;}
._17{width:23.473920px;}
._c{width:24.501600px;}
._1c{width:25.568640px;}
._19{width:26.768880px;}
._1a{width:28.131360px;}
._6{width:29.222640px;}
._7{width:30.716640px;}
._21{width:31.938960px;}
._10{width:33.166800px;}
._11{width:34.700880px;}
._22{width:36.130800px;}
._23{width:37.170720px;}
._15{width:40.142640px;}
._1d{width:42.062880px;}
._1e{width:43.535280px;}
._28{width:44.580960px;}
._27{width:45.955440px;}
._30{width:47.082960px;}
._2c{width:48.286080px;}
._20{width:51.333840px;}
._24{width:53.007120px;}
._26{width:55.517040px;}
._2d{width:56.532960px;}
._35{width:58.086720px;}
._3{width:62.391360px;}
._25{width:64.398000px;}
._1f{width:67.289760px;}
._31{width:76.014720px;}
._33{width:78.166080px;}
._34{width:79.244400px;}
._2b{width:92.285040px;}
._32{width:96.811200px;}
._29{width:98.006400px;}
._2a{width:99.046560px;}
._2f{width:140.017680px;}
._2e{width:141.487680px;}
._1{width:1620.355440px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,111,192);}
.fc4{color:rgb(29,34,40);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.045000px;}
.y1c4{bottom:3.240000px;}
.y1cb{bottom:3.405000px;}
.y38{bottom:3.420000px;}
.y209{bottom:3.585000px;}
.y26{bottom:3.600000px;}
.y1cc{bottom:3.765000px;}
.y1c8{bottom:3.780000px;}
.y103{bottom:5.580000px;}
.y1c1{bottom:6.300000px;}
.y57{bottom:6.825000px;}
.y15a{bottom:8.820000px;}
.y157{bottom:9.540000px;}
.y5d{bottom:10.980000px;}
.y5e{bottom:11.520000px;}
.y125{bottom:12.060000px;}
.y24{bottom:14.040000px;}
.y1bf{bottom:14.940000px;}
.y59{bottom:16.905000px;}
.y1d7{bottom:19.260000px;}
.y1da{bottom:19.620000px;}
.y1c3{bottom:20.520000px;}
.y1ca{bottom:20.685000px;}
.y1c7{bottom:20.700000px;}
.y208{bottom:20.865000px;}
.y25{bottom:20.880000px;}
.y206{bottom:21.060000px;}
.y1dc{bottom:22.140000px;}
.y1c0{bottom:23.580000px;}
.y102{bottom:25.740000px;}
.y156{bottom:27.360000px;}
.y159{bottom:28.980000px;}
.y124{bottom:29.700000px;}
.y37{bottom:29.925000px;}
.y58{bottom:30.585000px;}
.y1d0{bottom:35.445000px;}
.y1d6{bottom:37.080000px;}
.y1c6{bottom:37.800000px;}
.y155{bottom:44.640000px;}
.y123{bottom:46.980000px;}
.y36{bottom:47.205000px;}
.y1d5{bottom:54.360000px;}
.y154{bottom:61.920000px;}
.y122{bottom:64.080000px;}
.y35{bottom:64.485000px;}
.y5{bottom:66.525004px;}
.y1d4{bottom:71.460000px;}
.y1d9{bottom:71.640000px;}
.y1dd{bottom:73.800000px;}
.y1d2{bottom:75.045000px;}
.y153{bottom:79.200000px;}
.y121{bottom:81.360000px;}
.y34{bottom:81.765000px;}
.y152{bottom:96.300000px;}
.y4{bottom:97.125005px;}
.y120{bottom:98.640000px;}
.y33{bottom:98.685000px;}
.y1d1{bottom:106.410000px;}
.y151{bottom:113.580000px;}
.y11f{bottom:115.920000px;}
.y32{bottom:116.325000px;}
.y150{bottom:130.860000px;}
.y11e{bottom:133.200000px;}
.y22{bottom:139.264499px;}
.y14f{bottom:148.140000px;}
.y11d{bottom:150.480000px;}
.y14e{bottom:165.450000px;}
.y11c{bottom:167.580000px;}
.y14d{bottom:182.730000px;}
.y11b{bottom:184.860000px;}
.y19{bottom:196.933500px;}
.y14c{bottom:199.830000px;}
.y15c{bottom:201.270000px;}
.y11a{bottom:202.140000px;}
.y127{bottom:208.110000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y15d{bottom:215.490000px;}
.y14b{bottom:217.110000px;}
.y119{bottom:219.450000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y129{bottom:227.190000px;}
.y14a{bottom:234.390000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y118{bottom:236.730000px;}
.y149{bottom:251.670000px;}
.y117{bottom:253.830000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y148{bottom:268.950000px;}
.y116{bottom:271.110000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y28{bottom:278.310000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y147{bottom:286.230000px;}
.y115{bottom:288.390000px;}
.y146{bottom:303.330000px;}
.y114{bottom:305.670000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y145{bottom:320.610000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y113{bottom:322.950000px;}
.y219{bottom:323.490000px;}
.y5b{bottom:325.830000px;}
.y23c{bottom:326.550000px;}
.y2cf{bottom:330.150000px;}
.y1a9{bottom:331.230000px;}
.yb7{bottom:333.750000px;}
.y201{bottom:335.010000px;}
.y185{bottom:335.190000px;}
.y144{bottom:337.890000px;}
.y27f{bottom:339.150000px;}
.y56{bottom:339.345000px;}
.y112{bottom:340.230000px;}
.y218{bottom:340.770000px;}
.y23b{bottom:343.650000px;}
.y29b{bottom:344.910000px;}
.y1ce{bottom:347.430000px;}
.y10{bottom:348.133500px;}
.y1a8{bottom:348.510000px;}
.y89{bottom:349.770000px;}
.yda{bottom:350.490000px;}
.yb6{bottom:351.030000px;}
.y184{bottom:352.290000px;}
.y143{bottom:355.170000px;}
.y27e{bottom:356.430000px;}
.y111{bottom:357.330000px;}
.y217{bottom:358.050000px;}
.y23a{bottom:360.930000px;}
.y29a{bottom:362.190000px;}
.y2ce{bottom:364.710000px;}
.y1a7{bottom:365.790000px;}
.y2bb{bottom:366.690000px;}
.y88{bottom:367.050000px;}
.yd9{bottom:367.770000px;}
.yb5{bottom:368.310000px;}
.y183{bottom:369.570000px;}
.y25f{bottom:370.470000px;}
.y1cd{bottom:371.910000px;}
.y142{bottom:372.450000px;}
.y110{bottom:374.610000px;}
.y216{bottom:375.330000px;}
.y200{bottom:378.030000px;}
.y239{bottom:378.210000px;}
.y299{bottom:379.470000px;}
.y1a6{bottom:383.070000px;}
.y2ba{bottom:383.970000px;}
.y87{bottom:384.150000px;}
.y55{bottom:384.510000px;}
.y1c9{bottom:384.885000px;}
.yd8{bottom:385.050000px;}
.yb4{bottom:385.410000px;}
.y2cd{bottom:386.490000px;}
.yf{bottom:386.785499px;}
.y182{bottom:386.850000px;}
.y25e{bottom:387.750000px;}
.y141{bottom:389.550000px;}
.y54{bottom:389.730000px;}
.y138{bottom:391.350000px;}
.y10f{bottom:391.890000px;}
.y238{bottom:395.490000px;}
.y1a5{bottom:400.350000px;}
.y298{bottom:401.250000px;}
.y86{bottom:401.430000px;}
.y215{bottom:401.610000px;}
.y53{bottom:402.510000px;}
.y2cc{bottom:403.770000px;}
.y25d{bottom:405.030000px;}
.y2b9{bottom:405.750000px;}
.y140{bottom:406.875000px;}
.ye{bottom:408.044999px;}
.y137{bottom:408.630000px;}
.y10e{bottom:409.170000px;}
.yd7{bottom:411.195000px;}
.yb3{bottom:411.735000px;}
.y237{bottom:412.815000px;}
.y181{bottom:413.175000px;}
.y100{bottom:415.695000px;}
.y1a4{bottom:417.495000px;}
.y1ff{bottom:418.215000px;}
.y297{bottom:418.575000px;}
.y85{bottom:418.755000px;}
.y133{bottom:420.015000px;}
.y1c5{bottom:420.195000px;}
.y2cb{bottom:421.095000px;}
.y52{bottom:422.535000px;}
.y2b8{bottom:423.075000px;}
.y13f{bottom:424.155000px;}
.y10d{bottom:426.450000px;}
.y25c{bottom:426.855000px;}
.yd6{bottom:428.475000px;}
.yb2{bottom:429.015000px;}
.y236{bottom:430.095000px;}
.y180{bottom:430.455000px;}
.y1fe{bottom:433.695000px;}
.y27d{bottom:434.595000px;}
.y136{bottom:434.775000px;}
.y296{bottom:435.855000px;}
.y84{bottom:436.035000px;}
.y132{bottom:437.295000px;}
.y128{bottom:438.015000px;}
.y2ca{bottom:438.195000px;}
.yff{bottom:438.735000px;}
.y51{bottom:439.815000px;}
.y2b7{bottom:440.355000px;}
.y13e{bottom:441.435000px;}
.y10c{bottom:443.730000px;}
.y25b{bottom:443.955000px;}
.y104{bottom:445.935000px;}
.yb1{bottom:446.295000px;}
.y235{bottom:447.195000px;}
.y17f{bottom:447.555000px;}
.y126{bottom:447.915000px;}
.y27c{bottom:451.695000px;}
.y1a3{bottom:452.055000px;}
.y83{bottom:453.315000px;}
.y131{bottom:454.575000px;}
.yd5{bottom:454.755000px;}
.y2c9{bottom:455.475000px;}
.y50{bottom:457.095000px;}
.y295{bottom:457.455000px;}
.y1fd{bottom:458.175000px;}
.y13d{bottom:458.715000px;}
.y135{bottom:460.695000px;}
.y10b{bottom:460.875000px;}
.yfe{bottom:462.855000px;}
.y234{bottom:464.475000px;}
.y17e{bottom:464.835000px;}
.y1a2{bottom:469.335000px;}
.y25a{bottom:469.875000px;}
.y82{bottom:470.595000px;}
.y130{bottom:471.855000px;}
.yd4{bottom:472.035000px;}
.yb0{bottom:472.575000px;}
.y1c2{bottom:472.755000px;}
.y27b{bottom:473.475000px;}
.y1fc{bottom:473.655000px;}
.y4f{bottom:474.195000px;}
.y294{bottom:474.735000px;}
.y13c{bottom:475.995000px;}
.y10a{bottom:478.155000px;}
.y15b{bottom:479.235000px;}
.y233{bottom:481.755000px;}
.y17d{bottom:482.115000px;}
.y134{bottom:483.735000px;}
.yd{bottom:484.864502px;}
.y2ac{bottom:486.255000px;}
.y1a1{bottom:486.615000px;}
.y81{bottom:487.695000px;}
.y214{bottom:487.875000px;}
.yfd{bottom:488.955000px;}
.yd3{bottom:489.315000px;}
.yaf{bottom:489.855000px;}
.y27a{bottom:490.755000px;}
.y4e{bottom:491.475000px;}
.y293{bottom:492.015000px;}
.y13b{bottom:493.095000px;}
.y2c8{bottom:494.535000px;}
.y109{bottom:495.435000px;}
.y139{bottom:495.975000px;}
.y259{bottom:496.155000px;}
.y2b6{bottom:496.515000px;}
.y232{bottom:499.035000px;}
.y17c{bottom:499.395000px;}
.yc{bottom:502.864502px;}
.y2ab{bottom:503.535000px;}
.y80{bottom:504.975000px;}
.y213{bottom:505.155000px;}
.yfc{bottom:506.235000px;}
.yd2{bottom:506.595000px;}
.yae{bottom:506.955000px;}
.y1be{bottom:507.855000px;}
.y279{bottom:508.035000px;}
.y4d{bottom:508.755000px;}
.y13a{bottom:510.375000px;}
.y108{bottom:512.715000px;}
.y1a0{bottom:512.895000px;}
.y1fb{bottom:513.795000px;}
.y231{bottom:516.315000px;}
.y17b{bottom:516.675000px;}
.y2aa{bottom:520.815000px;}
.yb{bottom:520.864502px;}
.y7f{bottom:522.255000px;}
.y258{bottom:522.795000px;}
.yfb{bottom:523.515000px;}
.yd1{bottom:523.695000px;}
.yad{bottom:524.235000px;}
.y278{bottom:525.315000px;}
.y4c{bottom:526.035000px;}
.y1fa{bottom:526.755000px;}
.y107{bottom:529.995000px;}
.y292{bottom:531.075000px;}
.y230{bottom:533.595000px;}
.y17a{bottom:533.955000px;}
.ya{bottom:538.864499px;}
.y7e{bottom:539.535000px;}
.y257{bottom:540.075000px;}
.yfa{bottom:540.795000px;}
.yd0{bottom:540.975000px;}
.yac{bottom:541.515000px;}
.y277{bottom:542.595000px;}
.y4b{bottom:543.315000px;}
.y106{bottom:547.275000px;}
.y291{bottom:548.355000px;}
.y22f{bottom:550.695000px;}
.y179{bottom:551.055000px;}
.y1bd{bottom:552.315000px;}
.y7d{bottom:556.815000px;}
.y9{bottom:556.864499px;}
.y256{bottom:557.355000px;}
.yf9{bottom:558.075000px;}
.ycf{bottom:558.255000px;}
.yab{bottom:558.795000px;}
.y2a9{bottom:559.695000px;}
.y4a{bottom:560.595000px;}
.y1f9{bottom:562.035000px;}
.y276{bottom:564.195000px;}
.y105{bottom:564.375000px;}
.y19f{bottom:564.555000px;}
.y2b5{bottom:565.455000px;}
.y2c7{bottom:567.975000px;}
.y290{bottom:569.955000px;}
.y7c{bottom:574.095000px;}
.y255{bottom:574.455000px;}
.yf8{bottom:575.355000px;}
.yce{bottom:575.535000px;}
.yaa{bottom:576.075000px;}
.y22e{bottom:576.975000px;}
.y178{bottom:577.335000px;}
.y49{bottom:577.695000px;}
.y1bc{bottom:578.955000px;}
.y1f8{bottom:580.035000px;}
.y275{bottom:581.475000px;}
.y19e{bottom:581.835000px;}
.y28f{bottom:587.235000px;}
.y2c6{bottom:589.755000px;}
.y7b{bottom:591.195000px;}
.y212{bottom:591.375000px;}
.y254{bottom:591.735000px;}
.yf7{bottom:592.455000px;}
.ycd{bottom:592.815000px;}
.ya9{bottom:593.355000px;}
.y22d{bottom:594.255000px;}
.y177{bottom:594.615000px;}
.y48{bottom:594.975000px;}
.y1bb{bottom:596.235000px;}
.y274{bottom:598.755000px;}
.y12f{bottom:601.455000px;}
.y28e{bottom:604.515000px;}
.y2c5{bottom:607.035000px;}
.y19d{bottom:608.115000px;}
.y7a{bottom:608.475000px;}
.y253{bottom:609.015000px;}
.ycc{bottom:609.915000px;}
.ya8{bottom:610.455000px;}
.y22c{bottom:611.535000px;}
.y176{bottom:611.895000px;}
.y47{bottom:612.255000px;}
.y1ba{bottom:613.515000px;}
.y1f7{bottom:615.315000px;}
.y2a8{bottom:616.035000px;}
.y211{bottom:617.115000px;}
.yf6{bottom:618.735000px;}
.y273{bottom:620.535000px;}
.y2b4{bottom:621.795000px;}
.y2c4{bottom:624.315000px;}
.y19c{bottom:625.215000px;}
.y79{bottom:625.755000px;}
.y252{bottom:626.295000px;}
.ya7{bottom:627.735000px;}
.y22b{bottom:628.815000px;}
.y175{bottom:629.175000px;}
.y46{bottom:629.535000px;}
.yf5{bottom:636.015000px;}
.ycb{bottom:636.195000px;}
.y272{bottom:637.815000px;}
.y1b9{bottom:639.435000px;}
.y2c3{bottom:641.415000px;}
.y210{bottom:641.595000px;}
.y19b{bottom:642.495000px;}
.y78{bottom:643.035000px;}
.y251{bottom:643.575000px;}
.ya6{bottom:645.015000px;}
.y8{bottom:645.510000px;}
.y22a{bottom:645.915000px;}
.y45{bottom:646.815000px;}
.y1f6{bottom:650.415000px;}
.yf4{bottom:653.295000px;}
.yca{bottom:653.475000px;}
.y2a7{bottom:654.945000px;}
.y174{bottom:656.565000px;}
.y20f{bottom:657.105000px;}
.y271{bottom:659.445000px;}
.y19a{bottom:659.805000px;}
.y250{bottom:660.705000px;}
.ya5{bottom:662.325000px;}
.y229{bottom:663.225000px;}
.y44{bottom:664.125000px;}
.y1b8{bottom:666.105000px;}
.y7{bottom:666.771000px;}
.y1f5{bottom:668.445000px;}
.y77{bottom:669.345000px;}
.yf3{bottom:670.605000px;}
.yc9{bottom:670.785000px;}
.y2a6{bottom:672.225000px;}
.y20e{bottom:672.765000px;}
.y173{bottom:673.665000px;}
.y270{bottom:676.725000px;}
.y199{bottom:677.085000px;}
.y24f{bottom:677.985000px;}
.ya4{bottom:679.605000px;}
.y2c2{bottom:680.505000px;}
.y43{bottom:681.225000px;}
.y76{bottom:686.445000px;}
.yf2{bottom:687.705000px;}
.yc8{bottom:688.065000px;}
.y228{bottom:689.505000px;}
.y172{bottom:690.945000px;}
.y1b7{bottom:692.205000px;}
.y26f{bottom:694.005000px;}
.y24e{bottom:695.265000px;}
.ya3{bottom:696.705000px;}
.y20d{bottom:697.245000px;}
.y42{bottom:698.505000px;}
.y1f4{bottom:698.865000px;}
.y28d{bottom:699.765000px;}
.y2c1{bottom:702.285000px;}
.y75{bottom:703.725000px;}
.y198{bottom:704.085000px;}
.yf1{bottom:704.985000px;}
.y227{bottom:706.785000px;}
.y171{bottom:708.225000px;}
.y2d7{bottom:708.765000px;}
.y1b6{bottom:709.485000px;}
.y26e{bottom:711.285000px;}
.y20c{bottom:712.725000px;}
.ya2{bottom:713.985000px;}
.y41{bottom:715.785000px;}
.y28c{bottom:717.045000px;}
.y2c0{bottom:719.565000px;}
.y24d{bottom:721.545000px;}
.yf0{bottom:722.265000px;}
.y226{bottom:724.065000px;}
.y170{bottom:725.505000px;}
.y2d6{bottom:726.045000px;}
.y6{bottom:726.298500px;}
.y1b5{bottom:726.765000px;}
.y20b{bottom:728.205000px;}
.y2a5{bottom:728.565000px;}
.y74{bottom:730.005000px;}
.ya1{bottom:731.265000px;}
.y40{bottom:733.065000px;}
.y24c{bottom:738.825000px;}
.yef{bottom:739.545000px;}
.yc7{bottom:740.085000px;}
.y225{bottom:741.345000px;}
.y1f3{bottom:742.785000px;}
.y2d5{bottom:743.325000px;}
.y1b4{bottom:744.045000px;}
.y2a4{bottom:745.845000px;}
.y73{bottom:747.285000px;}
.ya0{bottom:748.545000px;}
.y3f{bottom:750.345000px;}
.y3{bottom:752.599495px;}
.y16f{bottom:752.865000px;}
.y24b{bottom:756.105000px;}
.yee{bottom:756.825000px;}
.y224{bottom:758.445000px;}
.y197{bottom:759.345000px;}
.y1f2{bottom:760.065000px;}
.y2d4{bottom:760.605000px;}
.y72{bottom:764.565000px;}
.y12e{bottom:765.465000px;}
.y9f{bottom:765.825000px;}
.yc6{bottom:766.725000px;}
.y26d{bottom:767.445000px;}
.y3e{bottom:767.625000px;}
.y16e{bottom:769.965000px;}
.y24a{bottom:773.205000px;}
.yed{bottom:774.105000px;}
.y223{bottom:775.725000px;}
.y196{bottom:776.445000px;}
.y1f1{bottom:777.345000px;}
.y2b3{bottom:777.705000px;}
.y2bf{bottom:780.225000px;}
.y71{bottom:781.845000px;}
.y2d3{bottom:782.205000px;}
.y9e{bottom:783.105000px;}
.y3d{bottom:784.725000px;}
.y16d{bottom:787.245000px;}
.y249{bottom:790.485000px;}
.yec{bottom:791.205000px;}
.y12d{bottom:792.105000px;}
.yc5{bottom:793.005000px;}
.y195{bottom:793.725000px;}
.y1f0{bottom:794.445000px;}
.y28b{bottom:794.985000px;}
.y1db{bottom:795.885000px;}
.y1b3{bottom:796.605000px;}
.y2be{bottom:797.505000px;}
.y1cf{bottom:797.700000px;}
.y70{bottom:798.945000px;}
.y2d2{bottom:799.485000px;}
.y9d{bottom:800.205000px;}
.y20a{bottom:801.105000px;}
.y3c{bottom:802.005000px;}
.y16c{bottom:804.525000px;}
.y26c{bottom:806.505000px;}
.y248{bottom:807.765000px;}
.yeb{bottom:808.485000px;}
.y12c{bottom:809.205000px;}
.yc4{bottom:810.285000px;}
.y194{bottom:811.005000px;}
.y1ef{bottom:811.725000px;}
.y28a{bottom:812.265000px;}
.y6f{bottom:816.225000px;}
.y2b2{bottom:816.765000px;}
.y9c{bottom:817.485000px;}
.y1d8{bottom:818.385000px;}
.y207{bottom:819.120000px;}
.y3b{bottom:819.285000px;}
.y16b{bottom:821.805000px;}
.y1b2{bottom:822.705000px;}
.y26b{bottom:823.785000px;}
.yea{bottom:825.765000px;}
.y12b{bottom:826.485000px;}
.yc3{bottom:827.565000px;}
.y193{bottom:828.285000px;}
.y1ee{bottom:829.005000px;}
.y6e{bottom:833.505000px;}
.y247{bottom:834.045000px;}
.y9b{bottom:834.765000px;}
.y2bd{bottom:836.565000px;}
.y2d1{bottom:838.545000px;}
.y26a{bottom:841.065000px;}
.ye9{bottom:843.045000px;}
.y12a{bottom:843.765000px;}
.yc2{bottom:844.845000px;}
.y3a{bottom:845.205000px;}
.y192{bottom:845.565000px;}
.y1ed{bottom:846.285000px;}
.y1b1{bottom:848.985000px;}
.y16a{bottom:849.165000px;}
.y246{bottom:851.325000px;}
.y2bc{bottom:853.845000px;}
.y205{bottom:854.205000px;}
.y2d0{bottom:855.825000px;}
.y2a3{bottom:858.345000px;}
.y6d{bottom:859.785000px;}
.ye8{bottom:860.325000px;}
.y9a{bottom:861.045000px;}
.yc1{bottom:861.945000px;}
.y39{bottom:862.485000px;}
.y269{bottom:862.845000px;}
.y1ec{bottom:863.565000px;}
.y169{bottom:866.445000px;}
.y245{bottom:868.605000px;}
.y222{bottom:870.945000px;}
.y191{bottom:871.845000px;}
.y289{bottom:873.105000px;}
.y1b0{bottom:875.265000px;}
.y2a2{bottom:875.445000px;}
.y31{bottom:877.065000px;}
.ye7{bottom:877.605000px;}
.y99{bottom:878.325000px;}
.yc0{bottom:879.225000px;}
.y2{bottom:879.369000px;}
.y268{bottom:879.945000px;}
.y1eb{bottom:880.845000px;}
.y168{bottom:883.545000px;}
.y244{bottom:885.705000px;}
.y221{bottom:888.225000px;}
.y190{bottom:888.945000px;}
.y204{bottom:889.500000px;}
.y288{bottom:890.205000px;}
.y2a1{bottom:892.725000px;}
.y6c{bottom:894.345000px;}
.ye6{bottom:894.705000px;}
.y98{bottom:895.605000px;}
.y267{bottom:897.225000px;}
.y1ea{bottom:897.990000px;}
.y167{bottom:900.870000px;}
.y1af{bottom:901.590000px;}
.y243{bottom:903.030000px;}
.ybf{bottom:905.550000px;}
.y18f{bottom:906.270000px;}
.y203{bottom:907.530000px;}
.y2a0{bottom:910.050000px;}
.y6b{bottom:911.490000px;}
.y2b1{bottom:912.030000px;}
.y97{bottom:912.750000px;}
.y266{bottom:914.550000px;}
.y1e9{bottom:915.270000px;}
.y166{bottom:918.150000px;}
.y242{bottom:920.310000px;}
.ye5{bottom:921.030000px;}
.ybe{bottom:922.830000px;}
.y18e{bottom:923.550000px;}
.y1ae{bottom:927.870000px;}
.y6a{bottom:928.770000px;}
.y287{bottom:929.310000px;}
.y96{bottom:930.030000px;}
.y29f{bottom:931.830000px;}
.y1e8{bottom:932.550000px;}
.y265{bottom:936.330000px;}
.y241{bottom:937.590000px;}
.y202{bottom:937.950000px;}
.ye4{bottom:938.310000px;}
.y220{bottom:940.110000px;}
.y18d{bottom:940.830000px;}
.y165{bottom:945.510000px;}
.y69{bottom:946.050000px;}
.y286{bottom:946.590000px;}
.y95{bottom:947.310000px;}
.ybd{bottom:949.110000px;}
.y1e7{bottom:949.830000px;}
.y2b0{bottom:951.090000px;}
.y264{bottom:953.610000px;}
.y1ad{bottom:953.970000px;}
.y240{bottom:954.870000px;}
.ye3{bottom:955.590000px;}
.y21f{bottom:957.390000px;}
.y18c{bottom:958.110000px;}
.y164{bottom:962.790000px;}
.y68{bottom:963.330000px;}
.y285{bottom:963.870000px;}
.y94{bottom:964.590000px;}
.ybc{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.y1e6{bottom:967.110000px;}
.y2af{bottom:968.370000px;}
.y1d3{bottom:970.170000px;}
.y263{bottom:970.890000px;}
.y23f{bottom:971.970000px;}
.ye2{bottom:972.870000px;}
.y21e{bottom:974.490000px;}
.y18b{bottom:975.390000px;}
.y163{bottom:980.070000px;}
.y1ac{bottom:980.250000px;}
.y93{bottom:981.870000px;}
.ybb{bottom:983.490000px;}
.y1e5{bottom:984.390000px;}
.y284{bottom:985.470000px;}
.y29e{bottom:987.990000px;}
.y67{bottom:989.250000px;}
.ye1{bottom:989.970000px;}
.y21d{bottom:991.770000px;}
.y18a{bottom:992.490000px;}
.y162{bottom:997.170000px;}
.y92{bottom:998.970000px;}
.yba{bottom:1000.770000px;}
.y1e4{bottom:1001.490000px;}
.y283{bottom:1002.750000px;}
.y29d{bottom:1005.270000px;}
.y1ab{bottom:1006.530000px;}
.ye0{bottom:1007.250000px;}
.y21c{bottom:1009.050000px;}
.y189{bottom:1009.770000px;}
.y30{bottom:1011.030000px;}
.y161{bottom:1014.450000px;}
.y66{bottom:1015.710000px;}
.y91{bottom:1016.250000px;}
.yb9{bottom:1018.050000px;}
.y1e3{bottom:1018.770000px;}
.y282{bottom:1020.030000px;}
.y29c{bottom:1022.550000px;}
.ydf{bottom:1024.530000px;}
.y21b{bottom:1026.330000px;}
.y188{bottom:1027.050000px;}
.y160{bottom:1031.730000px;}
.y23e{bottom:1032.450000px;}
.y1aa{bottom:1032.810000px;}
.y90{bottom:1033.530000px;}
.y2f{bottom:1035.690000px;}
.y1e2{bottom:1036.050000px;}
.yde{bottom:1041.810000px;}
.y65{bottom:1044.150000px;}
.yb8{bottom:1044.330000px;}
.y2ae{bottom:1046.310000px;}
.y262{bottom:1048.830000px;}
.y8f{bottom:1050.810000px;}
.y21a{bottom:1052.250000px;}
.y1e1{bottom:1053.330000px;}
.y2e{bottom:1054.590000px;}
.y23d{bottom:1058.730000px;}
.ydd{bottom:1059.090000px;}
.y64{bottom:1061.610000px;}
.y2ad{bottom:1063.590000px;}
.y261{bottom:1066.110000px;}
.y2c{bottom:1066.470000px;}
.y8e{bottom:1068.090000px;}
.y1e0{bottom:1070.610000px;}
.y2d{bottom:1072.410000px;}
.ydc{bottom:1076.370000px;}
.y63{bottom:1078.710000px;}
.y281{bottom:1080.870000px;}
.y260{bottom:1083.210000px;}
.y8d{bottom:1085.370000px;}
.y2b{bottom:1085.730000px;}
.y1df{bottom:1087.710000px;}
.ydb{bottom:1093.470000px;}
.y62{bottom:1095.990000px;}
.y280{bottom:1097.970000px;}
.y8c{bottom:1102.470000px;}
.y158{bottom:1103.370000px;}
.y2a{bottom:1103.910000px;}
.y1de{bottom:1104.990000px;}
.y101{bottom:1106.610000px;}
.y15f{bottom:1110.750000px;}
.y187{bottom:1113.270000px;}
.y8b{bottom:1119.750000px;}
.y61{bottom:1122.270000px;}
.y29{bottom:1129.470000px;}
.y15e{bottom:1136.670000px;}
.y8a{bottom:1137.030000px;}
.y186{bottom:1139.190000px;}
.y60{bottom:1139.550000px;}
.y27{bottom:1155.060000px;}
.y5f{bottom:1157.580000px;}
.y23{bottom:1172.700000px;}
.y5c{bottom:1175.220000px;}
.h3d{height:17.100000px;}
.h3b{height:17.265000px;}
.h38{height:17.280000px;}
.h3c{height:17.301000px;}
.h39{height:17.310000px;}
.h1c{height:32.040000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h2a{height:34.365000px;}
.h3e{height:34.380000px;}
.h3a{height:34.545000px;}
.hb{height:34.560000px;}
.h2c{height:34.581000px;}
.h17{height:38.158594px;}
.h1e{height:39.630000px;}
.h29{height:40.485000px;}
.h15{height:40.964766px;}
.h1a{height:41.385000px;}
.h19{height:41.391000px;}
.h14{height:42.086250px;}
.h28{height:42.164648px;}
.h26{height:42.870000px;}
.hd{height:43.506914px;}
.h7{height:45.960000px;}
.h1b{height:47.321367px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h2b{height:51.645000px;}
.h2d{height:52.971680px;}
.h2e{height:52.998047px;}
.h1d{height:53.573906px;}
.h18{height:54.421875px;}
.h2{height:55.152000px;}
.h3f{height:58.621992px;}
.h11{height:58.651172px;}
.h31{height:58.651192px;}
.h32{height:58.651210px;}
.h37{height:58.651211px;}
.h30{height:58.651235px;}
.h36{height:58.651243px;}
.h40{height:59.038594px;}
.hf{height:60.226875px;}
.h24{height:60.226911px;}
.h22{height:60.226920px;}
.h20{height:61.423863px;}
.hc{height:63.824414px;}
.h12{height:66.757500px;}
.h10{height:67.992539px;}
.he{height:70.664062px;}
.h5{height:78.132000px;}
.h33{height:84.945000px;}
.h34{height:85.162500px;}
.h4{height:119.055004px;}
.h16{height:129.802500px;}
.h2f{height:276.315000px;}
.h35{height:278.130000px;}
.h25{height:523.860000px;}
.h27{height:551.385000px;}
.h21{height:564.885000px;}
.h23{height:574.800000px;}
.h1f{height:577.860000px;}
.h13{height:1262.684910px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w13{width:14.565000px;}
.w10{width:17.085000px;}
.w1c{width:35.985000px;}
.w1b{width:49.845000px;}
.w15{width:60.120000px;}
.w16{width:60.300000px;}
.w17{width:63.936000px;}
.w18{width:68.745000px;}
.w27{width:70.005000px;}
.w28{width:70.041000px;}
.w25{width:70.200000px;}
.w26{width:70.236000px;}
.w19{width:73.965000px;}
.wd{width:74.865000px;}
.w20{width:75.060000px;}
.w21{width:75.096000px;}
.w22{width:75.225000px;}
.w1f{width:75.240000px;}
.w23{width:75.261000px;}
.w5{width:75.585000px;}
.w1a{width:80.661000px;}
.w29{width:80.805000px;}
.w14{width:97.581000px;}
.w1e{width:112.881000px;}
.wa{width:115.042500px;}
.w24{width:116.121000px;}
.w1d{width:163.650000px;}
.w9{width:200.355000px;}
.w8{width:349.800000px;}
.wf{width:368.355000px;}
.we{width:369.075000px;}
.w12{width:376.830000px;}
.w11{width:389.430000px;}
.wb{width:445.755000px;}
.w6{width:493.470000px;}
.wc{width:494.190000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w7{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:3.630000px;}
.x20{left:5.760000px;}
.x30{left:6.825000px;}
.x6{left:8.085000px;}
.x1d{left:10.800000px;}
.x1e{left:13.140000px;}
.x54{left:14.205000px;}
.x18{left:16.740000px;}
.x4a{left:18.705000px;}
.x37{left:20.505000px;}
.x36{left:22.485000px;}
.x3f{left:23.760000px;}
.x35{left:25.005000px;}
.x33{left:26.100000px;}
.x44{left:27.540000px;}
.x26{left:28.650000px;}
.x38{left:29.880000px;}
.x34{left:30.945000px;}
.x1f{left:32.040000px;}
.x49{left:33.690000px;}
.x4b{left:36.180000px;}
.x3b{left:38.340000px;}
.x4c{left:41.250000px;}
.x39{left:43.725000px;}
.x55{left:46.800000px;}
.x3d{left:49.485000px;}
.x28{left:51.330000px;}
.x1c{left:56.520000px;}
.x40{left:60.120000px;}
.x3a{left:61.950000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:162.045000px;}
.x8{left:163.470000px;}
.x2d{left:166.185000px;}
.xa{left:170.130000px;}
.x2c{left:171.570000px;}
.x4d{left:173.910000px;}
.x15{left:174.990000px;}
.x21{left:182.385000px;}
.x2a{left:191.370000px;}
.xb{left:196.950000px;}
.xe{left:198.570000px;}
.x4{left:203.484001px;}
.x12{left:214.950000px;}
.x42{left:219.810000px;}
.x9{left:222.180000px;}
.x11{left:228.990000px;}
.x7{left:237.645000px;}
.xc{left:248.430000px;}
.x25{left:259.245000px;}
.x1b{left:265.215000px;}
.x43{left:276.015000px;}
.x24{left:278.895000px;}
.x16{left:285.195000px;}
.x4e{left:287.355000px;}
.x1a{left:302.115000px;}
.xf{left:312.532500px;}
.x2e{left:325.335000px;}
.x10{left:333.435000px;}
.x2b{left:339.735000px;}
.x45{left:351.975000px;}
.x4f{left:358.275000px;}
.x3e{left:362.775000px;}
.x14{left:386.175000px;}
.x3c{left:387.255000px;}
.x46{left:427.935000px;}
.x50{left:429.195000px;}
.xd{left:446.505000px;}
.x2f{left:451.200000px;}
.x3{left:454.959000px;}
.x51{left:500.160000px;}
.x47{left:503.760000px;}
.x13{left:521.580000px;}
.x52{left:571.080000px;}
.x48{left:579.720000px;}
.x31{left:595.380000px;}
.x53{left:641.850000px;}
.x17{left:656.250000px;}
.x41{left:674.250000px;}
.x32{left:676.950000px;}
.x22{left:699.990000px;}
.x29{left:715.650000px;}
.x19{left:729.330000px;}
.x23{left:742.830000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls21{letter-spacing:-0.456533pt;}
.ls20{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.269867pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls24{letter-spacing:-0.089067pt;}
.lse{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.040320pt;}
.ls26{letter-spacing:-0.007680pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.048640pt;}
.ls4{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.114560pt;}
.ls22{letter-spacing:0.120533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.208640pt;}
.lsd{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.414933pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.592000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.056000pt;}
.ls28{letter-spacing:2.080000pt;}
.ls16{letter-spacing:6.992640pt;}
.ls17{letter-spacing:7.632640pt;}
.ls15{letter-spacing:12.112640pt;}
.ls1e{letter-spacing:23.680000pt;}
.ls18{letter-spacing:23.964160pt;}
.ls1d{letter-spacing:25.600000pt;}
.ls2{letter-spacing:55.040000pt;}
.lsc{letter-spacing:1334.075307pt;}
.wsf{word-spacing:-53.120000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws10{word-spacing:-14.336000pt;}
.ws1a{word-spacing:-14.240000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws18{word-spacing:-13.694933pt;}
.ws6{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.190933pt;}
.ws3{word-spacing:-13.138560pt;}
.wsd{word-spacing:-13.096533pt;}
.ws8{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.823467pt;}
.ws9{word-spacing:-12.736000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.208427pt;}
.ws11{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws19{word-spacing:-8.632320pt;}
.ws0{word-spacing:0.000000pt;}
._14{margin-left:-2.158293pt;}
._2{margin-left:-1.048320pt;}
._0{width:1.069653pt;}
._5{width:2.074453pt;}
._4{width:3.134080pt;}
._8{width:4.833920pt;}
._13{width:6.055467pt;}
._e{width:7.118080pt;}
._b{width:8.021120pt;}
._a{width:9.296000pt;}
._9{width:11.048960pt;}
._f{width:11.983360pt;}
._12{width:14.335147pt;}
._18{width:15.379413pt;}
._1b{width:17.104640pt;}
._16{width:18.844587pt;}
._d{width:19.942400pt;}
._17{width:20.865707pt;}
._c{width:21.779200pt;}
._1c{width:22.727680pt;}
._19{width:23.794560pt;}
._1a{width:25.005653pt;}
._6{width:25.975680pt;}
._7{width:27.303680pt;}
._21{width:28.390187pt;}
._10{width:29.481600pt;}
._11{width:30.845227pt;}
._22{width:32.116267pt;}
._23{width:33.040640pt;}
._15{width:35.682347pt;}
._1d{width:37.389227pt;}
._1e{width:38.698027pt;}
._28{width:39.627520pt;}
._27{width:40.849280pt;}
._30{width:41.851520pt;}
._2c{width:42.920960pt;}
._20{width:45.630080pt;}
._24{width:47.117440pt;}
._26{width:49.348480pt;}
._2d{width:50.251520pt;}
._35{width:51.632640pt;}
._3{width:55.458987pt;}
._25{width:57.242667pt;}
._1f{width:59.813120pt;}
._31{width:67.568640pt;}
._33{width:69.480960pt;}
._34{width:70.439467pt;}
._2b{width:82.031147pt;}
._32{width:86.054400pt;}
._29{width:87.116800pt;}
._2a{width:88.041387pt;}
._2f{width:124.460160pt;}
._2e{width:125.766827pt;}
._1{width:1440.315947pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:2.706667pt;}
.y1c4{bottom:2.880000pt;}
.y1cb{bottom:3.026667pt;}
.y38{bottom:3.040000pt;}
.y209{bottom:3.186667pt;}
.y26{bottom:3.200000pt;}
.y1cc{bottom:3.346667pt;}
.y1c8{bottom:3.360000pt;}
.y103{bottom:4.960000pt;}
.y1c1{bottom:5.600000pt;}
.y57{bottom:6.066667pt;}
.y15a{bottom:7.840000pt;}
.y157{bottom:8.480000pt;}
.y5d{bottom:9.760000pt;}
.y5e{bottom:10.240000pt;}
.y125{bottom:10.720000pt;}
.y24{bottom:12.480000pt;}
.y1bf{bottom:13.280000pt;}
.y59{bottom:15.026667pt;}
.y1d7{bottom:17.120000pt;}
.y1da{bottom:17.440000pt;}
.y1c3{bottom:18.240000pt;}
.y1ca{bottom:18.386667pt;}
.y1c7{bottom:18.400000pt;}
.y208{bottom:18.546667pt;}
.y25{bottom:18.560000pt;}
.y206{bottom:18.720000pt;}
.y1dc{bottom:19.680000pt;}
.y1c0{bottom:20.960000pt;}
.y102{bottom:22.880000pt;}
.y156{bottom:24.320000pt;}
.y159{bottom:25.760000pt;}
.y124{bottom:26.400000pt;}
.y37{bottom:26.600000pt;}
.y58{bottom:27.186667pt;}
.y1d0{bottom:31.506667pt;}
.y1d6{bottom:32.960000pt;}
.y1c6{bottom:33.600000pt;}
.y155{bottom:39.680000pt;}
.y123{bottom:41.760000pt;}
.y36{bottom:41.960000pt;}
.y1d5{bottom:48.320000pt;}
.y154{bottom:55.040000pt;}
.y122{bottom:56.960000pt;}
.y35{bottom:57.320000pt;}
.y5{bottom:59.133337pt;}
.y1d4{bottom:63.520000pt;}
.y1d9{bottom:63.680000pt;}
.y1dd{bottom:65.600000pt;}
.y1d2{bottom:66.706667pt;}
.y153{bottom:70.400000pt;}
.y121{bottom:72.320000pt;}
.y34{bottom:72.680000pt;}
.y152{bottom:85.600000pt;}
.y4{bottom:86.333337pt;}
.y120{bottom:87.680000pt;}
.y33{bottom:87.720000pt;}
.y1d1{bottom:94.586667pt;}
.y151{bottom:100.960000pt;}
.y11f{bottom:103.040000pt;}
.y32{bottom:103.400000pt;}
.y150{bottom:116.320000pt;}
.y11e{bottom:118.400000pt;}
.y22{bottom:123.790666pt;}
.y14f{bottom:131.680000pt;}
.y11d{bottom:133.760000pt;}
.y14e{bottom:147.066667pt;}
.y11c{bottom:148.960000pt;}
.y14d{bottom:162.426667pt;}
.y11b{bottom:164.320000pt;}
.y19{bottom:175.052000pt;}
.y14c{bottom:177.626667pt;}
.y15c{bottom:178.906667pt;}
.y11a{bottom:179.680000pt;}
.y127{bottom:184.986667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y15d{bottom:191.546667pt;}
.y14b{bottom:192.986667pt;}
.y119{bottom:195.066667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y129{bottom:201.946667pt;}
.y14a{bottom:208.346667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y118{bottom:210.426667pt;}
.y149{bottom:223.706667pt;}
.y117{bottom:225.626667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y148{bottom:239.066667pt;}
.y116{bottom:240.986667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y28{bottom:247.386667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y147{bottom:254.426667pt;}
.y115{bottom:256.346667pt;}
.y146{bottom:269.626667pt;}
.y114{bottom:271.706667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y145{bottom:284.986667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y113{bottom:287.066667pt;}
.y219{bottom:287.546667pt;}
.y5b{bottom:289.626667pt;}
.y23c{bottom:290.266667pt;}
.y2cf{bottom:293.466667pt;}
.y1a9{bottom:294.426667pt;}
.yb7{bottom:296.666667pt;}
.y201{bottom:297.786667pt;}
.y185{bottom:297.946667pt;}
.y144{bottom:300.346667pt;}
.y27f{bottom:301.466667pt;}
.y56{bottom:301.640000pt;}
.y112{bottom:302.426667pt;}
.y218{bottom:302.906667pt;}
.y23b{bottom:305.466667pt;}
.y29b{bottom:306.586667pt;}
.y1ce{bottom:308.826667pt;}
.y10{bottom:309.452000pt;}
.y1a8{bottom:309.786667pt;}
.y89{bottom:310.906667pt;}
.yda{bottom:311.546667pt;}
.yb6{bottom:312.026667pt;}
.y184{bottom:313.146667pt;}
.y143{bottom:315.706667pt;}
.y27e{bottom:316.826667pt;}
.y111{bottom:317.626667pt;}
.y217{bottom:318.266667pt;}
.y23a{bottom:320.826667pt;}
.y29a{bottom:321.946667pt;}
.y2ce{bottom:324.186667pt;}
.y1a7{bottom:325.146667pt;}
.y2bb{bottom:325.946667pt;}
.y88{bottom:326.266667pt;}
.yd9{bottom:326.906667pt;}
.yb5{bottom:327.386667pt;}
.y183{bottom:328.506667pt;}
.y25f{bottom:329.306667pt;}
.y1cd{bottom:330.586667pt;}
.y142{bottom:331.066667pt;}
.y110{bottom:332.986667pt;}
.y216{bottom:333.626667pt;}
.y200{bottom:336.026667pt;}
.y239{bottom:336.186667pt;}
.y299{bottom:337.306667pt;}
.y1a6{bottom:340.506667pt;}
.y2ba{bottom:341.306667pt;}
.y87{bottom:341.466667pt;}
.y55{bottom:341.786667pt;}
.y1c9{bottom:342.120000pt;}
.yd8{bottom:342.266667pt;}
.yb4{bottom:342.586667pt;}
.y2cd{bottom:343.546667pt;}
.yf{bottom:343.809333pt;}
.y182{bottom:343.866667pt;}
.y25e{bottom:344.666667pt;}
.y141{bottom:346.266667pt;}
.y54{bottom:346.426667pt;}
.y138{bottom:347.866667pt;}
.y10f{bottom:348.346667pt;}
.y238{bottom:351.546667pt;}
.y1a5{bottom:355.866667pt;}
.y298{bottom:356.666667pt;}
.y86{bottom:356.826667pt;}
.y215{bottom:356.986667pt;}
.y53{bottom:357.786667pt;}
.y2cc{bottom:358.906667pt;}
.y25d{bottom:360.026667pt;}
.y2b9{bottom:360.666667pt;}
.y140{bottom:361.666667pt;}
.ye{bottom:362.706666pt;}
.y137{bottom:363.226667pt;}
.y10e{bottom:363.706667pt;}
.yd7{bottom:365.506667pt;}
.yb3{bottom:365.986667pt;}
.y237{bottom:366.946667pt;}
.y181{bottom:367.266667pt;}
.y100{bottom:369.506667pt;}
.y1a4{bottom:371.106667pt;}
.y1ff{bottom:371.746667pt;}
.y297{bottom:372.066667pt;}
.y85{bottom:372.226667pt;}
.y133{bottom:373.346667pt;}
.y1c5{bottom:373.506667pt;}
.y2cb{bottom:374.306667pt;}
.y52{bottom:375.586667pt;}
.y2b8{bottom:376.066667pt;}
.y13f{bottom:377.026667pt;}
.y10d{bottom:379.066667pt;}
.y25c{bottom:379.426667pt;}
.yd6{bottom:380.866667pt;}
.yb2{bottom:381.346667pt;}
.y236{bottom:382.306667pt;}
.y180{bottom:382.626667pt;}
.y1fe{bottom:385.506667pt;}
.y27d{bottom:386.306667pt;}
.y136{bottom:386.466667pt;}
.y296{bottom:387.426667pt;}
.y84{bottom:387.586667pt;}
.y132{bottom:388.706667pt;}
.y128{bottom:389.346667pt;}
.y2ca{bottom:389.506667pt;}
.yff{bottom:389.986667pt;}
.y51{bottom:390.946667pt;}
.y2b7{bottom:391.426667pt;}
.y13e{bottom:392.386667pt;}
.y10c{bottom:394.426667pt;}
.y25b{bottom:394.626667pt;}
.y104{bottom:396.386667pt;}
.yb1{bottom:396.706667pt;}
.y235{bottom:397.506667pt;}
.y17f{bottom:397.826667pt;}
.y126{bottom:398.146667pt;}
.y27c{bottom:401.506667pt;}
.y1a3{bottom:401.826667pt;}
.y83{bottom:402.946667pt;}
.y131{bottom:404.066667pt;}
.yd5{bottom:404.226667pt;}
.y2c9{bottom:404.866667pt;}
.y50{bottom:406.306667pt;}
.y295{bottom:406.626667pt;}
.y1fd{bottom:407.266667pt;}
.y13d{bottom:407.746667pt;}
.y135{bottom:409.506667pt;}
.y10b{bottom:409.666667pt;}
.yfe{bottom:411.426667pt;}
.y234{bottom:412.866667pt;}
.y17e{bottom:413.186667pt;}
.y1a2{bottom:417.186667pt;}
.y25a{bottom:417.666667pt;}
.y82{bottom:418.306667pt;}
.y130{bottom:419.426667pt;}
.yd4{bottom:419.586667pt;}
.yb0{bottom:420.066667pt;}
.y1c2{bottom:420.226667pt;}
.y27b{bottom:420.866667pt;}
.y1fc{bottom:421.026667pt;}
.y4f{bottom:421.506667pt;}
.y294{bottom:421.986667pt;}
.y13c{bottom:423.106667pt;}
.y10a{bottom:425.026667pt;}
.y15b{bottom:425.986667pt;}
.y233{bottom:428.226667pt;}
.y17d{bottom:428.546667pt;}
.y134{bottom:429.986667pt;}
.yd{bottom:430.990669pt;}
.y2ac{bottom:432.226667pt;}
.y1a1{bottom:432.546667pt;}
.y81{bottom:433.506667pt;}
.y214{bottom:433.666667pt;}
.yfd{bottom:434.626667pt;}
.yd3{bottom:434.946667pt;}
.yaf{bottom:435.426667pt;}
.y27a{bottom:436.226667pt;}
.y4e{bottom:436.866667pt;}
.y293{bottom:437.346667pt;}
.y13b{bottom:438.306667pt;}
.y2c8{bottom:439.586667pt;}
.y109{bottom:440.386667pt;}
.y139{bottom:440.866667pt;}
.y259{bottom:441.026667pt;}
.y2b6{bottom:441.346667pt;}
.y232{bottom:443.586667pt;}
.y17c{bottom:443.906667pt;}
.yc{bottom:446.990669pt;}
.y2ab{bottom:447.586667pt;}
.y80{bottom:448.866667pt;}
.y213{bottom:449.026667pt;}
.yfc{bottom:449.986667pt;}
.yd2{bottom:450.306667pt;}
.yae{bottom:450.626667pt;}
.y1be{bottom:451.426667pt;}
.y279{bottom:451.586667pt;}
.y4d{bottom:452.226667pt;}
.y13a{bottom:453.666667pt;}
.y108{bottom:455.746667pt;}
.y1a0{bottom:455.906667pt;}
.y1fb{bottom:456.706667pt;}
.y231{bottom:458.946667pt;}
.y17b{bottom:459.266667pt;}
.y2aa{bottom:462.946667pt;}
.yb{bottom:462.990669pt;}
.y7f{bottom:464.226667pt;}
.y258{bottom:464.706667pt;}
.yfb{bottom:465.346667pt;}
.yd1{bottom:465.506667pt;}
.yad{bottom:465.986667pt;}
.y278{bottom:466.946667pt;}
.y4c{bottom:467.586667pt;}
.y1fa{bottom:468.226667pt;}
.y107{bottom:471.106667pt;}
.y292{bottom:472.066667pt;}
.y230{bottom:474.306667pt;}
.y17a{bottom:474.626667pt;}
.ya{bottom:478.990666pt;}
.y7e{bottom:479.586667pt;}
.y257{bottom:480.066667pt;}
.yfa{bottom:480.706667pt;}
.yd0{bottom:480.866667pt;}
.yac{bottom:481.346667pt;}
.y277{bottom:482.306667pt;}
.y4b{bottom:482.946667pt;}
.y106{bottom:486.466667pt;}
.y291{bottom:487.426667pt;}
.y22f{bottom:489.506667pt;}
.y179{bottom:489.826667pt;}
.y1bd{bottom:490.946667pt;}
.y7d{bottom:494.946667pt;}
.y9{bottom:494.990666pt;}
.y256{bottom:495.426667pt;}
.yf9{bottom:496.066667pt;}
.ycf{bottom:496.226667pt;}
.yab{bottom:496.706667pt;}
.y2a9{bottom:497.506667pt;}
.y4a{bottom:498.306667pt;}
.y1f9{bottom:499.586667pt;}
.y276{bottom:501.506667pt;}
.y105{bottom:501.666667pt;}
.y19f{bottom:501.826667pt;}
.y2b5{bottom:502.626667pt;}
.y2c7{bottom:504.866667pt;}
.y290{bottom:506.626667pt;}
.y7c{bottom:510.306667pt;}
.y255{bottom:510.626667pt;}
.yf8{bottom:511.426667pt;}
.yce{bottom:511.586667pt;}
.yaa{bottom:512.066667pt;}
.y22e{bottom:512.866667pt;}
.y178{bottom:513.186667pt;}
.y49{bottom:513.506667pt;}
.y1bc{bottom:514.626667pt;}
.y1f8{bottom:515.586667pt;}
.y275{bottom:516.866667pt;}
.y19e{bottom:517.186667pt;}
.y28f{bottom:521.986667pt;}
.y2c6{bottom:524.226667pt;}
.y7b{bottom:525.506667pt;}
.y212{bottom:525.666667pt;}
.y254{bottom:525.986667pt;}
.yf7{bottom:526.626667pt;}
.ycd{bottom:526.946667pt;}
.ya9{bottom:527.426667pt;}
.y22d{bottom:528.226667pt;}
.y177{bottom:528.546667pt;}
.y48{bottom:528.866667pt;}
.y1bb{bottom:529.986667pt;}
.y274{bottom:532.226667pt;}
.y12f{bottom:534.626667pt;}
.y28e{bottom:537.346667pt;}
.y2c5{bottom:539.586667pt;}
.y19d{bottom:540.546667pt;}
.y7a{bottom:540.866667pt;}
.y253{bottom:541.346667pt;}
.ycc{bottom:542.146667pt;}
.ya8{bottom:542.626667pt;}
.y22c{bottom:543.586667pt;}
.y176{bottom:543.906667pt;}
.y47{bottom:544.226667pt;}
.y1ba{bottom:545.346667pt;}
.y1f7{bottom:546.946667pt;}
.y2a8{bottom:547.586667pt;}
.y211{bottom:548.546667pt;}
.yf6{bottom:549.986667pt;}
.y273{bottom:551.586667pt;}
.y2b4{bottom:552.706667pt;}
.y2c4{bottom:554.946667pt;}
.y19c{bottom:555.746667pt;}
.y79{bottom:556.226667pt;}
.y252{bottom:556.706667pt;}
.ya7{bottom:557.986667pt;}
.y22b{bottom:558.946667pt;}
.y175{bottom:559.266667pt;}
.y46{bottom:559.586667pt;}
.yf5{bottom:565.346667pt;}
.ycb{bottom:565.506667pt;}
.y272{bottom:566.946667pt;}
.y1b9{bottom:568.386667pt;}
.y2c3{bottom:570.146667pt;}
.y210{bottom:570.306667pt;}
.y19b{bottom:571.106667pt;}
.y78{bottom:571.586667pt;}
.y251{bottom:572.066667pt;}
.ya6{bottom:573.346667pt;}
.y8{bottom:573.786667pt;}
.y22a{bottom:574.146667pt;}
.y45{bottom:574.946667pt;}
.y1f6{bottom:578.146667pt;}
.yf4{bottom:580.706667pt;}
.yca{bottom:580.866667pt;}
.y2a7{bottom:582.173333pt;}
.y174{bottom:583.613333pt;}
.y20f{bottom:584.093333pt;}
.y271{bottom:586.173333pt;}
.y19a{bottom:586.493333pt;}
.y250{bottom:587.293333pt;}
.ya5{bottom:588.733333pt;}
.y229{bottom:589.533333pt;}
.y44{bottom:590.333333pt;}
.y1b8{bottom:592.093333pt;}
.y7{bottom:592.685334pt;}
.y1f5{bottom:594.173333pt;}
.y77{bottom:594.973333pt;}
.yf3{bottom:596.093333pt;}
.yc9{bottom:596.253333pt;}
.y2a6{bottom:597.533333pt;}
.y20e{bottom:598.013333pt;}
.y173{bottom:598.813333pt;}
.y270{bottom:601.533333pt;}
.y199{bottom:601.853333pt;}
.y24f{bottom:602.653333pt;}
.ya4{bottom:604.093333pt;}
.y2c2{bottom:604.893333pt;}
.y43{bottom:605.533333pt;}
.y76{bottom:610.173333pt;}
.yf2{bottom:611.293333pt;}
.yc8{bottom:611.613333pt;}
.y228{bottom:612.893333pt;}
.y172{bottom:614.173333pt;}
.y1b7{bottom:615.293333pt;}
.y26f{bottom:616.893333pt;}
.y24e{bottom:618.013333pt;}
.ya3{bottom:619.293333pt;}
.y20d{bottom:619.773333pt;}
.y42{bottom:620.893333pt;}
.y1f4{bottom:621.213333pt;}
.y28d{bottom:622.013333pt;}
.y2c1{bottom:624.253333pt;}
.y75{bottom:625.533333pt;}
.y198{bottom:625.853333pt;}
.yf1{bottom:626.653333pt;}
.y227{bottom:628.253333pt;}
.y171{bottom:629.533333pt;}
.y2d7{bottom:630.013333pt;}
.y1b6{bottom:630.653333pt;}
.y26e{bottom:632.253333pt;}
.y20c{bottom:633.533333pt;}
.ya2{bottom:634.653333pt;}
.y41{bottom:636.253333pt;}
.y28c{bottom:637.373333pt;}
.y2c0{bottom:639.613333pt;}
.y24d{bottom:641.373333pt;}
.yf0{bottom:642.013333pt;}
.y226{bottom:643.613333pt;}
.y170{bottom:644.893333pt;}
.y2d6{bottom:645.373333pt;}
.y6{bottom:645.598667pt;}
.y1b5{bottom:646.013333pt;}
.y20b{bottom:647.293333pt;}
.y2a5{bottom:647.613333pt;}
.y74{bottom:648.893333pt;}
.ya1{bottom:650.013333pt;}
.y40{bottom:651.613333pt;}
.y24c{bottom:656.733333pt;}
.yef{bottom:657.373333pt;}
.yc7{bottom:657.853333pt;}
.y225{bottom:658.973333pt;}
.y1f3{bottom:660.253333pt;}
.y2d5{bottom:660.733333pt;}
.y1b4{bottom:661.373333pt;}
.y2a4{bottom:662.973333pt;}
.y73{bottom:664.253333pt;}
.ya0{bottom:665.373333pt;}
.y3f{bottom:666.973333pt;}
.y3{bottom:668.977329pt;}
.y16f{bottom:669.213333pt;}
.y24b{bottom:672.093333pt;}
.yee{bottom:672.733333pt;}
.y224{bottom:674.173333pt;}
.y197{bottom:674.973333pt;}
.y1f2{bottom:675.613333pt;}
.y2d4{bottom:676.093333pt;}
.y72{bottom:679.613333pt;}
.y12e{bottom:680.413333pt;}
.y9f{bottom:680.733333pt;}
.yc6{bottom:681.533333pt;}
.y26d{bottom:682.173333pt;}
.y3e{bottom:682.333333pt;}
.y16e{bottom:684.413333pt;}
.y24a{bottom:687.293333pt;}
.yed{bottom:688.093333pt;}
.y223{bottom:689.533333pt;}
.y196{bottom:690.173333pt;}
.y1f1{bottom:690.973333pt;}
.y2b3{bottom:691.293333pt;}
.y2bf{bottom:693.533333pt;}
.y71{bottom:694.973333pt;}
.y2d3{bottom:695.293333pt;}
.y9e{bottom:696.093333pt;}
.y3d{bottom:697.533333pt;}
.y16d{bottom:699.773333pt;}
.y249{bottom:702.653333pt;}
.yec{bottom:703.293333pt;}
.y12d{bottom:704.093333pt;}
.yc5{bottom:704.893333pt;}
.y195{bottom:705.533333pt;}
.y1f0{bottom:706.173333pt;}
.y28b{bottom:706.653333pt;}
.y1db{bottom:707.453333pt;}
.y1b3{bottom:708.093333pt;}
.y2be{bottom:708.893333pt;}
.y1cf{bottom:709.066667pt;}
.y70{bottom:710.173333pt;}
.y2d2{bottom:710.653333pt;}
.y9d{bottom:711.293333pt;}
.y20a{bottom:712.093333pt;}
.y3c{bottom:712.893333pt;}
.y16c{bottom:715.133333pt;}
.y26c{bottom:716.893333pt;}
.y248{bottom:718.013333pt;}
.yeb{bottom:718.653333pt;}
.y12c{bottom:719.293333pt;}
.yc4{bottom:720.253333pt;}
.y194{bottom:720.893333pt;}
.y1ef{bottom:721.533333pt;}
.y28a{bottom:722.013333pt;}
.y6f{bottom:725.533333pt;}
.y2b2{bottom:726.013333pt;}
.y9c{bottom:726.653333pt;}
.y1d8{bottom:727.453333pt;}
.y207{bottom:728.106667pt;}
.y3b{bottom:728.253333pt;}
.y16b{bottom:730.493333pt;}
.y1b2{bottom:731.293333pt;}
.y26b{bottom:732.253333pt;}
.yea{bottom:734.013333pt;}
.y12b{bottom:734.653333pt;}
.yc3{bottom:735.613333pt;}
.y193{bottom:736.253333pt;}
.y1ee{bottom:736.893333pt;}
.y6e{bottom:740.893333pt;}
.y247{bottom:741.373333pt;}
.y9b{bottom:742.013333pt;}
.y2bd{bottom:743.613333pt;}
.y2d1{bottom:745.373333pt;}
.y26a{bottom:747.613333pt;}
.ye9{bottom:749.373333pt;}
.y12a{bottom:750.013333pt;}
.yc2{bottom:750.973333pt;}
.y3a{bottom:751.293333pt;}
.y192{bottom:751.613333pt;}
.y1ed{bottom:752.253333pt;}
.y1b1{bottom:754.653333pt;}
.y16a{bottom:754.813333pt;}
.y246{bottom:756.733333pt;}
.y2bc{bottom:758.973333pt;}
.y205{bottom:759.293333pt;}
.y2d0{bottom:760.733333pt;}
.y2a3{bottom:762.973333pt;}
.y6d{bottom:764.253333pt;}
.ye8{bottom:764.733333pt;}
.y9a{bottom:765.373333pt;}
.yc1{bottom:766.173333pt;}
.y39{bottom:766.653333pt;}
.y269{bottom:766.973333pt;}
.y1ec{bottom:767.613333pt;}
.y169{bottom:770.173333pt;}
.y245{bottom:772.093333pt;}
.y222{bottom:774.173333pt;}
.y191{bottom:774.973333pt;}
.y289{bottom:776.093333pt;}
.y1b0{bottom:778.013333pt;}
.y2a2{bottom:778.173333pt;}
.y31{bottom:779.613333pt;}
.ye7{bottom:780.093333pt;}
.y99{bottom:780.733333pt;}
.yc0{bottom:781.533333pt;}
.y2{bottom:781.661334pt;}
.y268{bottom:782.173333pt;}
.y1eb{bottom:782.973333pt;}
.y168{bottom:785.373333pt;}
.y244{bottom:787.293333pt;}
.y221{bottom:789.533333pt;}
.y190{bottom:790.173333pt;}
.y204{bottom:790.666667pt;}
.y288{bottom:791.293333pt;}
.y2a1{bottom:793.533333pt;}
.y6c{bottom:794.973333pt;}
.ye6{bottom:795.293333pt;}
.y98{bottom:796.093333pt;}
.y267{bottom:797.533333pt;}
.y1ea{bottom:798.213333pt;}
.y167{bottom:800.773333pt;}
.y1af{bottom:801.413333pt;}
.y243{bottom:802.693333pt;}
.ybf{bottom:804.933333pt;}
.y18f{bottom:805.573333pt;}
.y203{bottom:806.693333pt;}
.y2a0{bottom:808.933333pt;}
.y6b{bottom:810.213333pt;}
.y2b1{bottom:810.693333pt;}
.y97{bottom:811.333333pt;}
.y266{bottom:812.933333pt;}
.y1e9{bottom:813.573333pt;}
.y166{bottom:816.133333pt;}
.y242{bottom:818.053333pt;}
.ye5{bottom:818.693333pt;}
.ybe{bottom:820.293333pt;}
.y18e{bottom:820.933333pt;}
.y1ae{bottom:824.773333pt;}
.y6a{bottom:825.573333pt;}
.y287{bottom:826.053333pt;}
.y96{bottom:826.693333pt;}
.y29f{bottom:828.293333pt;}
.y1e8{bottom:828.933333pt;}
.y265{bottom:832.293333pt;}
.y241{bottom:833.413333pt;}
.y202{bottom:833.733333pt;}
.ye4{bottom:834.053333pt;}
.y220{bottom:835.653333pt;}
.y18d{bottom:836.293333pt;}
.y165{bottom:840.453333pt;}
.y69{bottom:840.933333pt;}
.y286{bottom:841.413333pt;}
.y95{bottom:842.053333pt;}
.ybd{bottom:843.653333pt;}
.y1e7{bottom:844.293333pt;}
.y2b0{bottom:845.413333pt;}
.y264{bottom:847.653333pt;}
.y1ad{bottom:847.973333pt;}
.y240{bottom:848.773333pt;}
.ye3{bottom:849.413333pt;}
.y21f{bottom:851.013333pt;}
.y18c{bottom:851.653333pt;}
.y164{bottom:855.813333pt;}
.y68{bottom:856.293333pt;}
.y285{bottom:856.773333pt;}
.y94{bottom:857.413333pt;}
.ybc{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.y1e6{bottom:859.653333pt;}
.y2af{bottom:860.773333pt;}
.y1d3{bottom:862.373333pt;}
.y263{bottom:863.013333pt;}
.y23f{bottom:863.973333pt;}
.ye2{bottom:864.773333pt;}
.y21e{bottom:866.213333pt;}
.y18b{bottom:867.013333pt;}
.y163{bottom:871.173333pt;}
.y1ac{bottom:871.333333pt;}
.y93{bottom:872.773333pt;}
.ybb{bottom:874.213333pt;}
.y1e5{bottom:875.013333pt;}
.y284{bottom:875.973333pt;}
.y29e{bottom:878.213333pt;}
.y67{bottom:879.333333pt;}
.ye1{bottom:879.973333pt;}
.y21d{bottom:881.573333pt;}
.y18a{bottom:882.213333pt;}
.y162{bottom:886.373333pt;}
.y92{bottom:887.973333pt;}
.yba{bottom:889.573333pt;}
.y1e4{bottom:890.213333pt;}
.y283{bottom:891.333333pt;}
.y29d{bottom:893.573333pt;}
.y1ab{bottom:894.693333pt;}
.ye0{bottom:895.333333pt;}
.y21c{bottom:896.933333pt;}
.y189{bottom:897.573333pt;}
.y30{bottom:898.693333pt;}
.y161{bottom:901.733333pt;}
.y66{bottom:902.853333pt;}
.y91{bottom:903.333333pt;}
.yb9{bottom:904.933333pt;}
.y1e3{bottom:905.573333pt;}
.y282{bottom:906.693333pt;}
.y29c{bottom:908.933333pt;}
.ydf{bottom:910.693333pt;}
.y21b{bottom:912.293333pt;}
.y188{bottom:912.933333pt;}
.y160{bottom:917.093333pt;}
.y23e{bottom:917.733333pt;}
.y1aa{bottom:918.053333pt;}
.y90{bottom:918.693333pt;}
.y2f{bottom:920.613333pt;}
.y1e2{bottom:920.933333pt;}
.yde{bottom:926.053333pt;}
.y65{bottom:928.133333pt;}
.yb8{bottom:928.293333pt;}
.y2ae{bottom:930.053333pt;}
.y262{bottom:932.293333pt;}
.y8f{bottom:934.053333pt;}
.y21a{bottom:935.333333pt;}
.y1e1{bottom:936.293333pt;}
.y2e{bottom:937.413333pt;}
.y23d{bottom:941.093333pt;}
.ydd{bottom:941.413333pt;}
.y64{bottom:943.653333pt;}
.y2ad{bottom:945.413333pt;}
.y261{bottom:947.653333pt;}
.y2c{bottom:947.973333pt;}
.y8e{bottom:949.413333pt;}
.y1e0{bottom:951.653333pt;}
.y2d{bottom:953.253333pt;}
.ydc{bottom:956.773333pt;}
.y63{bottom:958.853333pt;}
.y281{bottom:960.773333pt;}
.y260{bottom:962.853333pt;}
.y8d{bottom:964.773333pt;}
.y2b{bottom:965.093333pt;}
.y1df{bottom:966.853333pt;}
.ydb{bottom:971.973333pt;}
.y62{bottom:974.213333pt;}
.y280{bottom:975.973333pt;}
.y8c{bottom:979.973333pt;}
.y158{bottom:980.773333pt;}
.y2a{bottom:981.253333pt;}
.y1de{bottom:982.213333pt;}
.y101{bottom:983.653333pt;}
.y15f{bottom:987.333333pt;}
.y187{bottom:989.573333pt;}
.y8b{bottom:995.333333pt;}
.y61{bottom:997.573333pt;}
.y29{bottom:1003.973333pt;}
.y15e{bottom:1010.373333pt;}
.y8a{bottom:1010.693333pt;}
.y186{bottom:1012.613333pt;}
.y60{bottom:1012.933333pt;}
.y27{bottom:1026.720000pt;}
.y5f{bottom:1028.960000pt;}
.y23{bottom:1042.400000pt;}
.y5c{bottom:1044.640000pt;}
.h3d{height:15.200000pt;}
.h3b{height:15.346667pt;}
.h38{height:15.360000pt;}
.h3c{height:15.378667pt;}
.h39{height:15.386667pt;}
.h1c{height:28.480000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h2a{height:30.546667pt;}
.h3e{height:30.560000pt;}
.h3a{height:30.706667pt;}
.hb{height:30.720000pt;}
.h2c{height:30.738667pt;}
.h17{height:33.918750pt;}
.h1e{height:35.226667pt;}
.h29{height:35.986667pt;}
.h15{height:36.413125pt;}
.h1a{height:36.786667pt;}
.h19{height:36.792000pt;}
.h14{height:37.410000pt;}
.h28{height:37.479688pt;}
.h26{height:38.106667pt;}
.hd{height:38.672812pt;}
.h7{height:40.853333pt;}
.h1b{height:42.063437pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h2b{height:45.906667pt;}
.h2d{height:47.085938pt;}
.h2e{height:47.109375pt;}
.h1d{height:47.621250pt;}
.h18{height:48.375000pt;}
.h2{height:49.024000pt;}
.h3f{height:52.108438pt;}
.h11{height:52.134375pt;}
.h31{height:52.134393pt;}
.h32{height:52.134409pt;}
.h37{height:52.134410pt;}
.h30{height:52.134431pt;}
.h36{height:52.134438pt;}
.h40{height:52.478750pt;}
.hf{height:53.535000pt;}
.h24{height:53.535032pt;}
.h22{height:53.535040pt;}
.h20{height:54.598989pt;}
.hc{height:56.732813pt;}
.h12{height:59.340000pt;}
.h10{height:60.437812pt;}
.he{height:62.812500pt;}
.h5{height:69.450667pt;}
.h33{height:75.506667pt;}
.h34{height:75.700000pt;}
.h4{height:105.826671pt;}
.h16{height:115.380000pt;}
.h2f{height:245.613333pt;}
.h35{height:247.226667pt;}
.h25{height:465.653333pt;}
.h27{height:490.120000pt;}
.h21{height:502.120000pt;}
.h23{height:510.933333pt;}
.h1f{height:513.653333pt;}
.h13{height:1122.386587pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w13{width:12.946667pt;}
.w10{width:15.186667pt;}
.w1c{width:31.986667pt;}
.w1b{width:44.306667pt;}
.w15{width:53.440000pt;}
.w16{width:53.600000pt;}
.w17{width:56.832000pt;}
.w18{width:61.106667pt;}
.w27{width:62.226667pt;}
.w28{width:62.258667pt;}
.w25{width:62.400000pt;}
.w26{width:62.432000pt;}
.w19{width:65.746667pt;}
.wd{width:66.546667pt;}
.w20{width:66.720000pt;}
.w21{width:66.752000pt;}
.w22{width:66.866667pt;}
.w1f{width:66.880000pt;}
.w23{width:66.898667pt;}
.w5{width:67.186667pt;}
.w1a{width:71.698667pt;}
.w29{width:71.826667pt;}
.w14{width:86.738667pt;}
.w1e{width:100.338667pt;}
.wa{width:102.260000pt;}
.w24{width:103.218667pt;}
.w1d{width:145.466667pt;}
.w9{width:178.093333pt;}
.w8{width:310.933333pt;}
.wf{width:327.426667pt;}
.we{width:328.066667pt;}
.w12{width:334.960000pt;}
.w11{width:346.160000pt;}
.wb{width:396.226667pt;}
.w6{width:438.640000pt;}
.wc{width:439.280000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w7{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:3.226667pt;}
.x20{left:5.120000pt;}
.x30{left:6.066667pt;}
.x6{left:7.186667pt;}
.x1d{left:9.600000pt;}
.x1e{left:11.680000pt;}
.x54{left:12.626667pt;}
.x18{left:14.880000pt;}
.x4a{left:16.626667pt;}
.x37{left:18.226667pt;}
.x36{left:19.986667pt;}
.x3f{left:21.120000pt;}
.x35{left:22.226667pt;}
.x33{left:23.200000pt;}
.x44{left:24.480000pt;}
.x26{left:25.466667pt;}
.x38{left:26.560000pt;}
.x34{left:27.506667pt;}
.x1f{left:28.480000pt;}
.x49{left:29.946667pt;}
.x4b{left:32.160000pt;}
.x3b{left:34.080000pt;}
.x4c{left:36.666667pt;}
.x39{left:38.866667pt;}
.x55{left:41.600000pt;}
.x3d{left:43.986667pt;}
.x28{left:45.626667pt;}
.x1c{left:50.240000pt;}
.x40{left:53.440000pt;}
.x3a{left:55.066667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:144.040000pt;}
.x8{left:145.306667pt;}
.x2d{left:147.720000pt;}
.xa{left:151.226667pt;}
.x2c{left:152.506667pt;}
.x4d{left:154.586667pt;}
.x15{left:155.546667pt;}
.x21{left:162.120000pt;}
.x2a{left:170.106667pt;}
.xb{left:175.066667pt;}
.xe{left:176.506667pt;}
.x4{left:180.874667pt;}
.x12{left:191.066667pt;}
.x42{left:195.386667pt;}
.x9{left:197.493333pt;}
.x11{left:203.546667pt;}
.x7{left:211.240000pt;}
.xc{left:220.826667pt;}
.x25{left:230.440000pt;}
.x1b{left:235.746667pt;}
.x43{left:245.346667pt;}
.x24{left:247.906667pt;}
.x16{left:253.506667pt;}
.x4e{left:255.426667pt;}
.x1a{left:268.546667pt;}
.xf{left:277.806667pt;}
.x2e{left:289.186667pt;}
.x10{left:296.386667pt;}
.x2b{left:301.986667pt;}
.x45{left:312.866667pt;}
.x4f{left:318.466667pt;}
.x3e{left:322.466667pt;}
.x14{left:343.266667pt;}
.x3c{left:344.226667pt;}
.x46{left:380.386667pt;}
.x50{left:381.506667pt;}
.xd{left:396.893333pt;}
.x2f{left:401.066667pt;}
.x3{left:404.408000pt;}
.x51{left:444.586667pt;}
.x47{left:447.786667pt;}
.x13{left:463.626667pt;}
.x52{left:507.626667pt;}
.x48{left:515.306667pt;}
.x31{left:529.226667pt;}
.x53{left:570.533333pt;}
.x17{left:583.333333pt;}
.x41{left:599.333333pt;}
.x32{left:601.733333pt;}
.x22{left:622.213333pt;}
.x29{left:636.133333pt;}
.x19{left:648.293333pt;}
.x23{left:660.293333pt;}
}




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