
    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_a16d6ee325c861102599d372.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_739ae120fb63e14894bcc728.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d421a37c6e168ec191a90bb9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d2c248673594ce30e20cb549.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_8d92bb9c805dc0f2ee63b96f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_94708f453a3b229559351d59.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4ef096691492ece46857f61c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_e9747d0c2dd78e7838c60423.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_e35a03b1873c5f2ff5d19e34.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e3c6af5e681e31f3cc8d15f1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.776855;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;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls26{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.750000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.584400px;}
.ls2c{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.072000px;}
.ls29{letter-spacing:0.106800px;}
.ls2b{letter-spacing:0.135600px;}
.ls7{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.156000px;}
.ls2f{letter-spacing:0.161760px;}
.lsc{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.288000px;}
.ls27{letter-spacing:0.289440px;}
.ls31{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.432000px;}
.ls38{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.504000px;}
.ls36{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.720000px;}
.ls23{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.900000px;}
.ls28{letter-spacing:2.160000px;}
.ls3a{letter-spacing:2.880000px;}
.ls16{letter-spacing:3.600000px;}
.ls37{letter-spacing:4.320000px;}
.ls18{letter-spacing:6.660000px;}
.ls34{letter-spacing:7.380000px;}
.ls1f{letter-spacing:8.640000px;}
.ls20{letter-spacing:10.800000px;}
.ls2{letter-spacing:11.520000px;}
.ls3{letter-spacing:12.960000px;}
.ls35{letter-spacing:15.840000px;}
.ls14{letter-spacing:21.197280px;}
.ls1a{letter-spacing:26.040000px;}
.ls0{letter-spacing:30.780000px;}
.ls21{letter-spacing:31.104000px;}
.ls39{letter-spacing:33.960000px;}
.ls17{letter-spacing:33.984000px;}
.lsa{letter-spacing:36.000000px;}
.ls8{letter-spacing:72.000000px;}
.ls1d{letter-spacing:87.984000px;}
.ls9{letter-spacing:90.000000px;}
.ls33{letter-spacing:851.916000px;}
.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;}
}
.wsd{word-spacing:-21.420000px;}
.ws11{word-spacing:-21.060000px;}
.ws12{word-spacing:-20.310000px;}
.ws13{word-spacing:-18.864000px;}
.wsc{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.576000px;}
.ws21{word-spacing:-18.504000px;}
.ws2{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws14{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.064000px;}
.ws1e{word-spacing:-16.374240px;}
.ws18{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws1b{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.993280px;}
.ws16{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.833200px;}
.ws4{word-spacing:-14.220000px;}
.wsf{word-spacing:-12.420000px;}
.ws1a{word-spacing:-12.349440px;}
.ws20{word-spacing:-12.240000px;}
.wse{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.ws1d{word-spacing:-11.520000px;}
.ws17{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._28{margin-left:-17.508720px;}
._1c{margin-left:-16.320000px;}
._27{margin-left:-14.952000px;}
._20{margin-left:-13.764000px;}
._21{margin-left:-11.568000px;}
._1e{margin-left:-9.780000px;}
._1d{margin-left:-7.908000px;}
._1f{margin-left:-6.180000px;}
._d{margin-left:-4.464000px;}
._e{margin-left:-3.432720px;}
._16{margin-left:-2.232000px;}
._1{margin-left:-1.179360px;}
._0{width:1.648080px;}
._18{width:2.673360px;}
._c{width:4.268640px;}
._b{width:5.547360px;}
._a{width:6.672000px;}
._13{width:7.807920px;}
._14{width:8.868000px;}
._12{width:10.368000px;}
._15{width:11.496000px;}
._f{width:12.528000px;}
._10{width:13.668000px;}
._11{width:15.168000px;}
._17{width:16.695120px;}
._2f{width:17.808480px;}
._2c{width:19.563360px;}
._29{width:21.072000px;}
._2a{width:22.260000px;}
._2b{width:23.287920px;}
._2d{width:24.304080px;}
._2e{width:25.368000px;}
._30{width:26.652960px;}
._3c{width:28.397280px;}
._9{width:29.568240px;}
._8{width:30.579120px;}
._7{width:31.807440px;}
._1a{width:33.480000px;}
._1b{width:34.620000px;}
._43{width:35.928000px;}
._25{width:36.936000px;}
._44{width:40.127760px;}
._31{width:41.259600px;}
._45{width:43.848000px;}
._32{width:45.969840px;}
._3b{width:48.226320px;}
._42{width:49.959360px;}
._41{width:51.274080px;}
._38{width:54.884880px;}
._22{width:56.304000px;}
._23{width:59.544000px;}
._4{width:60.737040px;}
._3d{width:67.230000px;}
._36{width:74.520720px;}
._2{width:77.248080px;}
._3{width:78.909600px;}
._24{width:84.247920px;}
._26{width:89.976000px;}
._3a{width:92.926800px;}
._37{width:94.027680px;}
._3f{width:95.556240px;}
._5{width:104.204880px;}
._6{width:105.754080px;}
._34{width:112.229280px;}
._35{width:113.304960px;}
._33{width:117.308880px;}
._3e{width:121.492080px;}
._40{width:140.196960px;}
._39{width:242.889840px;}
._19{width:845.796000px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(36,64,97);}
.fc5{color:rgb(31,73,125);}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(67,67,67);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y237{bottom:-77.070000px;}
.y236{bottom:-45.930000px;}
.y1b{bottom:-27.390000px;}
.y18f{bottom:-17.280000px;}
.y235{bottom:-14.940000px;}
.y225{bottom:-12.780000px;}
.y1a2{bottom:-11.340000px;}
.y0{bottom:0.000000px;}
.y18e{bottom:2.700000px;}
.y141{bottom:3.240000px;}
.y224{bottom:4.500000px;}
.y1a7{bottom:5.040000px;}
.y1a4{bottom:5.220000px;}
.y231{bottom:5.760000px;}
.y1a{bottom:5.940000px;}
.y241{bottom:6.120000px;}
.y1ab{bottom:6.840000px;}
.y19a{bottom:7.020000px;}
.y2a0{bottom:8.460000px;}
.y1a1{bottom:8.640000px;}
.y23c{bottom:9.900000px;}
.y19d{bottom:10.980000px;}
.y22d{bottom:11.700000px;}
.y22b{bottom:14.220000px;}
.y197{bottom:15.840000px;}
.y195{bottom:17.460000px;}
.y29e{bottom:18.000000px;}
.y193{bottom:18.540000px;}
.y18d{bottom:19.980000px;}
.y140{bottom:20.340000px;}
.y142{bottom:20.520000px;}
.y229{bottom:20.550000px;}
.y247{bottom:20.565000px;}
.y23f{bottom:20.700000px;}
.y24a{bottom:21.060000px;}
.y223{bottom:21.780000px;}
.y1a6{bottom:22.320000px;}
.y1a3{bottom:22.500000px;}
.y230{bottom:23.040000px;}
.y24b{bottom:23.220000px;}
.y240{bottom:23.445000px;}
.y1aa{bottom:24.120000px;}
.y199{bottom:24.300000px;}
.y1a0{bottom:25.920000px;}
.y23b{bottom:27.180000px;}
.y19c{bottom:28.260000px;}
.y13e{bottom:29.520000px;}
.y227{bottom:30.645000px;}
.y239{bottom:30.960000px;}
.y191{bottom:31.140000px;}
.y1f{bottom:36.180000px;}
.y18c{bottom:37.260000px;}
.y25e{bottom:37.620000px;}
.y1b3{bottom:37.665000px;}
.y25a{bottom:37.794000px;}
.y1af{bottom:37.800000px;}
.y1bb{bottom:37.830000px;}
.y246{bottom:37.845000px;}
.y23e{bottom:37.980000px;}
.y222{bottom:39.060000px;}
.y234{bottom:39.600000px;}
.y249{bottom:40.500000px;}
.y1a9{bottom:41.220000px;}
.y19{bottom:42.120000px;}
.y19f{bottom:43.200000px;}
.y18b{bottom:54.540000px;}
.y24d{bottom:54.900000px;}
.y1b2{bottom:54.945000px;}
.y259{bottom:55.074000px;}
.y1b6{bottom:55.080000px;}
.y1ba{bottom:55.110000px;}
.y23d{bottom:55.260000px;}
.y221{bottom:56.340000px;}
.y233{bottom:56.880000px;}
.y2{bottom:57.780000px;}
.y258{bottom:72.174000px;}
.y1bd{bottom:72.180000px;}
.y1b1{bottom:72.225000px;}
.y1b5{bottom:72.360000px;}
.y1b9{bottom:72.390000px;}
.y1e{bottom:72.540000px;}
.y232{bottom:74.160000px;}
.y1{bottom:78.480000px;}
.y257{bottom:89.454000px;}
.y253{bottom:89.460000px;}
.y1b8{bottom:89.490000px;}
.y1bf{bottom:89.505000px;}
.y264{bottom:89.640000px;}
.y256{bottom:106.734000px;}
.y252{bottom:106.740000px;}
.y245{bottom:106.785000px;}
.y1d{bottom:108.720000px;}
.y251{bottom:111.960000px;}
.y18{bottom:114.660000px;}
.y16{bottom:121.680000px;}
.y255{bottom:123.336000px;}
.y263{bottom:124.020000px;}
.y250{bottom:124.050000px;}
.y1c5{bottom:125.496000px;}
.y1e3{bottom:132.840000px;}
.y2e5{bottom:137.520000px;}
.y262{bottom:141.300000px;}
.y24f{bottom:141.330000px;}
.y301{bottom:142.380000px;}
.y1c4{bottom:142.776000px;}
.y61{bottom:144.180000px;}
.y268{bottom:146.520000px;}
.y100{bottom:146.700000px;}
.y189{bottom:147.060000px;}
.y202{bottom:147.960000px;}
.yce{bottom:148.500000px;}
.ya2{bottom:150.300000px;}
.y2c8{bottom:150.660000px;}
.y306{bottom:155.520000px;}
.y150{bottom:156.240000px;}
.y28f{bottom:156.600000px;}
.y2d9{bottom:157.680000px;}
.y267{bottom:158.580000px;}
.y261{bottom:158.625000px;}
.y15{bottom:159.510000px;}
.y1c3{bottom:159.870000px;}
.y166{bottom:161.490000px;}
.y1e2{bottom:164.010000px;}
.y2e4{bottom:168.510000px;}
.y26e{bottom:171.030000px;}
.y300{bottom:173.550000px;}
.y60{bottom:175.170000px;}
.y266{bottom:175.710000px;}
.y260{bottom:175.905000px;}
.y1c2{bottom:177.150000px;}
.yff{bottom:177.690000px;}
.y188{bottom:178.230000px;}
.y201{bottom:178.950000px;}
.ycd{bottom:179.670000px;}
.ya1{bottom:181.470000px;}
.y2c0{bottom:181.650000px;}
.y117{bottom:184.890000px;}
.y305{bottom:186.690000px;}
.y14f{bottom:187.230000px;}
.y28e{bottom:187.770000px;}
.y2d8{bottom:188.670000px;}
.y42{bottom:191.910000px;}
.y165{bottom:192.630000px;}
.y1c1{bottom:194.430000px;}
.y1e1{bottom:194.970000px;}
.y2e3{bottom:199.650000px;}
.y14{bottom:200.190000px;}
.y26d{bottom:200.550000px;}
.y2b0{bottom:200.910000px;}
.y2ff{bottom:204.510000px;}
.y288{bottom:204.690000px;}
.y5f{bottom:206.310000px;}
.yfe{bottom:208.830000px;}
.y187{bottom:209.190000px;}
.y200{bottom:210.090000px;}
.ycc{bottom:210.630000px;}
.y1c0{bottom:211.710000px;}
.ya0{bottom:212.430000px;}
.y2bf{bottom:212.790000px;}
.ye4{bottom:215.850000px;}
.y304{bottom:217.650000px;}
.y26c{bottom:217.830000px;}
.y14e{bottom:218.370000px;}
.y28d{bottom:218.730000px;}
.y2d7{bottom:219.810000px;}
.y164{bottom:223.590000px;}
.y1e0{bottom:226.110000px;}
.y1be{bottom:226.470000px;}
.y41{bottom:228.090000px;}
.y2e2{bottom:230.610000px;}
.y2af{bottom:231.870000px;}
.y127{bottom:232.770000px;}
.y26b{bottom:235.110000px;}
.y2fe{bottom:235.650000px;}
.y5e{bottom:237.270000px;}
.yfd{bottom:239.790000px;}
.y186{bottom:240.330000px;}
.y13{bottom:240.870000px;}
.y1ff{bottom:241.050000px;}
.ycb{bottom:241.770000px;}
.y287{bottom:242.670000px;}
.y9f{bottom:243.570000px;}
.y2be{bottom:243.750000px;}
.y254{bottom:244.830000px;}
.ye3{bottom:246.990000px;}
.y303{bottom:248.790000px;}
.y14d{bottom:249.330000px;}
.y28c{bottom:249.690000px;}
.y2d6{bottom:250.770000px;}
.y26a{bottom:252.210000px;}
.y2cb{bottom:252.750000px;}
.y163{bottom:254.730000px;}
.y1df{bottom:257.070000px;}
.y2e1{bottom:261.750000px;}
.y2ae{bottom:263.010000px;}
.y126{bottom:263.910000px;}
.y40{bottom:264.450000px;}
.y2fd{bottom:266.610000px;}
.y286{bottom:266.790000px;}
.y5d{bottom:268.410000px;}
.y269{bottom:269.490000px;}
.yfc{bottom:270.930000px;}
.y185{bottom:271.290000px;}
.y1fe{bottom:272.190000px;}
.yca{bottom:272.730000px;}
.y9e{bottom:274.530000px;}
.y2c7{bottom:274.890000px;}
.y116{bottom:277.950000px;}
.y302{bottom:279.750000px;}
.y28b{bottom:280.830000px;}
.y12{bottom:281.730000px;}
.y2d5{bottom:281.910000px;}
.ye2{bottom:284.070000px;}
.y265{bottom:284.295000px;}
.y162{bottom:285.690000px;}
.y14c{bottom:286.590000px;}
.y1de{bottom:288.210000px;}
.y2e0{bottom:292.710000px;}
.y2ad{bottom:293.970000px;}
.y125{bottom:294.870000px;}
.y2fc{bottom:297.750000px;}
.y285{bottom:297.930000px;}
.y5c{bottom:299.370000px;}
.y3f{bottom:300.630000px;}
.yfb{bottom:301.890000px;}
.y184{bottom:302.430000px;}
.y1fd{bottom:303.150000px;}
.y9d{bottom:305.670000px;}
.y2bd{bottom:305.850000px;}
.yc9{bottom:309.810000px;}
.y2ca{bottom:310.890000px;}
.y132{bottom:311.790000px;}
.y2d4{bottom:312.870000px;}
.y115{bottom:315.030000px;}
.y11{bottom:315.570000px;}
.y161{bottom:316.830000px;}
.y299{bottom:317.910000px;}
.y1dd{bottom:319.170000px;}
.y2df{bottom:323.850000px;}
.y2ac{bottom:325.110000px;}
.y3c{bottom:325.290000px;}
.y124{bottom:326.010000px;}
.y2fb{bottom:328.710000px;}
.y284{bottom:328.890000px;}
.y5b{bottom:330.510000px;}
.y1bc{bottom:330.735000px;}
.y21f{bottom:331.050000px;}
.y24e{bottom:331.815000px;}
.y183{bottom:333.390000px;}
.y1fc{bottom:334.290000px;}
.y9c{bottom:336.630000px;}
.y3e{bottom:336.810000px;}
.y2bc{bottom:336.990000px;}
.ye1{bottom:338.970000px;}
.yfa{bottom:339.150000px;}
.y14b{bottom:341.490000px;}
.y2c9{bottom:341.850000px;}
.y131{bottom:342.930000px;}
.y2d3{bottom:344.010000px;}
.y160{bottom:347.790000px;}
.y1dc{bottom:350.310000px;}
.y10{bottom:353.370000px;}
.y2de{bottom:354.810000px;}
.y2ab{bottom:356.070000px;}
.y3b{bottom:356.250000px;}
.y123{bottom:356.970000px;}
.y2fa{bottom:359.850000px;}
.y283{bottom:360.030000px;}
.y21e{bottom:362.190000px;}
.y3d{bottom:363.450000px;}
.y182{bottom:364.530000px;}
.yc8{bottom:364.890000px;}
.y114{bottom:367.050000px;}
.y9b{bottom:367.770000px;}
.y2bb{bottom:367.950000px;}
.ye0{bottom:370.110000px;}
.y5a{bottom:370.470000px;}
.y1fb{bottom:371.370000px;}
.y14a{bottom:372.450000px;}
.y298{bottom:372.990000px;}
.y130{bottom:373.890000px;}
.y2d2{bottom:374.970000px;}
.y78{bottom:378.570000px;}
.y1db{bottom:381.270000px;}
.y2dd{bottom:385.950000px;}
.y3a{bottom:387.390000px;}
.y15f{bottom:387.930000px;}
.y122{bottom:388.110000px;}
.y2f9{bottom:390.810000px;}
.y282{bottom:390.990000px;}
.y21d{bottom:393.150000px;}
.yf9{bottom:394.050000px;}
.yf{bottom:394.230000px;}
.yc7{bottom:395.850000px;}
.y113{bottom:398.190000px;}
.y2aa{bottom:398.370000px;}
.y9a{bottom:398.730000px;}
.y2ba{bottom:399.090000px;}
.ydf{bottom:401.070000px;}
.y181{bottom:401.610000px;}
.y149{bottom:403.590000px;}
.y297{bottom:403.950000px;}
.y12f{bottom:405.030000px;}
.y2d1{bottom:406.110000px;}
.y59{bottom:410.655000px;}
.y1da{bottom:412.455000px;}
.y1b7{bottom:417.675000px;}
.y39{bottom:418.395000px;}
.y77{bottom:418.575000px;}
.y2f8{bottom:421.995000px;}
.y281{bottom:422.175000px;}
.y21c{bottom:424.335000px;}
.yf8{bottom:425.235000px;}
.y1fa{bottom:426.315000px;}
.yc6{bottom:427.035000px;}
.y2dc{bottom:428.295000px;}
.y99{bottom:429.915000px;}
.y2b9{bottom:430.095000px;}
.y148{bottom:434.595000px;}
.ye{bottom:434.955000px;}
.y296{bottom:435.135000px;}
.y112{bottom:435.315000px;}
.y12e{bottom:436.035000px;}
.y2d0{bottom:437.115000px;}
.yde{bottom:441.255000px;}
.y58{bottom:441.615000px;}
.y1d9{bottom:443.415000px;}
.y15e{bottom:445.935000px;}
.y38{bottom:449.535000px;}
.y2f7{bottom:452.955000px;}
.y280{bottom:453.135000px;}
.y180{bottom:455.295000px;}
.yf7{bottom:456.195000px;}
.y1f9{bottom:457.455000px;}
.yc5{bottom:457.995000px;}
.y76{bottom:458.715000px;}
.y98{bottom:460.875000px;}
.y2b8{bottom:461.235000px;}
.y2a9{bottom:462.495000px;}
.y147{bottom:465.735000px;}
.y295{bottom:466.095000px;}
.y12d{bottom:467.175000px;}
.y2cf{bottom:468.255000px;}
.y57{bottom:472.755000px;}
.y121{bottom:474.195000px;}
.y1d8{bottom:474.555000px;}
.y25f{bottom:474.765000px;}
.yd{bottom:475.635000px;}
.y15d{bottom:477.075000px;}
.y37{bottom:480.495000px;}
.y17f{bottom:483.735000px;}
.y2f6{bottom:484.095000px;}
.y27f{bottom:484.275000px;}
.y21b{bottom:486.435000px;}
.y24c{bottom:487.905000px;}
.y1f8{bottom:488.415000px;}
.yc4{bottom:489.135000px;}
.y75{bottom:489.675000px;}
.y111{bottom:490.215000px;}
.y97{bottom:492.015000px;}
.y2b7{bottom:492.195000px;}
.yf6{bottom:493.275000px;}
.y146{bottom:496.695000px;}
.y294{bottom:497.235000px;}
.y2a8{bottom:497.415000px;}
.y12c{bottom:498.135000px;}
.ydd{bottom:499.215000px;}
.y56{bottom:503.715000px;}
.y120{bottom:505.335000px;}
.y1d7{bottom:505.515000px;}
.y1c{bottom:508.035000px;}
.y36{bottom:511.635000px;}
.y2a7{bottom:514.695000px;}
.y2f5{bottom:515.055000px;}
.y27e{bottom:515.235000px;}
.y1f7{bottom:519.555000px;}
.y17e{bottom:519.915000px;}
.yc3{bottom:520.095000px;}
.y74{bottom:520.815000px;}
.y110{bottom:521.355000px;}
.y1b4{bottom:521.925000px;}
.y96{bottom:522.975000px;}
.y2b6{bottom:523.335000px;}
.y21a{bottom:523.515000px;}
.y145{bottom:527.835000px;}
.y293{bottom:528.195000px;}
.y12b{bottom:529.275000px;}
.y2a6{bottom:529.455000px;}
.ydc{bottom:530.355000px;}
.y55{bottom:534.675000px;}
.y11f{bottom:536.295000px;}
.y1d6{bottom:536.655000px;}
.y15c{bottom:539.175000px;}
.y35{bottom:542.595000px;}
.y2f4{bottom:546.195000px;}
.y27d{bottom:546.375000px;}
.yf5{bottom:548.355000px;}
.y1f6{bottom:550.515000px;}
.yc2{bottom:551.235000px;}
.y73{bottom:551.775000px;}
.y10f{bottom:552.315000px;}
.y95{bottom:554.115000px;}
.y2b5{bottom:554.295000px;}
.y248{bottom:557.565000px;}
.y292{bottom:559.335000px;}
.y12a{bottom:560.235000px;}
.ydb{bottom:561.315000px;}
.y2a5{bottom:564.735000px;}
.y144{bottom:564.915000px;}
.y54{bottom:565.815000px;}
.y1d5{bottom:567.615000px;}
.y15b{bottom:570.135000px;}
.y11e{bottom:573.375000px;}
.y34{bottom:573.735000px;}
.y17d{bottom:575.895000px;}
.y2f3{bottom:577.155000px;}
.yf4{bottom:579.315000px;}
.y1f5{bottom:581.655000px;}
.yc1{bottom:582.195000px;}
.y72{bottom:582.915000px;}
.y10e{bottom:583.455000px;}
.y192{bottom:584.175000px;}
.y94{bottom:585.075000px;}
.y2b4{bottom:585.255000px;}
.y291{bottom:590.295000px;}
.y129{bottom:591.375000px;}
.yda{bottom:592.455000px;}
.y53{bottom:596.775000px;}
.y1d4{bottom:598.755000px;}
.y2a4{bottom:599.835000px;}
.y15a{bottom:601.275000px;}
.y33{bottom:604.695000px;}
.y2f2{bottom:608.295000px;}
.y1b0{bottom:609.045000px;}
.yf3{bottom:610.455000px;}
.y1f4{bottom:612.615000px;}
.y244{bottom:612.825000px;}
.yc0{bottom:613.335000px;}
.y71{bottom:613.875000px;}
.y10d{bottom:614.415000px;}
.yc{bottom:615.315000px;}
.y93{bottom:616.215000px;}
.y2b3{bottom:616.395000px;}
.y143{bottom:619.995000px;}
.y290{bottom:621.255000px;}
.y212{bottom:622.155000px;}
.y11d{bottom:622.335000px;}
.yd9{bottom:623.415000px;}
.y52{bottom:627.915000px;}
.y1d3{bottom:629.715000px;}
.y159{bottom:632.235000px;}
.y17c{bottom:632.955000px;}
.y2a3{bottom:635.115000px;}
.y32{bottom:635.655000px;}
.y27c{bottom:638.355000px;}
.y2f1{bottom:639.255000px;}
.y16d{bottom:643.395000px;}
.y1f3{bottom:643.755000px;}
.ybf{bottom:644.295000px;}
.y10c{bottom:645.555000px;}
.yb{bottom:646.455000px;}
.y92{bottom:647.175000px;}
.y2b2{bottom:647.355000px;}
.y228{bottom:648.435000px;}
.yf2{bottom:650.415000px;}
.yb2{bottom:652.395000px;}
.y211{bottom:653.115000px;}
.y11c{bottom:653.505000px;}
.y70{bottom:654.045000px;}
.yd8{bottom:654.585000px;}
.y51{bottom:658.905000px;}
.y17{bottom:659.985000px;}
.y1d2{bottom:660.885000px;}
.y17b{bottom:661.425000px;}
.y219{bottom:661.605000px;}
.y158{bottom:663.405000px;}
.y13d{bottom:664.485000px;}
.y25d{bottom:665.430000px;}
.y19e{bottom:666.465000px;}
.y31{bottom:666.825000px;}
.y238{bottom:668.265000px;}
.y27b{bottom:669.525000px;}
.y2a2{bottom:670.425000px;}
.y16c{bottom:674.385000px;}
.y1f2{bottom:674.745000px;}
.ybe{bottom:675.465000px;}
.y10b{bottom:676.545000px;}
.ya{bottom:677.445000px;}
.y91{bottom:678.345000px;}
.y2b1{bottom:678.525000px;}
.yb1{bottom:683.385000px;}
.y210{bottom:684.285000px;}
.y11b{bottom:684.465000px;}
.yd7{bottom:685.545000px;}
.y17a{bottom:689.865000px;}
.y50{bottom:690.045000px;}
.y128{bottom:690.585000px;}
.y2ce{bottom:691.665000px;}
.y6f{bottom:694.005000px;}
.y157{bottom:694.365000px;}
.y194{bottom:695.985000px;}
.y1ae{bottom:696.030000px;}
.y30{bottom:697.785000px;}
.y1d1{bottom:697.965000px;}
.y13f{bottom:699.765000px;}
.y27a{bottom:700.485000px;}
.y2f0{bottom:701.385000px;}
.y16b{bottom:705.345000px;}
.y2a1{bottom:705.705000px;}
.y1f1{bottom:705.885000px;}
.ybd{bottom:706.425000px;}
.y10a{bottom:707.685000px;}
.yf1{bottom:708.585000px;}
.y90{bottom:709.305000px;}
.y2c6{bottom:709.485000px;}
.y9{bottom:713.085000px;}
.yb0{bottom:714.525000px;}
.y20f{bottom:715.245000px;}
.y11a{bottom:715.605000px;}
.y179{bottom:718.305000px;}
.y218{bottom:718.485000px;}
.y4f{bottom:721.005000px;}
.y28a{bottom:721.545000px;}
.yd6{bottom:722.625000px;}
.y6e{bottom:725.145000px;}
.y156{bottom:725.505000px;}
.y82{bottom:727.665000px;}
.y2f{bottom:728.925000px;}
.y279{bottom:731.625000px;}
.y2ef{bottom:732.345000px;}
.y243{bottom:734.370000px;}
.y16a{bottom:736.485000px;}
.y1f0{bottom:736.845000px;}
.ybc{bottom:737.565000px;}
.y13c{bottom:738.105000px;}
.y109{bottom:738.645000px;}
.yf0{bottom:739.545000px;}
.y8f{bottom:740.445000px;}
.y2c5{bottom:740.625000px;}
.y29f{bottom:740.985000px;}
.y19b{bottom:741.165000px;}
.yaf{bottom:745.485000px;}
.y20e{bottom:746.385000px;}
.y119{bottom:746.565000px;}
.y178{bottom:746.745000px;}
.y217{bottom:746.925000px;}
.y8{bottom:748.545000px;}
.y1ad{bottom:751.830000px;}
.y4e{bottom:752.145000px;}
.y1d0{bottom:752.865000px;}
.y6d{bottom:756.105000px;}
.y155{bottom:756.465000px;}
.y2e{bottom:759.885000px;}
.y278{bottom:762.585000px;}
.y2ee{bottom:763.485000px;}
.y22a{bottom:764.025000px;}
.y81{bottom:765.285000px;}
.y13b{bottom:766.545000px;}
.y169{bottom:767.445000px;}
.y1ef{bottom:767.985000px;}
.yef{bottom:770.685000px;}
.y8e{bottom:771.405000px;}
.y2c4{bottom:771.585000px;}
.y242{bottom:772.890000px;}
.ybb{bottom:774.645000px;}
.y177{bottom:775.365000px;}
.y108{bottom:775.725000px;}
.y29d{bottom:776.085000px;}
.yae{bottom:776.625000px;}
.y20d{bottom:777.345000px;}
.yd5{bottom:777.705000px;}
.y4d{bottom:783.105000px;}
.y7{bottom:784.005000px;}
.y6c{bottom:787.245000px;}
.y154{bottom:787.605000px;}
.y22f{bottom:789.765000px;}
.y2d{bottom:791.025000px;}
.y277{bottom:793.725000px;}
.y2ed{bottom:794.445000px;}
.y198{bottom:797.325000px;}
.y13a{bottom:797.505000px;}
.y168{bottom:798.585000px;}
.y1ee{bottom:798.945000px;}
.yee{bottom:801.645000px;}
.y25c{bottom:801.690000px;}
.y8d{bottom:802.545000px;}
.y2c3{bottom:802.725000px;}
.y176{bottom:803.805000px;}
.yad{bottom:807.585000px;}
.y20c{bottom:808.485000px;}
.yd4{bottom:808.665000px;}
.y29c{bottom:808.845000px;}
.y6{bottom:811.005000px;}
.y4c{bottom:814.245000px;}
.y1cf{bottom:814.965000px;}
.y6b{bottom:818.205000px;}
.y190{bottom:819.825000px;}
.y2c{bottom:821.985000px;}
.y25b{bottom:822.420000px;}
.y80{bottom:823.605000px;}
.y2ec{bottom:825.585000px;}
.y153{bottom:827.565000px;}
.y22e{bottom:828.105000px;}
.y139{bottom:828.645000px;}
.yba{bottom:829.545000px;}
.y1ed{bottom:830.085000px;}
.y107{bottom:830.805000px;}
.y175{bottom:832.245000px;}
.yed{bottom:832.785000px;}
.y8c{bottom:833.505000px;}
.y2c2{bottom:833.685000px;}
.y1ac{bottom:838.005000px;}
.yac{bottom:838.725000px;}
.yd3{bottom:839.805000px;}
.y29b{bottom:844.125000px;}
.y4b{bottom:845.205000px;}
.y1ce{bottom:846.105000px;}
.y20b{bottom:848.445000px;}
.y6a{bottom:849.345000px;}
.y2b{bottom:853.125000px;}
.y2eb{bottom:856.545000px;}
.y138{bottom:859.605000px;}
.yb9{bottom:860.685000px;}
.y1ec{bottom:861.045000px;}
.y106{bottom:861.765000px;}
.y7f{bottom:863.745000px;}
.y8b{bottom:864.645000px;}
.y2db{bottom:864.825000px;}
.yab{bottom:869.685000px;}
.yd2{bottom:870.765000px;}
.y152{bottom:872.025000px;}
.y2c1{bottom:873.825000px;}
.y4a{bottom:876.345000px;}
.y1cd{bottom:877.065000px;}
.y69{bottom:880.305000px;}
.y29a{bottom:882.645000px;}
.y2a{bottom:884.085000px;}
.y276{bottom:885.885000px;}
.y226{bottom:886.065000px;}
.y2ea{bottom:887.685000px;}
.y174{bottom:889.125000px;}
.y137{bottom:890.745000px;}
.yb8{bottom:891.645000px;}
.y1eb{bottom:892.185000px;}
.y105{bottom:892.905000px;}
.yec{bottom:894.885000px;}
.y20a{bottom:895.425000px;}
.y8a{bottom:895.605000px;}
.yaa{bottom:900.870000px;}
.yd1{bottom:901.950000px;}
.y7e{bottom:903.750000px;}
.y2da{bottom:904.830000px;}
.y49{bottom:907.350000px;}
.y118{bottom:907.890000px;}
.y1a5{bottom:911.310000px;}
.y68{bottom:911.490000px;}
.y209{bottom:912.750000px;}
.y1cc{bottom:914.190000px;}
.y29{bottom:915.270000px;}
.y275{bottom:916.890000px;}
.y173{bottom:917.610000px;}
.y216{bottom:917.790000px;}
.y2e9{bottom:918.690000px;}
.y136{bottom:921.750000px;}
.yb7{bottom:922.830000px;}
.y1ea{bottom:923.190000px;}
.yeb{bottom:925.890000px;}
.y89{bottom:926.790000px;}
.y208{bottom:927.510000px;}
.y151{bottom:928.590000px;}
.y104{bottom:930.030000px;}
.ya9{bottom:931.830000px;}
.yd0{bottom:932.910000px;}
.y48{bottom:938.490000px;}
.y67{bottom:942.450000px;}
.y7d{bottom:943.890000px;}
.y172{bottom:946.050000px;}
.y28{bottom:946.230000px;}
.y274{bottom:947.850000px;}
.y2e8{bottom:949.830000px;}
.y135{bottom:952.890000px;}
.yb6{bottom:953.790000px;}
.yea{bottom:956.850000px;}
.y88{bottom:957.750000px;}
.y1e9{bottom:960.270000px;}
.y196{bottom:962.790000px;}
.ya8{bottom:962.970000px;}
.y2cd{bottom:964.050000px;}
.y23a{bottom:964.950000px;}
.y1cb{bottom:969.270000px;}
.y47{bottom:969.450000px;}
.y289{bottom:969.810000px;}
.ycf{bottom:969.990000px;}
.y66{bottom:973.590000px;}
.y171{bottom:974.490000px;}
.y215{bottom:974.670000px;}
.y27{bottom:977.370000px;}
.y273{bottom:978.990000px;}
.y2e7{bottom:980.790000px;}
.y7c{bottom:983.850000px;}
.yb5{bottom:984.930000px;}
.ye9{bottom:987.990000px;}
.y87{bottom:988.890000px;}
.y167{bottom:992.130000px;}
.y18a{bottom:992.850000px;}
.ya7{bottom:993.930000px;}
.y207{bottom:997.890000px;}
.y1a8{bottom:999.510000px;}
.y46{bottom:1000.590000px;}
.y2cc{bottom:1001.130000px;}
.y170{bottom:1002.930000px;}
.y214{bottom:1003.110000px;}
.y65{bottom:1004.550000px;}
.y1ca{bottom:1007.070000px;}
.y26{bottom:1008.330000px;}
.y272{bottom:1009.950000px;}
.y134{bottom:1014.990000px;}
.y1e8{bottom:1015.350000px;}
.y103{bottom:1016.070000px;}
.ye8{bottom:1018.950000px;}
.y86{bottom:1019.850000px;}
.y2e6{bottom:1023.090000px;}
.y7b{bottom:1023.990000px;}
.yb4{bottom:1024.890000px;}
.ya6{bottom:1025.070000px;}
.y1c9{bottom:1031.370000px;}
.y45{bottom:1031.550000px;}
.y206{bottom:1033.170000px;}
.y64{bottom:1035.690000px;}
.y22c{bottom:1037.490000px;}
.y25{bottom:1039.470000px;}
.y271{bottom:1041.090000px;}
.y1e7{bottom:1046.310000px;}
.y102{bottom:1047.030000px;}
.ye7{bottom:1050.090000px;}
.y85{bottom:1050.990000px;}
.y133{bottom:1054.950000px;}
.ya5{bottom:1056.030000px;}
.y220{bottom:1059.810000px;}
.y16f{bottom:1059.990000px;}
.y1c8{bottom:1062.330000px;}
.y5{bottom:1062.510000px;}
.y44{bottom:1062.690000px;}
.y7a{bottom:1063.950000px;}
.y63{bottom:1066.650000px;}
.y205{bottom:1068.450000px;}
.y24{bottom:1070.430000px;}
.y270{bottom:1072.050000px;}
.y1e6{bottom:1077.450000px;}
.y101{bottom:1078.170000px;}
.ye6{bottom:1081.050000px;}
.y84{bottom:1081.950000px;}
.yb3{bottom:1085.190000px;}
.ya4{bottom:1087.170000px;}
.y16e{bottom:1088.430000px;}
.y1c7{bottom:1093.470000px;}
.y62{bottom:1097.790000px;}
.y4{bottom:1101.210000px;}
.y23{bottom:1101.570000px;}
.y43{bottom:1102.650000px;}
.y204{bottom:1103.730000px;}
.y79{bottom:1106.250000px;}
.y1e5{bottom:1108.410000px;}
.y26f{bottom:1109.130000px;}
.y83{bottom:1115.250000px;}
.y213{bottom:1116.870000px;}
.ya3{bottom:1118.130000px;}
.ye5{bottom:1118.310000px;}
.y1c6{bottom:1130.550000px;}
.y22{bottom:1134.870000px;}
.y3{bottom:1137.750000px;}
.y1e4{bottom:1139.550000px;}
.y203{bottom:1142.250000px;}
.y21{bottom:1171.080000px;}
.y20{bottom:1191.780000px;}
.h12{height:17.280000px;}
.h40{height:32.040000px;}
.hf{height:34.380000px;}
.h21{height:34.560000px;}
.h13{height:34.596000px;}
.h1f{height:36.360000px;}
.h1e{height:36.540000px;}
.h31{height:37.080000px;}
.h36{height:37.476000px;}
.h3c{height:38.158594px;}
.h1b{height:38.340000px;}
.h34{height:41.220000px;}
.h1c{height:42.120000px;}
.h33{height:45.000000px;}
.h2a{height:47.344922px;}
.h24{height:51.840000px;}
.h39{height:53.573906px;}
.h38{height:54.540000px;}
.h20{height:55.260000px;}
.h1d{height:57.240000px;}
.h9{height:58.621992px;}
.h10{height:58.651172px;}
.h26{height:59.038594px;}
.h17{height:60.226875px;}
.h2b{height:64.978594px;}
.h14{height:65.010937px;}
.h15{height:68.400000px;}
.h3a{height:68.940000px;}
.h35{height:69.300000px;}
.he{height:69.660000px;}
.h2c{height:70.380000px;}
.hb{height:70.628906px;}
.h2{height:70.664062px;}
.hd{height:71.824219px;}
.h3{height:72.562500px;}
.h11{height:74.004654px;}
.hc{height:74.704922px;}
.h41{height:74.824922px;}
.h42{height:74.884922px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h29{height:86.220000px;}
.h25{height:86.256000px;}
.h27{height:86.400000px;}
.ha{height:87.695156px;}
.h32{height:88.020000px;}
.h18{height:96.336000px;}
.h4{height:96.508125px;}
.h2e{height:100.656000px;}
.h28{height:103.536000px;}
.h2f{height:106.200000px;}
.h30{height:111.636000px;}
.h19{height:112.500000px;}
.h1a{height:120.060000px;}
.h3e{height:120.600000px;}
.h3d{height:120.780000px;}
.h37{height:120.816000px;}
.h2d{height:120.996000px;}
.h16{height:122.616000px;}
.h8{height:128.340000px;}
.h7{height:134.280000px;}
.h3b{height:155.370000px;}
.h3f{height:189.750000px;}
.h22{height:893.160000px;}
.h23{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:27.180000px;}
.we{width:27.900000px;}
.w27{width:28.440000px;}
.wc{width:29.916000px;}
.w2a{width:30.240000px;}
.wf{width:30.276000px;}
.w29{width:30.780000px;}
.w28{width:31.140000px;}
.w31{width:60.120000px;}
.w19{width:72.000000px;}
.w25{width:72.900000px;}
.w1a{width:76.320000px;}
.w33{width:79.596000px;}
.w3d{width:82.260000px;}
.w1f{width:82.980000px;}
.w37{width:83.880000px;}
.w23{width:87.840000px;}
.w1b{width:90.036000px;}
.w20{width:91.836000px;}
.w22{width:92.916000px;}
.w3b{width:95.400000px;}
.w38{width:98.676000px;}
.w21{width:99.540000px;}
.w3a{width:99.756000px;}
.w24{width:104.076000px;}
.w39{width:105.480000px;}
.w3c{width:109.296000px;}
.w32{width:110.340000px;}
.w2e{width:136.080000px;}
.wa{width:147.456000px;}
.w8{width:152.640000px;}
.w7{width:153.210000px;}
.w9{width:154.110000px;}
.w1e{width:169.770000px;}
.w35{width:169.920000px;}
.w2b{width:207.030000px;}
.w1d{width:210.090000px;}
.w10{width:214.050000px;}
.w13{width:221.070000px;}
.w11{width:266.790000px;}
.w2c{width:267.015000px;}
.w34{width:289.290000px;}
.w30{width:290.955000px;}
.w36{width:292.755000px;}
.w15{width:300.495000px;}
.wb{width:308.775000px;}
.w2f{width:310.755000px;}
.w14{width:316.515000px;}
.w5{width:317.910000px;}
.w6{width:317.955000px;}
.w2d{width:330.375000px;}
.w12{width:332.850000px;}
.w26{width:378.075000px;}
.w1c{width:384.150000px;}
.w4{width:565.665000px;}
.w3{width:570.525000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w17{width:1262.250000px;}
.w18{width:1262.519981px;}
.w16{width:1262.520000px;}
.x0{left:0.000000px;}
.x58{left:7.740000px;}
.xf{left:10.800000px;}
.x49{left:12.060000px;}
.x51{left:13.320000px;}
.x3a{left:14.436000px;}
.x3d{left:16.920000px;}
.x27{left:18.930000px;}
.x29{left:20.910000px;}
.x7e{left:22.320000px;}
.x84{left:23.400000px;}
.x31{left:24.690000px;}
.x80{left:25.740000px;}
.x2d{left:26.814000px;}
.x2f{left:28.980000px;}
.x85{left:31.500000px;}
.x33{left:32.625000px;}
.x64{left:39.600000px;}
.x35{left:40.680000px;}
.x6f{left:41.940000px;}
.x43{left:43.200000px;}
.x4c{left:44.820000px;}
.x65{left:46.440000px;}
.x57{left:47.880000px;}
.x71{left:49.500000px;}
.x67{left:51.300000px;}
.x36{left:52.605000px;}
.x42{left:54.540000px;}
.x4a{left:59.760000px;}
.x55{left:62.280000px;}
.x34{left:65.514000px;}
.x6e{left:66.960000px;}
.x6d{left:79.200000px;}
.x3b{left:80.460000px;}
.x28{left:82.470000px;}
.x38{left:83.694000px;}
.x2a{left:85.350000px;}
.x25{left:89.094000px;}
.x45{left:91.845000px;}
.x41{left:93.960000px;}
.x6b{left:97.416000px;}
.x6a{left:99.216000px;}
.x17{left:106.415987px;}
.x2{left:108.035987px;}
.x3f{left:112.725000px;}
.x68{left:117.765000px;}
.x54{left:121.320000px;}
.x12{left:126.035987px;}
.x4e{left:127.655981px;}
.x47{left:132.150000px;}
.x19{left:133.415987px;}
.x21{left:137.915987px;}
.x22{left:138.995987px;}
.x13{left:144.035987px;}
.x1e{left:149.975987px;}
.x39{left:154.479000px;}
.x66{left:159.330000px;}
.x1d{left:160.409987px;}
.x14{left:162.029987px;}
.x70{left:165.105000px;}
.xe{left:166.530000px;}
.x10{left:168.150000px;}
.x3e{left:173.370000px;}
.x15{left:180.029987px;}
.x5a{left:181.649987px;}
.x4b{left:182.730000px;}
.x20{left:187.409987px;}
.x69{left:189.045000px;}
.x7d{left:191.730000px;}
.x44{left:197.670000px;}
.x50{left:201.090000px;}
.x37{left:206.129987px;}
.x5e{left:212.070000px;}
.x1f{left:214.409987px;}
.x3{left:275.654987px;}
.x52{left:278.130000px;}
.x2e{left:288.075000px;}
.x7f{left:291.135000px;}
.x7c{left:294.014987px;}
.x5d{left:296.894987px;}
.xa{left:299.594987px;}
.x5f{left:304.635000px;}
.x24{left:308.234987px;}
.x4{left:309.314987px;}
.x46{left:314.175000px;}
.x8{left:316.334987px;}
.x2c{left:328.214987px;}
.x72{left:355.575000px;}
.x53{left:368.895000px;}
.x75{left:380.775000px;}
.x9{left:389.414987px;}
.x81{left:397.335000px;}
.x60{left:404.895000px;}
.x7{left:408.674987px;}
.x26{left:425.775000px;}
.x30{left:441.435000px;}
.x11{left:446.684987px;}
.x4f{left:460.694981px;}
.x40{left:466.665000px;}
.x3c{left:470.985000px;}
.xb{left:486.104987px;}
.x6c{left:488.625000px;}
.x61{left:498.705000px;}
.x48{left:519.045000px;}
.xc{left:532.904987px;}
.xd{left:540.104987px;}
.x73{left:550.905000px;}
.x5{left:555.764987px;}
.x62{left:587.265000px;}
.x82{left:593.925000px;}
.x32{left:596.265000px;}
.x78{left:631.364981px;}
.x76{left:670.785000px;}
.x63{left:692.070000px;}
.x83{left:703.950000px;}
.x8a{left:729.869987px;}
.x5c{left:733.829987px;}
.x5b{left:734.909987px;}
.x89{left:735.989987px;}
.x59{left:740.849987px;}
.x87{left:741.929987px;}
.x7a{left:743.009987px;}
.x88{left:747.869987px;}
.x86{left:748.949987px;}
.x6{left:753.269987px;}
.x7b{left:754.889987px;}
.x2b{left:755.969987px;}
.x23{left:761.909987px;}
.x1c{left:767.849987px;}
.x1b{left:768.929987px;}
.x1a{left:774.869987px;}
.x18{left:780.989987px;}
.x1{left:785.309987px;}
.x16{left:786.929987px;}
.x77{left:841.605000px;}
.x56{left:964.590000px;}
.x79{left:1097.249981px;}
.x74{left:1103.219981px;}
.x4d{left:1116.179981px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.666667pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.519467pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.064000pt;}
.ls29{letter-spacing:0.094933pt;}
.ls2b{letter-spacing:0.120533pt;}
.ls7{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.138667pt;}
.ls2f{letter-spacing:0.143787pt;}
.lsc{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.256000pt;}
.ls27{letter-spacing:0.257280pt;}
.ls31{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls38{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.448000pt;}
.ls36{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.800000pt;}
.ls28{letter-spacing:1.920000pt;}
.ls3a{letter-spacing:2.560000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls37{letter-spacing:3.840000pt;}
.ls18{letter-spacing:5.920000pt;}
.ls34{letter-spacing:6.560000pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls20{letter-spacing:9.600000pt;}
.ls2{letter-spacing:10.240000pt;}
.ls3{letter-spacing:11.520000pt;}
.ls35{letter-spacing:14.080000pt;}
.ls14{letter-spacing:18.842027pt;}
.ls1a{letter-spacing:23.146667pt;}
.ls0{letter-spacing:27.360000pt;}
.ls21{letter-spacing:27.648000pt;}
.ls39{letter-spacing:30.186667pt;}
.ls17{letter-spacing:30.208000pt;}
.lsa{letter-spacing:32.000000pt;}
.ls8{letter-spacing:64.000000pt;}
.ls1d{letter-spacing:78.208000pt;}
.ls9{letter-spacing:80.000000pt;}
.ls33{letter-spacing:757.258667pt;}
.wsd{word-spacing:-19.040000pt;}
.ws11{word-spacing:-18.720000pt;}
.ws12{word-spacing:-18.053333pt;}
.ws13{word-spacing:-16.768000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.512000pt;}
.ws21{word-spacing:-16.448000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws14{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.168000pt;}
.ws1e{word-spacing:-14.554880pt;}
.ws18{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws1b{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws16{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.185067pt;}
.ws4{word-spacing:-12.640000pt;}
.wsf{word-spacing:-11.040000pt;}
.ws1a{word-spacing:-10.977280pt;}
.ws20{word-spacing:-10.880000pt;}
.wse{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.ws1d{word-spacing:-10.240000pt;}
.ws17{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._28{margin-left:-15.563307pt;}
._1c{margin-left:-14.506667pt;}
._27{margin-left:-13.290667pt;}
._20{margin-left:-12.234667pt;}
._21{margin-left:-10.282667pt;}
._1e{margin-left:-8.693333pt;}
._1d{margin-left:-7.029333pt;}
._1f{margin-left:-5.493333pt;}
._d{margin-left:-3.968000pt;}
._e{margin-left:-3.051307pt;}
._16{margin-left:-1.984000pt;}
._1{margin-left:-1.048320pt;}
._0{width:1.464960pt;}
._18{width:2.376320pt;}
._c{width:3.794347pt;}
._b{width:4.930987pt;}
._a{width:5.930667pt;}
._13{width:6.940373pt;}
._14{width:7.882667pt;}
._12{width:9.216000pt;}
._15{width:10.218667pt;}
._f{width:11.136000pt;}
._10{width:12.149333pt;}
._11{width:13.482667pt;}
._17{width:14.840107pt;}
._2f{width:15.829760pt;}
._2c{width:17.389653pt;}
._29{width:18.730667pt;}
._2a{width:19.786667pt;}
._2b{width:20.700373pt;}
._2d{width:21.603627pt;}
._2e{width:22.549333pt;}
._30{width:23.691520pt;}
._3c{width:25.242027pt;}
._9{width:26.282880pt;}
._8{width:27.181440pt;}
._7{width:28.273280pt;}
._1a{width:29.760000pt;}
._1b{width:30.773333pt;}
._43{width:31.936000pt;}
._25{width:32.832000pt;}
._44{width:35.669120pt;}
._31{width:36.675200pt;}
._45{width:38.976000pt;}
._32{width:40.862080pt;}
._3b{width:42.867840pt;}
._42{width:44.408320pt;}
._41{width:45.576960pt;}
._38{width:48.786560pt;}
._22{width:50.048000pt;}
._23{width:52.928000pt;}
._4{width:53.988480pt;}
._3d{width:59.760000pt;}
._36{width:66.240640pt;}
._2{width:68.664960pt;}
._3{width:70.141867pt;}
._24{width:74.887040pt;}
._26{width:79.978667pt;}
._3a{width:82.601600pt;}
._37{width:83.580160pt;}
._3f{width:84.938880pt;}
._5{width:92.626560pt;}
._6{width:94.003627pt;}
._34{width:99.759360pt;}
._35{width:100.715520pt;}
._33{width:104.274560pt;}
._3e{width:107.992960pt;}
._40{width:124.619520pt;}
._39{width:215.902080pt;}
._19{width:751.818667pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y237{bottom:-68.506667pt;}
.y236{bottom:-40.826667pt;}
.y1b{bottom:-24.346667pt;}
.y18f{bottom:-15.360000pt;}
.y235{bottom:-13.280000pt;}
.y225{bottom:-11.360000pt;}
.y1a2{bottom:-10.080000pt;}
.y0{bottom:0.000000pt;}
.y18e{bottom:2.400000pt;}
.y141{bottom:2.880000pt;}
.y224{bottom:4.000000pt;}
.y1a7{bottom:4.480000pt;}
.y1a4{bottom:4.640000pt;}
.y231{bottom:5.120000pt;}
.y1a{bottom:5.280000pt;}
.y241{bottom:5.440000pt;}
.y1ab{bottom:6.080000pt;}
.y19a{bottom:6.240000pt;}
.y2a0{bottom:7.520000pt;}
.y1a1{bottom:7.680000pt;}
.y23c{bottom:8.800000pt;}
.y19d{bottom:9.760000pt;}
.y22d{bottom:10.400000pt;}
.y22b{bottom:12.640000pt;}
.y197{bottom:14.080000pt;}
.y195{bottom:15.520000pt;}
.y29e{bottom:16.000000pt;}
.y193{bottom:16.480000pt;}
.y18d{bottom:17.760000pt;}
.y140{bottom:18.080000pt;}
.y142{bottom:18.240000pt;}
.y229{bottom:18.266667pt;}
.y247{bottom:18.280000pt;}
.y23f{bottom:18.400000pt;}
.y24a{bottom:18.720000pt;}
.y223{bottom:19.360000pt;}
.y1a6{bottom:19.840000pt;}
.y1a3{bottom:20.000000pt;}
.y230{bottom:20.480000pt;}
.y24b{bottom:20.640000pt;}
.y240{bottom:20.840000pt;}
.y1aa{bottom:21.440000pt;}
.y199{bottom:21.600000pt;}
.y1a0{bottom:23.040000pt;}
.y23b{bottom:24.160000pt;}
.y19c{bottom:25.120000pt;}
.y13e{bottom:26.240000pt;}
.y227{bottom:27.240000pt;}
.y239{bottom:27.520000pt;}
.y191{bottom:27.680000pt;}
.y1f{bottom:32.160000pt;}
.y18c{bottom:33.120000pt;}
.y25e{bottom:33.440000pt;}
.y1b3{bottom:33.480000pt;}
.y25a{bottom:33.594667pt;}
.y1af{bottom:33.600000pt;}
.y1bb{bottom:33.626667pt;}
.y246{bottom:33.640000pt;}
.y23e{bottom:33.760000pt;}
.y222{bottom:34.720000pt;}
.y234{bottom:35.200000pt;}
.y249{bottom:36.000000pt;}
.y1a9{bottom:36.640000pt;}
.y19{bottom:37.440000pt;}
.y19f{bottom:38.400000pt;}
.y18b{bottom:48.480000pt;}
.y24d{bottom:48.800000pt;}
.y1b2{bottom:48.840000pt;}
.y259{bottom:48.954667pt;}
.y1b6{bottom:48.960000pt;}
.y1ba{bottom:48.986667pt;}
.y23d{bottom:49.120000pt;}
.y221{bottom:50.080000pt;}
.y233{bottom:50.560000pt;}
.y2{bottom:51.360000pt;}
.y258{bottom:64.154667pt;}
.y1bd{bottom:64.160000pt;}
.y1b1{bottom:64.200000pt;}
.y1b5{bottom:64.320000pt;}
.y1b9{bottom:64.346667pt;}
.y1e{bottom:64.480000pt;}
.y232{bottom:65.920000pt;}
.y1{bottom:69.760000pt;}
.y257{bottom:79.514667pt;}
.y253{bottom:79.520000pt;}
.y1b8{bottom:79.546667pt;}
.y1bf{bottom:79.560000pt;}
.y264{bottom:79.680000pt;}
.y256{bottom:94.874667pt;}
.y252{bottom:94.880000pt;}
.y245{bottom:94.920000pt;}
.y1d{bottom:96.640000pt;}
.y251{bottom:99.520000pt;}
.y18{bottom:101.920000pt;}
.y16{bottom:108.160000pt;}
.y255{bottom:109.632000pt;}
.y263{bottom:110.240000pt;}
.y250{bottom:110.266667pt;}
.y1c5{bottom:111.552000pt;}
.y1e3{bottom:118.080000pt;}
.y2e5{bottom:122.240000pt;}
.y262{bottom:125.600000pt;}
.y24f{bottom:125.626667pt;}
.y301{bottom:126.560000pt;}
.y1c4{bottom:126.912000pt;}
.y61{bottom:128.160000pt;}
.y268{bottom:130.240000pt;}
.y100{bottom:130.400000pt;}
.y189{bottom:130.720000pt;}
.y202{bottom:131.520000pt;}
.yce{bottom:132.000000pt;}
.ya2{bottom:133.600000pt;}
.y2c8{bottom:133.920000pt;}
.y306{bottom:138.240000pt;}
.y150{bottom:138.880000pt;}
.y28f{bottom:139.200000pt;}
.y2d9{bottom:140.160000pt;}
.y267{bottom:140.960000pt;}
.y261{bottom:141.000000pt;}
.y15{bottom:141.786667pt;}
.y1c3{bottom:142.106667pt;}
.y166{bottom:143.546667pt;}
.y1e2{bottom:145.786667pt;}
.y2e4{bottom:149.786667pt;}
.y26e{bottom:152.026667pt;}
.y300{bottom:154.266667pt;}
.y60{bottom:155.706667pt;}
.y266{bottom:156.186667pt;}
.y260{bottom:156.360000pt;}
.y1c2{bottom:157.466667pt;}
.yff{bottom:157.946667pt;}
.y188{bottom:158.426667pt;}
.y201{bottom:159.066667pt;}
.ycd{bottom:159.706667pt;}
.ya1{bottom:161.306667pt;}
.y2c0{bottom:161.466667pt;}
.y117{bottom:164.346667pt;}
.y305{bottom:165.946667pt;}
.y14f{bottom:166.426667pt;}
.y28e{bottom:166.906667pt;}
.y2d8{bottom:167.706667pt;}
.y42{bottom:170.586667pt;}
.y165{bottom:171.226667pt;}
.y1c1{bottom:172.826667pt;}
.y1e1{bottom:173.306667pt;}
.y2e3{bottom:177.466667pt;}
.y14{bottom:177.946667pt;}
.y26d{bottom:178.266667pt;}
.y2b0{bottom:178.586667pt;}
.y2ff{bottom:181.786667pt;}
.y288{bottom:181.946667pt;}
.y5f{bottom:183.386667pt;}
.yfe{bottom:185.626667pt;}
.y187{bottom:185.946667pt;}
.y200{bottom:186.746667pt;}
.ycc{bottom:187.226667pt;}
.y1c0{bottom:188.186667pt;}
.ya0{bottom:188.826667pt;}
.y2bf{bottom:189.146667pt;}
.ye4{bottom:191.866667pt;}
.y304{bottom:193.466667pt;}
.y26c{bottom:193.626667pt;}
.y14e{bottom:194.106667pt;}
.y28d{bottom:194.426667pt;}
.y2d7{bottom:195.386667pt;}
.y164{bottom:198.746667pt;}
.y1e0{bottom:200.986667pt;}
.y1be{bottom:201.306667pt;}
.y41{bottom:202.746667pt;}
.y2e2{bottom:204.986667pt;}
.y2af{bottom:206.106667pt;}
.y127{bottom:206.906667pt;}
.y26b{bottom:208.986667pt;}
.y2fe{bottom:209.466667pt;}
.y5e{bottom:210.906667pt;}
.yfd{bottom:213.146667pt;}
.y186{bottom:213.626667pt;}
.y13{bottom:214.106667pt;}
.y1ff{bottom:214.266667pt;}
.ycb{bottom:214.906667pt;}
.y287{bottom:215.706667pt;}
.y9f{bottom:216.506667pt;}
.y2be{bottom:216.666667pt;}
.y254{bottom:217.626667pt;}
.ye3{bottom:219.546667pt;}
.y303{bottom:221.146667pt;}
.y14d{bottom:221.626667pt;}
.y28c{bottom:221.946667pt;}
.y2d6{bottom:222.906667pt;}
.y26a{bottom:224.186667pt;}
.y2cb{bottom:224.666667pt;}
.y163{bottom:226.426667pt;}
.y1df{bottom:228.506667pt;}
.y2e1{bottom:232.666667pt;}
.y2ae{bottom:233.786667pt;}
.y126{bottom:234.586667pt;}
.y40{bottom:235.066667pt;}
.y2fd{bottom:236.986667pt;}
.y286{bottom:237.146667pt;}
.y5d{bottom:238.586667pt;}
.y269{bottom:239.546667pt;}
.yfc{bottom:240.826667pt;}
.y185{bottom:241.146667pt;}
.y1fe{bottom:241.946667pt;}
.yca{bottom:242.426667pt;}
.y9e{bottom:244.026667pt;}
.y2c7{bottom:244.346667pt;}
.y116{bottom:247.066667pt;}
.y302{bottom:248.666667pt;}
.y28b{bottom:249.626667pt;}
.y12{bottom:250.426667pt;}
.y2d5{bottom:250.586667pt;}
.ye2{bottom:252.506667pt;}
.y265{bottom:252.706667pt;}
.y162{bottom:253.946667pt;}
.y14c{bottom:254.746667pt;}
.y1de{bottom:256.186667pt;}
.y2e0{bottom:260.186667pt;}
.y2ad{bottom:261.306667pt;}
.y125{bottom:262.106667pt;}
.y2fc{bottom:264.666667pt;}
.y285{bottom:264.826667pt;}
.y5c{bottom:266.106667pt;}
.y3f{bottom:267.226667pt;}
.yfb{bottom:268.346667pt;}
.y184{bottom:268.826667pt;}
.y1fd{bottom:269.466667pt;}
.y9d{bottom:271.706667pt;}
.y2bd{bottom:271.866667pt;}
.yc9{bottom:275.386667pt;}
.y2ca{bottom:276.346667pt;}
.y132{bottom:277.146667pt;}
.y2d4{bottom:278.106667pt;}
.y115{bottom:280.026667pt;}
.y11{bottom:280.506667pt;}
.y161{bottom:281.626667pt;}
.y299{bottom:282.586667pt;}
.y1dd{bottom:283.706667pt;}
.y2df{bottom:287.866667pt;}
.y2ac{bottom:288.986667pt;}
.y3c{bottom:289.146667pt;}
.y124{bottom:289.786667pt;}
.y2fb{bottom:292.186667pt;}
.y284{bottom:292.346667pt;}
.y5b{bottom:293.786667pt;}
.y1bc{bottom:293.986667pt;}
.y21f{bottom:294.266667pt;}
.y24e{bottom:294.946667pt;}
.y183{bottom:296.346667pt;}
.y1fc{bottom:297.146667pt;}
.y9c{bottom:299.226667pt;}
.y3e{bottom:299.386667pt;}
.y2bc{bottom:299.546667pt;}
.ye1{bottom:301.306667pt;}
.yfa{bottom:301.466667pt;}
.y14b{bottom:303.546667pt;}
.y2c9{bottom:303.866667pt;}
.y131{bottom:304.826667pt;}
.y2d3{bottom:305.786667pt;}
.y160{bottom:309.146667pt;}
.y1dc{bottom:311.386667pt;}
.y10{bottom:314.106667pt;}
.y2de{bottom:315.386667pt;}
.y2ab{bottom:316.506667pt;}
.y3b{bottom:316.666667pt;}
.y123{bottom:317.306667pt;}
.y2fa{bottom:319.866667pt;}
.y283{bottom:320.026667pt;}
.y21e{bottom:321.946667pt;}
.y3d{bottom:323.066667pt;}
.y182{bottom:324.026667pt;}
.yc8{bottom:324.346667pt;}
.y114{bottom:326.266667pt;}
.y9b{bottom:326.906667pt;}
.y2bb{bottom:327.066667pt;}
.ye0{bottom:328.986667pt;}
.y5a{bottom:329.306667pt;}
.y1fb{bottom:330.106667pt;}
.y14a{bottom:331.066667pt;}
.y298{bottom:331.546667pt;}
.y130{bottom:332.346667pt;}
.y2d2{bottom:333.306667pt;}
.y78{bottom:336.506667pt;}
.y1db{bottom:338.906667pt;}
.y2dd{bottom:343.066667pt;}
.y3a{bottom:344.346667pt;}
.y15f{bottom:344.826667pt;}
.y122{bottom:344.986667pt;}
.y2f9{bottom:347.386667pt;}
.y282{bottom:347.546667pt;}
.y21d{bottom:349.466667pt;}
.yf9{bottom:350.266667pt;}
.yf{bottom:350.426667pt;}
.yc7{bottom:351.866667pt;}
.y113{bottom:353.946667pt;}
.y2aa{bottom:354.106667pt;}
.y9a{bottom:354.426667pt;}
.y2ba{bottom:354.746667pt;}
.ydf{bottom:356.506667pt;}
.y181{bottom:356.986667pt;}
.y149{bottom:358.746667pt;}
.y297{bottom:359.066667pt;}
.y12f{bottom:360.026667pt;}
.y2d1{bottom:360.986667pt;}
.y59{bottom:365.026667pt;}
.y1da{bottom:366.626667pt;}
.y1b7{bottom:371.266667pt;}
.y39{bottom:371.906667pt;}
.y77{bottom:372.066667pt;}
.y2f8{bottom:375.106667pt;}
.y281{bottom:375.266667pt;}
.y21c{bottom:377.186667pt;}
.yf8{bottom:377.986667pt;}
.y1fa{bottom:378.946667pt;}
.yc6{bottom:379.586667pt;}
.y2dc{bottom:380.706667pt;}
.y99{bottom:382.146667pt;}
.y2b9{bottom:382.306667pt;}
.y148{bottom:386.306667pt;}
.ye{bottom:386.626667pt;}
.y296{bottom:386.786667pt;}
.y112{bottom:386.946667pt;}
.y12e{bottom:387.586667pt;}
.y2d0{bottom:388.546667pt;}
.yde{bottom:392.226667pt;}
.y58{bottom:392.546667pt;}
.y1d9{bottom:394.146667pt;}
.y15e{bottom:396.386667pt;}
.y38{bottom:399.586667pt;}
.y2f7{bottom:402.626667pt;}
.y280{bottom:402.786667pt;}
.y180{bottom:404.706667pt;}
.yf7{bottom:405.506667pt;}
.y1f9{bottom:406.626667pt;}
.yc5{bottom:407.106667pt;}
.y76{bottom:407.746667pt;}
.y98{bottom:409.666667pt;}
.y2b8{bottom:409.986667pt;}
.y2a9{bottom:411.106667pt;}
.y147{bottom:413.986667pt;}
.y295{bottom:414.306667pt;}
.y12d{bottom:415.266667pt;}
.y2cf{bottom:416.226667pt;}
.y57{bottom:420.226667pt;}
.y121{bottom:421.506667pt;}
.y1d8{bottom:421.826667pt;}
.y25f{bottom:422.013333pt;}
.yd{bottom:422.786667pt;}
.y15d{bottom:424.066667pt;}
.y37{bottom:427.106667pt;}
.y17f{bottom:429.986667pt;}
.y2f6{bottom:430.306667pt;}
.y27f{bottom:430.466667pt;}
.y21b{bottom:432.386667pt;}
.y24c{bottom:433.693333pt;}
.y1f8{bottom:434.146667pt;}
.yc4{bottom:434.786667pt;}
.y75{bottom:435.266667pt;}
.y111{bottom:435.746667pt;}
.y97{bottom:437.346667pt;}
.y2b7{bottom:437.506667pt;}
.yf6{bottom:438.466667pt;}
.y146{bottom:441.506667pt;}
.y294{bottom:441.986667pt;}
.y2a8{bottom:442.146667pt;}
.y12c{bottom:442.786667pt;}
.ydd{bottom:443.746667pt;}
.y56{bottom:447.746667pt;}
.y120{bottom:449.186667pt;}
.y1d7{bottom:449.346667pt;}
.y1c{bottom:451.586667pt;}
.y36{bottom:454.786667pt;}
.y2a7{bottom:457.506667pt;}
.y2f5{bottom:457.826667pt;}
.y27e{bottom:457.986667pt;}
.y1f7{bottom:461.826667pt;}
.y17e{bottom:462.146667pt;}
.yc3{bottom:462.306667pt;}
.y74{bottom:462.946667pt;}
.y110{bottom:463.426667pt;}
.y1b4{bottom:463.933333pt;}
.y96{bottom:464.866667pt;}
.y2b6{bottom:465.186667pt;}
.y21a{bottom:465.346667pt;}
.y145{bottom:469.186667pt;}
.y293{bottom:469.506667pt;}
.y12b{bottom:470.466667pt;}
.y2a6{bottom:470.626667pt;}
.ydc{bottom:471.426667pt;}
.y55{bottom:475.266667pt;}
.y11f{bottom:476.706667pt;}
.y1d6{bottom:477.026667pt;}
.y15c{bottom:479.266667pt;}
.y35{bottom:482.306667pt;}
.y2f4{bottom:485.506667pt;}
.y27d{bottom:485.666667pt;}
.yf5{bottom:487.426667pt;}
.y1f6{bottom:489.346667pt;}
.yc2{bottom:489.986667pt;}
.y73{bottom:490.466667pt;}
.y10f{bottom:490.946667pt;}
.y95{bottom:492.546667pt;}
.y2b5{bottom:492.706667pt;}
.y248{bottom:495.613333pt;}
.y292{bottom:497.186667pt;}
.y12a{bottom:497.986667pt;}
.ydb{bottom:498.946667pt;}
.y2a5{bottom:501.986667pt;}
.y144{bottom:502.146667pt;}
.y54{bottom:502.946667pt;}
.y1d5{bottom:504.546667pt;}
.y15b{bottom:506.786667pt;}
.y11e{bottom:509.666667pt;}
.y34{bottom:509.986667pt;}
.y17d{bottom:511.906667pt;}
.y2f3{bottom:513.026667pt;}
.yf4{bottom:514.946667pt;}
.y1f5{bottom:517.026667pt;}
.yc1{bottom:517.506667pt;}
.y72{bottom:518.146667pt;}
.y10e{bottom:518.626667pt;}
.y192{bottom:519.266667pt;}
.y94{bottom:520.066667pt;}
.y2b4{bottom:520.226667pt;}
.y291{bottom:524.706667pt;}
.y129{bottom:525.666667pt;}
.yda{bottom:526.626667pt;}
.y53{bottom:530.466667pt;}
.y1d4{bottom:532.226667pt;}
.y2a4{bottom:533.186667pt;}
.y15a{bottom:534.466667pt;}
.y33{bottom:537.506667pt;}
.y2f2{bottom:540.706667pt;}
.y1b0{bottom:541.373333pt;}
.yf3{bottom:542.626667pt;}
.y1f4{bottom:544.546667pt;}
.y244{bottom:544.733333pt;}
.yc0{bottom:545.186667pt;}
.y71{bottom:545.666667pt;}
.y10d{bottom:546.146667pt;}
.yc{bottom:546.946667pt;}
.y93{bottom:547.746667pt;}
.y2b3{bottom:547.906667pt;}
.y143{bottom:551.106667pt;}
.y290{bottom:552.226667pt;}
.y212{bottom:553.026667pt;}
.y11d{bottom:553.186667pt;}
.yd9{bottom:554.146667pt;}
.y52{bottom:558.146667pt;}
.y1d3{bottom:559.746667pt;}
.y159{bottom:561.986667pt;}
.y17c{bottom:562.626667pt;}
.y2a3{bottom:564.546667pt;}
.y32{bottom:565.026667pt;}
.y27c{bottom:567.426667pt;}
.y2f1{bottom:568.226667pt;}
.y16d{bottom:571.906667pt;}
.y1f3{bottom:572.226667pt;}
.ybf{bottom:572.706667pt;}
.y10c{bottom:573.826667pt;}
.yb{bottom:574.626667pt;}
.y92{bottom:575.266667pt;}
.y2b2{bottom:575.426667pt;}
.y228{bottom:576.386667pt;}
.yf2{bottom:578.146667pt;}
.yb2{bottom:579.906667pt;}
.y211{bottom:580.546667pt;}
.y11c{bottom:580.893333pt;}
.y70{bottom:581.373333pt;}
.yd8{bottom:581.853333pt;}
.y51{bottom:585.693333pt;}
.y17{bottom:586.653333pt;}
.y1d2{bottom:587.453333pt;}
.y17b{bottom:587.933333pt;}
.y219{bottom:588.093333pt;}
.y158{bottom:589.693333pt;}
.y13d{bottom:590.653333pt;}
.y25d{bottom:591.493333pt;}
.y19e{bottom:592.413333pt;}
.y31{bottom:592.733333pt;}
.y238{bottom:594.013333pt;}
.y27b{bottom:595.133333pt;}
.y2a2{bottom:595.933333pt;}
.y16c{bottom:599.453333pt;}
.y1f2{bottom:599.773333pt;}
.ybe{bottom:600.413333pt;}
.y10b{bottom:601.373333pt;}
.ya{bottom:602.173333pt;}
.y91{bottom:602.973333pt;}
.y2b1{bottom:603.133333pt;}
.yb1{bottom:607.453333pt;}
.y210{bottom:608.253333pt;}
.y11b{bottom:608.413333pt;}
.yd7{bottom:609.373333pt;}
.y17a{bottom:613.213333pt;}
.y50{bottom:613.373333pt;}
.y128{bottom:613.853333pt;}
.y2ce{bottom:614.813333pt;}
.y6f{bottom:616.893333pt;}
.y157{bottom:617.213333pt;}
.y194{bottom:618.653333pt;}
.y1ae{bottom:618.693333pt;}
.y30{bottom:620.253333pt;}
.y1d1{bottom:620.413333pt;}
.y13f{bottom:622.013333pt;}
.y27a{bottom:622.653333pt;}
.y2f0{bottom:623.453333pt;}
.y16b{bottom:626.973333pt;}
.y2a1{bottom:627.293333pt;}
.y1f1{bottom:627.453333pt;}
.ybd{bottom:627.933333pt;}
.y10a{bottom:629.053333pt;}
.yf1{bottom:629.853333pt;}
.y90{bottom:630.493333pt;}
.y2c6{bottom:630.653333pt;}
.y9{bottom:633.853333pt;}
.yb0{bottom:635.133333pt;}
.y20f{bottom:635.773333pt;}
.y11a{bottom:636.093333pt;}
.y179{bottom:638.493333pt;}
.y218{bottom:638.653333pt;}
.y4f{bottom:640.893333pt;}
.y28a{bottom:641.373333pt;}
.yd6{bottom:642.333333pt;}
.y6e{bottom:644.573333pt;}
.y156{bottom:644.893333pt;}
.y82{bottom:646.813333pt;}
.y2f{bottom:647.933333pt;}
.y279{bottom:650.333333pt;}
.y2ef{bottom:650.973333pt;}
.y243{bottom:652.773333pt;}
.y16a{bottom:654.653333pt;}
.y1f0{bottom:654.973333pt;}
.ybc{bottom:655.613333pt;}
.y13c{bottom:656.093333pt;}
.y109{bottom:656.573333pt;}
.yf0{bottom:657.373333pt;}
.y8f{bottom:658.173333pt;}
.y2c5{bottom:658.333333pt;}
.y29f{bottom:658.653333pt;}
.y19b{bottom:658.813333pt;}
.yaf{bottom:662.653333pt;}
.y20e{bottom:663.453333pt;}
.y119{bottom:663.613333pt;}
.y178{bottom:663.773333pt;}
.y217{bottom:663.933333pt;}
.y8{bottom:665.373333pt;}
.y1ad{bottom:668.293333pt;}
.y4e{bottom:668.573333pt;}
.y1d0{bottom:669.213333pt;}
.y6d{bottom:672.093333pt;}
.y155{bottom:672.413333pt;}
.y2e{bottom:675.453333pt;}
.y278{bottom:677.853333pt;}
.y2ee{bottom:678.653333pt;}
.y22a{bottom:679.133333pt;}
.y81{bottom:680.253333pt;}
.y13b{bottom:681.373333pt;}
.y169{bottom:682.173333pt;}
.y1ef{bottom:682.653333pt;}
.yef{bottom:685.053333pt;}
.y8e{bottom:685.693333pt;}
.y2c4{bottom:685.853333pt;}
.y242{bottom:687.013333pt;}
.ybb{bottom:688.573333pt;}
.y177{bottom:689.213333pt;}
.y108{bottom:689.533333pt;}
.y29d{bottom:689.853333pt;}
.yae{bottom:690.333333pt;}
.y20d{bottom:690.973333pt;}
.yd5{bottom:691.293333pt;}
.y4d{bottom:696.093333pt;}
.y7{bottom:696.893333pt;}
.y6c{bottom:699.773333pt;}
.y154{bottom:700.093333pt;}
.y22f{bottom:702.013333pt;}
.y2d{bottom:703.133333pt;}
.y277{bottom:705.533333pt;}
.y2ed{bottom:706.173333pt;}
.y198{bottom:708.733333pt;}
.y13a{bottom:708.893333pt;}
.y168{bottom:709.853333pt;}
.y1ee{bottom:710.173333pt;}
.yee{bottom:712.573333pt;}
.y25c{bottom:712.613333pt;}
.y8d{bottom:713.373333pt;}
.y2c3{bottom:713.533333pt;}
.y176{bottom:714.493333pt;}
.yad{bottom:717.853333pt;}
.y20c{bottom:718.653333pt;}
.yd4{bottom:718.813333pt;}
.y29c{bottom:718.973333pt;}
.y6{bottom:720.893333pt;}
.y4c{bottom:723.773333pt;}
.y1cf{bottom:724.413333pt;}
.y6b{bottom:727.293333pt;}
.y190{bottom:728.733333pt;}
.y2c{bottom:730.653333pt;}
.y25b{bottom:731.040000pt;}
.y80{bottom:732.093333pt;}
.y2ec{bottom:733.853333pt;}
.y153{bottom:735.613333pt;}
.y22e{bottom:736.093333pt;}
.y139{bottom:736.573333pt;}
.yba{bottom:737.373333pt;}
.y1ed{bottom:737.853333pt;}
.y107{bottom:738.493333pt;}
.y175{bottom:739.773333pt;}
.yed{bottom:740.253333pt;}
.y8c{bottom:740.893333pt;}
.y2c2{bottom:741.053333pt;}
.y1ac{bottom:744.893333pt;}
.yac{bottom:745.533333pt;}
.yd3{bottom:746.493333pt;}
.y29b{bottom:750.333333pt;}
.y4b{bottom:751.293333pt;}
.y1ce{bottom:752.093333pt;}
.y20b{bottom:754.173333pt;}
.y6a{bottom:754.973333pt;}
.y2b{bottom:758.333333pt;}
.y2eb{bottom:761.373333pt;}
.y138{bottom:764.093333pt;}
.yb9{bottom:765.053333pt;}
.y1ec{bottom:765.373333pt;}
.y106{bottom:766.013333pt;}
.y7f{bottom:767.773333pt;}
.y8b{bottom:768.573333pt;}
.y2db{bottom:768.733333pt;}
.yab{bottom:773.053333pt;}
.yd2{bottom:774.013333pt;}
.y152{bottom:775.133333pt;}
.y2c1{bottom:776.733333pt;}
.y4a{bottom:778.973333pt;}
.y1cd{bottom:779.613333pt;}
.y69{bottom:782.493333pt;}
.y29a{bottom:784.573333pt;}
.y2a{bottom:785.853333pt;}
.y276{bottom:787.453333pt;}
.y226{bottom:787.613333pt;}
.y2ea{bottom:789.053333pt;}
.y174{bottom:790.333333pt;}
.y137{bottom:791.773333pt;}
.yb8{bottom:792.573333pt;}
.y1eb{bottom:793.053333pt;}
.y105{bottom:793.693333pt;}
.yec{bottom:795.453333pt;}
.y20a{bottom:795.933333pt;}
.y8a{bottom:796.093333pt;}
.yaa{bottom:800.773333pt;}
.yd1{bottom:801.733333pt;}
.y7e{bottom:803.333333pt;}
.y2da{bottom:804.293333pt;}
.y49{bottom:806.533333pt;}
.y118{bottom:807.013333pt;}
.y1a5{bottom:810.053333pt;}
.y68{bottom:810.213333pt;}
.y209{bottom:811.333333pt;}
.y1cc{bottom:812.613333pt;}
.y29{bottom:813.573333pt;}
.y275{bottom:815.013333pt;}
.y173{bottom:815.653333pt;}
.y216{bottom:815.813333pt;}
.y2e9{bottom:816.613333pt;}
.y136{bottom:819.333333pt;}
.yb7{bottom:820.293333pt;}
.y1ea{bottom:820.613333pt;}
.yeb{bottom:823.013333pt;}
.y89{bottom:823.813333pt;}
.y208{bottom:824.453333pt;}
.y151{bottom:825.413333pt;}
.y104{bottom:826.693333pt;}
.ya9{bottom:828.293333pt;}
.yd0{bottom:829.253333pt;}
.y48{bottom:834.213333pt;}
.y67{bottom:837.733333pt;}
.y7d{bottom:839.013333pt;}
.y172{bottom:840.933333pt;}
.y28{bottom:841.093333pt;}
.y274{bottom:842.533333pt;}
.y2e8{bottom:844.293333pt;}
.y135{bottom:847.013333pt;}
.yb6{bottom:847.813333pt;}
.yea{bottom:850.533333pt;}
.y88{bottom:851.333333pt;}
.y1e9{bottom:853.573333pt;}
.y196{bottom:855.813333pt;}
.ya8{bottom:855.973333pt;}
.y2cd{bottom:856.933333pt;}
.y23a{bottom:857.733333pt;}
.y1cb{bottom:861.573333pt;}
.y47{bottom:861.733333pt;}
.y289{bottom:862.053333pt;}
.ycf{bottom:862.213333pt;}
.y66{bottom:865.413333pt;}
.y171{bottom:866.213333pt;}
.y215{bottom:866.373333pt;}
.y27{bottom:868.773333pt;}
.y273{bottom:870.213333pt;}
.y2e7{bottom:871.813333pt;}
.y7c{bottom:874.533333pt;}
.yb5{bottom:875.493333pt;}
.ye9{bottom:878.213333pt;}
.y87{bottom:879.013333pt;}
.y167{bottom:881.893333pt;}
.y18a{bottom:882.533333pt;}
.ya7{bottom:883.493333pt;}
.y207{bottom:887.013333pt;}
.y1a8{bottom:888.453333pt;}
.y46{bottom:889.413333pt;}
.y2cc{bottom:889.893333pt;}
.y170{bottom:891.493333pt;}
.y214{bottom:891.653333pt;}
.y65{bottom:892.933333pt;}
.y1ca{bottom:895.173333pt;}
.y26{bottom:896.293333pt;}
.y272{bottom:897.733333pt;}
.y134{bottom:902.213333pt;}
.y1e8{bottom:902.533333pt;}
.y103{bottom:903.173333pt;}
.ye8{bottom:905.733333pt;}
.y86{bottom:906.533333pt;}
.y2e6{bottom:909.413333pt;}
.y7b{bottom:910.213333pt;}
.yb4{bottom:911.013333pt;}
.ya6{bottom:911.173333pt;}
.y1c9{bottom:916.773333pt;}
.y45{bottom:916.933333pt;}
.y206{bottom:918.373333pt;}
.y64{bottom:920.613333pt;}
.y22c{bottom:922.213333pt;}
.y25{bottom:923.973333pt;}
.y271{bottom:925.413333pt;}
.y1e7{bottom:930.053333pt;}
.y102{bottom:930.693333pt;}
.ye7{bottom:933.413333pt;}
.y85{bottom:934.213333pt;}
.y133{bottom:937.733333pt;}
.ya5{bottom:938.693333pt;}
.y220{bottom:942.053333pt;}
.y16f{bottom:942.213333pt;}
.y1c8{bottom:944.293333pt;}
.y5{bottom:944.453333pt;}
.y44{bottom:944.613333pt;}
.y7a{bottom:945.733333pt;}
.y63{bottom:948.133333pt;}
.y205{bottom:949.733333pt;}
.y24{bottom:951.493333pt;}
.y270{bottom:952.933333pt;}
.y1e6{bottom:957.733333pt;}
.y101{bottom:958.373333pt;}
.ye6{bottom:960.933333pt;}
.y84{bottom:961.733333pt;}
.yb3{bottom:964.613333pt;}
.ya4{bottom:966.373333pt;}
.y16e{bottom:967.493333pt;}
.y1c7{bottom:971.973333pt;}
.y62{bottom:975.813333pt;}
.y4{bottom:978.853333pt;}
.y23{bottom:979.173333pt;}
.y43{bottom:980.133333pt;}
.y204{bottom:981.093333pt;}
.y79{bottom:983.333333pt;}
.y1e5{bottom:985.253333pt;}
.y26f{bottom:985.893333pt;}
.y83{bottom:991.333333pt;}
.y213{bottom:992.773333pt;}
.ya3{bottom:993.893333pt;}
.ye5{bottom:994.053333pt;}
.y1c6{bottom:1004.933333pt;}
.y22{bottom:1008.773333pt;}
.y3{bottom:1011.333333pt;}
.y1e4{bottom:1012.933333pt;}
.y203{bottom:1015.333333pt;}
.y21{bottom:1040.960000pt;}
.y20{bottom:1059.360000pt;}
.h12{height:15.360000pt;}
.h40{height:28.480000pt;}
.hf{height:30.560000pt;}
.h21{height:30.720000pt;}
.h13{height:30.752000pt;}
.h1f{height:32.320000pt;}
.h1e{height:32.480000pt;}
.h31{height:32.960000pt;}
.h36{height:33.312000pt;}
.h3c{height:33.918750pt;}
.h1b{height:34.080000pt;}
.h34{height:36.640000pt;}
.h1c{height:37.440000pt;}
.h33{height:40.000000pt;}
.h2a{height:42.084375pt;}
.h24{height:46.080000pt;}
.h39{height:47.621250pt;}
.h38{height:48.480000pt;}
.h20{height:49.120000pt;}
.h1d{height:50.880000pt;}
.h9{height:52.108438pt;}
.h10{height:52.134375pt;}
.h26{height:52.478750pt;}
.h17{height:53.535000pt;}
.h2b{height:57.758750pt;}
.h14{height:57.787500pt;}
.h15{height:60.800000pt;}
.h3a{height:61.280000pt;}
.h35{height:61.600000pt;}
.he{height:61.920000pt;}
.h2c{height:62.560000pt;}
.hb{height:62.781250pt;}
.h2{height:62.812500pt;}
.hd{height:63.843750pt;}
.h3{height:64.500000pt;}
.h11{height:65.781915pt;}
.hc{height:66.404375pt;}
.h41{height:66.511042pt;}
.h42{height:66.564375pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h29{height:76.640000pt;}
.h25{height:76.672000pt;}
.h27{height:76.800000pt;}
.ha{height:77.951250pt;}
.h32{height:78.240000pt;}
.h18{height:85.632000pt;}
.h4{height:85.785000pt;}
.h2e{height:89.472000pt;}
.h28{height:92.032000pt;}
.h2f{height:94.400000pt;}
.h30{height:99.232000pt;}
.h19{height:100.000000pt;}
.h1a{height:106.720000pt;}
.h3e{height:107.200000pt;}
.h3d{height:107.360000pt;}
.h37{height:107.392000pt;}
.h2d{height:107.552000pt;}
.h16{height:108.992000pt;}
.h8{height:114.080000pt;}
.h7{height:119.360000pt;}
.h3b{height:138.106667pt;}
.h3f{height:168.666667pt;}
.h22{height:793.920000pt;}
.h23{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:24.160000pt;}
.we{width:24.800000pt;}
.w27{width:25.280000pt;}
.wc{width:26.592000pt;}
.w2a{width:26.880000pt;}
.wf{width:26.912000pt;}
.w29{width:27.360000pt;}
.w28{width:27.680000pt;}
.w31{width:53.440000pt;}
.w19{width:64.000000pt;}
.w25{width:64.800000pt;}
.w1a{width:67.840000pt;}
.w33{width:70.752000pt;}
.w3d{width:73.120000pt;}
.w1f{width:73.760000pt;}
.w37{width:74.560000pt;}
.w23{width:78.080000pt;}
.w1b{width:80.032000pt;}
.w20{width:81.632000pt;}
.w22{width:82.592000pt;}
.w3b{width:84.800000pt;}
.w38{width:87.712000pt;}
.w21{width:88.480000pt;}
.w3a{width:88.672000pt;}
.w24{width:92.512000pt;}
.w39{width:93.760000pt;}
.w3c{width:97.152000pt;}
.w32{width:98.080000pt;}
.w2e{width:120.960000pt;}
.wa{width:131.072000pt;}
.w8{width:135.680000pt;}
.w7{width:136.186667pt;}
.w9{width:136.986667pt;}
.w1e{width:150.906667pt;}
.w35{width:151.040000pt;}
.w2b{width:184.026667pt;}
.w1d{width:186.746667pt;}
.w10{width:190.266667pt;}
.w13{width:196.506667pt;}
.w11{width:237.146667pt;}
.w2c{width:237.346667pt;}
.w34{width:257.146667pt;}
.w30{width:258.626667pt;}
.w36{width:260.226667pt;}
.w15{width:267.106667pt;}
.wb{width:274.466667pt;}
.w2f{width:276.226667pt;}
.w14{width:281.346667pt;}
.w5{width:282.586667pt;}
.w6{width:282.626667pt;}
.w2d{width:293.666667pt;}
.w12{width:295.866667pt;}
.w26{width:336.066667pt;}
.w1c{width:341.466667pt;}
.w4{width:502.813333pt;}
.w3{width:507.133333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w17{width:1122.000000pt;}
.w18{width:1122.239983pt;}
.w16{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x58{left:6.880000pt;}
.xf{left:9.600000pt;}
.x49{left:10.720000pt;}
.x51{left:11.840000pt;}
.x3a{left:12.832000pt;}
.x3d{left:15.040000pt;}
.x27{left:16.826667pt;}
.x29{left:18.586667pt;}
.x7e{left:19.840000pt;}
.x84{left:20.800000pt;}
.x31{left:21.946667pt;}
.x80{left:22.880000pt;}
.x2d{left:23.834667pt;}
.x2f{left:25.760000pt;}
.x85{left:28.000000pt;}
.x33{left:29.000000pt;}
.x64{left:35.200000pt;}
.x35{left:36.160000pt;}
.x6f{left:37.280000pt;}
.x43{left:38.400000pt;}
.x4c{left:39.840000pt;}
.x65{left:41.280000pt;}
.x57{left:42.560000pt;}
.x71{left:44.000000pt;}
.x67{left:45.600000pt;}
.x36{left:46.760000pt;}
.x42{left:48.480000pt;}
.x4a{left:53.120000pt;}
.x55{left:55.360000pt;}
.x34{left:58.234667pt;}
.x6e{left:59.520000pt;}
.x6d{left:70.400000pt;}
.x3b{left:71.520000pt;}
.x28{left:73.306667pt;}
.x38{left:74.394667pt;}
.x2a{left:75.866667pt;}
.x25{left:79.194667pt;}
.x45{left:81.640000pt;}
.x41{left:83.520000pt;}
.x6b{left:86.592000pt;}
.x6a{left:88.192000pt;}
.x17{left:94.591988pt;}
.x2{left:96.031988pt;}
.x3f{left:100.200000pt;}
.x68{left:104.680000pt;}
.x54{left:107.840000pt;}
.x12{left:112.031988pt;}
.x4e{left:113.471983pt;}
.x47{left:117.466667pt;}
.x19{left:118.591988pt;}
.x21{left:122.591988pt;}
.x22{left:123.551988pt;}
.x13{left:128.031988pt;}
.x1e{left:133.311988pt;}
.x39{left:137.314667pt;}
.x66{left:141.626667pt;}
.x1d{left:142.586655pt;}
.x14{left:144.026655pt;}
.x70{left:146.760000pt;}
.xe{left:148.026667pt;}
.x10{left:149.466667pt;}
.x3e{left:154.106667pt;}
.x15{left:160.026655pt;}
.x5a{left:161.466655pt;}
.x4b{left:162.426667pt;}
.x20{left:166.586655pt;}
.x69{left:168.040000pt;}
.x7d{left:170.426667pt;}
.x44{left:175.706667pt;}
.x50{left:178.746667pt;}
.x37{left:183.226655pt;}
.x5e{left:188.506667pt;}
.x1f{left:190.586655pt;}
.x3{left:245.026655pt;}
.x52{left:247.226667pt;}
.x2e{left:256.066667pt;}
.x7f{left:258.786667pt;}
.x7c{left:261.346655pt;}
.x5d{left:263.906655pt;}
.xa{left:266.306655pt;}
.x5f{left:270.786667pt;}
.x24{left:273.986655pt;}
.x4{left:274.946655pt;}
.x46{left:279.266667pt;}
.x8{left:281.186655pt;}
.x2c{left:291.746655pt;}
.x72{left:316.066667pt;}
.x53{left:327.906667pt;}
.x75{left:338.466667pt;}
.x9{left:346.146655pt;}
.x81{left:353.186667pt;}
.x60{left:359.906667pt;}
.x7{left:363.266655pt;}
.x26{left:378.466667pt;}
.x30{left:392.386667pt;}
.x11{left:397.053322pt;}
.x4f{left:409.506650pt;}
.x40{left:414.813333pt;}
.x3c{left:418.653333pt;}
.xb{left:432.093322pt;}
.x6c{left:434.333333pt;}
.x61{left:443.293333pt;}
.x48{left:461.373333pt;}
.xc{left:473.693322pt;}
.xd{left:480.093322pt;}
.x73{left:489.693333pt;}
.x5{left:494.013322pt;}
.x62{left:522.013333pt;}
.x82{left:527.933333pt;}
.x32{left:530.013333pt;}
.x78{left:561.213317pt;}
.x76{left:596.253333pt;}
.x63{left:615.173333pt;}
.x83{left:625.733333pt;}
.x8a{left:648.773322pt;}
.x5c{left:652.293322pt;}
.x5b{left:653.253322pt;}
.x89{left:654.213322pt;}
.x59{left:658.533322pt;}
.x87{left:659.493322pt;}
.x7a{left:660.453322pt;}
.x88{left:664.773322pt;}
.x86{left:665.733322pt;}
.x6{left:669.573322pt;}
.x7b{left:671.013322pt;}
.x2b{left:671.973322pt;}
.x23{left:677.253322pt;}
.x1c{left:682.533322pt;}
.x1b{left:683.493322pt;}
.x1a{left:688.773322pt;}
.x18{left:694.213322pt;}
.x1{left:698.053322pt;}
.x16{left:699.493322pt;}
.x77{left:748.093333pt;}
.x56{left:857.413333pt;}
.x79{left:975.333317pt;}
.x74{left:980.639983pt;}
.x4d{left:992.159983pt;}
}




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