
    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_a0210891d206d95d7dd328e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.086000;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_b3f31dbdd3eb2799ed9f475a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086000;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_691023d84a15e52ad8f74230.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966000;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_acdf511649296c798e41ecd9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_27038572159ab9dcbb382ef4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_bd2dbd198068e3b2aaf40cb8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095000;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_a4e40b5b1076142d584727a9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128906;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_e947ffce810d652597959898.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973145;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_40b1fe6516a30bed4849d9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.901000;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_de7d295213111d26a23a28dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;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_af78dfce226d3563272bbe9e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.718750;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_a2922cc4a6c0edd67f33693c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.945000;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_0d2394f41a57f5a3e54f7ca9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_ccd83ac9b7a8b9302b636cd7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113281;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_f5471aee28a3d037ad633f3c.woff2')format("woff");}.fff{font-family:fff;line-height:1.106934;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_f04e881f934798a00178f524.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.106934;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_5735fc425796ee60e5b7925e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_39c9e85046aa5a8dadaa03d4.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m1{transform:matrix(-0.194329,-0.157278,0.157278,-0.194329,0,0);-ms-transform:matrix(-0.194329,-0.157278,0.157278,-0.194329,0,0);-webkit-transform:matrix(-0.194329,-0.157278,0.157278,-0.194329,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);}
