
    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_f86b12f1383f5ed4148b4344.woff')format("woff");}.ff1{font-family:ff1;line-height:1.070312;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_289a9d576759fdc68ba07b37.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bfadc4dbaa7b0c516ae843b7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_5bff0df5e4c4fde1d982a745.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_c86285387ee6731827a34d2f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.070312;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_3e31904a2c8d200f02231d49.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e6ff9c27ed7985577eb6b104.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_7293c8c176249fc3d62ba00f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.592000;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_825d6872642134e49b0d79a2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.575000;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_a2c26525420a1bdcba1eaead.woff')format("woff");}.ffa{font-family:ffa;line-height:1.575000;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3ca64b49fc0c7a54d7871d2c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.070312;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;}
.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);}
.vd{vertical-align:-97.380000px;}
.v6{vertical-align:-25.380000px;}
.v9{vertical-align:-20.880000px;}
.v5{vertical-align:-18.000000px;}
.va{vertical-align:-10.500000px;}
.v1{vertical-align:-7.140000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.200000px;}
.v8{vertical-align:13.380000px;}
.v7{vertical-align:14.460000px;}
.v4{vertical-align:18.000000px;}
.vc{vertical-align:20.700000px;}
.v3{vertical-align:25.200000px;}
.vb{vertical-align:41.580000px;}
.ls57{letter-spacing:-2.922000px;}
.ls34{letter-spacing:-2.208000px;}
.ls37{letter-spacing:-2.004000px;}
.ls10{letter-spacing:-1.626000px;}
.ls33{letter-spacing:-1.614000px;}
.ls64{letter-spacing:-1.578000px;}
.ls5b{letter-spacing:-1.224000px;}
.ls5a{letter-spacing:-1.188000px;}
.ls25{letter-spacing:-0.822000px;}
.ls2{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.043200px;}
.lsa{letter-spacing:-0.028800px;}
.ls9{letter-spacing:-0.021600px;}
.lsb{letter-spacing:-0.014400px;}
.ls1d{letter-spacing:-0.007200px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.014400px;}
.ls13{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.028800px;}
.ls44{letter-spacing:0.031200px;}
.ls2b{letter-spacing:0.045600px;}
.ls2d{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.081600px;}
.ls46{letter-spacing:0.091200px;}
.ls42{letter-spacing:0.105600px;}
.ls49{letter-spacing:0.121200px;}
.ls4a{letter-spacing:0.134400px;}
.ls5e{letter-spacing:0.135600px;}
.ls53{letter-spacing:0.141600px;}
.ls59{letter-spacing:0.151200px;}
.ls3e{letter-spacing:0.158400px;}
.ls18{letter-spacing:0.165600px;}
.ls2f{letter-spacing:0.201600px;}
.lsf{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.446400px;}
.ls51{letter-spacing:0.540000px;}
.ls52{letter-spacing:0.576000px;}
.ls62{letter-spacing:0.816000px;}
.ls41{letter-spacing:0.984000px;}
.ls22{letter-spacing:1.120800px;}
.ls21{letter-spacing:1.180800px;}
.ls32{letter-spacing:1.182000px;}
.ls60{letter-spacing:1.218000px;}
.ls61{letter-spacing:1.220400px;}
.ls0{letter-spacing:1.224000px;}
.ls5f{letter-spacing:1.281600px;}
.ls14{letter-spacing:1.300800px;}
.ls36{letter-spacing:1.392000px;}
.ls43{letter-spacing:1.569600px;}
.ls50{letter-spacing:1.584000px;}
.ls35{letter-spacing:1.596000px;}
.ls4f{letter-spacing:1.674000px;}
.ls3{letter-spacing:1.776000px;}
.ls4e{letter-spacing:1.800000px;}
.ls56{letter-spacing:2.208000px;}
.ls55{letter-spacing:2.358000px;}
.ls45{letter-spacing:2.390400px;}
.ls20{letter-spacing:3.525600px;}
.ls27{letter-spacing:3.570000px;}
.ls1c{letter-spacing:3.585600px;}
.ls16{letter-spacing:3.588000px;}
.ls4d{letter-spacing:3.612000px;}
.ls2c{letter-spacing:3.645600px;}
.ls31{letter-spacing:3.705600px;}
.ls2e{letter-spacing:3.765600px;}
.ls38{letter-spacing:5.990400px;}
.ls17{letter-spacing:7.125600px;}
.ls5{letter-spacing:7.185600px;}
.ls24{letter-spacing:7.245600px;}
.ls1e{letter-spacing:7.305600px;}
.ls1f{letter-spacing:7.335600px;}
.ls29{letter-spacing:7.365600px;}
.ls30{letter-spacing:8.380800px;}
.ls3b{letter-spacing:10.725600px;}
.ls15{letter-spacing:10.785600px;}
.ls4c{letter-spacing:10.797300px;}
.ls19{letter-spacing:10.845600px;}
.ls4b{letter-spacing:10.872000px;}
.ls3a{letter-spacing:10.905600px;}
.ls26{letter-spacing:10.965600px;}
.ls1b{letter-spacing:14.325600px;}
.ls3c{letter-spacing:14.385600px;}
.ls39{letter-spacing:14.445600px;}
.ls5c{letter-spacing:14.505600px;}
.ls48{letter-spacing:17.985600px;}
.ls1a{letter-spacing:18.045600px;}
.ls47{letter-spacing:18.165600px;}
.ls58{letter-spacing:21.525600px;}
.ls23{letter-spacing:21.585600px;}
.ls3f{letter-spacing:21.705600px;}
.ls5d{letter-spacing:35.985600px;}
.ls2a{letter-spacing:50.385600px;}
.ls12{letter-spacing:77.328000px;}
.ls11{letter-spacing:106.278000px;}
.lse{letter-spacing:109.728000px;}
.ls40{letter-spacing:129.765600px;}
.lsd{letter-spacing:138.828000px;}
.ls3d{letter-spacing:147.765600px;}
.lsc{letter-spacing:171.228000px;}
.ls63{letter-spacing:194.535600px;}
.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;}
}
.ws39{word-spacing:-61.200000px;}
.ws0{word-spacing:-27.021600px;}
.ws2{word-spacing:-26.978400px;}
.wsa{word-spacing:-25.380000px;}
.ws15{word-spacing:-21.626400px;}
.ws22{word-spacing:-20.057700px;}
.ws21{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.584000px;}
.ws38{word-spacing:-18.231600px;}
.ws6{word-spacing:-18.043200px;}
.wsd{word-spacing:-18.036000px;}
.ws7{word-spacing:-18.028800px;}
.ws8{word-spacing:-18.021600px;}
.ws9{word-spacing:-18.014400px;}
.wsf{word-spacing:-18.000000px;}
.ws3b{word-spacing:-17.997600px;}
.ws4{word-spacing:-17.992800px;}
.ws5{word-spacing:-17.985600px;}
.ws3a{word-spacing:-17.829600px;}
.wsc{word-spacing:-17.013600px;}
.ws3c{word-spacing:-16.436400px;}
.wsb{word-spacing:-15.387600px;}
.ws20{word-spacing:-15.053700px;}
.ws1f{word-spacing:-15.012000px;}
.ws1a{word-spacing:-14.810400px;}
.ws19{word-spacing:-14.678700px;}
.ws1c{word-spacing:-13.986000px;}
.ws24{word-spacing:-13.953600px;}
.ws34{word-spacing:-13.824000px;}
.ws12{word-spacing:-13.191600px;}
.ws14{word-spacing:-13.010400px;}
.ws1d{word-spacing:-12.888000px;}
.ws1b{word-spacing:-12.312000px;}
.ws11{word-spacing:-12.188400px;}
.ws35{word-spacing:-11.592000px;}
.wse{word-spacing:-11.008800px;}
.ws18{word-spacing:-10.610700px;}
.ws17{word-spacing:-10.576800px;}
.ws16{word-spacing:-8.136000px;}
.ws10{word-spacing:-8.006400px;}
.ws13{word-spacing:-6.392400px;}
.ws3{word-spacing:0.000000px;}
.ws26{word-spacing:2.180208px;}
.ws25{word-spacing:2.487450px;}
.ws28{word-spacing:2.496000px;}
.ws29{word-spacing:2.607450px;}
.ws2a{word-spacing:2.667450px;}
.ws27{word-spacing:2.700000px;}
.ws36{word-spacing:4.015200px;}
.ws33{word-spacing:7.351366px;}
.ws37{word-spacing:8.406000px;}
.ws32{word-spacing:14.434934px;}
.ws2e{word-spacing:23.368800px;}
.ws31{word-spacing:23.750400px;}
.ws2c{word-spacing:23.810400px;}
.ws2b{word-spacing:36.806400px;}
.ws2f{word-spacing:37.106400px;}
.ws2d{word-spacing:37.166400px;}
.ws30{word-spacing:37.346400px;}
.ws1e{word-spacing:132.120000px;}
.ws23{word-spacing:198.132000px;}
._4b{margin-left:-13.485600px;}
._62{margin-left:-9.787629px;}
._5a{margin-left:-8.058031px;}
._22{margin-left:-6.180124px;}
._44{margin-left:-5.161707px;}
._12{margin-left:-4.105200px;}
._6{margin-left:-2.222369px;}
._2{margin-left:-1.189143px;}
._0{width:1.389600px;}
._1{width:3.147600px;}
._7{width:4.738800px;}
._3{width:6.183973px;}
._14{width:7.377600px;}
._4d{width:8.397973px;}
._4{width:9.514397px;}
._47{width:10.647227px;}
._d{width:11.654400px;}
._4a{width:13.330345px;}
._13{width:14.450400px;}
._c{width:15.656027px;}
._5{width:17.108607px;}
._48{width:19.114427px;}
._58{width:20.538455px;}
._49{width:21.543011px;}
._4c{width:23.404189px;}
._50{width:25.006800px;}
._51{width:26.123627px;}
._e{width:28.706400px;}
._61{width:29.880000px;}
._60{width:30.963600px;}
._f{width:32.205600px;}
._11{width:35.899200px;}
._10{width:39.204000px;}
._57{width:40.401600px;}
._56{width:41.445600px;}
._55{width:42.962400px;}
._5c{width:45.054000px;}
._53{width:46.720800px;}
._52{width:49.812000px;}
._4f{width:51.016800px;}
._54{width:55.440000px;}
._5d{width:61.936800px;}
._5f{width:64.384738px;}
._59{width:147.806400px;}
._63{width:156.942000px;}
._5e{width:183.459450px;}
._5b{width:214.414769px;}
._a{width:365.254800px;}
._9{width:368.940000px;}
._34{width:422.985568px;}
._8{width:590.307600px;}
._45{width:775.557388px;}
._4e{width:846.885600px;}
._b{width:847.886400px;}
._1e{width:1374.165931px;}
._32{width:1467.678496px;}
._38{width:1500.357021px;}
._2d{width:1521.465962px;}
._37{width:1619.054958px;}
._36{width:1788.448283px;}
._1d{width:1799.339508px;}
._28{width:1802.652771px;}
._2e{width:1806.982174px;}
._41{width:1817.045483px;}
._1b{width:1854.007976px;}
._26{width:1867.915842px;}
._2c{width:1910.831602px;}
._3a{width:1929.521436px;}
._46{width:1975.188657px;}
._21{width:2012.808858px;}
._42{width:2016.245519px;}
._33{width:2030.211202px;}
._3f{width:2054.634864px;}
._2b{width:2062.384433px;}
._43{width:2094.831181px;}
._2a{width:2102.098381px;}
._3e{width:2141.478983px;}
._3b{width:2149.169555px;}
._18{width:2159.020521px;}
._39{width:2191.068983px;}
._1c{width:2199.364526px;}
._20{width:2207.192017px;}
._23{width:2213.955538px;}
._16{width:2224.362931px;}
._27{width:2263.325788px;}
._19{width:2292.413752px;}
._1f{width:2296.334188px;}
._30{width:2321.158552px;}
._3d{width:2350.282531px;}
._25{width:2360.392531px;}
._29{width:2368.899414px;}
._24{width:2378.885793px;}
._31{width:2386.794988px;}
._35{width:2391.147419px;}
._2f{width:2394.647814px;}
._17{width:2451.609419px;}
._1a{width:2485.000614px;}
._40{width:2487.839907px;}
._3c{width:2574.454707px;}
._15{width:2588.919600px;}
.fc9{color:rgb(192,0,0);}
.fc8{color:rgb(68,114,196);}
.fc3{color:rgb(47,84,150);}
.fc2{color:transparent;}
.fc7{color:rgb(127,127,127);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:18.000000px;}
.fsb{font-size:28.800000px;}
.fsd{font-size:36.000000px;}
.fse{font-size:36.150000px;}
.fsa{font-size:39.600000px;}
.fs9{font-size:43.200000px;}
.fs0{font-size:46.800000px;}
.fsc{font-size:46.950000px;}
.fs10{font-size:54.000000px;}
.fs11{font-size:54.150000px;}
.fs2{font-size:61.200000px;}
.fs7{font-size:64.800000px;}
.fsf{font-size:64.950000px;}
.fs3{font-size:72.000000px;}
.fs12{font-size:72.150000px;}
.fs5{font-size:82.800000px;}
.fs13{font-size:82.950000px;}
.fs6{font-size:90.000000px;}
.fs1{font-size:97.200000px;}
.fs4{font-size:118.950000px;}
.y6{bottom:-15.300000px;}
.y1de{bottom:-1.800000px;}
.y1e4{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y177{bottom:2.700000px;}
.y200{bottom:6.315000px;}
.y205{bottom:8.100000px;}
.y20f{bottom:8.115000px;}
.y204{bottom:9.000000px;}
.y20b{bottom:9.030000px;}
.y208{bottom:9.045000px;}
.y269{bottom:10.350000px;}
.y1f3{bottom:10.800000px;}
.y1f5{bottom:10.815000px;}
.y1fd{bottom:10.845000px;}
.y232{bottom:11.685000px;}
.y16b{bottom:11.700000px;}
.y16d{bottom:11.715000px;}
.y1e2{bottom:11.730000px;}
.y38{bottom:11.737500px;}
.y172{bottom:11.745000px;}
.y194{bottom:12.585000px;}
.y18b{bottom:12.600000px;}
.y2f7{bottom:12.607500px;}
.y197{bottom:12.615000px;}
.y1a3{bottom:12.630000px;}
.y18d{bottom:12.645000px;}
.y1a1{bottom:13.485000px;}
.y189{bottom:13.500000px;}
.y246{bottom:13.530000px;}
.y2f2{bottom:14.400000px;}
.y22d{bottom:14.700000px;}
.y31c{bottom:15.285000px;}
.y274{bottom:15.300000px;}
.y321{bottom:15.315000px;}
.y1e7{bottom:15.330000px;}
.y203{bottom:16.200000px;}
.y207{bottom:16.215000px;}
.y26f{bottom:17.100000px;}
.y20d{bottom:17.145000px;}
.y4{bottom:18.000000px;}
.y23f{bottom:18.900000px;}
.y23b{bottom:18.915000px;}
.y238{bottom:18.930000px;}
.y247{bottom:19.785000px;}
.y30f{bottom:19.800000px;}
.y314{bottom:19.845000px;}
.y176{bottom:20.700000px;}
.y30b{bottom:20.745000px;}
.y306{bottom:21.585000px;}
.y307{bottom:21.600000px;}
.y1fe{bottom:21.615000px;}
.y2fe{bottom:22.500000px;}
.y16a{bottom:22.530000px;}
.y303{bottom:22.545000px;}
.y268{bottom:24.195000px;}
.y20a{bottom:24.330000px;}
.y273{bottom:25.200000px;}
.y1ef{bottom:25.215000px;}
.y37{bottom:26.100000px;}
.y168{bottom:26.145000px;}
.y1f1{bottom:27.000000px;}
.y277{bottom:27.015000px;}
.y1fa{bottom:27.030000px;}
.y272{bottom:27.045000px;}
.y234{bottom:27.900000px;}
.y1f7{bottom:27.930000px;}
.y201{bottom:28.815000px;}
.y16f{bottom:28.830000px;}
.y230{bottom:29.700000px;}
.y244{bottom:29.730000px;}
.y170{bottom:29.745000px;}
.y286{bottom:31.500000px;}
.y281{bottom:31.530000px;}
.y284{bottom:31.545000px;}
.y1e6{bottom:32.430000px;}
.y319{bottom:32.445000px;}
.y1e1{bottom:36.030000px;}
.y241{bottom:36.900000px;}
.y1ff{bottom:36.915000px;}
.y23e{bottom:36.945000px;}
.y175{bottom:37.800000px;}
.y237{bottom:37.830000px;}
.y23a{bottom:37.845000px;}
.y22b{bottom:38.205000px;}
.y278{bottom:39.600000px;}
.y1db{bottom:41.850000px;}
.y31f{bottom:42.300000px;}
.y276{bottom:42.345000px;}
.y308{bottom:45.030000px;}
.y267{bottom:45.930000px;}
.y36{bottom:46.837500px;}
.y243{bottom:47.730000px;}
.y318{bottom:47.745000px;}
.y1da{bottom:55.350000px;}
.y3{bottom:58.545000px;}
.y25e{bottom:59.325000px;}
.y270{bottom:63.075000px;}
.y317{bottom:63.090000px;}
.y174{bottom:63.930000px;}
.y8{bottom:67.575000px;}
.y25d{bottom:84.075000px;}
.y25f{bottom:85.320000px;}
.y25c{bottom:86.655000px;}
.y259{bottom:91.875000px;}
.y2f3{bottom:102.675000px;}
.y333{bottom:105.375000px;}
.y358{bottom:109.875000px;}
.ya6{bottom:110.775000px;}
.y260{bottom:111.300000px;}
.y254{bottom:111.675000px;}
.y86{bottom:114.375000px;}
.y214{bottom:115.080000px;}
.yb6{bottom:116.175000px;}
.y220{bottom:117.975000px;}
.y20{bottom:119.775000px;}
.y256{bottom:120.450000px;}
.y144{bottom:120.675000px;}
.y2d9{bottom:122.475000px;}
.y2a0{bottom:123.375000px;}
.y11b{bottom:124.275000px;}
.y154{bottom:125.175000px;}
.y1d2{bottom:127.875000px;}
.y215{bottom:128.400000px;}
.y52{bottom:128.775000px;}
.yde{bottom:129.675000px;}
.y25a{bottom:130.830000px;}
.yea{bottom:133.275000px;}
.y13b{bottom:134.175000px;}
.y85{bottom:136.875000px;}
.y261{bottom:137.250000px;}
.y11a{bottom:137.775000px;}
.y1dc{bottom:138.675000px;}
.ya5{bottom:138.712500px;}
.y300{bottom:139.605000px;}
.y2f6{bottom:139.612500px;}
.y253{bottom:140.512500px;}
.y216{bottom:141.750000px;}
.y2f4{bottom:143.205000px;}
.y2a3{bottom:143.212500px;}
.y112{bottom:144.112500px;}
.yb5{bottom:145.012500px;}
.y26d{bottom:145.912500px;}
.y103{bottom:147.712500px;}
.y143{bottom:149.512500px;}
.y66{bottom:150.405000px;}
.ye9{bottom:151.305000px;}
.y1f{bottom:152.220000px;}
.y30d{bottom:153.105000px;}
.y153{bottom:154.005000px;}
.y211{bottom:154.755000px;}
.y217{bottom:155.055000px;}
.y84{bottom:155.805000px;}
.y1d1{bottom:156.705000px;}
.y24e{bottom:157.620000px;}
.ydd{bottom:158.505000px;}
.y10c{bottom:159.420000px;}
.yff{bottom:161.205000px;}
.y51{bottom:163.005000px;}
.y262{bottom:163.230000px;}
.y2dc{bottom:163.905000px;}
.y119{bottom:164.805000px;}
.y1d7{bottom:165.255000px;}
.y357{bottom:165.720000px;}
.y187{bottom:166.620000px;}
.ya4{bottom:167.505000px;}
.y252{bottom:168.405000px;}
.y218{bottom:168.420000px;}
.y128{bottom:169.305000px;}
.y2a2{bottom:172.005000px;}
.yb4{bottom:172.920000px;}
.y83{bottom:173.805000px;}
.y221{bottom:174.600000px;}
.y26c{bottom:174.705000px;}
.y102{bottom:176.505000px;}
.y1d6{bottom:176.970000px;}
.y142{bottom:177.405000px;}
.y2c0{bottom:178.305000px;}
.y111{bottom:179.220000px;}
.ye8{bottom:180.120000px;}
.y22e{bottom:181.005000px;}
.y219{bottom:181.725000px;}
.y152{bottom:181.905000px;}
.y118{bottom:182.805000px;}
.y33c{bottom:184.620000px;}
.y1d9{bottom:185.370000px;}
.y65{bottom:185.505000px;}
.y1fc{bottom:186.405000px;}
.ydc{bottom:186.420000px;}
.y25b{bottom:187.980000px;}
.y10b{bottom:189.105000px;}
.y263{bottom:189.225000px;}
.yfe{bottom:190.005000px;}
.y13a{bottom:190.950000px;}
.y27c{bottom:192.750000px;}
.y356{bottom:193.650000px;}
.y34d{bottom:194.550000px;}
.y21a{bottom:195.075000px;}
.y109{bottom:195.450000px;}
.y251{bottom:197.250000px;}
.y50{bottom:198.150000px;}
.y1d8{bottom:198.900000px;}
.y212{bottom:199.425000px;}
.y1c3{bottom:199.950000px;}
.y127{bottom:200.850000px;}
.y257{bottom:200.955000px;}
.yb3{bottom:201.750000px;}
.y1e{bottom:202.650000px;}
.ya3{bottom:204.450000px;}
.y305{bottom:205.350000px;}
.y141{bottom:206.250000px;}
.y21b{bottom:208.380000px;}
.y82{bottom:208.950000px;}
.y151{bottom:210.750000px;}
.y1d5{bottom:211.155000px;}
.y2bf{bottom:212.550000px;}
.y29a{bottom:213.450000px;}
.y24d{bottom:214.350000px;}
.y264{bottom:215.175000px;}
.ydb{bottom:215.250000px;}
.y2d3{bottom:216.150000px;}
.y332{bottom:217.050000px;}
.yfd{bottom:217.950000px;}
.y1f9{bottom:218.850000px;}
.y64{bottom:219.750000px;}
.y355{bottom:221.550000px;}
.y21c{bottom:221.745000px;}
.y117{bottom:223.350000px;}
.y108{bottom:224.250000px;}
.y250{bottom:225.150000px;}
.y26b{bottom:226.950000px;}
.y1d4{bottom:227.400000px;}
.y1d0{bottom:228.750000px;}
.y126{bottom:229.650000px;}
.yb2{bottom:230.550000px;}
.y4f{bottom:232.350000px;}
.ya2{bottom:233.250000px;}
.y213{bottom:233.400000px;}
.y2ca{bottom:234.150000px;}
.y140{bottom:235.050000px;}
.y1c1{bottom:235.950000px;}
.y116{bottom:236.850000px;}
.y1c2{bottom:237.750000px;}
.y150{bottom:239.550000px;}
.y265{bottom:241.155000px;}
.y33b{bottom:241.350000px;}
.y299{bottom:242.250000px;}
.y24c{bottom:243.180000px;}
.y81{bottom:244.095000px;}
.y331{bottom:244.995000px;}
.yfc{bottom:246.780000px;}
.y2be{bottom:247.695000px;}
.y139{bottom:248.580000px;}
.y19a{bottom:250.380000px;}
.y1fb{bottom:251.280000px;}
.y34c{bottom:251.295000px;}
.y2f5{bottom:252.195000px;}
.y1d{bottom:253.080000px;}
.y63{bottom:253.995000px;}
.y115{bottom:254.880000px;}
.y27e{bottom:255.780000px;}
.y165{bottom:257.595000px;}
.y258{bottom:258.105000px;}
.ye7{bottom:258.495000px;}
.y20e{bottom:259.380000px;}
.y2d2{bottom:260.280000px;}
.y222{bottom:260.325000px;}
.yb1{bottom:261.195000px;}
.y21e{bottom:261.405000px;}
.y22a{bottom:261.855000px;}
.ya1{bottom:262.080000px;}
.y13f{bottom:262.980000px;}
.y125{bottom:264.795000px;}
.y4e{bottom:266.580000px;}
.y266{bottom:267.150000px;}
.y14f{bottom:267.495000px;}
.y2c9{bottom:269.280000px;}
.y24b{bottom:271.095000px;}
.yda{bottom:271.995000px;}
.y330{bottom:272.880000px;}
.yfb{bottom:275.580000px;}
.y114{bottom:276.480000px;}
.y354{bottom:278.295000px;}
.y34b{bottom:279.195000px;}
.y21d{bottom:280.305000px;}
.y20c{bottom:280.980000px;}
.y107{bottom:280.995000px;}
.y296{bottom:282.780000px;}
.y1f6{bottom:283.695000px;}
.y10a{bottom:284.595000px;}
.y80{bottom:285.495000px;}
.ye6{bottom:287.280000px;}
.y138{bottom:288.195000px;}
.y62{bottom:289.080000px;}
.ya0{bottom:289.980000px;}
.y2bd{bottom:290.880000px;}
.y13e{bottom:291.795000px;}
.y1ae{bottom:292.695000px;}
.y1c0{bottom:293.580000px;}
.y164{bottom:294.495000px;}
.y26a{bottom:294.930000px;}
.y27a{bottom:295.425000px;}
.y14e{bottom:296.325000px;}
.y29f{bottom:297.225000px;}
.y298{bottom:299.025000px;}
.y24a{bottom:299.925000px;}
.yb0{bottom:300.825000px;}
.y223{bottom:301.800000px;}
.y4d{bottom:302.625000px;}
.y1c{bottom:303.525000px;}
.y113{bottom:306.225000px;}
.y34a{bottom:307.125000px;}
.y199{bottom:308.925000px;}
.yd9{bottom:309.825000px;}
.y295{bottom:311.625000px;}
.yfa{bottom:312.525000px;}
.y7f{bottom:314.325000px;}
.y1f8{bottom:317.025000px;}
.y9f{bottom:318.825000px;}
.y2db{bottom:319.725000px;}
.y279{bottom:320.625000px;}
.y255{bottom:321.300000px;}
.y1ad{bottom:321.525000px;}
.y61{bottom:323.325000px;}
.y14d{bottom:324.225000px;}
.y209{bottom:325.125000px;}
.ye5{bottom:326.925000px;}
.y137{bottom:327.825000px;}
.yaf{bottom:328.725000px;}
.y110{bottom:332.325000px;}
.y163{bottom:333.225000px;}
.y353{bottom:334.125000px;}
.y349{bottom:335.025000px;}
.y29e{bottom:336.825000px;}
.yd8{bottom:337.725000px;}
.yf9{bottom:341.325000px;}
.y7e{bottom:342.225000px;}
.y224{bottom:343.305000px;}
.y198{bottom:345.825000px;}
.y9e{bottom:346.725000px;}
.y32f{bottom:347.655000px;}
.y4c{bottom:348.570000px;}
.y1ac{bottom:349.455000px;}
.y149{bottom:350.355000px;}
.y124{bottom:352.170000px;}
.y14c{bottom:353.070000px;}
.y1b{bottom:353.955000px;}
.y2da{bottom:354.870000px;}
.y136{bottom:355.755000px;}
.y249{bottom:356.655000px;}
.y13d{bottom:357.555000px;}
.y275{bottom:358.455000px;}
.y60{bottom:359.370000px;}
.ye4{bottom:360.255000px;}
.y10f{bottom:361.155000px;}
.y162{bottom:362.070000px;}
.y348{bottom:362.955000px;}
.y2ad{bottom:363.855000px;}
.y29d{bottom:364.755000px;}
.yae{bottom:366.570000px;}
.y206{bottom:369.255000px;}
.yf8{bottom:370.155000px;}
.y7d{bottom:371.055000px;}
.y9d{bottom:375.570000px;}
.y294{bottom:377.355000px;}
.y1ab{bottom:378.255000px;}
.y27d{bottom:379.170000px;}
.y123{bottom:380.070000px;}
.y33a{bottom:380.955000px;}
.y1f4{bottom:381.855000px;}
.y2c8{bottom:381.870000px;}
.y196{bottom:382.755000px;}
.y135{bottom:384.555000px;}
.y225{bottom:384.780000px;}
.y248{bottom:385.470000px;}
.y155{bottom:386.370000px;}
.y1bf{bottom:387.255000px;}
.y10e{bottom:389.070000px;}
.y352{bottom:389.955000px;}
.y1a{bottom:390.855000px;}
.y304{bottom:392.655000px;}
.y14b{bottom:393.570000px;}
.y4b{bottom:394.455000px;}
.yd7{bottom:395.370000px;}
.yf7{bottom:398.055000px;}
.y7c{bottom:399.900000px;}
.y2ac{bottom:400.800000px;}
.y2f1{bottom:401.700000px;}
.y1cf{bottom:402.600000px;}
.y2bc{bottom:403.500000px;}
.y5f{bottom:404.400000px;}
.y293{bottom:406.200000px;}
.y148{bottom:407.100000px;}
.y122{bottom:408.900000px;}
.y19{bottom:410.700000px;}
.y2e8{bottom:412.500000px;}
.y202{bottom:413.400000px;}
.y1f0{bottom:414.300000px;}
.y1be{bottom:416.100000px;}
.y10d{bottom:417.900000px;}
.y161{bottom:418.800000px;}
.y195{bottom:420.600000px;}
.y134{bottom:422.400000px;}
.yd6{bottom:423.300000px;}
.y2c7{bottom:425.100000px;}
.y226{bottom:426.255000px;}
.yf6{bottom:426.900000px;}
.y7b{bottom:427.800000px;}
.y4a{bottom:429.600000px;}
.y18{bottom:430.500000px;}
.y2e7{bottom:431.400000px;}
.y9c{bottom:432.300000px;}
.y292{bottom:434.100000px;}
.y1aa{bottom:435.000000px;}
.y180{bottom:435.900000px;}
.y121{bottom:436.800000px;}
.y2bb{bottom:437.700000px;}
.y2ff{bottom:439.500000px;}
.y297{bottom:441.300000px;}
.y2ea{bottom:442.200000px;}
.y1bd{bottom:444.900000px;}
.y147{bottom:445.800000px;}
.y1f2{bottom:446.700000px;}
.y160{bottom:447.600000px;}
.y133{bottom:450.300000px;}
.y17{bottom:451.200000px;}
.yd5{bottom:452.100000px;}
.yf5{bottom:454.830000px;}
.y351{bottom:455.730000px;}
.y7a{bottom:456.630000px;}
.y193{bottom:458.445000px;}
.y2c6{bottom:459.330000px;}
.y9b{bottom:461.130000px;}
.y291{bottom:462.945000px;}
.y49{bottom:463.830000px;}
.y17f{bottom:464.745000px;}
.y120{bottom:465.630000px;}
.y227{bottom:467.730000px;}
.yad{bottom:470.130000px;}
.y1bc{bottom:472.830000px;}
.y146{bottom:474.630000px;}
.y16{bottom:475.530000px;}
.y15f{bottom:476.445000px;}
.y132{bottom:479.130000px;}
.y2f0{bottom:480.030000px;}
.yd4{bottom:480.945000px;}
.y2ba{bottom:481.830000px;}
.yf4{bottom:483.630000px;}
.y79{bottom:485.445000px;}
.y229{bottom:485.475000px;}
.y302{bottom:486.330000px;}
.y9a{bottom:489.945000px;}
.y290{bottom:491.745000px;}
.y17e{bottom:492.630000px;}
.y11f{bottom:494.445000px;}
.y2ab{bottom:495.330000px;}
.y5e{bottom:498.030000px;}
.y15{bottom:498.930000px;}
.y228{bottom:501.000000px;}
.y1bb{bottom:501.630000px;}
.y347{bottom:502.530000px;}
.y145{bottom:503.445000px;}
.y15e{bottom:504.345000px;}
.y32e{bottom:507.075000px;}
.y131{bottom:507.975000px;}
.yd3{bottom:508.875000px;}
.yc6{bottom:510.675000px;}
.y350{bottom:511.575000px;}
.yf3{bottom:512.475000px;}
.y78{bottom:513.375000px;}
.y22c{bottom:514.755000px;}
.y2b9{bottom:516.075000px;}
.y2ef{bottom:516.975000px;}
.y99{bottom:517.875000px;}
.y1ce{bottom:519.675000px;}
.y1a9{bottom:520.575000px;}
.y17d{bottom:521.475000px;}
.y106{bottom:522.375000px;}
.y14{bottom:523.275000px;}
.y2aa{bottom:524.175000px;}
.y1ee{bottom:525.975000px;}
.yac{bottom:526.875000px;}
.y28f{bottom:528.675000px;}
.y346{bottom:530.475000px;}
.y13c{bottom:531.375000px;}
.y48{bottom:532.275000px;}
.y15d{bottom:533.175000px;}
.y32d{bottom:534.975000px;}
.y130{bottom:535.875000px;}
.yd2{bottom:537.675000px;}
.y34f{bottom:539.475000px;}
.yf2{bottom:540.375000px;}
.y77{bottom:542.175000px;}
.y5d{bottom:543.975000px;}
.y242{bottom:544.875000px;}
.y192{bottom:545.775000px;}
.y101{bottom:546.675000px;}
.yc5{bottom:548.475000px;}
.y13{bottom:549.375000px;}
.y105{bottom:551.175000px;}
.y2a9{bottom:552.075000px;}
.y2d1{bottom:553.875000px;}
.y33{bottom:554.775000px;}
.y98{bottom:555.675000px;}
.y28e{bottom:557.505000px;}
.y2b8{bottom:559.305000px;}
.y11e{bottom:560.220000px;}
.y15c{bottom:561.105000px;}
.y2d7{bottom:562.905000px;}
.y12f{bottom:564.705000px;}
.y47{bottom:566.505000px;}
.y34e{bottom:568.320000px;}
.yf1{bottom:569.205000px;}
.y186{bottom:570.120000px;}
.y1ba{bottom:571.905000px;}
.yd1{bottom:574.605000px;}
.yc4{bottom:576.405000px;}
.y1a8{bottom:577.320000px;}
.y17c{bottom:578.205000px;}
.y76{bottom:579.105000px;}
.ye3{bottom:580.005000px;}
.y21f{bottom:580.905000px;}
.y245{bottom:581.805000px;}
.y32c{bottom:581.820000px;}
.y97{bottom:583.620000px;}
.y271{bottom:584.505000px;}
.y28d{bottom:585.405000px;}
.y345{bottom:587.220000px;}
.y12{bottom:589.005000px;}
.y2a8{bottom:589.905000px;}
.y32{bottom:590.820000px;}
.y2ee{bottom:591.705000px;}
.y12e{bottom:592.605000px;}
.y2b7{bottom:594.405000px;}
.y339{bottom:596.205000px;}
.y2a1{bottom:597.120000px;}
.yf0{bottom:598.005000px;}
.y15b{bottom:598.905000px;}
.y1b9{bottom:600.720000px;}
.y46{bottom:601.605000px;}
.yd0{bottom:603.405000px;}
.y1cd{bottom:605.205000px;}
.y17b{bottom:607.005000px;}
.y75{bottom:607.905000px;}
.y32b{bottom:609.750000px;}
.y96{bottom:612.450000px;}
.yc3{bottom:614.250000px;}
.y1a7{bottom:615.150000px;}
.y240{bottom:616.050000px;}
.y11d{bottom:616.950000px;}
.y2a7{bottom:618.750000px;}
.y210{bottom:619.200000px;}
.y31{bottom:619.650000px;}
.y12d{bottom:621.450000px;}
.y11{bottom:623.250000px;}
.y338{bottom:624.150000px;}
.yef{bottom:625.950000px;}
.y301{bottom:626.850000px;}
.y15a{bottom:627.750000px;}
.y1b8{bottom:628.650000px;}
.y2ed{bottom:629.550000px;}
.y191{bottom:631.350000px;}
.ycf{bottom:632.250000px;}
.y1cc{bottom:633.150000px;}
.y26e{bottom:634.050000px;}
.y17a{bottom:634.950000px;}
.y45{bottom:636.750000px;}
.y2b6{bottom:637.650000px;}
.y95{bottom:641.250000px;}
.yc2{bottom:642.150000px;}
.y28c{bottom:643.050000px;}
.y1a6{bottom:643.950000px;}
.y2e6{bottom:644.850000px;}
.y11c{bottom:645.750000px;}
.y2a6{bottom:646.650000px;}
.y30{bottom:648.450000px;}
.y12c{bottom:650.250000px;}
.y10{bottom:652.050000px;}
.yee{bottom:654.750000px;}
.y159{bottom:655.650000px;}
.y1b7{bottom:657.450000px;}
.y313{bottom:658.350000px;}
.yce{bottom:660.150000px;}
.y1cb{bottom:661.980000px;}
.y179{bottom:663.780000px;}
.y74{bottom:664.695000px;}
.y32a{bottom:665.580000px;}
.y2ec{bottom:666.480000px;}
.y2d0{bottom:666.495000px;}
.y94{bottom:669.180000px;}
.y28b{bottom:670.980000px;}
.y5c{bottom:671.880000px;}
.y2fd{bottom:673.680000px;}
.ye2{bottom:673.695000px;}
.y2d6{bottom:675.480000px;}
.y2f{bottom:676.380000px;}
.y12b{bottom:678.195000px;}
.yc1{bottom:679.995000px;}
.yf{bottom:680.880000px;}
.y44{bottom:682.680000px;}
.y23d{bottom:684.480000px;}
.y320{bottom:685.380000px;}
.ycd{bottom:688.980000px;}
.y1ca{bottom:690.780000px;}
.y27b{bottom:691.695000px;}
.y73{bottom:693.495000px;}
.y1b6{bottom:695.280000px;}
.y93{bottom:697.980000px;}
.y344{bottom:698.880000px;}
.y28a{bottom:699.780000px;}
.y1a5{bottom:700.695000px;}
.y178{bottom:701.580000px;}
.ye1{bottom:702.480000px;}
.y30c{bottom:702.495000px;}
.y2eb{bottom:704.280000px;}
.y2e{bottom:705.195000px;}
.y5b{bottom:706.995000px;}
.y337{bottom:707.880000px;}
.yc0{bottom:708.780000px;}
.y12a{bottom:709.680000px;}
.y2cf{bottom:710.595000px;}
.yed{bottom:711.480000px;}
.y2a5{bottom:713.280000px;}
.y2e5{bottom:714.225000px;}
.ye{bottom:716.025000px;}
.y43{bottom:716.925000px;}
.ycc{bottom:717.825000px;}
.y1c9{bottom:718.725000px;}
.y2d8{bottom:719.625000px;}
.y1b5{bottom:720.525000px;}
.y329{bottom:721.425000px;}
.y72{bottom:722.325000px;}
.y31e{bottom:723.225000px;}
.y173{bottom:725.925000px;}
.y92{bottom:726.825000px;}
.y289{bottom:728.625000px;}
.y14a{bottom:729.525000px;}
.ye0{bottom:731.325000px;}
.y2d{bottom:734.025000px;}
.y29c{bottom:735.825000px;}
.ybf{bottom:736.725000px;}
.y1a4{bottom:738.525000px;}
.yec{bottom:740.325000px;}
.y5a{bottom:741.225000px;}
.y2ce{bottom:744.825000px;}
.ycb{bottom:745.725000px;}
.y312{bottom:746.625000px;}
.y1c8{bottom:747.525000px;}
.y129{bottom:749.325000px;}
.y71{bottom:750.225000px;}
.y42{bottom:751.125000px;}
.y23c{bottom:752.925000px;}
.y2d5{bottom:753.825000px;}
.y91{bottom:754.725000px;}
.yd{bottom:755.625000px;}
.y288{bottom:756.525000px;}
.yab{bottom:757.425000px;}
.ydf{bottom:759.225000px;}
.y2c{bottom:761.925000px;}
.y1a2{bottom:762.825000px;}
.y336{bottom:763.725000px;}
.y29b{bottom:766.425000px;}
.yeb{bottom:768.255000px;}
.yca{bottom:774.570000px;}
.y59{bottom:775.455000px;}
.y1c7{bottom:776.355000px;}
.ybe{bottom:777.255000px;}
.y328{bottom:778.170000px;}
.y70{bottom:779.070000px;}
.y343{bottom:782.655000px;}
.y90{bottom:783.570000px;}
.y2b5{bottom:785.355000px;}
.y41{bottom:786.255000px;}
.y104{bottom:788.070000px;}
.y239{bottom:788.955000px;}
.y2fc{bottom:789.855000px;}
.y2b{bottom:790.755000px;}
.y190{bottom:791.670000px;}
.y1b4{bottom:794.355000px;}
.y287{bottom:794.370000px;}
.yc{bottom:795.255000px;}
.yaa{bottom:797.070000px;}
.y1a0{bottom:799.770000px;}
.yc9{bottom:802.455000px;}
.ybd{bottom:806.070000px;}
.y158{bottom:806.955000px;}
.y2e4{bottom:808.755000px;}
.y342{bottom:810.570000px;}
.y8f{bottom:811.455000px;}
.y171{bottom:814.155000px;}
.y6f{bottom:815.955000px;}
.y18f{bottom:816.855000px;}
.y2a{bottom:818.670000px;}
.y1c6{bottom:819.600000px;}
.y1ed{bottom:820.500000px;}
.y40{bottom:821.400000px;}
.y100{bottom:823.200000px;}
.ya9{bottom:825.000000px;}
.y31d{bottom:825.900000px;}
.y2b4{bottom:828.600000px;}
.y1b3{bottom:831.300000px;}
.y2d4{bottom:832.200000px;}
.ybc{bottom:834.000000px;}
.y311{bottom:834.900000px;}
.y157{bottom:835.800000px;}
.yb{bottom:837.600000px;}
.y341{bottom:838.500000px;}
.y8e{bottom:840.300000px;}
.y2c5{bottom:841.200000px;}
.y2e3{bottom:843.900000px;}
.y6e{bottom:844.800000px;}
.y1c5{bottom:846.600000px;}
.y29{bottom:847.500000px;}
.y1ec{bottom:849.300000px;}
.y16e{bottom:850.200000px;}
.ya8{bottom:853.800000px;}
.y58{bottom:856.500000px;}
.y236{bottom:857.400000px;}
.y1d3{bottom:857.700000px;}
.y327{bottom:861.900000px;}
.ybb{bottom:862.800000px;}
.y2b3{bottom:863.700000px;}
.y156{bottom:864.600000px;}
.ya{bottom:866.400000px;}
.y3f{bottom:867.300000px;}
.y1b2{bottom:868.200000px;}
.y8d{bottom:869.100000px;}
.y6d{bottom:873.630000px;}
.y19f{bottom:875.445000px;}
.y28{bottom:876.330000px;}
.y1eb{bottom:878.130000px;}
.y310{bottom:879.945000px;}
.y1c4{bottom:880.830000px;}
.y2fb{bottom:881.730000px;}
.ya7{bottom:882.630000px;}
.y326{bottom:889.830000px;}
.y18e{bottom:890.730000px;}
.y57{bottom:891.630000px;}
.y9{bottom:893.445000px;}
.y283{bottom:895.230000px;}
.yc8{bottom:897.045000px;}
.y8c{bottom:899.745000px;}
.y2cd{bottom:900.630000px;}
.y6c{bottom:901.545000px;}
.y3e{bottom:902.445000px;}
.y16c{bottom:903.330000px;}
.y27{bottom:904.230000px;}
.y1b1{bottom:905.130000px;}
.y1ea{bottom:906.030000px;}
.y2b2{bottom:906.945000px;}
.y2c4{bottom:909.630000px;}
.y7{bottom:910.545000px;}
.y2e2{bottom:912.330000px;}
.y316{bottom:913.230000px;}
.y31b{bottom:913.245000px;}
.y185{bottom:915.045000px;}
.y325{bottom:917.730000px;}
.yba{bottom:919.530000px;}
.y340{bottom:923.130000px;}
.y30e{bottom:924.075000px;}
.y233{bottom:925.875000px;}
.yc7{bottom:928.575000px;}
.y6b{bottom:930.375000px;}
.y285{bottom:932.175000px;}
.y26{bottom:933.075000px;}
.y1e9{bottom:934.875000px;}
.y3d{bottom:936.675000px;}
.y8b{bottom:939.375000px;}
.y1df{bottom:940.275000px;}
.y2b1{bottom:941.175000px;}
.y1b0{bottom:942.975000px;}
.y184{bottom:943.875000px;}
.y2c3{bottom:944.775000px;}
.y324{bottom:945.675000px;}
.y2e1{bottom:947.475000px;}
.yb9{bottom:948.375000px;}
.y31a{bottom:949.275000px;}
.y33f{bottom:951.075000px;}
.y2fa{bottom:956.475000px;}
.y6a{bottom:959.175000px;}
.y235{bottom:960.075000px;}
.y25{bottom:960.975000px;}
.y19e{bottom:963.675000px;}
.y18c{bottom:965.475000px;}
.y1e3{bottom:967.275000px;}
.y8a{bottom:968.175000px;}
.y280{bottom:969.975000px;}
.y3c{bottom:971.775000px;}
.y56{bottom:972.675000px;}
.y323{bottom:973.575000px;}
.y169{bottom:975.375000px;}
.yb8{bottom:977.205000px;}
.y2dd{bottom:978.120000px;}
.y2cc{bottom:979.005000px;}
.y1af{bottom:980.820000px;}
.y2e0{bottom:981.705000px;}
.y2b0{bottom:985.320000px;}
.y2a4{bottom:987.105000px;}
.y2c2{bottom:988.005000px;}
.y24{bottom:989.820000px;}
.y2e9{bottom:990.705000px;}
.y19d{bottom:991.620000px;}
.y231{bottom:994.320000px;}
.y69{bottom:996.105000px;}
.y315{bottom:998.820000px;}
.y183{bottom:1000.605000px;}
.y322{bottom:1001.505000px;}
.y5{bottom:1002.405000px;}
.y18a{bottom:1003.320000px;}
.yb7{bottom:1005.120000px;}
.y55{bottom:1006.920000px;}
.y282{bottom:1007.820000px;}
.y2{bottom:1010.505000px;}
.y30a{bottom:1012.320000px;}
.y2cb{bottom:1013.205000px;}
.y1e5{bottom:1014.120000px;}
.y2df{bottom:1015.920000px;}
.y3b{bottom:1017.705000px;}
.y23{bottom:1018.620000px;}
.y2af{bottom:1019.505000px;}
.y19c{bottom:1020.420000px;}
.y167{bottom:1022.205000px;}
.y24f{bottom:1023.105000px;}
.y68{bottom:1024.905000px;}
.y1e0{bottom:1027.620000px;}
.y182{bottom:1029.450000px;}
.y22f{bottom:1030.350000px;}
.y2f9{bottom:1031.250000px;}
.y1dd{bottom:1032.150000px;}
.y89{bottom:1033.950000px;}
.y33e{bottom:1034.850000px;}
.y188{bottom:1040.250000px;}
.y54{bottom:1041.150000px;}
.y335{bottom:1043.850000px;}
.y27f{bottom:1045.650000px;}
.y22{bottom:1046.550000px;}
.y19b{bottom:1048.350000px;}
.y2de{bottom:1050.150000px;}
.y1e8{bottom:1051.050000px;}
.y67{bottom:1052.850000px;}
.y2ae{bottom:1053.750000px;}
.y3a{bottom:1057.350000px;}
.y309{bottom:1059.150000px;}
.y88{bottom:1061.850000px;}
.y33d{bottom:1062.750000px;}
.y2f8{bottom:1069.050000px;}
.y334{bottom:1071.750000px;}
.y21{bottom:1078.950000px;}
.y39{bottom:1085.295000px;}
.y53{bottom:1087.080000px;}
.y181{bottom:1088.880000px;}
.y87{bottom:1090.695000px;}
.y2c1{bottom:1091.580000px;}
.y166{bottom:1095.195000px;}
.y1{bottom:1122.195000px;}
.y35{bottom:1178.025000px;}
.y34{bottom:1202.370000px;}
.h5{height:8.100000px;}
.hf{height:17.138672px;}
.h43{height:20.700000px;}
.h44{height:21.600000px;}
.h41{height:21.637500px;}
.h17{height:24.764062px;}
.h31{height:27.000000px;}
.h35{height:27.937500px;}
.h3b{height:31.500000px;}
.he{height:31.537500px;}
.h3e{height:32.400000px;}
.h3a{height:32.437500px;}
.h4e{height:33.300000px;}
.h4d{height:33.337500px;}
.h53{height:34.200000px;}
.h20{height:35.100000px;}
.h21{height:35.137500px;}
.h2c{height:35.806641px;}
.h2d{height:35.955835px;}
.h51{height:36.037500px;}
.h28{height:36.885000px;}
.h26{height:36.900000px;}
.h25{height:36.937500px;}
.h1a{height:37.146094px;}
.h34{height:37.546875px;}
.h24{height:37.800000px;}
.h29{height:37.822500px;}
.h27{height:37.837500px;}
.h2{height:40.241602px;}
.h57{height:40.370581px;}
.h61{height:40.500000px;}
.h5d{height:42.764062px;}
.h6a{height:43.200000px;}
.h40{height:43.237500px;}
.h63{height:44.100000px;}
.h68{height:44.137500px;}
.h37{height:45.937500px;}
.h48{height:46.432617px;}
.h2e{height:46.548633px;}
.h47{height:46.561597px;}
.h2b{height:46.697827px;}
.h66{height:46.800000px;}
.h1f{height:46.837500px;}
.h5b{height:48.637500px;}
.h38{height:48.810937px;}
.h5c{height:49.537500px;}
.h22{height:52.237500px;}
.h6{height:52.623633px;}
.h33{height:53.137500px;}
.h1e{height:54.937500px;}
.hd{height:55.719141px;}
.h5a{height:56.320312px;}
.h42{height:57.618000px;}
.h3f{height:58.536000px;}
.h36{height:59.422500px;}
.h46{height:59.812617px;}
.h8{height:61.910156px;}
.h4a{height:62.039136px;}
.h1d{height:62.286094px;}
.h16{height:62.346094px;}
.h1c{height:62.406094px;}
.h1b{height:62.466094px;}
.h15{height:63.829687px;}
.h3c{height:63.937500px;}
.h13{height:64.233281px;}
.h12{height:64.353281px;}
.h11{height:64.413281px;}
.h14{height:64.443281px;}
.h2f{height:64.451953px;}
.h10{height:64.473281px;}
.h30{height:64.601147px;}
.h39{height:64.837500px;}
.h3d{height:64.875000px;}
.h4b{height:65.300400px;}
.h4c{height:67.537500px;}
.h4f{height:67.575000px;}
.h19{height:67.584375px;}
.h52{height:68.437500px;}
.h50{height:70.275000px;}
.ha{height:71.196680px;}
.h58{height:71.325659px;}
.h5f{height:74.737500px;}
.h5e{height:74.775000px;}
.h18{height:75.093750px;}
.h4{height:83.578711px;}
.h59{height:84.675000px;}
.h32{height:86.357813px;}
.h23{height:87.337500px;}
.h3{height:90.075000px;}
.h7{height:90.960000px;}
.h67{height:92.775000px;}
.hc{height:93.867188px;}
.h56{height:98.332617px;}
.hb{height:101.376562px;}
.h9{height:124.061133px;}
.h55{height:129.532617px;}
.h65{height:234.150000px;}
.h2a{height:248.400000px;}
.h64{height:281.025000px;}
.h62{height:298.125000px;}
.h45{height:306.900000px;}
.h69{height:309.810000px;}
.h54{height:326.700000px;}
.h60{height:448.530000px;}
.h49{height:534.600000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:6.300000px;}
.w4{width:12.600000px;}
.w13{width:24.337500px;}
.w11{width:26.100000px;}
.w12{width:33.300000px;}
.w10{width:33.337500px;}
.wf{width:34.237500px;}
.w28{width:94.560000px;}
.w29{width:94.575000px;}
.w27{width:94.612500px;}
.w1d{width:101.812500px;}
.w1a{width:106.312500px;}
.w1b{width:107.212500px;}
.w18{width:108.097500px;}
.w19{width:108.112500px;}
.w1c{width:109.912500px;}
.w17{width:110.812500px;}
.wc{width:116.212500px;}
.wa{width:116.250000px;}
.wb{width:127.012500px;}
.we{width:132.450000px;}
.w26{width:135.112500px;}
.w24{width:135.150000px;}
.w22{width:136.050000px;}
.w23{width:136.912500px;}
.w21{width:141.450000px;}
.w16{width:142.350000px;}
.w2d{width:148.650000px;}
.w2a{width:189.180000px;}
.w2e{width:200.925000px;}
.w2b{width:201.825000px;}
.w15{width:209.895000px;}
.w2c{width:223.425000px;}
.w8{width:251.370000px;}
.w6{width:252.255000px;}
.w7{width:252.270000px;}
.w1f{width:330.630000px;}
.w1e{width:342.900000px;}
.w9{width:362.175000px;}
.wd{width:372.075000px;}
.w2f{width:378.375000px;}
.w30{width:378.405000px;}
.w14{width:486.495000px;}
.w2{width:677.520000px;}
.w25{width:685.605000px;}
.w5{width:756.780000px;}
.w20{width:756.900000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x27{left:10.785000px;}
.x36{left:12.600000px;}
.x3a{left:14.400000px;}
.x1b{left:17.145000px;}
.x2f{left:19.830000px;}
.x31{left:21.630000px;}
.x40{left:24.337500px;}
.x6d{left:27.900000px;}
.x3b{left:30.645000px;}
.x3f{left:33.337500px;}
.x32{left:35.130000px;}
.x3c{left:36.937500px;}
.x34{left:39.630000px;}
.x38{left:41.445000px;}
.x71{left:43.230000px;}
.x6c{left:45.075000px;}
.x44{left:46.462500px;}
.x51{left:48.675000px;}
.x72{left:50.445000px;}
.x2d{left:54.937500px;}
.x16{left:60.330000px;}
.x17{left:63.075000px;}
.x1c{left:64.875000px;}
.x5f{left:67.275000px;}
.x3{left:68.475000px;}
.x4d{left:70.275000px;}
.x19{left:72.075000px;}
.x7{left:74.775000px;}
.x42{left:78.075000px;}
.x18{left:79.275000px;}
.x3d{left:81.075000px;}
.x1e{left:83.775000px;}
.xd{left:86.475000px;}
.x3e{left:89.175000px;}
.x6{left:93.712500px;}
.x4{left:95.512500px;}
.x1d{left:97.320000px;}
.x54{left:100.920000px;}
.x41{left:102.600000px;}
.x20{left:106.575000px;}
.x46{left:109.012500px;}
.x8{left:110.812500px;}
.x45{left:114.045000px;}
.x55{left:115.305000px;}
.x5{left:121.612500px;}
.x57{left:123.495000px;}
.x23{left:127.387500px;}
.x2{left:148.650000px;}
.x58{left:157.950000px;}
.x6e{left:160.350000px;}
.x65{left:163.095000px;}
.x2e{left:180.195000px;}
.xe{left:184.680000px;}
.x59{left:192.375000px;}
.x10{left:194.580000px;}
.x60{left:195.720000px;}
.xf{left:198.195000px;}
.x11{left:202.695000px;}
.x9{left:207.225000px;}
.x4e{left:209.925000px;}
.x61{left:235.095000px;}
.x21{left:240.600000px;}
.x66{left:257.670000px;}
.x5a{left:261.300000px;}
.x13{left:265.770000px;}
.x22{left:273.000000px;}
.x43{left:274.800000px;}
.x29{left:281.100000px;}
.x53{left:285.600000px;}
.x30{left:289.200000px;}
.x56{left:291.900000px;}
.x5b{left:295.725000px;}
.x12{left:304.500000px;}
.x49{left:313.350000px;}
.x48{left:318.495000px;}
.xb{left:320.745000px;}
.x26{left:325.245000px;}
.x5c{left:330.195000px;}
.x4c{left:332.475000px;}
.x4a{left:342.645000px;}
.x4f{left:345.975000px;}
.x67{left:352.275000px;}
.x62{left:360.195000px;}
.x6f{left:362.175000px;}
.x28{left:365.775000px;}
.x14{left:382.920000px;}
.x33{left:398.220000px;}
.x2a{left:414.405000px;}
.x1a{left:440.550000px;}
.x68{left:446.850000px;}
.x2c{left:454.095000px;}
.x1{left:461.280000px;}
.x5d{left:468.000000px;}
.x50{left:482.895000px;}
.x35{left:505.425000px;}
.x15{left:510.825000px;}
.x24{left:516.345000px;}
.x25{left:539.745000px;}
.x69{left:541.470000px;}
.x2b{left:557.655000px;}
.xc{left:573.000000px;}
.x70{left:585.600000px;}
.x4b{left:595.200000px;}
.x63{left:609.120000px;}
.x37{left:613.530000px;}
.x52{left:618.945000px;}
.x6a{left:636.075000px;}
.x64{left:648.480000px;}
.x5e{left:674.700000px;}
.x39{left:723.450000px;}
.x6b{left:730.650000px;}
.x1f{left:741.450000px;}
.x47{left:827.070000px;}
@media print{
.vd{vertical-align:-86.560000pt;}
.v6{vertical-align:-22.560000pt;}
.v9{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.va{vertical-align:-9.333333pt;}
.v1{vertical-align:-6.346667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.400000pt;}
.v8{vertical-align:11.893333pt;}
.v7{vertical-align:12.853333pt;}
.v4{vertical-align:16.000000pt;}
.vc{vertical-align:18.400000pt;}
.v3{vertical-align:22.400000pt;}
.vb{vertical-align:36.960000pt;}
.ls57{letter-spacing:-2.597333pt;}
.ls34{letter-spacing:-1.962667pt;}
.ls37{letter-spacing:-1.781333pt;}
.ls10{letter-spacing:-1.445333pt;}
.ls33{letter-spacing:-1.434667pt;}
.ls64{letter-spacing:-1.402667pt;}
.ls5b{letter-spacing:-1.088000pt;}
.ls5a{letter-spacing:-1.056000pt;}
.ls25{letter-spacing:-0.730667pt;}
.ls2{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.038400pt;}
.lsa{letter-spacing:-0.025600pt;}
.ls9{letter-spacing:-0.019200pt;}
.lsb{letter-spacing:-0.012800pt;}
.ls1d{letter-spacing:-0.006400pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.012800pt;}
.ls13{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.025600pt;}
.ls44{letter-spacing:0.027733pt;}
.ls2b{letter-spacing:0.040533pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.072533pt;}
.ls46{letter-spacing:0.081067pt;}
.ls42{letter-spacing:0.093867pt;}
.ls49{letter-spacing:0.107733pt;}
.ls4a{letter-spacing:0.119467pt;}
.ls5e{letter-spacing:0.120533pt;}
.ls53{letter-spacing:0.125867pt;}
.ls59{letter-spacing:0.134400pt;}
.ls3e{letter-spacing:0.140800pt;}
.ls18{letter-spacing:0.147200pt;}
.ls2f{letter-spacing:0.179200pt;}
.lsf{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.396800pt;}
.ls51{letter-spacing:0.480000pt;}
.ls52{letter-spacing:0.512000pt;}
.ls62{letter-spacing:0.725333pt;}
.ls41{letter-spacing:0.874667pt;}
.ls22{letter-spacing:0.996267pt;}
.ls21{letter-spacing:1.049600pt;}
.ls32{letter-spacing:1.050667pt;}
.ls60{letter-spacing:1.082667pt;}
.ls61{letter-spacing:1.084800pt;}
.ls0{letter-spacing:1.088000pt;}
.ls5f{letter-spacing:1.139200pt;}
.ls14{letter-spacing:1.156267pt;}
.ls36{letter-spacing:1.237333pt;}
.ls43{letter-spacing:1.395200pt;}
.ls50{letter-spacing:1.408000pt;}
.ls35{letter-spacing:1.418667pt;}
.ls4f{letter-spacing:1.488000pt;}
.ls3{letter-spacing:1.578667pt;}
.ls4e{letter-spacing:1.600000pt;}
.ls56{letter-spacing:1.962667pt;}
.ls55{letter-spacing:2.096000pt;}
.ls45{letter-spacing:2.124800pt;}
.ls20{letter-spacing:3.133867pt;}
.ls27{letter-spacing:3.173333pt;}
.ls1c{letter-spacing:3.187200pt;}
.ls16{letter-spacing:3.189333pt;}
.ls4d{letter-spacing:3.210667pt;}
.ls2c{letter-spacing:3.240533pt;}
.ls31{letter-spacing:3.293867pt;}
.ls2e{letter-spacing:3.347200pt;}
.ls38{letter-spacing:5.324800pt;}
.ls17{letter-spacing:6.333867pt;}
.ls5{letter-spacing:6.387200pt;}
.ls24{letter-spacing:6.440533pt;}
.ls1e{letter-spacing:6.493867pt;}
.ls1f{letter-spacing:6.520533pt;}
.ls29{letter-spacing:6.547200pt;}
.ls30{letter-spacing:7.449600pt;}
.ls3b{letter-spacing:9.533867pt;}
.ls15{letter-spacing:9.587200pt;}
.ls4c{letter-spacing:9.597600pt;}
.ls19{letter-spacing:9.640533pt;}
.ls4b{letter-spacing:9.664000pt;}
.ls3a{letter-spacing:9.693867pt;}
.ls26{letter-spacing:9.747200pt;}
.ls1b{letter-spacing:12.733867pt;}
.ls3c{letter-spacing:12.787200pt;}
.ls39{letter-spacing:12.840533pt;}
.ls5c{letter-spacing:12.893867pt;}
.ls48{letter-spacing:15.987200pt;}
.ls1a{letter-spacing:16.040533pt;}
.ls47{letter-spacing:16.147200pt;}
.ls58{letter-spacing:19.133867pt;}
.ls23{letter-spacing:19.187200pt;}
.ls3f{letter-spacing:19.293867pt;}
.ls5d{letter-spacing:31.987200pt;}
.ls2a{letter-spacing:44.787200pt;}
.ls12{letter-spacing:68.736000pt;}
.ls11{letter-spacing:94.469333pt;}
.lse{letter-spacing:97.536000pt;}
.ls40{letter-spacing:115.347200pt;}
.lsd{letter-spacing:123.402667pt;}
.ls3d{letter-spacing:131.347200pt;}
.lsc{letter-spacing:152.202667pt;}
.ls63{letter-spacing:172.920533pt;}
.ws39{word-spacing:-54.400000pt;}
.ws0{word-spacing:-24.019200pt;}
.ws2{word-spacing:-23.980800pt;}
.wsa{word-spacing:-22.560000pt;}
.ws15{word-spacing:-19.223467pt;}
.ws22{word-spacing:-17.829067pt;}
.ws21{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.408000pt;}
.ws38{word-spacing:-16.205867pt;}
.ws6{word-spacing:-16.038400pt;}
.wsd{word-spacing:-16.032000pt;}
.ws7{word-spacing:-16.025600pt;}
.ws8{word-spacing:-16.019200pt;}
.ws9{word-spacing:-16.012800pt;}
.wsf{word-spacing:-16.000000pt;}
.ws3b{word-spacing:-15.997867pt;}
.ws4{word-spacing:-15.993600pt;}
.ws5{word-spacing:-15.987200pt;}
.ws3a{word-spacing:-15.848533pt;}
.wsc{word-spacing:-15.123200pt;}
.ws3c{word-spacing:-14.610133pt;}
.wsb{word-spacing:-13.677867pt;}
.ws20{word-spacing:-13.381067pt;}
.ws1f{word-spacing:-13.344000pt;}
.ws1a{word-spacing:-13.164800pt;}
.ws19{word-spacing:-13.047733pt;}
.ws1c{word-spacing:-12.432000pt;}
.ws24{word-spacing:-12.403200pt;}
.ws34{word-spacing:-12.288000pt;}
.ws12{word-spacing:-11.725867pt;}
.ws14{word-spacing:-11.564800pt;}
.ws1d{word-spacing:-11.456000pt;}
.ws1b{word-spacing:-10.944000pt;}
.ws11{word-spacing:-10.834133pt;}
.ws35{word-spacing:-10.304000pt;}
.wse{word-spacing:-9.785600pt;}
.ws18{word-spacing:-9.431733pt;}
.ws17{word-spacing:-9.401600pt;}
.ws16{word-spacing:-7.232000pt;}
.ws10{word-spacing:-7.116800pt;}
.ws13{word-spacing:-5.682133pt;}
.ws3{word-spacing:0.000000pt;}
.ws26{word-spacing:1.937963pt;}
.ws25{word-spacing:2.211067pt;}
.ws28{word-spacing:2.218667pt;}
.ws29{word-spacing:2.317733pt;}
.ws2a{word-spacing:2.371067pt;}
.ws27{word-spacing:2.400000pt;}
.ws36{word-spacing:3.569067pt;}
.ws33{word-spacing:6.534547pt;}
.ws37{word-spacing:7.472000pt;}
.ws32{word-spacing:12.831053pt;}
.ws2e{word-spacing:20.772267pt;}
.ws31{word-spacing:21.111467pt;}
.ws2c{word-spacing:21.164800pt;}
.ws2b{word-spacing:32.716800pt;}
.ws2f{word-spacing:32.983467pt;}
.ws2d{word-spacing:33.036800pt;}
.ws30{word-spacing:33.196800pt;}
.ws1e{word-spacing:117.440000pt;}
.ws23{word-spacing:176.117333pt;}
._4b{margin-left:-11.987200pt;}
._62{margin-left:-8.700115pt;}
._5a{margin-left:-7.162694pt;}
._22{margin-left:-5.493444pt;}
._44{margin-left:-4.588184pt;}
._12{margin-left:-3.649067pt;}
._6{margin-left:-1.975439pt;}
._2{margin-left:-1.057016pt;}
._0{width:1.235200pt;}
._1{width:2.797867pt;}
._7{width:4.212267pt;}
._3{width:5.496865pt;}
._14{width:6.557867pt;}
._4d{width:7.464865pt;}
._4{width:8.457242pt;}
._47{width:9.464202pt;}
._d{width:10.359467pt;}
._4a{width:11.849196pt;}
._13{width:12.844800pt;}
._c{width:13.916469pt;}
._5{width:15.207651pt;}
._48{width:16.990602pt;}
._58{width:18.256404pt;}
._49{width:19.149343pt;}
._4c{width:20.803723pt;}
._50{width:22.228267pt;}
._51{width:23.221002pt;}
._e{width:25.516800pt;}
._61{width:26.560000pt;}
._60{width:27.523200pt;}
._f{width:28.627200pt;}
._11{width:31.910400pt;}
._10{width:34.848000pt;}
._57{width:35.912533pt;}
._56{width:36.840533pt;}
._55{width:38.188800pt;}
._5c{width:40.048000pt;}
._53{width:41.529600pt;}
._52{width:44.277333pt;}
._4f{width:45.348267pt;}
._54{width:49.280000pt;}
._5d{width:55.054933pt;}
._5f{width:57.230878pt;}
._59{width:131.383467pt;}
._63{width:139.504000pt;}
._5e{width:163.075067pt;}
._5b{width:190.590906pt;}
._a{width:324.670933pt;}
._9{width:327.946667pt;}
._34{width:375.987172pt;}
._8{width:524.717867pt;}
._45{width:689.384345pt;}
._4e{width:752.787200pt;}
._b{width:753.676800pt;}
._1e{width:1221.480828pt;}
._32{width:1304.603108pt;}
._38{width:1333.650685pt;}
._2d{width:1352.414189pt;}
._37{width:1439.159963pt;}
._36{width:1589.731807pt;}
._1d{width:1599.412896pt;}
._28{width:1602.358018pt;}
._2e{width:1606.206377pt;}
._41{width:1615.151540pt;}
._1b{width:1648.007090pt;}
._26{width:1660.369637pt;}
._2c{width:1698.516979pt;}
._3a{width:1715.130166pt;}
._46{width:1755.723251pt;}
._21{width:1789.163430pt;}
._42{width:1792.218239pt;}
._33{width:1804.632179pt;}
._3f{width:1826.342101pt;}
._2b{width:1833.230607pt;}
._43{width:1862.072161pt;}
._2a{width:1868.531894pt;}
._3e{width:1903.536873pt;}
._3b{width:1910.372938pt;}
._18{width:1919.129352pt;}
._39{width:1947.616873pt;}
._1c{width:1954.990690pt;}
._20{width:1961.948460pt;}
._23{width:1967.960478pt;}
._16{width:1977.211494pt;}
._27{width:2011.845145pt;}
._19{width:2037.701113pt;}
._1f{width:2041.185945pt;}
._30{width:2063.252046pt;}
._3d{width:2089.140028pt;}
._25{width:2098.126694pt;}
._29{width:2105.688368pt;}
._24{width:2114.565149pt;}
._31{width:2121.595545pt;}
._35{width:2125.464372pt;}
._2f{width:2128.575834pt;}
._17{width:2179.208372pt;}
._1a{width:2208.889434pt;}
._40{width:2211.413251pt;}
._3c{width:2288.404184pt;}
._15{width:2301.261867pt;}
.fs8{font-size:16.000000pt;}
.fsb{font-size:25.600000pt;}
.fsd{font-size:32.000000pt;}
.fse{font-size:32.133333pt;}
.fsa{font-size:35.200000pt;}
.fs9{font-size:38.400000pt;}
.fs0{font-size:41.600000pt;}
.fsc{font-size:41.733333pt;}
.fs10{font-size:48.000000pt;}
.fs11{font-size:48.133333pt;}
.fs2{font-size:54.400000pt;}
.fs7{font-size:57.600000pt;}
.fsf{font-size:57.733333pt;}
.fs3{font-size:64.000000pt;}
.fs12{font-size:64.133333pt;}
.fs5{font-size:73.600000pt;}
.fs13{font-size:73.733333pt;}
.fs6{font-size:80.000000pt;}
.fs1{font-size:86.400000pt;}
.fs4{font-size:105.733333pt;}
.y6{bottom:-13.600000pt;}
.y1de{bottom:-1.600000pt;}
.y1e4{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y177{bottom:2.400000pt;}
.y200{bottom:5.613333pt;}
.y205{bottom:7.200000pt;}
.y20f{bottom:7.213333pt;}
.y204{bottom:8.000000pt;}
.y20b{bottom:8.026667pt;}
.y208{bottom:8.040000pt;}
.y269{bottom:9.200000pt;}
.y1f3{bottom:9.600000pt;}
.y1f5{bottom:9.613333pt;}
.y1fd{bottom:9.640000pt;}
.y232{bottom:10.386667pt;}
.y16b{bottom:10.400000pt;}
.y16d{bottom:10.413333pt;}
.y1e2{bottom:10.426667pt;}
.y38{bottom:10.433333pt;}
.y172{bottom:10.440000pt;}
.y194{bottom:11.186667pt;}
.y18b{bottom:11.200000pt;}
.y2f7{bottom:11.206667pt;}
.y197{bottom:11.213333pt;}
.y1a3{bottom:11.226667pt;}
.y18d{bottom:11.240000pt;}
.y1a1{bottom:11.986667pt;}
.y189{bottom:12.000000pt;}
.y246{bottom:12.026667pt;}
.y2f2{bottom:12.800000pt;}
.y22d{bottom:13.066667pt;}
.y31c{bottom:13.586667pt;}
.y274{bottom:13.600000pt;}
.y321{bottom:13.613333pt;}
.y1e7{bottom:13.626667pt;}
.y203{bottom:14.400000pt;}
.y207{bottom:14.413333pt;}
.y26f{bottom:15.200000pt;}
.y20d{bottom:15.240000pt;}
.y4{bottom:16.000000pt;}
.y23f{bottom:16.800000pt;}
.y23b{bottom:16.813333pt;}
.y238{bottom:16.826667pt;}
.y247{bottom:17.586667pt;}
.y30f{bottom:17.600000pt;}
.y314{bottom:17.640000pt;}
.y176{bottom:18.400000pt;}
.y30b{bottom:18.440000pt;}
.y306{bottom:19.186667pt;}
.y307{bottom:19.200000pt;}
.y1fe{bottom:19.213333pt;}
.y2fe{bottom:20.000000pt;}
.y16a{bottom:20.026667pt;}
.y303{bottom:20.040000pt;}
.y268{bottom:21.506667pt;}
.y20a{bottom:21.626667pt;}
.y273{bottom:22.400000pt;}
.y1ef{bottom:22.413333pt;}
.y37{bottom:23.200000pt;}
.y168{bottom:23.240000pt;}
.y1f1{bottom:24.000000pt;}
.y277{bottom:24.013333pt;}
.y1fa{bottom:24.026667pt;}
.y272{bottom:24.040000pt;}
.y234{bottom:24.800000pt;}
.y1f7{bottom:24.826667pt;}
.y201{bottom:25.613333pt;}
.y16f{bottom:25.626667pt;}
.y230{bottom:26.400000pt;}
.y244{bottom:26.426667pt;}
.y170{bottom:26.440000pt;}
.y286{bottom:28.000000pt;}
.y281{bottom:28.026667pt;}
.y284{bottom:28.040000pt;}
.y1e6{bottom:28.826667pt;}
.y319{bottom:28.840000pt;}
.y1e1{bottom:32.026667pt;}
.y241{bottom:32.800000pt;}
.y1ff{bottom:32.813333pt;}
.y23e{bottom:32.840000pt;}
.y175{bottom:33.600000pt;}
.y237{bottom:33.626667pt;}
.y23a{bottom:33.640000pt;}
.y22b{bottom:33.960000pt;}
.y278{bottom:35.200000pt;}
.y1db{bottom:37.200000pt;}
.y31f{bottom:37.600000pt;}
.y276{bottom:37.640000pt;}
.y308{bottom:40.026667pt;}
.y267{bottom:40.826667pt;}
.y36{bottom:41.633333pt;}
.y243{bottom:42.426667pt;}
.y318{bottom:42.440000pt;}
.y1da{bottom:49.200000pt;}
.y3{bottom:52.040000pt;}
.y25e{bottom:52.733333pt;}
.y270{bottom:56.066667pt;}
.y317{bottom:56.080000pt;}
.y174{bottom:56.826667pt;}
.y8{bottom:60.066667pt;}
.y25d{bottom:74.733333pt;}
.y25f{bottom:75.840000pt;}
.y25c{bottom:77.026667pt;}
.y259{bottom:81.666667pt;}
.y2f3{bottom:91.266667pt;}
.y333{bottom:93.666667pt;}
.y358{bottom:97.666667pt;}
.ya6{bottom:98.466667pt;}
.y260{bottom:98.933333pt;}
.y254{bottom:99.266667pt;}
.y86{bottom:101.666667pt;}
.y214{bottom:102.293333pt;}
.yb6{bottom:103.266667pt;}
.y220{bottom:104.866667pt;}
.y20{bottom:106.466667pt;}
.y256{bottom:107.066667pt;}
.y144{bottom:107.266667pt;}
.y2d9{bottom:108.866667pt;}
.y2a0{bottom:109.666667pt;}
.y11b{bottom:110.466667pt;}
.y154{bottom:111.266667pt;}
.y1d2{bottom:113.666667pt;}
.y215{bottom:114.133333pt;}
.y52{bottom:114.466667pt;}
.yde{bottom:115.266667pt;}
.y25a{bottom:116.293333pt;}
.yea{bottom:118.466667pt;}
.y13b{bottom:119.266667pt;}
.y85{bottom:121.666667pt;}
.y261{bottom:122.000000pt;}
.y11a{bottom:122.466667pt;}
.y1dc{bottom:123.266667pt;}
.ya5{bottom:123.300000pt;}
.y300{bottom:124.093333pt;}
.y2f6{bottom:124.100000pt;}
.y253{bottom:124.900000pt;}
.y216{bottom:126.000000pt;}
.y2f4{bottom:127.293333pt;}
.y2a3{bottom:127.300000pt;}
.y112{bottom:128.100000pt;}
.yb5{bottom:128.900000pt;}
.y26d{bottom:129.700000pt;}
.y103{bottom:131.300000pt;}
.y143{bottom:132.900000pt;}
.y66{bottom:133.693333pt;}
.ye9{bottom:134.493333pt;}
.y1f{bottom:135.306667pt;}
.y30d{bottom:136.093333pt;}
.y153{bottom:136.893333pt;}
.y211{bottom:137.560000pt;}
.y217{bottom:137.826667pt;}
.y84{bottom:138.493333pt;}
.y1d1{bottom:139.293333pt;}
.y24e{bottom:140.106667pt;}
.ydd{bottom:140.893333pt;}
.y10c{bottom:141.706667pt;}
.yff{bottom:143.293333pt;}
.y51{bottom:144.893333pt;}
.y262{bottom:145.093333pt;}
.y2dc{bottom:145.693333pt;}
.y119{bottom:146.493333pt;}
.y1d7{bottom:146.893333pt;}
.y357{bottom:147.306667pt;}
.y187{bottom:148.106667pt;}
.ya4{bottom:148.893333pt;}
.y252{bottom:149.693333pt;}
.y218{bottom:149.706667pt;}
.y128{bottom:150.493333pt;}
.y2a2{bottom:152.893333pt;}
.yb4{bottom:153.706667pt;}
.y83{bottom:154.493333pt;}
.y221{bottom:155.200000pt;}
.y26c{bottom:155.293333pt;}
.y102{bottom:156.893333pt;}
.y1d6{bottom:157.306667pt;}
.y142{bottom:157.693333pt;}
.y2c0{bottom:158.493333pt;}
.y111{bottom:159.306667pt;}
.ye8{bottom:160.106667pt;}
.y22e{bottom:160.893333pt;}
.y219{bottom:161.533333pt;}
.y152{bottom:161.693333pt;}
.y118{bottom:162.493333pt;}
.y33c{bottom:164.106667pt;}
.y1d9{bottom:164.773333pt;}
.y65{bottom:164.893333pt;}
.y1fc{bottom:165.693333pt;}
.ydc{bottom:165.706667pt;}
.y25b{bottom:167.093333pt;}
.y10b{bottom:168.093333pt;}
.y263{bottom:168.200000pt;}
.yfe{bottom:168.893333pt;}
.y13a{bottom:169.733333pt;}
.y27c{bottom:171.333333pt;}
.y356{bottom:172.133333pt;}
.y34d{bottom:172.933333pt;}
.y21a{bottom:173.400000pt;}
.y109{bottom:173.733333pt;}
.y251{bottom:175.333333pt;}
.y50{bottom:176.133333pt;}
.y1d8{bottom:176.800000pt;}
.y212{bottom:177.266667pt;}
.y1c3{bottom:177.733333pt;}
.y127{bottom:178.533333pt;}
.y257{bottom:178.626667pt;}
.yb3{bottom:179.333333pt;}
.y1e{bottom:180.133333pt;}
.ya3{bottom:181.733333pt;}
.y305{bottom:182.533333pt;}
.y141{bottom:183.333333pt;}
.y21b{bottom:185.226667pt;}
.y82{bottom:185.733333pt;}
.y151{bottom:187.333333pt;}
.y1d5{bottom:187.693333pt;}
.y2bf{bottom:188.933333pt;}
.y29a{bottom:189.733333pt;}
.y24d{bottom:190.533333pt;}
.y264{bottom:191.266667pt;}
.ydb{bottom:191.333333pt;}
.y2d3{bottom:192.133333pt;}
.y332{bottom:192.933333pt;}
.yfd{bottom:193.733333pt;}
.y1f9{bottom:194.533333pt;}
.y64{bottom:195.333333pt;}
.y355{bottom:196.933333pt;}
.y21c{bottom:197.106667pt;}
.y117{bottom:198.533333pt;}
.y108{bottom:199.333333pt;}
.y250{bottom:200.133333pt;}
.y26b{bottom:201.733333pt;}
.y1d4{bottom:202.133333pt;}
.y1d0{bottom:203.333333pt;}
.y126{bottom:204.133333pt;}
.yb2{bottom:204.933333pt;}
.y4f{bottom:206.533333pt;}
.ya2{bottom:207.333333pt;}
.y213{bottom:207.466667pt;}
.y2ca{bottom:208.133333pt;}
.y140{bottom:208.933333pt;}
.y1c1{bottom:209.733333pt;}
.y116{bottom:210.533333pt;}
.y1c2{bottom:211.333333pt;}
.y150{bottom:212.933333pt;}
.y265{bottom:214.360000pt;}
.y33b{bottom:214.533333pt;}
.y299{bottom:215.333333pt;}
.y24c{bottom:216.160000pt;}
.y81{bottom:216.973333pt;}
.y331{bottom:217.773333pt;}
.yfc{bottom:219.360000pt;}
.y2be{bottom:220.173333pt;}
.y139{bottom:220.960000pt;}
.y19a{bottom:222.560000pt;}
.y1fb{bottom:223.360000pt;}
.y34c{bottom:223.373333pt;}
.y2f5{bottom:224.173333pt;}
.y1d{bottom:224.960000pt;}
.y63{bottom:225.773333pt;}
.y115{bottom:226.560000pt;}
.y27e{bottom:227.360000pt;}
.y165{bottom:228.973333pt;}
.y258{bottom:229.426667pt;}
.ye7{bottom:229.773333pt;}
.y20e{bottom:230.560000pt;}
.y2d2{bottom:231.360000pt;}
.y222{bottom:231.400000pt;}
.yb1{bottom:232.173333pt;}
.y21e{bottom:232.360000pt;}
.y22a{bottom:232.760000pt;}
.ya1{bottom:232.960000pt;}
.y13f{bottom:233.760000pt;}
.y125{bottom:235.373333pt;}
.y4e{bottom:236.960000pt;}
.y266{bottom:237.466667pt;}
.y14f{bottom:237.773333pt;}
.y2c9{bottom:239.360000pt;}
.y24b{bottom:240.973333pt;}
.yda{bottom:241.773333pt;}
.y330{bottom:242.560000pt;}
.yfb{bottom:244.960000pt;}
.y114{bottom:245.760000pt;}
.y354{bottom:247.373333pt;}
.y34b{bottom:248.173333pt;}
.y21d{bottom:249.160000pt;}
.y20c{bottom:249.760000pt;}
.y107{bottom:249.773333pt;}
.y296{bottom:251.360000pt;}
.y1f6{bottom:252.173333pt;}
.y10a{bottom:252.973333pt;}
.y80{bottom:253.773333pt;}
.ye6{bottom:255.360000pt;}
.y138{bottom:256.173333pt;}
.y62{bottom:256.960000pt;}
.ya0{bottom:257.760000pt;}
.y2bd{bottom:258.560000pt;}
.y13e{bottom:259.373333pt;}
.y1ae{bottom:260.173333pt;}
.y1c0{bottom:260.960000pt;}
.y164{bottom:261.773333pt;}
.y26a{bottom:262.160000pt;}
.y27a{bottom:262.600000pt;}
.y14e{bottom:263.400000pt;}
.y29f{bottom:264.200000pt;}
.y298{bottom:265.800000pt;}
.y24a{bottom:266.600000pt;}
.yb0{bottom:267.400000pt;}
.y223{bottom:268.266667pt;}
.y4d{bottom:269.000000pt;}
.y1c{bottom:269.800000pt;}
.y113{bottom:272.200000pt;}
.y34a{bottom:273.000000pt;}
.y199{bottom:274.600000pt;}
.yd9{bottom:275.400000pt;}
.y295{bottom:277.000000pt;}
.yfa{bottom:277.800000pt;}
.y7f{bottom:279.400000pt;}
.y1f8{bottom:281.800000pt;}
.y9f{bottom:283.400000pt;}
.y2db{bottom:284.200000pt;}
.y279{bottom:285.000000pt;}
.y255{bottom:285.600000pt;}
.y1ad{bottom:285.800000pt;}
.y61{bottom:287.400000pt;}
.y14d{bottom:288.200000pt;}
.y209{bottom:289.000000pt;}
.ye5{bottom:290.600000pt;}
.y137{bottom:291.400000pt;}
.yaf{bottom:292.200000pt;}
.y110{bottom:295.400000pt;}
.y163{bottom:296.200000pt;}
.y353{bottom:297.000000pt;}
.y349{bottom:297.800000pt;}
.y29e{bottom:299.400000pt;}
.yd8{bottom:300.200000pt;}
.yf9{bottom:303.400000pt;}
.y7e{bottom:304.200000pt;}
.y224{bottom:305.160000pt;}
.y198{bottom:307.400000pt;}
.y9e{bottom:308.200000pt;}
.y32f{bottom:309.026667pt;}
.y4c{bottom:309.840000pt;}
.y1ac{bottom:310.626667pt;}
.y149{bottom:311.426667pt;}
.y124{bottom:313.040000pt;}
.y14c{bottom:313.840000pt;}
.y1b{bottom:314.626667pt;}
.y2da{bottom:315.440000pt;}
.y136{bottom:316.226667pt;}
.y249{bottom:317.026667pt;}
.y13d{bottom:317.826667pt;}
.y275{bottom:318.626667pt;}
.y60{bottom:319.440000pt;}
.ye4{bottom:320.226667pt;}
.y10f{bottom:321.026667pt;}
.y162{bottom:321.840000pt;}
.y348{bottom:322.626667pt;}
.y2ad{bottom:323.426667pt;}
.y29d{bottom:324.226667pt;}
.yae{bottom:325.840000pt;}
.y206{bottom:328.226667pt;}
.yf8{bottom:329.026667pt;}
.y7d{bottom:329.826667pt;}
.y9d{bottom:333.840000pt;}
.y294{bottom:335.426667pt;}
.y1ab{bottom:336.226667pt;}
.y27d{bottom:337.040000pt;}
.y123{bottom:337.840000pt;}
.y33a{bottom:338.626667pt;}
.y1f4{bottom:339.426667pt;}
.y2c8{bottom:339.440000pt;}
.y196{bottom:340.226667pt;}
.y135{bottom:341.826667pt;}
.y225{bottom:342.026667pt;}
.y248{bottom:342.640000pt;}
.y155{bottom:343.440000pt;}
.y1bf{bottom:344.226667pt;}
.y10e{bottom:345.840000pt;}
.y352{bottom:346.626667pt;}
.y1a{bottom:347.426667pt;}
.y304{bottom:349.026667pt;}
.y14b{bottom:349.840000pt;}
.y4b{bottom:350.626667pt;}
.yd7{bottom:351.440000pt;}
.yf7{bottom:353.826667pt;}
.y7c{bottom:355.466667pt;}
.y2ac{bottom:356.266667pt;}
.y2f1{bottom:357.066667pt;}
.y1cf{bottom:357.866667pt;}
.y2bc{bottom:358.666667pt;}
.y5f{bottom:359.466667pt;}
.y293{bottom:361.066667pt;}
.y148{bottom:361.866667pt;}
.y122{bottom:363.466667pt;}
.y19{bottom:365.066667pt;}
.y2e8{bottom:366.666667pt;}
.y202{bottom:367.466667pt;}
.y1f0{bottom:368.266667pt;}
.y1be{bottom:369.866667pt;}
.y10d{bottom:371.466667pt;}
.y161{bottom:372.266667pt;}
.y195{bottom:373.866667pt;}
.y134{bottom:375.466667pt;}
.yd6{bottom:376.266667pt;}
.y2c7{bottom:377.866667pt;}
.y226{bottom:378.893333pt;}
.yf6{bottom:379.466667pt;}
.y7b{bottom:380.266667pt;}
.y4a{bottom:381.866667pt;}
.y18{bottom:382.666667pt;}
.y2e7{bottom:383.466667pt;}
.y9c{bottom:384.266667pt;}
.y292{bottom:385.866667pt;}
.y1aa{bottom:386.666667pt;}
.y180{bottom:387.466667pt;}
.y121{bottom:388.266667pt;}
.y2bb{bottom:389.066667pt;}
.y2ff{bottom:390.666667pt;}
.y297{bottom:392.266667pt;}
.y2ea{bottom:393.066667pt;}
.y1bd{bottom:395.466667pt;}
.y147{bottom:396.266667pt;}
.y1f2{bottom:397.066667pt;}
.y160{bottom:397.866667pt;}
.y133{bottom:400.266667pt;}
.y17{bottom:401.066667pt;}
.yd5{bottom:401.866667pt;}
.yf5{bottom:404.293333pt;}
.y351{bottom:405.093333pt;}
.y7a{bottom:405.893333pt;}
.y193{bottom:407.506667pt;}
.y2c6{bottom:408.293333pt;}
.y9b{bottom:409.893333pt;}
.y291{bottom:411.506667pt;}
.y49{bottom:412.293333pt;}
.y17f{bottom:413.106667pt;}
.y120{bottom:413.893333pt;}
.y227{bottom:415.760000pt;}
.yad{bottom:417.893333pt;}
.y1bc{bottom:420.293333pt;}
.y146{bottom:421.893333pt;}
.y16{bottom:422.693333pt;}
.y15f{bottom:423.506667pt;}
.y132{bottom:425.893333pt;}
.y2f0{bottom:426.693333pt;}
.yd4{bottom:427.506667pt;}
.y2ba{bottom:428.293333pt;}
.yf4{bottom:429.893333pt;}
.y79{bottom:431.506667pt;}
.y229{bottom:431.533333pt;}
.y302{bottom:432.293333pt;}
.y9a{bottom:435.506667pt;}
.y290{bottom:437.106667pt;}
.y17e{bottom:437.893333pt;}
.y11f{bottom:439.506667pt;}
.y2ab{bottom:440.293333pt;}
.y5e{bottom:442.693333pt;}
.y15{bottom:443.493333pt;}
.y228{bottom:445.333333pt;}
.y1bb{bottom:445.893333pt;}
.y347{bottom:446.693333pt;}
.y145{bottom:447.506667pt;}
.y15e{bottom:448.306667pt;}
.y32e{bottom:450.733333pt;}
.y131{bottom:451.533333pt;}
.yd3{bottom:452.333333pt;}
.yc6{bottom:453.933333pt;}
.y350{bottom:454.733333pt;}
.yf3{bottom:455.533333pt;}
.y78{bottom:456.333333pt;}
.y22c{bottom:457.560000pt;}
.y2b9{bottom:458.733333pt;}
.y2ef{bottom:459.533333pt;}
.y99{bottom:460.333333pt;}
.y1ce{bottom:461.933333pt;}
.y1a9{bottom:462.733333pt;}
.y17d{bottom:463.533333pt;}
.y106{bottom:464.333333pt;}
.y14{bottom:465.133333pt;}
.y2aa{bottom:465.933333pt;}
.y1ee{bottom:467.533333pt;}
.yac{bottom:468.333333pt;}
.y28f{bottom:469.933333pt;}
.y346{bottom:471.533333pt;}
.y13c{bottom:472.333333pt;}
.y48{bottom:473.133333pt;}
.y15d{bottom:473.933333pt;}
.y32d{bottom:475.533333pt;}
.y130{bottom:476.333333pt;}
.yd2{bottom:477.933333pt;}
.y34f{bottom:479.533333pt;}
.yf2{bottom:480.333333pt;}
.y77{bottom:481.933333pt;}
.y5d{bottom:483.533333pt;}
.y242{bottom:484.333333pt;}
.y192{bottom:485.133333pt;}
.y101{bottom:485.933333pt;}
.yc5{bottom:487.533333pt;}
.y13{bottom:488.333333pt;}
.y105{bottom:489.933333pt;}
.y2a9{bottom:490.733333pt;}
.y2d1{bottom:492.333333pt;}
.y33{bottom:493.133333pt;}
.y98{bottom:493.933333pt;}
.y28e{bottom:495.560000pt;}
.y2b8{bottom:497.160000pt;}
.y11e{bottom:497.973333pt;}
.y15c{bottom:498.760000pt;}
.y2d7{bottom:500.360000pt;}
.y12f{bottom:501.960000pt;}
.y47{bottom:503.560000pt;}
.y34e{bottom:505.173333pt;}
.yf1{bottom:505.960000pt;}
.y186{bottom:506.773333pt;}
.y1ba{bottom:508.360000pt;}
.yd1{bottom:510.760000pt;}
.yc4{bottom:512.360000pt;}
.y1a8{bottom:513.173333pt;}
.y17c{bottom:513.960000pt;}
.y76{bottom:514.760000pt;}
.ye3{bottom:515.560000pt;}
.y21f{bottom:516.360000pt;}
.y245{bottom:517.160000pt;}
.y32c{bottom:517.173333pt;}
.y97{bottom:518.773333pt;}
.y271{bottom:519.560000pt;}
.y28d{bottom:520.360000pt;}
.y345{bottom:521.973333pt;}
.y12{bottom:523.560000pt;}
.y2a8{bottom:524.360000pt;}
.y32{bottom:525.173333pt;}
.y2ee{bottom:525.960000pt;}
.y12e{bottom:526.760000pt;}
.y2b7{bottom:528.360000pt;}
.y339{bottom:529.960000pt;}
.y2a1{bottom:530.773333pt;}
.yf0{bottom:531.560000pt;}
.y15b{bottom:532.360000pt;}
.y1b9{bottom:533.973333pt;}
.y46{bottom:534.760000pt;}
.yd0{bottom:536.360000pt;}
.y1cd{bottom:537.960000pt;}
.y17b{bottom:539.560000pt;}
.y75{bottom:540.360000pt;}
.y32b{bottom:542.000000pt;}
.y96{bottom:544.400000pt;}
.yc3{bottom:546.000000pt;}
.y1a7{bottom:546.800000pt;}
.y240{bottom:547.600000pt;}
.y11d{bottom:548.400000pt;}
.y2a7{bottom:550.000000pt;}
.y210{bottom:550.400000pt;}
.y31{bottom:550.800000pt;}
.y12d{bottom:552.400000pt;}
.y11{bottom:554.000000pt;}
.y338{bottom:554.800000pt;}
.yef{bottom:556.400000pt;}
.y301{bottom:557.200000pt;}
.y15a{bottom:558.000000pt;}
.y1b8{bottom:558.800000pt;}
.y2ed{bottom:559.600000pt;}
.y191{bottom:561.200000pt;}
.ycf{bottom:562.000000pt;}
.y1cc{bottom:562.800000pt;}
.y26e{bottom:563.600000pt;}
.y17a{bottom:564.400000pt;}
.y45{bottom:566.000000pt;}
.y2b6{bottom:566.800000pt;}
.y95{bottom:570.000000pt;}
.yc2{bottom:570.800000pt;}
.y28c{bottom:571.600000pt;}
.y1a6{bottom:572.400000pt;}
.y2e6{bottom:573.200000pt;}
.y11c{bottom:574.000000pt;}
.y2a6{bottom:574.800000pt;}
.y30{bottom:576.400000pt;}
.y12c{bottom:578.000000pt;}
.y10{bottom:579.600000pt;}
.yee{bottom:582.000000pt;}
.y159{bottom:582.800000pt;}
.y1b7{bottom:584.400000pt;}
.y313{bottom:585.200000pt;}
.yce{bottom:586.800000pt;}
.y1cb{bottom:588.426667pt;}
.y179{bottom:590.026667pt;}
.y74{bottom:590.840000pt;}
.y32a{bottom:591.626667pt;}
.y2ec{bottom:592.426667pt;}
.y2d0{bottom:592.440000pt;}
.y94{bottom:594.826667pt;}
.y28b{bottom:596.426667pt;}
.y5c{bottom:597.226667pt;}
.y2fd{bottom:598.826667pt;}
.ye2{bottom:598.840000pt;}
.y2d6{bottom:600.426667pt;}
.y2f{bottom:601.226667pt;}
.y12b{bottom:602.840000pt;}
.yc1{bottom:604.440000pt;}
.yf{bottom:605.226667pt;}
.y44{bottom:606.826667pt;}
.y23d{bottom:608.426667pt;}
.y320{bottom:609.226667pt;}
.ycd{bottom:612.426667pt;}
.y1ca{bottom:614.026667pt;}
.y27b{bottom:614.840000pt;}
.y73{bottom:616.440000pt;}
.y1b6{bottom:618.026667pt;}
.y93{bottom:620.426667pt;}
.y344{bottom:621.226667pt;}
.y28a{bottom:622.026667pt;}
.y1a5{bottom:622.840000pt;}
.y178{bottom:623.626667pt;}
.ye1{bottom:624.426667pt;}
.y30c{bottom:624.440000pt;}
.y2eb{bottom:626.026667pt;}
.y2e{bottom:626.840000pt;}
.y5b{bottom:628.440000pt;}
.y337{bottom:629.226667pt;}
.yc0{bottom:630.026667pt;}
.y12a{bottom:630.826667pt;}
.y2cf{bottom:631.640000pt;}
.yed{bottom:632.426667pt;}
.y2a5{bottom:634.026667pt;}
.y2e5{bottom:634.866667pt;}
.ye{bottom:636.466667pt;}
.y43{bottom:637.266667pt;}
.ycc{bottom:638.066667pt;}
.y1c9{bottom:638.866667pt;}
.y2d8{bottom:639.666667pt;}
.y1b5{bottom:640.466667pt;}
.y329{bottom:641.266667pt;}
.y72{bottom:642.066667pt;}
.y31e{bottom:642.866667pt;}
.y173{bottom:645.266667pt;}
.y92{bottom:646.066667pt;}
.y289{bottom:647.666667pt;}
.y14a{bottom:648.466667pt;}
.ye0{bottom:650.066667pt;}
.y2d{bottom:652.466667pt;}
.y29c{bottom:654.066667pt;}
.ybf{bottom:654.866667pt;}
.y1a4{bottom:656.466667pt;}
.yec{bottom:658.066667pt;}
.y5a{bottom:658.866667pt;}
.y2ce{bottom:662.066667pt;}
.ycb{bottom:662.866667pt;}
.y312{bottom:663.666667pt;}
.y1c8{bottom:664.466667pt;}
.y129{bottom:666.066667pt;}
.y71{bottom:666.866667pt;}
.y42{bottom:667.666667pt;}
.y23c{bottom:669.266667pt;}
.y2d5{bottom:670.066667pt;}
.y91{bottom:670.866667pt;}
.yd{bottom:671.666667pt;}
.y288{bottom:672.466667pt;}
.yab{bottom:673.266667pt;}
.ydf{bottom:674.866667pt;}
.y2c{bottom:677.266667pt;}
.y1a2{bottom:678.066667pt;}
.y336{bottom:678.866667pt;}
.y29b{bottom:681.266667pt;}
.yeb{bottom:682.893333pt;}
.yca{bottom:688.506667pt;}
.y59{bottom:689.293333pt;}
.y1c7{bottom:690.093333pt;}
.ybe{bottom:690.893333pt;}
.y328{bottom:691.706667pt;}
.y70{bottom:692.506667pt;}
.y343{bottom:695.693333pt;}
.y90{bottom:696.506667pt;}
.y2b5{bottom:698.093333pt;}
.y41{bottom:698.893333pt;}
.y104{bottom:700.506667pt;}
.y239{bottom:701.293333pt;}
.y2fc{bottom:702.093333pt;}
.y2b{bottom:702.893333pt;}
.y190{bottom:703.706667pt;}
.y1b4{bottom:706.093333pt;}
.y287{bottom:706.106667pt;}
.yc{bottom:706.893333pt;}
.yaa{bottom:708.506667pt;}
.y1a0{bottom:710.906667pt;}
.yc9{bottom:713.293333pt;}
.ybd{bottom:716.506667pt;}
.y158{bottom:717.293333pt;}
.y2e4{bottom:718.893333pt;}
.y342{bottom:720.506667pt;}
.y8f{bottom:721.293333pt;}
.y171{bottom:723.693333pt;}
.y6f{bottom:725.293333pt;}
.y18f{bottom:726.093333pt;}
.y2a{bottom:727.706667pt;}
.y1c6{bottom:728.533333pt;}
.y1ed{bottom:729.333333pt;}
.y40{bottom:730.133333pt;}
.y100{bottom:731.733333pt;}
.ya9{bottom:733.333333pt;}
.y31d{bottom:734.133333pt;}
.y2b4{bottom:736.533333pt;}
.y1b3{bottom:738.933333pt;}
.y2d4{bottom:739.733333pt;}
.ybc{bottom:741.333333pt;}
.y311{bottom:742.133333pt;}
.y157{bottom:742.933333pt;}
.yb{bottom:744.533333pt;}
.y341{bottom:745.333333pt;}
.y8e{bottom:746.933333pt;}
.y2c5{bottom:747.733333pt;}
.y2e3{bottom:750.133333pt;}
.y6e{bottom:750.933333pt;}
.y1c5{bottom:752.533333pt;}
.y29{bottom:753.333333pt;}
.y1ec{bottom:754.933333pt;}
.y16e{bottom:755.733333pt;}
.ya8{bottom:758.933333pt;}
.y58{bottom:761.333333pt;}
.y236{bottom:762.133333pt;}
.y1d3{bottom:762.400000pt;}
.y327{bottom:766.133333pt;}
.ybb{bottom:766.933333pt;}
.y2b3{bottom:767.733333pt;}
.y156{bottom:768.533333pt;}
.ya{bottom:770.133333pt;}
.y3f{bottom:770.933333pt;}
.y1b2{bottom:771.733333pt;}
.y8d{bottom:772.533333pt;}
.y6d{bottom:776.560000pt;}
.y19f{bottom:778.173333pt;}
.y28{bottom:778.960000pt;}
.y1eb{bottom:780.560000pt;}
.y310{bottom:782.173333pt;}
.y1c4{bottom:782.960000pt;}
.y2fb{bottom:783.760000pt;}
.ya7{bottom:784.560000pt;}
.y326{bottom:790.960000pt;}
.y18e{bottom:791.760000pt;}
.y57{bottom:792.560000pt;}
.y9{bottom:794.173333pt;}
.y283{bottom:795.760000pt;}
.yc8{bottom:797.373333pt;}
.y8c{bottom:799.773333pt;}
.y2cd{bottom:800.560000pt;}
.y6c{bottom:801.373333pt;}
.y3e{bottom:802.173333pt;}
.y16c{bottom:802.960000pt;}
.y27{bottom:803.760000pt;}
.y1b1{bottom:804.560000pt;}
.y1ea{bottom:805.360000pt;}
.y2b2{bottom:806.173333pt;}
.y2c4{bottom:808.560000pt;}
.y7{bottom:809.373333pt;}
.y2e2{bottom:810.960000pt;}
.y316{bottom:811.760000pt;}
.y31b{bottom:811.773333pt;}
.y185{bottom:813.373333pt;}
.y325{bottom:815.760000pt;}
.yba{bottom:817.360000pt;}
.y340{bottom:820.560000pt;}
.y30e{bottom:821.400000pt;}
.y233{bottom:823.000000pt;}
.yc7{bottom:825.400000pt;}
.y6b{bottom:827.000000pt;}
.y285{bottom:828.600000pt;}
.y26{bottom:829.400000pt;}
.y1e9{bottom:831.000000pt;}
.y3d{bottom:832.600000pt;}
.y8b{bottom:835.000000pt;}
.y1df{bottom:835.800000pt;}
.y2b1{bottom:836.600000pt;}
.y1b0{bottom:838.200000pt;}
.y184{bottom:839.000000pt;}
.y2c3{bottom:839.800000pt;}
.y324{bottom:840.600000pt;}
.y2e1{bottom:842.200000pt;}
.yb9{bottom:843.000000pt;}
.y31a{bottom:843.800000pt;}
.y33f{bottom:845.400000pt;}
.y2fa{bottom:850.200000pt;}
.y6a{bottom:852.600000pt;}
.y235{bottom:853.400000pt;}
.y25{bottom:854.200000pt;}
.y19e{bottom:856.600000pt;}
.y18c{bottom:858.200000pt;}
.y1e3{bottom:859.800000pt;}
.y8a{bottom:860.600000pt;}
.y280{bottom:862.200000pt;}
.y3c{bottom:863.800000pt;}
.y56{bottom:864.600000pt;}
.y323{bottom:865.400000pt;}
.y169{bottom:867.000000pt;}
.yb8{bottom:868.626667pt;}
.y2dd{bottom:869.440000pt;}
.y2cc{bottom:870.226667pt;}
.y1af{bottom:871.840000pt;}
.y2e0{bottom:872.626667pt;}
.y2b0{bottom:875.840000pt;}
.y2a4{bottom:877.426667pt;}
.y2c2{bottom:878.226667pt;}
.y24{bottom:879.840000pt;}
.y2e9{bottom:880.626667pt;}
.y19d{bottom:881.440000pt;}
.y231{bottom:883.840000pt;}
.y69{bottom:885.426667pt;}
.y315{bottom:887.840000pt;}
.y183{bottom:889.426667pt;}
.y322{bottom:890.226667pt;}
.y5{bottom:891.026667pt;}
.y18a{bottom:891.840000pt;}
.yb7{bottom:893.440000pt;}
.y55{bottom:895.040000pt;}
.y282{bottom:895.840000pt;}
.y2{bottom:898.226667pt;}
.y30a{bottom:899.840000pt;}
.y2cb{bottom:900.626667pt;}
.y1e5{bottom:901.440000pt;}
.y2df{bottom:903.040000pt;}
.y3b{bottom:904.626667pt;}
.y23{bottom:905.440000pt;}
.y2af{bottom:906.226667pt;}
.y19c{bottom:907.040000pt;}
.y167{bottom:908.626667pt;}
.y24f{bottom:909.426667pt;}
.y68{bottom:911.026667pt;}
.y1e0{bottom:913.440000pt;}
.y182{bottom:915.066667pt;}
.y22f{bottom:915.866667pt;}
.y2f9{bottom:916.666667pt;}
.y1dd{bottom:917.466667pt;}
.y89{bottom:919.066667pt;}
.y33e{bottom:919.866667pt;}
.y188{bottom:924.666667pt;}
.y54{bottom:925.466667pt;}
.y335{bottom:927.866667pt;}
.y27f{bottom:929.466667pt;}
.y22{bottom:930.266667pt;}
.y19b{bottom:931.866667pt;}
.y2de{bottom:933.466667pt;}
.y1e8{bottom:934.266667pt;}
.y67{bottom:935.866667pt;}
.y2ae{bottom:936.666667pt;}
.y3a{bottom:939.866667pt;}
.y309{bottom:941.466667pt;}
.y88{bottom:943.866667pt;}
.y33d{bottom:944.666667pt;}
.y2f8{bottom:950.266667pt;}
.y334{bottom:952.666667pt;}
.y21{bottom:959.066667pt;}
.y39{bottom:964.706667pt;}
.y53{bottom:966.293333pt;}
.y181{bottom:967.893333pt;}
.y87{bottom:969.506667pt;}
.y2c1{bottom:970.293333pt;}
.y166{bottom:973.506667pt;}
.y1{bottom:997.506667pt;}
.y35{bottom:1047.133333pt;}
.y34{bottom:1068.773333pt;}
.h5{height:7.200000pt;}
.hf{height:15.234375pt;}
.h43{height:18.400000pt;}
.h44{height:19.200000pt;}
.h41{height:19.233333pt;}
.h17{height:22.012500pt;}
.h31{height:24.000000pt;}
.h35{height:24.833333pt;}
.h3b{height:28.000000pt;}
.he{height:28.033333pt;}
.h3e{height:28.800000pt;}
.h3a{height:28.833333pt;}
.h4e{height:29.600000pt;}
.h4d{height:29.633333pt;}
.h53{height:30.400000pt;}
.h20{height:31.200000pt;}
.h21{height:31.233333pt;}
.h2c{height:31.828125pt;}
.h2d{height:31.960742pt;}
.h51{height:32.033333pt;}
.h28{height:32.786667pt;}
.h26{height:32.800000pt;}
.h25{height:32.833333pt;}
.h1a{height:33.018750pt;}
.h34{height:33.375000pt;}
.h24{height:33.600000pt;}
.h29{height:33.620000pt;}
.h27{height:33.633333pt;}
.h2{height:35.770312pt;}
.h57{height:35.884961pt;}
.h61{height:36.000000pt;}
.h5d{height:38.012500pt;}
.h6a{height:38.400000pt;}
.h40{height:38.433333pt;}
.h63{height:39.200000pt;}
.h68{height:39.233333pt;}
.h37{height:40.833333pt;}
.h48{height:41.273438pt;}
.h2e{height:41.376562pt;}
.h47{height:41.388086pt;}
.h2b{height:41.509180pt;}
.h66{height:41.600000pt;}
.h1f{height:41.633333pt;}
.h5b{height:43.233333pt;}
.h38{height:43.387500pt;}
.h5c{height:44.033333pt;}
.h22{height:46.433333pt;}
.h6{height:46.776562pt;}
.h33{height:47.233333pt;}
.h1e{height:48.833333pt;}
.hd{height:49.528125pt;}
.h5a{height:50.062500pt;}
.h42{height:51.216000pt;}
.h3f{height:52.032000pt;}
.h36{height:52.820000pt;}
.h46{height:53.166771pt;}
.h8{height:55.031250pt;}
.h4a{height:55.145898pt;}
.h1d{height:55.365417pt;}
.h16{height:55.418750pt;}
.h1c{height:55.472083pt;}
.h1b{height:55.525417pt;}
.h15{height:56.737500pt;}
.h3c{height:56.833333pt;}
.h13{height:57.096250pt;}
.h12{height:57.202917pt;}
.h11{height:57.256250pt;}
.h14{height:57.282917pt;}
.h2f{height:57.290625pt;}
.h10{height:57.309583pt;}
.h30{height:57.423242pt;}
.h39{height:57.633333pt;}
.h3d{height:57.666667pt;}
.h4b{height:58.044800pt;}
.h4c{height:60.033333pt;}
.h4f{height:60.066667pt;}
.h19{height:60.075000pt;}
.h52{height:60.833333pt;}
.h50{height:62.466667pt;}
.ha{height:63.285938pt;}
.h58{height:63.400586pt;}
.h5f{height:66.433333pt;}
.h5e{height:66.466667pt;}
.h18{height:66.750000pt;}
.h4{height:74.292187pt;}
.h59{height:75.266667pt;}
.h32{height:76.762500pt;}
.h23{height:77.633333pt;}
.h3{height:80.066667pt;}
.h7{height:80.853333pt;}
.h67{height:82.466667pt;}
.hc{height:83.437500pt;}
.h56{height:87.406771pt;}
.hb{height:90.112500pt;}
.h9{height:110.276562pt;}
.h55{height:115.140104pt;}
.h65{height:208.133333pt;}
.h2a{height:220.800000pt;}
.h64{height:249.800000pt;}
.h62{height:265.000000pt;}
.h45{height:272.800000pt;}
.h69{height:275.386667pt;}
.h54{height:290.400000pt;}
.h60{height:398.693333pt;}
.h49{height:475.200000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.600000pt;}
.w4{width:11.200000pt;}
.w13{width:21.633333pt;}
.w11{width:23.200000pt;}
.w12{width:29.600000pt;}
.w10{width:29.633333pt;}
.wf{width:30.433333pt;}
.w28{width:84.053333pt;}
.w29{width:84.066667pt;}
.w27{width:84.100000pt;}
.w1d{width:90.500000pt;}
.w1a{width:94.500000pt;}
.w1b{width:95.300000pt;}
.w18{width:96.086667pt;}
.w19{width:96.100000pt;}
.w1c{width:97.700000pt;}
.w17{width:98.500000pt;}
.wc{width:103.300000pt;}
.wa{width:103.333333pt;}
.wb{width:112.900000pt;}
.we{width:117.733333pt;}
.w26{width:120.100000pt;}
.w24{width:120.133333pt;}
.w22{width:120.933333pt;}
.w23{width:121.700000pt;}
.w21{width:125.733333pt;}
.w16{width:126.533333pt;}
.w2d{width:132.133333pt;}
.w2a{width:168.160000pt;}
.w2e{width:178.600000pt;}
.w2b{width:179.400000pt;}
.w15{width:186.573333pt;}
.w2c{width:198.600000pt;}
.w8{width:223.440000pt;}
.w6{width:224.226667pt;}
.w7{width:224.240000pt;}
.w1f{width:293.893333pt;}
.w1e{width:304.800000pt;}
.w9{width:321.933333pt;}
.wd{width:330.733333pt;}
.w2f{width:336.333333pt;}
.w30{width:336.360000pt;}
.w14{width:432.440000pt;}
.w2{width:602.240000pt;}
.w25{width:609.426667pt;}
.w5{width:672.693333pt;}
.w20{width:672.800000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x27{left:9.586667pt;}
.x36{left:11.200000pt;}
.x3a{left:12.800000pt;}
.x1b{left:15.240000pt;}
.x2f{left:17.626667pt;}
.x31{left:19.226667pt;}
.x40{left:21.633333pt;}
.x6d{left:24.800000pt;}
.x3b{left:27.240000pt;}
.x3f{left:29.633333pt;}
.x32{left:31.226667pt;}
.x3c{left:32.833333pt;}
.x34{left:35.226667pt;}
.x38{left:36.840000pt;}
.x71{left:38.426667pt;}
.x6c{left:40.066667pt;}
.x44{left:41.300000pt;}
.x51{left:43.266667pt;}
.x72{left:44.840000pt;}
.x2d{left:48.833333pt;}
.x16{left:53.626667pt;}
.x17{left:56.066667pt;}
.x1c{left:57.666667pt;}
.x5f{left:59.800000pt;}
.x3{left:60.866667pt;}
.x4d{left:62.466667pt;}
.x19{left:64.066667pt;}
.x7{left:66.466667pt;}
.x42{left:69.400000pt;}
.x18{left:70.466667pt;}
.x3d{left:72.066667pt;}
.x1e{left:74.466667pt;}
.xd{left:76.866667pt;}
.x3e{left:79.266667pt;}
.x6{left:83.300000pt;}
.x4{left:84.900000pt;}
.x1d{left:86.506667pt;}
.x54{left:89.706667pt;}
.x41{left:91.200000pt;}
.x20{left:94.733333pt;}
.x46{left:96.900000pt;}
.x8{left:98.500000pt;}
.x45{left:101.373333pt;}
.x55{left:102.493333pt;}
.x5{left:108.100000pt;}
.x57{left:109.773333pt;}
.x23{left:113.233333pt;}
.x2{left:132.133333pt;}
.x58{left:140.400000pt;}
.x6e{left:142.533333pt;}
.x65{left:144.973333pt;}
.x2e{left:160.173333pt;}
.xe{left:164.160000pt;}
.x59{left:171.000000pt;}
.x10{left:172.960000pt;}
.x60{left:173.973333pt;}
.xf{left:176.173333pt;}
.x11{left:180.173333pt;}
.x9{left:184.200000pt;}
.x4e{left:186.600000pt;}
.x61{left:208.973333pt;}
.x21{left:213.866667pt;}
.x66{left:229.040000pt;}
.x5a{left:232.266667pt;}
.x13{left:236.240000pt;}
.x22{left:242.666667pt;}
.x43{left:244.266667pt;}
.x29{left:249.866667pt;}
.x53{left:253.866667pt;}
.x30{left:257.066667pt;}
.x56{left:259.466667pt;}
.x5b{left:262.866667pt;}
.x12{left:270.666667pt;}
.x49{left:278.533333pt;}
.x48{left:283.106667pt;}
.xb{left:285.106667pt;}
.x26{left:289.106667pt;}
.x5c{left:293.506667pt;}
.x4c{left:295.533333pt;}
.x4a{left:304.573333pt;}
.x4f{left:307.533333pt;}
.x67{left:313.133333pt;}
.x62{left:320.173333pt;}
.x6f{left:321.933333pt;}
.x28{left:325.133333pt;}
.x14{left:340.373333pt;}
.x33{left:353.973333pt;}
.x2a{left:368.360000pt;}
.x1a{left:391.600000pt;}
.x68{left:397.200000pt;}
.x2c{left:403.640000pt;}
.x1{left:410.026667pt;}
.x5d{left:416.000000pt;}
.x50{left:429.240000pt;}
.x35{left:449.266667pt;}
.x15{left:454.066667pt;}
.x24{left:458.973333pt;}
.x25{left:479.773333pt;}
.x69{left:481.306667pt;}
.x2b{left:495.693333pt;}
.xc{left:509.333333pt;}
.x70{left:520.533333pt;}
.x4b{left:529.066667pt;}
.x63{left:541.440000pt;}
.x37{left:545.360000pt;}
.x52{left:550.173333pt;}
.x6a{left:565.400000pt;}
.x64{left:576.426667pt;}
.x5e{left:599.733333pt;}
.x39{left:643.066667pt;}
.x6b{left:649.466667pt;}
.x1f{left:659.066667pt;}
.x47{left:735.173333pt;}
}




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