
    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_1162b3dacfbe140b93caafc6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090820;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_d94c587eda8ac8af95e4f0b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873047;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_1fd76c1d9f1158736f3e3194.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.083984;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_4b90920e03f87505e9f3e237.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.817871;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_44f4e421c16943c81a3e505c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.625000;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_a17de757831ecb6c972e05cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.056152;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_65a9178d4ea8ecb9f2d45867.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_e8bf7411eef7237d06d98ef4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.086426;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_0dfd9c63deffdbd850b837f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_9ab710bcb1db7b0e39c4cdc4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.678223;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_ca2c0b6962f5572e022bc68a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.049805;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_88f60456881b484e2b70bb79.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e36d4e8e8081feb29a2d7ccc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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);}
.v2{vertical-align:-9.507000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.138600px;}
.vb{vertical-align:9.199200px;}
.va{vertical-align:11.749200px;}
.v8{vertical-align:13.399200px;}
.v7{vertical-align:26.298000px;}
.v4{vertical-align:42.000000px;}
.v5{vertical-align:44.820000px;}
.v6{vertical-align:51.286200px;}
.v3{vertical-align:53.800800px;}
.v1{vertical-align:180.000000px;}
.ls2c{letter-spacing:-6.000000px;}
.ls17{letter-spacing:-4.884000px;}
.ls2d{letter-spacing:-2.220000px;}
.ls11{letter-spacing:-1.776000px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.000600px;}
.ls18{letter-spacing:0.010800px;}
.ls21{letter-spacing:0.056380px;}
.ls32{letter-spacing:0.056980px;}
.ls2b{letter-spacing:0.066000px;}
.ls25{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.198000px;}
.ls20{letter-spacing:0.264000px;}
.ls8{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.528000px;}
.ls24{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.726000px;}
.ls1e{letter-spacing:0.760200px;}
.ls19{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.858000px;}
.ls16{letter-spacing:0.924000px;}
.lse{letter-spacing:0.990000px;}
.ls22{letter-spacing:1.056000px;}
.ls9{letter-spacing:1.122000px;}
.lsb{letter-spacing:1.188000px;}
.ls14{letter-spacing:1.254000px;}
.ls7{letter-spacing:1.452000px;}
.ls3a{letter-spacing:1.513800px;}
.lsd{letter-spacing:1.518000px;}
.ls12{letter-spacing:1.584000px;}
.ls33{letter-spacing:1.650000px;}
.ls3e{letter-spacing:1.669200px;}
.ls3{letter-spacing:1.680000px;}
.lsa{letter-spacing:1.716000px;}
.ls28{letter-spacing:1.782000px;}
.ls1f{letter-spacing:1.914000px;}
.ls31{letter-spacing:2.112000px;}
.ls1{letter-spacing:3.360000px;}
.ls3c{letter-spacing:4.301400px;}
.ls37{letter-spacing:4.443600px;}
.ls2a{letter-spacing:5.265600px;}
.ls38{letter-spacing:6.195000px;}
.ls1d{letter-spacing:6.840600px;}
.ls1a{letter-spacing:7.096800px;}
.ls39{letter-spacing:7.494600px;}
.ls35{letter-spacing:8.628600px;}
.ls1c{letter-spacing:9.113400px;}
.ls1b{letter-spacing:9.757800px;}
.ls2{letter-spacing:12.000000px;}
.ls2f{letter-spacing:12.571200px;}
.ls2e{letter-spacing:12.624600px;}
.ls27{letter-spacing:13.729200px;}
.ls3d{letter-spacing:13.840200px;}
.ls34{letter-spacing:16.512000px;}
.ls26{letter-spacing:17.370000px;}
.ls29{letter-spacing:17.370600px;}
.ls6{letter-spacing:19.680000px;}
.ls36{letter-spacing:20.145600px;}
.ls30{letter-spacing:28.302600px;}
.ls4{letter-spacing:315.000000px;}
.ls5{letter-spacing:1465.800000px;}
.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;}
}
.wsa{word-spacing:-1465.800000px;}
.ws9{word-spacing:-315.000000px;}
.wsc{word-spacing:-84.464550px;}
.wsb{word-spacing:-78.000000px;}
.ws13{word-spacing:-66.000000px;}
.ws46{word-spacing:-51.810000px;}
.ws45{word-spacing:-51.546000px;}
.ws4{word-spacing:-48.000000px;}
.ws32{word-spacing:-33.840000px;}
.ws7{word-spacing:-21.000000px;}
.ws47{word-spacing:-19.866000px;}
.wsd{word-spacing:-19.680000px;}
.ws23{word-spacing:-18.414000px;}
.ws24{word-spacing:-18.018000px;}
.ws1f{word-spacing:-17.424000px;}
.ws25{word-spacing:-16.764000px;}
.ws1{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.000000px;}
.ws3{word-spacing:-12.000000px;}
.ws1e{word-spacing:-11.616000px;}
.ws41{word-spacing:-10.224000px;}
.ws2c{word-spacing:-9.000000px;}
.ws8{word-spacing:-3.360000px;}
.ws3f{word-spacing:-2.112000px;}
.ws2a{word-spacing:-1.782000px;}
.ws11{word-spacing:-1.716000px;}
.ws5{word-spacing:-1.680000px;}
.ws40{word-spacing:-1.650000px;}
.ws2{word-spacing:-1.632000px;}
.ws1a{word-spacing:-1.584000px;}
.ws15{word-spacing:-1.518000px;}
.wse{word-spacing:-1.452000px;}
.ws1c{word-spacing:-1.254000px;}
.ws12{word-spacing:-1.188000px;}
.ws10{word-spacing:-1.122000px;}
.ws26{word-spacing:-1.056000px;}
.ws16{word-spacing:-0.990000px;}
.ws20{word-spacing:-0.924000px;}
.ws1d{word-spacing:-0.858000px;}
.ws21{word-spacing:-0.792000px;}
.ws19{word-spacing:-0.726000px;}
.ws28{word-spacing:-0.660000px;}
.ws14{word-spacing:-0.528000px;}
.ws17{word-spacing:-0.462000px;}
.ws27{word-spacing:-0.396000px;}
.wsf{word-spacing:-0.330000px;}
.ws2b{word-spacing:-0.264000px;}
.ws1b{word-spacing:-0.198000px;}
.ws29{word-spacing:-0.132000px;}
.ws22{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:1.776000px;}
.ws30{word-spacing:2.220000px;}
.ws2f{word-spacing:71.820000px;}
.ws43{word-spacing:121.633800px;}
.ws3a{word-spacing:165.370200px;}
.ws2d{word-spacing:187.980000px;}
.ws39{word-spacing:193.327800px;}
.ws31{word-spacing:233.268000px;}
.ws3c{word-spacing:244.380000px;}
.ws33{word-spacing:250.171200px;}
.ws35{word-spacing:289.068000px;}
.ws42{word-spacing:349.330200px;}
.ws44{word-spacing:368.565600px;}
.ws38{word-spacing:631.950000px;}
.ws2e{word-spacing:664.311000px;}
.ws3e{word-spacing:664.320000px;}
.ws37{word-spacing:715.350000px;}
.ws36{word-spacing:821.910000px;}
.ws3d{word-spacing:877.560000px;}
.ws3b{word-spacing:971.460000px;}
.ws34{word-spacing:976.482000px;}
._32{margin-left:-16.731600px;}
._9c{margin-left:-15.529200px;}
._35{margin-left:-12.929400px;}
._9a{margin-left:-11.041800px;}
._25{margin-left:-9.724800px;}
._0{margin-left:-8.626800px;}
._c{margin-left:-7.359000px;}
._15{margin-left:-6.263400px;}
._12{margin-left:-4.738800px;}
._1{margin-left:-3.649800px;}
._6{margin-left:-2.356200px;}
._2{margin-left:-1.201200px;}
._7{width:1.927200px;}
._9{width:2.963400px;}
._e{width:3.973200px;}
._f{width:5.801400px;}
._3{width:7.464600px;}
._d{width:8.903400px;}
._a{width:10.441200px;}
._4{width:11.906400px;}
._11{width:12.916200px;}
._8{width:14.896200px;}
._97{width:16.938600px;}
._14{width:18.050400px;}
._2e{width:19.067400px;}
._b{width:20.083800px;}
._19{width:21.351000px;}
._16{width:22.842600px;}
._5{width:23.997600px;}
._18{width:25.140000px;}
._17{width:26.644200px;}
._26{width:28.347000px;}
._29{width:29.779200px;}
._1a{width:31.251000px;}
._28{width:32.511600px;}
._13{width:33.699600px;}
._10{width:34.775400px;}
._2a{width:35.989800px;}
._2c{width:37.534200px;}
._1c{width:39.000000px;}
._2d{width:40.365600px;}
._38{width:41.441400px;}
._3a{width:42.622800px;}
._33{width:43.652400px;}
._31{width:45.625800px;}
._30{width:46.708200px;}
._2f{width:47.803800px;}
._39{width:48.850200px;}
._1e{width:49.980000px;}
._37{width:50.998200px;}
._27{width:52.489800px;}
._5f{width:53.625000px;}
._96{width:55.341000px;}
._82{width:56.580000px;}
._4e{width:57.720000px;}
._46{width:59.974200px;}
._59{width:61.722000px;}
._7e{width:64.950600px;}
._9b{width:66.587400px;}
._95{width:68.217600px;}
._34{width:69.385800px;}
._2b{width:72.375600px;}
._36{width:73.906800px;}
._6a{width:75.679800px;}
._4f{width:78.780000px;}
._1f{width:79.938600px;}
._93{width:86.968200px;}
._5c{width:93.204000px;}
._87{width:94.680000px;}
._51{width:97.140000px;}
._4d{width:98.820000px;}
._7f{width:112.662000px;}
._6f{width:117.259800px;}
._53{width:120.060000px;}
._79{width:126.768000px;}
._92{width:129.478800px;}
._75{width:131.959800px;}
._69{width:142.539600px;}
._55{width:145.530000px;}
._91{width:150.612000px;}
._83{width:159.960000px;}
._8d{width:162.660000px;}
._7b{width:164.830200px;}
._94{width:174.163800px;}
._50{width:177.000000px;}
._6d{width:178.710000px;}
._5d{width:180.306000px;}
._85{width:196.680000px;}
._86{width:203.220000px;}
._47{width:213.023400px;}
._5a{width:217.674000px;}
._8e{width:220.920000px;}
._7d{width:224.901000px;}
._54{width:244.620000px;}
._99{width:250.864200px;}
._64{width:258.750000px;}
._98{width:259.864200px;}
._3b{width:263.280000px;}
._8a{width:272.700000px;}
._73{width:275.625600px;}
._20{width:277.024200px;}
._67{width:280.290000px;}
._56{width:286.632000px;}
._48{width:293.435400px;}
._76{width:303.619800px;}
._70{width:308.580000px;}
._1b{width:315.000000px;}
._52{width:322.323600px;}
._57{width:324.162000px;}
._80{width:339.583200px;}
._60{width:341.715000px;}
._88{width:355.223400px;}
._81{width:361.680000px;}
._24{width:365.082600px;}
._45{width:377.280600px;}
._7c{width:383.479800px;}
._43{width:386.580000px;}
._68{width:393.293400px;}
._4c{width:396.923400px;}
._89{width:400.980000px;}
._5b{width:415.907400px;}
._77{width:433.519800px;}
._65{width:460.350000px;}
._4a{width:467.160000px;}
._72{width:476.850000px;}
._44{width:487.260600px;}
._4b{width:503.700000px;}
._62{width:505.350000px;}
._6e{width:507.379800px;}
._58{width:513.108000px;}
._61{width:518.899800px;}
._8f{width:524.400000px;}
._6c{width:535.290000px;}
._71{width:547.599600px;}
._63{width:561.270000px;}
._6b{width:565.410000px;}
._66{width:575.310000px;}
._3f{width:587.340600px;}
._8b{width:592.680000px;}
._78{width:601.879800px;}
._42{width:603.960600px;}
._7a{width:613.519800px;}
._84{width:624.900000px;}
._90{width:629.400000px;}
._8c{width:630.960000px;}
._5e{width:658.530000px;}
._3d{width:698.940600px;}
._3e{width:713.940600px;}
._3c{width:727.290000px;}
._41{width:760.560600px;}
._40{width:775.560600px;}
._23{width:809.661600px;}
._49{width:890.340000px;}
._22{width:937.548000px;}
._74{width:958.399800px;}
._21{width:1286.149800px;}
._1d{width:1465.798800px;}
.fc3{color:rgb(90,87,88);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:156.000000px;}
.fs7{font-size:337.858200px;}
.y0{bottom:0.000000px;}
.y19{bottom:66.708300px;}
.ye7{bottom:67.332000px;}
.y3b0{bottom:70.332000px;}
.y10b{bottom:72.097800px;}
.y3d6{bottom:73.332000px;}
.y3d4{bottom:74.235750px;}
.y443{bottom:76.332000px;}
.y383{bottom:79.315950px;}
.y140{bottom:79.332000px;}
.ye6{bottom:89.832000px;}
.y173{bottom:91.597800px;}
.y1ba{bottom:92.518500px;}
.y96{bottom:92.832000px;}
.y354{bottom:94.332000px;}
.y10a{bottom:94.597800px;}
.y124{bottom:95.832000px;}
.y3d3{bottom:96.735750px;}
.y5{bottom:98.102400px;}
.y324{bottom:98.232000px;}
.y2e7{bottom:98.690250px;}
.y13f{bottom:98.832000px;}
.y344{bottom:100.644000px;}
.y1f9{bottom:100.913400px;}
.y395{bottom:101.616000px;}
.y26f{bottom:101.665500px;}
.y382{bottom:101.815950px;}
.y10e{bottom:101.832000px;}
.y475{bottom:102.732000px;}
.y41d{bottom:102.946800px;}
.y3ae{bottom:103.018500px;}
.y255{bottom:105.596400px;}
.y364{bottom:106.315950px;}
.y381{bottom:106.320000px;}
.y2a3{bottom:106.397550px;}
.ycb{bottom:106.597800px;}
.y224{bottom:107.140200px;}
.y81{bottom:107.518500px;}
.y30c{bottom:107.842800px;}
.y453{bottom:108.097800px;}
.y253{bottom:108.782400px;}
.y1db{bottom:109.011000px;}
.y463{bottom:109.018500px;}
.y427{bottom:109.332000px;}
.y2b7{bottom:110.832000px;}
.ye5{bottom:112.332000px;}
.y172{bottom:114.097800px;}
.y1b9{bottom:115.018500px;}
.y95{bottom:115.332000px;}
.y45c{bottom:116.232000px;}
.y353{bottom:116.832000px;}
.y109{bottom:117.097800px;}
.y157{bottom:118.018500px;}
.y123{bottom:118.332000px;}
.y3d2{bottom:119.235750px;}
.y1c4{bottom:119.832000px;}
.y323{bottom:120.732000px;}
.y2e6{bottom:121.190250px;}
.y13e{bottom:121.332000px;}
.y343{bottom:123.144000px;}
.y1f8{bottom:123.413400px;}
.y394{bottom:124.122000px;}
.y26e{bottom:124.171500px;}
.y1a8{bottom:124.315950px;}
.y10d{bottom:124.332000px;}
.y474{bottom:125.232000px;}
.y41c{bottom:125.446800px;}
.y3ad{bottom:125.518500px;}
.y428{bottom:125.832000px;}
.y252{bottom:128.276400px;}
.y363{bottom:128.815950px;}
.y380{bottom:128.826000px;}
.y2a2{bottom:128.897550px;}
.yca{bottom:129.097800px;}
.y223{bottom:129.646200px;}
.y80{bottom:130.018500px;}
.y30b{bottom:130.342800px;}
.y452{bottom:130.597800px;}
.y254{bottom:131.462400px;}
.y1da{bottom:131.511000px;}
.y462{bottom:131.518500px;}
.y426{bottom:131.832000px;}
.y2b6{bottom:133.332000px;}
.ye4{bottom:134.832000px;}
.y171{bottom:136.597800px;}
.y3b{bottom:137.518500px;}
.y94{bottom:137.832000px;}
.y45b{bottom:138.732000px;}
.y352{bottom:139.332000px;}
.y108{bottom:139.597800px;}
.y156{bottom:140.518500px;}
.y122{bottom:140.832000px;}
.y3d1{bottom:141.735750px;}
.y1c3{bottom:142.332000px;}
.y322{bottom:143.232000px;}
.y2e5{bottom:143.690250px;}
.y15e{bottom:143.832000px;}
.y342{bottom:145.644000px;}
.y393{bottom:146.628000px;}
.y26d{bottom:146.677500px;}
.y1a7{bottom:146.815950px;}
.ya8{bottom:146.832000px;}
.y473{bottom:147.732000px;}
.y41b{bottom:147.946800px;}
.y3ac{bottom:148.018500px;}
.y42c{bottom:148.332000px;}
.y362{bottom:151.315950px;}
.y13d{bottom:151.332000px;}
.y2a1{bottom:151.397550px;}
.yc9{bottom:151.597800px;}
.y222{bottom:152.152200px;}
.y451{bottom:153.097800px;}
.y1d9{bottom:154.011000px;}
.y425{bottom:154.332000px;}
.y1f7{bottom:154.913400px;}
.y2b5{bottom:155.832000px;}
.y251{bottom:157.314900px;}
.ye3{bottom:157.332000px;}
.y170{bottom:159.097800px;}
.y3a{bottom:160.018500px;}
.y93{bottom:160.332000px;}
.y24f{bottom:160.500900px;}
.y45a{bottom:161.232000px;}
.y461{bottom:161.518500px;}
.y107{bottom:162.097800px;}
.y155{bottom:163.018500px;}
.y165{bottom:163.332000px;}
.y3d0{bottom:164.235600px;}
.y1c2{bottom:164.832000px;}
.y321{bottom:165.732000px;}
.y2e4{bottom:166.190250px;}
.y15d{bottom:166.332000px;}
.y12c{bottom:167.832000px;}
.y341{bottom:168.144000px;}
.y392{bottom:169.134000px;}
.y26c{bottom:169.183500px;}
.y1a6{bottom:169.315950px;}
.ya7{bottom:169.332000px;}
.y472{bottom:170.232000px;}
.y41a{bottom:170.446800px;}
.y3ab{bottom:170.518500px;}
.y121{bottom:170.832000px;}
.y37f{bottom:173.688000px;}
.y361{bottom:173.815950px;}
.y442{bottom:173.832000px;}
.y2a0{bottom:173.897550px;}
.yc8{bottom:174.097800px;}
.y221{bottom:174.658200px;}
.y450{bottom:175.597800px;}
.y30a{bottom:175.905300px;}
.y1d8{bottom:176.511000px;}
.y424{bottom:176.832000px;}
.y18{bottom:177.374850px;}
.y1f6{bottom:177.413400px;}
.y2b4{bottom:178.332000px;}
.ye2{bottom:179.832000px;}
.y24e{bottom:179.994900px;}
.y16f{bottom:181.597800px;}
.y39{bottom:182.518500px;}
.y92{bottom:182.832000px;}
.y250{bottom:183.180900px;}
.y459{bottom:183.732000px;}
.y351{bottom:184.332000px;}
.y106{bottom:184.597800px;}
.y154{bottom:185.518500px;}
.y164{bottom:185.832000px;}
.y3cf{bottom:186.735600px;}
.y1c1{bottom:187.332000px;}
.y320{bottom:188.232000px;}
.y15c{bottom:188.832000px;}
.y125{bottom:190.332000px;}
.y340{bottom:190.644000px;}
.y391{bottom:191.640000px;}
.y26b{bottom:191.689500px;}
.y1a5{bottom:191.815950px;}
.ya6{bottom:191.832000px;}
.y471{bottom:192.732000px;}
.y419{bottom:192.946800px;}
.y3aa{bottom:193.018500px;}
.y37e{bottom:196.194000px;}
.y360{bottom:196.315950px;}
.y29f{bottom:196.397550px;}
.yc7{bottom:196.597800px;}
.y220{bottom:197.164200px;}
.y44f{bottom:198.097800px;}
.y309{bottom:198.305700px;}
.y1d7{bottom:199.011000px;}
.y423{bottom:199.332000px;}
.y17{bottom:199.874850px;}
.y2b3{bottom:200.832000px;}
.y13c{bottom:202.332000px;}
.y16e{bottom:204.097800px;}
.y38{bottom:205.018500px;}
.y91{bottom:205.332000px;}
.y458{bottom:206.232000px;}
.y7f{bottom:206.518500px;}
.y350{bottom:206.832000px;}
.y105{bottom:207.097800px;}
.y153{bottom:208.018500px;}
.y163{bottom:208.332000px;}
.y1f5{bottom:208.913400px;}
.y24d{bottom:209.033400px;}
.y3ce{bottom:209.235600px;}
.y1c0{bottom:209.832000px;}
.y31f{bottom:210.732000px;}
.y120{bottom:211.332000px;}
.y2e3{bottom:211.752750px;}
.y24b{bottom:212.219400px;}
.y17e{bottom:212.832000px;}
.y33f{bottom:213.144000px;}
.y390{bottom:214.146000px;}
.y26a{bottom:214.195500px;}
.y1a4{bottom:214.315950px;}
.ya5{bottom:214.332000px;}
.y470{bottom:215.232000px;}
.y418{bottom:215.446800px;}
.y3a9{bottom:215.518500px;}
.y3d5{bottom:215.832000px;}
.y37d{bottom:218.700000px;}
.y35f{bottom:218.815950px;}
.y29e{bottom:218.897550px;}
.yc6{bottom:219.097800px;}
.y21f{bottom:219.670200px;}
.y44e{bottom:220.597800px;}
.y308{bottom:220.706100px;}
.y422{bottom:221.832000px;}
.y16{bottom:222.374850px;}
.y2b2{bottom:223.332000px;}
.ye1{bottom:224.832000px;}
.y16d{bottom:226.597800px;}
.y37{bottom:227.518500px;}
.y90{bottom:227.832000px;}
.y457{bottom:228.732000px;}
.y1d6{bottom:229.011000px;}
.y7e{bottom:229.018500px;}
.y104{bottom:229.597800px;}
.y152{bottom:230.518500px;}
.y42b{bottom:230.832000px;}
.y1f4{bottom:231.413400px;}
.y24a{bottom:231.713400px;}
.y3cd{bottom:231.735600px;}
.y1bf{bottom:232.332000px;}
.y2e2{bottom:232.752750px;}
.y31e{bottom:233.232000px;}
.y11f{bottom:233.832000px;}
.y2e0{bottom:234.153150px;}
.y24c{bottom:234.899400px;}
.y126{bottom:235.332000px;}
.y38f{bottom:236.652000px;}
.y269{bottom:236.701500px;}
.y1a3{bottom:236.815950px;}
.ya4{bottom:236.832000px;}
.y46f{bottom:237.732000px;}
.y3a8{bottom:238.018500px;}
.y162{bottom:238.332000px;}
.y37c{bottom:241.206000px;}
.y239{bottom:241.279200px;}
.y35e{bottom:241.315950px;}
.y29d{bottom:241.397550px;}
.yc5{bottom:241.597800px;}
.y307{bottom:241.706100px;}
.y21e{bottom:242.176200px;}
.y44d{bottom:243.097800px;}
.y421{bottom:244.332000px;}
.y15{bottom:244.874850px;}
.y2b1{bottom:245.832000px;}
.ye0{bottom:247.332000px;}
.y16c{bottom:249.097800px;}
.y36{bottom:250.018500px;}
.y8f{bottom:250.332000px;}
.y478{bottom:250.597800px;}
.y456{bottom:251.232000px;}
.y7d{bottom:251.518500px;}
.y103{bottom:252.097800px;}
.y151{bottom:253.018500px;}
.y42a{bottom:253.332000px;}
.y3cc{bottom:254.235600px;}
.y2df{bottom:255.153150px;}
.y31d{bottom:255.732000px;}
.y11e{bottom:256.332000px;}
.y33e{bottom:258.706500px;}
.y38e{bottom:259.158000px;}
.y268{bottom:259.207500px;}
.y1a2{bottom:259.315950px;}
.ya3{bottom:259.332000px;}
.y46e{bottom:260.232000px;}
.y3a7{bottom:260.518500px;}
.y249{bottom:260.765400px;}
.y238{bottom:260.773200px;}
.y1be{bottom:262.332000px;}
.y1f3{bottom:262.913400px;}
.y37b{bottom:263.712000px;}
.y35d{bottom:263.815950px;}
.y29c{bottom:263.897550px;}
.yc4{bottom:264.097800px;}
.y306{bottom:264.106500px;}
.y21d{bottom:264.682200px;}
.y44c{bottom:265.597800px;}
.y402{bottom:266.246400px;}
.y417{bottom:266.446800px;}
.y420{bottom:266.832000px;}
.y2b0{bottom:268.332000px;}
.y1d5{bottom:269.511000px;}
.ydf{bottom:269.832000px;}
.y16b{bottom:271.597800px;}
.y35{bottom:272.518500px;}
.y8e{bottom:272.832000px;}
.y246{bottom:273.698400px;}
.y455{bottom:273.732000px;}
.y7c{bottom:274.018500px;}
.y102{bottom:274.597800px;}
.y150{bottom:275.518500px;}
.y431{bottom:275.832000px;}
.y2de{bottom:276.153150px;}
.y3cb{bottom:276.735600px;}
.y34f{bottom:277.332000px;}
.y31c{bottom:278.232000px;}
.y11d{bottom:278.832000px;}
.y33d{bottom:279.706500px;}
.y248{bottom:280.259400px;}
.y237{bottom:280.267200px;}
.y38d{bottom:281.664000px;}
.y1a1{bottom:281.815950px;}
.ya2{bottom:281.832000px;}
.y57{bottom:282.732000px;}
.y3a6{bottom:283.018500px;}
.y429{bottom:283.332000px;}
.y2ff{bottom:285.106500px;}
.y1f2{bottom:285.413400px;}
.y35c{bottom:286.315950px;}
.y1fd{bottom:286.332000px;}
.y29b{bottom:286.397550px;}
.yc3{bottom:286.597800px;}
.y21c{bottom:287.188200px;}
.y44b{bottom:288.097800px;}
.y41f{bottom:289.332000px;}
.y267{bottom:290.706000px;}
.y2af{bottom:290.832000px;}
.y339{bottom:291.606900px;}
.y1d4{bottom:292.011000px;}
.yde{bottom:292.332000px;}
.y245{bottom:293.192400px;}
.y401{bottom:293.208900px;}
.y416{bottom:293.409300px;}
.y37a{bottom:293.709000px;}
.y16a{bottom:294.097800px;}
.y34{bottom:295.018500px;}
.y8d{bottom:295.332000px;}
.y454{bottom:296.232000px;}
.y7b{bottom:296.518500px;}
.y101{bottom:297.097800px;}
.y14f{bottom:298.018500px;}
.y430{bottom:298.332000px;}
.y2e1{bottom:298.553550px;}
.y3ca{bottom:299.235600px;}
.y236{bottom:299.761200px;}
.y34e{bottom:299.832000px;}
.y31b{bottom:300.732000px;}
.y11c{bottom:301.332000px;}
.y33c{bottom:302.106900px;}
.y38c{bottom:304.170000px;}
.y1a0{bottom:304.315950px;}
.ya1{bottom:304.332000px;}
.y56{bottom:305.232000px;}
.y3a5{bottom:305.518500px;}
.y2fe{bottom:306.106500px;}
.y247{bottom:306.125400px;}
.y305{bottom:307.506900px;}
.y35b{bottom:308.815950px;}
.y1fc{bottom:308.832000px;}
.y29a{bottom:308.897550px;}
.y44a{bottom:310.597800px;}
.y338{bottom:312.606900px;}
.y266{bottom:313.212000px;}
.y2ae{bottom:313.332000px;}
.y3ff{bottom:314.208900px;}
.y415{bottom:314.409300px;}
.y1d3{bottom:314.511000px;}
.y413{bottom:314.650950px;}
.ydd{bottom:314.832000px;}
.yc2{bottom:316.597800px;}
.y33{bottom:317.518500px;}
.y8c{bottom:317.832000px;}
.y7a{bottom:319.018500px;}
.y235{bottom:319.255200px;}
.y41e{bottom:319.332000px;}
.y100{bottom:319.597800px;}
.y14e{bottom:320.518500px;}
.y42f{bottom:320.832000px;}
.y2dd{bottom:320.953950px;}
.y3c9{bottom:321.735600px;}
.y34d{bottom:322.332000px;}
.y33b{bottom:323.106900px;}
.y31a{bottom:323.232000px;}
.y11b{bottom:323.832000px;}
.y169{bottom:324.097800px;}
.y3af{bottom:325.332000px;}
.y1b8{bottom:326.518500px;}
.y38b{bottom:326.676000px;}
.y19f{bottom:326.815950px;}
.ya0{bottom:326.832000px;}
.y21b{bottom:327.695700px;}
.y46d{bottom:327.732000px;}
.y3a4{bottom:328.018500px;}
.y304{bottom:328.506900px;}
.y35a{bottom:331.315950px;}
.y1fb{bottom:331.332000px;}
.y242{bottom:331.977900px;}
.y1bd{bottom:332.832000px;}
.y449{bottom:333.097800px;}
.y3fe{bottom:335.208900px;}
.y414{bottom:335.409300px;}
.y412{bottom:335.650950px;}
.y265{bottom:335.718000px;}
.y2ad{bottom:335.832000px;}
.y1d2{bottom:337.011000px;}
.ydc{bottom:337.332000px;}
.y244{bottom:338.552400px;}
.y234{bottom:338.749200px;}
.y43c{bottom:339.097800px;}
.y1f1{bottom:339.413400px;}
.y32{bottom:340.018500px;}
.y379{bottom:340.206000px;}
.y8b{bottom:340.332000px;}
.y79{bottom:341.518500px;}
.y2dc{bottom:341.953950px;}
.yff{bottom:342.097800px;}
.y14d{bottom:343.018500px;}
.y42e{bottom:343.332000px;}
.y3c8{bottom:344.235600px;}
.y34c{bottom:344.832000px;}
.y33a{bottom:345.507300px;}
.y14{bottom:345.675000px;}
.y319{bottom:345.732000px;}
.y11a{bottom:346.332000px;}
.y1b7{bottom:349.018500px;}
.y38a{bottom:349.182000px;}
.y19e{bottom:349.315950px;}
.y9f{bottom:349.332000px;}
.y21a{bottom:350.201700px;}
.y55{bottom:350.232000px;}
.y3a3{bottom:350.518500px;}
.y303{bottom:350.907300px;}
.y241{bottom:351.471900px;}
.y2f4{bottom:353.007900px;}
.y359{bottom:353.815950px;}
.y1fa{bottom:353.832000px;}
.y67{bottom:354.774600px;}
.y3fd{bottom:356.208900px;}
.y411{bottom:356.609550px;}
.yc1{bottom:357.097800px;}
.y299{bottom:357.397350px;}
.y264{bottom:358.224000px;}
.y2ac{bottom:358.332000px;}
.y1d1{bottom:359.511000px;}
.ydb{bottom:359.832000px;}
.y43b{bottom:361.597800px;}
.y1f0{bottom:361.913400px;}
.y31{bottom:362.518500px;}
.y378{bottom:362.712000px;}
.y8a{bottom:362.832000px;}
.y448{bottom:363.097800px;}
.y78{bottom:364.018500px;}
.y2db{bottom:364.354350px;}
.yfe{bottom:364.597800px;}
.y14c{bottom:365.518500px;}
.y441{bottom:365.832000px;}
.y3c7{bottom:366.735600px;}
.y34b{bottom:367.332000px;}
.y337{bottom:367.907700px;}
.y13{bottom:368.175000px;}
.y318{bottom:368.232000px;}
.y119{bottom:368.832000px;}
.y127{bottom:370.332000px;}
.y240{bottom:370.965900px;}
.y243{bottom:370.979400px;}
.y1b6{bottom:371.518500px;}
.y389{bottom:371.688000px;}
.y19d{bottom:371.815950px;}
.y9e{bottom:371.832000px;}
.y302{bottom:371.907300px;}
.y54{bottom:372.732000px;}
.y3a2{bottom:373.018500px;}
.y42d{bottom:373.332000px;}
.y2f3{bottom:374.007900px;}
.y27a{bottom:376.209000px;}
.y358{bottom:376.315950px;}
.y400{bottom:377.208900px;}
.y3fc{bottom:377.450550px;}
.y410{bottom:377.609550px;}
.yc0{bottom:379.597800px;}
.y66{bottom:380.274600px;}
.y263{bottom:380.730000px;}
.y2ab{bottom:380.832000px;}
.y32b{bottom:381.208500px;}
.y219{bottom:381.700200px;}
.y1d0{bottom:382.011000px;}
.yda{bottom:382.332000px;}
.y298{bottom:382.735050px;}
.y43a{bottom:384.097800px;}
.y1ef{bottom:384.413400px;}
.y30{bottom:385.018500px;}
.y377{bottom:385.218000px;}
.y89{bottom:385.332000px;}
.y2da{bottom:385.354350px;}
.y2d8{bottom:386.054550px;}
.y77{bottom:386.518500px;}
.yfd{bottom:387.097800px;}
.y14b{bottom:388.018500px;}
.y440{bottom:388.332000px;}
.y15a{bottom:389.832000px;}
.y336{bottom:390.308100px;}
.y12{bottom:390.675000px;}
.y118{bottom:391.332000px;}
.y1b5{bottom:394.018500px;}
.y388{bottom:394.194000px;}
.y301{bottom:394.307700px;}
.y19c{bottom:394.315950px;}
.y9d{bottom:394.332000px;}
.y2f2{bottom:395.007900px;}
.y53{bottom:395.232000px;}
.y3a1{bottom:395.518500px;}
.y3c6{bottom:396.735600px;}
.y23f{bottom:396.831900px;}
.y3fb{bottom:398.409300px;}
.y40f{bottom:398.609550px;}
.y279{bottom:398.715000px;}
.y357{bottom:398.815950px;}
.y166{bottom:398.832000px;}
.y317{bottom:399.732000px;}
.y23d{bottom:400.017900px;}
.y332{bottom:401.508300px;}
.ybf{bottom:402.097800px;}
.y32a{bottom:402.208500px;}
.y262{bottom:403.236000px;}
.y2aa{bottom:403.332000px;}
.y218{bottom:404.206200px;}
.y13b{bottom:404.832000px;}
.y65{bottom:405.774600px;}
.y439{bottom:406.597800px;}
.y1ee{bottom:406.913400px;}
.y2f{bottom:407.518500px;}
.y376{bottom:407.724000px;}
.y2d9{bottom:407.754750px;}
.y88{bottom:407.832000px;}
.y297{bottom:408.485250px;}
.y76{bottom:409.018500px;}
.yfc{bottom:409.597800px;}
.y14a{bottom:410.518500px;}
.y43f{bottom:410.832000px;}
.y34a{bottom:412.332000px;}
.y335{bottom:412.708500px;}
.y11{bottom:413.175000px;}
.y117{bottom:413.832000px;}
.y300{bottom:415.307700px;}
.y2f1{bottom:416.007900px;}
.y1b4{bottom:416.518500px;}
.y387{bottom:416.700000px;}
.y19b{bottom:416.815950px;}
.y10c{bottom:416.832000px;}
.y52{bottom:417.732000px;}
.y3a0{bottom:418.018500px;}
.y3fa{bottom:419.409300px;}
.y23c{bottom:419.511900px;}
.y40e{bottom:419.609550px;}
.y278{bottom:421.221000px;}
.y356{bottom:421.315950px;}
.y167{bottom:421.332000px;}
.y316{bottom:422.232000px;}
.y331{bottom:422.508300px;}
.y23e{bottom:422.697900px;}
.y329{bottom:423.208500px;}
.ybe{bottom:424.597800px;}
.y2a9{bottom:425.832000px;}
.y293{bottom:427.085250px;}
.yd9{bottom:427.332000px;}
.y438{bottom:429.097800px;}
.y1ed{bottom:429.413400px;}
.y1cf{bottom:429.823500px;}
.y2e{bottom:430.018500px;}
.y375{bottom:430.230000px;}
.y87{bottom:430.332000px;}
.y64{bottom:431.274600px;}
.y75{bottom:431.518500px;}
.yfb{bottom:432.097800px;}
.y2d7{bottom:432.454950px;}
.y149{bottom:433.018500px;}
.y447{bottom:433.332000px;}
.y261{bottom:434.734500px;}
.y349{bottom:434.832000px;}
.y334{bottom:435.108900px;}
.y10{bottom:435.675000px;}
.y217{bottom:435.704700px;}
.y116{bottom:436.332000px;}
.y2f0{bottom:437.007900px;}
.y3c5{bottom:437.235600px;}
.y296{bottom:437.585250px;}
.y2fd{bottom:437.708100px;}
.y1b3{bottom:439.018500px;}
.y386{bottom:439.206000px;}
.y19a{bottom:439.315950px;}
.y9c{bottom:439.332000px;}
.y51{bottom:440.232000px;}
.y3f9{bottom:440.409300px;}
.y39f{bottom:440.518500px;}
.y40d{bottom:440.609550px;}
.y43e{bottom:440.832000px;}
.y40b{bottom:440.851350px;}
.y1ce{bottom:443.273700px;}
.y2bb{bottom:443.832000px;}
.y315{bottom:444.732000px;}
.ybd{bottom:447.097800px;}
.y292{bottom:448.085250px;}
.y2a8{bottom:448.332000px;}
.y23b{bottom:448.550400px;}
.yd8{bottom:449.832000px;}
.y437{bottom:451.597800px;}
.y1ec{bottom:451.913400px;}
.y2d{bottom:452.518500px;}
.y277{bottom:452.719500px;}
.y374{bottom:452.736000px;}
.y355{bottom:452.815950px;}
.y99{bottom:452.832000px;}
.y73{bottom:454.018500px;}
.yfa{bottom:454.597800px;}
.y148{bottom:455.518500px;}
.y446{bottom:455.832000px;}
.y333{bottom:456.108900px;}
.y63{bottom:456.774600px;}
.y2d6{bottom:457.155150px;}
.y260{bottom:457.240500px;}
.y348{bottom:457.332000px;}
.yf{bottom:458.175000px;}
.y216{bottom:458.210700px;}
.y115{bottom:458.832000px;}
.y3c4{bottom:459.735600px;}
.y2fc{bottom:460.108500px;}
.y86{bottom:460.332000px;}
.y3f8{bottom:461.409300px;}
.y23a{bottom:461.594850px;}
.y40c{bottom:461.609550px;}
.y3f6{bottom:461.650950px;}
.y385{bottom:461.712000px;}
.y199{bottom:461.815950px;}
.y9b{bottom:461.832000px;}
.y40a{bottom:461.851350px;}
.y50{bottom:462.732000px;}
.y39e{bottom:463.018500px;}
.y43d{bottom:463.332000px;}
.y295{bottom:463.335450px;}
.y184{bottom:464.208750px;}
.y2ba{bottom:466.332000px;}
.y314{bottom:467.232000px;}
.y1b2{bottom:469.018500px;}
.ybc{bottom:469.597800px;}
.y2e8{bottom:470.832000px;}
.yd7{bottom:472.332000px;}
.y436{bottom:474.097800px;}
.y1eb{bottom:474.413400px;}
.y2c{bottom:475.018500px;}
.y276{bottom:475.225500px;}
.y373{bottom:475.242000px;}
.y98{bottom:475.332000px;}
.y74{bottom:476.518500px;}
.yf9{bottom:477.097800px;}
.y147{bottom:478.018500px;}
.y445{bottom:478.332000px;}
.y330{bottom:478.509300px;}
.y2d5{bottom:479.555550px;}
.y25f{bottom:479.746500px;}
.y2a7{bottom:479.832000px;}
.ye{bottom:480.675000px;}
.y114{bottom:481.332000px;}
.y3c3{bottom:482.235600px;}
.y62{bottom:482.274600px;}
.y3f7{bottom:482.409300px;}
.y2fb{bottom:482.508900px;}
.y3f5{bottom:482.650950px;}
.y409{bottom:482.810100px;}
.y1cd{bottom:483.624300px;}
.y384{bottom:484.218000px;}
.y198{bottom:484.315950px;}
.y9a{bottom:484.332000px;}
.y4f{bottom:485.232000px;}
.y39d{bottom:485.518500px;}
.y168{bottom:488.832000px;}
.y294{bottom:489.085650px;}
.ybb{bottom:492.097800px;}
.yd6{bottom:494.832000px;}
.y435{bottom:496.597800px;}
.y1ea{bottom:496.913400px;}
.y2b{bottom:497.518500px;}
.y372{bottom:497.748000px;}
.y12b{bottom:497.832000px;}
.y313{bottom:498.732000px;}
.yf8{bottom:499.597800px;}
.y233{bottom:500.276700px;}
.y145{bottom:500.518500px;}
.y2d4{bottom:500.555550px;}
.y32f{bottom:500.909700px;}
.y215{bottom:502.315200px;}
.y2a6{bottom:502.332000px;}
.y2d0{bottom:503.555550px;}
.y3f4{bottom:503.609550px;}
.y408{bottom:503.810100px;}
.y113{bottom:503.832000px;}
.y3f0{bottom:503.851350px;}
.y3c2{bottom:504.735600px;}
.y2fa{bottom:504.909300px;}
.y97{bottom:505.332000px;}
.y275{bottom:506.724000px;}
.y197{bottom:506.815950px;}
.y85{bottom:506.832000px;}
.y4e{bottom:507.732000px;}
.y61{bottom:507.774600px;}
.y39b{bottom:508.018500px;}
.y444{bottom:508.332000px;}
.y460{bottom:509.518500px;}
.y1cb{bottom:510.524700px;}
.y25e{bottom:511.245000px;}
.y2b9{bottom:511.332000px;}
.y32c{bottom:512.109900px;}
.yd{bottom:512.175000px;}
.y2be{bottom:514.473600px;}
.yba{bottom:514.597800px;}
.y291{bottom:514.835850px;}
.y1b1{bottom:515.518500px;}
.yd5{bottom:517.332000px;}
.y1e9{bottom:519.413400px;}
.y2a{bottom:520.018500px;}
.y371{bottom:520.254000px;}
.y12a{bottom:520.332000px;}
.y312{bottom:521.232000px;}
.y4{bottom:521.859900px;}
.yf7{bottom:522.097800px;}
.y2d3{bottom:522.955950px;}
.y146{bottom:523.018500px;}
.y32e{bottom:523.310100px;}
.y2cf{bottom:524.555550px;}
.y3f3{bottom:524.609550px;}
.y407{bottom:524.810100px;}
.y214{bottom:524.821200px;}
.y2a5{bottom:524.832000px;}
.y3ef{bottom:524.851350px;}
.y2f5{bottom:525.909300px;}
.y112{bottom:526.332000px;}
.y434{bottom:526.597800px;}
.y3c1{bottom:527.235600px;}
.y72{bottom:529.018500px;}
.y274{bottom:529.230000px;}
.y196{bottom:529.315950px;}
.y84{bottom:529.332000px;}
.y232{bottom:530.170500px;}
.y4d{bottom:530.232000px;}
.y39c{bottom:530.518500px;}
.y28e{bottom:531.620700px;}
.y45f{bottom:532.018500px;}
.y60{bottom:533.274600px;}
.y25d{bottom:533.751000px;}
.y2b8{bottom:533.832000px;}
.y2bd{bottom:535.473600px;}
.yb9{bottom:537.097800px;}
.y1cc{bottom:537.425100px;}
.y1b0{bottom:538.018500px;}
.y290{bottom:538.771050px;}
.y13a{bottom:539.832000px;}
.y29{bottom:542.518500px;}
.y370{bottom:542.760000px;}
.y129{bottom:542.832000px;}
.y311{bottom:543.732000px;}
.y2d2{bottom:543.955950px;}
.yf6{bottom:544.597800px;}
.y3f2{bottom:545.609550px;}
.y32d{bottom:545.710350px;}
.y406{bottom:545.810100px;}
.y3ee{bottom:545.851350px;}
.y2f9{bottom:546.909300px;}
.y213{bottom:547.327200px;}
.yd4{bottom:547.332000px;}
.y111{bottom:548.832000px;}
.y433{bottom:549.097800px;}
.y3c0{bottom:549.735600px;}
.y3da{bottom:550.332000px;}
.y273{bottom:551.736000px;}
.y195{bottom:551.815950px;}
.y83{bottom:551.832000px;}
.y3{bottom:551.859900px;}
.y28d{bottom:552.620700px;}
.y231{bottom:552.676500px;}
.y4c{bottom:552.732000px;}
.y5f{bottom:554.274600px;}
.y45e{bottom:554.518500px;}
.y174{bottom:556.332000px;}
.yb8{bottom:559.597800px;}
.y1af{bottom:560.518500px;}
.y139{bottom:562.332000px;}
.y1ca{bottom:564.325500px;}
.y1e8{bottom:564.975900px;}
.y28{bottom:565.018500px;}
.y25c{bottom:565.249500px;}
.y36f{bottom:565.266000px;}
.y159{bottom:565.332000px;}
.y28f{bottom:566.055900px;}
.y310{bottom:566.232000px;}
.y3f1{bottom:566.609550px;}
.y405{bottom:566.810100px;}
.y3ed{bottom:566.851350px;}
.yf5{bottom:567.097800px;}
.y328{bottom:568.110750px;}
.y27f{bottom:568.472700px;}
.y2d1{bottom:568.656150px;}
.y2f8{bottom:569.309700px;}
.y347{bottom:569.832000px;}
.y212{bottom:569.833200px;}
.y110{bottom:571.332000px;}
.y3bf{bottom:572.235600px;}
.y128{bottom:572.832000px;}
.y272{bottom:574.242000px;}
.y194{bottom:574.315950px;}
.y82{bottom:574.332000px;}
.y46c{bottom:575.232000px;}
.y5e{bottom:575.274600px;}
.y71{bottom:575.518500px;}
.y45d{bottom:577.018500px;}
.y2a4{bottom:578.832000px;}
.yb7{bottom:582.097800px;}
.y1ae{bottom:583.018500px;}
.y138{bottom:584.832000px;}
.y1e7{bottom:585.975900px;}
.y1e4{bottom:586.676100px;}
.y27{bottom:587.518500px;}
.y25b{bottom:587.755500px;}
.y36e{bottom:587.772000px;}
.y3ec{bottom:587.810100px;}
.y17a{bottom:587.832000px;}
.y27e{bottom:589.472700px;}
.yf4{bottom:589.597800px;}
.y1c8{bottom:591.225900px;}
.y2f7{bottom:591.710100px;}
.y28c{bottom:591.806100px;}
.y346{bottom:592.332000px;}
.y211{bottom:592.339200px;}
.yd3{bottom:593.832000px;}
.y3be{bottom:594.735600px;}
.y158{bottom:595.332000px;}
.y2ce{bottom:596.074200px;}
.y271{bottom:596.748000px;}
.y193{bottom:596.815950px;}
.y4b{bottom:596.832000px;}
.y30f{bottom:597.732000px;}
.y70{bottom:598.018500px;}
.y5d{bottom:600.774600px;}
.y230{bottom:601.269000px;}
.y15b{bottom:601.332000px;}
.yc{bottom:602.175000px;}
.yb6{bottom:604.597800px;}
.y137{bottom:607.332000px;}
.y1e3{bottom:607.676100px;}
.y1e6{bottom:608.376300px;}
.y3eb{bottom:608.810100px;}
.y26{bottom:610.018500px;}
.y36d{bottom:610.278000px;}
.y17d{bottom:610.332000px;}
.y27d{bottom:610.472700px;}
.yf3{bottom:612.097800px;}
.y2f6{bottom:614.110500px;}
.y28b{bottom:614.206500px;}
.y1ad{bottom:614.518500px;}
.y210{bottom:614.845200px;}
.yd2{bottom:616.332000px;}
.y3bd{bottom:617.235600px;}
.y179{bottom:617.832000px;}
.y1c9{bottom:618.126300px;}
.y270{bottom:619.254000px;}
.y192{bottom:619.315950px;}
.y4a{bottom:619.332000px;}
.y30e{bottom:620.232000px;}
.y6f{bottom:620.518500px;}
.y2cd{bottom:621.192300px;}
.y144{bottom:622.018500px;}
.y22f{bottom:623.775000px;}
.y345{bottom:623.832000px;}
.yb{bottom:624.675000px;}
.y5c{bottom:626.274600px;}
.yb5{bottom:627.097800px;}
.y1e5{bottom:629.376300px;}
.y39a{bottom:629.518500px;}
.y3ea{bottom:629.810100px;}
.y136{bottom:629.832000px;}
.y404{bottom:630.051750px;}
.y27c{bottom:631.472700px;}
.y25{bottom:632.518500px;}
.y36c{bottom:632.784000px;}
.y17c{bottom:632.832000px;}
.yf2{bottom:634.597800px;}
.y2ef{bottom:636.510750px;}
.y28a{bottom:636.606900px;}
.yd1{bottom:638.832000px;}
.y2c8{bottom:639.474450px;}
.y3bc{bottom:639.735600px;}
.y464{bottom:640.332000px;}
.y25a{bottom:641.760000px;}
.y191{bottom:641.815950px;}
.y49{bottom:641.832000px;}
.y2cc{bottom:642.192300px;}
.y30d{bottom:642.732000px;}
.y6e{bottom:643.018500px;}
.y143{bottom:644.518500px;}
.y1c7{bottom:645.026700px;}
.y22e{bottom:646.281000px;}
.y15f{bottom:646.332000px;}
.yb4{bottom:649.597800px;}
.y3e9{bottom:650.810100px;}
.y3e7{bottom:651.051750px;}
.y5b{bottom:651.774600px;}
.y1e2{bottom:651.776700px;}
.y399{bottom:652.018500px;}
.y135{bottom:652.332000px;}
.y27b{bottom:652.472700px;}
.y24{bottom:655.018500px;}
.y36b{bottom:655.290000px;}
.y182{bottom:655.332000px;}
.yf1{bottom:657.097800px;}
.y288{bottom:659.007300px;}
.y20f{bottom:660.413100px;}
.y2c7{bottom:660.474450px;}
.yd0{bottom:661.332000px;}
.y3bb{bottom:662.235600px;}
.y17b{bottom:662.832000px;}
.y2cb{bottom:663.192300px;}
.y1ac{bottom:664.018500px;}
.y259{bottom:664.266000px;}
.y190{bottom:664.315950px;}
.y48{bottom:664.332000px;}
.y2ee{bottom:665.232000px;}
.y183{bottom:666.708750px;}
.y142{bottom:667.018500px;}
.y22d{bottom:668.787000px;}
.y161{bottom:668.832000px;}
.ya{bottom:669.675000px;}
.y20c{bottom:671.728800px;}
.y3e8{bottom:671.810100px;}
.y403{bottom:672.010500px;}
.y3e6{bottom:672.051750px;}
.yb3{bottom:672.097800px;}
.y6d{bottom:674.518500px;}
.y134{bottom:674.832000px;}
.y1c6{bottom:675.997950px;}
.y5a{bottom:677.274600px;}
.y23{bottom:677.518500px;}
.y36a{bottom:677.796000px;}
.y181{bottom:677.832000px;}
.yf0{bottom:679.597800px;}
.y1e1{bottom:680.497950px;}
.y289{bottom:681.407700px;}
.y20e{bottom:681.413100px;}
.ycf{bottom:683.832000px;}
.y3ba{bottom:684.735600px;}
.y2ca{bottom:685.592700px;}
.y258{bottom:686.772000px;}
.y18f{bottom:686.815950px;}
.y47{bottom:686.832000px;}
.y2ed{bottom:687.732000px;}
.y1ab{bottom:688.018500px;}
.y327{bottom:691.332000px;}
.y9{bottom:692.175000px;}
.y20b{bottom:692.728800px;}
.y3e5{bottom:693.010500px;}
.yb2{bottom:694.597800px;}
.y398{bottom:697.018500px;}
.y133{bottom:697.332000px;}
.y1c5{bottom:698.497950px;}
.y141{bottom:698.518500px;}
.y22{bottom:700.018500px;}
.y22c{bottom:700.285500px;}
.y369{bottom:700.302000px;}
.y180{bottom:700.332000px;}
.yef{bottom:702.097800px;}
.y1e0{bottom:702.997950px;}
.y20d{bottom:703.808100px;}
.yce{bottom:706.332000px;}
.y2c9{bottom:706.592700px;}
.y3b9{bottom:707.235600px;}
.y59{bottom:707.274600px;}
.y257{bottom:709.278000px;}
.y18e{bottom:709.315950px;}
.y46{bottom:709.332000px;}
.y46b{bottom:710.232000px;}
.y10f{bottom:713.832000px;}
.y3e4{bottom:714.010500px;}
.y8{bottom:714.675000px;}
.yb1{bottom:717.097800px;}
.y132{bottom:719.832000px;}
.y21{bottom:722.518500px;}
.y22b{bottom:722.791500px;}
.y368{bottom:722.808000px;}
.y326{bottom:722.832000px;}
.y6c{bottom:724.018500px;}
.yee{bottom:724.597800px;}
.y287{bottom:726.208500px;}
.y20a{bottom:726.240750px;}
.y202{bottom:728.310750px;}
.y397{bottom:728.518500px;}
.ycd{bottom:728.832000px;}
.y2c6{bottom:728.993100px;}
.y3b8{bottom:729.735600px;}
.y17f{bottom:730.332000px;}
.y256{bottom:731.784000px;}
.y18d{bottom:731.815950px;}
.y45{bottom:731.832000px;}
.y46a{bottom:732.732000px;}
.y3e3{bottom:735.010500px;}
.y160{bottom:736.332000px;}
.y209{bottom:737.430750px;}
.y1aa{bottom:739.018500px;}
.yb0{bottom:739.597800px;}
.y131{bottom:742.332000px;}
.y20{bottom:745.018500px;}
.y367{bottom:745.314000px;}
.y325{bottom:745.332000px;}
.yed{bottom:747.097800px;}
.y6b{bottom:748.018500px;}
.y286{bottom:748.608900px;}
.y201{bottom:749.310750px;}
.y178{bottom:751.332000px;}
.y2c5{bottom:751.393500px;}
.y1df{bottom:751.597800px;}
.y3b7{bottom:752.235600px;}
.y22a{bottom:754.290000px;}
.y18c{bottom:754.315950px;}
.y44{bottom:754.332000px;}
.y469{bottom:755.232000px;}
.y58{bottom:755.274600px;}
.y3e2{bottom:756.010500px;}
.ycc{bottom:758.832000px;}
.y7{bottom:759.675000px;}
.yaf{bottom:762.097800px;}
.y130{bottom:764.832000px;}
.y1f{bottom:767.518500px;}
.y366{bottom:767.820000px;}
.y3d9{bottom:767.832000px;}
.y1a9{bottom:769.018500px;}
.yec{bottom:769.597800px;}
.y200{bottom:770.310750px;}
.y285{bottom:771.009300px;}
.y208{bottom:771.030750px;}
.y281{bottom:771.709500px;}
.y2c0{bottom:773.093700px;}
.y2c4{bottom:773.793900px;}
.y177{bottom:773.832000px;}
.y1de{bottom:774.097800px;}
.y3b6{bottom:774.735750px;}
.y229{bottom:776.796000px;}
.y18b{bottom:776.815950px;}
.y43{bottom:776.832000px;}
.y3e1{bottom:777.010500px;}
.y3df{bottom:777.252150px;}
.y468{bottom:777.732000px;}
.y396{bottom:778.018500px;}
.y2ec{bottom:781.332000px;}
.yae{bottom:784.597800px;}
.y12f{bottom:787.332000px;}
.y1e{bottom:790.018500px;}
.y3d8{bottom:790.332000px;}
.yeb{bottom:792.097800px;}
.y280{bottom:792.709500px;}
.y284{bottom:793.409700px;}
.y207{bottom:793.425750px;}
.y2bf{bottom:794.093700px;}
.y204{bottom:794.115750px;}
.y2c3{bottom:794.793900px;}
.y176{bottom:796.332000px;}
.y3b5{bottom:797.235750px;}
.y365{bottom:797.817000px;}
.y3e0{bottom:798.010500px;}
.y3de{bottom:798.252150px;}
.y6a{bottom:799.018500px;}
.y228{bottom:799.302000px;}
.y18a{bottom:799.315950px;}
.y42{bottom:799.332000px;}
.y467{bottom:800.232000px;}
.y2eb{bottom:803.832000px;}
.y6{bottom:804.675000px;}
.y1dd{bottom:805.597800px;}
.yad{bottom:807.097800px;}
.y12e{bottom:809.832000px;}
.y1d{bottom:812.518500px;}
.y477{bottom:812.832000px;}
.yea{bottom:814.597800px;}
.y203{bottom:815.115750px;}
.y283{bottom:815.810100px;}
.y206{bottom:815.820750px;}
.y2c2{bottom:817.194300px;}
.y1bc{bottom:818.832000px;}
.y3dd{bottom:819.210900px;}
.y3b4{bottom:819.735750px;}
.y3d7{bottom:820.332000px;}
.y227{bottom:821.808000px;}
.y189{bottom:821.815950px;}
.y41{bottom:821.832000px;}
.y466{bottom:822.732000px;}
.y175{bottom:826.332000px;}
.y1dc{bottom:828.097800px;}
.y69{bottom:829.018500px;}
.yac{bottom:829.597800px;}
.y1c{bottom:835.018500px;}
.y2ea{bottom:835.332000px;}
.ye9{bottom:837.097800px;}
.y2c1{bottom:838.194300px;}
.y282{bottom:838.210350px;}
.y205{bottom:838.215750px;}
.y12d{bottom:839.832000px;}
.y3dc{bottom:840.210900px;}
.y476{bottom:842.832000px;}
.y226{bottom:844.314000px;}
.y188{bottom:844.315950px;}
.y40{bottom:844.332000px;}
.y465{bottom:845.232000px;}
.y1bb{bottom:848.832000px;}
.y2{bottom:851.859900px;}
.yab{bottom:852.097800px;}
.y1b{bottom:857.518500px;}
.y2e9{bottom:857.832000px;}
.ye8{bottom:859.597800px;}
.y2bc{bottom:860.594700px;}
.y1ff{bottom:860.610750px;}
.y3db{bottom:861.210900px;}
.y3b3{bottom:864.735750px;}
.y187{bottom:866.815950px;}
.y225{bottom:866.820000px;}
.y3f{bottom:866.832000px;}
.yaa{bottom:882.097800px;}
.y3b2{bottom:887.235750px;}
.y186{bottom:889.315950px;}
.y1fe{bottom:889.326000px;}
.y3e{bottom:889.332000px;}
.y432{bottom:889.597800px;}
.y1{bottom:896.859900px;}
.y68{bottom:898.018500px;}
.y1a{bottom:907.018500px;}
.y3b1{bottom:909.735750px;}
.y185{bottom:911.815950px;}
.y3d{bottom:911.832000px;}
.ya9{bottom:912.097800px;}
.y3c{bottom:949.109250px;}
.h8{height:41.156250px;}
.h17{height:46.300781px;}
.h16{height:47.250000px;}
.h15{height:50.039062px;}
.hb{height:51.445312px;}
.hd{height:52.236328px;}
.hc{height:52.500000px;}
.h9{height:55.461914px;}
.h6{height:56.589844px;}
.h10{height:57.459961px;}
.h1b{height:57.583912px;}
.h7{height:57.750000px;}
.h1e{height:60.644513px;}
.h1d{height:62.316113px;}
.h1c{height:63.194513px;}
.h1a{height:64.844512px;}
.he{height:67.907227px;}
.h5{height:72.023438px;}
.h19{height:72.598781px;}
.h4{height:82.312500px;}
.ha{height:84.000000px;}
.h13{height:93.445312px;}
.h14{height:96.265312px;}
.h18{height:97.586981px;}
.h12{height:105.246112px;}
.h1f{height:135.445312px;}
.h3{height:136.500000px;}
.h11{height:236.589844px;}
.hf{height:289.687011px;}
.h2{height:1020.472500px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:680.250000px;}
.w2{width:680.314500px;}
.w1{width:684.000000px;}
.w0{width:684.360000px;}
.w5{width:684.750000px;}
.w4{width:685.080000px;}
.x0{left:0.000000px;}
.x6{left:70.200000px;}
.x43{left:72.609450px;}
.x40{left:76.762500px;}
.x74{left:82.239000px;}
.x1c{left:83.348100px;}
.x93{left:84.667800px;}
.xa{left:86.400000px;}
.x3e{left:87.442500px;}
.x5d{left:88.918650px;}
.x5c{left:91.273350px;}
.x3a{left:92.962500px;}
.x49{left:94.966650px;}
.x38{left:96.801600px;}
.x68{left:98.088600px;}
.x5b{left:100.165050px;}
.x5a{left:102.245100px;}
.x85{left:104.089950px;}
.xb{left:106.200000px;}
.x8b{left:107.407800px;}
.x29{left:108.913800px;}
.x7d{left:110.473800px;}
.x33{left:115.269900px;}
.x7e{left:117.416250px;}
.x28{left:119.103150px;}
.x9{left:122.400000px;}
.x1{left:125.035800px;}
.x2f{left:130.648200px;}
.x31{left:132.492600px;}
.x13{left:136.083600px;}
.x35{left:141.464850px;}
.x1f{left:143.700900px;}
.x52{left:146.737800px;}
.x91{left:149.378550px;}
.x21{left:157.128000px;}
.x30{left:158.833650px;}
.x57{left:163.023300px;}
.x44{left:164.127450px;}
.x55{left:169.341450px;}
.x3f{left:173.820000px;}
.x10{left:182.400000px;}
.x2{left:187.353900px;}
.x3b{left:190.312500px;}
.x4d{left:193.036800px;}
.x47{left:196.752450px;}
.x7f{left:198.816000px;}
.x4a{left:200.662500px;}
.x2b{left:203.044650px;}
.x18{left:205.107150px;}
.x71{left:207.672150px;}
.x16{left:209.291400px;}
.x14{left:211.025100px;}
.x78{left:213.088350px;}
.x19{left:216.116550px;}
.x76{left:217.453650px;}
.x69{left:218.936850px;}
.x1d{left:222.290700px;}
.x15{left:223.407000px;}
.x6a{left:224.532450px;}
.x80{left:226.516200px;}
.x1a{left:227.706000px;}
.x5e{left:231.003450px;}
.x2d{left:232.194150px;}
.x75{left:236.211000px;}
.x92{left:239.190750px;}
.x51{left:240.326700px;}
.x23{left:242.554350px;}
.x1b{left:244.000500px;}
.x24{left:245.136450px;}
.x32{left:248.588700px;}
.x4e{left:255.608700px;}
.x17{left:257.648550px;}
.x20{left:258.790650px;}
.xf{left:262.019250px;}
.x59{left:263.821800px;}
.x27{left:266.640600px;}
.x25{left:267.806250px;}
.x4c{left:269.993100px;}
.x2a{left:271.540650px;}
.x1e{left:273.772350px;}
.x50{left:275.002500px;}
.x22{left:277.201950px;}
.x4f{left:278.269500px;}
.x12{left:280.904250px;}
.x45{left:289.500000px;}
.x4{left:295.470450px;}
.x39{left:298.992600px;}
.x8{left:301.558200px;}
.x56{left:304.469700px;}
.x41{left:306.064950px;}
.x5{left:312.735750px;}
.x3{left:315.140250px;}
.x3c{left:320.137500px;}
.x4b{left:322.162500px;}
.x34{left:323.994900px;}
.x36{left:337.214850px;}
.x54{left:339.300000px;}
.xe{left:341.884050px;}
.x11{left:345.300000px;}
.x7{left:346.302000px;}
.x6d{left:347.858400px;}
.x60{left:349.326900px;}
.x77{left:350.898000px;}
.x86{left:353.341650px;}
.x6b{left:354.439200px;}
.x61{left:355.779600px;}
.x8f{left:358.010850px;}
.x5f{left:360.265650px;}
.x81{left:362.083050px;}
.x82{left:370.436400px;}
.x87{left:374.669850px;}
.x88{left:376.958550px;}
.x72{left:379.030350px;}
.x6c{left:380.290050px;}
.x58{left:382.087500px;}
.x6e{left:384.303750px;}
.x8c{left:387.516450px;}
.x2c{left:403.881150px;}
.x53{left:409.234050px;}
.xd{left:449.548050px;}
.x2e{left:472.201350px;}
.x89{left:474.745950px;}
.x83{left:475.782300px;}
.x8d{left:477.888000px;}
.x6f{left:480.739950px;}
.x7a{left:482.493450px;}
.x70{left:483.544350px;}
.x73{left:485.613450px;}
.x79{left:487.689900px;}
.x7b{left:489.781050px;}
.x65{left:491.861100px;}
.x8a{left:494.532300px;}
.x66{left:497.500650px;}
.x63{left:499.148700px;}
.x64{left:501.038250px;}
.x67{left:503.114700px;}
.x62{left:504.564900px;}
.x90{left:507.657300px;}
.x7c{left:512.277300px;}
.x84{left:515.571150px;}
.x8e{left:521.822250px;}
.x37{left:529.550100px;}
.xc{left:548.378850px;}
.x26{left:564.652350px;}
.x48{left:572.625000px;}
.x46{left:574.939950px;}
.x42{left:578.319450px;}
.x3d{left:588.562500px;}
@media print{
.v2{vertical-align:-8.450667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:5.456533pt;}
.vb{vertical-align:8.177067pt;}
.va{vertical-align:10.443733pt;}
.v8{vertical-align:11.910400pt;}
.v7{vertical-align:23.376000pt;}
.v4{vertical-align:37.333333pt;}
.v5{vertical-align:39.840000pt;}
.v6{vertical-align:45.587733pt;}
.v3{vertical-align:47.822933pt;}
.v1{vertical-align:160.000000pt;}
.ls2c{letter-spacing:-5.333333pt;}
.ls17{letter-spacing:-4.341333pt;}
.ls2d{letter-spacing:-1.973333pt;}
.ls11{letter-spacing:-1.578667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.000533pt;}
.ls18{letter-spacing:0.009600pt;}
.ls21{letter-spacing:0.050115pt;}
.ls32{letter-spacing:0.050649pt;}
.ls2b{letter-spacing:0.058667pt;}
.ls25{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.176000pt;}
.ls20{letter-spacing:0.234667pt;}
.ls8{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.469333pt;}
.ls24{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.645333pt;}
.ls1e{letter-spacing:0.675733pt;}
.ls19{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.762667pt;}
.ls16{letter-spacing:0.821333pt;}
.lse{letter-spacing:0.880000pt;}
.ls22{letter-spacing:0.938667pt;}
.ls9{letter-spacing:0.997333pt;}
.lsb{letter-spacing:1.056000pt;}
.ls14{letter-spacing:1.114667pt;}
.ls7{letter-spacing:1.290667pt;}
.ls3a{letter-spacing:1.345600pt;}
.lsd{letter-spacing:1.349333pt;}
.ls12{letter-spacing:1.408000pt;}
.ls33{letter-spacing:1.466667pt;}
.ls3e{letter-spacing:1.483733pt;}
.ls3{letter-spacing:1.493333pt;}
.lsa{letter-spacing:1.525333pt;}
.ls28{letter-spacing:1.584000pt;}
.ls1f{letter-spacing:1.701333pt;}
.ls31{letter-spacing:1.877333pt;}
.ls1{letter-spacing:2.986667pt;}
.ls3c{letter-spacing:3.823467pt;}
.ls37{letter-spacing:3.949867pt;}
.ls2a{letter-spacing:4.680533pt;}
.ls38{letter-spacing:5.506667pt;}
.ls1d{letter-spacing:6.080533pt;}
.ls1a{letter-spacing:6.308267pt;}
.ls39{letter-spacing:6.661867pt;}
.ls35{letter-spacing:7.669867pt;}
.ls1c{letter-spacing:8.100800pt;}
.ls1b{letter-spacing:8.673600pt;}
.ls2{letter-spacing:10.666667pt;}
.ls2f{letter-spacing:11.174400pt;}
.ls2e{letter-spacing:11.221867pt;}
.ls27{letter-spacing:12.203733pt;}
.ls3d{letter-spacing:12.302400pt;}
.ls34{letter-spacing:14.677333pt;}
.ls26{letter-spacing:15.440000pt;}
.ls29{letter-spacing:15.440533pt;}
.ls6{letter-spacing:17.493333pt;}
.ls36{letter-spacing:17.907200pt;}
.ls30{letter-spacing:25.157867pt;}
.ls4{letter-spacing:280.000000pt;}
.ls5{letter-spacing:1302.933333pt;}
.wsa{word-spacing:-1302.933333pt;}
.ws9{word-spacing:-280.000000pt;}
.wsc{word-spacing:-75.079600pt;}
.wsb{word-spacing:-69.333333pt;}
.ws13{word-spacing:-58.666667pt;}
.ws46{word-spacing:-46.053333pt;}
.ws45{word-spacing:-45.818667pt;}
.ws4{word-spacing:-42.666667pt;}
.ws32{word-spacing:-30.080000pt;}
.ws7{word-spacing:-18.666667pt;}
.ws47{word-spacing:-17.658667pt;}
.wsd{word-spacing:-17.493333pt;}
.ws23{word-spacing:-16.368000pt;}
.ws24{word-spacing:-16.016000pt;}
.ws1f{word-spacing:-15.488000pt;}
.ws25{word-spacing:-14.901333pt;}
.ws1{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws1e{word-spacing:-10.325333pt;}
.ws41{word-spacing:-9.088000pt;}
.ws2c{word-spacing:-8.000000pt;}
.ws8{word-spacing:-2.986667pt;}
.ws3f{word-spacing:-1.877333pt;}
.ws2a{word-spacing:-1.584000pt;}
.ws11{word-spacing:-1.525333pt;}
.ws5{word-spacing:-1.493333pt;}
.ws40{word-spacing:-1.466667pt;}
.ws2{word-spacing:-1.450667pt;}
.ws1a{word-spacing:-1.408000pt;}
.ws15{word-spacing:-1.349333pt;}
.wse{word-spacing:-1.290667pt;}
.ws1c{word-spacing:-1.114667pt;}
.ws12{word-spacing:-1.056000pt;}
.ws10{word-spacing:-0.997333pt;}
.ws26{word-spacing:-0.938667pt;}
.ws16{word-spacing:-0.880000pt;}
.ws20{word-spacing:-0.821333pt;}
.ws1d{word-spacing:-0.762667pt;}
.ws21{word-spacing:-0.704000pt;}
.ws19{word-spacing:-0.645333pt;}
.ws28{word-spacing:-0.586667pt;}
.ws14{word-spacing:-0.469333pt;}
.ws17{word-spacing:-0.410667pt;}
.ws27{word-spacing:-0.352000pt;}
.wsf{word-spacing:-0.293333pt;}
.ws2b{word-spacing:-0.234667pt;}
.ws1b{word-spacing:-0.176000pt;}
.ws29{word-spacing:-0.117333pt;}
.ws22{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:1.578667pt;}
.ws30{word-spacing:1.973333pt;}
.ws2f{word-spacing:63.840000pt;}
.ws43{word-spacing:108.118933pt;}
.ws3a{word-spacing:146.995733pt;}
.ws2d{word-spacing:167.093333pt;}
.ws39{word-spacing:171.846933pt;}
.ws31{word-spacing:207.349333pt;}
.ws3c{word-spacing:217.226667pt;}
.ws33{word-spacing:222.374400pt;}
.ws35{word-spacing:256.949333pt;}
.ws42{word-spacing:310.515733pt;}
.ws44{word-spacing:327.613867pt;}
.ws38{word-spacing:561.733333pt;}
.ws2e{word-spacing:590.498667pt;}
.ws3e{word-spacing:590.506667pt;}
.ws37{word-spacing:635.866667pt;}
.ws36{word-spacing:730.586667pt;}
.ws3d{word-spacing:780.053333pt;}
.ws3b{word-spacing:863.520000pt;}
.ws34{word-spacing:867.984000pt;}
._32{margin-left:-14.872533pt;}
._9c{margin-left:-13.803733pt;}
._35{margin-left:-11.492800pt;}
._9a{margin-left:-9.814933pt;}
._25{margin-left:-8.644267pt;}
._0{margin-left:-7.668267pt;}
._c{margin-left:-6.541333pt;}
._15{margin-left:-5.567467pt;}
._12{margin-left:-4.212267pt;}
._1{margin-left:-3.244267pt;}
._6{margin-left:-2.094400pt;}
._2{margin-left:-1.067733pt;}
._7{width:1.713067pt;}
._9{width:2.634133pt;}
._e{width:3.531733pt;}
._f{width:5.156800pt;}
._3{width:6.635200pt;}
._d{width:7.914133pt;}
._a{width:9.281067pt;}
._4{width:10.583467pt;}
._11{width:11.481067pt;}
._8{width:13.241067pt;}
._97{width:15.056533pt;}
._14{width:16.044800pt;}
._2e{width:16.948800pt;}
._b{width:17.852267pt;}
._19{width:18.978667pt;}
._16{width:20.304533pt;}
._5{width:21.331200pt;}
._18{width:22.346667pt;}
._17{width:23.683733pt;}
._26{width:25.197333pt;}
._29{width:26.470400pt;}
._1a{width:27.778667pt;}
._28{width:28.899200pt;}
._13{width:29.955200pt;}
._10{width:30.911467pt;}
._2a{width:31.990933pt;}
._2c{width:33.363733pt;}
._1c{width:34.666667pt;}
._2d{width:35.880533pt;}
._38{width:36.836800pt;}
._3a{width:37.886933pt;}
._33{width:38.802133pt;}
._31{width:40.556267pt;}
._30{width:41.518400pt;}
._2f{width:42.492267pt;}
._39{width:43.422400pt;}
._1e{width:44.426667pt;}
._37{width:45.331733pt;}
._27{width:46.657600pt;}
._5f{width:47.666667pt;}
._96{width:49.192000pt;}
._82{width:50.293333pt;}
._4e{width:51.306667pt;}
._46{width:53.310400pt;}
._59{width:54.864000pt;}
._7e{width:57.733867pt;}
._9b{width:59.188800pt;}
._95{width:60.637867pt;}
._34{width:61.676267pt;}
._2b{width:64.333867pt;}
._36{width:65.694933pt;}
._6a{width:67.270933pt;}
._4f{width:70.026667pt;}
._1f{width:71.056533pt;}
._93{width:77.305067pt;}
._5c{width:82.848000pt;}
._87{width:84.160000pt;}
._51{width:86.346667pt;}
._4d{width:87.840000pt;}
._7f{width:100.144000pt;}
._6f{width:104.230933pt;}
._53{width:106.720000pt;}
._79{width:112.682667pt;}
._92{width:115.092267pt;}
._75{width:117.297600pt;}
._69{width:126.701867pt;}
._55{width:129.360000pt;}
._91{width:133.877333pt;}
._83{width:142.186667pt;}
._8d{width:144.586667pt;}
._7b{width:146.515733pt;}
._94{width:154.812267pt;}
._50{width:157.333333pt;}
._6d{width:158.853333pt;}
._5d{width:160.272000pt;}
._85{width:174.826667pt;}
._86{width:180.640000pt;}
._47{width:189.354133pt;}
._5a{width:193.488000pt;}
._8e{width:196.373333pt;}
._7d{width:199.912000pt;}
._54{width:217.440000pt;}
._99{width:222.990400pt;}
._64{width:230.000000pt;}
._98{width:230.990400pt;}
._3b{width:234.026667pt;}
._8a{width:242.400000pt;}
._73{width:245.000533pt;}
._20{width:246.243733pt;}
._67{width:249.146667pt;}
._56{width:254.784000pt;}
._48{width:260.831467pt;}
._76{width:269.884267pt;}
._70{width:274.293333pt;}
._1b{width:280.000000pt;}
._52{width:286.509867pt;}
._57{width:288.144000pt;}
._80{width:301.851733pt;}
._60{width:303.746667pt;}
._88{width:315.754133pt;}
._81{width:321.493333pt;}
._24{width:324.517867pt;}
._45{width:335.360533pt;}
._7c{width:340.870933pt;}
._43{width:343.626667pt;}
._68{width:349.594133pt;}
._4c{width:352.820800pt;}
._89{width:356.426667pt;}
._5b{width:369.695467pt;}
._77{width:385.350933pt;}
._65{width:409.200000pt;}
._4a{width:415.253333pt;}
._72{width:423.866667pt;}
._44{width:433.120533pt;}
._4b{width:447.733333pt;}
._62{width:449.200000pt;}
._6e{width:451.004267pt;}
._58{width:456.096000pt;}
._61{width:461.244267pt;}
._8f{width:466.133333pt;}
._6c{width:475.813333pt;}
._71{width:486.755200pt;}
._63{width:498.906667pt;}
._6b{width:502.586667pt;}
._66{width:511.386667pt;}
._3f{width:522.080533pt;}
._8b{width:526.826667pt;}
._78{width:535.004267pt;}
._42{width:536.853867pt;}
._7a{width:545.350933pt;}
._84{width:555.466667pt;}
._90{width:559.466667pt;}
._8c{width:560.853333pt;}
._5e{width:585.360000pt;}
._3d{width:621.280533pt;}
._3e{width:634.613867pt;}
._3c{width:646.480000pt;}
._41{width:676.053867pt;}
._40{width:689.387200pt;}
._23{width:719.699200pt;}
._49{width:791.413333pt;}
._22{width:833.376000pt;}
._74{width:851.910933pt;}
._21{width:1143.244267pt;}
._1d{width:1302.932267pt;}
.fs4{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:138.666667pt;}
.fs7{font-size:300.318400pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:59.296267pt;}
.ye7{bottom:59.850667pt;}
.y3b0{bottom:62.517333pt;}
.y10b{bottom:64.086933pt;}
.y3d6{bottom:65.184000pt;}
.y3d4{bottom:65.987333pt;}
.y443{bottom:67.850667pt;}
.y383{bottom:70.503067pt;}
.y140{bottom:70.517333pt;}
.ye6{bottom:79.850667pt;}
.y173{bottom:81.420267pt;}
.y1ba{bottom:82.238667pt;}
.y96{bottom:82.517333pt;}
.y354{bottom:83.850667pt;}
.y10a{bottom:84.086933pt;}
.y124{bottom:85.184000pt;}
.y3d3{bottom:85.987333pt;}
.y5{bottom:87.202133pt;}
.y324{bottom:87.317333pt;}
.y2e7{bottom:87.724667pt;}
.y13f{bottom:87.850667pt;}
.y344{bottom:89.461333pt;}
.y1f9{bottom:89.700800pt;}
.y395{bottom:90.325333pt;}
.y26f{bottom:90.369333pt;}
.y382{bottom:90.503067pt;}
.y10e{bottom:90.517333pt;}
.y475{bottom:91.317333pt;}
.y41d{bottom:91.508267pt;}
.y3ae{bottom:91.572000pt;}
.y255{bottom:93.863467pt;}
.y364{bottom:94.503067pt;}
.y381{bottom:94.506667pt;}
.y2a3{bottom:94.575600pt;}
.ycb{bottom:94.753600pt;}
.y224{bottom:95.235733pt;}
.y81{bottom:95.572000pt;}
.y30c{bottom:95.860267pt;}
.y453{bottom:96.086933pt;}
.y253{bottom:96.695467pt;}
.y1db{bottom:96.898667pt;}
.y463{bottom:96.905333pt;}
.y427{bottom:97.184000pt;}
.y2b7{bottom:98.517333pt;}
.ye5{bottom:99.850667pt;}
.y172{bottom:101.420267pt;}
.y1b9{bottom:102.238667pt;}
.y95{bottom:102.517333pt;}
.y45c{bottom:103.317333pt;}
.y353{bottom:103.850667pt;}
.y109{bottom:104.086933pt;}
.y157{bottom:104.905333pt;}
.y123{bottom:105.184000pt;}
.y3d2{bottom:105.987333pt;}
.y1c4{bottom:106.517333pt;}
.y323{bottom:107.317333pt;}
.y2e6{bottom:107.724667pt;}
.y13e{bottom:107.850667pt;}
.y343{bottom:109.461333pt;}
.y1f8{bottom:109.700800pt;}
.y394{bottom:110.330667pt;}
.y26e{bottom:110.374667pt;}
.y1a8{bottom:110.503067pt;}
.y10d{bottom:110.517333pt;}
.y474{bottom:111.317333pt;}
.y41c{bottom:111.508267pt;}
.y3ad{bottom:111.572000pt;}
.y428{bottom:111.850667pt;}
.y252{bottom:114.023467pt;}
.y363{bottom:114.503067pt;}
.y380{bottom:114.512000pt;}
.y2a2{bottom:114.575600pt;}
.yca{bottom:114.753600pt;}
.y223{bottom:115.241067pt;}
.y80{bottom:115.572000pt;}
.y30b{bottom:115.860267pt;}
.y452{bottom:116.086933pt;}
.y254{bottom:116.855467pt;}
.y1da{bottom:116.898667pt;}
.y462{bottom:116.905333pt;}
.y426{bottom:117.184000pt;}
.y2b6{bottom:118.517333pt;}
.ye4{bottom:119.850667pt;}
.y171{bottom:121.420267pt;}
.y3b{bottom:122.238667pt;}
.y94{bottom:122.517333pt;}
.y45b{bottom:123.317333pt;}
.y352{bottom:123.850667pt;}
.y108{bottom:124.086933pt;}
.y156{bottom:124.905333pt;}
.y122{bottom:125.184000pt;}
.y3d1{bottom:125.987333pt;}
.y1c3{bottom:126.517333pt;}
.y322{bottom:127.317333pt;}
.y2e5{bottom:127.724667pt;}
.y15e{bottom:127.850667pt;}
.y342{bottom:129.461333pt;}
.y393{bottom:130.336000pt;}
.y26d{bottom:130.380000pt;}
.y1a7{bottom:130.503067pt;}
.ya8{bottom:130.517333pt;}
.y473{bottom:131.317333pt;}
.y41b{bottom:131.508267pt;}
.y3ac{bottom:131.572000pt;}
.y42c{bottom:131.850667pt;}
.y362{bottom:134.503067pt;}
.y13d{bottom:134.517333pt;}
.y2a1{bottom:134.575600pt;}
.yc9{bottom:134.753600pt;}
.y222{bottom:135.246400pt;}
.y451{bottom:136.086933pt;}
.y1d9{bottom:136.898667pt;}
.y425{bottom:137.184000pt;}
.y1f7{bottom:137.700800pt;}
.y2b5{bottom:138.517333pt;}
.y251{bottom:139.835467pt;}
.ye3{bottom:139.850667pt;}
.y170{bottom:141.420267pt;}
.y3a{bottom:142.238667pt;}
.y93{bottom:142.517333pt;}
.y24f{bottom:142.667467pt;}
.y45a{bottom:143.317333pt;}
.y461{bottom:143.572000pt;}
.y107{bottom:144.086933pt;}
.y155{bottom:144.905333pt;}
.y165{bottom:145.184000pt;}
.y3d0{bottom:145.987200pt;}
.y1c2{bottom:146.517333pt;}
.y321{bottom:147.317333pt;}
.y2e4{bottom:147.724667pt;}
.y15d{bottom:147.850667pt;}
.y12c{bottom:149.184000pt;}
.y341{bottom:149.461333pt;}
.y392{bottom:150.341333pt;}
.y26c{bottom:150.385333pt;}
.y1a6{bottom:150.503067pt;}
.ya7{bottom:150.517333pt;}
.y472{bottom:151.317333pt;}
.y41a{bottom:151.508267pt;}
.y3ab{bottom:151.572000pt;}
.y121{bottom:151.850667pt;}
.y37f{bottom:154.389333pt;}
.y361{bottom:154.503067pt;}
.y442{bottom:154.517333pt;}
.y2a0{bottom:154.575600pt;}
.yc8{bottom:154.753600pt;}
.y221{bottom:155.251733pt;}
.y450{bottom:156.086933pt;}
.y30a{bottom:156.360267pt;}
.y1d8{bottom:156.898667pt;}
.y424{bottom:157.184000pt;}
.y18{bottom:157.666533pt;}
.y1f6{bottom:157.700800pt;}
.y2b4{bottom:158.517333pt;}
.ye2{bottom:159.850667pt;}
.y24e{bottom:159.995467pt;}
.y16f{bottom:161.420267pt;}
.y39{bottom:162.238667pt;}
.y92{bottom:162.517333pt;}
.y250{bottom:162.827467pt;}
.y459{bottom:163.317333pt;}
.y351{bottom:163.850667pt;}
.y106{bottom:164.086933pt;}
.y154{bottom:164.905333pt;}
.y164{bottom:165.184000pt;}
.y3cf{bottom:165.987200pt;}
.y1c1{bottom:166.517333pt;}
.y320{bottom:167.317333pt;}
.y15c{bottom:167.850667pt;}
.y125{bottom:169.184000pt;}
.y340{bottom:169.461333pt;}
.y391{bottom:170.346667pt;}
.y26b{bottom:170.390667pt;}
.y1a5{bottom:170.503067pt;}
.ya6{bottom:170.517333pt;}
.y471{bottom:171.317333pt;}
.y419{bottom:171.508267pt;}
.y3aa{bottom:171.572000pt;}
.y37e{bottom:174.394667pt;}
.y360{bottom:174.503067pt;}
.y29f{bottom:174.575600pt;}
.yc7{bottom:174.753600pt;}
.y220{bottom:175.257067pt;}
.y44f{bottom:176.086933pt;}
.y309{bottom:176.271733pt;}
.y1d7{bottom:176.898667pt;}
.y423{bottom:177.184000pt;}
.y17{bottom:177.666533pt;}
.y2b3{bottom:178.517333pt;}
.y13c{bottom:179.850667pt;}
.y16e{bottom:181.420267pt;}
.y38{bottom:182.238667pt;}
.y91{bottom:182.517333pt;}
.y458{bottom:183.317333pt;}
.y7f{bottom:183.572000pt;}
.y350{bottom:183.850667pt;}
.y105{bottom:184.086933pt;}
.y153{bottom:184.905333pt;}
.y163{bottom:185.184000pt;}
.y1f5{bottom:185.700800pt;}
.y24d{bottom:185.807467pt;}
.y3ce{bottom:185.987200pt;}
.y1c0{bottom:186.517333pt;}
.y31f{bottom:187.317333pt;}
.y120{bottom:187.850667pt;}
.y2e3{bottom:188.224667pt;}
.y24b{bottom:188.639467pt;}
.y17e{bottom:189.184000pt;}
.y33f{bottom:189.461333pt;}
.y390{bottom:190.352000pt;}
.y26a{bottom:190.396000pt;}
.y1a4{bottom:190.503067pt;}
.ya5{bottom:190.517333pt;}
.y470{bottom:191.317333pt;}
.y418{bottom:191.508267pt;}
.y3a9{bottom:191.572000pt;}
.y3d5{bottom:191.850667pt;}
.y37d{bottom:194.400000pt;}
.y35f{bottom:194.503067pt;}
.y29e{bottom:194.575600pt;}
.yc6{bottom:194.753600pt;}
.y21f{bottom:195.262400pt;}
.y44e{bottom:196.086933pt;}
.y308{bottom:196.183200pt;}
.y422{bottom:197.184000pt;}
.y16{bottom:197.666533pt;}
.y2b2{bottom:198.517333pt;}
.ye1{bottom:199.850667pt;}
.y16d{bottom:201.420267pt;}
.y37{bottom:202.238667pt;}
.y90{bottom:202.517333pt;}
.y457{bottom:203.317333pt;}
.y1d6{bottom:203.565333pt;}
.y7e{bottom:203.572000pt;}
.y104{bottom:204.086933pt;}
.y152{bottom:204.905333pt;}
.y42b{bottom:205.184000pt;}
.y1f4{bottom:205.700800pt;}
.y24a{bottom:205.967467pt;}
.y3cd{bottom:205.987200pt;}
.y1bf{bottom:206.517333pt;}
.y2e2{bottom:206.891333pt;}
.y31e{bottom:207.317333pt;}
.y11f{bottom:207.850667pt;}
.y2e0{bottom:208.136133pt;}
.y24c{bottom:208.799467pt;}
.y126{bottom:209.184000pt;}
.y38f{bottom:210.357333pt;}
.y269{bottom:210.401333pt;}
.y1a3{bottom:210.503067pt;}
.ya4{bottom:210.517333pt;}
.y46f{bottom:211.317333pt;}
.y3a8{bottom:211.572000pt;}
.y162{bottom:211.850667pt;}
.y37c{bottom:214.405333pt;}
.y239{bottom:214.470400pt;}
.y35e{bottom:214.503067pt;}
.y29d{bottom:214.575600pt;}
.yc5{bottom:214.753600pt;}
.y307{bottom:214.849867pt;}
.y21e{bottom:215.267733pt;}
.y44d{bottom:216.086933pt;}
.y421{bottom:217.184000pt;}
.y15{bottom:217.666533pt;}
.y2b1{bottom:218.517333pt;}
.ye0{bottom:219.850667pt;}
.y16c{bottom:221.420267pt;}
.y36{bottom:222.238667pt;}
.y8f{bottom:222.517333pt;}
.y478{bottom:222.753600pt;}
.y456{bottom:223.317333pt;}
.y7d{bottom:223.572000pt;}
.y103{bottom:224.086933pt;}
.y151{bottom:224.905333pt;}
.y42a{bottom:225.184000pt;}
.y3cc{bottom:225.987200pt;}
.y2df{bottom:226.802800pt;}
.y31d{bottom:227.317333pt;}
.y11e{bottom:227.850667pt;}
.y33e{bottom:229.961333pt;}
.y38e{bottom:230.362667pt;}
.y268{bottom:230.406667pt;}
.y1a2{bottom:230.503067pt;}
.ya3{bottom:230.517333pt;}
.y46e{bottom:231.317333pt;}
.y3a7{bottom:231.572000pt;}
.y249{bottom:231.791467pt;}
.y238{bottom:231.798400pt;}
.y1be{bottom:233.184000pt;}
.y1f3{bottom:233.700800pt;}
.y37b{bottom:234.410667pt;}
.y35d{bottom:234.503067pt;}
.y29c{bottom:234.575600pt;}
.yc4{bottom:234.753600pt;}
.y306{bottom:234.761333pt;}
.y21d{bottom:235.273067pt;}
.y44c{bottom:236.086933pt;}
.y402{bottom:236.663467pt;}
.y417{bottom:236.841600pt;}
.y420{bottom:237.184000pt;}
.y2b0{bottom:238.517333pt;}
.y1d5{bottom:239.565333pt;}
.ydf{bottom:239.850667pt;}
.y16b{bottom:241.420267pt;}
.y35{bottom:242.238667pt;}
.y8e{bottom:242.517333pt;}
.y246{bottom:243.287467pt;}
.y455{bottom:243.317333pt;}
.y7c{bottom:243.572000pt;}
.y102{bottom:244.086933pt;}
.y150{bottom:244.905333pt;}
.y431{bottom:245.184000pt;}
.y2de{bottom:245.469467pt;}
.y3cb{bottom:245.987200pt;}
.y34f{bottom:246.517333pt;}
.y31c{bottom:247.317333pt;}
.y11d{bottom:247.850667pt;}
.y33d{bottom:248.628000pt;}
.y248{bottom:249.119467pt;}
.y237{bottom:249.126400pt;}
.y38d{bottom:250.368000pt;}
.y1a1{bottom:250.503067pt;}
.ya2{bottom:250.517333pt;}
.y57{bottom:251.317333pt;}
.y3a6{bottom:251.572000pt;}
.y429{bottom:251.850667pt;}
.y2ff{bottom:253.428000pt;}
.y1f2{bottom:253.700800pt;}
.y35c{bottom:254.503067pt;}
.y1fd{bottom:254.517333pt;}
.y29b{bottom:254.575600pt;}
.yc3{bottom:254.753600pt;}
.y21c{bottom:255.278400pt;}
.y44b{bottom:256.086933pt;}
.y41f{bottom:257.184000pt;}
.y267{bottom:258.405333pt;}
.y2af{bottom:258.517333pt;}
.y339{bottom:259.206133pt;}
.y1d4{bottom:259.565333pt;}
.yde{bottom:259.850667pt;}
.y245{bottom:260.615467pt;}
.y401{bottom:260.630133pt;}
.y416{bottom:260.808267pt;}
.y37a{bottom:261.074667pt;}
.y16a{bottom:261.420267pt;}
.y34{bottom:262.238667pt;}
.y8d{bottom:262.517333pt;}
.y454{bottom:263.317333pt;}
.y7b{bottom:263.572000pt;}
.y101{bottom:264.086933pt;}
.y14f{bottom:264.905333pt;}
.y430{bottom:265.184000pt;}
.y2e1{bottom:265.380933pt;}
.y3ca{bottom:265.987200pt;}
.y236{bottom:266.454400pt;}
.y34e{bottom:266.517333pt;}
.y31b{bottom:267.317333pt;}
.y11c{bottom:267.850667pt;}
.y33c{bottom:268.539467pt;}
.y38c{bottom:270.373333pt;}
.y1a0{bottom:270.503067pt;}
.ya1{bottom:270.517333pt;}
.y56{bottom:271.317333pt;}
.y3a5{bottom:271.572000pt;}
.y2fe{bottom:272.094667pt;}
.y247{bottom:272.111467pt;}
.y305{bottom:273.339467pt;}
.y35b{bottom:274.503067pt;}
.y1fc{bottom:274.517333pt;}
.y29a{bottom:274.575600pt;}
.y44a{bottom:276.086933pt;}
.y338{bottom:277.872800pt;}
.y266{bottom:278.410667pt;}
.y2ae{bottom:278.517333pt;}
.y3ff{bottom:279.296800pt;}
.y415{bottom:279.474933pt;}
.y1d3{bottom:279.565333pt;}
.y413{bottom:279.689733pt;}
.ydd{bottom:279.850667pt;}
.yc2{bottom:281.420267pt;}
.y33{bottom:282.238667pt;}
.y8c{bottom:282.517333pt;}
.y7a{bottom:283.572000pt;}
.y235{bottom:283.782400pt;}
.y41e{bottom:283.850667pt;}
.y100{bottom:284.086933pt;}
.y14e{bottom:284.905333pt;}
.y42f{bottom:285.184000pt;}
.y2dd{bottom:285.292400pt;}
.y3c9{bottom:285.987200pt;}
.y34d{bottom:286.517333pt;}
.y33b{bottom:287.206133pt;}
.y31a{bottom:287.317333pt;}
.y11b{bottom:287.850667pt;}
.y169{bottom:288.086933pt;}
.y3af{bottom:289.184000pt;}
.y1b8{bottom:290.238667pt;}
.y38b{bottom:290.378667pt;}
.y19f{bottom:290.503067pt;}
.ya0{bottom:290.517333pt;}
.y21b{bottom:291.285067pt;}
.y46d{bottom:291.317333pt;}
.y3a4{bottom:291.572000pt;}
.y304{bottom:292.006133pt;}
.y35a{bottom:294.503067pt;}
.y1fb{bottom:294.517333pt;}
.y242{bottom:295.091467pt;}
.y1bd{bottom:295.850667pt;}
.y449{bottom:296.086933pt;}
.y3fe{bottom:297.963467pt;}
.y414{bottom:298.141600pt;}
.y412{bottom:298.356400pt;}
.y265{bottom:298.416000pt;}
.y2ad{bottom:298.517333pt;}
.y1d2{bottom:299.565333pt;}
.ydc{bottom:299.850667pt;}
.y244{bottom:300.935467pt;}
.y234{bottom:301.110400pt;}
.y43c{bottom:301.420267pt;}
.y1f1{bottom:301.700800pt;}
.y32{bottom:302.238667pt;}
.y379{bottom:302.405333pt;}
.y8b{bottom:302.517333pt;}
.y79{bottom:303.572000pt;}
.y2dc{bottom:303.959067pt;}
.yff{bottom:304.086933pt;}
.y14d{bottom:304.905333pt;}
.y42e{bottom:305.184000pt;}
.y3c8{bottom:305.987200pt;}
.y34c{bottom:306.517333pt;}
.y33a{bottom:307.117600pt;}
.y14{bottom:307.266667pt;}
.y319{bottom:307.317333pt;}
.y11a{bottom:307.850667pt;}
.y1b7{bottom:310.238667pt;}
.y38a{bottom:310.384000pt;}
.y19e{bottom:310.503067pt;}
.y9f{bottom:310.517333pt;}
.y21a{bottom:311.290400pt;}
.y55{bottom:311.317333pt;}
.y3a3{bottom:311.572000pt;}
.y303{bottom:311.917600pt;}
.y241{bottom:312.419467pt;}
.y2f4{bottom:313.784800pt;}
.y359{bottom:314.503067pt;}
.y1fa{bottom:314.517333pt;}
.y67{bottom:315.355200pt;}
.y3fd{bottom:316.630133pt;}
.y411{bottom:316.986267pt;}
.yc1{bottom:317.420267pt;}
.y299{bottom:317.686533pt;}
.y264{bottom:318.421333pt;}
.y2ac{bottom:318.517333pt;}
.y1d1{bottom:319.565333pt;}
.ydb{bottom:319.850667pt;}
.y43b{bottom:321.420267pt;}
.y1f0{bottom:321.700800pt;}
.y31{bottom:322.238667pt;}
.y378{bottom:322.410667pt;}
.y8a{bottom:322.517333pt;}
.y448{bottom:322.753600pt;}
.y78{bottom:323.572000pt;}
.y2db{bottom:323.870533pt;}
.yfe{bottom:324.086933pt;}
.y14c{bottom:324.905333pt;}
.y441{bottom:325.184000pt;}
.y3c7{bottom:325.987200pt;}
.y34b{bottom:326.517333pt;}
.y337{bottom:327.029067pt;}
.y13{bottom:327.266667pt;}
.y318{bottom:327.317333pt;}
.y119{bottom:327.850667pt;}
.y127{bottom:329.184000pt;}
.y240{bottom:329.747467pt;}
.y243{bottom:329.759467pt;}
.y1b6{bottom:330.238667pt;}
.y389{bottom:330.389333pt;}
.y19d{bottom:330.503067pt;}
.y9e{bottom:330.517333pt;}
.y302{bottom:330.584267pt;}
.y54{bottom:331.317333pt;}
.y3a2{bottom:331.572000pt;}
.y42d{bottom:331.850667pt;}
.y2f3{bottom:332.451467pt;}
.y27a{bottom:334.408000pt;}
.y358{bottom:334.503067pt;}
.y400{bottom:335.296800pt;}
.y3fc{bottom:335.511600pt;}
.y410{bottom:335.652933pt;}
.yc0{bottom:337.420267pt;}
.y66{bottom:338.021867pt;}
.y263{bottom:338.426667pt;}
.y2ab{bottom:338.517333pt;}
.y32b{bottom:338.852000pt;}
.y219{bottom:339.289067pt;}
.y1d0{bottom:339.565333pt;}
.yda{bottom:339.850667pt;}
.y298{bottom:340.208933pt;}
.y43a{bottom:341.420267pt;}
.y1ef{bottom:341.700800pt;}
.y30{bottom:342.238667pt;}
.y377{bottom:342.416000pt;}
.y89{bottom:342.517333pt;}
.y2da{bottom:342.537200pt;}
.y2d8{bottom:343.159600pt;}
.y77{bottom:343.572000pt;}
.yfd{bottom:344.086933pt;}
.y14b{bottom:344.905333pt;}
.y440{bottom:345.184000pt;}
.y15a{bottom:346.517333pt;}
.y336{bottom:346.940533pt;}
.y12{bottom:347.266667pt;}
.y118{bottom:347.850667pt;}
.y1b5{bottom:350.238667pt;}
.y388{bottom:350.394667pt;}
.y301{bottom:350.495733pt;}
.y19c{bottom:350.503067pt;}
.y9d{bottom:350.517333pt;}
.y2f2{bottom:351.118133pt;}
.y53{bottom:351.317333pt;}
.y3a1{bottom:351.572000pt;}
.y3c6{bottom:352.653867pt;}
.y23f{bottom:352.739467pt;}
.y3fb{bottom:354.141600pt;}
.y40f{bottom:354.319600pt;}
.y279{bottom:354.413333pt;}
.y357{bottom:354.503067pt;}
.y166{bottom:354.517333pt;}
.y317{bottom:355.317333pt;}
.y23d{bottom:355.571467pt;}
.y332{bottom:356.896267pt;}
.ybf{bottom:357.420267pt;}
.y32a{bottom:357.518667pt;}
.y262{bottom:358.432000pt;}
.y2aa{bottom:358.517333pt;}
.y218{bottom:359.294400pt;}
.y13b{bottom:359.850667pt;}
.y65{bottom:360.688533pt;}
.y439{bottom:361.420267pt;}
.y1ee{bottom:361.700800pt;}
.y2f{bottom:362.238667pt;}
.y376{bottom:362.421333pt;}
.y2d9{bottom:362.448667pt;}
.y88{bottom:362.517333pt;}
.y297{bottom:363.098000pt;}
.y76{bottom:363.572000pt;}
.yfc{bottom:364.086933pt;}
.y14a{bottom:364.905333pt;}
.y43f{bottom:365.184000pt;}
.y34a{bottom:366.517333pt;}
.y335{bottom:366.852000pt;}
.y11{bottom:367.266667pt;}
.y117{bottom:367.850667pt;}
.y300{bottom:369.162400pt;}
.y2f1{bottom:369.784800pt;}
.y1b4{bottom:370.238667pt;}
.y387{bottom:370.400000pt;}
.y19b{bottom:370.503067pt;}
.y10c{bottom:370.517333pt;}
.y52{bottom:371.317333pt;}
.y3a0{bottom:371.572000pt;}
.y3fa{bottom:372.808267pt;}
.y23c{bottom:372.899467pt;}
.y40e{bottom:372.986267pt;}
.y278{bottom:374.418667pt;}
.y356{bottom:374.503067pt;}
.y167{bottom:374.517333pt;}
.y316{bottom:375.317333pt;}
.y331{bottom:375.562933pt;}
.y23e{bottom:375.731467pt;}
.y329{bottom:376.185333pt;}
.ybe{bottom:377.420267pt;}
.y2a9{bottom:378.517333pt;}
.y293{bottom:379.631333pt;}
.yd9{bottom:379.850667pt;}
.y438{bottom:381.420267pt;}
.y1ed{bottom:381.700800pt;}
.y1cf{bottom:382.065333pt;}
.y2e{bottom:382.238667pt;}
.y375{bottom:382.426667pt;}
.y87{bottom:382.517333pt;}
.y64{bottom:383.355200pt;}
.y75{bottom:383.572000pt;}
.yfb{bottom:384.086933pt;}
.y2d7{bottom:384.404400pt;}
.y149{bottom:384.905333pt;}
.y447{bottom:385.184000pt;}
.y261{bottom:386.430667pt;}
.y349{bottom:386.517333pt;}
.y334{bottom:386.763467pt;}
.y10{bottom:387.266667pt;}
.y217{bottom:387.293067pt;}
.y116{bottom:387.850667pt;}
.y2f0{bottom:388.451467pt;}
.y3c5{bottom:388.653867pt;}
.y296{bottom:388.964667pt;}
.y2fd{bottom:389.073867pt;}
.y1b3{bottom:390.238667pt;}
.y386{bottom:390.405333pt;}
.y19a{bottom:390.503067pt;}
.y9c{bottom:390.517333pt;}
.y51{bottom:391.317333pt;}
.y3f9{bottom:391.474933pt;}
.y39f{bottom:391.572000pt;}
.y40d{bottom:391.652933pt;}
.y43e{bottom:391.850667pt;}
.y40b{bottom:391.867867pt;}
.y1ce{bottom:394.021067pt;}
.y2bb{bottom:394.517333pt;}
.y315{bottom:395.317333pt;}
.ybd{bottom:397.420267pt;}
.y292{bottom:398.298000pt;}
.y2a8{bottom:398.517333pt;}
.y23b{bottom:398.711467pt;}
.yd8{bottom:399.850667pt;}
.y437{bottom:401.420267pt;}
.y1ec{bottom:401.700800pt;}
.y2d{bottom:402.238667pt;}
.y277{bottom:402.417333pt;}
.y374{bottom:402.432000pt;}
.y355{bottom:402.503067pt;}
.y99{bottom:402.517333pt;}
.y73{bottom:403.572000pt;}
.yfa{bottom:404.086933pt;}
.y148{bottom:404.905333pt;}
.y446{bottom:405.184000pt;}
.y333{bottom:405.430133pt;}
.y63{bottom:406.021867pt;}
.y2d6{bottom:406.360133pt;}
.y260{bottom:406.436000pt;}
.y348{bottom:406.517333pt;}
.yf{bottom:407.266667pt;}
.y216{bottom:407.298400pt;}
.y115{bottom:407.850667pt;}
.y3c4{bottom:408.653867pt;}
.y2fc{bottom:408.985333pt;}
.y86{bottom:409.184000pt;}
.y3f8{bottom:410.141600pt;}
.y23a{bottom:410.306533pt;}
.y40c{bottom:410.319600pt;}
.y3f6{bottom:410.356400pt;}
.y385{bottom:410.410667pt;}
.y199{bottom:410.503067pt;}
.y9b{bottom:410.517333pt;}
.y40a{bottom:410.534533pt;}
.y50{bottom:411.317333pt;}
.y39e{bottom:411.572000pt;}
.y43d{bottom:411.850667pt;}
.y295{bottom:411.853733pt;}
.y184{bottom:412.630000pt;}
.y2ba{bottom:414.517333pt;}
.y314{bottom:415.317333pt;}
.y1b2{bottom:416.905333pt;}
.ybc{bottom:417.420267pt;}
.y2e8{bottom:418.517333pt;}
.yd7{bottom:419.850667pt;}
.y436{bottom:421.420267pt;}
.y1eb{bottom:421.700800pt;}
.y2c{bottom:422.238667pt;}
.y276{bottom:422.422667pt;}
.y373{bottom:422.437333pt;}
.y98{bottom:422.517333pt;}
.y74{bottom:423.572000pt;}
.yf9{bottom:424.086933pt;}
.y147{bottom:424.905333pt;}
.y445{bottom:425.184000pt;}
.y330{bottom:425.341600pt;}
.y2d5{bottom:426.271600pt;}
.y25f{bottom:426.441333pt;}
.y2a7{bottom:426.517333pt;}
.ye{bottom:427.266667pt;}
.y114{bottom:427.850667pt;}
.y3c3{bottom:428.653867pt;}
.y62{bottom:428.688533pt;}
.y3f7{bottom:428.808267pt;}
.y2fb{bottom:428.896800pt;}
.y3f5{bottom:429.023067pt;}
.y409{bottom:429.164533pt;}
.y1cd{bottom:429.888267pt;}
.y384{bottom:430.416000pt;}
.y198{bottom:430.503067pt;}
.y9a{bottom:430.517333pt;}
.y4f{bottom:431.317333pt;}
.y39d{bottom:431.572000pt;}
.y168{bottom:434.517333pt;}
.y294{bottom:434.742800pt;}
.ybb{bottom:437.420267pt;}
.yd6{bottom:439.850667pt;}
.y435{bottom:441.420267pt;}
.y1ea{bottom:441.700800pt;}
.y2b{bottom:442.238667pt;}
.y372{bottom:442.442667pt;}
.y12b{bottom:442.517333pt;}
.y313{bottom:443.317333pt;}
.yf8{bottom:444.086933pt;}
.y233{bottom:444.690400pt;}
.y145{bottom:444.905333pt;}
.y2d4{bottom:444.938267pt;}
.y32f{bottom:445.253067pt;}
.y215{bottom:446.502400pt;}
.y2a6{bottom:446.517333pt;}
.y2d0{bottom:447.604933pt;}
.y3f4{bottom:447.652933pt;}
.y408{bottom:447.831200pt;}
.y113{bottom:447.850667pt;}
.y3f0{bottom:447.867867pt;}
.y3c2{bottom:448.653867pt;}
.y2fa{bottom:448.808267pt;}
.y97{bottom:449.184000pt;}
.y275{bottom:450.421333pt;}
.y197{bottom:450.503067pt;}
.y85{bottom:450.517333pt;}
.y4e{bottom:451.317333pt;}
.y61{bottom:451.355200pt;}
.y39b{bottom:451.572000pt;}
.y444{bottom:451.850667pt;}
.y460{bottom:452.905333pt;}
.y1cb{bottom:453.799733pt;}
.y25e{bottom:454.440000pt;}
.y2b9{bottom:454.517333pt;}
.y32c{bottom:455.208800pt;}
.yd{bottom:455.266667pt;}
.y2be{bottom:457.309867pt;}
.yba{bottom:457.420267pt;}
.y291{bottom:457.631867pt;}
.y1b1{bottom:458.238667pt;}
.yd5{bottom:459.850667pt;}
.y1e9{bottom:461.700800pt;}
.y2a{bottom:462.238667pt;}
.y371{bottom:462.448000pt;}
.y12a{bottom:462.517333pt;}
.y312{bottom:463.317333pt;}
.y4{bottom:463.875467pt;}
.yf7{bottom:464.086933pt;}
.y2d3{bottom:464.849733pt;}
.y146{bottom:464.905333pt;}
.y32e{bottom:465.164533pt;}
.y2cf{bottom:466.271600pt;}
.y3f3{bottom:466.319600pt;}
.y407{bottom:466.497867pt;}
.y214{bottom:466.507733pt;}
.y2a5{bottom:466.517333pt;}
.y3ef{bottom:466.534533pt;}
.y2f5{bottom:467.474933pt;}
.y112{bottom:467.850667pt;}
.y434{bottom:468.086933pt;}
.y3c1{bottom:468.653867pt;}
.y72{bottom:470.238667pt;}
.y274{bottom:470.426667pt;}
.y196{bottom:470.503067pt;}
.y84{bottom:470.517333pt;}
.y232{bottom:471.262667pt;}
.y4d{bottom:471.317333pt;}
.y39c{bottom:471.572000pt;}
.y28e{bottom:472.551733pt;}
.y45f{bottom:472.905333pt;}
.y60{bottom:474.021867pt;}
.y25d{bottom:474.445333pt;}
.y2b8{bottom:474.517333pt;}
.y2bd{bottom:475.976533pt;}
.yb9{bottom:477.420267pt;}
.y1cc{bottom:477.711200pt;}
.y1b0{bottom:478.238667pt;}
.y290{bottom:478.907600pt;}
.y13a{bottom:479.850667pt;}
.y29{bottom:482.238667pt;}
.y370{bottom:482.453333pt;}
.y129{bottom:482.517333pt;}
.y311{bottom:483.317333pt;}
.y2d2{bottom:483.516400pt;}
.yf6{bottom:484.086933pt;}
.y3f2{bottom:484.986267pt;}
.y32d{bottom:485.075867pt;}
.y406{bottom:485.164533pt;}
.y3ee{bottom:485.201200pt;}
.y2f9{bottom:486.141600pt;}
.y213{bottom:486.513067pt;}
.yd4{bottom:486.517333pt;}
.y111{bottom:487.850667pt;}
.y433{bottom:488.086933pt;}
.y3c0{bottom:488.653867pt;}
.y3da{bottom:489.184000pt;}
.y273{bottom:490.432000pt;}
.y195{bottom:490.503067pt;}
.y83{bottom:490.517333pt;}
.y3{bottom:490.542133pt;}
.y28d{bottom:491.218400pt;}
.y231{bottom:491.268000pt;}
.y4c{bottom:491.317333pt;}
.y5f{bottom:492.688533pt;}
.y45e{bottom:492.905333pt;}
.y174{bottom:494.517333pt;}
.yb8{bottom:497.420267pt;}
.y1af{bottom:498.238667pt;}
.y139{bottom:499.850667pt;}
.y1ca{bottom:501.622667pt;}
.y1e8{bottom:502.200800pt;}
.y28{bottom:502.238667pt;}
.y25c{bottom:502.444000pt;}
.y36f{bottom:502.458667pt;}
.y159{bottom:502.517333pt;}
.y28f{bottom:503.160800pt;}
.y310{bottom:503.317333pt;}
.y3f1{bottom:503.652933pt;}
.y405{bottom:503.831200pt;}
.y3ed{bottom:503.867867pt;}
.yf5{bottom:504.086933pt;}
.y328{bottom:504.987333pt;}
.y27f{bottom:505.309067pt;}
.y2d1{bottom:505.472133pt;}
.y2f8{bottom:506.053067pt;}
.y347{bottom:506.517333pt;}
.y212{bottom:506.518400pt;}
.y110{bottom:507.850667pt;}
.y3bf{bottom:508.653867pt;}
.y128{bottom:509.184000pt;}
.y272{bottom:510.437333pt;}
.y194{bottom:510.503067pt;}
.y82{bottom:510.517333pt;}
.y46c{bottom:511.317333pt;}
.y5e{bottom:511.355200pt;}
.y71{bottom:511.572000pt;}
.y45d{bottom:512.905333pt;}
.y2a4{bottom:514.517333pt;}
.yb7{bottom:517.420267pt;}
.y1ae{bottom:518.238667pt;}
.y138{bottom:519.850667pt;}
.y1e7{bottom:520.867467pt;}
.y1e4{bottom:521.489867pt;}
.y27{bottom:522.238667pt;}
.y25b{bottom:522.449333pt;}
.y36e{bottom:522.464000pt;}
.y3ec{bottom:522.497867pt;}
.y17a{bottom:522.517333pt;}
.y27e{bottom:523.975733pt;}
.yf4{bottom:524.086933pt;}
.y1c8{bottom:525.534133pt;}
.y2f7{bottom:525.964533pt;}
.y28c{bottom:526.049867pt;}
.y346{bottom:526.517333pt;}
.y211{bottom:526.523733pt;}
.yd3{bottom:527.850667pt;}
.y3be{bottom:528.653867pt;}
.y158{bottom:529.184000pt;}
.y2ce{bottom:529.843733pt;}
.y271{bottom:530.442667pt;}
.y193{bottom:530.503067pt;}
.y4b{bottom:530.517333pt;}
.y30f{bottom:531.317333pt;}
.y70{bottom:531.572000pt;}
.y5d{bottom:534.021867pt;}
.y230{bottom:534.461333pt;}
.y15b{bottom:534.517333pt;}
.yc{bottom:535.266667pt;}
.yb6{bottom:537.420267pt;}
.y137{bottom:539.850667pt;}
.y1e3{bottom:540.156533pt;}
.y1e6{bottom:540.778933pt;}
.y3eb{bottom:541.164533pt;}
.y26{bottom:542.238667pt;}
.y36d{bottom:542.469333pt;}
.y17d{bottom:542.517333pt;}
.y27d{bottom:542.642400pt;}
.yf3{bottom:544.086933pt;}
.y2f6{bottom:545.876000pt;}
.y28b{bottom:545.961333pt;}
.y1ad{bottom:546.238667pt;}
.y210{bottom:546.529067pt;}
.yd2{bottom:547.850667pt;}
.y3bd{bottom:548.653867pt;}
.y179{bottom:549.184000pt;}
.y1c9{bottom:549.445600pt;}
.y270{bottom:550.448000pt;}
.y192{bottom:550.503067pt;}
.y4a{bottom:550.517333pt;}
.y30e{bottom:551.317333pt;}
.y6f{bottom:551.572000pt;}
.y2cd{bottom:552.170933pt;}
.y144{bottom:552.905333pt;}
.y22f{bottom:554.466667pt;}
.y345{bottom:554.517333pt;}
.yb{bottom:555.266667pt;}
.y5c{bottom:556.688533pt;}
.yb5{bottom:557.420267pt;}
.y1e5{bottom:559.445600pt;}
.y39a{bottom:559.572000pt;}
.y3ea{bottom:559.831200pt;}
.y136{bottom:559.850667pt;}
.y404{bottom:560.046000pt;}
.y27c{bottom:561.309067pt;}
.y25{bottom:562.238667pt;}
.y36c{bottom:562.474667pt;}
.y17c{bottom:562.517333pt;}
.yf2{bottom:564.086933pt;}
.y2ef{bottom:565.787333pt;}
.y28a{bottom:565.872800pt;}
.yd1{bottom:567.850667pt;}
.y2c8{bottom:568.421733pt;}
.y3bc{bottom:568.653867pt;}
.y464{bottom:569.184000pt;}
.y25a{bottom:570.453333pt;}
.y191{bottom:570.503067pt;}
.y49{bottom:570.517333pt;}
.y2cc{bottom:570.837600pt;}
.y30d{bottom:571.317333pt;}
.y6e{bottom:571.572000pt;}
.y143{bottom:572.905333pt;}
.y1c7{bottom:573.357067pt;}
.y22e{bottom:574.472000pt;}
.y15f{bottom:574.517333pt;}
.yb4{bottom:577.420267pt;}
.y3e9{bottom:578.497867pt;}
.y3e7{bottom:578.712667pt;}
.y5b{bottom:579.355200pt;}
.y1e2{bottom:579.357067pt;}
.y399{bottom:579.572000pt;}
.y135{bottom:579.850667pt;}
.y27b{bottom:579.975733pt;}
.y24{bottom:582.238667pt;}
.y36b{bottom:582.480000pt;}
.y182{bottom:582.517333pt;}
.yf1{bottom:584.086933pt;}
.y288{bottom:585.784267pt;}
.y20f{bottom:587.033867pt;}
.y2c7{bottom:587.088400pt;}
.yd0{bottom:587.850667pt;}
.y3bb{bottom:588.653867pt;}
.y17b{bottom:589.184000pt;}
.y2cb{bottom:589.504267pt;}
.y1ac{bottom:590.238667pt;}
.y259{bottom:590.458667pt;}
.y190{bottom:590.503067pt;}
.y48{bottom:590.517333pt;}
.y2ee{bottom:591.317333pt;}
.y183{bottom:592.630000pt;}
.y142{bottom:592.905333pt;}
.y22d{bottom:594.477333pt;}
.y161{bottom:594.517333pt;}
.ya{bottom:595.266667pt;}
.y20c{bottom:597.092267pt;}
.y3e8{bottom:597.164533pt;}
.y403{bottom:597.342667pt;}
.y3e6{bottom:597.379333pt;}
.yb3{bottom:597.420267pt;}
.y6d{bottom:599.572000pt;}
.y134{bottom:599.850667pt;}
.y1c6{bottom:600.887067pt;}
.y5a{bottom:602.021867pt;}
.y23{bottom:602.238667pt;}
.y36a{bottom:602.485333pt;}
.y181{bottom:602.517333pt;}
.yf0{bottom:604.086933pt;}
.y1e1{bottom:604.887067pt;}
.y289{bottom:605.695733pt;}
.y20e{bottom:605.700533pt;}
.ycf{bottom:607.850667pt;}
.y3ba{bottom:608.653867pt;}
.y2ca{bottom:609.415733pt;}
.y258{bottom:610.464000pt;}
.y18f{bottom:610.503067pt;}
.y47{bottom:610.517333pt;}
.y2ed{bottom:611.317333pt;}
.y1ab{bottom:611.572000pt;}
.y327{bottom:614.517333pt;}
.y9{bottom:615.266667pt;}
.y20b{bottom:615.758933pt;}
.y3e5{bottom:616.009333pt;}
.yb2{bottom:617.420267pt;}
.y398{bottom:619.572000pt;}
.y133{bottom:619.850667pt;}
.y1c5{bottom:620.887067pt;}
.y141{bottom:620.905333pt;}
.y22{bottom:622.238667pt;}
.y22c{bottom:622.476000pt;}
.y369{bottom:622.490667pt;}
.y180{bottom:622.517333pt;}
.yef{bottom:624.086933pt;}
.y1e0{bottom:624.887067pt;}
.y20d{bottom:625.607200pt;}
.yce{bottom:627.850667pt;}
.y2c9{bottom:628.082400pt;}
.y3b9{bottom:628.653867pt;}
.y59{bottom:628.688533pt;}
.y257{bottom:630.469333pt;}
.y18e{bottom:630.503067pt;}
.y46{bottom:630.517333pt;}
.y46b{bottom:631.317333pt;}
.y10f{bottom:634.517333pt;}
.y3e4{bottom:634.676000pt;}
.y8{bottom:635.266667pt;}
.yb1{bottom:637.420267pt;}
.y132{bottom:639.850667pt;}
.y21{bottom:642.238667pt;}
.y22b{bottom:642.481333pt;}
.y368{bottom:642.496000pt;}
.y326{bottom:642.517333pt;}
.y6c{bottom:643.572000pt;}
.yee{bottom:644.086933pt;}
.y287{bottom:645.518667pt;}
.y20a{bottom:645.547333pt;}
.y202{bottom:647.387333pt;}
.y397{bottom:647.572000pt;}
.ycd{bottom:647.850667pt;}
.y2c6{bottom:647.993867pt;}
.y3b8{bottom:648.653867pt;}
.y17f{bottom:649.184000pt;}
.y256{bottom:650.474667pt;}
.y18d{bottom:650.503067pt;}
.y45{bottom:650.517333pt;}
.y46a{bottom:651.317333pt;}
.y3e3{bottom:653.342667pt;}
.y160{bottom:654.517333pt;}
.y209{bottom:655.494000pt;}
.y1aa{bottom:656.905333pt;}
.yb0{bottom:657.420267pt;}
.y131{bottom:659.850667pt;}
.y20{bottom:662.238667pt;}
.y367{bottom:662.501333pt;}
.y325{bottom:662.517333pt;}
.yed{bottom:664.086933pt;}
.y6b{bottom:664.905333pt;}
.y286{bottom:665.430133pt;}
.y201{bottom:666.054000pt;}
.y178{bottom:667.850667pt;}
.y2c5{bottom:667.905333pt;}
.y1df{bottom:668.086933pt;}
.y3b7{bottom:668.653867pt;}
.y22a{bottom:670.480000pt;}
.y18c{bottom:670.503067pt;}
.y44{bottom:670.517333pt;}
.y469{bottom:671.317333pt;}
.y58{bottom:671.355200pt;}
.y3e2{bottom:672.009333pt;}
.ycc{bottom:674.517333pt;}
.y7{bottom:675.266667pt;}
.yaf{bottom:677.420267pt;}
.y130{bottom:679.850667pt;}
.y1f{bottom:682.238667pt;}
.y366{bottom:682.506667pt;}
.y3d9{bottom:682.517333pt;}
.y1a9{bottom:683.572000pt;}
.yec{bottom:684.086933pt;}
.y200{bottom:684.720667pt;}
.y285{bottom:685.341600pt;}
.y208{bottom:685.360667pt;}
.y281{bottom:685.964000pt;}
.y2c0{bottom:687.194400pt;}
.y2c4{bottom:687.816800pt;}
.y177{bottom:687.850667pt;}
.y1de{bottom:688.086933pt;}
.y3b6{bottom:688.654000pt;}
.y229{bottom:690.485333pt;}
.y18b{bottom:690.503067pt;}
.y43{bottom:690.517333pt;}
.y3e1{bottom:690.676000pt;}
.y3df{bottom:690.890800pt;}
.y468{bottom:691.317333pt;}
.y396{bottom:691.572000pt;}
.y2ec{bottom:694.517333pt;}
.yae{bottom:697.420267pt;}
.y12f{bottom:699.850667pt;}
.y1e{bottom:702.238667pt;}
.y3d8{bottom:702.517333pt;}
.yeb{bottom:704.086933pt;}
.y280{bottom:704.630667pt;}
.y284{bottom:705.253067pt;}
.y207{bottom:705.267333pt;}
.y2bf{bottom:705.861067pt;}
.y204{bottom:705.880667pt;}
.y2c3{bottom:706.483467pt;}
.y176{bottom:707.850667pt;}
.y3b5{bottom:708.654000pt;}
.y365{bottom:709.170667pt;}
.y3e0{bottom:709.342667pt;}
.y3de{bottom:709.557467pt;}
.y6a{bottom:710.238667pt;}
.y228{bottom:710.490667pt;}
.y18a{bottom:710.503067pt;}
.y42{bottom:710.517333pt;}
.y467{bottom:711.317333pt;}
.y2eb{bottom:714.517333pt;}
.y6{bottom:715.266667pt;}
.y1dd{bottom:716.086933pt;}
.yad{bottom:717.420267pt;}
.y12e{bottom:719.850667pt;}
.y1d{bottom:722.238667pt;}
.y477{bottom:722.517333pt;}
.yea{bottom:724.086933pt;}
.y203{bottom:724.547333pt;}
.y283{bottom:725.164533pt;}
.y206{bottom:725.174000pt;}
.y2c2{bottom:726.394933pt;}
.y1bc{bottom:727.850667pt;}
.y3dd{bottom:728.187467pt;}
.y3b4{bottom:728.654000pt;}
.y3d7{bottom:729.184000pt;}
.y227{bottom:730.496000pt;}
.y189{bottom:730.503067pt;}
.y41{bottom:730.517333pt;}
.y466{bottom:731.317333pt;}
.y175{bottom:734.517333pt;}
.y1dc{bottom:736.086933pt;}
.y69{bottom:736.905333pt;}
.yac{bottom:737.420267pt;}
.y1c{bottom:742.238667pt;}
.y2ea{bottom:742.517333pt;}
.ye9{bottom:744.086933pt;}
.y2c1{bottom:745.061600pt;}
.y282{bottom:745.075867pt;}
.y205{bottom:745.080667pt;}
.y12d{bottom:746.517333pt;}
.y3dc{bottom:746.854133pt;}
.y476{bottom:749.184000pt;}
.y226{bottom:750.501333pt;}
.y188{bottom:750.503067pt;}
.y40{bottom:750.517333pt;}
.y465{bottom:751.317333pt;}
.y1bb{bottom:754.517333pt;}
.y2{bottom:757.208800pt;}
.yab{bottom:757.420267pt;}
.y1b{bottom:762.238667pt;}
.y2e9{bottom:762.517333pt;}
.ye8{bottom:764.086933pt;}
.y2bc{bottom:764.973067pt;}
.y1ff{bottom:764.987333pt;}
.y3db{bottom:765.520800pt;}
.y3b3{bottom:768.654000pt;}
.y187{bottom:770.503067pt;}
.y225{bottom:770.506667pt;}
.y3f{bottom:770.517333pt;}
.yaa{bottom:784.086933pt;}
.y3b2{bottom:788.654000pt;}
.y186{bottom:790.503067pt;}
.y1fe{bottom:790.512000pt;}
.y3e{bottom:790.517333pt;}
.y432{bottom:790.753600pt;}
.y1{bottom:797.208800pt;}
.y68{bottom:798.238667pt;}
.y1a{bottom:806.238667pt;}
.y3b1{bottom:808.654000pt;}
.y185{bottom:810.503067pt;}
.y3d{bottom:810.517333pt;}
.ya9{bottom:810.753600pt;}
.y3c{bottom:843.652667pt;}
.h8{height:36.583333pt;}
.h17{height:41.156250pt;}
.h16{height:42.000000pt;}
.h15{height:44.479167pt;}
.hb{height:45.729167pt;}
.hd{height:46.432292pt;}
.hc{height:46.666667pt;}
.h9{height:49.299479pt;}
.h6{height:50.302083pt;}
.h10{height:51.075521pt;}
.h1b{height:51.185700pt;}
.h7{height:51.333333pt;}
.h1e{height:53.906233pt;}
.h1d{height:55.392100pt;}
.h1c{height:56.172900pt;}
.h1a{height:57.639567pt;}
.he{height:60.361979pt;}
.h5{height:64.020833pt;}
.h19{height:64.532250pt;}
.h4{height:73.166667pt;}
.ha{height:74.666667pt;}
.h13{height:83.062500pt;}
.h14{height:85.569167pt;}
.h18{height:86.743983pt;}
.h12{height:93.552100pt;}
.h1f{height:120.395833pt;}
.h3{height:121.333333pt;}
.h11{height:210.302083pt;}
.hf{height:257.499566pt;}
.h2{height:907.086667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:604.666667pt;}
.w2{width:604.724000pt;}
.w1{width:608.000000pt;}
.w0{width:608.320000pt;}
.w5{width:608.666667pt;}
.w4{width:608.960000pt;}
.x0{left:0.000000pt;}
.x6{left:62.400000pt;}
.x43{left:64.541733pt;}
.x40{left:68.233333pt;}
.x74{left:73.101333pt;}
.x1c{left:74.087200pt;}
.x93{left:75.260267pt;}
.xa{left:76.800000pt;}
.x3e{left:77.726667pt;}
.x5d{left:79.038800pt;}
.x5c{left:81.131867pt;}
.x3a{left:82.633333pt;}
.x49{left:84.414800pt;}
.x38{left:86.045867pt;}
.x68{left:87.189867pt;}
.x5b{left:89.035600pt;}
.x5a{left:90.884533pt;}
.x85{left:92.524400pt;}
.xb{left:94.400000pt;}
.x8b{left:95.473600pt;}
.x29{left:96.812267pt;}
.x7d{left:98.198933pt;}
.x33{left:102.462133pt;}
.x7e{left:104.370000pt;}
.x28{left:105.869467pt;}
.x9{left:108.800000pt;}
.x1{left:111.142933pt;}
.x2f{left:116.131733pt;}
.x31{left:117.771200pt;}
.x13{left:120.963200pt;}
.x35{left:125.746533pt;}
.x1f{left:127.734133pt;}
.x52{left:130.433600pt;}
.x91{left:132.780933pt;}
.x21{left:139.669333pt;}
.x30{left:141.185467pt;}
.x57{left:144.909600pt;}
.x44{left:145.891067pt;}
.x55{left:150.525733pt;}
.x3f{left:154.506667pt;}
.x10{left:162.133333pt;}
.x2{left:166.536800pt;}
.x3b{left:169.166667pt;}
.x4d{left:171.588267pt;}
.x47{left:174.891067pt;}
.x7f{left:176.725333pt;}
.x4a{left:178.366667pt;}
.x2b{left:180.484133pt;}
.x18{left:182.317467pt;}
.x71{left:184.597467pt;}
.x16{left:186.036800pt;}
.x14{left:187.577867pt;}
.x78{left:189.411867pt;}
.x19{left:192.103600pt;}
.x76{left:193.292133pt;}
.x69{left:194.610533pt;}
.x1d{left:197.591733pt;}
.x15{left:198.584000pt;}
.x6a{left:199.584400pt;}
.x80{left:201.347733pt;}
.x1a{left:202.405333pt;}
.x5e{left:205.336400pt;}
.x2d{left:206.394800pt;}
.x75{left:209.965333pt;}
.x92{left:212.614000pt;}
.x51{left:213.623733pt;}
.x23{left:215.603867pt;}
.x1b{left:216.889333pt;}
.x24{left:217.899067pt;}
.x32{left:220.967733pt;}
.x4e{left:227.207733pt;}
.x17{left:229.020933pt;}
.x20{left:230.036133pt;}
.xf{left:232.906000pt;}
.x59{left:234.508267pt;}
.x27{left:237.013867pt;}
.x25{left:238.050000pt;}
.x4c{left:239.993867pt;}
.x2a{left:241.369467pt;}
.x1e{left:243.353200pt;}
.x50{left:244.446667pt;}
.x22{left:246.401733pt;}
.x4f{left:247.350667pt;}
.x12{left:249.692667pt;}
.x45{left:257.333333pt;}
.x4{left:262.640400pt;}
.x39{left:265.771200pt;}
.x8{left:268.051733pt;}
.x56{left:270.639733pt;}
.x41{left:272.057733pt;}
.x5{left:277.987333pt;}
.x3{left:280.124667pt;}
.x3c{left:284.566667pt;}
.x4b{left:286.366667pt;}
.x34{left:287.995467pt;}
.x36{left:299.746533pt;}
.x54{left:301.600000pt;}
.xe{left:303.896933pt;}
.x11{left:306.933333pt;}
.x7{left:307.824000pt;}
.x6d{left:309.207467pt;}
.x60{left:310.512800pt;}
.x77{left:311.909333pt;}
.x86{left:314.081467pt;}
.x6b{left:315.057067pt;}
.x61{left:316.248533pt;}
.x8f{left:318.231867pt;}
.x5f{left:320.236133pt;}
.x81{left:321.851600pt;}
.x82{left:329.276800pt;}
.x87{left:333.039867pt;}
.x88{left:335.074267pt;}
.x72{left:336.915867pt;}
.x6c{left:338.035600pt;}
.x58{left:339.633333pt;}
.x6e{left:341.603333pt;}
.x8c{left:344.459067pt;}
.x2c{left:359.005467pt;}
.x53{left:363.763600pt;}
.xd{left:399.598267pt;}
.x2e{left:419.734533pt;}
.x89{left:421.996400pt;}
.x83{left:422.917600pt;}
.x8d{left:424.789333pt;}
.x6f{left:427.324400pt;}
.x7a{left:428.883067pt;}
.x70{left:429.817200pt;}
.x73{left:431.656400pt;}
.x79{left:433.502133pt;}
.x7b{left:435.360933pt;}
.x65{left:437.209867pt;}
.x8a{left:439.584267pt;}
.x66{left:442.222800pt;}
.x63{left:443.687733pt;}
.x64{left:445.367333pt;}
.x67{left:447.213067pt;}
.x62{left:448.502133pt;}
.x90{left:451.250933pt;}
.x7c{left:455.357600pt;}
.x84{left:458.285467pt;}
.x8e{left:463.842000pt;}
.x37{left:470.711200pt;}
.xc{left:487.447867pt;}
.x26{left:501.913200pt;}
.x48{left:509.000000pt;}
.x46{left:511.057733pt;}
.x42{left:514.061733pt;}
.x3d{left:523.166667pt;}
}




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