
    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_e24fe85763937bf383f8f65e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d3187ce71b477e24d42355ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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_b5ab417de67e92c9bb9113f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_8393f89b18624c26af4ed280.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.950000;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_aa93356dea9e25ea0ba5ab5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.950000;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_80482f494c62438cff8fb72b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_4fb7b59f9536f18b770fc247.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.992188;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_09b5b9d2e27a5f7487ebf4ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_b0077d13a9dc084cf1d9474b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_7359df11490e9c9c672a7961.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_b7e8734e8a9bd8f736ba6c29.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b0077d13a9dc084cf1d9474b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b0077d13a9dc084cf1d9474b.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_af4180a7ab6c881b6760e69a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_84f398c4c071591f8bbd0702.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b0077d13a9dc084cf1d9474b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_b0077d13a9dc084cf1d9474b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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:ff14;src:url('chunks/assets/font_8393f89b18624c26af4ed280.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.950000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-51.020400px;}
.v3{vertical-align:-46.221600px;}
.v4{vertical-align:-19.800000px;}
.v2{vertical-align:-16.200000px;}
.v6{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.182400px;}
.ls9{letter-spacing:0.192000px;}
.lsd{letter-spacing:0.204000px;}
.lse{letter-spacing:0.205200px;}
.lsb{letter-spacing:0.216000px;}
.ls10{letter-spacing:0.228600px;}
.ls12{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.264000px;}
.ls11{letter-spacing:0.265800px;}
.ls7{letter-spacing:0.301200px;}
.lsc{letter-spacing:0.301800px;}
.ls3{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.528000px;}
.lsf{letter-spacing:3.294000px;}
.ls13{letter-spacing:144.156000px;}
.ls14{letter-spacing:144.156600px;}
.ls15{letter-spacing:986.043000px;}
.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;}
}
.ws42{word-spacing:-22.248000px;}
.ws6{word-spacing:-18.744000px;}
.ws19{word-spacing:-18.348000px;}
.ws1{word-spacing:-17.040000px;}
.ws2{word-spacing:-16.968000px;}
.ws43{word-spacing:-16.680000px;}
.wse{word-spacing:-14.678400px;}
.ws44{word-spacing:-13.356000px;}
.wsb{word-spacing:-12.276000px;}
.ws30{word-spacing:-11.664000px;}
.ws3{word-spacing:-11.448000px;}
.ws9{word-spacing:-11.124000px;}
.ws10{word-spacing:-10.908000px;}
.ws1e{word-spacing:-10.812000px;}
.ws7{word-spacing:-10.506000px;}
.ws8{word-spacing:-10.368000px;}
.ws17{word-spacing:-10.302000px;}
.wsa{word-spacing:-10.044000px;}
.ws2f{word-spacing:-9.888000px;}
.wsf{word-spacing:-9.158400px;}
.ws0{word-spacing:0.000000px;}
.ws3b{word-spacing:4.460400px;}
.ws41{word-spacing:4.467000px;}
.ws1b{word-spacing:7.461600px;}
.ws1c{word-spacing:7.463400px;}
.ws21{word-spacing:12.664800px;}
.ws2c{word-spacing:19.461600px;}
.ws3f{word-spacing:19.486200px;}
.ws15{word-spacing:20.560800px;}
.ws40{word-spacing:21.654000px;}
.ws20{word-spacing:22.326000px;}
.ws35{word-spacing:28.104000px;}
.ws39{word-spacing:28.143600px;}
.ws36{word-spacing:28.155000px;}
.ws3e{word-spacing:32.973000px;}
.ws3d{word-spacing:32.976000px;}
.ws2d{word-spacing:34.269000px;}
.ws25{word-spacing:37.648200px;}
.ws1a{word-spacing:37.649400px;}
.ws38{word-spacing:47.970000px;}
.ws37{word-spacing:47.986800px;}
.ws14{word-spacing:48.522000px;}
.ws13{word-spacing:48.525600px;}
.ws12{word-spacing:48.526200px;}
.ws11{word-spacing:48.527400px;}
.ws2b{word-spacing:49.649400px;}
.ws16{word-spacing:50.752200px;}
.ws1d{word-spacing:54.132000px;}
.ws3a{word-spacing:58.766400px;}
.ws32{word-spacing:58.777800px;}
.ws2a{word-spacing:66.132000px;}
.ws1f{word-spacing:67.835400px;}
.ws24{word-spacing:67.836000px;}
.wsc{word-spacing:69.463200px;}
.ws31{word-spacing:74.376600px;}
.ws33{word-spacing:74.388000px;}
.ws29{word-spacing:91.242000px;}
.ws4{word-spacing:92.399400px;}
.ws18{word-spacing:92.652000px;}
.ws5{word-spacing:96.715200px;}
.ws34{word-spacing:100.715400px;}
.ws3c{word-spacing:100.766400px;}
.wsd{word-spacing:101.241600px;}
.ws26{word-spacing:127.188000px;}
.ws2e{word-spacing:127.734000px;}
.ws28{word-spacing:164.999400px;}
.ws27{word-spacing:173.642400px;}
.ws23{word-spacing:405.468600px;}
.ws22{word-spacing:575.746800px;}
._12b{margin-left:-1281.435000px;}
._100{margin-left:-1166.254200px;}
._12d{margin-left:-896.776200px;}
._85{margin-left:-656.360580px;}
._1{margin-left:-44.794653px;}
._2{margin-left:-15.592185px;}
._3{margin-left:-12.622245px;}
._86{margin-left:-8.924580px;}
._0{margin-left:-7.424850px;}
._15{margin-left:-6.072000px;}
._6{margin-left:-5.032422px;}
._8{margin-left:-3.308580px;}
._a{margin-left:-2.268000px;}
._5{margin-left:-1.227420px;}
._4{width:1.227420px;}
._b{width:2.256000px;}
._7{width:3.360000px;}
._9{width:5.280000px;}
._160{width:7.421580px;}
._5d{width:9.044580px;}
._ea{width:12.429420px;}
._98{width:14.420178px;}
._87{width:16.024800px;}
._154{width:18.741720px;}
._a9{width:20.566200px;}
._d8{width:23.352000px;}
._1d{width:25.632000px;}
._62{width:26.786622px;}
._9f{width:28.092378px;}
._5c{width:30.068580px;}
._c7{width:31.401558px;}
._f4{width:34.187580px;}
._14e{width:35.243532px;}
._120{width:36.524022px;}
._1e{width:38.016000px;}
._25{width:39.373920px;}
._7d{width:41.514000px;}
._150{width:43.009290px;}
._163{width:44.157042px;}
._b0{width:45.164160px;}
._b1{width:46.391580px;}
._8c{width:47.844600px;}
._1c{width:49.268580px;}
._89{width:50.494800px;}
._156{width:51.524580px;}
._28{width:52.550160px;}
._27{width:53.777580px;}
._bf{width:55.520580px;}
._70{width:56.547714px;}
._91{width:58.195578px;}
._8a{width:59.977200px;}
._96{width:61.885602px;}
._5b{width:63.325980px;}
._c5{width:65.256000px;}
._24{width:66.934200px;}
._bb{width:68.090340px;}
._65{width:69.432000px;}
._8b{width:71.425200px;}
._95{width:72.580398px;}
._63{width:74.610780px;}
._18{width:76.164000px;}
._61{width:77.810622px;}
._30{width:78.917160px;}
._2c{width:80.155980px;}
._23{width:82.484982px;}
._66{width:83.695398px;}
._51{width:84.911400px;}
._a3{width:86.126178px;}
._26{width:87.636780px;}
._14d{width:88.690782px;}
._97{width:89.733618px;}
._29{width:91.501380px;}
._99{width:92.830476px;}
._103{width:94.437180px;}
._2d{width:96.074820px;}
._64{width:97.315200px;}
._c2{width:98.344140px;}
._8e{width:99.440400px;}
._53{width:100.715220px;}
._104{width:102.129000px;}
._94{width:103.193400px;}
._16{width:104.676000px;}
._13{width:105.930000px;}
._106{width:107.069460px;}
._38{width:109.101918px;}
._1b{width:110.278200px;}
._50{width:111.471420px;}
._19{width:112.490400px;}
._1a{width:114.594000px;}
._c6{width:115.884096px;}
._36{width:116.974380px;}
._b4{width:118.337640px;}
._46{width:119.496360px;}
._4f{width:120.740160px;}
._31{width:122.730780px;}
._11{width:124.278000px;}
._d{width:125.664000px;}
._44{width:127.070100px;}
._119{width:129.001980px;}
._21{width:131.964000px;}
._dc{width:133.808400px;}
._ae{width:135.350442px;}
._60{width:136.413600px;}
._6e{width:137.455218px;}
._a0{width:139.487958px;}
._22{width:141.578400px;}
._f{width:142.626000px;}
._4a{width:143.631000px;}
._2e{width:145.369560px;}
._4b{width:146.710800px;}
._2a{width:148.413660px;}
._2f{width:150.145800px;}
._47{width:152.581800px;}
._161{width:155.077980px;}
._6f{width:156.584400px;}
._11b{width:157.596060px;}
._12a{width:158.855622px;}
._c9{width:159.861600px;}
._ac{width:161.706000px;}
._74{width:162.932400px;}
._ce{width:164.168400px;}
._cd{width:166.377180px;}
._122{width:167.568240px;}
._41{width:168.722400px;}
._59{width:170.009400px;}
._c{width:171.534000px;}
._55{width:172.657740px;}
._162{width:174.127980px;}
._33{width:176.460000px;}
._3d{width:178.118400px;}
._32{width:179.998980px;}
._121{width:183.138000px;}
._37{width:184.195380px;}
._5a{width:186.333600px;}
._bd{width:189.078600px;}
._4c{width:190.537200px;}
._8f{width:195.937578px;}
._14{width:197.670000px;}
._6b{width:205.550400px;}
._80{width:208.897902px;}
._90{width:210.346536px;}
._a7{width:213.952146px;}
._58{width:217.899180px;}
._125{width:220.279560px;}
._71{width:221.629800px;}
._9b{width:223.868178px;}
._52{width:228.770400px;}
._7c{width:230.149800px;}
._69{width:233.780400px;}
._6a{width:235.142400px;}
._54{width:236.216400px;}
._7e{width:238.033800px;}
._76{width:241.016400px;}
._35{width:243.598980px;}
._39{width:244.724400px;}
._57{width:246.439800px;}
._6c{width:248.440980px;}
._b6{width:250.965180px;}
._42{width:252.771000px;}
._45{width:255.109800px;}
._34{width:256.199400px;}
._83{width:257.228400px;}
._56{width:259.084380px;}
._43{width:260.217000px;}
._b8{width:261.737580px;}
._3f{width:263.033400px;}
._af{width:266.075760px;}
._6d{width:268.474980px;}
._40{width:270.184800px;}
._77{width:274.940400px;}
._9c{width:277.157778px;}
._72{width:278.978400px;}
._78{width:280.570980px;}
._a6{width:281.913558px;}
._2b{width:288.012000px;}
._79{width:289.790400px;}
._f3{width:291.898980px;}
._4e{width:292.923600px;}
._67{width:295.394400px;}
._7b{width:297.944400px;}
._3b{width:299.012400px;}
._7a{width:300.536400px;}
._b9{width:303.226560px;}
._48{width:304.313400px;}
._118{width:314.278980px;}
._68{width:316.130400px;}
._49{width:318.270600px;}
._3e{width:320.765400px;}
._82{width:323.686980px;}
._da{width:325.719780px;}
._75{width:330.074400px;}
._73{width:333.140400px;}
._4d{width:334.720800px;}
._81{width:338.066400px;}
._7f{width:342.734400px;}
._a8{width:347.482800px;}
._3c{width:350.039400px;}
._88{width:352.204200px;}
._c0{width:355.983360px;}
._9a{width:357.591222px;}
._92{width:360.088200px;}
._10b{width:361.234980px;}
._8d{width:366.170400px;}
._14c{width:367.393560px;}
._93{width:373.718820px;}
._aa{width:378.189576px;}
._3a{width:379.721400px;}
._9d{width:389.518800px;}
._a1{width:392.596200px;}
._b3{width:397.494180px;}
._d0{width:401.181300px;}
._14b{width:403.720980px;}
._127{width:409.725180px;}
._102{width:414.065700px;}
._15f{width:418.608000px;}
._e9{width:427.448382px;}
._9e{width:431.672820px;}
._ee{width:440.048400px;}
._112{width:441.997380px;}
._ca{width:445.175760px;}
._12{width:448.090380px;}
._f1{width:453.710400px;}
._117{width:455.248980px;}
._110{width:458.444022px;}
._113{width:464.048400px;}
._d9{width:466.689780px;}
._e1{width:470.835180px;}
._15b{width:472.236822px;}
._a2{width:473.829000px;}
._d2{width:475.489200px;}
._116{width:477.710400px;}
._ef{width:483.302400px;}
._a4{width:486.622800px;}
._d7{width:489.151200px;}
._115{width:495.692400px;}
._ed{width:498.856980px;}
._a5{width:500.575800px;}
._fe{width:504.308400px;}
._ad{width:506.725980px;}
._5e{width:507.892200px;}
._b5{width:510.581580px;}
._fd{width:512.162400px;}
._14f{width:514.174380px;}
._f0{width:516.634980px;}
._d3{width:518.743200px;}
._bc{width:519.914580px;}
._126{width:521.144580px;}
._10a{width:523.046400px;}
._11f{width:528.308400px;}
._e0{width:530.274600px;}
._1f{width:531.490200px;}
._d1{width:534.297780px;}
._df{width:538.159200px;}
._e7{width:539.749200px;}
._108{width:541.028400px;}
._f7{width:542.054400px;}
._d6{width:546.595200px;}
._f2{width:549.206400px;}
._84{width:550.588800px;}
._d5{width:551.967780px;}
._c3{width:556.936200px;}
._11e{width:558.170400px;}
._11d{width:566.054400px;}
._105{width:568.192980px;}
._e6{width:569.475780px;}
._e2{width:570.717780px;}
._f8{width:572.278980px;}
._fc{width:573.371580px;}
._159{width:576.046800px;}
._109{width:580.490400px;}
._b2{width:581.741622px;}
._e5{width:585.703200px;}
._fb{width:589.598400px;}
._dd{width:591.868800px;}
._11c{width:594.728400px;}
._f5{width:595.764600px;}
._c1{width:596.974980px;}
._cc{width:598.691520px;}
._123{width:601.128600px;}
._cf{width:603.294000px;}
._b7{width:607.747980px;}
._e8{width:609.153780px;}
._be{width:610.252422px;}
._ff{width:613.048980px;}
._114{width:616.220400px;}
._db{width:617.746800px;}
._15a{width:619.531380px;}
._e4{width:621.667200px;}
._ba{width:623.718222px;}
._fa{width:625.562400px;}
._d4{width:627.661200px;}
._eb{width:629.129400px;}
._c8{width:633.667800px;}
._de{width:635.787780px;}
._10e{width:636.878400px;}
._f6{width:639.683580px;}
._10c{width:641.087580px;}
._10f{width:643.048980px;}
._129{width:651.996600px;}
._15e{width:655.904580px;}
._cb{width:657.528600px;}
._111{width:659.092800px;}
._107{width:661.840980px;}
._11a{width:663.683580px;}
._10d{width:669.683580px;}
._153{width:670.936800px;}
._c4{width:674.038200px;}
._152{width:678.970800px;}
._e3{width:682.077780px;}
._151{width:683.236800px;}
._158{width:684.964800px;}
._f9{width:685.973580px;}
._128{width:688.464000px;}
._155{width:694.102800px;}
._ab{width:708.432600px;}
._124{width:710.046600px;}
._ec{width:712.494600px;}
._12e{width:720.725400px;}
._145{width:737.422140px;}
._15d{width:755.216580px;}
._5f{width:760.727400px;}
._20{width:788.798400px;}
._13c{width:790.022580px;}
._13b{width:791.642580px;}
._14a{width:875.241822px;}
._146{width:926.272782px;}
._13a{width:930.992580px;}
._144{width:933.511560px;}
._139{width:938.776920px;}
._131{width:939.792000px;}
._137{width:953.454000px;}
._12c{width:956.069400px;}
._13d{width:968.964720px;}
._134{width:971.436000px;}
._12f{width:973.752600px;}
._15c{width:977.693160px;}
._132{width:983.046000px;}
._140{width:989.040000px;}
._147{width:990.586980px;}
._130{width:998.600580px;}
._138{width:1009.614000px;}
._136{width:1010.898000px;}
._13e{width:1014.918000px;}
._135{width:1016.378580px;}
._143{width:1020.448980px;}
._142{width:1028.332980px;}
._148{width:1053.320400px;}
._149{width:1059.490980px;}
._141{width:1070.472000px;}
._13f{width:1071.876000px;}
._133{width:1091.964000px;}
._101{width:1390.276200px;}
._164{width:1767.166620px;}
._17{width:1870.836000px;}
._10{width:1907.038380px;}
._e{width:1910.670000px;}
._157{width:2350.082760px;}
.fc1{color:rgb(92,47,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsf{font-size:43.200000px;}
.fse{font-size:48.000000px;}
.fs10{font-size:51.000000px;}
.fsd{font-size:52.800000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:84.000000px;}
.fs7{font-size:89.022000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:108.000000px;}
.fs6{font-size:122.742000px;}
.fs9{font-size:132.000000px;}
.fs5{font-size:148.497000px;}
.y0{bottom:0.000000px;}
.y156{bottom:6.923550px;}
.y28d{bottom:7.636500px;}
.y2eb{bottom:7.636950px;}
.y7f{bottom:8.242800px;}
.y7e{bottom:24.442500px;}
.y154{bottom:30.088650px;}
.y2ea{bottom:33.689250px;}
.y7b{bottom:45.087900px;}
.y155{bottom:46.288350px;}
.y28c{bottom:46.443900px;}
.y2e7{bottom:46.444350px;}
.y153{bottom:57.843750px;}
.y15e{bottom:60.843750px;}
.y7a{bottom:61.287600px;}
.y79{bottom:72.204300px;}
.y74{bottom:73.443750px;}
.y2ef{bottom:91.950000px;}
.yf2{bottom:92.362500px;}
.y157{bottom:93.136050px;}
.y15f{bottom:93.136200px;}
.y4{bottom:97.125005px;}
.y28b{bottom:102.544500px;}
.y2e6{bottom:102.544950px;}
.y39e{bottom:103.500750px;}
.y2ee{bottom:106.350000px;}
.yf1{bottom:106.762500px;}
.y31d{bottom:106.787550px;}
.y42c{bottom:114.093000px;}
.y15d{bottom:116.343750px;}
.y39d{bottom:119.700750px;}
.yf0{bottom:121.162500px;}
.y31c{bottom:121.187550px;}
.y2e2{bottom:126.750000px;}
.y2ec{bottom:127.284600px;}
.y78{bottom:128.305050px;}
.y73{bottom:129.544350px;}
.y160{bottom:131.508600px;}
.y152{bottom:132.843750px;}
.y42b{bottom:132.993000px;}
.yef{bottom:135.562500px;}
.y31b{bottom:135.587550px;}
.y39c{bottom:135.900750px;}
.y28e{bottom:138.860100px;}
.y1f{bottom:139.264499px;}
.y258{bottom:140.775000px;}
.y1b3{bottom:143.997000px;}
.y8e{bottom:144.000750px;}
.y18a{bottom:144.000900px;}
.yb7{bottom:145.425000px;}
.y19a{bottom:149.475000px;}
.yee{bottom:149.962500px;}
.y1b2{bottom:149.998500px;}
.y1b1{bottom:149.998650px;}
.y1b0{bottom:149.998800px;}
.y1af{bottom:149.998950px;}
.y1ae{bottom:149.999100px;}
.y1ad{bottom:149.999250px;}
.y19b{bottom:149.999400px;}
.y42a{bottom:151.893000px;}
.y39b{bottom:152.100750px;}
.y257{bottom:155.175000px;}
.y31a{bottom:156.362550px;}
.y28a{bottom:158.644350px;}
.y2e5{bottom:158.644800px;}
.y80{bottom:159.791850px;}
.y197{bottom:160.200750px;}
.y189{bottom:160.200900px;}
.y14d{bottom:161.438550px;}
.yb6{bottom:161.625000px;}
.y4a{bottom:163.673700px;}
.y8d{bottom:164.250750px;}
.yed{bottom:164.362500px;}
.y1e6{bottom:165.675000px;}
.y411{bottom:165.750000px;}
.y39a{bottom:168.300750px;}
.y429{bottom:170.793000px;}
.y15c{bottom:171.844500px;}
.y319{bottom:175.487550px;}
.y256{bottom:175.950000px;}
.y284{bottom:176.100000px;}
.y8c{bottom:176.400750px;}
.y188{bottom:176.400900px;}
.y349{bottom:177.597600px;}
.y199{bottom:177.825000px;}
.y29b{bottom:179.987550px;}
.yb5{bottom:181.875000px;}
.y14c{bottom:182.438550px;}
.y410{bottom:183.750000px;}
.y77{bottom:184.404900px;}
.y49{bottom:184.673700px;}
.yec{bottom:185.137500px;}
.y72{bottom:185.644200px;}
.y399{bottom:188.550750px;}
.y29a{bottom:189.287550px;}
.y428{bottom:189.693000px;}
.y283{bottom:190.500000px;}
.y255{bottom:192.150000px;}
.y196{bottom:192.600750px;}
.y187{bottom:192.600900px;}
.y122{bottom:192.623850px;}
.yb4{bottom:194.025000px;}
.y318{bottom:194.612550px;}
.y8b{bottom:196.650750px;}
.y16{bottom:196.933500px;}
.y198{bottom:198.075000px;}
.y348{bottom:198.438300px;}
.y3cb{bottom:198.526800px;}
.yeb{bottom:200.700000px;}
.y398{bottom:200.700750px;}
.y166{bottom:200.987550px;}
.y40f{bottom:201.750000px;}
.y14b{bottom:203.438550px;}
.y48{bottom:205.673700px;}
.y151{bottom:207.844500px;}
.y254{bottom:208.350000px;}
.y427{bottom:208.593000px;}
.y186{bottom:208.800900px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y1e5{bottom:210.225000px;}
.y299{bottom:210.287550px;}
.y282{bottom:211.275000px;}
.y195{bottom:212.850750px;}
.y317{bottom:213.737550px;}
.yb3{bottom:214.275000px;}
.y121{bottom:214.500000px;}
.y289{bottom:214.744200px;}
.y2e4{bottom:214.744650px;}
.y7d{bottom:215.756250px;}
.yea{bottom:216.262500px;}
.y397{bottom:216.900750px;}
.y347{bottom:217.563300px;}
.y40e{bottom:219.750000px;}
.y3ca{bottom:221.137500px;}
.y165{bottom:221.987550px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y1e2{bottom:223.037550px;}
.y8a{bottom:223.950750px;}
.y14a{bottom:224.438550px;}
.y194{bottom:225.000750px;}
.y185{bottom:225.000900px;}
.y1e4{bottom:226.425000px;}
.y47{bottom:226.673700px;}
.y15b{bottom:227.344500px;}
.y253{bottom:227.475000px;}
.y316{bottom:229.862550px;}
.y120{bottom:230.700000px;}
.y298{bottom:231.287550px;}
.y2e9{bottom:231.488550px;}
.ye9{bottom:231.825000px;}
.y396{bottom:233.100750px;}
.y346{bottom:233.688300px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y2ed{bottom:236.639700px;}
.y1e1{bottom:237.437550px;}
.y40d{bottom:237.750000px;}
.y76{bottom:240.504750px;}
.y193{bottom:241.200750px;}
.y7c{bottom:241.709550px;}
.y71{bottom:241.743900px;}
.y226{bottom:242.625000px;}
.yb2{bottom:242.987550px;}
.y3c9{bottom:243.450000px;}
.y252{bottom:243.675000px;}
.y89{bottom:244.950750px;}
.y184{bottom:245.250900px;}
.y149{bottom:245.438550px;}
.y315{bottom:245.987550px;}
.y1e3{bottom:246.675000px;}
.y11f{bottom:246.900000px;}
.ye8{bottom:247.387500px;}
.y2e8{bottom:247.688250px;}
.y345{bottom:249.813300px;}
.y1e0{bottom:251.837550px;}
.y297{bottom:252.287550px;}
.y395{bottom:253.350750px;}
.y2f{bottom:254.250000px;}
.y40c{bottom:255.750000px;}
.y192{bottom:257.400750px;}
.y183{bottom:257.400900px;}
.y225{bottom:258.825000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y314{bottom:262.112550px;}
.y281{bottom:262.800000px;}
.ye7{bottom:262.950000px;}
.yb1{bottom:263.987550px;}
.y3c8{bottom:265.762500px;}
.y251{bottom:265.800000px;}
.y344{bottom:265.938300px;}
.y88{bottom:265.950750px;}
.y1df{bottom:266.237550px;}
.y148{bottom:266.438550px;}
.y46{bottom:268.673700px;}
.y11e{bottom:269.025000px;}
.y2e{bottom:270.450000px;}
.y288{bottom:270.844050px;}
.y2e3{bottom:270.844500px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y296{bottom:273.287550px;}
.y191{bottom:273.600750px;}
.y182{bottom:273.600900px;}
.y40b{bottom:273.750000px;}
.ye6{bottom:278.512500px;}
.y280{bottom:279.000000px;}
.y224{bottom:279.075000px;}
.y313{bottom:281.237550px;}
.y3c7{bottom:281.325150px;}
.y343{bottom:282.063300px;}
.y150{bottom:282.844500px;}
.y394{bottom:283.990650px;}
.y1de{bottom:284.012550px;}
.yb0{bottom:284.987550px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y11d{bottom:285.225000px;}
.y2d{bottom:286.650000px;}
.y87{bottom:286.950750px;}
.y147{bottom:287.438550px;}
.y250{bottom:287.925000px;}
.y45{bottom:289.673700px;}
.y190{bottom:289.800750px;}
.y223{bottom:291.225000px;}
.y40a{bottom:291.750000px;}
.y19c{bottom:291.897300px;}
.y181{bottom:293.850900px;}
.ye5{bottom:294.075000px;}
.y295{bottom:294.287550px;}
.y75{bottom:296.604450px;}
.y3c6{bottom:296.625150px;}
.y312{bottom:297.362550px;}
.y70{bottom:297.843750px;}
.y342{bottom:298.188300px;}
.y373{bottom:299.100300px;}
.y1dd{bottom:299.312550px;}
.y27f{bottom:301.125000px;}
.y2c{bottom:302.850000px;}
.y24f{bottom:304.050000px;}
.y393{bottom:304.990650px;}
.yaf{bottom:305.987550px;}
.y180{bottom:306.000900px;}
.y11c{bottom:307.350000px;}
.y86{bottom:307.950750px;}
.y146{bottom:308.438550px;}
.y200{bottom:308.912550px;}
.ye4{bottom:309.637500px;}
.y409{bottom:309.750000px;}
.y18f{bottom:310.050750px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y44{bottom:310.673700px;}
.y222{bottom:311.475000px;}
.y311{bottom:313.487550px;}
.y372{bottom:313.500300px;}
.y341{bottom:314.313300px;}
.y1dc{bottom:314.875050px;}
.y294{bottom:315.287550px;}
.y161{bottom:315.825000px;}
.y25{bottom:316.629150px;}
.y3c5{bottom:318.937500px;}
.y2b{bottom:319.050000px;}
.y24e{bottom:320.175000px;}
.y18e{bottom:322.200750px;}
.y17f{bottom:322.200900px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y27e{bottom:323.250000px;}
.y1ff{bottom:323.312550px;}
.y11b{bottom:323.550000px;}
.y392{bottom:325.990650px;}
.yae{bottom:326.987550px;}
.y408{bottom:327.750000px;}
.y371{bottom:327.900300px;}
.ye3{bottom:328.200000px;}
.y85{bottom:328.950750px;}
.y2b3{bottom:329.175000px;}
.y145{bottom:329.438550px;}
.y310{bottom:329.612550px;}
.y1db{bottom:330.437550px;}
.y340{bottom:330.438300px;}
.y43{bottom:331.673700px;}
.y2c1{bottom:332.175000px;}
.y3c4{bottom:334.237500px;}
.y15a{bottom:336.225000px;}
.y293{bottom:336.287550px;}
.y24d{bottom:336.300000px;}
.y1fe{bottom:337.712550px;}
.y18d{bottom:338.400750px;}
.y17e{bottom:338.400900px;}
.y27d{bottom:339.375000px;}
.y370{bottom:342.300300px;}
.y11a{bottom:342.675000px;}
.y2b2{bottom:343.575000px;}
.y30f{bottom:345.737550px;}
.y407{bottom:345.750000px;}
.y1da{bottom:346.000050px;}
.y33f{bottom:346.563300px;}
.y2c0{bottom:346.575000px;}
.y391{bottom:346.990650px;}
.y24{bottom:347.314650px;}
.yad{bottom:347.987550px;}
.yd{bottom:348.133500px;}
.ye2{bottom:349.762500px;}
.y3c3{bottom:349.800150px;}
.y84{bottom:349.950750px;}
.y144{bottom:350.438550px;}
.y1fd{bottom:352.112550px;}
.y42{bottom:352.673700px;}
.y18c{bottom:354.600750px;}
.y24c{bottom:355.425000px;}
.y27c{bottom:355.500000px;}
.y36f{bottom:356.700300px;}
.y292{bottom:357.287550px;}
.y2b1{bottom:357.975000px;}
.y17d{bottom:358.650900px;}
.y119{bottom:358.800000px;}
.y2bf{bottom:360.975000px;}
.y1d9{bottom:361.562550px;}
.y30e{bottom:361.862550px;}
.y33e{bottom:362.688300px;}
.y406{bottom:363.750000px;}
.y3c2{bottom:365.100150px;}
.ye1{bottom:365.325000px;}
.y390{bottom:367.990650px;}
.yac{bottom:368.987550px;}
.y17c{bottom:370.800900px;}
.y36e{bottom:371.100300px;}
.y143{bottom:371.438550px;}
.y24b{bottom:371.550000px;}
.y27b{bottom:371.625000px;}
.y1fc{bottom:372.887550px;}
.y41{bottom:373.673700px;}
.y18b{bottom:374.850750px;}
.y118{bottom:374.925000px;}
.y1d8{bottom:377.125050px;}
.y30d{bottom:377.987550px;}
.y291{bottom:378.287550px;}
.y2b0{bottom:378.750150px;}
.y33d{bottom:378.813300px;}
.ye0{bottom:380.887500px;}
.y2be{bottom:381.750000px;}
.y83{bottom:385.350750px;}
.yc{bottom:386.785499px;}
.y17b{bottom:387.000900px;}
.y3c1{bottom:387.412500px;}
.y24a{bottom:387.675000px;}
.y38f{bottom:388.990650px;}
.y1fb{bottom:389.012550px;}
.y221{bottom:389.475000px;}
.yab{bottom:389.987550px;}
.y27a{bottom:390.750000px;}
.y19d{bottom:390.796050px;}
.y117{bottom:391.050000px;}
.y36d{bottom:391.500300px;}
.y142{bottom:392.438550px;}
.y1d7{bottom:392.687550px;}
.y40{bottom:394.673700px;}
.y33c{bottom:394.938300px;}
.ydf{bottom:396.450000px;}
.y30c{bottom:397.112550px;}
.y405{bottom:399.750000px;}
.y82{bottom:399.750750px;}
.y2bd{bottom:400.875000px;}
.y2af{bottom:400.875150px;}
.y3c0{bottom:402.712500px;}
.y17a{bottom:403.200900px;}
.y249{bottom:403.800000px;}
.y1fa{bottom:405.212550px;}
.y36c{bottom:406.500300px;}
.y279{bottom:406.875000px;}
.y116{bottom:407.175000px;}
.yb{bottom:408.044999px;}
.y1d6{bottom:408.250050px;}
.y38e{bottom:409.990650px;}
.y220{bottom:410.475000px;}
.yaa{bottom:410.987550px;}
.yde{bottom:412.012500px;}
.y141{bottom:413.438550px;}
.y23{bottom:414.000000px;}
.y81{bottom:414.150750px;}
.y3f{bottom:415.673700px;}
.y30b{bottom:416.237550px;}
.y2bc{bottom:417.000000px;}
.y2ae{bottom:417.000150px;}
.y33b{bottom:417.063300px;}
.y404{bottom:417.750000px;}
.y248{bottom:419.925000px;}
.y2e1{bottom:421.050000px;}
.y1f9{bottom:421.337550px;}
.y36b{bottom:421.500300px;}
.y278{bottom:423.000000px;}
.y115{bottom:423.300000px;}
.y179{bottom:423.450900px;}
.y1d5{bottom:423.812550px;}
.y3bf{bottom:425.025000px;}
.ydd{bottom:427.575000px;}
.y6f{bottom:428.551500px;}
.y38d{bottom:430.990650px;}
.y21f{bottom:431.475000px;}
.ya9{bottom:431.987550px;}
.y33a{bottom:432.063300px;}
.y30a{bottom:432.362550px;}
.y2bb{bottom:433.125000px;}
.y2ad{bottom:433.125150px;}
.y140{bottom:434.438550px;}
.y403{bottom:435.750000px;}
.y247{bottom:436.050000px;}
.y36a{bottom:436.500300px;}
.y3e{bottom:436.673700px;}
.y1f8{bottom:437.462550px;}
.y277{bottom:439.125000px;}
.y1d4{bottom:439.375050px;}
.y114{bottom:439.425000px;}
.y290{bottom:441.287550px;}
.ydc{bottom:443.137500px;}
.y3be{bottom:447.337500px;}
.y2ba{bottom:449.250000px;}
.y2ac{bottom:449.250150px;}
.y22{bottom:450.000000px;}
.y309{bottom:451.487550px;}
.y38c{bottom:451.990650px;}
.y246{bottom:452.175000px;}
.y21e{bottom:452.475000px;}
.ya8{bottom:452.987550px;}
.y1f7{bottom:453.587550px;}
.y402{bottom:453.750000px;}
.y339{bottom:454.188300px;}
.y19f{bottom:454.877850px;}
.y1d3{bottom:454.937550px;}
.y276{bottom:455.250000px;}
.y13f{bottom:455.438550px;}
.y113{bottom:455.550000px;}
.y28f{bottom:455.687550px;}
.y19e{bottom:457.422750px;}
.y369{bottom:457.500300px;}
.y3d{bottom:457.673700px;}
.ydb{bottom:458.700000px;}
.y3bd{bottom:462.900000px;}
.y308{bottom:467.612550px;}
.y245{bottom:468.300000px;}
.y2b9{bottom:468.375000px;}
.y2ab{bottom:468.375150px;}
.y2e0{bottom:469.650000px;}
.y1f6{bottom:469.712550px;}
.y1d2{bottom:470.500050px;}
.y275{bottom:471.375000px;}
.y112{bottom:471.675000px;}
.y401{bottom:471.750000px;}
.y368{bottom:471.900300px;}
.y38b{bottom:472.990650px;}
.y21d{bottom:473.475000px;}
.ya7{bottom:473.987550px;}
.yda{bottom:474.262500px;}
.y287{bottom:476.088000px;}
.y13e{bottom:476.438550px;}
.y3bc{bottom:478.200000px;}
.y3c{bottom:478.673700px;}
.y178{bottom:481.787700px;}
.y338{bottom:482.688300px;}
.y307{bottom:483.737550px;}
.y244{bottom:484.425000px;}
.y2b8{bottom:484.500000px;}
.y2aa{bottom:484.500150px;}
.y1f5{bottom:485.837550px;}
.y1d1{bottom:486.062550px;}
.y274{bottom:487.500000px;}
.y111{bottom:487.800000px;}
.y400{bottom:489.750000px;}
.yd9{bottom:489.825000px;}
.y2df{bottom:490.425000px;}
.y367{bottom:492.900300px;}
.y38a{bottom:493.990650px;}
.y21c{bottom:494.475000px;}
.y2a{bottom:494.850000px;}
.ya6{bottom:494.987550px;}
.y13d{bottom:497.438550px;}
.y306{bottom:499.862550px;}
.y3bb{bottom:500.512500px;}
.y243{bottom:500.550000px;}
.y2b7{bottom:500.625000px;}
.y2a9{bottom:500.625150px;}
.y1d0{bottom:501.625050px;}
.y1f4{bottom:502.037550px;}
.y337{bottom:502.488300px;}
.y177{bottom:502.787700px;}
.y273{bottom:503.625000px;}
.y110{bottom:503.925000px;}
.y3ff{bottom:507.750000px;}
.yd8{bottom:508.387500px;}
.y2de{bottom:509.550000px;}
.y1a1{bottom:511.643400px;}
.y1a0{bottom:514.188300px;}
.y21b{bottom:515.475000px;}
.y164{bottom:515.987550px;}
.y3ba{bottom:516.075000px;}
.y242{bottom:516.675000px;}
.y2b6{bottom:516.750000px;}
.y2a8{bottom:516.750150px;}
.y1cf{bottom:517.187550px;}
.y1f3{bottom:518.162550px;}
.y13c{bottom:518.438550px;}
.y272{bottom:519.750000px;}
.y29{bottom:520.050000px;}
.y366{bottom:520.275450px;}
.ya{bottom:520.864502px;}
.y176{bottom:523.787700px;}
.y2dd{bottom:525.675000px;}
.y3fe{bottom:525.750000px;}
.y3b9{bottom:531.375150px;}
.y1ce{bottom:532.750050px;}
.y241{bottom:532.800000px;}
.y2b5{bottom:532.875000px;}
.y2a7{bottom:532.875150px;}
.yd7{bottom:532.950000px;}
.y1f2{bottom:534.287550px;}
.y305{bottom:535.112550px;}
.y271{bottom:535.875000px;}
.y389{bottom:535.990650px;}
.y10f{bottom:536.175000px;}
.y64{bottom:536.250000px;}
.y21a{bottom:536.475000px;}
.ya5{bottom:536.987550px;}
.y9{bottom:538.864499px;}
.y13b{bottom:539.438550px;}
.y2dc{bottom:541.800000px;}
.y365{bottom:542.400450px;}
.y3fd{bottom:543.750000px;}
.y175{bottom:544.787700px;}
.y336{bottom:548.088300px;}
.y1cd{bottom:548.312550px;}
.y240{bottom:548.925000px;}
.y2b4{bottom:549.000000px;}
.y2a6{bottom:549.000150px;}
.y1f1{bottom:550.412550px;}
.y304{bottom:551.237550px;}
.y270{bottom:552.000000px;}
.y10e{bottom:552.300000px;}
.y3b8{bottom:553.687650px;}
.yd6{bottom:554.512500px;}
.y8{bottom:556.864499px;}
.y63{bottom:557.250000px;}
.y219{bottom:557.475000px;}
.ya4{bottom:557.987550px;}
.y364{bottom:558.600300px;}
.y3e3{bottom:558.604350px;}
.y2db{bottom:560.925000px;}
.y1a3{bottom:561.092850px;}
.y3fc{bottom:561.750000px;}
.y335{bottom:562.488300px;}
.y1cc{bottom:563.875050px;}
.y174{bottom:565.787700px;}
.y1f0{bottom:566.537550px;}
.y303{bottom:567.362550px;}
.y26f{bottom:568.125000px;}
.y2a5{bottom:568.125150px;}
.y388{bottom:568.390650px;}
.y10d{bottom:568.425000px;}
.y3b7{bottom:569.250150px;}
.yd5{bottom:569.812500px;}
.y23f{bottom:571.050000px;}
.y3e2{bottom:573.004350px;}
.y2da{bottom:577.050000px;}
.y1a2{bottom:577.535700px;}
.y62{bottom:578.250000px;}
.y218{bottom:578.475000px;}
.ya3{bottom:578.987550px;}
.y1cb{bottom:579.437550px;}
.y3fb{bottom:579.750000px;}
.y363{bottom:580.725300px;}
.y13a{bottom:581.438550px;}
.y1ef{bottom:582.662550px;}
.y334{bottom:583.263300px;}
.y302{bottom:583.487550px;}
.y26e{bottom:584.250000px;}
.y2a4{bottom:584.250150px;}
.y10c{bottom:584.625000px;}
.yd4{bottom:585.375000px;}
.y23e{bottom:587.175000px;}
.y3b6{bottom:591.562500px;}
.y2d9{bottom:593.175000px;}
.y3e1{bottom:593.779350px;}
.y1ca{bottom:595.000050px;}
.y3fa{bottom:597.750000px;}
.y1ee{bottom:598.862550px;}
.y61{bottom:599.250000px;}
.y333{bottom:599.463300px;}
.y217{bottom:599.475000px;}
.y301{bottom:599.612550px;}
.y362{bottom:599.850300px;}
.ya2{bottom:599.987550px;}
.y10b{bottom:600.750000px;}
.yd3{bottom:600.937500px;}
.y23d{bottom:603.300000px;}
.y26d{bottom:603.375000px;}
.y2a3{bottom:603.375150px;}
.y3b5{bottom:606.862500px;}
.y173{bottom:607.787700px;}
.y3e0{bottom:609.079350px;}
.y2d8{bottom:609.300000px;}
.y1c9{bottom:610.562550px;}
.y139{bottom:613.838550px;}
.y1ed{bottom:614.987550px;}
.y3f9{bottom:615.750000px;}
.yd2{bottom:616.500000px;}
.y1a4{bottom:617.858400px;}
.y332{bottom:618.588300px;}
.y300{bottom:618.737550px;}
.y361{bottom:618.975300px;}
.y23c{bottom:619.425000px;}
.y26c{bottom:619.500000px;}
.y2a2{bottom:619.500150px;}
.y60{bottom:620.250000px;}
.y216{bottom:620.475000px;}
.ya1{bottom:620.987550px;}
.y387{bottom:621.790650px;}
.y3b4{bottom:622.425000px;}
.y10a{bottom:622.875000px;}
.y426{bottom:624.393000px;}
.y2d7{bottom:625.425000px;}
.y1c8{bottom:626.125050px;}
.y172{bottom:628.787700px;}
.y1ec{bottom:631.112550px;}
.yd1{bottom:632.062500px;}
.y3f8{bottom:633.750000px;}
.y331{bottom:634.788300px;}
.y2ff{bottom:634.862550px;}
.y26b{bottom:635.625000px;}
.y2a1{bottom:635.625150px;}
.y3b3{bottom:637.725150px;}
.y360{bottom:638.100300px;}
.y109{bottom:639.075000px;}
.y5f{bottom:641.250000px;}
.y23b{bottom:641.550000px;}
.y1c7{bottom:641.687550px;}
.y3df{bottom:641.705100px;}
.ya0{bottom:641.987550px;}
.y159{bottom:642.525000px;}
.y386{bottom:642.790650px;}
.y425{bottom:643.293000px;}
.y2d6{bottom:644.550000px;}
.y7{bottom:645.510000px;}
.y138{bottom:646.238550px;}
.y1eb{bottom:647.237550px;}
.yd0{bottom:647.625000px;}
.y52{bottom:649.564050px;}
.y171{bottom:649.787700px;}
.y2fe{bottom:650.987550px;}
.y26a{bottom:651.750000px;}
.y2a0{bottom:651.750150px;}
.y330{bottom:653.913300px;}
.y35f{bottom:654.225300px;}
.y108{bottom:655.200000px;}
.y3de{bottom:657.005100px;}
.y1c6{bottom:657.250050px;}
.y23a{bottom:657.675000px;}
.y3b2{bottom:660.037500px;}
.y2d5{bottom:660.675000px;}
.y424{bottom:662.193000px;}
.y5e{bottom:662.250000px;}
.y9f{bottom:662.987550px;}
.ycf{bottom:663.187500px;}
.y385{bottom:663.790650px;}
.y1ea{bottom:666.362550px;}
.y6{bottom:666.771000px;}
.y2fd{bottom:667.112550px;}
.y3f7{bottom:669.750000px;}
.y35e{bottom:670.350300px;}
.y170{bottom:670.787700px;}
.y269{bottom:670.875000px;}
.y29f{bottom:670.875150px;}
.y107{bottom:671.400000px;}
.y1c5{bottom:672.812550px;}
.y32f{bottom:673.038300px;}
.y239{bottom:673.800000px;}
.y3b1{bottom:675.337500px;}
.y137{bottom:678.638700px;}
.yce{bottom:678.750000px;}
.y3dd{bottom:679.317600px;}
.y2d4{bottom:679.800000px;}
.y423{bottom:681.093000px;}
.y1e9{bottom:682.562550px;}
.y2fc{bottom:683.237550px;}
.y5d{bottom:683.250000px;}
.y215{bottom:683.475000px;}
.y9e{bottom:683.987550px;}
.y384{bottom:684.790650px;}
.y35d{bottom:686.475300px;}
.y268{bottom:687.000000px;}
.y29e{bottom:687.000150px;}
.y106{bottom:687.525000px;}
.y1c4{bottom:688.375050px;}
.y32e{bottom:689.238300px;}
.y238{bottom:689.925000px;}
.y3f6{bottom:690.750000px;}
.y3b0{bottom:690.900000px;}
.y51{bottom:691.564050px;}
.y16f{bottom:691.787700px;}
.y136{bottom:693.038700px;}
.ycd{bottom:694.312500px;}
.y3dc{bottom:694.617600px;}
.y2d3{bottom:695.925000px;}
.y214{bottom:697.875000px;}
.y2fb{bottom:699.362550px;}
.y422{bottom:699.993000px;}
.y1e8{bottom:701.687550px;}
.y35c{bottom:702.600300px;}
.y267{bottom:703.125000px;}
.y29d{bottom:703.125150px;}
.y105{bottom:703.650000px;}
.y1c3{bottom:703.937550px;}
.y5c{bottom:704.250000px;}
.y28{bottom:704.850000px;}
.y163{bottom:704.987550px;}
.y32d{bottom:705.363300px;}
.y3f5{bottom:705.750000px;}
.y383{bottom:705.790650px;}
.y237{bottom:706.050150px;}
.y3af{bottom:706.200000px;}
.y135{bottom:707.438550px;}
.y2d2{bottom:712.050000px;}
.y213{bottom:712.275000px;}
.y16e{bottom:712.787700px;}
.y158{bottom:713.925000px;}
.y2fa{bottom:715.487550px;}
.ycc{bottom:715.875000px;}
.y3db{bottom:716.930100px;}
.y35b{bottom:718.725300px;}
.y421{bottom:718.893000px;}
.y266{bottom:719.250000px;}
.y29c{bottom:719.250150px;}
.y1c2{bottom:719.500050px;}
.y104{bottom:719.775000px;}
.y32c{bottom:721.488300px;}
.y3ae{bottom:721.762500px;}
.y134{bottom:721.838550px;}
.y236{bottom:722.250150px;}
.y3f4{bottom:723.750000px;}
.y5b{bottom:725.250000px;}
.y9d{bottom:725.987550px;}
.y5{bottom:726.298500px;}
.y212{bottom:726.675000px;}
.y382{bottom:726.790650px;}
.y1e7{bottom:727.187550px;}
.y2d1{bottom:728.175000px;}
.ycb{bottom:731.175000px;}
.y2f9{bottom:731.612550px;}
.y3da{bottom:732.492600px;}
.y50{bottom:733.564050px;}
.y16d{bottom:733.787700px;}
.y14f{bottom:734.325000px;}
.y35a{bottom:734.850300px;}
.y1c1{bottom:735.062550px;}
.y103{bottom:735.900000px;}
.y133{bottom:736.238550px;}
.y420{bottom:737.793000px;}
.y265{bottom:738.375000px;}
.y235{bottom:738.375150px;}
.y3f3{bottom:741.750000px;}
.y32b{bottom:743.613300px;}
.y3ad{bottom:744.075000px;}
.y2d0{bottom:744.300000px;}
.y27{bottom:744.450000px;}
.y5a{bottom:746.250000px;}
.yca{bottom:746.737500px;}
.y9c{bottom:746.987550px;}
.y211{bottom:747.450000px;}
.y2f8{bottom:747.737550px;}
.y381{bottom:747.790650px;}
.y6e{bottom:748.950750px;}
.y1c0{bottom:750.625050px;}
.y359{bottom:750.975300px;}
.y102{bottom:752.025000px;}
.y3{bottom:752.599495px;}
.y264{bottom:754.500000px;}
.y234{bottom:754.500150px;}
.y4f{bottom:754.564050px;}
.y16c{bottom:754.787700px;}
.y41f{bottom:756.693000px;}
.y132{bottom:757.013700px;}
.y3d9{bottom:757.880100px;}
.y3ac{bottom:759.375150px;}
.y3f2{bottom:759.750000px;}
.y1a5{bottom:759.756300px;}
.y32a{bottom:759.813300px;}
.y2cf{bottom:760.425150px;}
.yc9{bottom:762.037500px;}
.y210{bottom:763.575000px;}
.y2f7{bottom:763.862550px;}
.y1bf{bottom:766.187550px;}
.y358{bottom:767.100450px;}
.y59{bottom:767.250000px;}
.y9b{bottom:767.987550px;}
.y101{bottom:768.150000px;}
.y380{bottom:768.790650px;}
.y286{bottom:770.387550px;}
.y263{bottom:770.625000px;}
.y233{bottom:770.625150px;}
.y3d8{bottom:773.180100px;}
.y131{bottom:773.213700px;}
.y3ab{bottom:774.937650px;}
.y41e{bottom:775.593000px;}
.y16b{bottom:775.787700px;}
.y2ce{bottom:776.550150px;}
.yc8{bottom:777.600000px;}
.y3f1{bottom:777.750000px;}
.y20f{bottom:779.700000px;}
.y2f6{bottom:779.987550px;}
.y1be{bottom:781.750050px;}
.y329{bottom:781.938300px;}
.y357{bottom:783.225450px;}
.y100{bottom:784.275000px;}
.y262{bottom:786.750000px;}
.y232{bottom:786.750150px;}
.y58{bottom:788.250000px;}
.y9a{bottom:788.987550px;}
.y130{bottom:789.338700px;}
.y6d{bottom:789.750750px;}
.y37f{bottom:789.790650px;}
.y285{bottom:790.187550px;}
.y3aa{bottom:790.237650px;}
.y2cd{bottom:792.675150px;}
.yc7{bottom:793.162500px;}
.y3d7{bottom:795.492600px;}
.y3f0{bottom:795.750000px;}
.y20e{bottom:795.825000px;}
.y2f5{bottom:796.112550px;}
.y4e{bottom:796.564050px;}
.y16a{bottom:796.787700px;}
.y1bd{bottom:797.312550px;}
.y356{bottom:799.350450px;}
.yff{bottom:800.400000px;}
.y261{bottom:802.875000px;}
.y231{bottom:802.875150px;}
.y12f{bottom:805.463700px;}
.y3b{bottom:808.079550px;}
.yc6{bottom:808.725000px;}
.y2cc{bottom:808.800150px;}
.y57{bottom:809.250000px;}
.y99{bottom:809.987550px;}
.y328{bottom:810.438300px;}
.y6c{bottom:810.750750px;}
.y37e{bottom:810.790650px;}
.y20d{bottom:811.950000px;}
.y2f4{bottom:812.237550px;}
.y3a9{bottom:812.550000px;}
.y1bc{bottom:812.875050px;}
.y41d{bottom:813.393000px;}
.y3ef{bottom:813.750000px;}
.y355{bottom:815.475450px;}
.yfe{bottom:816.600000px;}
.y3d6{bottom:817.805100px;}
.y260{bottom:819.000000px;}
.y230{bottom:819.000150px;}
.y12e{bottom:821.588700px;}
.yc5{bottom:824.287500px;}
.y2cb{bottom:824.925150px;}
.y3a{bottom:826.079550px;}
.y3a8{bottom:827.850000px;}
.y20c{bottom:828.075000px;}
.y2f3{bottom:828.362550px;}
.y1bb{bottom:828.437550px;}
.y56{bottom:830.250000px;}
.y98{bottom:830.987550px;}
.y354{bottom:831.600450px;}
.y3ee{bottom:831.750000px;}
.y6b{bottom:831.750750px;}
.y37d{bottom:831.790650px;}
.yfd{bottom:832.725000px;}
.y3d5{bottom:833.105100px;}
.y25f{bottom:835.125000px;}
.y22f{bottom:835.125150px;}
.y12d{bottom:837.713700px;}
.y4d{bottom:838.564050px;}
.y169{bottom:838.787700px;}
.y21{bottom:839.089650px;}
.yc4{bottom:839.587500px;}
.y2ca{bottom:841.050150px;}
.y3a7{bottom:843.412500px;}
.y1ba{bottom:844.000050px;}
.y39{bottom:844.079550px;}
.y20b{bottom:844.200000px;}
.y353{bottom:847.725450px;}
.yfc{bottom:848.850000px;}
.y3ed{bottom:849.750000px;}
.y2f2{bottom:850.487550px;}
.y327{bottom:851.238300px;}
.y55{bottom:851.250000px;}
.y22e{bottom:851.250150px;}
.y97{bottom:851.987550px;}
.y6a{bottom:852.750750px;}
.y37c{bottom:852.790650px;}
.y12c{bottom:853.838700px;}
.yc3{bottom:855.150000px;}
.y3d4{bottom:855.417600px;}
.y2c9{bottom:857.175150px;}
.y1a6{bottom:858.655200px;}
.y3a6{bottom:858.712500px;}
.y1b9{bottom:859.562550px;}
.y20a{bottom:860.325000px;}
.y38{bottom:862.079550px;}
.yfb{bottom:864.975000px;}
.y2f1{bottom:866.687550px;}
.y352{bottom:866.850450px;}
.y25e{bottom:867.375000px;}
.y22d{bottom:867.375150px;}
.y3ec{bottom:867.750000px;}
.y12b{bottom:869.963700px;}
.yc2{bottom:870.712500px;}
.y3d3{bottom:870.717600px;}
.y168{bottom:871.187550px;}
.y326{bottom:872.238300px;}
.y54{bottom:872.250000px;}
.y96{bottom:872.987550px;}
.y2c8{bottom:873.300150px;}
.y69{bottom:873.750750px;}
.y37b{bottom:873.790650px;}
.y20{bottom:875.089650px;}
.y1b8{bottom:875.125050px;}
.y209{bottom:876.450000px;}
.y2{bottom:879.369000px;}
.y413{bottom:880.079550px;}
.y4c{bottom:880.564050px;}
.y3a5{bottom:881.025000px;}
.yfa{bottom:881.100000px;}
.y25d{bottom:883.500000px;}
.y22c{bottom:883.500150px;}
.y3eb{bottom:885.750000px;}
.y12a{bottom:886.088700px;}
.yc1{bottom:886.275000px;}
.y351{bottom:888.975450px;}
.y41c{bottom:888.993000px;}
.y2c7{bottom:889.425150px;}
.y1b7{bottom:890.687550px;}
.y208{bottom:892.575000px;}
.y3d2{bottom:893.030100px;}
.y325{bottom:893.238300px;}
.y53{bottom:893.250000px;}
.y95{bottom:893.987550px;}
.y68{bottom:894.750750px;}
.y37a{bottom:894.790650px;}
.y2f0{bottom:895.187550px;}
.y3a4{bottom:896.587500px;}
.yf9{bottom:897.225000px;}
.y37{bottom:898.079550px;}
.y25c{bottom:899.625000px;}
.y22b{bottom:899.625150px;}
.yc0{bottom:901.837500px;}
.y129{bottom:902.213700px;}
.y167{bottom:903.587550px;}
.y3ea{bottom:903.750000px;}
.y350{bottom:905.175450px;}
.y2c6{bottom:905.550150px;}
.y41b{bottom:907.893000px;}
.y207{bottom:908.700000px;}
.y3a3{bottom:912.150000px;}
.y1b6{bottom:912.250050px;}
.yf8{bottom:913.425000px;}
.y324{bottom:914.238300px;}
.y94{bottom:914.987550px;}
.y25b{bottom:915.750000px;}
.y22a{bottom:915.750150px;}
.y67{bottom:915.750750px;}
.y379{bottom:915.790650px;}
.y36{bottom:916.079550px;}
.ybf{bottom:917.137500px;}
.y128{bottom:918.338700px;}
.y2c5{bottom:921.675150px;}
.y3e9{bottom:921.750000px;}
.y1a8{bottom:922.736850px;}
.y3d1{bottom:924.155100px;}
.y206{bottom:924.825000px;}
.y1a7{bottom:925.281750px;}
.y41a{bottom:926.793150px;}
.y34f{bottom:927.300450px;}
.yf7{bottom:929.550000px;}
.y25a{bottom:931.875000px;}
.y229{bottom:931.875150px;}
.y35{bottom:934.079550px;}
.y127{bottom:934.463700px;}
.y4b{bottom:934.564950px;}
.y323{bottom:935.238300px;}
.y26{bottom:935.250000px;}
.ybe{bottom:935.700000px;}
.y93{bottom:935.987550px;}
.y66{bottom:936.750750px;}
.y378{bottom:936.790650px;}
.y2c4{bottom:937.800150px;}
.y3e8{bottom:939.750000px;}
.y1b5{bottom:940.187550px;}
.y3a2{bottom:940.462500px;}
.y205{bottom:940.950000px;}
.y34e{bottom:943.500300px;}
.y419{bottom:945.693000px;}
.y3d0{bottom:946.467600px;}
.y126{bottom:950.588700px;}
.yf6{bottom:951.675000px;}
.y34{bottom:952.079550px;}
.y259{bottom:954.000000px;}
.y228{bottom:954.000150px;}
.y3a1{bottom:956.025000px;}
.y322{bottom:956.238300px;}
.y162{bottom:956.987550px;}
.y204{bottom:957.075000px;}
.ybd{bottom:957.262500px;}
.y3e7{bottom:957.750000px;}
.y377{bottom:957.790650px;}
.y1b4{bottom:958.187550px;}
.y2c3{bottom:959.925150px;}
.y3cf{bottom:961.767600px;}
.y34d{bottom:962.625300px;}
.y418{bottom:964.593000px;}
.y1{bottom:966.726000px;}
.y412{bottom:970.079550px;}
.y227{bottom:970.200000px;}
.y125{bottom:972.713700px;}
.y203{bottom:973.200000px;}
.yf5{bottom:973.800000px;}
.y3e6{bottom:975.750000px;}
.y2c2{bottom:976.125150px;}
.y321{bottom:977.238300px;}
.y3ce{bottom:977.330100px;}
.y3a0{bottom:977.587500px;}
.y92{bottom:977.987550px;}
.y34c{bottom:978.750300px;}
.y65{bottom:978.750750px;}
.y376{bottom:978.790650px;}
.ybc{bottom:978.825000px;}
.y1aa{bottom:979.502400px;}
.y1a9{bottom:982.047300px;}
.y417{bottom:983.493000px;}
.y33{bottom:988.079550px;}
.y124{bottom:988.913700px;}
.yf4{bottom:990.000000px;}
.y202{bottom:992.325000px;}
.y3cd{bottom:992.630100px;}
.y39f{bottom:992.887500px;}
.y3e5{bottom:993.750000px;}
.ybb{bottom:994.125000px;}
.y34b{bottom:994.875300px;}
.y320{bottom:998.238300px;}
.y91{bottom:998.987550px;}
.y375{bottom:999.790650px;}
.y416{bottom:1002.393000px;}
.y32{bottom:1006.079550px;}
.y3cc{bottom:1008.192600px;}
.y123{bottom:1011.038700px;}
.yf3{bottom:1012.125000px;}
.yba{bottom:1012.687500px;}
.y34a{bottom:1014.000300px;}
.y31f{bottom:1019.238300px;}
.y90{bottom:1019.987550px;}
.y374{bottom:1020.790650px;}
.y201{bottom:1020.825000px;}
.y415{bottom:1021.293000px;}
.y31{bottom:1024.079550px;}
.y1ac{bottom:1028.951850px;}
.y3e4{bottom:1032.750000px;}
.y14e{bottom:1038.375750px;}
.y31e{bottom:1040.238300px;}
.yb9{bottom:1040.625000px;}
.y8f{bottom:1040.987550px;}
.y30{bottom:1042.079550px;}
.y1ab{bottom:1045.394700px;}
.y414{bottom:1059.093000px;}
.yb8{bottom:1126.518150px;}
.h7{height:32.130000px;}
.h1a{height:32.400000px;}
.h24{height:34.992000px;}
.h19{height:36.000000px;}
.h1e{height:36.210000px;}
.h1c{height:37.179000px;}
.h1d{height:38.250000px;}
.h20{height:38.340000px;}
.h1f{height:39.366000px;}
.h18{height:40.500000px;}
.h1b{height:41.264648px;}
.hf{height:42.213867px;}
.h11{height:43.710938px;}
.h22{height:43.740000px;}
.h6{height:45.900000px;}
.h25{height:45.927000px;}
.h10{height:46.904297px;}
.h26{height:47.250000px;}
.h13{height:48.082031px;}
.h16{height:48.114000px;}
.h3{height:48.195000px;}
.h12{height:51.594727px;}
.h2{height:55.080000px;}
.h15{height:61.075781px;}
.hc{height:61.236000px;}
.he{height:63.000000px;}
.hb{height:66.766500px;}
.h5{height:78.030000px;}
.h14{height:78.732000px;}
.ha{height:92.056500px;}
.hd{height:96.228000px;}
.h9{height:112.387866px;}
.h4{height:119.055004px;}
.h23{height:285.000000px;}
.h21{height:297.000000px;}
.h17{height:312.000000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:481.807500px;}
.w6{width:502.843500px;}
.w7{width:511.500000px;}
.w8{width:529.500000px;}
.w4{width:547.500000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x19{left:14.461650px;}
.xc{left:19.960650px;}
.x9e{left:21.105450px;}
.xa{left:24.105450px;}
.x92{left:26.166450px;}
.x4a{left:27.456300px;}
.x59{left:30.361800px;}
.x9f{left:34.956300px;}
.xb{left:37.956300px;}
.x52{left:41.530500px;}
.x4b{left:48.871650px;}
.x11{left:59.372250px;}
.x10{left:65.110050px;}
.x7{left:66.811200px;}
.x54{left:69.871650px;}
.xa0{left:71.579550px;}
.x53{left:75.609300px;}
.xa1{left:78.862800px;}
.x4c{left:89.842500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:108.000000px;}
.x55{left:110.842500px;}
.x2e{left:114.000000px;}
.xbd{left:115.881300px;}
.x1c{left:126.000000px;}
.x78{left:129.226200px;}
.xa2{left:131.310000px;}
.x8{left:135.000000px;}
.xbb{left:136.501500px;}
.x51{left:137.587650px;}
.xb5{left:139.500000px;}
.x2a{left:141.000000px;}
.xa3{left:143.684400px;}
.x5a{left:147.375000px;}
.x1b{left:153.000000px;}
.x17{left:154.441350px;}
.x58{left:158.587650px;}
.x1d{left:160.549050px;}
.xb7{left:166.500000px;}
.xbc{left:171.000000px;}
.x5b{left:175.875000px;}
.x1a{left:180.000000px;}
.x5c{left:192.075000px;}
.xa4{left:199.543950px;}
.x4{left:203.484001px;}
.x3a{left:210.381600px;}
.x93{left:211.543950px;}
.x5d{left:214.200000px;}
.x2f{left:216.683400px;}
.x39{left:221.301450px;}
.x4d{left:224.311500px;}
.x3b{left:228.284100px;}
.x5e{left:230.325000px;}
.x12{left:234.040950px;}
.x49{left:237.381600px;}
.x81{left:239.760300px;}
.x2c{left:240.878850px;}
.x3d{left:243.683400px;}
.x1e{left:245.122050px;}
.x5f{left:246.450000px;}
.x80{left:249.594450px;}
.xb6{left:251.983350px;}
.x2b{left:257.786700px;}
.xba{left:261.387000px;}
.xb9{left:265.794150px;}
.x4e{left:267.441600px;}
.x60{left:268.575000px;}
.xb8{left:278.983350px;}
.x13{left:283.034250px;}
.x61{left:284.700000px;}
.x56{left:288.441600px;}
.x88{left:292.819200px;}
.x82{left:295.209600px;}
.x62{left:300.825000px;}
.x18{left:302.752500px;}
.x94{left:308.866800px;}
.x7a{left:319.539900px;}
.x91{left:320.793000px;}
.x63{left:322.950000px;}
.x98{left:324.000000px;}
.x8c{left:328.366800px;}
.xae{left:329.894400px;}
.xad{left:337.678950px;}
.x30{left:339.683400px;}
.xaa{left:348.309750px;}
.x64{left:355.200000px;}
.x6{left:363.342450px;}
.x3e{left:366.683400px;}
.x1f{left:368.122050px;}
.x65{left:377.325000px;}
.x66{left:393.450000px;}
.x4f{left:399.750000px;}
.x32{left:401.183400px;}
.x31{left:403.728300px;}
.x14{left:407.628600px;}
.x67{left:409.575000px;}
.x57{left:419.669700px;}
.x40{left:428.183400px;}
.x21{left:429.622200px;}
.x3f{left:430.728300px;}
.x20{left:432.025650px;}
.x50{left:445.041450px;}
.x5{left:448.615650px;}
.xaf{left:450.675000px;}
.x3{left:454.959000px;}
.x7b{left:459.449550px;}
.x76{left:460.451550px;}
.xb2{left:462.366000px;}
.x68{left:463.950000px;}
.x2d{left:467.032650px;}
.x33{left:470.146650px;}
.x7c{left:471.159600px;}
.x79{left:479.817150px;}
.x42{left:481.630050px;}
.x23{left:483.516150px;}
.x69{left:486.075000px;}
.xf{left:489.833550px;}
.xa5{left:491.161350px;}
.xd{left:493.977600px;}
.x41{left:497.146650px;}
.x22{left:498.170700px;}
.x77{left:499.516800px;}
.xe{left:500.903250px;}
.x6a{left:502.200000px;}
.xb3{left:506.509950px;}
.x95{left:513.000000px;}
.xa6{left:515.816100px;}
.x16{left:517.698450px;}
.x7d{left:520.204500px;}
.xa7{left:523.006650px;}
.x83{left:527.709600px;}
.x89{left:532.893000px;}
.x15{left:533.898150px;}
.x6b{left:540.450000px;}
.x6c{left:556.575000px;}
.x43{left:560.183400px;}
.x24{left:561.622200px;}
.xb4{left:565.866000px;}
.x96{left:567.000000px;}
.x6d{left:572.700000px;}
.x85{left:574.209600px;}
.x7e{left:575.343000px;}
.x84{left:576.754500px;}
.x8b{left:579.393000px;}
.x8a{left:584.482800px;}
.x99{left:586.500000px;}
.xa8{left:587.784150px;}
.x6e{left:594.825000px;}
.x9b{left:605.866800px;}
.x8e{left:607.366800px;}
.x6f{left:610.950000px;}
.x8d{left:612.456600px;}
.x70{left:627.075000px;}
.x86{left:629.709600px;}
.x97{left:634.366800px;}
.xab{left:638.570250px;}
.x9a{left:648.000000px;}
.x71{left:649.200000px;}
.x9c{left:651.535050px;}
.x34{left:656.183400px;}
.x8f{left:662.866800px;}
.x72{left:665.325000px;}
.x9d{left:674.866200px;}
.x73{left:681.450000px;}
.x44{left:683.183400px;}
.x25{left:684.622200px;}
.xb0{left:695.625000px;}
.x74{left:705.225000px;}
.x36{left:717.683400px;}
.x35{left:720.228300px;}
.x75{left:734.025000px;}
.x46{left:744.683400px;}
.x27{left:746.122200px;}
.x45{left:747.228300px;}
.x26{left:748.525650px;}
.xa9{left:755.116650px;}
.xb1{left:756.862500px;}
.xac{left:758.062050px;}
.x7f{left:759.159600px;}
.x3c{left:763.996050px;}
.x87{left:769.209750px;}
.x38{left:771.130050px;}
.x37{left:786.646650px;}
.x48{left:798.130050px;}
.x29{left:800.016150px;}
.x90{left:802.366800px;}
.x47{left:813.646650px;}
.x28{left:814.670700px;}
@media print{
.v5{vertical-align:-45.351467pt;}
.v3{vertical-align:-41.085867pt;}
.v4{vertical-align:-17.600000pt;}
.v2{vertical-align:-14.400000pt;}
.v6{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.162133pt;}
.ls9{letter-spacing:0.170667pt;}
.lsd{letter-spacing:0.181333pt;}
.lse{letter-spacing:0.182400pt;}
.lsb{letter-spacing:0.192000pt;}
.ls10{letter-spacing:0.203200pt;}
.ls12{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.234667pt;}
.ls11{letter-spacing:0.236267pt;}
.ls7{letter-spacing:0.267733pt;}
.lsc{letter-spacing:0.268267pt;}
.ls3{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.469333pt;}
.lsf{letter-spacing:2.928000pt;}
.ls13{letter-spacing:128.138667pt;}
.ls14{letter-spacing:128.139200pt;}
.ls15{letter-spacing:876.482667pt;}
.ws42{word-spacing:-19.776000pt;}
.ws6{word-spacing:-16.661333pt;}
.ws19{word-spacing:-16.309333pt;}
.ws1{word-spacing:-15.146667pt;}
.ws2{word-spacing:-15.082667pt;}
.ws43{word-spacing:-14.826667pt;}
.wse{word-spacing:-13.047467pt;}
.ws44{word-spacing:-11.872000pt;}
.wsb{word-spacing:-10.912000pt;}
.ws30{word-spacing:-10.368000pt;}
.ws3{word-spacing:-10.176000pt;}
.ws9{word-spacing:-9.888000pt;}
.ws10{word-spacing:-9.696000pt;}
.ws1e{word-spacing:-9.610667pt;}
.ws7{word-spacing:-9.338667pt;}
.ws8{word-spacing:-9.216000pt;}
.ws17{word-spacing:-9.157333pt;}
.wsa{word-spacing:-8.928000pt;}
.ws2f{word-spacing:-8.789333pt;}
.wsf{word-spacing:-8.140800pt;}
.ws0{word-spacing:0.000000pt;}
.ws3b{word-spacing:3.964800pt;}
.ws41{word-spacing:3.970667pt;}
.ws1b{word-spacing:6.632533pt;}
.ws1c{word-spacing:6.634133pt;}
.ws21{word-spacing:11.257600pt;}
.ws2c{word-spacing:17.299200pt;}
.ws3f{word-spacing:17.321067pt;}
.ws15{word-spacing:18.276267pt;}
.ws40{word-spacing:19.248000pt;}
.ws20{word-spacing:19.845333pt;}
.ws35{word-spacing:24.981333pt;}
.ws39{word-spacing:25.016533pt;}
.ws36{word-spacing:25.026667pt;}
.ws3e{word-spacing:29.309333pt;}
.ws3d{word-spacing:29.312000pt;}
.ws2d{word-spacing:30.461333pt;}
.ws25{word-spacing:33.465067pt;}
.ws1a{word-spacing:33.466133pt;}
.ws38{word-spacing:42.640000pt;}
.ws37{word-spacing:42.654933pt;}
.ws14{word-spacing:43.130667pt;}
.ws13{word-spacing:43.133867pt;}
.ws12{word-spacing:43.134400pt;}
.ws11{word-spacing:43.135467pt;}
.ws2b{word-spacing:44.132800pt;}
.ws16{word-spacing:45.113067pt;}
.ws1d{word-spacing:48.117333pt;}
.ws3a{word-spacing:52.236800pt;}
.ws32{word-spacing:52.246933pt;}
.ws2a{word-spacing:58.784000pt;}
.ws1f{word-spacing:60.298133pt;}
.ws24{word-spacing:60.298667pt;}
.wsc{word-spacing:61.745067pt;}
.ws31{word-spacing:66.112533pt;}
.ws33{word-spacing:66.122667pt;}
.ws29{word-spacing:81.104000pt;}
.ws4{word-spacing:82.132800pt;}
.ws18{word-spacing:82.357333pt;}
.ws5{word-spacing:85.969067pt;}
.ws34{word-spacing:89.524800pt;}
.ws3c{word-spacing:89.570133pt;}
.wsd{word-spacing:89.992533pt;}
.ws26{word-spacing:113.056000pt;}
.ws2e{word-spacing:113.541333pt;}
.ws28{word-spacing:146.666133pt;}
.ws27{word-spacing:154.348800pt;}
.ws23{word-spacing:360.416533pt;}
.ws22{word-spacing:511.774933pt;}
._12b{margin-left:-1139.053333pt;}
._100{margin-left:-1036.670400pt;}
._12d{margin-left:-797.134400pt;}
._85{margin-left:-583.431627pt;}
._1{margin-left:-39.817469pt;}
._2{margin-left:-13.859720pt;}
._3{margin-left:-11.219773pt;}
._86{margin-left:-7.932960pt;}
._0{margin-left:-6.599867pt;}
._15{margin-left:-5.397333pt;}
._6{margin-left:-4.473264pt;}
._8{margin-left:-2.940960pt;}
._a{margin-left:-2.016000pt;}
._5{margin-left:-1.091040pt;}
._4{width:1.091040pt;}
._b{width:2.005333pt;}
._7{width:2.986667pt;}
._9{width:4.693333pt;}
._160{width:6.596960pt;}
._5d{width:8.039627pt;}
._ea{width:11.048373pt;}
._98{width:12.817936pt;}
._87{width:14.244267pt;}
._154{width:16.659307pt;}
._a9{width:18.281067pt;}
._d8{width:20.757333pt;}
._1d{width:22.784000pt;}
._62{width:23.810331pt;}
._9f{width:24.971003pt;}
._5c{width:26.727627pt;}
._c7{width:27.912496pt;}
._f4{width:30.388960pt;}
._14e{width:31.327584pt;}
._120{width:32.465797pt;}
._1e{width:33.792000pt;}
._25{width:34.999040pt;}
._7d{width:36.901333pt;}
._150{width:38.230480pt;}
._163{width:39.250704pt;}
._b0{width:40.145920pt;}
._b1{width:41.236960pt;}
._8c{width:42.528533pt;}
._1c{width:43.794293pt;}
._89{width:44.884267pt;}
._156{width:45.799627pt;}
._28{width:46.711253pt;}
._27{width:47.802293pt;}
._bf{width:49.351627pt;}
._70{width:50.264635pt;}
._91{width:51.729403pt;}
._8a{width:53.313067pt;}
._96{width:55.009424pt;}
._5b{width:56.289760pt;}
._c5{width:58.005333pt;}
._24{width:59.497067pt;}
._bb{width:60.524747pt;}
._65{width:61.717333pt;}
._8b{width:63.489067pt;}
._95{width:64.515909pt;}
._63{width:66.320693pt;}
._18{width:67.701333pt;}
._61{width:69.164997pt;}
._30{width:70.148587pt;}
._2c{width:71.249760pt;}
._23{width:73.319984pt;}
._66{width:74.395909pt;}
._51{width:75.476800pt;}
._a3{width:76.556603pt;}
._26{width:77.899360pt;}
._14d{width:78.836251pt;}
._97{width:79.763216pt;}
._29{width:81.334560pt;}
._99{width:82.515979pt;}
._103{width:83.944160pt;}
._2d{width:85.399840pt;}
._64{width:86.502400pt;}
._c2{width:87.417013pt;}
._8e{width:88.391467pt;}
._53{width:89.524640pt;}
._104{width:90.781333pt;}
._94{width:91.727467pt;}
._16{width:93.045333pt;}
._13{width:94.160000pt;}
._106{width:95.172853pt;}
._38{width:96.979483pt;}
._1b{width:98.025067pt;}
._50{width:99.085707pt;}
._19{width:99.991467pt;}
._1a{width:101.861333pt;}
._c6{width:103.008085pt;}
._36{width:103.977227pt;}
._b4{width:105.189013pt;}
._46{width:106.218987pt;}
._4f{width:107.324587pt;}
._31{width:109.094027pt;}
._11{width:110.469333pt;}
._d{width:111.701333pt;}
._44{width:112.951200pt;}
._119{width:114.668427pt;}
._21{width:117.301333pt;}
._dc{width:118.940800pt;}
._ae{width:120.311504pt;}
._60{width:121.256533pt;}
._6e{width:122.182416pt;}
._a0{width:123.989296pt;}
._22{width:125.847467pt;}
._f{width:126.778667pt;}
._4a{width:127.672000pt;}
._2e{width:129.217387pt;}
._4b{width:130.409600pt;}
._2a{width:131.923253pt;}
._2f{width:133.462933pt;}
._47{width:135.628267pt;}
._161{width:137.847093pt;}
._6f{width:139.186133pt;}
._11b{width:140.085387pt;}
._12a{width:141.204997pt;}
._c9{width:142.099200pt;}
._ac{width:143.738667pt;}
._74{width:144.828800pt;}
._ce{width:145.927467pt;}
._cd{width:147.890827pt;}
._122{width:148.949547pt;}
._41{width:149.975467pt;}
._59{width:151.119467pt;}
._c{width:152.474667pt;}
._55{width:153.473547pt;}
._162{width:154.780427pt;}
._33{width:156.853333pt;}
._3d{width:158.327467pt;}
._32{width:159.999093pt;}
._121{width:162.789333pt;}
._37{width:163.729227pt;}
._5a{width:165.629867pt;}
._bd{width:168.069867pt;}
._4c{width:169.366400pt;}
._8f{width:174.166736pt;}
._14{width:175.706667pt;}
._6b{width:182.711467pt;}
._80{width:185.687024pt;}
._90{width:186.974699pt;}
._a7{width:190.179685pt;}
._58{width:193.688160pt;}
._125{width:195.804053pt;}
._71{width:197.004267pt;}
._9b{width:198.993936pt;}
._52{width:203.351467pt;}
._7c{width:204.577600pt;}
._69{width:207.804800pt;}
._6a{width:209.015467pt;}
._54{width:209.970133pt;}
._7e{width:211.585600pt;}
._76{width:214.236800pt;}
._35{width:216.532427pt;}
._39{width:217.532800pt;}
._57{width:219.057600pt;}
._6c{width:220.836427pt;}
._b6{width:223.080160pt;}
._42{width:224.685333pt;}
._45{width:226.764267pt;}
._34{width:227.732800pt;}
._83{width:228.647467pt;}
._56{width:230.297227pt;}
._43{width:231.304000pt;}
._b8{width:232.655627pt;}
._3f{width:233.807467pt;}
._af{width:236.511787pt;}
._6d{width:238.644427pt;}
._40{width:240.164267pt;}
._77{width:244.391467pt;}
._9c{width:246.362469pt;}
._72{width:247.980800pt;}
._78{width:249.396427pt;}
._a6{width:250.589829pt;}
._2b{width:256.010667pt;}
._79{width:257.591467pt;}
._f3{width:259.465760pt;}
._4e{width:260.376533pt;}
._67{width:262.572800pt;}
._7b{width:264.839467pt;}
._3b{width:265.788800pt;}
._7a{width:267.143467pt;}
._b9{width:269.534720pt;}
._48{width:270.500800pt;}
._118{width:279.359093pt;}
._68{width:281.004800pt;}
._49{width:282.907200pt;}
._3e{width:285.124800pt;}
._82{width:287.721760pt;}
._da{width:289.528693pt;}
._75{width:293.399467pt;}
._73{width:296.124800pt;}
._4d{width:297.529600pt;}
._81{width:300.503467pt;}
._7f{width:304.652800pt;}
._a8{width:308.873600pt;}
._3c{width:311.146133pt;}
._88{width:313.070400pt;}
._c0{width:316.429653pt;}
._9a{width:317.858864pt;}
._92{width:320.078400pt;}
._10b{width:321.097760pt;}
._8d{width:325.484800pt;}
._14c{width:326.572053pt;}
._93{width:332.194507pt;}
._aa{width:336.168512pt;}
._3a{width:337.530133pt;}
._9d{width:346.238933pt;}
._a1{width:348.974400pt;}
._b3{width:353.328160pt;}
._d0{width:356.605600pt;}
._14b{width:358.863093pt;}
._127{width:364.200160pt;}
._102{width:368.058400pt;}
._15f{width:372.096000pt;}
._e9{width:379.954117pt;}
._9e{width:383.709173pt;}
._ee{width:391.154133pt;}
._112{width:392.886560pt;}
._ca{width:395.711787pt;}
._12{width:398.302560pt;}
._f1{width:403.298133pt;}
._117{width:404.665760pt;}
._110{width:407.505797pt;}
._113{width:412.487467pt;}
._d9{width:414.835360pt;}
._e1{width:418.520160pt;}
._15b{width:419.766064pt;}
._a2{width:421.181333pt;}
._d2{width:422.657067pt;}
._116{width:424.631467pt;}
._ef{width:429.602133pt;}
._a4{width:432.553600pt;}
._d7{width:434.801067pt;}
._115{width:440.615467pt;}
._ed{width:443.428427pt;}
._a5{width:444.956267pt;}
._fe{width:448.274133pt;}
._ad{width:450.423093pt;}
._5e{width:451.459733pt;}
._b5{width:453.850293pt;}
._fd{width:455.255467pt;}
._14f{width:457.043893pt;}
._f0{width:459.231093pt;}
._d3{width:461.105067pt;}
._bc{width:462.146293pt;}
._126{width:463.239627pt;}
._10a{width:464.930133pt;}
._11f{width:469.607467pt;}
._e0{width:471.355200pt;}
._1f{width:472.435733pt;}
._d1{width:474.931360pt;}
._df{width:478.363733pt;}
._e7{width:479.777067pt;}
._108{width:480.914133pt;}
._f7{width:481.826133pt;}
._d6{width:485.862400pt;}
._f2{width:488.183467pt;}
._84{width:489.412267pt;}
._d5{width:490.638027pt;}
._c3{width:495.054400pt;}
._11e{width:496.151467pt;}
._11d{width:503.159467pt;}
._105{width:505.060427pt;}
._e6{width:506.200693pt;}
._e2{width:507.304693pt;}
._f8{width:508.692427pt;}
._fc{width:509.663627pt;}
._159{width:512.041600pt;}
._109{width:515.991467pt;}
._b2{width:517.103664pt;}
._e5{width:520.625067pt;}
._fb{width:524.087467pt;}
._dd{width:526.105600pt;}
._11c{width:528.647467pt;}
._f5{width:529.568533pt;}
._c1{width:530.644427pt;}
._cc{width:532.170240pt;}
._123{width:534.336533pt;}
._cf{width:536.261333pt;}
._b7{width:540.220427pt;}
._e8{width:541.470027pt;}
._be{width:542.446597pt;}
._ff{width:544.932427pt;}
._114{width:547.751467pt;}
._db{width:549.108267pt;}
._15a{width:550.694560pt;}
._e4{width:552.593067pt;}
._ba{width:554.416197pt;}
._fa{width:556.055467pt;}
._d4{width:557.921067pt;}
._eb{width:559.226133pt;}
._c8{width:563.260267pt;}
._de{width:565.144693pt;}
._10e{width:566.114133pt;}
._f6{width:568.607627pt;}
._10c{width:569.855627pt;}
._10f{width:571.599093pt;}
._129{width:579.552533pt;}
._15e{width:583.026293pt;}
._cb{width:584.469867pt;}
._111{width:585.860267pt;}
._107{width:588.303093pt;}
._11a{width:589.940960pt;}
._10d{width:595.274293pt;}
._153{width:596.388267pt;}
._c4{width:599.145067pt;}
._152{width:603.529600pt;}
._e3{width:606.291360pt;}
._151{width:607.321600pt;}
._158{width:608.857600pt;}
._f9{width:609.754293pt;}
._128{width:611.968000pt;}
._155{width:616.980267pt;}
._ab{width:629.717867pt;}
._124{width:631.152533pt;}
._ec{width:633.328533pt;}
._12e{width:640.644800pt;}
._145{width:655.486347pt;}
._15d{width:671.303627pt;}
._5f{width:676.202133pt;}
._20{width:701.154133pt;}
._13c{width:702.242293pt;}
._13b{width:703.682293pt;}
._14a{width:777.992731pt;}
._146{width:823.353584pt;}
._13a{width:827.548960pt;}
._144{width:829.788053pt;}
._139{width:834.468373pt;}
._131{width:835.370667pt;}
._137{width:847.514667pt;}
._12c{width:849.839467pt;}
._13d{width:861.301973pt;}
._134{width:863.498667pt;}
._12f{width:865.557867pt;}
._15c{width:869.060587pt;}
._132{width:873.818667pt;}
._140{width:879.146667pt;}
._147{width:880.521760pt;}
._130{width:887.644960pt;}
._138{width:897.434667pt;}
._136{width:898.576000pt;}
._13e{width:902.149333pt;}
._135{width:903.447627pt;}
._143{width:907.065760pt;}
._142{width:914.073760pt;}
._148{width:936.284800pt;}
._149{width:941.769760pt;}
._141{width:951.530667pt;}
._13f{width:952.778667pt;}
._133{width:970.634667pt;}
._101{width:1235.801067pt;}
._164{width:1570.814773pt;}
._17{width:1662.965333pt;}
._10{width:1695.145227pt;}
._e{width:1698.373333pt;}
._157{width:2088.962453pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:38.400000pt;}
.fse{font-size:42.666667pt;}
.fs10{font-size:45.333333pt;}
.fsd{font-size:46.933333pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:74.666667pt;}
.fs7{font-size:79.130667pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:96.000000pt;}
.fs6{font-size:109.104000pt;}
.fs9{font-size:117.333333pt;}
.fs5{font-size:131.997333pt;}
.y0{bottom:0.000000pt;}
.y156{bottom:6.154267pt;}
.y28d{bottom:6.788000pt;}
.y2eb{bottom:6.788400pt;}
.y7f{bottom:7.326933pt;}
.y7e{bottom:21.726667pt;}
.y154{bottom:26.745467pt;}
.y2ea{bottom:29.946000pt;}
.y7b{bottom:40.078133pt;}
.y155{bottom:41.145200pt;}
.y28c{bottom:41.283467pt;}
.y2e7{bottom:41.283867pt;}
.y153{bottom:51.416667pt;}
.y15e{bottom:54.083333pt;}
.y7a{bottom:54.477867pt;}
.y79{bottom:64.181600pt;}
.y74{bottom:65.283333pt;}
.y2ef{bottom:81.733333pt;}
.yf2{bottom:82.100000pt;}
.y157{bottom:82.787600pt;}
.y15f{bottom:82.787733pt;}
.y4{bottom:86.333337pt;}
.y28b{bottom:91.150667pt;}
.y2e6{bottom:91.151067pt;}
.y39e{bottom:92.000667pt;}
.y2ee{bottom:94.533333pt;}
.yf1{bottom:94.900000pt;}
.y31d{bottom:94.922267pt;}
.y42c{bottom:101.416000pt;}
.y15d{bottom:103.416667pt;}
.y39d{bottom:106.400667pt;}
.yf0{bottom:107.700000pt;}
.y31c{bottom:107.722267pt;}
.y2e2{bottom:112.666667pt;}
.y2ec{bottom:113.141867pt;}
.y78{bottom:114.048933pt;}
.y73{bottom:115.150533pt;}
.y160{bottom:116.896533pt;}
.y152{bottom:118.083333pt;}
.y42b{bottom:118.216000pt;}
.yef{bottom:120.500000pt;}
.y31b{bottom:120.522267pt;}
.y39c{bottom:120.800667pt;}
.y28e{bottom:123.431200pt;}
.y1f{bottom:123.790666pt;}
.y258{bottom:125.133333pt;}
.y1b3{bottom:127.997333pt;}
.y8e{bottom:128.000667pt;}
.y18a{bottom:128.000800pt;}
.yb7{bottom:129.266667pt;}
.y19a{bottom:132.866667pt;}
.yee{bottom:133.300000pt;}
.y1b2{bottom:133.332000pt;}
.y1b1{bottom:133.332133pt;}
.y1b0{bottom:133.332267pt;}
.y1af{bottom:133.332400pt;}
.y1ae{bottom:133.332533pt;}
.y1ad{bottom:133.332667pt;}
.y19b{bottom:133.332800pt;}
.y42a{bottom:135.016000pt;}
.y39b{bottom:135.200667pt;}
.y257{bottom:137.933333pt;}
.y31a{bottom:138.988933pt;}
.y28a{bottom:141.017200pt;}
.y2e5{bottom:141.017600pt;}
.y80{bottom:142.037200pt;}
.y197{bottom:142.400667pt;}
.y189{bottom:142.400800pt;}
.y14d{bottom:143.500933pt;}
.yb6{bottom:143.666667pt;}
.y4a{bottom:145.487733pt;}
.y8d{bottom:146.000667pt;}
.yed{bottom:146.100000pt;}
.y1e6{bottom:147.266667pt;}
.y411{bottom:147.333333pt;}
.y39a{bottom:149.600667pt;}
.y429{bottom:151.816000pt;}
.y15c{bottom:152.750667pt;}
.y319{bottom:155.988933pt;}
.y256{bottom:156.400000pt;}
.y284{bottom:156.533333pt;}
.y8c{bottom:156.800667pt;}
.y188{bottom:156.800800pt;}
.y349{bottom:157.864533pt;}
.y199{bottom:158.066667pt;}
.y29b{bottom:159.988933pt;}
.yb5{bottom:161.666667pt;}
.y14c{bottom:162.167600pt;}
.y410{bottom:163.333333pt;}
.y77{bottom:163.915467pt;}
.y49{bottom:164.154400pt;}
.yec{bottom:164.566667pt;}
.y72{bottom:165.017067pt;}
.y399{bottom:167.600667pt;}
.y29a{bottom:168.255600pt;}
.y428{bottom:168.616000pt;}
.y283{bottom:169.333333pt;}
.y255{bottom:170.800000pt;}
.y196{bottom:171.200667pt;}
.y187{bottom:171.200800pt;}
.y122{bottom:171.221200pt;}
.yb4{bottom:172.466667pt;}
.y318{bottom:172.988933pt;}
.y8b{bottom:174.800667pt;}
.y16{bottom:175.052000pt;}
.y198{bottom:176.066667pt;}
.y348{bottom:176.389600pt;}
.y3cb{bottom:176.468267pt;}
.yeb{bottom:178.400000pt;}
.y398{bottom:178.400667pt;}
.y166{bottom:178.655600pt;}
.y40f{bottom:179.333333pt;}
.y14b{bottom:180.834267pt;}
.y48{bottom:182.821067pt;}
.y151{bottom:184.750667pt;}
.y254{bottom:185.200000pt;}
.y427{bottom:185.416000pt;}
.y186{bottom:185.600800pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y1e5{bottom:186.866667pt;}
.y299{bottom:186.922267pt;}
.y282{bottom:187.800000pt;}
.y195{bottom:189.200667pt;}
.y317{bottom:189.988933pt;}
.yb3{bottom:190.466667pt;}
.y121{bottom:190.666667pt;}
.y289{bottom:190.883733pt;}
.y2e4{bottom:190.884133pt;}
.y7d{bottom:191.783333pt;}
.yea{bottom:192.233333pt;}
.y397{bottom:192.800667pt;}
.y347{bottom:193.389600pt;}
.y40e{bottom:195.333333pt;}
.y3ca{bottom:196.566667pt;}
.y165{bottom:197.322267pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y1e2{bottom:198.255600pt;}
.y8a{bottom:199.067333pt;}
.y14a{bottom:199.500933pt;}
.y194{bottom:200.000667pt;}
.y185{bottom:200.000800pt;}
.y1e4{bottom:201.266667pt;}
.y47{bottom:201.487733pt;}
.y15b{bottom:202.084000pt;}
.y253{bottom:202.200000pt;}
.y316{bottom:204.322267pt;}
.y120{bottom:205.066667pt;}
.y298{bottom:205.588933pt;}
.y2e9{bottom:205.767600pt;}
.ye9{bottom:206.066667pt;}
.y396{bottom:207.200667pt;}
.y346{bottom:207.722933pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y2ed{bottom:210.346400pt;}
.y1e1{bottom:211.055600pt;}
.y40d{bottom:211.333333pt;}
.y76{bottom:213.782000pt;}
.y193{bottom:214.400667pt;}
.y7c{bottom:214.852933pt;}
.y71{bottom:214.883467pt;}
.y226{bottom:215.666667pt;}
.yb2{bottom:215.988933pt;}
.y3c9{bottom:216.400000pt;}
.y252{bottom:216.600000pt;}
.y89{bottom:217.734000pt;}
.y184{bottom:218.000800pt;}
.y149{bottom:218.167600pt;}
.y315{bottom:218.655600pt;}
.y1e3{bottom:219.266667pt;}
.y11f{bottom:219.466667pt;}
.ye8{bottom:219.900000pt;}
.y2e8{bottom:220.167333pt;}
.y345{bottom:222.056267pt;}
.y1e0{bottom:223.855600pt;}
.y297{bottom:224.255600pt;}
.y395{bottom:225.200667pt;}
.y2f{bottom:226.000000pt;}
.y40c{bottom:227.333333pt;}
.y192{bottom:228.800667pt;}
.y183{bottom:228.800800pt;}
.y225{bottom:230.066667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y314{bottom:232.988933pt;}
.y281{bottom:233.600000pt;}
.ye7{bottom:233.733333pt;}
.yb1{bottom:234.655600pt;}
.y3c8{bottom:236.233333pt;}
.y251{bottom:236.266667pt;}
.y344{bottom:236.389600pt;}
.y88{bottom:236.400667pt;}
.y1df{bottom:236.655600pt;}
.y148{bottom:236.834267pt;}
.y46{bottom:238.821067pt;}
.y11e{bottom:239.133333pt;}
.y2e{bottom:240.400000pt;}
.y288{bottom:240.750267pt;}
.y2e3{bottom:240.750667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y296{bottom:242.922267pt;}
.y191{bottom:243.200667pt;}
.y182{bottom:243.200800pt;}
.y40b{bottom:243.333333pt;}
.ye6{bottom:247.566667pt;}
.y280{bottom:248.000000pt;}
.y224{bottom:248.066667pt;}
.y313{bottom:249.988933pt;}
.y3c7{bottom:250.066800pt;}
.y343{bottom:250.722933pt;}
.y150{bottom:251.417333pt;}
.y394{bottom:252.436133pt;}
.y1de{bottom:252.455600pt;}
.yb0{bottom:253.322267pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y11d{bottom:253.533333pt;}
.y2d{bottom:254.800000pt;}
.y87{bottom:255.067333pt;}
.y147{bottom:255.500933pt;}
.y250{bottom:255.933333pt;}
.y45{bottom:257.487733pt;}
.y190{bottom:257.600667pt;}
.y223{bottom:258.866667pt;}
.y40a{bottom:259.333333pt;}
.y19c{bottom:259.464267pt;}
.y181{bottom:261.200800pt;}
.ye5{bottom:261.400000pt;}
.y295{bottom:261.588933pt;}
.y75{bottom:263.648400pt;}
.y3c6{bottom:263.666800pt;}
.y312{bottom:264.322267pt;}
.y70{bottom:264.750000pt;}
.y342{bottom:265.056267pt;}
.y373{bottom:265.866933pt;}
.y1dd{bottom:266.055600pt;}
.y27f{bottom:267.666667pt;}
.y2c{bottom:269.200000pt;}
.y24f{bottom:270.266667pt;}
.y393{bottom:271.102800pt;}
.yaf{bottom:271.988933pt;}
.y180{bottom:272.000800pt;}
.y11c{bottom:273.200000pt;}
.y86{bottom:273.734000pt;}
.y146{bottom:274.167600pt;}
.y200{bottom:274.588933pt;}
.ye4{bottom:275.233333pt;}
.y409{bottom:275.333333pt;}
.y18f{bottom:275.600667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y44{bottom:276.154400pt;}
.y222{bottom:276.866667pt;}
.y311{bottom:278.655600pt;}
.y372{bottom:278.666933pt;}
.y341{bottom:279.389600pt;}
.y1dc{bottom:279.888933pt;}
.y294{bottom:280.255600pt;}
.y161{bottom:280.733333pt;}
.y25{bottom:281.448133pt;}
.y3c5{bottom:283.500000pt;}
.y2b{bottom:283.600000pt;}
.y24e{bottom:284.600000pt;}
.y18e{bottom:286.400667pt;}
.y17f{bottom:286.400800pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y27e{bottom:287.333333pt;}
.y1ff{bottom:287.388933pt;}
.y11b{bottom:287.600000pt;}
.y392{bottom:289.769467pt;}
.yae{bottom:290.655600pt;}
.y408{bottom:291.333333pt;}
.y371{bottom:291.466933pt;}
.ye3{bottom:291.733333pt;}
.y85{bottom:292.400667pt;}
.y2b3{bottom:292.600000pt;}
.y145{bottom:292.834267pt;}
.y310{bottom:292.988933pt;}
.y1db{bottom:293.722267pt;}
.y340{bottom:293.722933pt;}
.y43{bottom:294.821067pt;}
.y2c1{bottom:295.266667pt;}
.y3c4{bottom:297.100000pt;}
.y15a{bottom:298.866667pt;}
.y293{bottom:298.922267pt;}
.y24d{bottom:298.933333pt;}
.y1fe{bottom:300.188933pt;}
.y18d{bottom:300.800667pt;}
.y17e{bottom:300.800800pt;}
.y27d{bottom:301.666667pt;}
.y370{bottom:304.266933pt;}
.y11a{bottom:304.600000pt;}
.y2b2{bottom:305.400000pt;}
.y30f{bottom:307.322267pt;}
.y407{bottom:307.333333pt;}
.y1da{bottom:307.555600pt;}
.y33f{bottom:308.056267pt;}
.y2c0{bottom:308.066667pt;}
.y391{bottom:308.436133pt;}
.y24{bottom:308.724133pt;}
.yad{bottom:309.322267pt;}
.yd{bottom:309.452000pt;}
.ye2{bottom:310.900000pt;}
.y3c3{bottom:310.933467pt;}
.y84{bottom:311.067333pt;}
.y144{bottom:311.500933pt;}
.y1fd{bottom:312.988933pt;}
.y42{bottom:313.487733pt;}
.y18c{bottom:315.200667pt;}
.y24c{bottom:315.933333pt;}
.y27c{bottom:316.000000pt;}
.y36f{bottom:317.066933pt;}
.y292{bottom:317.588933pt;}
.y2b1{bottom:318.200000pt;}
.y17d{bottom:318.800800pt;}
.y119{bottom:318.933333pt;}
.y2bf{bottom:320.866667pt;}
.y1d9{bottom:321.388933pt;}
.y30e{bottom:321.655600pt;}
.y33e{bottom:322.389600pt;}
.y406{bottom:323.333333pt;}
.y3c2{bottom:324.533467pt;}
.ye1{bottom:324.733333pt;}
.y390{bottom:327.102800pt;}
.yac{bottom:327.988933pt;}
.y17c{bottom:329.600800pt;}
.y36e{bottom:329.866933pt;}
.y143{bottom:330.167600pt;}
.y24b{bottom:330.266667pt;}
.y27b{bottom:330.333333pt;}
.y1fc{bottom:331.455600pt;}
.y41{bottom:332.154400pt;}
.y18b{bottom:333.200667pt;}
.y118{bottom:333.266667pt;}
.y1d8{bottom:335.222267pt;}
.y30d{bottom:335.988933pt;}
.y291{bottom:336.255600pt;}
.y2b0{bottom:336.666800pt;}
.y33d{bottom:336.722933pt;}
.ye0{bottom:338.566667pt;}
.y2be{bottom:339.333333pt;}
.y83{bottom:342.534000pt;}
.yc{bottom:343.809333pt;}
.y17b{bottom:344.000800pt;}
.y3c1{bottom:344.366667pt;}
.y24a{bottom:344.600000pt;}
.y38f{bottom:345.769467pt;}
.y1fb{bottom:345.788933pt;}
.y221{bottom:346.200000pt;}
.yab{bottom:346.655600pt;}
.y27a{bottom:347.333333pt;}
.y19d{bottom:347.374267pt;}
.y117{bottom:347.600000pt;}
.y36d{bottom:348.000267pt;}
.y142{bottom:348.834267pt;}
.y1d7{bottom:349.055600pt;}
.y40{bottom:350.821067pt;}
.y33c{bottom:351.056267pt;}
.ydf{bottom:352.400000pt;}
.y30c{bottom:352.988933pt;}
.y405{bottom:355.333333pt;}
.y82{bottom:355.334000pt;}
.y2bd{bottom:356.333333pt;}
.y2af{bottom:356.333467pt;}
.y3c0{bottom:357.966667pt;}
.y17a{bottom:358.400800pt;}
.y249{bottom:358.933333pt;}
.y1fa{bottom:360.188933pt;}
.y36c{bottom:361.333600pt;}
.y279{bottom:361.666667pt;}
.y116{bottom:361.933333pt;}
.yb{bottom:362.706666pt;}
.y1d6{bottom:362.888933pt;}
.y38e{bottom:364.436133pt;}
.y220{bottom:364.866667pt;}
.yaa{bottom:365.322267pt;}
.yde{bottom:366.233333pt;}
.y141{bottom:367.500933pt;}
.y23{bottom:368.000000pt;}
.y81{bottom:368.134000pt;}
.y3f{bottom:369.487733pt;}
.y30b{bottom:369.988933pt;}
.y2bc{bottom:370.666667pt;}
.y2ae{bottom:370.666800pt;}
.y33b{bottom:370.722933pt;}
.y404{bottom:371.333333pt;}
.y248{bottom:373.266667pt;}
.y2e1{bottom:374.266667pt;}
.y1f9{bottom:374.522267pt;}
.y36b{bottom:374.666933pt;}
.y278{bottom:376.000000pt;}
.y115{bottom:376.266667pt;}
.y179{bottom:376.400800pt;}
.y1d5{bottom:376.722267pt;}
.y3bf{bottom:377.800000pt;}
.ydd{bottom:380.066667pt;}
.y6f{bottom:380.934667pt;}
.y38d{bottom:383.102800pt;}
.y21f{bottom:383.533333pt;}
.ya9{bottom:383.988933pt;}
.y33a{bottom:384.056267pt;}
.y30a{bottom:384.322267pt;}
.y2bb{bottom:385.000000pt;}
.y2ad{bottom:385.000133pt;}
.y140{bottom:386.167600pt;}
.y403{bottom:387.333333pt;}
.y247{bottom:387.600000pt;}
.y36a{bottom:388.000267pt;}
.y3e{bottom:388.154400pt;}
.y1f8{bottom:388.855600pt;}
.y277{bottom:390.333333pt;}
.y1d4{bottom:390.555600pt;}
.y114{bottom:390.600000pt;}
.y290{bottom:392.255600pt;}
.ydc{bottom:393.900000pt;}
.y3be{bottom:397.633333pt;}
.y2ba{bottom:399.333333pt;}
.y2ac{bottom:399.333467pt;}
.y22{bottom:400.000000pt;}
.y309{bottom:401.322267pt;}
.y38c{bottom:401.769467pt;}
.y246{bottom:401.933333pt;}
.y21e{bottom:402.200000pt;}
.ya8{bottom:402.655600pt;}
.y1f7{bottom:403.188933pt;}
.y402{bottom:403.333333pt;}
.y339{bottom:403.722933pt;}
.y19f{bottom:404.335867pt;}
.y1d3{bottom:404.388933pt;}
.y276{bottom:404.666667pt;}
.y13f{bottom:404.834267pt;}
.y113{bottom:404.933333pt;}
.y28f{bottom:405.055600pt;}
.y19e{bottom:406.598000pt;}
.y369{bottom:406.666933pt;}
.y3d{bottom:406.821067pt;}
.ydb{bottom:407.733333pt;}
.y3bd{bottom:411.466667pt;}
.y308{bottom:415.655600pt;}
.y245{bottom:416.266667pt;}
.y2b9{bottom:416.333333pt;}
.y2ab{bottom:416.333467pt;}
.y2e0{bottom:417.466667pt;}
.y1f6{bottom:417.522267pt;}
.y1d2{bottom:418.222267pt;}
.y275{bottom:419.000000pt;}
.y112{bottom:419.266667pt;}
.y401{bottom:419.333333pt;}
.y368{bottom:419.466933pt;}
.y38b{bottom:420.436133pt;}
.y21d{bottom:420.866667pt;}
.ya7{bottom:421.322267pt;}
.yda{bottom:421.566667pt;}
.y287{bottom:423.189333pt;}
.y13e{bottom:423.500933pt;}
.y3bc{bottom:425.066667pt;}
.y3c{bottom:425.487733pt;}
.y178{bottom:428.255733pt;}
.y338{bottom:429.056267pt;}
.y307{bottom:429.988933pt;}
.y244{bottom:430.600000pt;}
.y2b8{bottom:430.666667pt;}
.y2aa{bottom:430.666800pt;}
.y1f5{bottom:431.855600pt;}
.y1d1{bottom:432.055600pt;}
.y274{bottom:433.333333pt;}
.y111{bottom:433.600000pt;}
.y400{bottom:435.333333pt;}
.yd9{bottom:435.400000pt;}
.y2df{bottom:435.933333pt;}
.y367{bottom:438.133600pt;}
.y38a{bottom:439.102800pt;}
.y21c{bottom:439.533333pt;}
.y2a{bottom:439.866667pt;}
.ya6{bottom:439.988933pt;}
.y13d{bottom:442.167600pt;}
.y306{bottom:444.322267pt;}
.y3bb{bottom:444.900000pt;}
.y243{bottom:444.933333pt;}
.y2b7{bottom:445.000000pt;}
.y2a9{bottom:445.000133pt;}
.y1d0{bottom:445.888933pt;}
.y1f4{bottom:446.255600pt;}
.y337{bottom:446.656267pt;}
.y177{bottom:446.922400pt;}
.y273{bottom:447.666667pt;}
.y110{bottom:447.933333pt;}
.y3ff{bottom:451.333333pt;}
.yd8{bottom:451.900000pt;}
.y2de{bottom:452.933333pt;}
.y1a1{bottom:454.794133pt;}
.y1a0{bottom:457.056267pt;}
.y21b{bottom:458.200000pt;}
.y164{bottom:458.655600pt;}
.y3ba{bottom:458.733333pt;}
.y242{bottom:459.266667pt;}
.y2b6{bottom:459.333333pt;}
.y2a8{bottom:459.333467pt;}
.y1cf{bottom:459.722267pt;}
.y1f3{bottom:460.588933pt;}
.y13c{bottom:460.834267pt;}
.y272{bottom:462.000000pt;}
.y29{bottom:462.266667pt;}
.y366{bottom:462.467067pt;}
.ya{bottom:462.990669pt;}
.y176{bottom:465.589067pt;}
.y2dd{bottom:467.266667pt;}
.y3fe{bottom:467.333333pt;}
.y3b9{bottom:472.333467pt;}
.y1ce{bottom:473.555600pt;}
.y241{bottom:473.600000pt;}
.y2b5{bottom:473.666667pt;}
.y2a7{bottom:473.666800pt;}
.yd7{bottom:473.733333pt;}
.y1f2{bottom:474.922267pt;}
.y305{bottom:475.655600pt;}
.y271{bottom:476.333333pt;}
.y389{bottom:476.436133pt;}
.y10f{bottom:476.600000pt;}
.y64{bottom:476.666667pt;}
.y21a{bottom:476.866667pt;}
.ya5{bottom:477.322267pt;}
.y9{bottom:478.990666pt;}
.y13b{bottom:479.500933pt;}
.y2dc{bottom:481.600000pt;}
.y365{bottom:482.133733pt;}
.y3fd{bottom:483.333333pt;}
.y175{bottom:484.255733pt;}
.y336{bottom:487.189600pt;}
.y1cd{bottom:487.388933pt;}
.y240{bottom:487.933333pt;}
.y2b4{bottom:488.000000pt;}
.y2a6{bottom:488.000133pt;}
.y1f1{bottom:489.255600pt;}
.y304{bottom:489.988933pt;}
.y270{bottom:490.666667pt;}
.y10e{bottom:490.933333pt;}
.y3b8{bottom:492.166800pt;}
.yd6{bottom:492.900000pt;}
.y8{bottom:494.990666pt;}
.y63{bottom:495.333333pt;}
.y219{bottom:495.533333pt;}
.ya4{bottom:495.988933pt;}
.y364{bottom:496.533600pt;}
.y3e3{bottom:496.537200pt;}
.y2db{bottom:498.600000pt;}
.y1a3{bottom:498.749200pt;}
.y3fc{bottom:499.333333pt;}
.y335{bottom:499.989600pt;}
.y1cc{bottom:501.222267pt;}
.y174{bottom:502.922400pt;}
.y1f0{bottom:503.588933pt;}
.y303{bottom:504.322267pt;}
.y26f{bottom:505.000000pt;}
.y2a5{bottom:505.000133pt;}
.y388{bottom:505.236133pt;}
.y10d{bottom:505.266667pt;}
.y3b7{bottom:506.000133pt;}
.yd5{bottom:506.500000pt;}
.y23f{bottom:507.600000pt;}
.y3e2{bottom:509.337200pt;}
.y2da{bottom:512.933333pt;}
.y1a2{bottom:513.365067pt;}
.y62{bottom:514.000000pt;}
.y218{bottom:514.200000pt;}
.ya3{bottom:514.655600pt;}
.y1cb{bottom:515.055600pt;}
.y3fb{bottom:515.333333pt;}
.y363{bottom:516.200267pt;}
.y13a{bottom:516.834267pt;}
.y1ef{bottom:517.922267pt;}
.y334{bottom:518.456267pt;}
.y302{bottom:518.655600pt;}
.y26e{bottom:519.333333pt;}
.y2a4{bottom:519.333467pt;}
.y10c{bottom:519.666667pt;}
.yd4{bottom:520.333333pt;}
.y23e{bottom:521.933333pt;}
.y3b6{bottom:525.833333pt;}
.y2d9{bottom:527.266667pt;}
.y3e1{bottom:527.803867pt;}
.y1ca{bottom:528.888933pt;}
.y3fa{bottom:531.333333pt;}
.y1ee{bottom:532.322267pt;}
.y61{bottom:532.666667pt;}
.y333{bottom:532.856267pt;}
.y217{bottom:532.866667pt;}
.y301{bottom:532.988933pt;}
.y362{bottom:533.200267pt;}
.ya2{bottom:533.322267pt;}
.y10b{bottom:534.000000pt;}
.yd3{bottom:534.166667pt;}
.y23d{bottom:536.266667pt;}
.y26d{bottom:536.333333pt;}
.y2a3{bottom:536.333467pt;}
.y3b5{bottom:539.433333pt;}
.y173{bottom:540.255733pt;}
.y3e0{bottom:541.403867pt;}
.y2d8{bottom:541.600000pt;}
.y1c9{bottom:542.722267pt;}
.y139{bottom:545.634267pt;}
.y1ed{bottom:546.655600pt;}
.y3f9{bottom:547.333333pt;}
.yd2{bottom:548.000000pt;}
.y1a4{bottom:549.207467pt;}
.y332{bottom:549.856267pt;}
.y300{bottom:549.988933pt;}
.y361{bottom:550.200267pt;}
.y23c{bottom:550.600000pt;}
.y26c{bottom:550.666667pt;}
.y2a2{bottom:550.666800pt;}
.y60{bottom:551.333333pt;}
.y216{bottom:551.533333pt;}
.ya1{bottom:551.988933pt;}
.y387{bottom:552.702800pt;}
.y3b4{bottom:553.266667pt;}
.y10a{bottom:553.666667pt;}
.y426{bottom:555.016000pt;}
.y2d7{bottom:555.933333pt;}
.y1c8{bottom:556.555600pt;}
.y172{bottom:558.922400pt;}
.y1ec{bottom:560.988933pt;}
.yd1{bottom:561.833333pt;}
.y3f8{bottom:563.333333pt;}
.y331{bottom:564.256267pt;}
.y2ff{bottom:564.322267pt;}
.y26b{bottom:565.000000pt;}
.y2a1{bottom:565.000133pt;}
.y3b3{bottom:566.866800pt;}
.y360{bottom:567.200267pt;}
.y109{bottom:568.066667pt;}
.y5f{bottom:570.000000pt;}
.y23b{bottom:570.266667pt;}
.y1c7{bottom:570.388933pt;}
.y3df{bottom:570.404533pt;}
.ya0{bottom:570.655600pt;}
.y159{bottom:571.133333pt;}
.y386{bottom:571.369467pt;}
.y425{bottom:571.816000pt;}
.y2d6{bottom:572.933333pt;}
.y7{bottom:573.786667pt;}
.y138{bottom:574.434267pt;}
.y1eb{bottom:575.322267pt;}
.yd0{bottom:575.666667pt;}
.y52{bottom:577.390267pt;}
.y171{bottom:577.589067pt;}
.y2fe{bottom:578.655600pt;}
.y26a{bottom:579.333333pt;}
.y2a0{bottom:579.333467pt;}
.y330{bottom:581.256267pt;}
.y35f{bottom:581.533600pt;}
.y108{bottom:582.400000pt;}
.y3de{bottom:584.004533pt;}
.y1c6{bottom:584.222267pt;}
.y23a{bottom:584.600000pt;}
.y3b2{bottom:586.700000pt;}
.y2d5{bottom:587.266667pt;}
.y424{bottom:588.616000pt;}
.y5e{bottom:588.666667pt;}
.y9f{bottom:589.322267pt;}
.ycf{bottom:589.500000pt;}
.y385{bottom:590.036133pt;}
.y1ea{bottom:592.322267pt;}
.y6{bottom:592.685334pt;}
.y2fd{bottom:592.988933pt;}
.y3f7{bottom:595.333333pt;}
.y35e{bottom:595.866933pt;}
.y170{bottom:596.255733pt;}
.y269{bottom:596.333333pt;}
.y29f{bottom:596.333467pt;}
.y107{bottom:596.800000pt;}
.y1c5{bottom:598.055600pt;}
.y32f{bottom:598.256267pt;}
.y239{bottom:598.933333pt;}
.y3b1{bottom:600.300000pt;}
.y137{bottom:603.234400pt;}
.yce{bottom:603.333333pt;}
.y3dd{bottom:603.837867pt;}
.y2d4{bottom:604.266667pt;}
.y423{bottom:605.416000pt;}
.y1e9{bottom:606.722267pt;}
.y2fc{bottom:607.322267pt;}
.y5d{bottom:607.333333pt;}
.y215{bottom:607.533333pt;}
.y9e{bottom:607.988933pt;}
.y384{bottom:608.702800pt;}
.y35d{bottom:610.200267pt;}
.y268{bottom:610.666667pt;}
.y29e{bottom:610.666800pt;}
.y106{bottom:611.133333pt;}
.y1c4{bottom:611.888933pt;}
.y32e{bottom:612.656267pt;}
.y238{bottom:613.266667pt;}
.y3f6{bottom:614.000000pt;}
.y3b0{bottom:614.133333pt;}
.y51{bottom:614.723600pt;}
.y16f{bottom:614.922400pt;}
.y136{bottom:616.034400pt;}
.ycd{bottom:617.166667pt;}
.y3dc{bottom:617.437867pt;}
.y2d3{bottom:618.600000pt;}
.y214{bottom:620.333333pt;}
.y2fb{bottom:621.655600pt;}
.y422{bottom:622.216000pt;}
.y1e8{bottom:623.722267pt;}
.y35c{bottom:624.533600pt;}
.y267{bottom:625.000000pt;}
.y29d{bottom:625.000133pt;}
.y105{bottom:625.466667pt;}
.y1c3{bottom:625.722267pt;}
.y5c{bottom:626.000000pt;}
.y28{bottom:626.533333pt;}
.y163{bottom:626.655600pt;}
.y32d{bottom:626.989600pt;}
.y3f5{bottom:627.333333pt;}
.y383{bottom:627.369467pt;}
.y237{bottom:627.600133pt;}
.y3af{bottom:627.733333pt;}
.y135{bottom:628.834267pt;}
.y2d2{bottom:632.933333pt;}
.y213{bottom:633.133333pt;}
.y16e{bottom:633.589067pt;}
.y158{bottom:634.600000pt;}
.y2fa{bottom:635.988933pt;}
.ycc{bottom:636.333333pt;}
.y3db{bottom:637.271200pt;}
.y35b{bottom:638.866933pt;}
.y421{bottom:639.016000pt;}
.y266{bottom:639.333333pt;}
.y29c{bottom:639.333467pt;}
.y1c2{bottom:639.555600pt;}
.y104{bottom:639.800000pt;}
.y32c{bottom:641.322933pt;}
.y3ae{bottom:641.566667pt;}
.y134{bottom:641.634267pt;}
.y236{bottom:642.000133pt;}
.y3f4{bottom:643.333333pt;}
.y5b{bottom:644.666667pt;}
.y9d{bottom:645.322267pt;}
.y5{bottom:645.598667pt;}
.y212{bottom:645.933333pt;}
.y382{bottom:646.036133pt;}
.y1e7{bottom:646.388933pt;}
.y2d1{bottom:647.266667pt;}
.ycb{bottom:649.933333pt;}
.y2f9{bottom:650.322267pt;}
.y3da{bottom:651.104533pt;}
.y50{bottom:652.056933pt;}
.y16d{bottom:652.255733pt;}
.y14f{bottom:652.733333pt;}
.y35a{bottom:653.200267pt;}
.y1c1{bottom:653.388933pt;}
.y103{bottom:654.133333pt;}
.y133{bottom:654.434267pt;}
.y420{bottom:655.816000pt;}
.y265{bottom:656.333333pt;}
.y235{bottom:656.333467pt;}
.y3f3{bottom:659.333333pt;}
.y32b{bottom:660.989600pt;}
.y3ad{bottom:661.400000pt;}
.y2d0{bottom:661.600000pt;}
.y27{bottom:661.733333pt;}
.y5a{bottom:663.333333pt;}
.yca{bottom:663.766667pt;}
.y9c{bottom:663.988933pt;}
.y211{bottom:664.400000pt;}
.y2f8{bottom:664.655600pt;}
.y381{bottom:664.702800pt;}
.y6e{bottom:665.734000pt;}
.y1c0{bottom:667.222267pt;}
.y359{bottom:667.533600pt;}
.y102{bottom:668.466667pt;}
.y3{bottom:668.977329pt;}
.y264{bottom:670.666667pt;}
.y234{bottom:670.666800pt;}
.y4f{bottom:670.723600pt;}
.y16c{bottom:670.922400pt;}
.y41f{bottom:672.616000pt;}
.y132{bottom:672.901067pt;}
.y3d9{bottom:673.671200pt;}
.y3ac{bottom:675.000133pt;}
.y3f2{bottom:675.333333pt;}
.y1a5{bottom:675.338933pt;}
.y32a{bottom:675.389600pt;}
.y2cf{bottom:675.933467pt;}
.yc9{bottom:677.366667pt;}
.y210{bottom:678.733333pt;}
.y2f7{bottom:678.988933pt;}
.y1bf{bottom:681.055600pt;}
.y358{bottom:681.867067pt;}
.y59{bottom:682.000000pt;}
.y9b{bottom:682.655600pt;}
.y101{bottom:682.800000pt;}
.y380{bottom:683.369467pt;}
.y286{bottom:684.788933pt;}
.y263{bottom:685.000000pt;}
.y233{bottom:685.000133pt;}
.y3d8{bottom:687.271200pt;}
.y131{bottom:687.301067pt;}
.y3ab{bottom:688.833467pt;}
.y41e{bottom:689.416000pt;}
.y16b{bottom:689.589067pt;}
.y2ce{bottom:690.266800pt;}
.yc8{bottom:691.200000pt;}
.y3f1{bottom:691.333333pt;}
.y20f{bottom:693.066667pt;}
.y2f6{bottom:693.322267pt;}
.y1be{bottom:694.888933pt;}
.y329{bottom:695.056267pt;}
.y357{bottom:696.200400pt;}
.y100{bottom:697.133333pt;}
.y262{bottom:699.333333pt;}
.y232{bottom:699.333467pt;}
.y58{bottom:700.666667pt;}
.y9a{bottom:701.322267pt;}
.y130{bottom:701.634400pt;}
.y6d{bottom:702.000667pt;}
.y37f{bottom:702.036133pt;}
.y285{bottom:702.388933pt;}
.y3aa{bottom:702.433467pt;}
.y2cd{bottom:704.600133pt;}
.yc7{bottom:705.033333pt;}
.y3d7{bottom:707.104533pt;}
.y3f0{bottom:707.333333pt;}
.y20e{bottom:707.400000pt;}
.y2f5{bottom:707.655600pt;}
.y4e{bottom:708.056933pt;}
.y16a{bottom:708.255733pt;}
.y1bd{bottom:708.722267pt;}
.y356{bottom:710.533733pt;}
.yff{bottom:711.466667pt;}
.y261{bottom:713.666667pt;}
.y231{bottom:713.666800pt;}
.y12f{bottom:715.967733pt;}
.y3b{bottom:718.292933pt;}
.yc6{bottom:718.866667pt;}
.y2cc{bottom:718.933467pt;}
.y57{bottom:719.333333pt;}
.y99{bottom:719.988933pt;}
.y328{bottom:720.389600pt;}
.y6c{bottom:720.667333pt;}
.y37e{bottom:720.702800pt;}
.y20d{bottom:721.733333pt;}
.y2f4{bottom:721.988933pt;}
.y3a9{bottom:722.266667pt;}
.y1bc{bottom:722.555600pt;}
.y41d{bottom:723.016000pt;}
.y3ef{bottom:723.333333pt;}
.y355{bottom:724.867067pt;}
.yfe{bottom:725.866667pt;}
.y3d6{bottom:726.937867pt;}
.y260{bottom:728.000000pt;}
.y230{bottom:728.000133pt;}
.y12e{bottom:730.301067pt;}
.yc5{bottom:732.700000pt;}
.y2cb{bottom:733.266800pt;}
.y3a{bottom:734.292933pt;}
.y3a8{bottom:735.866667pt;}
.y20c{bottom:736.066667pt;}
.y2f3{bottom:736.322267pt;}
.y1bb{bottom:736.388933pt;}
.y56{bottom:738.000000pt;}
.y98{bottom:738.655600pt;}
.y354{bottom:739.200400pt;}
.y3ee{bottom:739.333333pt;}
.y6b{bottom:739.334000pt;}
.y37d{bottom:739.369467pt;}
.yfd{bottom:740.200000pt;}
.y3d5{bottom:740.537867pt;}
.y25f{bottom:742.333333pt;}
.y22f{bottom:742.333467pt;}
.y12d{bottom:744.634400pt;}
.y4d{bottom:745.390267pt;}
.y169{bottom:745.589067pt;}
.y21{bottom:745.857467pt;}
.yc4{bottom:746.300000pt;}
.y2ca{bottom:747.600133pt;}
.y3a7{bottom:749.700000pt;}
.y1ba{bottom:750.222267pt;}
.y39{bottom:750.292933pt;}
.y20b{bottom:750.400000pt;}
.y353{bottom:753.533733pt;}
.yfc{bottom:754.533333pt;}
.y3ed{bottom:755.333333pt;}
.y2f2{bottom:755.988933pt;}
.y327{bottom:756.656267pt;}
.y55{bottom:756.666667pt;}
.y22e{bottom:756.666800pt;}
.y97{bottom:757.322267pt;}
.y6a{bottom:758.000667pt;}
.y37c{bottom:758.036133pt;}
.y12c{bottom:758.967733pt;}
.yc3{bottom:760.133333pt;}
.y3d4{bottom:760.371200pt;}
.y2c9{bottom:761.933467pt;}
.y1a6{bottom:763.249067pt;}
.y3a6{bottom:763.300000pt;}
.y1b9{bottom:764.055600pt;}
.y20a{bottom:764.733333pt;}
.y38{bottom:766.292933pt;}
.yfb{bottom:768.866667pt;}
.y2f1{bottom:770.388933pt;}
.y352{bottom:770.533733pt;}
.y25e{bottom:771.000000pt;}
.y22d{bottom:771.000133pt;}
.y3ec{bottom:771.333333pt;}
.y12b{bottom:773.301067pt;}
.yc2{bottom:773.966667pt;}
.y3d3{bottom:773.971200pt;}
.y168{bottom:774.388933pt;}
.y326{bottom:775.322933pt;}
.y54{bottom:775.333333pt;}
.y96{bottom:775.988933pt;}
.y2c8{bottom:776.266800pt;}
.y69{bottom:776.667333pt;}
.y37b{bottom:776.702800pt;}
.y20{bottom:777.857467pt;}
.y1b8{bottom:777.888933pt;}
.y209{bottom:779.066667pt;}
.y2{bottom:781.661334pt;}
.y413{bottom:782.292933pt;}
.y4c{bottom:782.723600pt;}
.y3a5{bottom:783.133333pt;}
.yfa{bottom:783.200000pt;}
.y25d{bottom:785.333333pt;}
.y22c{bottom:785.333467pt;}
.y3eb{bottom:787.333333pt;}
.y12a{bottom:787.634400pt;}
.yc1{bottom:787.800000pt;}
.y351{bottom:790.200400pt;}
.y41c{bottom:790.216000pt;}
.y2c7{bottom:790.600133pt;}
.y1b7{bottom:791.722267pt;}
.y208{bottom:793.400000pt;}
.y3d2{bottom:793.804533pt;}
.y325{bottom:793.989600pt;}
.y53{bottom:794.000000pt;}
.y95{bottom:794.655600pt;}
.y68{bottom:795.334000pt;}
.y37a{bottom:795.369467pt;}
.y2f0{bottom:795.722267pt;}
.y3a4{bottom:796.966667pt;}
.yf9{bottom:797.533333pt;}
.y37{bottom:798.292933pt;}
.y25c{bottom:799.666667pt;}
.y22b{bottom:799.666800pt;}
.yc0{bottom:801.633333pt;}
.y129{bottom:801.967733pt;}
.y167{bottom:803.188933pt;}
.y3ea{bottom:803.333333pt;}
.y350{bottom:804.600400pt;}
.y2c6{bottom:804.933467pt;}
.y41b{bottom:807.016000pt;}
.y207{bottom:807.733333pt;}
.y3a3{bottom:810.800000pt;}
.y1b6{bottom:810.888933pt;}
.yf8{bottom:811.933333pt;}
.y324{bottom:812.656267pt;}
.y94{bottom:813.322267pt;}
.y25b{bottom:814.000000pt;}
.y22a{bottom:814.000133pt;}
.y67{bottom:814.000667pt;}
.y379{bottom:814.036133pt;}
.y36{bottom:814.292933pt;}
.ybf{bottom:815.233333pt;}
.y128{bottom:816.301067pt;}
.y2c5{bottom:819.266800pt;}
.y3e9{bottom:819.333333pt;}
.y1a8{bottom:820.210533pt;}
.y3d1{bottom:821.471200pt;}
.y206{bottom:822.066667pt;}
.y1a7{bottom:822.472667pt;}
.y41a{bottom:823.816133pt;}
.y34f{bottom:824.267067pt;}
.yf7{bottom:826.266667pt;}
.y25a{bottom:828.333333pt;}
.y229{bottom:828.333467pt;}
.y35{bottom:830.292933pt;}
.y127{bottom:830.634400pt;}
.y4b{bottom:830.724400pt;}
.y323{bottom:831.322933pt;}
.y26{bottom:831.333333pt;}
.ybe{bottom:831.733333pt;}
.y93{bottom:831.988933pt;}
.y66{bottom:832.667333pt;}
.y378{bottom:832.702800pt;}
.y2c4{bottom:833.600133pt;}
.y3e8{bottom:835.333333pt;}
.y1b5{bottom:835.722267pt;}
.y3a2{bottom:835.966667pt;}
.y205{bottom:836.400000pt;}
.y34e{bottom:838.666933pt;}
.y419{bottom:840.616000pt;}
.y3d0{bottom:841.304533pt;}
.y126{bottom:844.967733pt;}
.yf6{bottom:845.933333pt;}
.y34{bottom:846.292933pt;}
.y259{bottom:848.000000pt;}
.y228{bottom:848.000133pt;}
.y3a1{bottom:849.800000pt;}
.y322{bottom:849.989600pt;}
.y162{bottom:850.655600pt;}
.y204{bottom:850.733333pt;}
.ybd{bottom:850.900000pt;}
.y3e7{bottom:851.333333pt;}
.y377{bottom:851.369467pt;}
.y1b4{bottom:851.722267pt;}
.y2c3{bottom:853.266800pt;}
.y3cf{bottom:854.904533pt;}
.y34d{bottom:855.666933pt;}
.y418{bottom:857.416000pt;}
.y1{bottom:859.312000pt;}
.y412{bottom:862.292933pt;}
.y227{bottom:862.400000pt;}
.y125{bottom:864.634400pt;}
.y203{bottom:865.066667pt;}
.yf5{bottom:865.600000pt;}
.y3e6{bottom:867.333333pt;}
.y2c2{bottom:867.666800pt;}
.y321{bottom:868.656267pt;}
.y3ce{bottom:868.737867pt;}
.y3a0{bottom:868.966667pt;}
.y92{bottom:869.322267pt;}
.y34c{bottom:870.000267pt;}
.y65{bottom:870.000667pt;}
.y376{bottom:870.036133pt;}
.ybc{bottom:870.066667pt;}
.y1aa{bottom:870.668800pt;}
.y1a9{bottom:872.930933pt;}
.y417{bottom:874.216000pt;}
.y33{bottom:878.292933pt;}
.y124{bottom:879.034400pt;}
.yf4{bottom:880.000000pt;}
.y202{bottom:882.066667pt;}
.y3cd{bottom:882.337867pt;}
.y39f{bottom:882.566667pt;}
.y3e5{bottom:883.333333pt;}
.ybb{bottom:883.666667pt;}
.y34b{bottom:884.333600pt;}
.y320{bottom:887.322933pt;}
.y91{bottom:887.988933pt;}
.y375{bottom:888.702800pt;}
.y416{bottom:891.016000pt;}
.y32{bottom:894.292933pt;}
.y3cc{bottom:896.171200pt;}
.y123{bottom:898.701067pt;}
.yf3{bottom:899.666667pt;}
.yba{bottom:900.166667pt;}
.y34a{bottom:901.333600pt;}
.y31f{bottom:905.989600pt;}
.y90{bottom:906.655600pt;}
.y374{bottom:907.369467pt;}
.y201{bottom:907.400000pt;}
.y415{bottom:907.816000pt;}
.y31{bottom:910.292933pt;}
.y1ac{bottom:914.623867pt;}
.y3e4{bottom:918.000000pt;}
.y14e{bottom:923.000667pt;}
.y31e{bottom:924.656267pt;}
.yb9{bottom:925.000000pt;}
.y8f{bottom:925.322267pt;}
.y30{bottom:926.292933pt;}
.y1ab{bottom:929.239733pt;}
.y414{bottom:941.416000pt;}
.yb8{bottom:1001.349467pt;}
.h7{height:28.560000pt;}
.h1a{height:28.800000pt;}
.h24{height:31.104000pt;}
.h19{height:32.000000pt;}
.h1e{height:32.186667pt;}
.h1c{height:33.048000pt;}
.h1d{height:34.000000pt;}
.h20{height:34.080000pt;}
.h1f{height:34.992000pt;}
.h18{height:36.000000pt;}
.h1b{height:36.679688pt;}
.hf{height:37.523438pt;}
.h11{height:38.854167pt;}
.h22{height:38.880000pt;}
.h6{height:40.800000pt;}
.h25{height:40.824000pt;}
.h10{height:41.692708pt;}
.h26{height:42.000000pt;}
.h13{height:42.739583pt;}
.h16{height:42.768000pt;}
.h3{height:42.840000pt;}
.h12{height:45.861979pt;}
.h2{height:48.960000pt;}
.h15{height:54.289583pt;}
.hc{height:54.432000pt;}
.he{height:56.000000pt;}
.hb{height:59.348000pt;}
.h5{height:69.360000pt;}
.h14{height:69.984000pt;}
.ha{height:81.828000pt;}
.hd{height:85.536000pt;}
.h9{height:99.900326pt;}
.h4{height:105.826671pt;}
.h23{height:253.333333pt;}
.h21{height:264.000000pt;}
.h17{height:277.333333pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:428.273333pt;}
.w6{width:446.972000pt;}
.w7{width:454.666667pt;}
.w8{width:470.666667pt;}
.w4{width:486.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x19{left:12.854800pt;}
.xc{left:17.742800pt;}
.x9e{left:18.760400pt;}
.xa{left:21.427067pt;}
.x92{left:23.259067pt;}
.x4a{left:24.405600pt;}
.x59{left:26.988267pt;}
.x9f{left:31.072267pt;}
.xb{left:33.738933pt;}
.x52{left:36.916000pt;}
.x4b{left:43.441467pt;}
.x11{left:52.775333pt;}
.x10{left:57.875600pt;}
.x7{left:59.387733pt;}
.x54{left:62.108133pt;}
.xa0{left:63.626267pt;}
.x53{left:67.208267pt;}
.xa1{left:70.100267pt;}
.x4c{left:79.860000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:96.000000pt;}
.x55{left:98.526667pt;}
.x2e{left:101.333333pt;}
.xbd{left:103.005600pt;}
.x1c{left:112.000000pt;}
.x78{left:114.867733pt;}
.xa2{left:116.720000pt;}
.x8{left:120.000000pt;}
.xbb{left:121.334667pt;}
.x51{left:122.300133pt;}
.xb5{left:124.000000pt;}
.x2a{left:125.333333pt;}
.xa3{left:127.719467pt;}
.x5a{left:131.000000pt;}
.x1b{left:136.000000pt;}
.x17{left:137.281200pt;}
.x58{left:140.966800pt;}
.x1d{left:142.710267pt;}
.xb7{left:148.000000pt;}
.xbc{left:152.000000pt;}
.x5b{left:156.333333pt;}
.x1a{left:160.000000pt;}
.x5c{left:170.733333pt;}
.xa4{left:177.372400pt;}
.x4{left:180.874667pt;}
.x3a{left:187.005867pt;}
.x93{left:188.039067pt;}
.x5d{left:190.400000pt;}
.x2f{left:192.607467pt;}
.x39{left:196.712400pt;}
.x4d{left:199.388000pt;}
.x3b{left:202.919200pt;}
.x5e{left:204.733333pt;}
.x12{left:208.036400pt;}
.x49{left:211.005867pt;}
.x81{left:213.120267pt;}
.x2c{left:214.114533pt;}
.x3d{left:216.607467pt;}
.x1e{left:217.886267pt;}
.x5f{left:219.066667pt;}
.x80{left:221.861733pt;}
.xb6{left:223.985200pt;}
.x2b{left:229.143733pt;}
.xba{left:232.344000pt;}
.xb9{left:236.261467pt;}
.x4e{left:237.725867pt;}
.x60{left:238.733333pt;}
.xb8{left:247.985200pt;}
.x13{left:251.586000pt;}
.x61{left:253.066667pt;}
.x56{left:256.392533pt;}
.x88{left:260.283733pt;}
.x82{left:262.408533pt;}
.x62{left:267.400000pt;}
.x18{left:269.113333pt;}
.x94{left:274.548267pt;}
.x7a{left:284.035467pt;}
.x91{left:285.149333pt;}
.x63{left:287.066667pt;}
.x98{left:288.000000pt;}
.x8c{left:291.881600pt;}
.xae{left:293.239467pt;}
.xad{left:300.159067pt;}
.x30{left:301.940800pt;}
.xaa{left:309.608667pt;}
.x64{left:315.733333pt;}
.x6{left:322.971067pt;}
.x3e{left:325.940800pt;}
.x1f{left:327.219600pt;}
.x65{left:335.400000pt;}
.x66{left:349.733333pt;}
.x4f{left:355.333333pt;}
.x32{left:356.607467pt;}
.x31{left:358.869600pt;}
.x14{left:362.336533pt;}
.x67{left:364.066667pt;}
.x57{left:373.039733pt;}
.x40{left:380.607467pt;}
.x21{left:381.886400pt;}
.x3f{left:382.869600pt;}
.x20{left:384.022800pt;}
.x50{left:395.592400pt;}
.x5{left:398.769467pt;}
.xaf{left:400.600000pt;}
.x3{left:404.408000pt;}
.x7b{left:408.399600pt;}
.x76{left:409.290267pt;}
.xb2{left:410.992000pt;}
.x68{left:412.400000pt;}
.x2d{left:415.140133pt;}
.x33{left:417.908133pt;}
.x7c{left:418.808533pt;}
.x79{left:426.504133pt;}
.x42{left:428.115600pt;}
.x23{left:429.792133pt;}
.x69{left:432.066667pt;}
.xf{left:435.407600pt;}
.xa5{left:436.587867pt;}
.xd{left:439.091200pt;}
.x41{left:441.908133pt;}
.x22{left:442.818400pt;}
.x77{left:444.014933pt;}
.xe{left:445.247333pt;}
.x6a{left:446.400000pt;}
.xb3{left:450.231067pt;}
.x95{left:456.000000pt;}
.xa6{left:458.503200pt;}
.x16{left:460.176400pt;}
.x7d{left:462.404000pt;}
.xa7{left:464.894800pt;}
.x83{left:469.075200pt;}
.x89{left:473.682667pt;}
.x15{left:474.576133pt;}
.x6b{left:480.400000pt;}
.x6c{left:494.733333pt;}
.x43{left:497.940800pt;}
.x24{left:499.219733pt;}
.xb4{left:502.992000pt;}
.x96{left:504.000000pt;}
.x6d{left:509.066667pt;}
.x85{left:510.408533pt;}
.x7e{left:511.416000pt;}
.x84{left:512.670667pt;}
.x8b{left:515.016000pt;}
.x8a{left:519.540267pt;}
.x99{left:521.333333pt;}
.xa8{left:522.474800pt;}
.x6e{left:528.733333pt;}
.x9b{left:538.548267pt;}
.x8e{left:539.881600pt;}
.x6f{left:543.066667pt;}
.x8d{left:544.405867pt;}
.x70{left:557.400000pt;}
.x86{left:559.741867pt;}
.x97{left:563.881600pt;}
.xab{left:567.618000pt;}
.x9a{left:576.000000pt;}
.x71{left:577.066667pt;}
.x9c{left:579.142267pt;}
.x34{left:583.274133pt;}
.x8f{left:589.214933pt;}
.x72{left:591.400000pt;}
.x9d{left:599.881067pt;}
.x73{left:605.733333pt;}
.x44{left:607.274133pt;}
.x25{left:608.553067pt;}
.xb0{left:618.333333pt;}
.x74{left:626.866667pt;}
.x36{left:637.940800pt;}
.x35{left:640.202933pt;}
.x75{left:652.466667pt;}
.x46{left:661.940800pt;}
.x27{left:663.219733pt;}
.x45{left:664.202933pt;}
.x26{left:665.356133pt;}
.xa9{left:671.214800pt;}
.xb1{left:672.766667pt;}
.xac{left:673.832933pt;}
.x7f{left:674.808533pt;}
.x3c{left:679.107600pt;}
.x87{left:683.742000pt;}
.x38{left:685.448933pt;}
.x37{left:699.241467pt;}
.x48{left:709.448933pt;}
.x29{left:711.125467pt;}
.x90{left:713.214933pt;}
.x47{left:723.241467pt;}
.x28{left:724.151733pt;}
}




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