.v7{vertical-align:-67.143600px;}
.v6{vertical-align:-32.874000px;}
.v8{vertical-align:-5.956392px;}
.v9{vertical-align:-4.289846px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:3.126000px;}
.v3{vertical-align:5.110800px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:19.980000px;}
.v2{vertical-align:23.976000px;}
.ls4{letter-spacing:-4.320000px;}
.ls7{letter-spacing:-2.400000px;}
.lsd{letter-spacing:-0.358574px;}
.lse{letter-spacing:-0.357487px;}
.ls8{letter-spacing:-0.343638px;}
.lsa{letter-spacing:-0.316883px;}
.lsf{letter-spacing:-0.306418px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006720px;}
.ls5{letter-spacing:0.009000px;}
.ls1{letter-spacing:0.011160px;}
.ls6{letter-spacing:0.012600px;}
.ls2{letter-spacing:0.015240px;}
.lsc{letter-spacing:338.285030px;}
.lsb{letter-spacing:620.245267px;}
.ls9{letter-spacing:672.614112px;}
.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;}
}
.ws3a{word-spacing:-672.614112px;}
.ws3c{word-spacing:-620.245267px;}
.ws51{word-spacing:-338.285030px;}
.ws4d{word-spacing:-332.565235px;}
.ws3{word-spacing:-20.250000px;}
.ws1{word-spacing:-17.280000px;}
.ws2{word-spacing:-16.776000px;}
.ws29{word-spacing:-15.921894px;}
.ws6{word-spacing:-15.240000px;}
.ws35{word-spacing:-14.682236px;}
.ws5{word-spacing:-14.460000px;}
.ws12{word-spacing:-14.400000px;}
.ws46{word-spacing:-14.197349px;}
.wsd{word-spacing:-12.960000px;}
.ws8{word-spacing:-11.520000px;}
.ws9{word-spacing:-8.884920px;}
.ws7{word-spacing:-8.430180px;}
.wsa{word-spacing:-7.200000px;}
.ws15{word-spacing:-1.776000px;}
.ws4f{word-spacing:-0.478099px;}
.ws54{word-spacing:-0.408557px;}
.ws17{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.180000px;}
.ws1a{word-spacing:-0.120000px;}
.ws52{word-spacing:-0.102139px;}
.ws55{word-spacing:-0.096000px;}
.ws18{word-spacing:-0.060000px;}
.ws1f{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws53{word-spacing:0.306418px;}
.ws4e{word-spacing:0.358574px;}
.ws1c{word-spacing:0.480000px;}
.ws3b{word-spacing:0.633766px;}
.ws39{word-spacing:0.687276px;}
.wsf{word-spacing:1.920000px;}
.ws20{word-spacing:2.400000px;}
.ws4a{word-spacing:29.722507px;}
.wse{word-spacing:69.960000px;}
.ws4c{word-spacing:115.110878px;}
.ws45{word-spacing:155.343509px;}
.ws4{word-spacing:198.720000px;}
.wsc{word-spacing:200.178000px;}
.wsb{word-spacing:201.540000px;}
.ws36{word-spacing:217.381601px;}
.ws38{word-spacing:224.828347px;}
.ws2a{word-spacing:235.735668px;}
.ws2c{word-spacing:243.811161px;}
.ws13{word-spacing:244.408800px;}
.ws37{word-spacing:256.991951px;}
.ws2b{word-spacing:278.690418px;}
.ws2e{word-spacing:282.448202px;}
.ws14{word-spacing:283.288800px;}
.ws47{word-spacing:303.659842px;}
.ws2d{word-spacing:306.296004px;}
.ws22{word-spacing:306.301731px;}
.ws4b{word-spacing:310.911725px;}
.ws40{word-spacing:312.318302px;}
.ws48{word-spacing:316.529381px;}
.ws49{word-spacing:317.040077px;}
.ws43{word-spacing:328.454150px;}
.ws44{word-spacing:345.785246px;}
.ws41{word-spacing:346.502395px;}
.ws2f{word-spacing:382.488102px;}
.ws33{word-spacing:399.906094px;}
.ws23{word-spacing:414.782521px;}
.ws27{word-spacing:433.671156px;}
.ws31{word-spacing:470.465330px;}
.ws32{word-spacing:484.725056px;}
.ws25{word-spacing:510.187884px;}
.ws34{word-spacing:521.377834px;}
.ws26{word-spacing:525.651594px;}
.ws30{word-spacing:534.475656px;}
.ws28{word-spacing:565.399056px;}
.ws11{word-spacing:579.096600px;}
.ws24{word-spacing:579.602760px;}
.ws1d{word-spacing:651.387600px;}
.ws50{word-spacing:659.896421px;}
.ws3d{word-spacing:688.821422px;}
.ws10{word-spacing:693.713400px;}
.ws3e{word-spacing:739.021838px;}
.ws3f{word-spacing:772.847357px;}
.ws42{word-spacing:802.740509px;}
.ws19{word-spacing:897.198000px;}
.ws16{word-spacing:922.012800px;}
.ws21{word-spacing:1140.698400px;}
.ws1b{word-spacing:1235.528400px;}
._28{margin-left:-1441.237800px;}
._14{margin-left:-200.178000px;}
._1f{margin-left:-14.220000px;}
._60{margin-left:-9.000000px;}
._0{margin-left:-7.980000px;}
._5{margin-left:-6.480000px;}
._c{margin-left:-5.241600px;}
._3{margin-left:-4.200000px;}
._2{margin-left:-2.448000px;}
._1{margin-left:-1.140000px;}
._4{width:1.878000px;}
._17{width:3.637800px;}
._11{width:21.960000px;}
._1e{width:23.580000px;}
._7{width:38.376000px;}
._9{width:41.424000px;}
._1a{width:50.389200px;}
._18{width:66.480000px;}
._d{width:69.960000px;}
._e{width:74.250000px;}
._7a{width:88.009390px;}
._1b{width:93.540000px;}
._79{width:95.546115px;}
._19{width:105.300000px;}
._15{width:110.880000px;}
._1c{width:118.074600px;}
._12{width:120.720000px;}
._16{width:125.627400px;}
._25{width:128.940000px;}
._4c{width:132.142914px;}
._24{width:134.040000px;}
._13{width:136.571400px;}
._8{width:138.372000px;}
._2c{width:141.696000px;}
._2e{width:156.912000px;}
._1d{width:161.782800px;}
._23{width:167.640000px;}
._10{width:169.500000px;}
._26{width:171.420000px;}
._7d{width:181.909915px;}
._55{width:187.983723px;}
._48{width:190.253873px;}
._b{width:198.072000px;}
._6{width:199.368000px;}
._f{width:201.540000px;}
._2d{width:204.480000px;}
._30{width:206.110788px;}
._4f{width:208.534966px;}
._49{width:210.307338px;}
._31{width:226.310730px;}
._47{width:227.865291px;}
._5d{width:241.646432px;}
._44{width:262.207803px;}
._4a{width:270.142587px;}
._5b{width:271.750298px;}
._2a{width:281.848800px;}
._5e{width:286.462051px;}
._32{width:292.951395px;}
._42{width:294.853413px;}
._68{width:303.698438px;}
._45{width:310.648752px;}
._57{width:314.347738px;}
._61{width:322.208400px;}
._71{width:324.751586px;}
._73{width:330.945238px;}
._5c{width:334.628237px;}
._3d{width:340.888896px;}
._54{width:344.875507px;}
._75{width:346.251888px;}
._7c{width:350.848152px;}
._7b{width:357.997896px;}
._69{width:360.666084px;}
._6d{width:361.741807px;}
._43{width:362.881728px;}
._3f{width:369.525396px;}
._76{width:371.275992px;}
._3b{width:374.056512px;}
._67{width:376.748942px;}
._66{width:407.678242px;}
._62{width:416.065829px;}
._6e{width:432.493183px;}
._22{width:456.097800px;}
._63{width:472.309020px;}
._4d{width:484.513801px;}
._59{width:492.512868px;}
._52{width:498.773527px;}
._33{width:525.422502px;}
._40{width:534.242544px;}
._58{width:535.584746px;}
._39{width:540.886212px;}
._5a{width:550.002913px;}
._64{width:552.151586px;}
._5f{width:558.664376px;}
._3e{width:580.805493px;}
._41{width:596.441022px;}
._21{width:597.838200px;}
._46{width:605.833794px;}
._65{width:612.419710px;}
._51{width:620.268564px;}
._6a{width:632.444628px;}
._36{width:657.494040px;}
._38{width:672.385020px;}
._27{width:709.211400px;}
._6c{width:752.289091px;}
._72{width:753.378739px;}
._6b{width:757.497451px;}
._6f{width:766.034443px;}
._77{width:792.674412px;}
._78{width:814.168032px;}
._70{width:841.932691px;}
._74{width:845.940005px;}
._4b{width:896.778324px;}
._20{width:898.193400px;}
._50{width:912.094326px;}
._2f{width:958.449000px;}
._4e{width:962.161808px;}
._37{width:972.908460px;}
._53{width:977.266555px;}
._35{width:989.104710px;}
._34{width:1043.399514px;}
._3a{width:1059.779592px;}
._a{width:1198.737000px;}
._56{width:1307.410900px;}
._3c{width:1417.395372px;}
._29{width:2074.273200px;}
._2b{width:2100.193200px;}
.fc7{color:transparent;}
.fc8{color:rgb(210,32,39);}
.fc6{color:rgb(238,37,40);}
.fc2{color:rgb(142,144,143);}
.fc3{color:rgb(68,70,73);}
.fc1{color:rgb(90,87,88);}
.fc5{color:rgb(77,77,77);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(57,53,54);}
.fsa{font-size:2.364290px;}
.fsb{font-size:2.368800px;}
.fsc{font-size:2.397600px;}
.fsd{font-size:27.984000px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.976000px;}
.fs2{font-size:48.000000px;}
.fs11{font-size:51.069600px;}
.fsf{font-size:52.813800px;}
.fs9{font-size:54.000000px;}
.fse{font-size:57.273000px;}
.fs10{font-size:59.762400px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs5{font-size:90.000000px;}
.fs0{font-size:114.000000px;}
.y284{bottom:-759.538304px;}
.y283{bottom:-738.590705px;}
.y282{bottom:-717.643105px;}
.y281{bottom:-696.695505px;}
.y280{bottom:-675.747905px;}
.y285{bottom:-654.828942px;}
.y2b4{bottom:-613.525706px;}
.y27f{bottom:-612.919424px;}
.y2b3{bottom:-592.578106px;}
.y27e{bottom:-591.971825px;}
.y2b2{bottom:-571.630506px;}
.y27d{bottom:-571.024225px;}
.y2b1{bottom:-550.682906px;}
.y27c{bottom:-550.076625px;}
.y2b0{bottom:-529.735306px;}
.y27b{bottom:-529.129025px;}
.y2b5{bottom:-508.816343px;}
.y289{bottom:-508.224380px;}
.y27a{bottom:-508.181426px;}
.y279{bottom:-487.233826px;}
.y2af{bottom:-466.906826px;}
.y278{bottom:-466.286226px;}
.y2ae{bottom:-445.959226px;}
.y277{bottom:-445.338626px;}
.y2e4{bottom:-444.487376px;}
.y2ad{bottom:-425.011626px;}
.y286{bottom:-424.462618px;}
.y276{bottom:-424.391027px;}
.y2e3{bottom:-423.539776px;}
.y2ac{bottom:-404.064026px;}
.y275{bottom:-403.443427px;}
.y2e2{bottom:-402.592176px;}
.y2ab{bottom:-383.116426px;}
.y274{bottom:-382.495827px;}
.y2e1{bottom:-381.644576px;}
.y2aa{bottom:-362.168827px;}
.y2b9{bottom:-362.070787px;}
.y28a{bottom:-361.634137px;}
.y273{bottom:-361.548227px;}
.y2e0{bottom:-360.696977px;}
.y314{bottom:-358.802777px;}
.y2a9{bottom:-341.221227px;}
.y272{bottom:-340.600627px;}
.y2e5{bottom:-339.778013px;}
.y313{bottom:-337.855177px;}
.y396{bottom:-335.357592px;}
.y2a8{bottom:-320.273627px;}
.y271{bottom:-319.653028px;}
.y312{bottom:-316.907578px;}
.y395{bottom:-313.215623px;}
.y2a7{bottom:-299.326028px;}
.y270{bottom:-298.705428px;}
.y2df{bottom:-297.868495px;}
.y311{bottom:-295.959978px;}
.y394{bottom:-294.674338px;}
.y3a9{bottom:-280.076338px;}
.y2b6{bottom:-278.450019px;}
.y2a6{bottom:-278.378428px;}
.y26f{bottom:-277.757828px;}
.y2de{bottom:-276.920896px;}
.y310{bottom:-275.012378px;}
.y3a8{bottom:-257.934369px;}
.y2a5{bottom:-257.430828px;}
.y26e{bottom:-256.810228px;}
.y2dd{bottom:-255.973296px;}
.y315{bottom:-254.093415px;}
.y393{bottom:-253.991084px;}
.y3a7{bottom:-239.393084px;}
.y2a4{bottom:-236.483228px;}
.y26d{bottom:-235.862629px;}
.y392{bottom:-235.449800px;}
.y2dc{bottom:-235.025696px;}
.y3ef{bottom:-220.113508px;}
.y2a3{bottom:-215.535628px;}
.y2ba{bottom:-215.480543px;}
.y28b{bottom:-215.043893px;}
.y26c{bottom:-214.915029px;}
.y2db{bottom:-214.078096px;}
.y391{bottom:-213.307831px;}
.y30f{bottom:-212.183897px;}
.y3bc{bottom:-203.536465px;}
.y3ee{bottom:-201.192221px;}
.y3a6{bottom:-198.709831px;}
.y390{bottom:-194.766546px;}
.y2a2{bottom:-194.588029px;}
.y288{bottom:-194.096294px;}
.y2da{bottom:-193.130497px;}
.y2e9{bottom:-193.061550px;}
.y30e{bottom:-191.236297px;}
.y344{bottom:-188.687229px;}
.y3f0{bottom:-182.270934px;}
.y3bb{bottom:-181.394496px;}
.y3a5{bottom:-180.168546px;}
.y38f{bottom:-176.225261px;}
.y2a1{bottom:-173.640429px;}
.y26b{bottom:-173.034148px;}
.y2d9{bottom:-172.182897px;}
.y30d{bottom:-170.288698px;}
.y343{bottom:-167.739629px;}
.y3ba{bottom:-162.853211px;}
.y3a4{bottom:-158.026577px;}
.y38e{bottom:-157.683977px;}
.y2a0{bottom:-152.692829px;}
.y26a{bottom:-152.086548px;}
.y2d8{bottom:-151.235297px;}
.y30c{bottom:-149.341098px;}
.y342{bottom:-146.792029px;}
.y3ed{bottom:-144.428360px;}
.y3a3{bottom:-139.485292px;}
.y29f{bottom:-131.745229px;}
.y269{bottom:-131.138948px;}
.y2d7{bottom:-130.287697px;}
.y30b{bottom:-128.393498px;}
.y341{bottom:-125.844430px;}
.y3ec{bottom:-125.507074px;}
.y3b9{bottom:-122.169958px;}
.y3a2{bottom:-120.944008px;}
.y38d{bottom:-120.601408px;}
.y29e{bottom:-110.797630px;}
.y268{bottom:-110.191349px;}
.y2e6{bottom:-109.411689px;}
.y2d6{bottom:-109.340098px;}
.y319{bottom:-107.488853px;}
.y30a{bottom:-107.445898px;}
.y3eb{bottom:-106.585787px;}
.y340{bottom:-104.896830px;}
.y3b8{bottom:-103.628673px;}
.y3a1{bottom:-102.402723px;}
.y38c{bottom:-98.459438px;}
.y29d{bottom:-89.850030px;}
.y267{bottom:-89.243749px;}
.y2d5{bottom:-88.392498px;}
.y3ea{bottom:-87.664500px;}
.y309{bottom:-86.498299px;}
.y345{bottom:-83.977867px;}
.y3b7{bottom:-81.486704px;}
.y38b{bottom:-79.918154px;}
.y29c{bottom:-68.902430px;}
.y2bb{bottom:-68.890300px;}
.y3f3{bottom:-68.751254px;}
.y28c{bottom:-68.453650px;}
.y266{bottom:-68.296149px;}
.y2d4{bottom:-67.444898px;}
.y3cf{bottom:-65.868854px;}
.y308{bottom:-65.550699px;}
.y3a0{bottom:-65.320154px;}
.y3ff{bottom:-64.888037px;}
.y3b6{bottom:-62.945419px;}
.y2b8{bottom:-47.942700px;}
.y265{bottom:-47.348549px;}
.y2d3{bottom:-46.497298px;}
.y2ea{bottom:-46.471306px;}
.y3fe{bottom:-45.966750px;}
.y307{bottom:-44.603099px;}
.y3b5{bottom:-44.404135px;}
.y3ce{bottom:-43.726885px;}
.y39f{bottom:-43.178185px;}
.y38a{bottom:-42.835585px;}
.y33f{bottom:-42.068349px;}
.y400{bottom:-27.045463px;}
.y29b{bottom:-27.021549px;}
.y287{bottom:-26.558450px;}
.y264{bottom:-26.400950px;}
.y3b4{bottom:-25.862850px;}
.y2d2{bottom:-25.549699px;}
.y3cd{bottom:-25.185600px;}
.y39e{bottom:-24.636900px;}
.y389{bottom:-24.294300px;}
.y316{bottom:-23.727091px;}
.y306{bottom:-23.655500px;}
.y33e{bottom:-21.120749px;}
.y29a{bottom:-6.073949px;}
.y263{bottom:-5.453350px;}
.y2d1{bottom:-4.602099px;}
.y305{bottom:-2.707900px;}
.y33d{bottom:-0.173150px;}
.y0{bottom:0.000000px;}
.y374{bottom:1.582808px;}
.y40f{bottom:6.758250px;}
.y3e2{bottom:7.876081px;}
.y299{bottom:14.873651px;}
.y262{bottom:15.494250px;}
.y2d0{bottom:16.345501px;}
.y304{bottom:18.239700px;}
.y33c{bottom:20.774450px;}
.y373{bottom:20.899455px;}
.y3e1{bottom:30.018050px;}
.y3cb{bottom:34.034400px;}
.y298{bottom:35.821250px;}
.y260{bottom:36.436650px;}
.y2cf{bottom:37.293101px;}
.y31a{bottom:39.101390px;}
.y372{bottom:40.216103px;}
.y33b{bottom:41.722050px;}
.y3{bottom:42.519750px;}
.y3e0{bottom:48.559335px;}
.y297{bottom:56.768850px;}
.y25e{bottom:57.378900px;}
.y2ce{bottom:58.240700px;}
.y371{bottom:59.532750px;}
.y349{bottom:62.671320px;}
.y31e{bottom:68.032500px;}
.y39b{bottom:71.657877px;}
.y3c9{bottom:74.693527px;}
.y2bc{bottom:77.699944px;}
.y28d{bottom:78.136594px;}
.y2cd{bottom:79.188300px;}
.y301{bottom:81.016535px;}
.y40d{bottom:82.433914px;}
.y4{bottom:85.039350px;}
.y7d{bottom:85.039500px;}
.y135{bottom:85.039650px;}
.yb9{bottom:85.441950px;}
.y214{bottom:85.457850px;}
.y23b{bottom:85.458000px;}
.y44f{bottom:85.722900px;}
.y3b0{bottom:88.967389px;}
.y3df{bottom:89.242589px;}
.y3c8{bottom:93.234812px;}
.y1e8{bottom:93.521850px;}
.y39a{bottom:93.799846px;}
.y1a2{bottom:94.457850px;}
.y89{bottom:99.439350px;}
.y7c{bottom:99.439500px;}
.y134{bottom:99.439650px;}
.y1db{bottom:99.439800px;}
.y2eb{bottom:100.118937px;}
.y442{bottom:100.122900px;}
.y163{bottom:101.206350px;}
.y40c{bottom:101.355201px;}
.y96{bottom:101.539350px;}
.yb8{bottom:101.941950px;}
.y300{bottom:101.964135px;}
.y213{bottom:103.457850px;}
.y23a{bottom:103.458000px;}
.y3f2{bottom:103.685250px;}
.y338{bottom:104.461887px;}
.y32{bottom:106.039350px;}
.y3af{bottom:107.508673px;}
.y3de{bottom:107.783873px;}
.y3c7{bottom:111.776096px;}
.y8b{bottom:113.839350px;}
.y7b{bottom:113.839500px;}
.ybd{bottom:113.839650px;}
.y1da{bottom:113.839800px;}
.y441{bottom:114.522900px;}
.y1a1{bottom:115.457850px;}
.y162{bottom:115.606350px;}
.y399{bottom:115.941815px;}
.yb7{bottom:116.341950px;}
.y95{bottom:118.039350px;}
.y17d{bottom:119.055150px;}
.y294{bottom:119.605664px;}
.y40b{bottom:120.276488px;}
.y212{bottom:121.457850px;}
.y239{bottom:121.458000px;}
.y2ff{bottom:122.911735px;}
.y337{bottom:125.409487px;}
.y31{bottom:127.039350px;}
.y93{bottom:128.239350px;}
.y81{bottom:128.239500px;}
.y7a{bottom:128.239650px;}
.y440{bottom:128.922900px;}
.y3dd{bottom:129.925843px;}
.y33a{bottom:130.691600px;}
.y158{bottom:130.742100px;}
.y94{bottom:132.439350px;}
.y2{bottom:133.526400px;}
.y398{bottom:134.483100px;}
.y16a{bottom:136.457850px;}
.y40a{bottom:139.197775px;}
.y211{bottom:139.457850px;}
.y238{bottom:139.458000px;}
.y293{bottom:140.553263px;}
.y2cb{bottom:141.987965px;}
.y92{bottom:142.639350px;}
.y80{bottom:142.639500px;}
.y79{bottom:142.639650px;}
.yd5{bottom:142.639800px;}
.yef{bottom:142.724400px;}
.y44d{bottom:143.322900px;}
.y2fe{bottom:143.859334px;}
.y336{bottom:146.357086px;}
.yb6{bottom:146.653500px;}
.y98{bottom:146.839350px;}
.y58{bottom:148.039350px;}
.y3ae{bottom:148.191927px;}
.y3dc{bottom:148.467127px;}
.y157{bottom:148.742100px;}
.y3c6{bottom:148.858666px;}
.y339{bottom:151.639200px;}
.y3f4{bottom:153.070500px;}
.y36e{bottom:156.032732px;}
.yf3{bottom:157.039350px;}
.y78{bottom:157.039650px;}
.y99{bottom:157.039800px;}
.yee{bottom:157.124400px;}
.y1a0{bottom:157.433100px;}
.yc5{bottom:157.457850px;}
.y1d9{bottom:157.458000px;}
.y43f{bottom:157.722900px;}
.y413{bottom:158.113186px;}
.y161{bottom:158.137950px;}
.y97{bottom:161.239350px;}
.y3f9{bottom:162.146941px;}
.y2ca{bottom:162.935565px;}
.y292{bottom:162.989961px;}
.yb5{bottom:163.153500px;}
.y3fd{bottom:163.857790px;}
.y370{bottom:163.882511px;}
.y2fd{bottom:164.806934px;}
.y3db{bottom:167.008412px;}
.y335{bottom:167.304686px;}
.y30{bottom:167.839350px;}
.y57{bottom:169.039350px;}
.y10{bottom:170.078700px;}
.y3ad{bottom:170.333896px;}
.y3c5{bottom:171.000635px;}
.y1{bottom:171.228000px;}
.y16c{bottom:171.439350px;}
.y77{bottom:171.439800px;}
.y43e{bottom:172.122900px;}
.y1e7{bottom:172.675800px;}
.y36d{bottom:175.349379px;}
.y210{bottom:175.457850px;}
.y237{bottom:175.458000px;}
.yb4{bottom:177.553500px;}
.y19f{bottom:178.433100px;}
.yc4{bottom:178.457850px;}
.y1d8{bottom:178.458000px;}
.y3f8{bottom:181.068228px;}
.y259{bottom:181.457850px;}
.y3fc{bottom:182.779076px;}
.y375{bottom:183.195750px;}
.y2c9{bottom:183.883165px;}
.y291{bottom:183.923243px;}
.y3da{bottom:185.549696px;}
.y31b{bottom:185.691634px;}
.y2fc{bottom:185.754534px;}
.y16b{bottom:185.839350px;}
.y76{bottom:185.839800px;}
.y43d{bottom:186.522900px;}
.y334{bottom:188.252286px;}
.y3c4{bottom:189.541919px;}
.y56{bottom:190.039350px;}
.yf{bottom:191.678700px;}
.y3ac{bottom:192.475865px;}
.y20f{bottom:193.457850px;}
.y236{bottom:193.458000px;}
.y36c{bottom:194.666027px;}
.y147{bottom:195.656250px;}
.yce{bottom:196.457850px;}
.y404{bottom:197.152500px;}
.y19e{bottom:199.433100px;}
.yea{bottom:199.457850px;}
.y7f{bottom:199.458000px;}
.y3f7{bottom:199.989515px;}
.y1d3{bottom:200.239350px;}
.y75{bottom:200.239800px;}
.y450{bottom:200.922900px;}
.y3fb{bottom:201.700363px;}
.y11b{bottom:204.466200px;}
.y2c8{bottom:204.830764px;}
.y290{bottom:204.856524px;}
.y318{bottom:206.639234px;}
.yb3{bottom:207.865050px;}
.y333{bottom:209.199886px;}
.y34a{bottom:209.261563px;}
.y3ab{bottom:211.017150px;}
.y20e{bottom:211.457850px;}
.y235{bottom:211.458000px;}
.ye{bottom:213.278700px;}
.y36b{bottom:213.982674px;}
.y346{bottom:214.466100px;}
.y1d2{bottom:214.639350px;}
.y74{bottom:214.639800px;}
.y43c{bottom:215.322900px;}
.y258{bottom:217.457850px;}
.y11a{bottom:218.866200px;}
.y3f6{bottom:218.910802px;}
.y19d{bottom:220.433100px;}
.yc3{bottom:220.457850px;}
.y7e{bottom:220.458000px;}
.y3fa{bottom:220.621650px;}
.y15d{bottom:221.457150px;}
.y36f{bottom:221.819250px;}
.yb2{bottom:222.265050px;}
.yd4{bottom:222.492300px;}
.y3d9{bottom:222.632266px;}
.y40e{bottom:222.830250px;}
.y2bd{bottom:224.290187px;}
.y28f{bottom:225.589350px;}
.y2c7{bottom:225.778364px;}
.y3c3{bottom:226.624489px;}
.y2fb{bottom:227.635415px;}
.y1d1{bottom:229.039350px;}
.y73{bottom:229.039800px;}
.y20d{bottom:229.457850px;}
.y234{bottom:229.458000px;}
.y43b{bottom:229.722900px;}
.y332{bottom:230.147485px;}
.y119{bottom:233.266200px;}
.y36a{bottom:233.299321px;}
.y409{bottom:233.791441px;}
.y146{bottom:233.795700px;}
.yd{bottom:234.878700px;}
.y257{bottom:235.457850px;}
.yb1{bottom:236.665050px;}
.yd3{bottom:236.892300px;}
.y3f5{bottom:238.904550px;}
.y403{bottom:239.541300px;}
.y19c{bottom:241.433100px;}
.ycd{bottom:241.457850px;}
.y54{bottom:241.458000px;}
.y410{bottom:241.749900px;}
.y1d0{bottom:243.439350px;}
.y72{bottom:243.439950px;}
.y43a{bottom:244.122900px;}
.y1e1{bottom:244.605600px;}
.y3d8{bottom:244.774235px;}
.y3c2{bottom:245.165773px;}
.y2ec{bottom:246.709181px;}
.y2c6{bottom:246.725964px;}
.y20c{bottom:247.457850px;}
.y233{bottom:247.458000px;}
.y381{bottom:248.284650px;}
.y2fa{bottom:248.583015px;}
.y331{bottom:251.095085px;}
.yd2{bottom:251.292300px;}
.y369{bottom:252.615969px;}
.y408{bottom:252.712728px;}
.y256{bottom:253.457850px;}
.y401{bottom:256.748304px;}
.y1cf{bottom:257.839350px;}
.y71{bottom:257.840100px;}
.y16f{bottom:258.243450px;}
.y44c{bottom:258.522900px;}
.y160{bottom:258.616800px;}
.y402{bottom:258.905995px;}
.y1e0{bottom:259.005600px;}
.y19b{bottom:262.433100px;}
.yc2{bottom:262.457850px;}
.y53{bottom:262.458000px;}
.y3d7{bottom:263.315519px;}
.y20b{bottom:265.457850px;}
.y232{bottom:265.458000px;}
.yd1{bottom:265.692300px;}
.y2c5{bottom:267.673564px;}
.y380{bottom:269.284650px;}
.y2f9{bottom:269.530615px;}
.y1d7{bottom:270.998550px;}
.y255{bottom:271.457850px;}
.y407{bottom:271.634015px;}
.y368{bottom:271.932616px;}
.y145{bottom:271.935000px;}
.y330{bottom:272.042685px;}
.y1ce{bottom:272.239350px;}
.y70{bottom:272.240100px;}
.y16e{bottom:272.643450px;}
.y439{bottom:272.922900px;}
.yc{bottom:278.078700px;}
.yd0{bottom:280.092150px;}
.y19a{bottom:283.433100px;}
.y8c{bottom:283.457850px;}
.y52{bottom:283.458000px;}
.y3c1{bottom:285.849027px;}
.y1cd{bottom:286.639350px;}
.y6f{bottom:286.640100px;}
.y384{bottom:286.742550px;}
.y16d{bottom:287.043450px;}
.y438{bottom:287.322900px;}
.y2e7{bottom:288.492478px;}
.y2c4{bottom:288.621163px;}
.y254{bottom:289.457850px;}
.y2f8{bottom:290.478215px;}
.y406{bottom:290.555302px;}
.y367{bottom:291.249263px;}
.y32f{bottom:292.990285px;}
.ycf{bottom:294.492300px;}
.ye9{bottom:295.457850px;}
.y1a6{bottom:296.449200px;}
.y17b{bottom:296.510400px;}
.y1dd{bottom:296.574900px;}
.y17c{bottom:296.768100px;}
.y3d6{bottom:300.398089px;}
.y1cc{bottom:301.039350px;}
.y20a{bottom:301.457850px;}
.y231{bottom:301.458000px;}
.y44b{bottom:301.722900px;}
.y199{bottom:304.433100px;}
.y2f{bottom:304.457850px;}
.y51{bottom:304.458000px;}
.y2ee{bottom:304.548000px;}
.y253{bottom:307.457850px;}
.y3c0{bottom:307.990996px;}
.y2c3{bottom:309.568763px;}
.y144{bottom:310.074450px;}
.y1ed{bottom:310.393800px;}
.y405{bottom:310.549050px;}
.y366{bottom:310.565911px;}
.y376{bottom:310.585500px;}
.y1dc{bottom:310.974900px;}
.y2f7{bottom:311.425814px;}
.y32e{bottom:313.937884px;}
.yb0{bottom:315.174900px;}
.y1cb{bottom:315.439350px;}
.y437{bottom:316.122900px;}
.ye8{bottom:316.457850px;}
.y379{bottom:318.378000px;}
.y3d5{bottom:318.939373px;}
.y209{bottom:319.457850px;}
.y230{bottom:319.458000px;}
.yb{bottom:321.278700px;}
.y15c{bottom:321.961050px;}
.y167{bottom:322.872600px;}
.ycb{bottom:324.301050px;}
.y1ec{bottom:324.793800px;}
.y198{bottom:325.433100px;}
.y2e{bottom:325.457850px;}
.y50{bottom:325.458000px;}
.y6e{bottom:327.959250px;}
.y411{bottom:328.392000px;}
.y1ca{bottom:329.839350px;}
.y365{bottom:329.882558px;}
.y3bf{bottom:330.132965px;}
.y436{bottom:330.522900px;}
.y412{bottom:330.549691px;}
.y2c2{bottom:332.005461px;}
.y31c{bottom:332.281877px;}
.y2f6{bottom:332.373414px;}
.y1df{bottom:332.985000px;}
.y32d{bottom:334.885484px;}
.yaf{bottom:336.174900px;}
.y166{bottom:337.272600px;}
.ye7{bottom:337.457850px;}
.y22f{bottom:337.458000px;}
.y171{bottom:338.733750px;}
.ya{bottom:342.878700px;}
.y252{bottom:343.457850px;}
.y303{bottom:343.724600px;}
.y1c9{bottom:344.239350px;}
.y435{bottom:344.922900px;}
.y197{bottom:346.433100px;}
.y2d{bottom:346.457850px;}
.y4f{bottom:346.458000px;}
.y3be{bottom:348.674250px;}
.y364{bottom:349.199205px;}
.y2c1{bottom:352.938742px;}
.y170{bottom:353.133750px;}
.y2f5{bottom:353.321014px;}
.y208{bottom:355.457850px;}
.y22e{bottom:355.458000px;}
.y142{bottom:355.486200px;}
.y32c{bottom:355.833084px;}
.y34b{bottom:355.851807px;}
.y15f{bottom:356.628900px;}
.yae{bottom:357.174900px;}
.ye6{bottom:358.457850px;}
.y1c8{bottom:358.639350px;}
.y44a{bottom:359.322900px;}
.y3d4{bottom:359.622627px;}
.y251{bottom:361.457850px;}
.yf8{bottom:363.464850px;}
.y9{bottom:364.478700px;}
.y302{bottom:364.672200px;}
.y196{bottom:367.433100px;}
.y2c{bottom:367.457850px;}
.y4e{bottom:367.458000px;}
.y363{bottom:368.515853px;}
.y6d{bottom:371.159250px;}
.y3e9{bottom:372.181500px;}
.y1c7{bottom:373.039350px;}
.y207{bottom:373.457850px;}
.y22d{bottom:373.458000px;}
.y434{bottom:373.722900px;}
.y2c0{bottom:373.872024px;}
.y317{bottom:374.177077px;}
.y2f4{bottom:374.268613px;}
.y348{bottom:376.799407px;}
.y15e{bottom:377.888700px;}
.yad{bottom:378.174900px;}
.y3e8{bottom:379.112791px;}
.ye5{bottom:379.457850px;}
.y3d3{bottom:381.764596px;}
.y362{bottom:387.832500px;}
.y433{bottom:388.122900px;}
.y138{bottom:388.272000px;}
.y195{bottom:388.433100px;}
.y2b{bottom:388.457850px;}
.y4d{bottom:388.458000px;}
.y143{bottom:388.826400px;}
.y206{bottom:391.457850px;}
.y22c{bottom:391.458000px;}
.y2ed{bottom:393.299424px;}
.y2bf{bottom:394.604850px;}
.y2f3{bottom:395.216213px;}
.y250{bottom:397.457850px;}
.y32b{bottom:397.713965px;}
.y3e7{bottom:398.034078px;}
.y159{bottom:399.148500px;}
.yac{bottom:399.174900px;}
.ye4{bottom:400.457850px;}
.y432{bottom:402.522900px;}
.y137{bottom:402.672000px;}
.y1ac{bottom:403.612200px;}
.y3d2{bottom:403.906565px;}
.y8{bottom:407.678700px;}
.y194{bottom:409.433100px;}
.y2a{bottom:409.457850px;}
.y4c{bottom:409.458000px;}
.y37f{bottom:411.194100px;}
.y6c{bottom:414.359100px;}
.y24f{bottom:415.457850px;}
.y449{bottom:416.922900px;}
.y3e6{bottom:416.955365px;}
.y136{bottom:417.072000px;}
.y2f2{bottom:417.652911px;}
.y1ab{bottom:418.012200px;}
.y32a{bottom:418.661565px;}
.ye3{bottom:421.457850px;}
.y3d1{bottom:422.447850px;}
.y360{bottom:426.436411px;}
.y205{bottom:427.457850px;}
.y22b{bottom:427.458000px;}
.y15b{bottom:427.479000px;}
.y193{bottom:430.433100px;}
.y29{bottom:430.457850px;}
.y4b{bottom:430.458000px;}
.y431{bottom:431.322900px;}
.y107{bottom:431.662200px;}
.y106{bottom:431.662350px;}
.y1aa{bottom:432.412200px;}
.y24e{bottom:433.457850px;}
.y3e5{bottom:435.876652px;}
.y15a{bottom:437.979000px;}
.y2f1{bottom:438.586193px;}
.y329{bottom:439.609165px;}
.yab{bottom:441.174900px;}
.ye2{bottom:442.457850px;}
.y2be{bottom:442.647000px;}
.y204{bottom:445.457850px;}
.y22a{bottom:445.458000px;}
.y430{bottom:445.722900px;}
.y35f{bottom:445.753058px;}
.y1a9{bottom:446.812200px;}
.y11e{bottom:447.874200px;}
.y7{bottom:450.878700px;}
.y192{bottom:451.433100px;}
.y28{bottom:451.457850px;}
.y4a{bottom:451.458000px;}
.y133{bottom:452.658000px;}
.y37a{bottom:453.554921px;}
.yc8{bottom:454.960800px;}
.y3e4{bottom:455.870400px;}
.y1d6{bottom:456.957750px;}
.y6b{bottom:457.559250px;}
.y2f0{bottom:459.519474px;}
.y42f{bottom:460.122900px;}
.y328{bottom:460.556764px;}
.y1a8{bottom:461.212200px;}
.y1e6{bottom:461.809500px;}
.yaa{bottom:462.774900px;}
.ye1{bottom:463.457850px;}
.y229{bottom:463.458000px;}
.y35e{bottom:465.069705px;}
.y173{bottom:468.596100px;}
.yc7{bottom:469.360800px;}
.y24d{bottom:469.457850px;}
.y191{bottom:472.433100px;}
.y27{bottom:472.457850px;}
.y49{bottom:472.458000px;}
.y132{bottom:473.658000px;}
.y3f1{bottom:473.713350px;}
.y1a5{bottom:473.904450px;}
.y17a{bottom:474.223350px;}
.y448{bottom:474.522900px;}
.y1a7{bottom:475.612200px;}
.y31d{bottom:478.872121px;}
.y2ef{bottom:480.252300px;}
.y203{bottom:481.457850px;}
.y228{bottom:481.458000px;}
.y327{bottom:481.504364px;}
.y172{bottom:482.996100px;}
.y111{bottom:484.015950px;}
.y35d{bottom:484.386353px;}
.ye0{bottom:484.457850px;}
.y177{bottom:486.030600px;}
.y24c{bottom:487.457850px;}
.y42e{bottom:488.922900px;}
.y11d{bottom:488.976450px;}
.y10d{bottom:488.976600px;}
.y114{bottom:489.501450px;}
.y1b8{bottom:490.012200px;}
.y361{bottom:492.183750px;}
.y190{bottom:493.433100px;}
.y26{bottom:493.457850px;}
.y48{bottom:493.458000px;}
.y6{bottom:494.078700px;}
.y131{bottom:494.658000px;}
.y110{bottom:498.415950px;}
.y202{bottom:499.457850px;}
.y227{bottom:499.458000px;}
.y176{bottom:500.430750px;}
.y6a{bottom:500.759100px;}
.y34c{bottom:502.442050px;}
.y326{bottom:502.451964px;}
.y42d{bottom:503.322900px;}
.y11c{bottom:503.376450px;}
.y10c{bottom:503.376600px;}
.ya9{bottom:503.574900px;}
.y35c{bottom:503.703000px;}
.y113{bottom:503.901450px;}
.ydf{bottom:505.457850px;}
.y383{bottom:511.124400px;}
.ybe{bottom:511.457850px;}
.y18f{bottom:514.433100px;}
.y25{bottom:514.457850px;}
.y47{bottom:514.458000px;}
.yc1{bottom:514.488300px;}
.yc6{bottom:515.551350px;}
.y130{bottom:515.658000px;}
.y153{bottom:516.855450px;}
.y201{bottom:517.457850px;}
.y226{bottom:517.458000px;}
.y42c{bottom:517.722900px;}
.y10b{bottom:517.776600px;}
.y10f{bottom:517.776750px;}
.y112{bottom:518.301450px;}
.yf0{bottom:518.740200px;}
.yf7{bottom:518.740350px;}
.y91{bottom:519.803250px;}
.y69{bottom:522.359100px;}
.y378{bottom:523.015807px;}
.y325{bottom:523.399564px;}
.ya8{bottom:524.574900px;}
.yde{bottom:526.457850px;}
.yc0{bottom:528.888300px;}
.y152{bottom:531.255450px;}
.y42b{bottom:532.122900px;}
.y10a{bottom:532.176600px;}
.y10e{bottom:532.176750px;}
.yf2{bottom:533.140200px;}
.yf6{bottom:533.140350px;}
.y90{bottom:534.203250px;}
.y18e{bottom:535.433100px;}
.y24{bottom:535.457850px;}
.y46{bottom:535.458000px;}
.y12f{bottom:536.658000px;}
.y5{bottom:537.278700px;}
.y141{bottom:537.874050px;}
.y13d{bottom:537.874200px;}
.y175{bottom:541.517700px;}
.y2cc{bottom:542.777550px;}
.y3e3{bottom:542.841450px;}
.ybf{bottom:543.288300px;}
.yfa{bottom:543.644850px;}
.y165{bottom:543.918750px;}
.y68{bottom:543.959250px;}
.y347{bottom:544.337250px;}
.y324{bottom:544.347163px;}
.y105{bottom:544.457850px;}
.ya7{bottom:545.574900px;}
.y151{bottom:545.655450px;}
.yf9{bottom:546.164850px;}
.y42a{bottom:546.522900px;}
.y24b{bottom:547.457850px;}
.yf1{bottom:547.540200px;}
.yf5{bottom:547.540350px;}
.y8f{bottom:548.603250px;}
.y140{bottom:552.274050px;}
.y13c{bottom:552.274200px;}
.yca{bottom:552.579150px;}
.y200{bottom:553.457850px;}
.y225{bottom:553.458000px;}
.y174{bottom:555.917700px;}
.y18d{bottom:556.433100px;}
.y23{bottom:556.457850px;}
.y45{bottom:556.458000px;}
.y12e{bottom:557.658000px;}
.y164{bottom:558.318600px;}
.y44e{bottom:560.922900px;}
.y1eb{bottom:561.502350px;}
.y35a{bottom:561.613763px;}
.yf4{bottom:561.940350px;}
.y104{bottom:562.457850px;}
.y1e5{bottom:562.971000px;}
.y2e8{bottom:563.719800px;}
.y323{bottom:565.294763px;}
.y67{bottom:565.559250px;}
.ya6{bottom:566.574900px;}
.y83{bottom:566.575050px;}
.y13f{bottom:566.674050px;}
.y14e{bottom:566.909100px;}
.yc9{bottom:566.979150px;}
.y14c{bottom:569.690250px;}
.ydd{bottom:571.457850px;}
.y224{bottom:571.458000px;}
.y429{bottom:575.322900px;}
.y1ea{bottom:575.902350px;}
.y121{bottom:576.804300px;}
.y18c{bottom:577.433100px;}
.y22{bottom:577.457850px;}
.y44{bottom:577.458000px;}
.y103{bottom:580.457850px;}
.y1f0{bottom:580.821600px;}
.y359{bottom:580.930411px;}
.y1de{bottom:580.930500px;}
.y82{bottom:580.975050px;}
.y13e{bottom:581.074050px;}
.y24a{bottom:586.457850px;}
.y66{bottom:587.159250px;}
.y322{bottom:587.731461px;}
.y37b{bottom:588.731842px;}
.y1ff{bottom:589.457850px;}
.y223{bottom:589.458000px;}
.y428{bottom:589.722900px;}
.y1e9{bottom:590.302350px;}
.y28e{bottom:590.757000px;}
.y120{bottom:591.204300px;}
.y1bc{bottom:591.274050px;}
.y1ef{bottom:595.221600px;}
.ydc{bottom:595.457850px;}
.y88{bottom:595.458000px;}
.y14b{bottom:596.547900px;}
.y18b{bottom:598.433100px;}
.y21{bottom:598.457850px;}
.y43{bottom:598.458000px;}
.y12d{bottom:599.658000px;}
.y358{bottom:600.247058px;}
.y3aa{bottom:603.276000px;}
.y427{bottom:604.122900px;}
.y249{bottom:604.457850px;}
.y11f{bottom:605.604300px;}
.y1bb{bottom:605.674050px;}
.y1fe{bottom:607.457850px;}
.y222{bottom:607.458000px;}
.y3d0{bottom:607.528500px;}
.ya5{bottom:608.574900px;}
.y321{bottom:608.664742px;}
.y65{bottom:608.759100px;}
.y1ee{bottom:609.621600px;}
.ybc{bottom:610.866300px;}
.y14a{bottom:610.947900px;}
.y3b3{bottom:614.490046px;}
.ydb{bottom:616.457850px;}
.y87{bottom:616.458000px;}
.y426{bottom:618.522900px;}
.y18a{bottom:619.433100px;}
.y20{bottom:619.457850px;}
.y42{bottom:619.458000px;}
.y357{bottom:619.563705px;}
.y1ba{bottom:620.074050px;}
.y12c{bottom:620.658000px;}
.ycc{bottom:621.832950px;}
.y248{bottom:622.457850px;}
.y1c6{bottom:624.389700px;}
.ybb{bottom:625.266300px;}
.y149{bottom:625.347900px;}
.y1fd{bottom:625.457850px;}
.y221{bottom:625.458000px;}
.y109{bottom:627.165300px;}
.y35b{bottom:627.366000px;}
.y320{bottom:629.598024px;}
.y64{bottom:630.359100px;}
.y425{bottom:632.922900px;}
.y1b9{bottom:634.474050px;}
.y3b2{bottom:636.632015px;}
.yda{bottom:637.457850px;}
.y86{bottom:637.458000px;}
.y1e4{bottom:637.773900px;}
.y1c5{bottom:638.789700px;}
.y356{bottom:638.880353px;}
.y189{bottom:640.433100px;}
.y1f{bottom:640.457850px;}
.y41{bottom:640.458000px;}
.y108{bottom:641.565300px;}
.y12b{bottom:641.658000px;}
.y1d5{bottom:642.916950px;}
.y1fc{bottom:643.457850px;}
.y220{bottom:643.458000px;}
.y447{bottom:647.322900px;}
.y34d{bottom:649.032294px;}
.y31f{bottom:650.330850px;}
.ya4{bottom:651.174900px;}
.y1a4{bottom:651.359700px;}
.y179{bottom:651.678600px;}
.y1c4{bottom:653.189700px;}
.y150{bottom:654.840900px;}
.y3b1{bottom:655.173300px;}
.y117{bottom:655.496550px;}
.y355{bottom:658.197000px;}
.y247{bottom:658.457850px;}
.y85{bottom:658.458000px;}
.y188{bottom:661.433100px;}
.y1e{bottom:661.457850px;}
.y40{bottom:661.458000px;}
.y424{bottom:661.722900px;}
.y12a{bottom:662.658000px;}
.y8e{bottom:665.025600px;}
.y1c3{bottom:667.589700px;}
.y296{bottom:668.462750px;}
.y116{bottom:669.896550px;}
.ya3{bottom:672.174900px;}
.y63{bottom:673.559250px;}
.y14f{bottom:674.193750px;}
.y423{bottom:676.122900px;}
.y246{bottom:676.457850px;}
.y377{bottom:677.509376px;}
.y8d{bottom:679.425450px;}
.yd9{bottom:679.457850px;}
.y84{bottom:679.458000px;}
.y1c2{bottom:681.989700px;}
.y187{bottom:682.433100px;}
.y1d{bottom:682.457850px;}
.y3f{bottom:682.458000px;}
.y129{bottom:683.658000px;}
.y115{bottom:684.296700px;}
.y295{bottom:689.410350px;}
.y422{bottom:690.522900px;}
.ya2{bottom:693.174900px;}
.y14d{bottom:693.546450px;}
.y245{bottom:694.457850px;}
.y62{bottom:695.159250px;}
.y1c1{bottom:696.389700px;}
.y353{bottom:696.830300px;}
.y1be{bottom:697.322850px;}
.y1c0{bottom:697.323000px;}
.y1fb{bottom:697.457850px;}
.y21f{bottom:697.458000px;}
.yd8{bottom:700.457850px;}
.y382{bottom:702.481650px;}
.yba{bottom:702.858000px;}
.y186{bottom:703.433100px;}
.y1c{bottom:703.457850px;}
.y3e{bottom:703.458000px;}
.y128{bottom:704.658000px;}
.y421{bottom:704.922900px;}
.y13b{bottom:706.844700px;}
.y2b7{bottom:710.352750px;}
.y1bd{bottom:711.722850px;}
.y1bf{bottom:711.723000px;}
.y244{bottom:712.457850px;}
.y125{bottom:713.128500px;}
.ya1{bottom:714.174900px;}
.y1fa{bottom:715.457850px;}
.y21e{bottom:715.458000px;}
.y61{bottom:716.759100px;}
.y352{bottom:717.520106px;}
.y420{bottom:719.322900px;}
.y13a{bottom:721.244700px;}
.y1b4{bottom:722.185050px;}
.y37c{bottom:723.908763px;}
.y185{bottom:724.433100px;}
.y1b{bottom:724.457850px;}
.y3d{bottom:724.458000px;}
.y148{bottom:724.741650px;}
.y127{bottom:725.658000px;}
.y124{bottom:727.528500px;}
.y243{bottom:730.457850px;}
.yed{bottom:731.338650px;}
.y1f9{bottom:733.457850px;}
.y21d{bottom:733.458000px;}
.y446{bottom:733.722900px;}
.y139{bottom:735.644700px;}
.y1b3{bottom:736.584900px;}
.y1b7{bottom:736.585050px;}
.y351{bottom:736.823550px;}
.y60{bottom:738.359100px;}
.y123{bottom:741.928500px;}
.y397{bottom:741.967500px;}
.yd7{bottom:742.457850px;}
.y184{bottom:745.433100px;}
.y1a{bottom:745.457850px;}
.y3c{bottom:745.458000px;}
.yec{bottom:745.738650px;}
.y126{bottom:746.658000px;}
.y41f{bottom:748.122900px;}
.y242{bottom:748.457850px;}
.y1b2{bottom:750.984900px;}
.y1b6{bottom:750.985050px;}
.y1f8{bottom:751.457850px;}
.y21c{bottom:751.458000px;}
.y39d{bottom:754.409315px;}
.y3bd{bottom:754.725000px;}
.y34f{bottom:756.131354px;}
.ya0{bottom:756.174900px;}
.y122{bottom:756.328500px;}
.y156{bottom:759.930150px;}
.y5f{bottom:759.959250px;}
.yeb{bottom:760.138650px;}
.y169{bottom:760.327650px;}
.y37e{bottom:761.538600px;}
.y41e{bottom:762.522900px;}
.y354{bottom:762.548250px;}
.yd6{bottom:763.457850px;}
.y1b1{bottom:765.385050px;}
.y183{bottom:766.433100px;}
.y19{bottom:766.457850px;}
.y3b{bottom:766.458000px;}
.y1f7{bottom:769.457850px;}
.y21b{bottom:769.458000px;}
.y3cc{bottom:770.219400px;}
.y39c{bottom:772.950600px;}
.y155{bottom:774.330000px;}
.y168{bottom:774.727650px;}
.y34e{bottom:775.249950px;}
.y41d{bottom:776.922900px;}
.y9f{bottom:777.775050px;}
.y1b0{bottom:779.784900px;}
.y1b5{bottom:779.785050px;}
.y241{bottom:784.457850px;}
.y18{bottom:787.457850px;}
.y3a{bottom:787.458000px;}
.y154{bottom:788.730150px;}
.y41c{bottom:791.322900px;}
.y25d{bottom:792.993000px;}
.y1af{bottom:794.185050px;}
.y240{bottom:802.457850px;}
.y5e{bottom:803.159250px;}
.y1f6{bottom:805.457850px;}
.y21a{bottom:805.458000px;}
.y445{bottom:805.722900px;}
.y182{bottom:808.433100px;}
.y17{bottom:808.457850px;}
.y39{bottom:808.458000px;}
.y1ae{bottom:808.584900px;}
.y388{bottom:809.373477px;}
.y261{bottom:809.983200px;}
.y3ca{bottom:810.899400px;}
.y9e{bottom:818.574900px;}
.y41b{bottom:820.122900px;}
.y23f{bottom:820.457850px;}
.y1ad{bottom:822.985050px;}
.y1f5{bottom:823.457850px;}
.y219{bottom:823.458000px;}
.y1a3{bottom:828.814950px;}
.y1d4{bottom:828.876150px;}
.y178{bottom:829.133850px;}
.y181{bottom:829.433100px;}
.y16{bottom:829.457850px;}
.y38{bottom:829.458000px;}
.y25f{bottom:830.925450px;}
.y387{bottom:831.515446px;}
.y444{bottom:834.522900px;}
.y23e{bottom:838.457850px;}
.y9d{bottom:839.574900px;}
.y350{bottom:839.795250px;}
.y1f4{bottom:841.457850px;}
.y218{bottom:841.458000px;}
.y5d{bottom:846.359100px;}
.y41a{bottom:848.922900px;}
.y102{bottom:848.923050px;}
.y180{bottom:850.433100px;}
.y15{bottom:850.457850px;}
.y37{bottom:850.458000px;}
.y25c{bottom:851.863524px;}
.y386{bottom:853.657415px;}
.y23d{bottom:856.457850px;}
.y37d{bottom:859.085684px;}
.y1f3{bottom:859.457850px;}
.y217{bottom:859.458000px;}
.y9c{bottom:860.574900px;}
.y419{bottom:863.322900px;}
.y101{bottom:863.323050px;}
.y5c{bottom:867.959250px;}
.y17f{bottom:871.433100px;}
.y14{bottom:871.457850px;}
.y36{bottom:871.458000px;}
.y385{bottom:872.198700px;}
.y25b{bottom:872.596350px;}
.y23c{bottom:874.457850px;}
.y1f2{bottom:877.457850px;}
.y216{bottom:877.458000px;}
.y418{bottom:877.722900px;}
.y100{bottom:877.723050px;}
.y9b{bottom:881.574900px;}
.y5b{bottom:889.559100px;}
.y417{bottom:892.122900px;}
.yff{bottom:892.123050px;}
.y17e{bottom:892.433100px;}
.y13{bottom:892.457850px;}
.y35{bottom:892.458000px;}
.y1f1{bottom:895.457850px;}
.y215{bottom:895.458000px;}
.y9a{bottom:902.574900px;}
.y443{bottom:906.522900px;}
.yfe{bottom:906.523050px;}
.y5a{bottom:911.159250px;}
.y118{bottom:913.433100px;}
.y12{bottom:913.457850px;}
.y34{bottom:913.458000px;}
.y416{bottom:920.922900px;}
.yfd{bottom:920.923050px;}
.y1e3{bottom:924.496350px;}
.y415{bottom:935.322900px;}
.yfc{bottom:935.323050px;}
.y25a{bottom:943.771800px;}
.y55{bottom:945.174900px;}
.y11{bottom:945.175050px;}
.y414{bottom:949.722900px;}
.yfb{bottom:949.723050px;}
.y1e2{bottom:958.512150px;}
.y33{bottom:982.157700px;}
.y59{bottom:985.568700px;}
.y8a{bottom:1026.554400px;}
.hf{height:1.699333px;}
.h10{height:1.702575px;}
.h11{height:1.723275px;}
.h24{height:37.180065px;}
.h22{height:37.205002px;}
.h4{height:41.520000px;}
.hb{height:45.380859px;}
.he{height:46.710000px;}
.h1c{height:47.346746px;}
.h1b{height:47.681990px;}
.h1e{height:51.024000px;}
.h14{height:51.344350px;}
.h13{height:51.707899px;}
.h5{height:51.900000px;}
.h7{height:53.136000px;}
.h1d{height:53.576058px;}
.h12{height:53.712000px;}
.h8{height:54.726562px;}
.hc{height:54.954288px;}
.hd{height:57.090000px;}
.h6{height:62.280000px;}
.ha{height:63.090000px;}
.h26{height:66.919500px;}
.h3{height:67.470000px;}
.h21{height:72.283500px;}
.h1f{height:76.536000px;}
.h9{height:80.550000px;}
.h18{height:83.976000px;}
.h15{height:97.795500px;}
.h2{height:98.610000px;}
.h25{height:111.730500px;}
.h23{height:116.272500px;}
.h20{height:136.063500px;}
.h17{height:148.110000px;}
.h16{height:148.111500px;}
.h19{height:178.582500px;}
.h1a{height:792.024000px;}
.h0{height:1084.252500px;}
.h1{height:1084.500000px;}
.w3{width:218.976000px;}
.w6{width:266.622000px;}
.w4{width:276.123000px;}
.wb{width:293.386500px;}
.w5{width:327.402000px;}
.w8{width:329.527500px;}
.w7{width:329.529000px;}
.wa{width:372.433500px;}
.w9{width:599.527500px;}
.w2{width:821.905500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xa8{left:-472.140600px;}
.xa3{left:-334.400325px;}
.xa7{left:-328.878900px;}
.xa9{left:-317.237725px;}
.xa2{left:-304.837800px;}
.xab{left:-273.703840px;}
.xac{left:-268.580902px;}
.xaa{left:-241.975950px;}
.xbc{left:-194.434117px;}
.x13{left:-189.637200px;}
.x14{left:-177.532200px;}
.x7c{left:-137.830449px;}
.x98{left:-133.324246px;}
.xc0{left:-7.547080px;}
.xc5{left:-3.613169px;}
.x0{left:0.000000px;}
.x7b{left:11.537535px;}
.x8c{left:15.237300px;}
.x7a{left:17.522563px;}
.xc2{left:20.215070px;}
.x97{left:22.028767px;}
.x7d{left:30.151260px;}
.xa5{left:32.923479px;}
.x99{left:34.657463px;}
.xbf{left:40.751995px;}
.x2{left:42.519600px;}
.x86{left:43.594800px;}
.xb1{left:45.602663px;}
.x95{left:48.102300px;}
.x6{left:63.779550px;}
.x2a{left:73.665300px;}
.x80{left:77.387167px;}
.x9a{left:79.827750px;}
.x9d{left:81.866400px;}
.x81{left:82.942648px;}
.x9e{left:87.421881px;}
.x88{left:89.547000px;}
.xe{left:90.885750px;}
.xb2{left:96.000750px;}
.x8b{left:104.784300px;}
.x68{left:106.932900px;}
.x7f{left:111.793921px;}
.x78{left:117.993000px;}
.x5{left:127.559100px;}
.x69{left:129.397200px;}
.x23{left:131.317350px;}
.x5e{left:132.468450px;}
.x60{left:134.808900px;}
.x50{left:136.328700px;}
.x22{left:137.388750px;}
.x5f{left:139.632900px;}
.xbd{left:140.782657px;}
.x62{left:141.996750px;}
.x57{left:143.328450px;}
.x8{left:144.566850px;}
.x24{left:148.188150px;}
.x58{left:150.012300px;}
.xd{left:154.559100px;}
.x1f{left:156.645600px;}
.x5c{left:159.743700px;}
.x77{left:161.587800px;}
.x5a{left:162.887550px;}
.x89{left:164.607488px;}
.xc6{left:166.512436px;}
.xbe{left:168.321938px;}
.x61{left:169.727700px;}
.x5b{left:172.224000px;}
.x5d{left:173.544000px;}
.x44{left:178.139700px;}
.x9c{left:180.051600px;}
.x8d{left:183.219009px;}
.x2f{left:189.323700px;}
.xb3{left:190.979250px;}
.x2d{left:192.359400px;}
.xc4{left:194.038950px;}
.x2e{left:195.941400px;}
.x2c{left:198.192900px;}
.xba{left:199.862250px;}
.x87{left:200.908050px;}
.x30{left:205.469250px;}
.x63{left:212.579700px;}
.x6f{left:214.724400px;}
.xb7{left:220.627207px;}
.xb0{left:223.559250px;}
.x56{left:227.543100px;}
.x8f{left:230.454916px;}
.x59{left:231.671100px;}
.x21{left:234.022950px;}
.x90{left:236.010397px;}
.xb6{left:244.617151px;}
.xb8{left:248.166488px;}
.x1{left:255.118050px;}
.x31{left:264.999750px;}
.x32{left:267.705600px;}
.x33{left:272.637450px;}
.xb9{left:289.698841px;}
.x26{left:298.304700px;}
.x17{left:308.037900px;}
.x6d{left:312.726000px;}
.x34{left:328.776000px;}
.x35{left:334.944000px;}
.x67{left:340.220250px;}
.x20{left:342.222450px;}
.x1d{left:344.574150px;}
.x27{left:365.172000px;}
.xbb{left:369.987855px;}
.x19{left:371.817450px;}
.x1e{left:373.277850px;}
.x53{left:374.550600px;}
.x37{left:382.499850px;}
.x76{left:383.863800px;}
.x38{left:386.990700px;}
.x2b{left:388.248900px;}
.x36{left:391.808550px;}
.x29{left:396.342750px;}
.x39{left:399.098550px;}
.x64{left:403.999800px;}
.x65{left:408.127950px;}
.x3{left:410.146350px;}
.x96{left:414.377453px;}
.x7e{left:419.736524px;}
.x74{left:423.229200px;}
.xa1{left:424.401895px;}
.x79{left:427.608150px;}
.x9b{left:432.121777px;}
.xa{left:435.826650px;}
.x25{left:444.781050px;}
.x85{left:452.195997px;}
.x4b{left:457.118550px;}
.x3a{left:458.140950px;}
.x55{left:460.872150px;}
.x10{left:462.826800px;}
.xb5{left:464.934150px;}
.x4a{left:471.190500px;}
.x84{left:473.358370px;}
.xa0{left:477.837604px;}
.x71{left:479.423700px;}
.x28{left:481.003950px;}
.x83{left:484.469332px;}
.x82{left:488.535715px;}
.xa6{left:491.211300px;}
.x9f{left:493.014949px;}
.x6a{left:494.078700px;}
.x6e{left:497.892900px;}
.x7{left:499.606350px;}
.x16{left:501.563700px;}
.xa4{left:507.567150px;}
.x3c{left:508.960950px;}
.x3d{left:513.451800px;}
.xb4{left:515.506650px;}
.x3b{left:517.813800px;}
.x3e{left:525.559650px;}
.xf{left:526.606350px;}
.xaf{left:530.218594px;}
.x4c{left:532.487550px;}
.xc1{left:535.747500px;}
.x4d{left:537.689400px;}
.xae{left:549.733293px;}
.x18{left:552.296250px;}
.xad{left:559.979170px;}
.x8a{left:562.941203px;}
.xc3{left:569.200350px;}
.x3f{left:572.620500px;}
.x40{left:576.682350px;}
.x51{left:578.267700px;}
.x66{left:579.685050px;}
.x8e{left:580.707947px;}
.x41{left:588.790200px;}
.x49{left:600.590550px;}
.x1c{left:602.362200px;}
.x94{left:605.263746px;}
.x1a{left:616.075800px;}
.x52{left:621.170100px;}
.x93{left:626.426119px;}
.x4f{left:629.291400px;}
.x46{left:630.354300px;}
.x75{left:634.474050px;}
.x92{left:637.537081px;}
.x91{left:641.603464px;}
.x43{left:652.584750px;}
.x45{left:655.703400px;}
.x42{left:668.831250px;}
.x73{left:673.511850px;}
.x6c{left:683.059950px;}
.x1b{left:699.789300px;}
.x11{left:703.276050px;}
.x4e{left:705.225900px;}
.x47{left:708.696900px;}
.xc{left:710.552700px;}
.x54{left:712.267500px;}
.x12{left:715.381050px;}
.x15{left:718.747350px;}
.x72{left:726.385050px;}
.x48{left:733.464600px;}
.x9{left:739.842450px;}
.x70{left:757.211850px;}
.x6b{left:830.953800px;}
.xb{left:837.433800px;}
.x4{left:843.913650px;}
@media print{
.v7{vertical-align:-59.683200pt;}
.v6{vertical-align:-29.221333pt;}
.v8{vertical-align:-5.294571pt;}
.v9{vertical-align:-3.813197pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.778667pt;}
.v3{vertical-align:4.542933pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:17.760000pt;}
.v2{vertical-align:21.312000pt;}
.ls4{letter-spacing:-3.840000pt;}
.ls7{letter-spacing:-2.133333pt;}
.lsd{letter-spacing:-0.318733pt;}
.lse{letter-spacing:-0.317766pt;}
.ls8{letter-spacing:-0.305456pt;}
.lsa{letter-spacing:-0.281674pt;}
.lsf{letter-spacing:-0.272371pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005973pt;}
.ls5{letter-spacing:0.008000pt;}
.ls1{letter-spacing:0.009920pt;}
.ls6{letter-spacing:0.011200pt;}
.ls2{letter-spacing:0.013547pt;}
.lsc{letter-spacing:300.697805pt;}
.lsb{letter-spacing:551.329126pt;}
.ls9{letter-spacing:597.879211pt;}
.ws3a{word-spacing:-597.879211pt;}
.ws3c{word-spacing:-551.329126pt;}
.ws51{word-spacing:-300.697805pt;}
.ws4d{word-spacing:-295.613542pt;}
.ws3{word-spacing:-18.000000pt;}
.ws1{word-spacing:-15.360000pt;}
.ws2{word-spacing:-14.912000pt;}
.ws29{word-spacing:-14.152795pt;}
.ws6{word-spacing:-13.546667pt;}
.ws35{word-spacing:-13.050877pt;}
.ws5{word-spacing:-12.853333pt;}
.ws12{word-spacing:-12.800000pt;}
.ws46{word-spacing:-12.619866pt;}
.wsd{word-spacing:-11.520000pt;}
.ws8{word-spacing:-10.240000pt;}
.ws9{word-spacing:-7.897707pt;}
.ws7{word-spacing:-7.493493pt;}
.wsa{word-spacing:-6.400000pt;}
.ws15{word-spacing:-1.578667pt;}
.ws4f{word-spacing:-0.424977pt;}
.ws54{word-spacing:-0.363162pt;}
.ws17{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.160000pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws52{word-spacing:-0.090790pt;}
.ws55{word-spacing:-0.085333pt;}
.ws18{word-spacing:-0.053333pt;}
.ws1f{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws53{word-spacing:0.272371pt;}
.ws4e{word-spacing:0.318733pt;}
.ws1c{word-spacing:0.426667pt;}
.ws3b{word-spacing:0.563347pt;}
.ws39{word-spacing:0.610912pt;}
.wsf{word-spacing:1.706667pt;}
.ws20{word-spacing:2.133333pt;}
.ws4a{word-spacing:26.420006pt;}
.wse{word-spacing:62.186667pt;}
.ws4c{word-spacing:102.320781pt;}
.ws45{word-spacing:138.083119pt;}
.ws4{word-spacing:176.640000pt;}
.wsc{word-spacing:177.936000pt;}
.wsb{word-spacing:179.146667pt;}
.ws36{word-spacing:193.228090pt;}
.ws38{word-spacing:199.847419pt;}
.ws2a{word-spacing:209.542816pt;}
.ws2c{word-spacing:216.721032pt;}
.ws13{word-spacing:217.252267pt;}
.ws37{word-spacing:228.437290pt;}
.ws2b{word-spacing:247.724816pt;}
.ws2e{word-spacing:251.065069pt;}
.ws14{word-spacing:251.812267pt;}
.ws47{word-spacing:269.919859pt;}
.ws2d{word-spacing:272.263115pt;}
.ws22{word-spacing:272.268206pt;}
.ws4b{word-spacing:276.365978pt;}
.ws40{word-spacing:277.616269pt;}
.ws48{word-spacing:281.359450pt;}
.ws49{word-spacing:281.813402pt;}
.ws43{word-spacing:291.959245pt;}
.ws44{word-spacing:307.364663pt;}
.ws41{word-spacing:308.002129pt;}
.ws2f{word-spacing:339.989424pt;}
.ws33{word-spacing:355.472083pt;}
.ws23{word-spacing:368.695574pt;}
.ws27{word-spacing:385.485472pt;}
.ws31{word-spacing:418.191405pt;}
.ws32{word-spacing:430.866717pt;}
.ws25{word-spacing:453.500341pt;}
.ws34{word-spacing:463.446963pt;}
.ws26{word-spacing:467.245861pt;}
.ws30{word-spacing:475.089472pt;}
.ws28{word-spacing:502.576939pt;}
.ws11{word-spacing:514.752533pt;}
.ws24{word-spacing:515.202453pt;}
.ws1d{word-spacing:579.011200pt;}
.ws50{word-spacing:586.574596pt;}
.ws3d{word-spacing:612.285709pt;}
.ws10{word-spacing:616.634133pt;}
.ws3e{word-spacing:656.908301pt;}
.ws3f{word-spacing:686.975428pt;}
.ws42{word-spacing:713.547119pt;}
.ws19{word-spacing:797.509333pt;}
.ws16{word-spacing:819.566933pt;}
.ws21{word-spacing:1013.954133pt;}
.ws1b{word-spacing:1098.247467pt;}
._28{margin-left:-1281.100267pt;}
._14{margin-left:-177.936000pt;}
._1f{margin-left:-12.640000pt;}
._60{margin-left:-8.000000pt;}
._0{margin-left:-7.093333pt;}
._5{margin-left:-5.760000pt;}
._c{margin-left:-4.659200pt;}
._3{margin-left:-3.733333pt;}
._2{margin-left:-2.176000pt;}
._1{margin-left:-1.013333pt;}
._4{width:1.669333pt;}
._17{width:3.233600pt;}
._11{width:19.520000pt;}
._1e{width:20.960000pt;}
._7{width:34.112000pt;}
._9{width:36.821333pt;}
._1a{width:44.790400pt;}
._18{width:59.093333pt;}
._d{width:62.186667pt;}
._e{width:66.000000pt;}
._7a{width:78.230569pt;}
._1b{width:83.146667pt;}
._79{width:84.929880pt;}
._19{width:93.600000pt;}
._15{width:98.560000pt;}
._1c{width:104.955200pt;}
._12{width:107.306667pt;}
._16{width:111.668800pt;}
._25{width:114.613333pt;}
._4c{width:117.460368pt;}
._24{width:119.146667pt;}
._13{width:121.396800pt;}
._8{width:122.997333pt;}
._2c{width:125.952000pt;}
._2e{width:139.477333pt;}
._1d{width:143.806933pt;}
._23{width:149.013333pt;}
._10{width:150.666667pt;}
._26{width:152.373333pt;}
._7d{width:161.697702pt;}
._55{width:167.096643pt;}
._48{width:169.114554pt;}
._b{width:176.064000pt;}
._6{width:177.216000pt;}
._f{width:179.146667pt;}
._2d{width:181.760000pt;}
._30{width:183.209589pt;}
._4f{width:185.364414pt;}
._49{width:186.939856pt;}
._31{width:201.165093pt;}
._47{width:202.546925pt;}
._5d{width:214.796828pt;}
._44{width:233.073603pt;}
._4a{width:240.126744pt;}
._5b{width:241.555820pt;}
._2a{width:250.532267pt;}
._5e{width:254.632934pt;}
._32{width:260.401240pt;}
._42{width:262.091923pt;}
._68{width:269.954167pt;}
._45{width:276.132224pt;}
._57{width:279.420211pt;}
._61{width:286.407467pt;}
._71{width:288.668077pt;}
._73{width:294.173545pt;}
._5c{width:297.447322pt;}
._3d{width:303.012352pt;}
._54{width:306.556006pt;}
._75{width:307.779456pt;}
._7c{width:311.865024pt;}
._7b{width:318.220352pt;}
._69{width:320.592075pt;}
._6d{width:321.548273pt;}
._43{width:322.561536pt;}
._3f{width:328.467019pt;}
._76{width:330.023104pt;}
._3b{width:332.494677pt;}
._67{width:334.887949pt;}
._66{width:362.380659pt;}
._62{width:369.836292pt;}
._6e{width:384.438385pt;}
._22{width:405.420267pt;}
._63{width:419.830240pt;}
._4d{width:430.678934pt;}
._59{width:437.789216pt;}
._52{width:443.354246pt;}
._33{width:467.042224pt;}
._40{width:474.882261pt;}
._58{width:476.075330pt;}
._39{width:480.787744pt;}
._5a{width:488.891478pt;}
._64{width:490.801410pt;}
._5f{width:496.590557pt;}
._3e{width:516.271549pt;}
._41{width:530.169797pt;}
._21{width:531.411733pt;}
._46{width:538.518928pt;}
._65{width:544.373075pt;}
._51{width:551.349835pt;}
._6a{width:562.173003pt;}
._36{width:584.439147pt;}
._38{width:597.675573pt;}
._27{width:630.410133pt;}
._6c{width:668.701414pt;}
._72{width:669.669990pt;}
._6b{width:673.331068pt;}
._6f{width:680.919505pt;}
._77{width:704.599477pt;}
._78{width:723.704917pt;}
._70{width:748.384614pt;}
._74{width:751.946671pt;}
._4b{width:797.136288pt;}
._20{width:798.394133pt;}
._50{width:810.750512pt;}
._2f{width:851.954667pt;}
._4e{width:855.254941pt;}
._37{width:864.807520pt;}
._53{width:868.681382pt;}
._35{width:879.204187pt;}
._34{width:927.466235pt;}
._3a{width:942.026304pt;}
._a{width:1065.544000pt;}
._56{width:1162.143023pt;}
._3c{width:1259.906997pt;}
._29{width:1843.798400pt;}
._2b{width:1866.838400pt;}
.fsa{font-size:2.101591pt;}
.fsb{font-size:2.105600pt;}
.fsc{font-size:2.131200pt;}
.fsd{font-size:24.874667pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:37.312000pt;}
.fs2{font-size:42.666667pt;}
.fs11{font-size:45.395200pt;}
.fsf{font-size:46.945600pt;}
.fs9{font-size:48.000000pt;}
.fse{font-size:50.909333pt;}
.fs10{font-size:53.122133pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs5{font-size:80.000000pt;}
.fs0{font-size:101.333333pt;}
.y284{bottom:-675.145159pt;}
.y283{bottom:-656.525071pt;}
.y282{bottom:-637.904982pt;}
.y281{bottom:-619.284893pt;}
.y280{bottom:-600.664805pt;}
.y285{bottom:-582.070171pt;}
.y2b4{bottom:-545.356183pt;}
.y27f{bottom:-544.817266pt;}
.y2b3{bottom:-526.736094pt;}
.y27e{bottom:-526.197177pt;}
.y2b2{bottom:-508.116005pt;}
.y27d{bottom:-507.577089pt;}
.y2b1{bottom:-489.495917pt;}
.y27c{bottom:-488.957000pt;}
.y2b0{bottom:-470.875828pt;}
.y27b{bottom:-470.336911pt;}
.y2b5{bottom:-452.281194pt;}
.y289{bottom:-451.755005pt;}
.y27a{bottom:-451.716823pt;}
.y279{bottom:-433.096734pt;}
.y2af{bottom:-415.028289pt;}
.y278{bottom:-414.476645pt;}
.y2ae{bottom:-396.408201pt;}
.y277{bottom:-395.856557pt;}
.y2e4{bottom:-395.099889pt;}
.y2ad{bottom:-377.788112pt;}
.y286{bottom:-377.300105pt;}
.y276{bottom:-377.236468pt;}
.y2e3{bottom:-376.479801pt;}
.y2ac{bottom:-359.168023pt;}
.y275{bottom:-358.616379pt;}
.y2e2{bottom:-357.859712pt;}
.y2ab{bottom:-340.547935pt;}
.y274{bottom:-339.996291pt;}
.y2e1{bottom:-339.239623pt;}
.y2aa{bottom:-321.927846pt;}
.y2b9{bottom:-321.840699pt;}
.y28a{bottom:-321.452566pt;}
.y273{bottom:-321.376202pt;}
.y2e0{bottom:-320.619535pt;}
.y314{bottom:-318.935802pt;}
.y2a9{bottom:-303.307757pt;}
.y272{bottom:-302.756113pt;}
.y2e5{bottom:-302.024901pt;}
.y313{bottom:-300.315713pt;}
.y396{bottom:-298.095637pt;}
.y2a8{bottom:-284.687669pt;}
.y271{bottom:-284.136025pt;}
.y312{bottom:-281.695625pt;}
.y395{bottom:-278.413887pt;}
.y2a7{bottom:-266.067580pt;}
.y270{bottom:-265.515936pt;}
.y2df{bottom:-264.771996pt;}
.y311{bottom:-263.075536pt;}
.y394{bottom:-261.932745pt;}
.y3a9{bottom:-248.956745pt;}
.y2b6{bottom:-247.511128pt;}
.y2a6{bottom:-247.447491pt;}
.y26f{bottom:-246.895847pt;}
.y2de{bottom:-246.151907pt;}
.y310{bottom:-244.455447pt;}
.y3a8{bottom:-229.274995pt;}
.y2a5{bottom:-228.827403pt;}
.y26e{bottom:-228.275759pt;}
.y2dd{bottom:-227.531819pt;}
.y315{bottom:-225.860813pt;}
.y393{bottom:-225.769853pt;}
.y3a7{bottom:-212.793853pt;}
.y2a4{bottom:-210.207314pt;}
.y26d{bottom:-209.655670pt;}
.y392{bottom:-209.288711pt;}
.y2dc{bottom:-208.911730pt;}
.y3ef{bottom:-195.656451pt;}
.y2a3{bottom:-191.587225pt;}
.y2ba{bottom:-191.538261pt;}
.y28b{bottom:-191.150127pt;}
.y26c{bottom:-191.035581pt;}
.y2db{bottom:-190.291641pt;}
.y391{bottom:-189.606961pt;}
.y30f{bottom:-188.607909pt;}
.y3bc{bottom:-180.921302pt;}
.y3ee{bottom:-178.837530pt;}
.y3a6{bottom:-176.630961pt;}
.y390{bottom:-173.125819pt;}
.y2a2{bottom:-172.967137pt;}
.y288{bottom:-172.530039pt;}
.y2da{bottom:-171.671553pt;}
.y2e9{bottom:-171.610267pt;}
.y30e{bottom:-169.987820pt;}
.y344{bottom:-167.721981pt;}
.y3f0{bottom:-162.018608pt;}
.y3bb{bottom:-161.239552pt;}
.y3a5{bottom:-160.149819pt;}
.y38f{bottom:-156.644677pt;}
.y2a1{bottom:-154.347048pt;}
.y26b{bottom:-153.808131pt;}
.y2d9{bottom:-153.051464pt;}
.y30d{bottom:-151.367731pt;}
.y343{bottom:-149.101893pt;}
.y3ba{bottom:-144.758410pt;}
.y3a4{bottom:-140.468068pt;}
.y38e{bottom:-140.163535pt;}
.y2a0{bottom:-135.726959pt;}
.y26a{bottom:-135.188043pt;}
.y2d8{bottom:-134.431375pt;}
.y30c{bottom:-132.747643pt;}
.y342{bottom:-130.481804pt;}
.y3ed{bottom:-128.380765pt;}
.y3a3{bottom:-123.986926pt;}
.y29f{bottom:-117.106871pt;}
.y269{bottom:-116.567954pt;}
.y2d7{bottom:-115.811287pt;}
.y30b{bottom:-114.127554pt;}
.y341{bottom:-111.861715pt;}
.y3ec{bottom:-111.561843pt;}
.y3b9{bottom:-108.595518pt;}
.y3a2{bottom:-107.505785pt;}
.y38d{bottom:-107.201251pt;}
.y29e{bottom:-98.486782pt;}
.y268{bottom:-97.947865pt;}
.y2e6{bottom:-97.254835pt;}
.y2d6{bottom:-97.191198pt;}
.y319{bottom:-95.545647pt;}
.y30a{bottom:-95.507465pt;}
.y3eb{bottom:-94.742922pt;}
.y340{bottom:-93.241627pt;}
.y3b8{bottom:-92.114376pt;}
.y3a1{bottom:-91.024643pt;}
.y38c{bottom:-87.519501pt;}
.y29d{bottom:-79.866693pt;}
.y267{bottom:-79.327777pt;}
.y2d5{bottom:-78.571109pt;}
.y3ea{bottom:-77.924000pt;}
.y309{bottom:-76.887377pt;}
.y345{bottom:-74.646993pt;}
.y3b7{bottom:-72.432626pt;}
.y38b{bottom:-71.038359pt;}
.y29c{bottom:-61.246605pt;}
.y2bb{bottom:-61.235822pt;}
.y3f3{bottom:-61.112226pt;}
.y28c{bottom:-60.847689pt;}
.y266{bottom:-60.707688pt;}
.y2d4{bottom:-59.951021pt;}
.y3cf{bottom:-58.550092pt;}
.y308{bottom:-58.267288pt;}
.y3a0{bottom:-58.062359pt;}
.y3ff{bottom:-57.678255pt;}
.y3b6{bottom:-55.951484pt;}
.y2b8{bottom:-42.615733pt;}
.y265{bottom:-42.087599pt;}
.y2d3{bottom:-41.330932pt;}
.y2ea{bottom:-41.307828pt;}
.y3fe{bottom:-40.859333pt;}
.y307{bottom:-39.647199pt;}
.y3b5{bottom:-39.470342pt;}
.y3ce{bottom:-38.868342pt;}
.y39f{bottom:-38.380609pt;}
.y38a{bottom:-38.076075pt;}
.y33f{bottom:-37.394088pt;}
.y400{bottom:-24.040412pt;}
.y29b{bottom:-24.019155pt;}
.y287{bottom:-23.607511pt;}
.y264{bottom:-23.467511pt;}
.y3b4{bottom:-22.989200pt;}
.y2d2{bottom:-22.710843pt;}
.y3cd{bottom:-22.387200pt;}
.y39e{bottom:-21.899467pt;}
.y389{bottom:-21.594933pt;}
.y316{bottom:-21.090747pt;}
.y306{bottom:-21.027111pt;}
.y33e{bottom:-18.773999pt;}
.y29a{bottom:-5.399066pt;}
.y263{bottom:-4.847422pt;}
.y2d1{bottom:-4.090755pt;}
.y305{bottom:-2.407022pt;}
.y33d{bottom:-0.153911pt;}
.y0{bottom:0.000000pt;}
.y374{bottom:1.406940pt;}
.y40f{bottom:6.007333pt;}
.y3e2{bottom:7.000961pt;}
.y299{bottom:13.221023pt;}
.y262{bottom:13.772667pt;}
.y2d0{bottom:14.529334pt;}
.y304{bottom:16.213067pt;}
.y33c{bottom:18.466178pt;}
.y373{bottom:18.577294pt;}
.y3e1{bottom:26.682711pt;}
.y3cb{bottom:30.252800pt;}
.y298{bottom:31.841111pt;}
.y260{bottom:32.388133pt;}
.y2cf{bottom:33.149423pt;}
.y31a{bottom:34.756791pt;}
.y372{bottom:35.747647pt;}
.y33b{bottom:37.086267pt;}
.y3{bottom:37.795333pt;}
.y3e0{bottom:43.163853pt;}
.y297{bottom:50.461200pt;}
.y25e{bottom:51.003467pt;}
.y2ce{bottom:51.769511pt;}
.y371{bottom:52.918000pt;}
.y349{bottom:55.707840pt;}
.y31e{bottom:60.473333pt;}
.y39b{bottom:63.695891pt;}
.y3c9{bottom:66.394246pt;}
.y2bc{bottom:69.066617pt;}
.y28d{bottom:69.454750pt;}
.y2cd{bottom:70.389600pt;}
.y301{bottom:72.014698pt;}
.y40d{bottom:73.274590pt;}
.y4{bottom:75.590533pt;}
.y7d{bottom:75.590667pt;}
.y135{bottom:75.590800pt;}
.yb9{bottom:75.948400pt;}
.y214{bottom:75.962533pt;}
.y23b{bottom:75.962667pt;}
.y44f{bottom:76.198133pt;}
.y3b0{bottom:79.082123pt;}
.y3df{bottom:79.326746pt;}
.y3c8{bottom:82.875388pt;}
.y1e8{bottom:83.130533pt;}
.y39a{bottom:83.377641pt;}
.y1a2{bottom:83.962533pt;}
.y89{bottom:88.390533pt;}
.y7c{bottom:88.390667pt;}
.y134{bottom:88.390800pt;}
.y1db{bottom:88.390933pt;}
.y2eb{bottom:88.994611pt;}
.y442{bottom:88.998133pt;}
.y163{bottom:89.961200pt;}
.y40c{bottom:90.093512pt;}
.y96{bottom:90.257200pt;}
.yb8{bottom:90.615067pt;}
.y300{bottom:90.634787pt;}
.y213{bottom:91.962533pt;}
.y23a{bottom:91.962667pt;}
.y3f2{bottom:92.164667pt;}
.y338{bottom:92.855011pt;}
.y32{bottom:94.257200pt;}
.y3af{bottom:95.563265pt;}
.y3de{bottom:95.807887pt;}
.y3c7{bottom:99.356530pt;}
.y8b{bottom:101.190533pt;}
.y7b{bottom:101.190667pt;}
.ybd{bottom:101.190800pt;}
.y1da{bottom:101.190933pt;}
.y441{bottom:101.798133pt;}
.y1a1{bottom:102.629200pt;}
.y162{bottom:102.761200pt;}
.y399{bottom:103.059391pt;}
.yb7{bottom:103.415067pt;}
.y95{bottom:104.923867pt;}
.y17d{bottom:105.826800pt;}
.y294{bottom:106.316145pt;}
.y40b{bottom:106.912434pt;}
.y212{bottom:107.962533pt;}
.y239{bottom:107.962667pt;}
.y2ff{bottom:109.254875pt;}
.y337{bottom:111.475099pt;}
.y31{bottom:112.923867pt;}
.y93{bottom:113.990533pt;}
.y81{bottom:113.990667pt;}
.y7a{bottom:113.990800pt;}
.y440{bottom:114.598133pt;}
.y3dd{bottom:115.489638pt;}
.y33a{bottom:116.170311pt;}
.y158{bottom:116.215200pt;}
.y94{bottom:117.723867pt;}
.y2{bottom:118.690133pt;}
.y398{bottom:119.540533pt;}
.y16a{bottom:121.295867pt;}
.y40a{bottom:123.731355pt;}
.y211{bottom:123.962533pt;}
.y238{bottom:123.962667pt;}
.y293{bottom:124.936234pt;}
.y2cb{bottom:126.211525pt;}
.y92{bottom:126.790533pt;}
.y80{bottom:126.790667pt;}
.y79{bottom:126.790800pt;}
.yd5{bottom:126.790933pt;}
.yef{bottom:126.866133pt;}
.y44d{bottom:127.398133pt;}
.y2fe{bottom:127.874964pt;}
.y336{bottom:130.095188pt;}
.yb6{bottom:130.358667pt;}
.y98{bottom:130.523867pt;}
.y58{bottom:131.590533pt;}
.y3ae{bottom:131.726157pt;}
.y3dc{bottom:131.970780pt;}
.y157{bottom:132.215200pt;}
.y3c6{bottom:132.318814pt;}
.y339{bottom:134.790400pt;}
.y3f4{bottom:136.062667pt;}
.y36e{bottom:138.695762pt;}
.yf3{bottom:139.590533pt;}
.y78{bottom:139.590800pt;}
.y99{bottom:139.590933pt;}
.yee{bottom:139.666133pt;}
.y1a0{bottom:139.940533pt;}
.yc5{bottom:139.962533pt;}
.y1d9{bottom:139.962667pt;}
.y43f{bottom:140.198133pt;}
.y413{bottom:140.545054pt;}
.y161{bottom:140.567067pt;}
.y97{bottom:143.323867pt;}
.y3f9{bottom:144.130614pt;}
.y2ca{bottom:144.831613pt;}
.y292{bottom:144.879965pt;}
.yb5{bottom:145.025333pt;}
.y3fd{bottom:145.651369pt;}
.y370{bottom:145.673343pt;}
.y2fd{bottom:146.495053pt;}
.y3db{bottom:148.451922pt;}
.y335{bottom:148.715277pt;}
.y30{bottom:149.190533pt;}
.y57{bottom:150.257200pt;}
.y10{bottom:151.181067pt;}
.y3ad{bottom:151.407908pt;}
.y3c5{bottom:152.000564pt;}
.y1{bottom:152.202667pt;}
.y16c{bottom:152.390533pt;}
.y77{bottom:152.390933pt;}
.y43e{bottom:152.998133pt;}
.y1e7{bottom:153.489600pt;}
.y36d{bottom:155.866115pt;}
.y210{bottom:155.962533pt;}
.y237{bottom:155.962667pt;}
.yb4{bottom:157.825333pt;}
.y19f{bottom:158.607200pt;}
.yc4{bottom:158.629200pt;}
.y1d8{bottom:158.629333pt;}
.y3f8{bottom:160.949536pt;}
.y259{bottom:161.295867pt;}
.y3fc{bottom:162.470290pt;}
.y375{bottom:162.840667pt;}
.y2c9{bottom:163.451702pt;}
.y291{bottom:163.487327pt;}
.y3da{bottom:164.933063pt;}
.y31b{bottom:165.059230pt;}
.y2fc{bottom:165.115141pt;}
.y16b{bottom:165.190533pt;}
.y76{bottom:165.190933pt;}
.y43d{bottom:165.798133pt;}
.y334{bottom:167.335365pt;}
.y3c4{bottom:168.481706pt;}
.y56{bottom:168.923867pt;}
.yf{bottom:170.381067pt;}
.y3ac{bottom:171.089658pt;}
.y20f{bottom:171.962533pt;}
.y236{bottom:171.962667pt;}
.y36c{bottom:173.036468pt;}
.y147{bottom:173.916667pt;}
.yce{bottom:174.629200pt;}
.y404{bottom:175.246667pt;}
.y19e{bottom:177.273867pt;}
.yea{bottom:177.295867pt;}
.y7f{bottom:177.296000pt;}
.y3f7{bottom:177.768458pt;}
.y1d3{bottom:177.990533pt;}
.y75{bottom:177.990933pt;}
.y450{bottom:178.598133pt;}
.y3fb{bottom:179.289212pt;}
.y11b{bottom:181.747733pt;}
.y2c8{bottom:182.071791pt;}
.y290{bottom:182.094688pt;}
.y318{bottom:183.679319pt;}
.yb3{bottom:184.768933pt;}
.y333{bottom:185.955454pt;}
.y34a{bottom:186.010279pt;}
.y3ab{bottom:187.570800pt;}
.y20e{bottom:187.962533pt;}
.y235{bottom:187.962667pt;}
.ye{bottom:189.581067pt;}
.y36b{bottom:190.206821pt;}
.y346{bottom:190.636533pt;}
.y1d2{bottom:190.790533pt;}
.y74{bottom:190.790933pt;}
.y43c{bottom:191.398133pt;}
.y258{bottom:193.295867pt;}
.y11a{bottom:194.547733pt;}
.y3f6{bottom:194.587379pt;}
.y19d{bottom:195.940533pt;}
.yc3{bottom:195.962533pt;}
.y7e{bottom:195.962667pt;}
.y3fa{bottom:196.108133pt;}
.y15d{bottom:196.850800pt;}
.y36f{bottom:197.172667pt;}
.yb2{bottom:197.568933pt;}
.yd4{bottom:197.770933pt;}
.y3d9{bottom:197.895347pt;}
.y40e{bottom:198.071333pt;}
.y2bd{bottom:199.369055pt;}
.y28f{bottom:200.523867pt;}
.y2c7{bottom:200.691879pt;}
.y3c3{bottom:201.443990pt;}
.y2fb{bottom:202.342591pt;}
.y1d1{bottom:203.590533pt;}
.y73{bottom:203.590933pt;}
.y20d{bottom:203.962533pt;}
.y234{bottom:203.962667pt;}
.y43b{bottom:204.198133pt;}
.y332{bottom:204.575543pt;}
.y119{bottom:207.347733pt;}
.y36a{bottom:207.377174pt;}
.y409{bottom:207.814614pt;}
.y146{bottom:207.818400pt;}
.yd{bottom:208.781067pt;}
.y257{bottom:209.295867pt;}
.yb1{bottom:210.368933pt;}
.yd3{bottom:210.570933pt;}
.y3f5{bottom:212.359600pt;}
.y403{bottom:212.925600pt;}
.y19c{bottom:214.607200pt;}
.ycd{bottom:214.629200pt;}
.y54{bottom:214.629333pt;}
.y410{bottom:214.888800pt;}
.y1d0{bottom:216.390533pt;}
.y72{bottom:216.391067pt;}
.y43a{bottom:216.998133pt;}
.y1e1{bottom:217.427200pt;}
.y3d8{bottom:217.577098pt;}
.y3c2{bottom:217.925132pt;}
.y2ec{bottom:219.297049pt;}
.y2c6{bottom:219.311968pt;}
.y20c{bottom:219.962533pt;}
.y233{bottom:219.962667pt;}
.y381{bottom:220.697467pt;}
.y2fa{bottom:220.962680pt;}
.y331{bottom:223.195631pt;}
.yd2{bottom:223.370933pt;}
.y369{bottom:224.547528pt;}
.y408{bottom:224.633536pt;}
.y256{bottom:225.295867pt;}
.y401{bottom:228.220715pt;}
.y1cf{bottom:229.190533pt;}
.y71{bottom:229.191200pt;}
.y16f{bottom:229.549733pt;}
.y44c{bottom:229.798133pt;}
.y160{bottom:229.881600pt;}
.y402{bottom:230.138662pt;}
.y1e0{bottom:230.227200pt;}
.y19b{bottom:233.273867pt;}
.yc2{bottom:233.295867pt;}
.y53{bottom:233.296000pt;}
.y3d7{bottom:234.058239pt;}
.y20b{bottom:235.962533pt;}
.y232{bottom:235.962667pt;}
.yd1{bottom:236.170933pt;}
.y2c5{bottom:237.932057pt;}
.y380{bottom:239.364133pt;}
.y2f9{bottom:239.582769pt;}
.y1d7{bottom:240.887600pt;}
.y255{bottom:241.295867pt;}
.y407{bottom:241.452458pt;}
.y368{bottom:241.717881pt;}
.y145{bottom:241.720000pt;}
.y330{bottom:241.815720pt;}
.y1ce{bottom:241.990533pt;}
.y70{bottom:241.991200pt;}
.y16e{bottom:242.349733pt;}
.y439{bottom:242.598133pt;}
.yc{bottom:247.181067pt;}
.yd0{bottom:248.970800pt;}
.y19a{bottom:251.940533pt;}
.y8c{bottom:251.962533pt;}
.y52{bottom:251.962667pt;}
.y3c1{bottom:254.088024pt;}
.y1cd{bottom:254.790533pt;}
.y6f{bottom:254.791200pt;}
.y384{bottom:254.882267pt;}
.y16d{bottom:255.149733pt;}
.y438{bottom:255.398133pt;}
.y2e7{bottom:256.437759pt;}
.y2c4{bottom:256.552145pt;}
.y254{bottom:257.295867pt;}
.y2f8{bottom:258.202857pt;}
.y406{bottom:258.271379pt;}
.y367{bottom:258.888234pt;}
.y32f{bottom:260.435809pt;}
.ycf{bottom:261.770933pt;}
.ye9{bottom:262.629200pt;}
.y1a6{bottom:263.510400pt;}
.y17b{bottom:263.564800pt;}
.y1dd{bottom:263.622133pt;}
.y17c{bottom:263.793867pt;}
.y3d6{bottom:267.020523pt;}
.y1cc{bottom:267.590533pt;}
.y20a{bottom:267.962533pt;}
.y231{bottom:267.962667pt;}
.y44b{bottom:268.198133pt;}
.y199{bottom:270.607200pt;}
.y2f{bottom:270.629200pt;}
.y51{bottom:270.629333pt;}
.y2ee{bottom:270.709333pt;}
.y253{bottom:273.295867pt;}
.y3c0{bottom:273.769774pt;}
.y2c3{bottom:275.172234pt;}
.y144{bottom:275.621733pt;}
.y1ed{bottom:275.905600pt;}
.y405{bottom:276.043600pt;}
.y366{bottom:276.058587pt;}
.y376{bottom:276.076000pt;}
.y1dc{bottom:276.422133pt;}
.y2f7{bottom:276.822946pt;}
.y32e{bottom:279.055897pt;}
.yb0{bottom:280.155467pt;}
.y1cb{bottom:280.390533pt;}
.y437{bottom:280.998133pt;}
.ye8{bottom:281.295867pt;}
.y379{bottom:283.002667pt;}
.y3d5{bottom:283.501665pt;}
.y209{bottom:283.962533pt;}
.y230{bottom:283.962667pt;}
.yb{bottom:285.581067pt;}
.y15c{bottom:286.187600pt;}
.y167{bottom:286.997867pt;}
.ycb{bottom:288.267600pt;}
.y1ec{bottom:288.705600pt;}
.y198{bottom:289.273867pt;}
.y2e{bottom:289.295867pt;}
.y50{bottom:289.296000pt;}
.y6e{bottom:291.519333pt;}
.y411{bottom:291.904000pt;}
.y1ca{bottom:293.190533pt;}
.y365{bottom:293.228940pt;}
.y3bf{bottom:293.451525pt;}
.y436{bottom:293.798133pt;}
.y412{bottom:293.821947pt;}
.y2c2{bottom:295.115965pt;}
.y31c{bottom:295.361669pt;}
.y2f6{bottom:295.443035pt;}
.y1df{bottom:295.986667pt;}
.y32d{bottom:297.675986pt;}
.yaf{bottom:298.822133pt;}
.y166{bottom:299.797867pt;}
.ye7{bottom:299.962533pt;}
.y22f{bottom:299.962667pt;}
.y171{bottom:301.096667pt;}
.ya{bottom:304.781067pt;}
.y252{bottom:305.295867pt;}
.y303{bottom:305.532978pt;}
.y1c9{bottom:305.990533pt;}
.y435{bottom:306.598133pt;}
.y197{bottom:307.940533pt;}
.y2d{bottom:307.962533pt;}
.y4f{bottom:307.962667pt;}
.y3be{bottom:309.932667pt;}
.y364{bottom:310.399294pt;}
.y2c1{bottom:313.723327pt;}
.y170{bottom:313.896667pt;}
.y2f5{bottom:314.063123pt;}
.y208{bottom:315.962533pt;}
.y22e{bottom:315.962667pt;}
.y142{bottom:315.987733pt;}
.y32c{bottom:316.296075pt;}
.y34b{bottom:316.312717pt;}
.y15f{bottom:317.003467pt;}
.yae{bottom:317.488800pt;}
.ye6{bottom:318.629200pt;}
.y1c8{bottom:318.790533pt;}
.y44a{bottom:319.398133pt;}
.y3d4{bottom:319.664557pt;}
.y251{bottom:321.295867pt;}
.yf8{bottom:323.079867pt;}
.y9{bottom:323.981067pt;}
.y302{bottom:324.153067pt;}
.y196{bottom:326.607200pt;}
.y2c{bottom:326.629200pt;}
.y4e{bottom:326.629333pt;}
.y363{bottom:327.569647pt;}
.y6d{bottom:329.919333pt;}
.y3e9{bottom:330.828000pt;}
.y1c7{bottom:331.590533pt;}
.y207{bottom:331.962533pt;}
.y22d{bottom:331.962667pt;}
.y434{bottom:332.198133pt;}
.y2c0{bottom:332.330688pt;}
.y317{bottom:332.601846pt;}
.y2f4{bottom:332.683212pt;}
.y348{bottom:334.932806pt;}
.y15e{bottom:335.901067pt;}
.yad{bottom:336.155467pt;}
.y3e8{bottom:336.989148pt;}
.ye5{bottom:337.295867pt;}
.y3d3{bottom:339.346308pt;}
.y362{bottom:344.740000pt;}
.y433{bottom:344.998133pt;}
.y138{bottom:345.130667pt;}
.y195{bottom:345.273867pt;}
.y2b{bottom:345.295867pt;}
.y4d{bottom:345.296000pt;}
.y143{bottom:345.623467pt;}
.y206{bottom:347.962533pt;}
.y22c{bottom:347.962667pt;}
.y2ed{bottom:349.599488pt;}
.y2bf{bottom:350.759867pt;}
.y2f3{bottom:351.303301pt;}
.y250{bottom:353.295867pt;}
.y32b{bottom:353.523525pt;}
.y3e7{bottom:353.808069pt;}
.y159{bottom:354.798667pt;}
.yac{bottom:354.822133pt;}
.ye4{bottom:355.962533pt;}
.y432{bottom:357.798133pt;}
.y137{bottom:357.930667pt;}
.y1ac{bottom:358.766400pt;}
.y3d2{bottom:359.028058pt;}
.y8{bottom:362.381067pt;}
.y194{bottom:363.940533pt;}
.y2a{bottom:363.962533pt;}
.y4c{bottom:363.962667pt;}
.y37f{bottom:365.505867pt;}
.y6c{bottom:368.319200pt;}
.y24f{bottom:369.295867pt;}
.y449{bottom:370.598133pt;}
.y3e6{bottom:370.626991pt;}
.y136{bottom:370.730667pt;}
.y2f2{bottom:371.247032pt;}
.y1ab{bottom:371.566400pt;}
.y32a{bottom:372.143613pt;}
.ye3{bottom:374.629200pt;}
.y3d1{bottom:375.509200pt;}
.y360{bottom:379.054587pt;}
.y205{bottom:379.962533pt;}
.y22b{bottom:379.962667pt;}
.y15b{bottom:379.981333pt;}
.y193{bottom:382.607200pt;}
.y29{bottom:382.629200pt;}
.y4b{bottom:382.629333pt;}
.y431{bottom:383.398133pt;}
.y107{bottom:383.699733pt;}
.y106{bottom:383.699867pt;}
.y1aa{bottom:384.366400pt;}
.y24e{bottom:385.295867pt;}
.y3e5{bottom:387.445913pt;}
.y15a{bottom:389.314667pt;}
.y2f1{bottom:389.854393pt;}
.y329{bottom:390.763702pt;}
.yab{bottom:392.155467pt;}
.ye2{bottom:393.295867pt;}
.y2be{bottom:393.464000pt;}
.y204{bottom:395.962533pt;}
.y22a{bottom:395.962667pt;}
.y430{bottom:396.198133pt;}
.y35f{bottom:396.224940pt;}
.y1a9{bottom:397.166400pt;}
.y11e{bottom:398.110400pt;}
.y7{bottom:400.781067pt;}
.y192{bottom:401.273867pt;}
.y28{bottom:401.295867pt;}
.y4a{bottom:401.296000pt;}
.y133{bottom:402.362667pt;}
.y37a{bottom:403.159930pt;}
.yc8{bottom:404.409600pt;}
.y3e4{bottom:405.218133pt;}
.y1d6{bottom:406.184667pt;}
.y6b{bottom:406.719333pt;}
.y2f0{bottom:408.461755pt;}
.y42f{bottom:408.998133pt;}
.y328{bottom:409.383791pt;}
.y1a8{bottom:409.966400pt;}
.y1e6{bottom:410.497333pt;}
.yaa{bottom:411.355467pt;}
.ye1{bottom:411.962533pt;}
.y229{bottom:411.962667pt;}
.y35e{bottom:413.395294pt;}
.y173{bottom:416.529867pt;}
.yc7{bottom:417.209600pt;}
.y24d{bottom:417.295867pt;}
.y191{bottom:419.940533pt;}
.y27{bottom:419.962533pt;}
.y49{bottom:419.962667pt;}
.y132{bottom:421.029333pt;}
.y3f1{bottom:421.078533pt;}
.y1a5{bottom:421.248400pt;}
.y17a{bottom:421.531867pt;}
.y448{bottom:421.798133pt;}
.y1a7{bottom:422.766400pt;}
.y31d{bottom:425.664107pt;}
.y2ef{bottom:426.890933pt;}
.y203{bottom:427.962533pt;}
.y228{bottom:427.962667pt;}
.y327{bottom:428.003879pt;}
.y172{bottom:429.329867pt;}
.y111{bottom:430.236400pt;}
.y35d{bottom:430.565647pt;}
.ye0{bottom:430.629200pt;}
.y177{bottom:432.027200pt;}
.y24c{bottom:433.295867pt;}
.y42e{bottom:434.598133pt;}
.y11d{bottom:434.645733pt;}
.y10d{bottom:434.645867pt;}
.y114{bottom:435.112400pt;}
.y1b8{bottom:435.566400pt;}
.y361{bottom:437.496667pt;}
.y190{bottom:438.607200pt;}
.y26{bottom:438.629200pt;}
.y48{bottom:438.629333pt;}
.y6{bottom:439.181067pt;}
.y131{bottom:439.696000pt;}
.y110{bottom:443.036400pt;}
.y202{bottom:443.962533pt;}
.y227{bottom:443.962667pt;}
.y176{bottom:444.827333pt;}
.y6a{bottom:445.119200pt;}
.y34c{bottom:446.615156pt;}
.y326{bottom:446.623968pt;}
.y42d{bottom:447.398133pt;}
.y11c{bottom:447.445733pt;}
.y10c{bottom:447.445867pt;}
.ya9{bottom:447.622133pt;}
.y35c{bottom:447.736000pt;}
.y113{bottom:447.912400pt;}
.ydf{bottom:449.295867pt;}
.y383{bottom:454.332800pt;}
.ybe{bottom:454.629200pt;}
.y18f{bottom:457.273867pt;}
.y25{bottom:457.295867pt;}
.y47{bottom:457.296000pt;}
.yc1{bottom:457.322933pt;}
.yc6{bottom:458.267867pt;}
.y130{bottom:458.362667pt;}
.y153{bottom:459.427067pt;}
.y201{bottom:459.962533pt;}
.y226{bottom:459.962667pt;}
.y42c{bottom:460.198133pt;}
.y10b{bottom:460.245867pt;}
.y10f{bottom:460.246000pt;}
.y112{bottom:460.712400pt;}
.yf0{bottom:461.102400pt;}
.yf7{bottom:461.102533pt;}
.y91{bottom:462.047333pt;}
.y69{bottom:464.319200pt;}
.y378{bottom:464.902940pt;}
.y325{bottom:465.244057pt;}
.ya8{bottom:466.288800pt;}
.yde{bottom:467.962533pt;}
.yc0{bottom:470.122933pt;}
.y152{bottom:472.227067pt;}
.y42b{bottom:472.998133pt;}
.y10a{bottom:473.045867pt;}
.y10e{bottom:473.046000pt;}
.yf2{bottom:473.902400pt;}
.yf6{bottom:473.902533pt;}
.y90{bottom:474.847333pt;}
.y18e{bottom:475.940533pt;}
.y24{bottom:475.962533pt;}
.y46{bottom:475.962667pt;}
.y12f{bottom:477.029333pt;}
.y5{bottom:477.581067pt;}
.y141{bottom:478.110267pt;}
.y13d{bottom:478.110400pt;}
.y175{bottom:481.349067pt;}
.y2cc{bottom:482.468933pt;}
.y3e3{bottom:482.525733pt;}
.ybf{bottom:482.922933pt;}
.yfa{bottom:483.239867pt;}
.y165{bottom:483.483333pt;}
.y68{bottom:483.519333pt;}
.y347{bottom:483.855333pt;}
.y324{bottom:483.864145pt;}
.y105{bottom:483.962533pt;}
.ya7{bottom:484.955467pt;}
.y151{bottom:485.027067pt;}
.yf9{bottom:485.479867pt;}
.y42a{bottom:485.798133pt;}
.y24b{bottom:486.629200pt;}
.yf1{bottom:486.702400pt;}
.yf5{bottom:486.702533pt;}
.y8f{bottom:487.647333pt;}
.y140{bottom:490.910267pt;}
.y13c{bottom:490.910400pt;}
.yca{bottom:491.181467pt;}
.y200{bottom:491.962533pt;}
.y225{bottom:491.962667pt;}
.y174{bottom:494.149067pt;}
.y18d{bottom:494.607200pt;}
.y23{bottom:494.629200pt;}
.y45{bottom:494.629333pt;}
.y12e{bottom:495.696000pt;}
.y164{bottom:496.283200pt;}
.y44e{bottom:498.598133pt;}
.y1eb{bottom:499.113200pt;}
.y35a{bottom:499.212234pt;}
.yf4{bottom:499.502533pt;}
.y104{bottom:499.962533pt;}
.y1e5{bottom:500.418667pt;}
.y2e8{bottom:501.084267pt;}
.y323{bottom:502.484234pt;}
.y67{bottom:502.719333pt;}
.ya6{bottom:503.622133pt;}
.y83{bottom:503.622267pt;}
.y13f{bottom:503.710267pt;}
.y14e{bottom:503.919200pt;}
.yc9{bottom:503.981467pt;}
.y14c{bottom:506.391333pt;}
.ydd{bottom:507.962533pt;}
.y224{bottom:507.962667pt;}
.y429{bottom:511.398133pt;}
.y1ea{bottom:511.913200pt;}
.y121{bottom:512.714933pt;}
.y18c{bottom:513.273867pt;}
.y22{bottom:513.295867pt;}
.y44{bottom:513.296000pt;}
.y103{bottom:515.962533pt;}
.y1f0{bottom:516.285867pt;}
.y359{bottom:516.382587pt;}
.y1de{bottom:516.382667pt;}
.y82{bottom:516.422267pt;}
.y13e{bottom:516.510267pt;}
.y24a{bottom:521.295867pt;}
.y66{bottom:521.919333pt;}
.y322{bottom:522.427965pt;}
.y37b{bottom:523.317193pt;}
.y1ff{bottom:523.962533pt;}
.y223{bottom:523.962667pt;}
.y428{bottom:524.198133pt;}
.y1e9{bottom:524.713200pt;}
.y28e{bottom:525.117333pt;}
.y120{bottom:525.514933pt;}
.y1bc{bottom:525.576933pt;}
.y1ef{bottom:529.085867pt;}
.ydc{bottom:529.295867pt;}
.y88{bottom:529.296000pt;}
.y14b{bottom:530.264800pt;}
.y18b{bottom:531.940533pt;}
.y21{bottom:531.962533pt;}
.y43{bottom:531.962667pt;}
.y12d{bottom:533.029333pt;}
.y358{bottom:533.552940pt;}
.y3aa{bottom:536.245333pt;}
.y427{bottom:536.998133pt;}
.y249{bottom:537.295867pt;}
.y11f{bottom:538.314933pt;}
.y1bb{bottom:538.376933pt;}
.y1fe{bottom:539.962533pt;}
.y222{bottom:539.962667pt;}
.y3d0{bottom:540.025333pt;}
.ya5{bottom:540.955467pt;}
.y321{bottom:541.035327pt;}
.y65{bottom:541.119200pt;}
.y1ee{bottom:541.885867pt;}
.ybc{bottom:542.992267pt;}
.y14a{bottom:543.064800pt;}
.y3b3{bottom:546.213374pt;}
.ydb{bottom:547.962533pt;}
.y87{bottom:547.962667pt;}
.y426{bottom:549.798133pt;}
.y18a{bottom:550.607200pt;}
.y20{bottom:550.629200pt;}
.y42{bottom:550.629333pt;}
.y357{bottom:550.723294pt;}
.y1ba{bottom:551.176933pt;}
.y12c{bottom:551.696000pt;}
.ycc{bottom:552.740400pt;}
.y248{bottom:553.295867pt;}
.y1c6{bottom:555.013067pt;}
.ybb{bottom:555.792267pt;}
.y149{bottom:555.864800pt;}
.y1fd{bottom:555.962533pt;}
.y221{bottom:555.962667pt;}
.y109{bottom:557.480267pt;}
.y35b{bottom:557.658667pt;}
.y320{bottom:559.642688pt;}
.y64{bottom:560.319200pt;}
.y425{bottom:562.598133pt;}
.y1b9{bottom:563.976933pt;}
.y3b2{bottom:565.895125pt;}
.yda{bottom:566.629200pt;}
.y86{bottom:566.629333pt;}
.y1e4{bottom:566.910133pt;}
.y1c5{bottom:567.813067pt;}
.y356{bottom:567.893647pt;}
.y189{bottom:569.273867pt;}
.y1f{bottom:569.295867pt;}
.y41{bottom:569.296000pt;}
.y108{bottom:570.280267pt;}
.y12b{bottom:570.362667pt;}
.y1d5{bottom:571.481733pt;}
.y1fc{bottom:571.962533pt;}
.y220{bottom:571.962667pt;}
.y447{bottom:575.398133pt;}
.y34d{bottom:576.917595pt;}
.y31f{bottom:578.071867pt;}
.ya4{bottom:578.822133pt;}
.y1a4{bottom:578.986400pt;}
.y179{bottom:579.269867pt;}
.y1c4{bottom:580.613067pt;}
.y150{bottom:582.080800pt;}
.y3b1{bottom:582.376267pt;}
.y117{bottom:582.663600pt;}
.y355{bottom:585.064000pt;}
.y247{bottom:585.295867pt;}
.y85{bottom:585.296000pt;}
.y188{bottom:587.940533pt;}
.y1e{bottom:587.962533pt;}
.y40{bottom:587.962667pt;}
.y424{bottom:588.198133pt;}
.y12a{bottom:589.029333pt;}
.y8e{bottom:591.133867pt;}
.y1c3{bottom:593.413067pt;}
.y296{bottom:594.189111pt;}
.y116{bottom:595.463600pt;}
.ya3{bottom:597.488800pt;}
.y63{bottom:598.719333pt;}
.y14f{bottom:599.283333pt;}
.y423{bottom:600.998133pt;}
.y246{bottom:601.295867pt;}
.y377{bottom:602.230556pt;}
.y8d{bottom:603.933733pt;}
.yd9{bottom:603.962533pt;}
.y84{bottom:603.962667pt;}
.y1c2{bottom:606.213067pt;}
.y187{bottom:606.607200pt;}
.y1d{bottom:606.629200pt;}
.y3f{bottom:606.629333pt;}
.y129{bottom:607.696000pt;}
.y115{bottom:608.263733pt;}
.y295{bottom:612.809200pt;}
.y422{bottom:613.798133pt;}
.ya2{bottom:616.155467pt;}
.y14d{bottom:616.485733pt;}
.y245{bottom:617.295867pt;}
.y62{bottom:617.919333pt;}
.y1c1{bottom:619.013067pt;}
.y353{bottom:619.404711pt;}
.y1be{bottom:619.842533pt;}
.y1c0{bottom:619.842667pt;}
.y1fb{bottom:619.962533pt;}
.y21f{bottom:619.962667pt;}
.yd8{bottom:622.629200pt;}
.y382{bottom:624.428133pt;}
.yba{bottom:624.762667pt;}
.y186{bottom:625.273867pt;}
.y1c{bottom:625.295867pt;}
.y3e{bottom:625.296000pt;}
.y128{bottom:626.362667pt;}
.y421{bottom:626.598133pt;}
.y13b{bottom:628.306400pt;}
.y2b7{bottom:631.424667pt;}
.y1bd{bottom:632.642533pt;}
.y1bf{bottom:632.642667pt;}
.y244{bottom:633.295867pt;}
.y125{bottom:633.892000pt;}
.ya1{bottom:634.822133pt;}
.y1fa{bottom:635.962533pt;}
.y21e{bottom:635.962667pt;}
.y61{bottom:637.119200pt;}
.y352{bottom:637.795650pt;}
.y420{bottom:639.398133pt;}
.y13a{bottom:641.106400pt;}
.y1b4{bottom:641.942267pt;}
.y37c{bottom:643.474456pt;}
.y185{bottom:643.940533pt;}
.y1b{bottom:643.962533pt;}
.y3d{bottom:643.962667pt;}
.y148{bottom:644.214800pt;}
.y127{bottom:645.029333pt;}
.y124{bottom:646.692000pt;}
.y243{bottom:649.295867pt;}
.yed{bottom:650.078800pt;}
.y1f9{bottom:651.962533pt;}
.y21d{bottom:651.962667pt;}
.y446{bottom:652.198133pt;}
.y139{bottom:653.906400pt;}
.y1b3{bottom:654.742133pt;}
.y1b7{bottom:654.742267pt;}
.y351{bottom:654.954267pt;}
.y60{bottom:656.319200pt;}
.y123{bottom:659.492000pt;}
.y397{bottom:659.526667pt;}
.yd7{bottom:659.962533pt;}
.y184{bottom:662.607200pt;}
.y1a{bottom:662.629200pt;}
.y3c{bottom:662.629333pt;}
.yec{bottom:662.878800pt;}
.y126{bottom:663.696000pt;}
.y41f{bottom:664.998133pt;}
.y242{bottom:665.295867pt;}
.y1b2{bottom:667.542133pt;}
.y1b6{bottom:667.542267pt;}
.y1f8{bottom:667.962533pt;}
.y21c{bottom:667.962667pt;}
.y39d{bottom:670.586058pt;}
.y3bd{bottom:670.866667pt;}
.y34f{bottom:672.116759pt;}
.ya0{bottom:672.155467pt;}
.y122{bottom:672.292000pt;}
.y156{bottom:675.493467pt;}
.y5f{bottom:675.519333pt;}
.yeb{bottom:675.678800pt;}
.y169{bottom:675.846800pt;}
.y37e{bottom:676.923200pt;}
.y41e{bottom:677.798133pt;}
.y354{bottom:677.820667pt;}
.yd6{bottom:678.629200pt;}
.y1b1{bottom:680.342267pt;}
.y183{bottom:681.273867pt;}
.y19{bottom:681.295867pt;}
.y3b{bottom:681.296000pt;}
.y1f7{bottom:683.962533pt;}
.y21b{bottom:683.962667pt;}
.y3cc{bottom:684.639467pt;}
.y39c{bottom:687.067200pt;}
.y155{bottom:688.293333pt;}
.y168{bottom:688.646800pt;}
.y34e{bottom:689.111067pt;}
.y41d{bottom:690.598133pt;}
.y9f{bottom:691.355600pt;}
.y1b0{bottom:693.142133pt;}
.y1b5{bottom:693.142267pt;}
.y241{bottom:697.295867pt;}
.y18{bottom:699.962533pt;}
.y3a{bottom:699.962667pt;}
.y154{bottom:701.093467pt;}
.y41c{bottom:703.398133pt;}
.y25d{bottom:704.882667pt;}
.y1af{bottom:705.942267pt;}
.y240{bottom:713.295867pt;}
.y5e{bottom:713.919333pt;}
.y1f6{bottom:715.962533pt;}
.y21a{bottom:715.962667pt;}
.y445{bottom:716.198133pt;}
.y182{bottom:718.607200pt;}
.y17{bottom:718.629200pt;}
.y39{bottom:718.629333pt;}
.y1ae{bottom:718.742133pt;}
.y388{bottom:719.443091pt;}
.y261{bottom:719.985067pt;}
.y3ca{bottom:720.799467pt;}
.y9e{bottom:727.622133pt;}
.y41b{bottom:728.998133pt;}
.y23f{bottom:729.295867pt;}
.y1ad{bottom:731.542267pt;}
.y1f5{bottom:731.962533pt;}
.y219{bottom:731.962667pt;}
.y1a3{bottom:736.724400pt;}
.y1d4{bottom:736.778800pt;}
.y178{bottom:737.007867pt;}
.y181{bottom:737.273867pt;}
.y16{bottom:737.295867pt;}
.y38{bottom:737.296000pt;}
.y25f{bottom:738.600400pt;}
.y387{bottom:739.124841pt;}
.y444{bottom:741.798133pt;}
.y23e{bottom:745.295867pt;}
.y9d{bottom:746.288800pt;}
.y350{bottom:746.484667pt;}
.y1f4{bottom:747.962533pt;}
.y218{bottom:747.962667pt;}
.y5d{bottom:752.319200pt;}
.y41a{bottom:754.598133pt;}
.y102{bottom:754.598267pt;}
.y180{bottom:755.940533pt;}
.y15{bottom:755.962533pt;}
.y37{bottom:755.962667pt;}
.y25c{bottom:757.212021pt;}
.y386{bottom:758.806591pt;}
.y23d{bottom:761.295867pt;}
.y37d{bottom:763.631719pt;}
.y1f3{bottom:763.962533pt;}
.y217{bottom:763.962667pt;}
.y9c{bottom:764.955467pt;}
.y419{bottom:767.398133pt;}
.y101{bottom:767.398267pt;}
.y5c{bottom:771.519333pt;}
.y17f{bottom:774.607200pt;}
.y14{bottom:774.629200pt;}
.y36{bottom:774.629333pt;}
.y385{bottom:775.287733pt;}
.y25b{bottom:775.641200pt;}
.y23c{bottom:777.295867pt;}
.y1f2{bottom:779.962533pt;}
.y216{bottom:779.962667pt;}
.y418{bottom:780.198133pt;}
.y100{bottom:780.198267pt;}
.y9b{bottom:783.622133pt;}
.y5b{bottom:790.719200pt;}
.y417{bottom:792.998133pt;}
.yff{bottom:792.998267pt;}
.y17e{bottom:793.273867pt;}
.y13{bottom:793.295867pt;}
.y35{bottom:793.296000pt;}
.y1f1{bottom:795.962533pt;}
.y215{bottom:795.962667pt;}
.y9a{bottom:802.288800pt;}
.y443{bottom:805.798133pt;}
.yfe{bottom:805.798267pt;}
.y5a{bottom:809.919333pt;}
.y118{bottom:811.940533pt;}
.y12{bottom:811.962533pt;}
.y34{bottom:811.962667pt;}
.y416{bottom:818.598133pt;}
.yfd{bottom:818.598267pt;}
.y1e3{bottom:821.774533pt;}
.y415{bottom:831.398133pt;}
.yfc{bottom:831.398267pt;}
.y25a{bottom:838.908267pt;}
.y55{bottom:840.155467pt;}
.y11{bottom:840.155600pt;}
.y414{bottom:844.198133pt;}
.yfb{bottom:844.198267pt;}
.y1e2{bottom:852.010800pt;}
.y33{bottom:873.029067pt;}
.y59{bottom:876.061067pt;}
.y8a{bottom:912.492800pt;}
.hf{height:1.510519pt;}
.h10{height:1.513400pt;}
.h11{height:1.531800pt;}
.h24{height:33.048947pt;}
.h22{height:33.071112pt;}
.h4{height:36.906667pt;}
.hb{height:40.338542pt;}
.he{height:41.520000pt;}
.h1c{height:42.085997pt;}
.h1b{height:42.383991pt;}
.h1e{height:45.354667pt;}
.h14{height:45.639422pt;}
.h13{height:45.962577pt;}
.h5{height:46.133333pt;}
.h7{height:47.232000pt;}
.h1d{height:47.623163pt;}
.h12{height:47.744000pt;}
.h8{height:48.645833pt;}
.hc{height:48.848256pt;}
.hd{height:50.746667pt;}
.h6{height:55.360000pt;}
.ha{height:56.080000pt;}
.h26{height:59.484000pt;}
.h3{height:59.973333pt;}
.h21{height:64.252000pt;}
.h1f{height:68.032000pt;}
.h9{height:71.600000pt;}
.h18{height:74.645333pt;}
.h15{height:86.929333pt;}
.h2{height:87.653333pt;}
.h25{height:99.316000pt;}
.h23{height:103.353333pt;}
.h20{height:120.945333pt;}
.h17{height:131.653333pt;}
.h16{height:131.654667pt;}
.h19{height:158.740000pt;}
.h1a{height:704.021333pt;}
.h0{height:963.780000pt;}
.h1{height:964.000000pt;}
.w3{width:194.645333pt;}
.w6{width:236.997333pt;}
.w4{width:245.442667pt;}
.wb{width:260.788000pt;}
.w5{width:291.024000pt;}
.w8{width:292.913333pt;}
.w7{width:292.914667pt;}
.wa{width:331.052000pt;}
.w9{width:532.913333pt;}
.w2{width:730.582667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xa8{left:-419.680533pt;}
.xa3{left:-297.244733pt;}
.xa7{left:-292.336800pt;}
.xa9{left:-281.989089pt;}
.xa2{left:-270.966933pt;}
.xab{left:-243.292303pt;}
.xac{left:-238.738579pt;}
.xaa{left:-215.089733pt;}
.xbc{left:-172.830326pt;}
.x13{left:-168.566400pt;}
.x14{left:-157.806400pt;}
.x7c{left:-122.515955pt;}
.x98{left:-118.510441pt;}
.xc0{left:-6.708515pt;}
.xc5{left:-3.211706pt;}
.x0{left:0.000000pt;}
.x7b{left:10.255587pt;}
.x8c{left:13.544267pt;}
.x7a{left:15.575612pt;}
.xc2{left:17.968951pt;}
.x97{left:19.581126pt;}
.x7d{left:26.801120pt;}
.xa5{left:29.265315pt;}
.x99{left:30.806634pt;}
.xbf{left:36.223995pt;}
.x2{left:37.795200pt;}
.x86{left:38.750933pt;}
.xb1{left:40.535700pt;}
.x95{left:42.757600pt;}
.x6{left:56.692933pt;}
.x2a{left:65.480267pt;}
.x80{left:68.788593pt;}
.x9a{left:70.958000pt;}
.x9d{left:72.770133pt;}
.x81{left:73.726798pt;}
.x9e{left:77.708339pt;}
.x88{left:79.597333pt;}
.xe{left:80.787333pt;}
.xb2{left:85.334000pt;}
.x8b{left:93.141600pt;}
.x68{left:95.051467pt;}
.x7f{left:99.372375pt;}
.x78{left:104.882667pt;}
.x5{left:113.385867pt;}
.x69{left:115.019733pt;}
.x23{left:116.726533pt;}
.x5e{left:117.749733pt;}
.x60{left:119.830133pt;}
.x50{left:121.181067pt;}
.x22{left:122.123333pt;}
.x5f{left:124.118133pt;}
.xbd{left:125.140139pt;}
.x62{left:126.219333pt;}
.x57{left:127.403067pt;}
.x8{left:128.503867pt;}
.x24{left:131.722800pt;}
.x58{left:133.344267pt;}
.xd{left:137.385867pt;}
.x1f{left:139.240533pt;}
.x5c{left:141.994400pt;}
.x77{left:143.633600pt;}
.x5a{left:144.788933pt;}
.x89{left:146.317767pt;}
.xc6{left:148.011054pt;}
.xbe{left:149.619501pt;}
.x61{left:150.869067pt;}
.x5b{left:153.088000pt;}
.x5d{left:154.261333pt;}
.x44{left:158.346400pt;}
.x9c{left:160.045867pt;}
.x8d{left:162.861341pt;}
.x2f{left:168.287733pt;}
.xb3{left:169.759333pt;}
.x2d{left:170.986133pt;}
.xc4{left:172.479067pt;}
.x2e{left:174.170133pt;}
.x2c{left:176.171467pt;}
.xba{left:177.655333pt;}
.x87{left:178.584933pt;}
.x30{left:182.639333pt;}
.x63{left:188.959733pt;}
.x6f{left:190.866133pt;}
.xb7{left:196.113073pt;}
.xb0{left:198.719333pt;}
.x56{left:202.260533pt;}
.x8f{left:204.848814pt;}
.x59{left:205.929867pt;}
.x21{left:208.020400pt;}
.x90{left:209.787019pt;}
.xb6{left:217.437468pt;}
.xb8{left:220.592434pt;}
.x1{left:226.771600pt;}
.x31{left:235.555333pt;}
.x32{left:237.960533pt;}
.x33{left:242.344400pt;}
.xb9{left:257.510081pt;}
.x26{left:265.159733pt;}
.x17{left:273.811467pt;}
.x6d{left:277.978667pt;}
.x34{left:292.245333pt;}
.x35{left:297.728000pt;}
.x67{left:302.418000pt;}
.x20{left:304.197733pt;}
.x1d{left:306.288133pt;}
.x27{left:324.597333pt;}
.xbb{left:328.878093pt;}
.x19{left:330.504400pt;}
.x1e{left:331.802533pt;}
.x53{left:332.933867pt;}
.x37{left:339.999867pt;}
.x76{left:341.212267pt;}
.x38{left:343.991733pt;}
.x2b{left:345.110133pt;}
.x36{left:348.274267pt;}
.x29{left:352.304667pt;}
.x39{left:354.754267pt;}
.x64{left:359.110933pt;}
.x65{left:362.780400pt;}
.x3{left:364.574533pt;}
.x96{left:368.335514pt;}
.x7e{left:373.099133pt;}
.x74{left:376.203733pt;}
.xa1{left:377.246129pt;}
.x79{left:380.096133pt;}
.x9b{left:384.108246pt;}
.xa{left:387.401467pt;}
.x25{left:395.360933pt;}
.x85{left:401.951997pt;}
.x4b{left:406.327600pt;}
.x3a{left:407.236400pt;}
.x55{left:409.664133pt;}
.x10{left:411.401600pt;}
.xb5{left:413.274800pt;}
.x4a{left:418.836000pt;}
.x84{left:420.762996pt;}
.xa0{left:424.744537pt;}
.x71{left:426.154400pt;}
.x28{left:427.559067pt;}
.x83{left:430.639407pt;}
.x82{left:434.253969pt;}
.xa6{left:436.632267pt;}
.x9f{left:438.235510pt;}
.x6a{left:439.181067pt;}
.x6e{left:442.571467pt;}
.x7{left:444.094533pt;}
.x16{left:445.834400pt;}
.xa4{left:451.170800pt;}
.x3c{left:452.409733pt;}
.x3d{left:456.401600pt;}
.xb4{left:458.228133pt;}
.x3b{left:460.278933pt;}
.x3e{left:467.164133pt;}
.xf{left:468.094533pt;}
.xaf{left:471.305417pt;}
.x4c{left:473.322267pt;}
.xc1{left:476.220000pt;}
.x4d{left:477.946133pt;}
.xae{left:488.651816pt;}
.x18{left:490.930000pt;}
.xad{left:497.759262pt;}
.x8a{left:500.392181pt;}
.xc3{left:505.955867pt;}
.x3f{left:508.996000pt;}
.x40{left:512.606533pt;}
.x51{left:514.015733pt;}
.x66{left:515.275600pt;}
.x8e{left:516.184842pt;}
.x41{left:523.369067pt;}
.x49{left:533.858267pt;}
.x1c{left:535.433067pt;}
.x94{left:538.012219pt;}
.x1a{left:547.622933pt;}
.x52{left:552.151200pt;}
.x93{left:556.823217pt;}
.x4f{left:559.370133pt;}
.x46{left:560.314933pt;}
.x75{left:563.976933pt;}
.x92{left:566.699628pt;}
.x91{left:570.314191pt;}
.x43{left:580.075333pt;}
.x45{left:582.847467pt;}
.x42{left:594.516667pt;}
.x73{left:598.677200pt;}
.x6c{left:607.164400pt;}
.x1b{left:622.034933pt;}
.x11{left:625.134267pt;}
.x4e{left:626.867467pt;}
.x47{left:629.952800pt;}
.xc{left:631.602400pt;}
.x54{left:633.126667pt;}
.x12{left:635.894267pt;}
.x15{left:638.886533pt;}
.x72{left:645.675600pt;}
.x48{left:651.968533pt;}
.x9{left:657.637733pt;}
.x70{left:673.077200pt;}
.x6b{left:738.625600pt;}
.xb{left:744.385600pt;}
.x4{left:750.145467pt;}
}




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