
    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_e378d40061a083f706379dc2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_125ac4681f6dbb05e7bc8d39.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.152832;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_2ba8c151dcef1c33ed056419.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6b881fec4bd3de5f3864e4f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;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_3417c2956359bbafa772e9ac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.188000;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_38710307f26443bc65e32108.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_eb62a84b703048ef4bd15fce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.230000;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_408fb8f0d8567a381d153a2a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_41d9e2d50f5f3dfda1f41c9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.922000;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_85c1e9945a2fdc1ed17cffc4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107910;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_789b049bab1b315812c7d444.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.692383;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_891b95e2477ba231a38efb7a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.578000;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;}
.m6{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,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);}
.m7{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.346000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.702365px;}
.v5{vertical-align:2.720992px;}
.v1{vertical-align:3.738382px;}
.v6{vertical-align:9.866068px;}
.v4{vertical-align:12.246856px;}
.v7{vertical-align:13.958744px;}
.v2{vertical-align:17.331259px;}
.ls3{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000005px;}
.ls0{letter-spacing:0.009840px;}
.ls2d{letter-spacing:0.110941px;}
.ls25{letter-spacing:0.387347px;}
.ls2a{letter-spacing:0.444732px;}
.ls5{letter-spacing:2.652600px;}
.ls8{letter-spacing:2.866344px;}
.ls6{letter-spacing:2.867544px;}
.lsa{letter-spacing:2.868144px;}
.ls4{letter-spacing:2.991600px;}
.ls9{letter-spacing:2.992800px;}
.lse{letter-spacing:2.997600px;}
.lsb{letter-spacing:3.208344px;}
.ls7{letter-spacing:3.214344px;}
.ls2b{letter-spacing:3.317778px;}
.ls2c{letter-spacing:5.485824px;}
.ls2{letter-spacing:11.082285px;}
.ls11{letter-spacing:11.137418px;}
.ls1c{letter-spacing:11.757982px;}
.ls1f{letter-spacing:11.762285px;}
.ls26{letter-spacing:11.912918px;}
.ls20{letter-spacing:12.093678px;}
.ls21{letter-spacing:12.097982px;}
.ls1d{letter-spacing:12.102286px;}
.ls17{letter-spacing:12.155997px;}
.ls1e{letter-spacing:12.166843px;}
.ls13{letter-spacing:12.500305px;}
.ls27{letter-spacing:13.050242px;}
.ls23{letter-spacing:13.179357px;}
.ls1b{letter-spacing:13.184139px;}
.ls24{letter-spacing:13.384986px;}
.ls22{letter-spacing:13.389768px;}
.ls1a{letter-spacing:14.197936px;}
.ls18{letter-spacing:14.542244px;}
.lsc{letter-spacing:14.590065px;}
.ls16{letter-spacing:18.367892px;}
.ls15{letter-spacing:18.410931px;}
.ls29{letter-spacing:18.586487px;}
.ls14{letter-spacing:18.621342px;}
.ls1{letter-spacing:19.038201px;}
.ls19{letter-spacing:22.365695px;}
.lsf{letter-spacing:24.613263px;}
.ls12{letter-spacing:24.756725px;}
.lsd{letter-spacing:24.780635px;}
.ls10{letter-spacing:47.571933px;}
.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;}
}
.ws4{word-spacing:-80.697000px;}
.wsd{word-spacing:-47.820600px;}
.wsf{word-spacing:-43.038000px;}
.ws1b{word-spacing:-38.255400px;}
.ws1a{word-spacing:-24.674733px;}
.ws3{word-spacing:-20.174250px;}
.ws5{word-spacing:-18.565183px;}
.wsb{word-spacing:-14.011436px;}
.ws2{word-spacing:-13.461330px;}
.ws18{word-spacing:-12.911562px;}
.ws7{word-spacing:-12.610134px;}
.wsc{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.ws19{word-spacing:-11.208832px;}
.ws8{word-spacing:-10.759500px;}
.wsa{word-spacing:-10.061328px;}
.ws6{word-spacing:-9.563850px;}
.ws13{word-spacing:-0.813418px;}
.ws17{word-spacing:-0.809114px;}
.ws16{word-spacing:-0.542279px;}
.ws12{word-spacing:-0.537975px;}
.ws15{word-spacing:-0.473418px;}
.ws11{word-spacing:-0.469114px;}
.ws10{word-spacing:-0.456203px;}
.ws14{word-spacing:-0.451899px;}
.ws9{word-spacing:0.000000px;}
.wse{word-spacing:16.062940px;}
.ws1{word-spacing:26.511408px;}
._3{margin-left:-17.343592px;}
._74{margin-left:-11.649098px;}
._11{margin-left:-5.346198px;}
._e{margin-left:-4.135555px;}
._8{margin-left:-2.315444px;}
._7{margin-left:-1.101773px;}
._2{width:1.937770px;}
._1{width:3.397344px;}
._6{width:4.655066px;}
._a{width:5.784307px;}
._9{width:6.860257px;}
._5{width:8.379499px;}
._4{width:10.040765px;}
._14{width:11.309572px;}
._19{width:12.323369px;}
._16{width:13.365858px;}
._18{width:14.412933px;}
._c{width:15.584734px;}
._d{width:16.641569px;}
._12{width:18.143136px;}
._5c{width:19.312891px;}
._10{width:20.318240px;}
._17{width:21.384256px;}
._f{width:22.423079px;}
._6b{width:23.542081px;}
._6c{width:24.952789px;}
._6f{width:26.401753px;}
._75{width:29.127527px;}
._b{width:30.193927px;}
._13{width:31.757660px;}
._6e{width:32.773517px;}
._15{width:34.158255px;}
._6d{width:39.431416px;}
._70{width:40.607374px;}
._72{width:43.429646px;}
._71{width:44.505596px;}
._6a{width:47.103291px;}
._73{width:54.864842px;}
._34{width:104.877179px;}
._1c{width:115.221439px;}
._37{width:125.688117px;}
._0{width:131.300826px;}
._2b{width:136.896949px;}
._23{width:144.012453px;}
._5b{width:147.340673px;}
._50{width:154.570944px;}
._3c{width:166.353607px;}
._67{width:178.962587px;}
._25{width:180.010785px;}
._63{width:182.768999px;}
._64{width:185.649631px;}
._29{width:189.306847px;}
._5e{width:190.546322px;}
._5f{width:191.579218px;}
._46{width:195.236434px;}
._3a{width:197.149204px;}
._33{width:200.821722px;}
._62{width:201.977035px;}
._69{width:204.624309px;}
._60{width:207.263932px;}
._68{width:209.773486px;}
._27{width:211.762767px;}
._3e{width:216.200393px;}
._48{width:218.189674px;}
._65{width:221.058829px;}
._66{width:223.993018px;}
._53{width:224.999135px;}
._2f{width:226.070286px;}
._35{width:227.600502px;}
._21{width:229.015952px;}
._2d{width:235.022050px;}
._44{width:240.645594px;}
._56{width:245.083220px;}
._1d{width:246.192627px;}
._40{width:252.845241px;}
._4c{width:253.996728px;}
._4e{width:256.483329px;}
._1f{width:257.975290px;}
._54{width:268.839823px;}
._31{width:275.572774px;}
._61{width:281.318735px;}
._42{width:286.858117px;}
._5d{width:293.591067px;}
._4a{width:304.455601px;}
._3b{width:315.587922px;}
._2e{width:346.000965px;}
._2c{width:349.405696px;}
._49{width:360.920571px;}
._41{width:362.297766px;}
._1e{width:371.899871px;}
._47{width:379.895250px;}
._26{width:385.863092px;}
._52{width:394.202769px;}
._38{width:411.838509px;}
._24{width:419.451333px;}
._43{width:422.932575px;}
._3d{width:427.370201px;}
._30{width:433.988385px;}
._4f{width:435.212558px;}
._57{width:438.043458px;}
._28{width:442.634106px;}
._32{width:443.705257px;}
._59{width:445.618027px;}
._58{width:448.984502px;}
._39{width:452.503999px;}
._22{width:458.204053px;}
._51{width:463.215511px;}
._3f{width:466.237687px;}
._4d{width:468.265224px;}
._45{width:476.451879px;}
._36{width:503.001127px;}
._4b{width:524.041597px;}
._2a{width:527.561094px;}
._1b{width:541.524315px;}
._20{width:546.114963px;}
._55{width:548.831096px;}
._5a{width:566.199048px;}
._1a{width:751.045315px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs1{font-size:23.910000px;}
.fs6{font-size:26.761800px;}
.fs12{font-size:26.778600px;}
.fsf{font-size:30.108600px;}
.fsd{font-size:33.472800px;}
.fsc{font-size:35.867400px;}
.fs7{font-size:38.255400px;}
.fsb{font-size:38.256000px;}
.fs11{font-size:40.933200px;}
.fs8{font-size:41.842200px;}
.fs5{font-size:42.237000px;}
.fs0{font-size:43.038000px;}
.fs4{font-size:44.327400px;}
.fs10{font-size:46.050600px;}
.fs9{font-size:47.820600px;}
.fse{font-size:51.168000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fsa{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y42{bottom:47.430000px;}
.yda{bottom:78.408098px;}
.y254{bottom:78.409772px;}
.y385{bottom:78.415516px;}
.y9f{bottom:78.416181px;}
.y33a{bottom:78.416300px;}
.y2bb{bottom:78.491572px;}
.y1de{bottom:78.493002px;}
.y5{bottom:79.140000px;}
.y2fc{bottom:79.344038px;}
.y84{bottom:79.351073px;}
.y249{bottom:82.236615px;}
.y276{bottom:82.236896px;}
.y285{bottom:82.237114px;}
.y156{bottom:83.680286px;}
.y3dd{bottom:84.708383px;}
.y435{bottom:84.710205px;}
.y11f{bottom:85.301484px;}
.y384{bottom:90.405715px;}
.y2ba{bottom:92.778036px;}
.y1dd{bottom:92.779466px;}
.y4{bottom:93.495000px;}
.y204{bottom:94.054318px;}
.yd9{bottom:94.141076px;}
.y253{bottom:94.141554px;}
.y9e{bottom:94.147962px;}
.y339{bottom:94.148082px;}
.y1c7{bottom:94.651076px;}
.y2fb{bottom:95.077016px;}
.y83{bottom:95.082855px;}
.y434{bottom:96.530168px;}
.y3dc{bottom:96.698582px;}
.y433{bottom:96.700404px;}
.y248{bottom:97.883516px;}
.y275{bottom:97.883796px;}
.y284{bottom:97.884014px;}
.y11e{bottom:98.227027px;}
.y155{bottom:99.412067px;}
.y383{bottom:102.311752px;}
.y3{bottom:105.630000px;}
.y2b9{bottom:107.149500px;}
.y1dc{bottom:107.150930px;}
.y48a{bottom:108.601012px;}
.y3db{bottom:108.604619px;}
.y432{bottom:108.605485px;}
.y203{bottom:109.701218px;}
.yd8{bottom:109.787976px;}
.y9d{bottom:109.794863px;}
.y338{bottom:109.794983px;}
.y1c6{bottom:110.382858px;}
.y2fa{bottom:110.723916px;}
.y82{bottom:110.730951px;}
.y11d{bottom:111.067452px;}
.y247{bottom:113.615298px;}
.y274{bottom:113.615578px;}
.y283{bottom:113.615796px;}
.y382{bottom:114.301951px;}
.y186{bottom:115.058758px;}
.y154{bottom:115.058968px;}
.y40{bottom:119.905636px;}
.y489{bottom:120.591210px;}
.y3da{bottom:120.594817px;}
.y431{bottom:120.595683px;}
.y1db{bottom:121.522395px;}
.y202{bottom:123.392100px;}
.y11c{bottom:123.908834px;}
.y201{bottom:125.433000px;}
.yd7{bottom:125.519758px;}
.y252{bottom:125.520236px;}
.y9c{bottom:125.526645px;}
.y337{bottom:125.526764px;}
.y1c5{bottom:126.029758px;}
.y381{bottom:126.207031px;}
.y2f9{bottom:126.455698px;}
.y81{bottom:126.462733px;}
.y246{bottom:129.262198px;}
.y273{bottom:129.262478px;}
.y282{bottom:129.262697px;}
.y185{bottom:130.790540px;}
.y153{bottom:130.790750px;}
.y488{bottom:132.581409px;}
.y3d9{bottom:132.585016px;}
.y430{bottom:132.586839px;}
.y3f{bottom:134.192100px;}
.y1da{bottom:135.808859px;}
.y11b{bottom:136.749259px;}
.y380{bottom:138.197230px;}
.y1ff{bottom:139.124400px;}
.y21c{bottom:141.079900px;}
.y200{bottom:141.080250px;}
.y1fe{bottom:141.081036px;}
.yd6{bottom:141.166658px;}
.y9b{bottom:141.174740px;}
.y336{bottom:141.174860px;}
.y1c4{bottom:141.761540px;}
.y2f8{bottom:142.102598px;}
.y80{bottom:142.109633px;}
.y151{bottom:144.481800px;}
.y487{bottom:144.487446px;}
.y3d8{bottom:144.490097px;}
.y42f{bottom:144.491919px;}
.y245{bottom:144.993980px;}
.y281{bottom:144.994478px;}
.y272{bottom:144.995456px;}
.y152{bottom:146.437650px;}
.y184{bottom:146.438636px;}
.y150{bottom:146.439316px;}
.y11a{bottom:149.589684px;}
.y1d9{bottom:150.180323px;}
.y37f{bottom:150.188385px;}
.y486{bottom:156.477645px;}
.y3d7{bottom:156.481252px;}
.y42e{bottom:156.482118px;}
.y21b{bottom:156.811682px;}
.y1fd{bottom:156.812818px;}
.yd5{bottom:156.899636px;}
.y9a{bottom:156.906522px;}
.y335{bottom:156.906642px;}
.y1c3{bottom:157.409636px;}
.y2f7{bottom:157.835576px;}
.y7f{bottom:157.841415px;}
.y3b{bottom:159.705715px;}
.y244{bottom:160.642076px;}
.y271{bottom:160.642356px;}
.y280{bottom:160.642574px;}
.y37e{bottom:162.093465px;}
.y183{bottom:162.170417px;}
.y14f{bottom:162.171098px;}
.y119{bottom:162.431065px;}
.y1d8{bottom:164.551787px;}
.y485{bottom:168.382725px;}
.y3d6{bottom:168.386332px;}
.y42d{bottom:168.388155px;}
.y21a{bottom:172.458583px;}
.y1fc{bottom:172.459718px;}
.yd4{bottom:172.546536px;}
.y99{bottom:172.553423px;}
.y334{bottom:172.553543px;}
.y1c2{bottom:173.141417px;}
.y2f6{bottom:173.567358px;}
.y7e{bottom:173.574392px;}
.y3a{bottom:174.077179px;}
.y37d{bottom:174.083664px;}
.y118{bottom:175.271490px;}
.y243{bottom:176.373858px;}
.y270{bottom:176.374138px;}
.y27f{bottom:176.374356px;}
.y182{bottom:177.817318px;}
.y14e{bottom:177.819194px;}
.y1d7{bottom:178.838251px;}
.y484{bottom:180.372924px;}
.y3d5{bottom:180.376531px;}
.y42c{bottom:180.378353px;}
.y37c{bottom:185.988745px;}
.y1fa{bottom:186.235500px;}
.y117{bottom:188.112872px;}
.y219{bottom:188.190364px;}
.y1fb{bottom:188.191500px;}
.y1f9{bottom:188.195396px;}
.yd3{bottom:188.278318px;}
.y98{bottom:188.285205px;}
.y333{bottom:188.285324px;}
.y39{bottom:188.448644px;}
.y1c1{bottom:188.788318px;}
.y2f5{bottom:189.214258px;}
.y7d{bottom:189.221293px;}
.y242{bottom:192.020758px;}
.y26f{bottom:192.021038px;}
.y27e{bottom:192.021256px;}
.y483{bottom:192.278961px;}
.y3d4{bottom:192.281611px;}
.y42b{bottom:192.283434px;}
.y1d6{bottom:193.209715px;}
.y181{bottom:193.549100px;}
.y14d{bottom:193.550976px;}
.y37b{bottom:197.979900px;}
.y116{bottom:201.038415px;}
.y38{bottom:202.735108px;}
.y218{bottom:203.838460px;}
.y1f8{bottom:203.842296px;}
.yd2{bottom:203.925218px;}
.y332{bottom:203.932225px;}
.y97{bottom:203.933300px;}
.y482{bottom:204.269160px;}
.y3d3{bottom:204.272767px;}
.y42a{bottom:204.273633px;}
.y1c0{bottom:204.520100px;}
.y2f4{bottom:204.946040px;}
.y7c{bottom:204.953075px;}
.y17f{bottom:207.241500px;}
.y1d5{bottom:207.581179px;}
.y241{bottom:207.752540px;}
.y27d{bottom:207.753038px;}
.y26e{bottom:207.754016px;}
.y180{bottom:209.196000px;}
.y17e{bottom:209.200514px;}
.y37a{bottom:209.970098px;}
.y115{bottom:213.878840px;}
.y481{bottom:216.259358px;}
.y3d2{bottom:216.262965px;}
.y429{bottom:216.264788px;}
.y37{bottom:217.106572px;}
.y1be{bottom:218.211000px;}
.y217{bottom:219.570242px;}
.y1f7{bottom:219.574078px;}
.yd1{bottom:219.657000px;}
.yd0{bottom:219.658258px;}
.y96{bottom:219.665082px;}
.y331{bottom:219.665202px;}
.y1bf{bottom:220.167000px;}
.y1bd{bottom:220.168536px;}
.y2f3{bottom:220.594136px;}
.y7b{bottom:220.599975px;}
.y379{bottom:221.875179px;}
.y1d4{bottom:221.952643px;}
.y240{bottom:223.400636px;}
.y26d{bottom:223.400916px;}
.y27c{bottom:223.401134px;}
.y14c{bottom:224.929658px;}
.y17d{bottom:224.932296px;}
.y114{bottom:226.720221px;}
.y480{bottom:228.165395px;}
.y3d1{bottom:228.168046px;}
.y428{bottom:228.169868px;}
.y36{bottom:231.478036px;}
.y378{bottom:233.866334px;}
.y216{bottom:235.217142px;}
.y1f6{bottom:235.220978px;}
.ycf{bottom:235.305158px;}
.y95{bottom:235.311983px;}
.y330{bottom:235.312102px;}
.y1bc{bottom:235.900318px;}
.y1d3{bottom:236.239108px;}
.y2f2{bottom:236.325917px;}
.y7a{bottom:236.332952px;}
.y23f{bottom:239.132417px;}
.y26c{bottom:239.132698px;}
.y27b{bottom:239.132916px;}
.y113{bottom:239.560646px;}
.y47f{bottom:240.155594px;}
.y3d0{bottom:240.158245px;}
.y427{bottom:240.160067px;}
.y14b{bottom:240.662636px;}
.y17c{bottom:240.664078px;}
.y35{bottom:245.764500px;}
.y377{bottom:245.771415px;}
.y1d2{bottom:250.610572px;}
.y215{bottom:250.948924px;}
.y1f5{bottom:250.953956px;}
.yce{bottom:251.038136px;}
.y94{bottom:251.043764px;}
.y32f{bottom:251.043884px;}
.y1bb{bottom:251.632100px;}
.y2f1{bottom:251.972818px;}
.y79{bottom:251.979853px;}
.y47e{bottom:252.060674px;}
.y3cf{bottom:252.064281px;}
.y426{bottom:252.065147px;}
.y112{bottom:252.402028px;}
.y23e{bottom:254.779318px;}
.y26b{bottom:254.779598px;}
.y27a{bottom:254.779816px;}
.y14a{bottom:256.309536px;}
.y17b{bottom:256.310978px;}
.y376{bottom:257.761613px;}
.y47d{bottom:264.050873px;}
.y3ce{bottom:264.054480px;}
.y425{bottom:264.056303px;}
.y1d1{bottom:264.982036px;}
.y111{bottom:265.242453px;}
.y1b9{bottom:265.323000px;}
.y214{bottom:266.681902px;}
.ycd{bottom:266.685036px;}
.y1f4{bottom:266.685738px;}
.y32e{bottom:266.690785px;}
.y93{bottom:266.691860px;}
.y1ba{bottom:267.279000px;}
.y1b8{bottom:267.281456px;}
.y2f0{bottom:267.704600px;}
.y78{bottom:267.711635px;}
.y375{bottom:269.666694px;}
.y23d{bottom:270.511100px;}
.y279{bottom:270.511598px;}
.y26a{bottom:270.512576px;}
.y149{bottom:272.041318px;}
.y17a{bottom:272.043956px;}
.y47c{bottom:276.042028px;}
.y3cd{bottom:276.044679px;}
.y424{bottom:276.046501px;}
.y1cf{bottom:277.483500px;}
.y110{bottom:278.082878px;}
.y1d0{bottom:279.268500px;}
.y1ce{bottom:279.270036px;}
.y374{bottom:281.657849px;}
.y213{bottom:282.328802px;}
.y1f3{bottom:282.332638px;}
.ycc{bottom:282.416818px;}
.y92{bottom:282.423642px;}
.y1b7{bottom:283.013238px;}
.y2ef{bottom:283.351500px;}
.y2ee{bottom:283.354296px;}
.y77{bottom:283.358535px;}
.y23c{bottom:286.158000px;}
.y269{bottom:286.159476px;}
.y23b{bottom:286.159694px;}
.y148{bottom:287.688218px;}
.y47b{bottom:287.947109px;}
.y3cc{bottom:287.950716px;}
.y423{bottom:287.951582px;}
.y10f{bottom:290.924259px;}
.y1cc{bottom:291.855000px;}
.y1cb{bottom:293.641108px;}
.y1cd{bottom:293.641500px;}
.y373{bottom:293.648048px;}
.y212{bottom:298.060584px;}
.ycb{bottom:298.063718px;}
.y1f2{bottom:298.065615px;}
.y91{bottom:298.070543px;}
.y32d{bottom:298.070662px;}
.y33{bottom:298.490576px;}
.y1b6{bottom:298.660138px;}
.y2ed{bottom:299.086078px;}
.y76{bottom:299.091512px;}
.y47a{bottom:299.937308px;}
.y3cb{bottom:299.940915px;}
.y422{bottom:299.941781px;}
.y146{bottom:301.380000px;}
.y251{bottom:301.889782px;}
.y268{bottom:301.891258px;}
.y23a{bottom:301.891476px;}
.y147{bottom:303.420000px;}
.y145{bottom:303.421318px;}
.y179{bottom:303.422638px;}
.y10e{bottom:303.849802px;}
.y372{bottom:305.553128px;}
.y1ca{bottom:308.012572px;}
.y479{bottom:311.842388px;}
.y3ca{bottom:311.845995px;}
.y421{bottom:311.847817px;}
.y211{bottom:313.707484px;}
.y1f1{bottom:313.712516px;}
.yca{bottom:313.795500px;}
.yc8{bottom:313.796480px;}
.y90{bottom:313.802324px;}
.y32{bottom:314.222358px;}
.y1b5{bottom:314.393115px;}
.y2ec{bottom:314.732978px;}
.y75{bottom:314.738413px;}
.y10d{bottom:316.690227px;}
.y250{bottom:317.536682px;}
.y267{bottom:317.538158px;}
.y239{bottom:317.538376px;}
.y371{bottom:317.543327px;}
.yc9{bottom:319.068000px;}
.y144{bottom:319.068218px;}
.y178{bottom:319.069538px;}
.y1c9{bottom:322.299036px;}
.y478{bottom:323.833543px;}
.y3c9{bottom:323.836194px;}
.y420{bottom:323.838016px;}
.y210{bottom:329.440462px;}
.y1f0{bottom:329.444298px;}
.yc7{bottom:329.444576px;}
.y8f{bottom:329.449225px;}
.y370{bottom:329.449364px;}
.y10c{bottom:329.531609px;}
.y32c{bottom:329.790066px;}
.y31{bottom:329.869258px;}
.y1b4{bottom:330.040016px;}
.y2eb{bottom:330.465956px;}
.y74{bottom:330.470195px;}
.y142{bottom:332.758500px;}
.y24f{bottom:333.268464px;}
.y238{bottom:333.270158px;}
.y266{bottom:333.271136px;}
.y143{bottom:334.800000px;}
.y141{bottom:334.801136px;}
.y177{bottom:334.802516px;}
.y477{bottom:335.738624px;}
.y3c8{bottom:335.742231px;}
.y41f{bottom:335.743097px;}
.y1c8{bottom:336.670500px;}
.y36f{bottom:341.439562px;}
.y10b{bottom:342.372034px;}
.y20f{bottom:345.087362px;}
.y1ef{bottom:345.091198px;}
.yc6{bottom:345.176358px;}
.y8e{bottom:345.182202px;}
.y32b{bottom:345.521848px;}
.y30{bottom:345.601040px;}
.y1b3{bottom:345.771798px;}
.y2ea{bottom:346.112856px;}
.y73{bottom:346.117095px;}
.y476{bottom:347.728822px;}
.y3c7{bottom:347.732429px;}
.y41e{bottom:347.734252px;}
.y24e{bottom:348.915364px;}
.y237{bottom:348.917059px;}
.y265{bottom:348.918036px;}
.y140{bottom:350.448036px;}
.y176{bottom:350.449416px;}
.y36e{bottom:353.429761px;}
.y10a{bottom:355.213415px;}
.y475{bottom:359.719021px;}
.y3c6{bottom:359.722628px;}
.y41d{bottom:359.724451px;}
.y20e{bottom:360.819144px;}
.y1ee{bottom:360.822980px;}
.yc5{bottom:360.823258px;}
.y8d{bottom:360.829102px;}
.y32a{bottom:361.168749px;}
.y2f{bottom:361.249136px;}
.y1b2{bottom:361.418698px;}
.y2e9{bottom:361.844638px;}
.y72{bottom:361.848877px;}
.y24d{bottom:364.648342px;}
.y264{bottom:364.649818px;}
.y236{bottom:364.650036px;}
.y36d{bottom:365.334842px;}
.y13f{bottom:366.179818px;}
.y175{bottom:366.181198px;}
.y109{bottom:368.053840px;}
.y474{bottom:371.625058px;}
.y3c5{bottom:371.627709px;}
.y41c{bottom:371.629531px;}
.y20d{bottom:376.466044px;}
.y1ed{bottom:376.471076px;}
.yc4{bottom:376.555040px;}
.y8c{bottom:376.560884px;}
.y329{bottom:376.901726px;}
.y2e{bottom:376.980917px;}
.y1b1{bottom:377.150480px;}
.y36c{bottom:377.325997px;}
.y2e8{bottom:377.491538px;}
.y71{bottom:377.496973px;}
.y24c{bottom:380.295242px;}
.y263{bottom:380.296718px;}
.y235{bottom:380.296936px;}
.y108{bottom:380.894265px;}
.y13e{bottom:381.826718px;}
.y174{bottom:381.828098px;}
.y473{bottom:383.615257px;}
.y3c4{bottom:383.618864px;}
.y41b{bottom:383.619730px;}
.y36b{bottom:389.231077px;}
.y20c{bottom:392.199022px;}
.y1ec{bottom:392.202858px;}
.y8b{bottom:392.207785px;}
.y328{bottom:392.548626px;}
.y2d{bottom:392.627818px;}
.y1b0{bottom:392.798576px;}
.y70{bottom:393.228754px;}
.y107{bottom:393.820765px;}
.y472{bottom:395.520337px;}
.y3c3{bottom:395.523944px;}
.y41a{bottom:395.525767px;}
.y24b{bottom:396.027024px;}
.y262{bottom:396.028500px;}
.y234{bottom:396.028718px;}
.y13d{bottom:397.558500px;}
.y173{bottom:397.561076px;}
.y13c{bottom:397.563776px;}
.y36a{bottom:401.221276px;}
.y261{bottom:401.301000px;}
.y106{bottom:406.661190px;}
.y471{bottom:407.511492px;}
.y3c2{bottom:407.514143px;}
.y419{bottom:407.515965px;}
.y20b{bottom:407.845922px;}
.y1eb{bottom:407.849758px;}
.yc3{bottom:407.934917px;}
.y34{bottom:408.359600px;}
.y1af{bottom:408.530358px;}
.y2e7{bottom:408.871416px;}
.y6f{bottom:408.875655px;}
.y24a{bottom:411.758806px;}
.y277{bottom:411.760282px;}
.y233{bottom:411.760500px;}
.y369{bottom:413.127313px;}
.y172{bottom:413.207976px;}
.y13b{bottom:413.210676px;}
.y470{bottom:419.501691px;}
.y105{bottom:419.502571px;}
.y3c1{bottom:419.504342px;}
.y418{bottom:419.506164px;}
.y20a{bottom:423.577704px;}
.y1ea{bottom:423.581540px;}
.yc2{bottom:423.581818px;}
.y8a{bottom:423.587662px;}
.y327{bottom:423.927308px;}
.y2c{bottom:424.006500px;}
.y2e6{bottom:424.603198px;}
.y6e{bottom:424.607437px;}
.y368{bottom:425.117512px;}
.y171{bottom:428.939758px;}
.y13a{bottom:428.942458px;}
.y46f{bottom:431.406772px;}
.y3c0{bottom:431.410379px;}
.y417{bottom:431.411245px;}
.y104{bottom:432.342996px;}
.y367{bottom:437.107710px;}
.y209{bottom:439.224604px;}
.y1e9{bottom:439.229636px;}
.yc1{bottom:439.313600px;}
.y1ae{bottom:439.909040px;}
.y2e5{bottom:440.250098px;}
.y6d{bottom:440.255532px;}
.y46e{bottom:443.396970px;}
.y3bf{bottom:443.400577px;}
.y416{bottom:443.402400px;}
.y170{bottom:444.586658px;}
.y139{bottom:444.590554px;}
.y103{bottom:445.183421px;}
.y366{bottom:449.012791px;}
.y208{bottom:454.956386px;}
.y1e8{bottom:454.961417px;}
.yc0{bottom:454.962376px;}
.y46d{bottom:455.303007px;}
.y3be{bottom:455.305658px;}
.y415{bottom:455.307480px;}
.y1ad{bottom:455.557136px;}
.y326{bottom:455.646712px;}
.y89{bottom:455.817551px;}
.y2e4{bottom:455.983076px;}
.y6c{bottom:455.987314px;}
.y102{bottom:458.024803px;}
.y16f{bottom:460.319636px;}
.y138{bottom:460.322336px;}
.y365{bottom:461.003946px;}
.y46c{bottom:467.293206px;}
.y3bd{bottom:467.296813px;}
.y414{bottom:467.297679px;}
.y207{bottom:470.604482px;}
.ybf{bottom:470.694158px;}
.y101{bottom:470.865228px;}
.y325{bottom:471.379690px;}
.y88{bottom:471.464452px;}
.y2e3{bottom:471.629976px;}
.y6b{bottom:471.634215px;}
.y364{bottom:472.909027px;}
.y2e2{bottom:474.691690px;}
.y16e{bottom:475.966536px;}
.y137{bottom:475.969236px;}
.y46b{bottom:479.283405px;}
.y3bc{bottom:479.287012px;}
.y413{bottom:479.288834px;}
.y2b{bottom:483.536574px;}
.y100{bottom:483.706609px;}
.y363{bottom:484.899225px;}
.y206{bottom:486.336264px;}
.y1e7{bottom:486.340100px;}
.ybe{bottom:486.341059px;}
.y1ac{bottom:486.935818px;}
.y324{bottom:487.026590px;}
.y87{bottom:487.196233px;}
.y2e1{bottom:487.361758px;}
.y6a{bottom:487.365997px;}
.y46a{bottom:491.188485px;}
.y3bb{bottom:491.192092px;}
.y412{bottom:491.193915px;}
.y16d{bottom:491.698318px;}
.y136{bottom:491.701018px;}
.yff{bottom:496.632152px;}
.y362{bottom:496.889424px;}
.y2a{bottom:497.908038px;}
.y205{bottom:501.983164px;}
.y1e6{bottom:501.987000px;}
.ybd{bottom:502.074036px;}
.y323{bottom:502.758372px;}
.y86{bottom:502.843134px;}
.y2e0{bottom:503.008658px;}
.y69{bottom:503.014092px;}
.y469{bottom:503.179640px;}
.y3ba{bottom:503.182291px;}
.y411{bottom:503.184113px;}
.y135{bottom:507.349114px;}
.y361{bottom:508.795461px;}
.yfe{bottom:509.472577px;}
.y29{bottom:512.279502px;}
.y468{bottom:515.084721px;}
.y3b9{bottom:515.088328px;}
.y410{bottom:515.089194px;}
.ybc{bottom:517.720936px;}
.y1ab{bottom:518.314500px;}
.y1aa{bottom:518.320271px;}
.y322{bottom:518.405272px;}
.y2b0{bottom:518.741349px;}
.y2df{bottom:518.741636px;}
.y68{bottom:518.745874px;}
.y360{bottom:520.785660px;}
.yfd{bottom:522.313959px;}
.y16c{bottom:523.077000px;}
.y16b{bottom:523.078100px;}
.y134{bottom:523.080896px;}
.y28a{bottom:526.479917px;}
.y28{bottom:526.565966px;}
.y467{bottom:527.074920px;}
.y3b8{bottom:527.078527px;}
.y40f{bottom:527.080349px;}
.y35f{bottom:532.690740px;}
.ybb{bottom:533.452718px;}
.y1a9{bottom:534.052053px;}
.y321{bottom:534.137054px;}
.y85{bottom:534.223011px;}
.y2af{bottom:534.388249px;}
.y2de{bottom:534.388536px;}
.y67{bottom:534.392775px;}
.yfc{bottom:535.154384px;}
.y16a{bottom:538.725000px;}
.y133{bottom:538.727796px;}
.y466{bottom:538.980000px;}
.y465{bottom:538.983517px;}
.y3b7{bottom:538.983607px;}
.y40e{bottom:538.985429px;}
.y27{bottom:540.937430px;}
.y289{bottom:542.126818px;}
.y35e{bottom:544.681895px;}
.yb9{bottom:547.143000px;}
.yfb{bottom:547.994809px;}
.yba{bottom:549.184500px;}
.yb8{bottom:549.185540px;}
.y320{bottom:549.785150px;}
.y2ae{bottom:550.120031px;}
.y2dd{bottom:550.120318px;}
.y66{bottom:550.124557px;}
.y464{bottom:550.973715px;}
.y3b6{bottom:550.973806px;}
.y40d{bottom:550.975628px;}
.y132{bottom:554.459578px;}
.y169{bottom:554.459856px;}
.y26{bottom:555.308895px;}
.y35d{bottom:556.586976px;}
.y288{bottom:557.858600px;}
.yfa{bottom:560.836190px;}
.y463{bottom:562.963914px;}
.y3b5{bottom:562.964961px;}
.y40c{bottom:562.965827px;}
.yb7{bottom:564.833636px;}
.y31f{bottom:565.516932px;}
.y2dc{bottom:565.767218px;}
.y2ad{bottom:565.768127px;}
.y65{bottom:565.771457px;}
.y1e5{bottom:567.638715px;}
.y35c{bottom:568.577174px;}
.y25{bottom:569.595359px;}
.y168{bottom:570.106756px;}
.y287{bottom:573.505500px;}
.y462{bottom:574.869951px;}
.y3b4{bottom:574.870041px;}
.y40b{bottom:574.871864px;}
.yf9{bottom:580.564500px;}
.yb6{bottom:580.565417px;}
.y35b{bottom:580.567373px;}
.y31e{bottom:581.163832px;}
.y2ac{bottom:581.498713px;}
.y2db{bottom:581.499000px;}
.y64{bottom:581.504434px;}
.y2da{bottom:581.504494px;}
.y1e4{bottom:582.010179px;}
.y24{bottom:583.966823px;}
.y167{bottom:585.838538px;}
.y131{bottom:585.839456px;}
.y461{bottom:586.860150px;}
.y3b3{bottom:586.860240px;}
.y40a{bottom:586.862062px;}
.y286{bottom:589.237500px;}
.y35a{bottom:592.473410px;}
.yb5{bottom:596.212318px;}
.y1e3{bottom:596.381643px;}
.y31d{bottom:596.895614px;}
.y2ab{bottom:597.145614px;}
.y63{bottom:597.151335px;}
.y2d9{bottom:597.151394px;}
.y23{bottom:598.338287px;}
.y460{bottom:598.765230px;}
.y3b2{bottom:598.766277px;}
.y409{bottom:598.767143px;}
.yf8{bottom:600.293608px;}
.y130{bottom:601.486356px;}
.y166{bottom:601.486634px;}
.y359{bottom:604.463609px;}
.y1e2{bottom:610.753108px;}
.y45f{bottom:610.755429px;}
.y3b1{bottom:610.756476px;}
.y408{bottom:610.757342px;}
.yb4{bottom:611.944100px;}
.y31c{bottom:612.543710px;}
.y22{bottom:612.624751px;}
.y2aa{bottom:612.877395px;}
.y62{bottom:612.883116px;}
.y2d8{bottom:612.883176px;}
.yf7{bottom:614.665072px;}
.y358{bottom:616.368689px;}
.y12f{bottom:617.218138px;}
.y165{bottom:617.218416px;}
.y45e{bottom:622.746584px;}
.y3b0{bottom:622.746674px;}
.y407{bottom:622.748497px;}
.y2b8{bottom:622.914751px;}
.y1e1{bottom:625.039572px;}
.y21{bottom:626.996215px;}
.yb3{bottom:627.591218px;}
.y31b{bottom:628.275492px;}
.y357{bottom:628.358888px;}
.y2a9{bottom:628.524296px;}
.y61{bottom:628.530017px;}
.y2d7{bottom:628.530077px;}
.yf6{bottom:629.036536px;}
.y12e{bottom:632.865038px;}
.y164{bottom:632.865316px;}
.y45d{bottom:634.651665px;}
.y3af{bottom:634.651755px;}
.y406{bottom:634.653577px;}
.y2b7{bottom:637.201215px;}
.y1a{bottom:637.455419px;}
.y1e0{bottom:639.411036px;}
.y356{bottom:640.350043px;}
.y20{bottom:641.367679px;}
.yf5{bottom:643.323000px;}
.yb2{bottom:643.326685px;}
.y31a{bottom:643.922392px;}
.y2a8{bottom:644.257273px;}
.y60{bottom:644.262994px;}
.y2d6{bottom:644.263054px;}
.y45c{bottom:646.641863px;}
.y3ae{bottom:646.642910px;}
.y405{bottom:646.643776px;}
.y163{bottom:648.597098px;}
.y12d{bottom:648.598016px;}
.y19{bottom:650.296800px;}
.y2b6{bottom:651.572679px;}
.y355{bottom:652.255124px;}
.y1df{bottom:653.782500px;}
.y1f{bottom:655.739144px;}
.y45b{bottom:658.547900px;}
.y3ad{bottom:658.547991px;}
.y404{bottom:658.549813px;}
.yb1{bottom:658.973586px;}
.y319{bottom:659.654174px;}
.y2a7{bottom:659.904174px;}
.y5f{bottom:659.909894px;}
.y2d5{bottom:659.909954px;}
.y18{bottom:663.137225px;}
.y12c{bottom:664.244916px;}
.y162{bottom:664.245194px;}
.y354{bottom:664.245322px;}
.y2b5{bottom:665.944143px;}
.y1e{bottom:670.025608px;}
.y45a{bottom:670.538099px;}
.y3ac{bottom:670.538189px;}
.y403{bottom:670.540012px;}
.yb0{bottom:674.705368px;}
.y318{bottom:675.301074px;}
.y2a6{bottom:675.635955px;}
.y5e{bottom:675.641676px;}
.y2d4{bottom:675.641736px;}
.y17{bottom:676.062769px;}
.y353{bottom:676.150403px;}
.y12b{bottom:679.976698px;}
.y161{bottom:679.976976px;}
.y2b4{bottom:680.230608px;}
.y459{bottom:682.443179px;}
.y3ab{bottom:682.443270px;}
.y402{bottom:682.445092px;}
.y1d{bottom:684.397072px;}
.y352{bottom:688.141558px;}
.y1a8{bottom:688.141981px;}
.y16{bottom:688.904150px;}
.yaf{bottom:690.352268px;}
.y317{bottom:691.034052px;}
.y2a5{bottom:691.282856px;}
.yf4{bottom:691.288514px;}
.y5d{bottom:691.288577px;}
.y2d3{bottom:691.288637px;}
.y458{bottom:694.433378px;}
.y3aa{bottom:694.434425px;}
.y401{bottom:694.435291px;}
.y2b3{bottom:694.602072px;}
.y12a{bottom:695.623598px;}
.y160{bottom:695.623876px;}
.y1c{bottom:698.768536px;}
.y351{bottom:700.046638px;}
.y15{bottom:701.744575px;}
.y1a7{bottom:703.874959px;}
.yae{bottom:706.085245px;}
.y457{bottom:706.424533px;}
.y3a9{bottom:706.424624px;}
.y400{bottom:706.426446px;}
.y316{bottom:706.680952px;}
.y2a4{bottom:707.015833px;}
.yf3{bottom:707.020296px;}
.y5c{bottom:707.021554px;}
.y2d2{bottom:707.021614px;}
.y2b2{bottom:708.973536px;}
.y15f{bottom:711.355658px;}
.y129{bottom:711.356576px;}
.y350{bottom:712.036837px;}
.y1b{bottom:713.055000px;}
.y14{bottom:714.585000px;}
.y456{bottom:718.329614px;}
.y3a8{bottom:718.329704px;}
.y3ff{bottom:718.331527px;}
.y1a6{bottom:719.521859px;}
.yad{bottom:721.732146px;}
.y315{bottom:722.412734px;}
.y2a3{bottom:722.747615px;}
.yf2{bottom:722.752078px;}
.y5b{bottom:722.753336px;}
.y2d1{bottom:722.753396px;}
.y2b1{bottom:723.345000px;}
.y34f{bottom:724.027992px;}
.y278{bottom:726.325432px;}
.y15e{bottom:727.002559px;}
.y128{bottom:727.003476px;}
.y455{bottom:730.319812px;}
.y3a7{bottom:730.319903px;}
.y3fe{bottom:730.321725px;}
.y1a5{bottom:735.253641px;}
.y34e{bottom:735.933073px;}
.y2a2{bottom:738.394515px;}
.yf1{bottom:738.398978px;}
.y5a{bottom:738.400236px;}
.y2d0{bottom:738.400296px;}
.y260{bottom:740.696897px;}
.y454{bottom:742.224893px;}
.y3a6{bottom:742.225940px;}
.y3fd{bottom:742.226806px;}
.y13{bottom:742.393500px;}
.y127{bottom:742.735258px;}
.y15d{bottom:742.735536px;}
.y34d{bottom:747.923272px;}
.y1a4{bottom:750.900541px;}
.yac{bottom:753.110828px;}
.y314{bottom:753.792612px;}
.y2a1{bottom:754.126297px;}
.yf0{bottom:754.131956px;}
.y59{bottom:754.132018px;}
.y2cf{bottom:754.132078px;}
.y453{bottom:754.216048px;}
.y3a5{bottom:754.216138px;}
.y3fc{bottom:754.217961px;}
.y25f{bottom:754.983361px;}
.y126{bottom:758.467040px;}
.y15c{bottom:758.467318px;}
.y34c{bottom:759.828352px;}
.y452{bottom:766.206247px;}
.y3a4{bottom:766.206337px;}
.y3fb{bottom:766.208160px;}
.y1a3{bottom:766.633519px;}
.y25e{bottom:769.354825px;}
.y2a0{bottom:769.774393px;}
.yef{bottom:769.778856px;}
.y2ce{bottom:769.778978px;}
.y58{bottom:769.780114px;}
.y34b{bottom:771.819507px;}
.y15b{bottom:774.114218px;}
.y125{bottom:774.115136px;}
.y451{bottom:778.111327px;}
.y3a3{bottom:778.112374px;}
.y3fa{bottom:778.113240px;}
.y1a2{bottom:782.365300px;}
.y25d{bottom:783.726289px;}
.y34a{bottom:783.809706px;}
.y29f{bottom:785.506175px;}
.yab{bottom:785.510480px;}
.yee{bottom:785.510638px;}
.y57{bottom:785.511896px;}
.y2cd{bottom:785.511956px;}
.y313{bottom:785.512016px;}
.y15a{bottom:789.838717px;}
.y124{bottom:789.846917px;}
.y450{bottom:790.102482px;}
.y3a2{bottom:790.102573px;}
.y3f9{bottom:790.104395px;}
.y12{bottom:791.802000px;}
.y349{bottom:795.714786px;}
.y11{bottom:796.053000px;}
.y1a1{bottom:798.012201px;}
.y25c{bottom:798.012753px;}
.y29e{bottom:801.153075px;}
.yed{bottom:801.157538px;}
.yaa{bottom:801.158576px;}
.y56{bottom:801.158796px;}
.y2cc{bottom:801.158856px;}
.y312{bottom:801.158916px;}
.y44f{bottom:802.007563px;}
.y3a1{bottom:802.007653px;}
.y3f8{bottom:802.009476px;}
.y10{bottom:804.727500px;}
.y159{bottom:805.485618px;}
.y123{bottom:805.493818px;}
.y348{bottom:807.704985px;}
.yf{bottom:808.980000px;}
.y25b{bottom:812.384217px;}
.y1a0{bottom:813.743983px;}
.y44e{bottom:813.997762px;}
.y3a0{bottom:813.997852px;}
.y3f7{bottom:813.999674px;}
.y29d{bottom:816.884857px;}
.ya9{bottom:816.890358px;}
.yec{bottom:816.890516px;}
.y55{bottom:816.890578px;}
.y2cb{bottom:816.890638px;}
.y311{bottom:816.890698px;}
.ye{bottom:817.569000px;}
.y347{bottom:819.611022px;}
.y158{bottom:821.218595px;}
.y122{bottom:821.225600px;}
.yd{bottom:821.820000px;}
.y44d{bottom:825.902842px;}
.y39f{bottom:825.903889px;}
.y3f6{bottom:825.904755px;}
.y232{bottom:826.754215px;}
.y25a{bottom:826.755681px;}
.y19f{bottom:829.392078px;}
.y346{bottom:831.601221px;}
.y29c{bottom:832.532953px;}
.ya8{bottom:832.537258px;}
.yeb{bottom:832.537416px;}
.y54{bottom:832.537478px;}
.y2ca{bottom:832.537538px;}
.y310{bottom:832.537598px;}
.y157{bottom:836.865495px;}
.y121{bottom:836.872500px;}
.y44c{bottom:837.893997px;}
.y39e{bottom:837.894088px;}
.y3f5{bottom:837.895910px;}
.y231{bottom:841.125679px;}
.y259{bottom:841.127146px;}
.yc{bottom:842.230500px;}
.ya{bottom:842.232190px;}
.y345{bottom:843.591420px;}
.y19e{bottom:845.123860px;}
.y29b{bottom:848.264735px;}
.ya7{bottom:848.269040px;}
.yea{bottom:848.269198px;}
.y53{bottom:848.270456px;}
.y2c9{bottom:848.270516px;}
.y30f{bottom:848.270576px;}
.yb{bottom:849.202500px;}
.y44b{bottom:849.884196px;}
.y39d{bottom:849.884286px;}
.y3f4{bottom:849.886109px;}
.y230{bottom:855.412143px;}
.y258{bottom:855.413610px;}
.y344{bottom:855.496500px;}
.y19d{bottom:860.770761px;}
.y8{bottom:861.619500px;}
.y44a{bottom:861.789277px;}
.y39c{bottom:861.789367px;}
.y3f3{bottom:861.791189px;}
.y29a{bottom:863.911635px;}
.ye9{bottom:863.916098px;}
.ya6{bottom:863.917136px;}
.y52{bottom:863.917356px;}
.y2c8{bottom:863.917416px;}
.y30e{bottom:863.917476px;}
.y343{bottom:867.486000px;}
.y9{bottom:868.677000px;}
.y22f{bottom:869.783608px;}
.y257{bottom:869.785074px;}
.y449{bottom:873.779475px;}
.y39b{bottom:873.780522px;}
.y3f2{bottom:873.781388px;}
.y19c{bottom:876.502543px;}
.y196{bottom:877.437459px;}
.y299{bottom:879.643417px;}
.ya5{bottom:879.648917px;}
.ye8{bottom:879.649076px;}
.y51{bottom:879.649138px;}
.y2c7{bottom:879.649198px;}
.y30d{bottom:879.649258px;}
.y22e{bottom:884.155072px;}
.y256{bottom:884.156538px;}
.y448{bottom:885.685512px;}
.y39a{bottom:885.685603px;}
.y3f1{bottom:885.687425px;}
.y195{bottom:890.277884px;}
.y19b{bottom:892.150638px;}
.y342{bottom:894.956512px;}
.y298{bottom:895.291513px;}
.ya4{bottom:895.295818px;}
.ye7{bottom:895.295976px;}
.y50{bottom:895.296038px;}
.y2c6{bottom:895.296098px;}
.y30c{bottom:895.296158px;}
.y447{bottom:897.675711px;}
.y399{bottom:897.675801px;}
.y3f0{bottom:897.677624px;}
.y49e{bottom:897.678607px;}
.y22d{bottom:898.441536px;}
.y255{bottom:898.443002px;}
.y7{bottom:899.122216px;}
.y194{bottom:903.118309px;}
.y19a{bottom:907.882420px;}
.y446{bottom:909.665910px;}
.y398{bottom:909.666000px;}
.y397{bottom:909.666420px;}
.y3ef{bottom:909.667822px;}
.y49d{bottom:909.669762px;}
.y297{bottom:911.023295px;}
.y22b{bottom:911.026500px;}
.ya3{bottom:911.027600px;}
.ye6{bottom:911.027758px;}
.y4f{bottom:911.029016px;}
.y2c5{bottom:911.029076px;}
.y30b{bottom:911.029136px;}
.y22c{bottom:912.813000px;}
.y22a{bottom:912.814466px;}
.y193{bottom:915.959690px;}
.y395{bottom:921.569314px;}
.y445{bottom:921.570990px;}
.y396{bottom:921.571500px;}
.y3ee{bottom:921.572903px;}
.y49c{bottom:921.574842px;}
.y199{bottom:923.529321px;}
.ya1{bottom:924.718500px;}
.y6{bottom:924.973500px;}
.y341{bottom:926.420076px;}
.y296{bottom:926.670195px;}
.ya2{bottom:926.674500px;}
.ye5{bottom:926.674658px;}
.y4e{bottom:926.675916px;}
.y2c4{bottom:926.675976px;}
.y30a{bottom:926.676036px;}
.y229{bottom:927.185930px;}
.y394{bottom:933.559513px;}
.y444{bottom:933.562145px;}
.y3ed{bottom:933.564058px;}
.y49b{bottom:933.565041px;}
.y192{bottom:935.688000px;}
.y228{bottom:941.472394px;}
.y340{bottom:942.153053px;}
.y295{bottom:942.401977px;}
.y4d{bottom:942.407698px;}
.y2c3{bottom:942.407758px;}
.y309{bottom:942.407818px;}
.y393{bottom:945.464593px;}
.y443{bottom:945.467226px;}
.y3ec{bottom:945.469138px;}
.y49a{bottom:945.470122px;}
.y198{bottom:954.908003px;}
.y191{bottom:955.419359px;}
.y227{bottom:955.843859px;}
.y392{bottom:957.454792px;}
.y442{bottom:957.457424px;}
.y3eb{bottom:957.459337px;}
.y499{bottom:957.461277px;}
.y294{bottom:958.048877px;}
.ye4{bottom:958.054536px;}
.y4c{bottom:958.054598px;}
.y2c2{bottom:958.054658px;}
.y308{bottom:958.054718px;}
.y391{bottom:969.360829px;}
.y441{bottom:969.363461px;}
.y3ea{bottom:969.365374px;}
.y498{bottom:969.366357px;}
.y190{bottom:969.790823px;}
.y226{bottom:970.215323px;}
.y33f{bottom:973.531735px;}
.y293{bottom:973.781855px;}
.ye3{bottom:973.786318px;}
.y307{bottom:973.786500px;}
.y306{bottom:973.787417px;}
.y4b{bottom:973.787576px;}
.y2c1{bottom:973.787636px;}
.y390{bottom:981.351028px;}
.y440{bottom:981.353660px;}
.y3e9{bottom:981.355573px;}
.y497{bottom:981.356556px;}
.y18f{bottom:984.077287px;}
.y225{bottom:984.586787px;}
.y292{bottom:989.428755px;}
.ye2{bottom:989.433218px;}
.y305{bottom:989.434318px;}
.y4a{bottom:989.434476px;}
.y2c0{bottom:989.434536px;}
.y38f{bottom:993.341226px;}
.y43f{bottom:993.343859px;}
.y3e8{bottom:993.345772px;}
.y496{bottom:993.346755px;}
.y18e{bottom:998.448751px;}
.y224{bottom:998.873251px;}
.y3e{bottom:1003.719000px;}
.y33e{bottom:1004.911613px;}
.ye1{bottom:1005.158176px;}
.y291{bottom:1005.160537px;}
.y304{bottom:1005.166100px;}
.y49{bottom:1005.166258px;}
.y2bf{bottom:1005.166318px;}
.y38e{bottom:1005.247263px;}
.y43e{bottom:1005.248939px;}
.y3e7{bottom:1005.250852px;}
.y495{bottom:1005.252792px;}
.y18d{bottom:1012.820215px;}
.y223{bottom:1013.244715px;}
.y38d{bottom:1017.237462px;}
.y43d{bottom:1017.240094px;}
.y3e6{bottom:1017.242007px;}
.y494{bottom:1017.242990px;}
.y33d{bottom:1020.643395px;}
.ye0{bottom:1020.805076px;}
.y290{bottom:1020.807437px;}
.y303{bottom:1020.813000px;}
.y48{bottom:1020.813158px;}
.y2be{bottom:1020.813218px;}
.y18c{bottom:1027.106679px;}
.y222{bottom:1027.616179px;}
.y38c{bottom:1029.142543px;}
.y43c{bottom:1029.145175px;}
.y3e5{bottom:1029.147088px;}
.y493{bottom:1029.148071px;}
.y2bc{bottom:1034.503500px;}
.y33c{bottom:1036.290295px;}
.ydf{bottom:1036.536858px;}
.y301{bottom:1036.537905px;}
.y28f{bottom:1036.540415px;}
.y2bd{bottom:1036.545000px;}
.y47{bottom:1036.546136px;}
.y38b{bottom:1041.132741px;}
.y43b{bottom:1041.135374px;}
.y3e4{bottom:1041.137286px;}
.y492{bottom:1041.139226px;}
.y18b{bottom:1041.478143px;}
.y302{bottom:1041.817500px;}
.y221{bottom:1041.902643px;}
.y3d{bottom:1045.474500px;}
.yde{bottom:1052.183758px;}
.y300{bottom:1052.184805px;}
.y28e{bottom:1052.187315px;}
.y46{bottom:1052.193036px;}
.y38a{bottom:1053.123896px;}
.y43a{bottom:1053.125572px;}
.y3e3{bottom:1053.127485px;}
.y491{bottom:1053.129425px;}
.y18a{bottom:1055.849608px;}
.y220{bottom:1056.274108px;}
.y389{bottom:1065.028977px;}
.y439{bottom:1065.031609px;}
.y3e2{bottom:1065.033522px;}
.y490{bottom:1065.034505px;}
.y33b{bottom:1067.670173px;}
.y2ff{bottom:1067.916587px;}
.ydd{bottom:1067.916736px;}
.y28d{bottom:1067.919097px;}
.y45{bottom:1067.924818px;}
.y189{bottom:1070.136072px;}
.y21f{bottom:1070.645572px;}
.y388{bottom:1077.019176px;}
.y438{bottom:1077.021808px;}
.y3e1{bottom:1077.023721px;}
.y48f{bottom:1077.024704px;}
.y2fe{bottom:1083.563488px;}
.ydc{bottom:1083.563636px;}
.y28c{bottom:1083.565997px;}
.y44{bottom:1083.571718px;}
.y188{bottom:1084.507536px;}
.y21e{bottom:1084.932036px;}
.y3c{bottom:1087.312500px;}
.y387{bottom:1088.924256px;}
.y437{bottom:1088.926888px;}
.y3e0{bottom:1088.928801px;}
.y48e{bottom:1088.930741px;}
.y21d{bottom:1097.518500px;}
.y187{bottom:1098.879000px;}
.ydb{bottom:1099.295418px;}
.y2fd{bottom:1099.296465px;}
.y28b{bottom:1099.298975px;}
.y43{bottom:1099.303500px;}
.y386{bottom:1100.915411px;}
.y436{bottom:1100.917087px;}
.y3df{bottom:1100.919000px;}
.y48d{bottom:1100.920939px;}
.y48c{bottom:1103.386500px;}
.y2{bottom:1127.505000px;}
.y41{bottom:1128.630000px;}
.y48b{bottom:1128.633433px;}
.y197{bottom:1128.639630px;}
.y3de{bottom:1128.640866px;}
.y120{bottom:1128.641008px;}
.ya0{bottom:1128.642000px;}
.y49f{bottom:1128.642715px;}
.h4{height:21.014648px;}
.h9{height:23.521113px;}
.h19{height:26.462637px;}
.h21{height:26.702269px;}
.h1d{height:27.957376px;}
.h1a{height:31.452560px;}
.h10{height:31.524082px;}
.h1c{height:33.378779px;}
.ha{height:33.622910px;}
.hf{height:33.623438px;}
.h1f{height:34.015915px;}
.h20{height:34.303856px;}
.he{height:34.526473px;}
.h16{height:34.947744px;}
.h1e{height:36.568337px;}
.hb{height:36.775371px;}
.h8{height:37.122363px;}
.h3{height:37.826367px;}
.h7{height:38.959629px;}
.hc{height:42.029824px;}
.h11{height:42.402386px;}
.h13{height:42.409622px;}
.h14{height:42.412096px;}
.h12{height:42.416255px;}
.h17{height:42.416527px;}
.h15{height:42.444425px;}
.h18{height:42.446258px;}
.h1b{height:45.625634px;}
.h6{height:55.689609px;}
.h5{height:70.925098px;}
.hd{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x14{left:62.758950px;}
.x19{left:63.950090px;}
.x3c{left:65.395200px;}
.x22{left:67.351050px;}
.x47{left:69.307050px;}
.x91{left:72.114194px;}
.x16{left:74.323389px;}
.x87{left:75.429025px;}
.xb{left:79.007117px;}
.x7a{left:80.956798px;}
.x23{left:85.719600px;}
.x67{left:92.182650px;}
.x24{left:93.543300px;}
.x93{left:97.369453px;}
.x68{left:98.730600px;}
.x6c{left:104.683350px;}
.x2d{left:110.125950px;}
.x4a{left:114.547950px;}
.x2e{left:116.163750px;}
.x86{left:118.119182px;}
.x4b{left:120.500700px;}
.x27{left:126.878700px;}
.x2f{left:128.494350px;}
.x25{left:129.855000px;}
.x28{left:131.896050px;}
.x30{left:136.318050px;}
.x26{left:137.933850px;}
.x4c{left:144.651900px;}
.x8f{left:152.899079px;}
.x8a{left:156.300940px;}
.x8d{left:159.532565px;}
.x35{left:167.358000px;}
.x88{left:169.737193px;}
.x20{left:173.223563px;}
.x36{left:175.266000px;}
.x7c{left:185.469594px;}
.x9b{left:190.400956px;}
.xc{left:195.336000px;}
.xd{left:200.947500px;}
.x3{left:202.308000px;}
.x6d{left:206.475000px;}
.x4{left:208.347000px;}
.x31{left:216.765000px;}
.x32{left:218.892000px;}
.x90{left:220.590096px;}
.x6a{left:222.631384px;}
.x33{left:224.844000px;}
.x60{left:228.415500px;}
.x2b{left:236.325000px;}
.x2c{left:242.617500px;}
.x9e{left:244.655721px;}
.x34{left:253.672500px;}
.x9c{left:256.475683px;}
.x1b{left:258.180000px;}
.x89{left:260.558382px;}
.x94{left:264.640233px;}
.x1f{left:271.272530px;}
.x50{left:283.435500px;}
.x8c{left:284.879252px;}
.x1c{left:289.984500px;}
.x9d{left:293.382580px;}
.x1{left:300.701979px;}
.x51{left:301.719000px;}
.x15{left:302.995500px;}
.xe{left:306.650240px;}
.x52{left:313.369500px;}
.x8e{left:324.421947px;}
.x69{left:329.099167px;}
.x5b{left:331.059000px;}
.x5c{left:337.521000px;}
.x5{left:341.518500px;}
.x1a{left:342.624000px;}
.x7b{left:343.810608px;}
.x6{left:347.556000px;}
.xf{left:350.362500px;}
.x10{left:355.890000px;}
.x8b{left:361.499080px;}
.x92{left:373.319043px;}
.x29{left:394.835091px;}
.x4d{left:406.828500px;}
.x4e{left:412.780500px;}
.x45{left:422.391000px;}
.x4f{left:425.112000px;}
.x46{left:427.747500px;}
.x66{left:441.626979px;}
.x1e{left:444.311979px;}
.x17{left:459.888932px;}
.x7{left:465.930000px;}
.x2a{left:468.907500px;}
.x3e{left:470.863500px;}
.x8{left:471.969000px;}
.x11{left:476.560500px;}
.x21{left:477.831221px;}
.x6b{left:479.702974px;}
.x12{left:482.088000px;}
.x61{left:483.359282px;}
.x97{left:484.549487px;}
.x13{left:486.595500px;}
.x3f{left:489.147000px;}
.x77{left:490.764109px;}
.x62{left:495.689824px;}
.x40{left:500.116500px;}
.x38{left:503.859000px;}
.x9f{left:506.659304px;}
.x39{left:510.321000px;}
.x96{left:524.688009px;}
.x7d{left:528.939008px;}
.x84{left:532.433936px;}
.x83{left:534.815335px;}
.x72{left:542.466000px;}
.x99{left:548.334196px;}
.x18{left:549.519082px;}
.x53{left:555.987000px;}
.x73{left:562.025171px;}
.x7f{left:567.807040px;}
.x5d{left:579.543000px;}
.x9{left:581.668500px;}
.x5e{left:586.006500px;}
.xa{left:588.303000px;}
.x1d{left:589.796979px;}
.x70{left:594.681000px;}
.x41{left:596.296500px;}
.x71{left:601.228500px;}
.x42{left:602.248500px;}
.x95{left:603.943634px;}
.x5f{left:609.987000px;}
.x43{left:614.580000px;}
.x7e{left:615.853910px;}
.x98{left:619.341000px;}
.x9a{left:626.653520px;}
.x44{left:628.780500px;}
.x74{left:637.284036px;}
.x85{left:649.702040px;}
.x79{left:661.519516px;}
.x75{left:669.258085px;}
.x78{left:687.966699px;}
.x37{left:698.343744px;}
.x82{left:714.756304px;}
.x57{left:716.286000px;}
.x3d{left:719.433000px;}
.x58{left:721.644000px;}
.x3a{left:725.130000px;}
.x3b{left:730.233000px;}
.x59{left:732.699000px;}
.x64{left:736.525500px;}
.x63{left:740.430873px;}
.x65{left:742.393500px;}
.x5a{left:743.668500px;}
.x6e{left:778.620000px;}
.x80{left:779.811000px;}
.x81{left:784.998000px;}
.x54{left:792.481500px;}
.x6f{left:796.138500px;}
.x48{left:797.499000px;}
.x76{left:798.602048px;}
.x49{left:803.197500px;}
.x55{left:808.894500px;}
.x56{left:815.952000px;}
@media print{
.v3{vertical-align:-15.418667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.513214pt;}
.v5{vertical-align:2.418660pt;}
.v1{vertical-align:3.323006pt;}
.v6{vertical-align:8.769838pt;}
.v4{vertical-align:10.886094pt;}
.v7{vertical-align:12.407772pt;}
.v2{vertical-align:15.405563pt;}
.ls3{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000004pt;}
.ls0{letter-spacing:0.008747pt;}
.ls2d{letter-spacing:0.098614pt;}
.ls25{letter-spacing:0.344308pt;}
.ls2a{letter-spacing:0.395317pt;}
.ls5{letter-spacing:2.357867pt;}
.ls8{letter-spacing:2.547861pt;}
.ls6{letter-spacing:2.548928pt;}
.lsa{letter-spacing:2.549461pt;}
.ls4{letter-spacing:2.659200pt;}
.ls9{letter-spacing:2.660267pt;}
.lse{letter-spacing:2.664533pt;}
.lsb{letter-spacing:2.851861pt;}
.ls7{letter-spacing:2.857195pt;}
.ls2b{letter-spacing:2.949136pt;}
.ls2c{letter-spacing:4.876288pt;}
.ls2{letter-spacing:9.850920pt;}
.ls11{letter-spacing:9.899927pt;}
.ls1c{letter-spacing:10.451539pt;}
.ls1f{letter-spacing:10.455365pt;}
.ls26{letter-spacing:10.589261pt;}
.ls20{letter-spacing:10.749936pt;}
.ls21{letter-spacing:10.753762pt;}
.ls1d{letter-spacing:10.757587pt;}
.ls17{letter-spacing:10.805330pt;}
.ls1e{letter-spacing:10.814971pt;}
.ls13{letter-spacing:11.111382pt;}
.ls27{letter-spacing:11.600215pt;}
.ls23{letter-spacing:11.714984pt;}
.ls1b{letter-spacing:11.719235pt;}
.ls24{letter-spacing:11.897765pt;}
.ls22{letter-spacing:11.902016pt;}
.ls1a{letter-spacing:12.620388pt;}
.ls18{letter-spacing:12.926440pt;}
.lsc{letter-spacing:12.968947pt;}
.ls16{letter-spacing:16.327016pt;}
.ls15{letter-spacing:16.365272pt;}
.ls29{letter-spacing:16.521321pt;}
.ls14{letter-spacing:16.552304pt;}
.ls1{letter-spacing:16.922845pt;}
.ls19{letter-spacing:19.880617pt;}
.lsf{letter-spacing:21.878456pt;}
.ls12{letter-spacing:22.005977pt;}
.lsd{letter-spacing:22.027231pt;}
.ls10{letter-spacing:42.286163pt;}
.ws4{word-spacing:-71.730667pt;}
.wsd{word-spacing:-42.507200pt;}
.wsf{word-spacing:-38.256000pt;}
.ws1b{word-spacing:-34.004800pt;}
.ws1a{word-spacing:-21.933096pt;}
.ws3{word-spacing:-17.932667pt;}
.ws5{word-spacing:-16.502385pt;}
.wsb{word-spacing:-12.454610pt;}
.ws2{word-spacing:-11.965627pt;}
.ws18{word-spacing:-11.476944pt;}
.ws7{word-spacing:-11.209008pt;}
.wsc{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.ws19{word-spacing:-9.963406pt;}
.ws8{word-spacing:-9.564000pt;}
.wsa{word-spacing:-8.943403pt;}
.ws6{word-spacing:-8.501200pt;}
.ws13{word-spacing:-0.723038pt;}
.ws17{word-spacing:-0.719213pt;}
.ws16{word-spacing:-0.482026pt;}
.ws12{word-spacing:-0.478200pt;}
.ws15{word-spacing:-0.420816pt;}
.ws11{word-spacing:-0.416990pt;}
.ws10{word-spacing:-0.405514pt;}
.ws14{word-spacing:-0.401688pt;}
.ws9{word-spacing:0.000000pt;}
.wse{word-spacing:14.278168pt;}
.ws1{word-spacing:23.565696pt;}
._3{margin-left:-15.416526pt;}
._74{margin-left:-10.354754pt;}
._11{margin-left:-4.752176pt;}
._e{margin-left:-3.676048pt;}
._8{margin-left:-2.058173pt;}
._7{margin-left:-0.979354pt;}
._2{width:1.722463pt;}
._1{width:3.019861pt;}
._6{width:4.137837pt;}
._a{width:5.141606pt;}
._9{width:6.098006pt;}
._5{width:7.448443pt;}
._4{width:8.925125pt;}
._14{width:10.052953pt;}
._19{width:10.954105pt;}
._16{width:11.880762pt;}
._18{width:12.811496pt;}
._c{width:13.853096pt;}
._d{width:14.792506pt;}
._12{width:16.127232pt;}
._5c{width:17.167014pt;}
._10{width:18.060658pt;}
._17{width:19.008228pt;}
._f{width:19.931626pt;}
._6b{width:20.926295pt;}
._6c{width:22.180257pt;}
._6f{width:23.468225pt;}
._75{width:25.891136pt;}
._b{width:26.839046pt;}
._13{width:28.229032pt;}
._6e{width:29.132015pt;}
._15{width:30.362893pt;}
._6d{width:35.050147pt;}
._70{width:36.095443pt;}
._72{width:38.604130pt;}
._71{width:39.560530pt;}
._6a{width:41.869592pt;}
._73{width:48.768749pt;}
._34{width:93.224159pt;}
._1c{width:102.419057pt;}
._37{width:111.722770pt;}
._0{width:116.711845pt;}
._2b{width:121.686177pt;}
._23{width:128.011070pt;}
._5b{width:130.969487pt;}
._50{width:137.396394pt;}
._3c{width:147.869873pt;}
._67{width:159.077855pt;}
._25{width:160.009586pt;}
._63{width:162.461332pt;}
._64{width:165.021894pt;}
._29{width:168.272753pt;}
._5e{width:169.374508pt;}
._5f{width:170.292638pt;}
._46{width:173.543497pt;}
._3a{width:175.243737pt;}
._33{width:178.508198pt;}
._62{width:179.535143pt;}
._69{width:181.888275pt;}
._60{width:184.234606pt;}
._68{width:186.465321pt;}
._27{width:188.233570pt;}
._3e{width:192.178127pt;}
._48{width:193.946377pt;}
._65{width:196.496737pt;}
._66{width:199.104905pt;}
._53{width:199.999231pt;}
._2f{width:200.951366pt;}
._35{width:202.311558pt;}
._21{width:203.569735pt;}
._2d{width:208.908489pt;}
._44{width:213.907194pt;}
._56{width:217.851751pt;}
._1d{width:218.837890pt;}
._40{width:224.751325pt;}
._4c{width:225.774870pt;}
._4e{width:227.985182pt;}
._1f{width:229.311369pt;}
._54{width:238.968732pt;}
._31{width:244.953577pt;}
._61{width:250.061098pt;}
._42{width:254.984993pt;}
._5d{width:260.969838pt;}
._4a{width:270.627201pt;}
._3b{width:280.522598pt;}
._2e{width:307.556414pt;}
._2c{width:310.582841pt;}
._49{width:320.818286pt;}
._41{width:322.042458pt;}
._1e{width:330.577663pt;}
._47{width:337.684666pt;}
._26{width:342.989415pt;}
._52{width:350.402462pt;}
._38{width:366.078674pt;}
._24{width:372.845630pt;}
._43{width:375.940066pt;}
._3d{width:379.884623pt;}
._30{width:385.767454pt;}
._4f{width:386.855607pt;}
._57{width:389.371962pt;}
._28{width:393.452538pt;}
._32{width:394.404673pt;}
._59{width:396.104913pt;}
._58{width:399.097335pt;}
._39{width:402.225777pt;}
._22{width:407.292492pt;}
._51{width:411.747121pt;}
._3f{width:414.433500pt;}
._4d{width:416.235754pt;}
._45{width:423.512782pt;}
._36{width:447.112113pt;}
._4b{width:465.814753pt;}
._2a{width:468.943194pt;}
._1b{width:481.354946pt;}
._20{width:485.435522pt;}
._55{width:487.849863pt;}
._5a{width:503.288042pt;}
._1a{width:667.595836pt;}
.fs1{font-size:21.253333pt;}
.fs6{font-size:23.788267pt;}
.fs12{font-size:23.803200pt;}
.fsf{font-size:26.763200pt;}
.fsd{font-size:29.753600pt;}
.fsc{font-size:31.882133pt;}
.fs7{font-size:34.004800pt;}
.fsb{font-size:34.005333pt;}
.fs11{font-size:36.385067pt;}
.fs8{font-size:37.193067pt;}
.fs5{font-size:37.544000pt;}
.fs0{font-size:38.256000pt;}
.fs4{font-size:39.402133pt;}
.fs10{font-size:40.933867pt;}
.fs9{font-size:42.507200pt;}
.fse{font-size:45.482667pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fsa{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y42{bottom:42.160000pt;}
.yda{bottom:69.696087pt;}
.y254{bottom:69.697575pt;}
.y385{bottom:69.702681pt;}
.y9f{bottom:69.703272pt;}
.y33a{bottom:69.703378pt;}
.y2bb{bottom:69.770286pt;}
.y1de{bottom:69.771557pt;}
.y5{bottom:70.346667pt;}
.y2fc{bottom:70.528034pt;}
.y84{bottom:70.534287pt;}
.y249{bottom:73.099214pt;}
.y276{bottom:73.099463pt;}
.y285{bottom:73.099657pt;}
.y156{bottom:74.382476pt;}
.y3dd{bottom:75.296341pt;}
.y435{bottom:75.297960pt;}
.y11f{bottom:75.823541pt;}
.y384{bottom:80.360635pt;}
.y2ba{bottom:82.469365pt;}
.y1dd{bottom:82.470637pt;}
.y4{bottom:83.106667pt;}
.y204{bottom:83.603838pt;}
.yd9{bottom:83.680956pt;}
.y253{bottom:83.681381pt;}
.y9e{bottom:83.687078pt;}
.y339{bottom:83.687184pt;}
.y1c7{bottom:84.134289pt;}
.y2fb{bottom:84.512903pt;}
.y83{bottom:84.518093pt;}
.y434{bottom:85.804594pt;}
.y3dc{bottom:85.954295pt;}
.y433{bottom:85.955915pt;}
.y248{bottom:87.007570pt;}
.y275{bottom:87.007819pt;}
.y284{bottom:87.008013pt;}
.y11e{bottom:87.312913pt;}
.y155{bottom:88.366282pt;}
.y383{bottom:90.943779pt;}
.y3{bottom:93.893333pt;}
.y2b9{bottom:95.244000pt;}
.y1dc{bottom:95.245271pt;}
.y48a{bottom:96.534233pt;}
.y3db{bottom:96.537439pt;}
.y432{bottom:96.538209pt;}
.y203{bottom:97.512194pt;}
.yd8{bottom:97.589312pt;}
.y9d{bottom:97.595434pt;}
.y338{bottom:97.595540pt;}
.y1c6{bottom:98.118096pt;}
.y2fa{bottom:98.421259pt;}
.y82{bottom:98.427512pt;}
.y11d{bottom:98.726624pt;}
.y247{bottom:100.991376pt;}
.y274{bottom:100.991625pt;}
.y283{bottom:100.991819pt;}
.y382{bottom:101.601734pt;}
.y186{bottom:102.274451pt;}
.y154{bottom:102.274638pt;}
.y40{bottom:106.582787pt;}
.y489{bottom:107.192187pt;}
.y3da{bottom:107.195393pt;}
.y431{bottom:107.196163pt;}
.y1db{bottom:108.019906pt;}
.y202{bottom:109.681867pt;}
.y11c{bottom:110.141186pt;}
.y201{bottom:111.496000pt;}
.yd7{bottom:111.573118pt;}
.y252{bottom:111.573543pt;}
.y9c{bottom:111.579240pt;}
.y337{bottom:111.579346pt;}
.y1c5{bottom:112.026451pt;}
.y381{bottom:112.184028pt;}
.y2f9{bottom:112.405065pt;}
.y81{bottom:112.411318pt;}
.y246{bottom:114.899732pt;}
.y273{bottom:114.899981pt;}
.y282{bottom:114.900175pt;}
.y185{bottom:116.258258pt;}
.y153{bottom:116.258444pt;}
.y488{bottom:117.850141pt;}
.y3d9{bottom:117.853348pt;}
.y430{bottom:117.854968pt;}
.y3f{bottom:119.281867pt;}
.y1da{bottom:120.718985pt;}
.y11b{bottom:121.554897pt;}
.y380{bottom:122.841982pt;}
.y1ff{bottom:123.666133pt;}
.y21c{bottom:125.404356pt;}
.y200{bottom:125.404667pt;}
.y1fe{bottom:125.405365pt;}
.yd6{bottom:125.481474pt;}
.y9b{bottom:125.488658pt;}
.y336{bottom:125.488765pt;}
.y1c4{bottom:126.010258pt;}
.y2f8{bottom:126.313421pt;}
.y80{bottom:126.319674pt;}
.y151{bottom:128.428267pt;}
.y487{bottom:128.433285pt;}
.y3d8{bottom:128.435641pt;}
.y42f{bottom:128.437261pt;}
.y245{bottom:128.883538pt;}
.y281{bottom:128.883981pt;}
.y272{bottom:128.884850pt;}
.y152{bottom:130.166800pt;}
.y184{bottom:130.167676pt;}
.y150{bottom:130.168281pt;}
.y11a{bottom:132.968608pt;}
.y1d9{bottom:133.493620pt;}
.y37f{bottom:133.500787pt;}
.y486{bottom:139.091240pt;}
.y3d7{bottom:139.094446pt;}
.y42e{bottom:139.095216pt;}
.y21b{bottom:139.388162pt;}
.y1fd{bottom:139.389171pt;}
.yd5{bottom:139.466343pt;}
.y9a{bottom:139.472464pt;}
.y335{bottom:139.472571pt;}
.y1c3{bottom:139.919676pt;}
.y2f7{bottom:140.298289pt;}
.y7f{bottom:140.303480pt;}
.y3b{bottom:141.960636pt;}
.y244{bottom:142.792956pt;}
.y271{bottom:142.793205pt;}
.y280{bottom:142.793399pt;}
.y37e{bottom:144.083080pt;}
.y183{bottom:144.151482pt;}
.y14f{bottom:144.152087pt;}
.y119{bottom:144.383169pt;}
.y1d8{bottom:146.268255pt;}
.y485{bottom:149.673534pt;}
.y3d6{bottom:149.676740pt;}
.y42d{bottom:149.678360pt;}
.y21a{bottom:153.296518pt;}
.y1fc{bottom:153.297527pt;}
.yd4{bottom:153.374699pt;}
.y99{bottom:153.380820pt;}
.y334{bottom:153.380927pt;}
.y1c2{bottom:153.903482pt;}
.y2f6{bottom:154.282096pt;}
.y7e{bottom:154.288349pt;}
.y3a{bottom:154.735271pt;}
.y37d{bottom:154.741035pt;}
.y118{bottom:155.796880pt;}
.y243{bottom:156.776762pt;}
.y270{bottom:156.777012pt;}
.y27f{bottom:156.777205pt;}
.y182{bottom:158.059838pt;}
.y14e{bottom:158.061506pt;}
.y1d7{bottom:158.967334pt;}
.y484{bottom:160.331488pt;}
.y3d5{bottom:160.334694pt;}
.y42c{bottom:160.336314pt;}
.y37c{bottom:165.323329pt;}
.y1fa{bottom:165.542667pt;}
.y117{bottom:167.211441pt;}
.y219{bottom:167.280324pt;}
.y1fb{bottom:167.281333pt;}
.y1f9{bottom:167.284796pt;}
.yd3{bottom:167.358505pt;}
.y98{bottom:167.364626pt;}
.y333{bottom:167.364733pt;}
.y39{bottom:167.509905pt;}
.y1c1{bottom:167.811838pt;}
.y2f5{bottom:168.190451pt;}
.y7d{bottom:168.196705pt;}
.y242{bottom:170.685118pt;}
.y26f{bottom:170.685367pt;}
.y27e{bottom:170.685561pt;}
.y483{bottom:170.914632pt;}
.y3d4{bottom:170.916988pt;}
.y42b{bottom:170.918608pt;}
.y1d6{bottom:171.741969pt;}
.y181{bottom:172.043644pt;}
.y14d{bottom:172.045312pt;}
.y37b{bottom:175.982133pt;}
.y116{bottom:178.700813pt;}
.y38{bottom:180.208985pt;}
.y218{bottom:181.189742pt;}
.y1f8{bottom:181.193152pt;}
.yd2{bottom:181.266861pt;}
.y332{bottom:181.273089pt;}
.y97{bottom:181.274045pt;}
.y482{bottom:181.572586pt;}
.y3d3{bottom:181.575793pt;}
.y42a{bottom:181.576562pt;}
.y1c0{bottom:181.795644pt;}
.y2f4{bottom:182.174258pt;}
.y7c{bottom:182.180511pt;}
.y17f{bottom:184.214667pt;}
.y1d5{bottom:184.516604pt;}
.y241{bottom:184.668924pt;}
.y27d{bottom:184.669367pt;}
.y26e{bottom:184.670236pt;}
.y180{bottom:185.952000pt;}
.y17e{bottom:185.956013pt;}
.y37a{bottom:186.640088pt;}
.y115{bottom:190.114524pt;}
.y481{bottom:192.230541pt;}
.y3d2{bottom:192.233747pt;}
.y429{bottom:192.235367pt;}
.y37{bottom:192.983619pt;}
.y1be{bottom:193.965333pt;}
.y217{bottom:195.173549pt;}
.y1f7{bottom:195.176958pt;}
.yd1{bottom:195.250667pt;}
.yd0{bottom:195.251785pt;}
.y96{bottom:195.257851pt;}
.y331{bottom:195.257957pt;}
.y1bf{bottom:195.704000pt;}
.y1bd{bottom:195.705365pt;}
.y2f3{bottom:196.083676pt;}
.y7b{bottom:196.088867pt;}
.y379{bottom:197.222381pt;}
.y1d4{bottom:197.291239pt;}
.y240{bottom:198.578343pt;}
.y26d{bottom:198.578592pt;}
.y27c{bottom:198.578786pt;}
.y14c{bottom:199.937474pt;}
.y17d{bottom:199.939819pt;}
.y114{bottom:201.529086pt;}
.y480{bottom:202.813685pt;}
.y3d1{bottom:202.816041pt;}
.y428{bottom:202.817661pt;}
.y36{bottom:205.758254pt;}
.y378{bottom:207.881186pt;}
.y216{bottom:209.081904pt;}
.y1f6{bottom:209.085314pt;}
.ycf{bottom:209.160141pt;}
.y95{bottom:209.166207pt;}
.y330{bottom:209.166313pt;}
.y1bc{bottom:209.689171pt;}
.y1d3{bottom:209.990318pt;}
.y2f2{bottom:210.067482pt;}
.y7a{bottom:210.073735pt;}
.y23f{bottom:212.562149pt;}
.y26c{bottom:212.562398pt;}
.y27b{bottom:212.562592pt;}
.y113{bottom:212.942797pt;}
.y47f{bottom:213.471639pt;}
.y3d0{bottom:213.473995pt;}
.y427{bottom:213.475615pt;}
.y14b{bottom:213.922343pt;}
.y17c{bottom:213.923625pt;}
.y35{bottom:218.457333pt;}
.y377{bottom:218.463480pt;}
.y1d2{bottom:222.764953pt;}
.y215{bottom:223.065711pt;}
.y1f5{bottom:223.070183pt;}
.yce{bottom:223.145009pt;}
.y94{bottom:223.150013pt;}
.y32f{bottom:223.150119pt;}
.y1bb{bottom:223.672977pt;}
.y2f1{bottom:223.975838pt;}
.y79{bottom:223.982091pt;}
.y47e{bottom:224.053933pt;}
.y3cf{bottom:224.057139pt;}
.y426{bottom:224.057909pt;}
.y112{bottom:224.357358pt;}
.y23e{bottom:226.470505pt;}
.y26b{bottom:226.470754pt;}
.y27a{bottom:226.470948pt;}
.y14a{bottom:227.830699pt;}
.y17b{bottom:227.831981pt;}
.y376{bottom:229.121434pt;}
.y47d{bottom:234.711887pt;}
.y3ce{bottom:234.715094pt;}
.y425{bottom:234.716713pt;}
.y1d1{bottom:235.539587pt;}
.y111{bottom:235.771069pt;}
.y1b9{bottom:235.842667pt;}
.y214{bottom:237.050579pt;}
.ycd{bottom:237.053365pt;}
.y1f4{bottom:237.053989pt;}
.y32e{bottom:237.058475pt;}
.y93{bottom:237.059431pt;}
.y1ba{bottom:237.581333pt;}
.y1b8{bottom:237.583516pt;}
.y2f0{bottom:237.959644pt;}
.y78{bottom:237.965897pt;}
.y375{bottom:239.703728pt;}
.y23d{bottom:240.454311pt;}
.y279{bottom:240.454754pt;}
.y26a{bottom:240.455623pt;}
.y149{bottom:241.814505pt;}
.y17a{bottom:241.816850pt;}
.y47c{bottom:245.370692pt;}
.y3cd{bottom:245.373048pt;}
.y424{bottom:245.374668pt;}
.y1cf{bottom:246.652000pt;}
.y110{bottom:247.184780pt;}
.y1d0{bottom:248.238667pt;}
.y1ce{bottom:248.240032pt;}
.y374{bottom:250.362532pt;}
.y213{bottom:250.958935pt;}
.y1f3{bottom:250.962345pt;}
.ycc{bottom:251.037171pt;}
.y92{bottom:251.043238pt;}
.y1b7{bottom:251.567322pt;}
.y2ef{bottom:251.868000pt;}
.y2ee{bottom:251.870486pt;}
.y77{bottom:251.874253pt;}
.y23c{bottom:254.362667pt;}
.y269{bottom:254.363979pt;}
.y23b{bottom:254.364173pt;}
.y148{bottom:255.722861pt;}
.y47b{bottom:255.952986pt;}
.y3cc{bottom:255.956192pt;}
.y423{bottom:255.956962pt;}
.y10f{bottom:258.599341pt;}
.y1cc{bottom:259.426667pt;}
.y1cb{bottom:261.014318pt;}
.y1cd{bottom:261.014667pt;}
.y373{bottom:261.020487pt;}
.y212{bottom:264.942741pt;}
.ycb{bottom:264.945527pt;}
.y1f2{bottom:264.947214pt;}
.y91{bottom:264.951593pt;}
.y32d{bottom:264.951700pt;}
.y33{bottom:265.324956pt;}
.y1b6{bottom:265.475678pt;}
.y2ed{bottom:265.854292pt;}
.y76{bottom:265.859122pt;}
.y47a{bottom:266.610940pt;}
.y3cb{bottom:266.614146pt;}
.y422{bottom:266.614916pt;}
.y146{bottom:267.893333pt;}
.y251{bottom:268.346473pt;}
.y268{bottom:268.347785pt;}
.y23a{bottom:268.347979pt;}
.y147{bottom:269.706667pt;}
.y145{bottom:269.707838pt;}
.y179{bottom:269.709012pt;}
.y10e{bottom:270.088713pt;}
.y372{bottom:271.602781pt;}
.y1ca{bottom:273.788953pt;}
.y479{bottom:277.193234pt;}
.y3ca{bottom:277.196440pt;}
.y421{bottom:277.198060pt;}
.y211{bottom:278.851097pt;}
.y1f1{bottom:278.855570pt;}
.yca{bottom:278.929333pt;}
.yc8{bottom:278.930204pt;}
.y90{bottom:278.935399pt;}
.y32{bottom:279.308762pt;}
.y1b5{bottom:279.460547pt;}
.y2ec{bottom:279.762647pt;}
.y75{bottom:279.767478pt;}
.y10d{bottom:281.502424pt;}
.y250{bottom:282.254829pt;}
.y267{bottom:282.256141pt;}
.y239{bottom:282.256334pt;}
.y371{bottom:282.260735pt;}
.yc9{bottom:283.616000pt;}
.y144{bottom:283.616194pt;}
.y178{bottom:283.617367pt;}
.y1c9{bottom:286.488032pt;}
.y478{bottom:287.852038pt;}
.y3c9{bottom:287.854394pt;}
.y420{bottom:287.856014pt;}
.y210{bottom:292.835966pt;}
.y1f0{bottom:292.839376pt;}
.yc7{bottom:292.839623pt;}
.y8f{bottom:292.843755pt;}
.y370{bottom:292.843879pt;}
.y10c{bottom:292.916986pt;}
.y32c{bottom:293.146726pt;}
.y31{bottom:293.217118pt;}
.y1b4{bottom:293.368903pt;}
.y2eb{bottom:293.747516pt;}
.y74{bottom:293.751284pt;}
.y142{bottom:295.785333pt;}
.y24f{bottom:296.238635pt;}
.y238{bottom:296.240141pt;}
.y266{bottom:296.241009pt;}
.y143{bottom:297.600000pt;}
.y141{bottom:297.601009pt;}
.y177{bottom:297.602236pt;}
.y477{bottom:298.434332pt;}
.y3c8{bottom:298.437538pt;}
.y41f{bottom:298.438308pt;}
.y1c8{bottom:299.262667pt;}
.y36f{bottom:303.501833pt;}
.y10b{bottom:304.330697pt;}
.y20f{bottom:306.744322pt;}
.y1ef{bottom:306.747732pt;}
.yc6{bottom:306.823429pt;}
.y8e{bottom:306.828624pt;}
.y32b{bottom:307.130532pt;}
.y30{bottom:307.200924pt;}
.y1b3{bottom:307.352709pt;}
.y2ea{bottom:307.655872pt;}
.y73{bottom:307.659640pt;}
.y476{bottom:309.092287pt;}
.y3c7{bottom:309.095493pt;}
.y41e{bottom:309.097113pt;}
.y24e{bottom:310.146991pt;}
.y237{bottom:310.148496pt;}
.y265{bottom:310.149365pt;}
.y140{bottom:311.509365pt;}
.y176{bottom:311.510592pt;}
.y36e{bottom:314.159788pt;}
.y10a{bottom:315.745258pt;}
.y475{bottom:319.750241pt;}
.y3c6{bottom:319.753447pt;}
.y41d{bottom:319.755067pt;}
.y20e{bottom:320.728128pt;}
.y1ee{bottom:320.731538pt;}
.yc5{bottom:320.731785pt;}
.y8d{bottom:320.736980pt;}
.y32a{bottom:321.038888pt;}
.y2f{bottom:321.110343pt;}
.y1b2{bottom:321.261065pt;}
.y2e9{bottom:321.639678pt;}
.y72{bottom:321.643446pt;}
.y24d{bottom:324.131859pt;}
.y264{bottom:324.133171pt;}
.y236{bottom:324.133365pt;}
.y36d{bottom:324.742082pt;}
.y13f{bottom:325.493171pt;}
.y175{bottom:325.494398pt;}
.y109{bottom:327.158969pt;}
.y474{bottom:330.333385pt;}
.y3c5{bottom:330.335741pt;}
.y41c{bottom:330.337361pt;}
.y20d{bottom:334.636484pt;}
.y1ed{bottom:334.640956pt;}
.yc4{bottom:334.715591pt;}
.y8c{bottom:334.720786pt;}
.y329{bottom:335.023756pt;}
.y2e{bottom:335.094149pt;}
.y1b1{bottom:335.244871pt;}
.y36c{bottom:335.400886pt;}
.y2e8{bottom:335.548034pt;}
.y71{bottom:335.552865pt;}
.y24c{bottom:338.040215pt;}
.y263{bottom:338.041527pt;}
.y235{bottom:338.041721pt;}
.y108{bottom:338.572680pt;}
.y13e{bottom:339.401527pt;}
.y174{bottom:339.402754pt;}
.y473{bottom:340.991339pt;}
.y3c4{bottom:340.994546pt;}
.y41b{bottom:340.995315pt;}
.y36b{bottom:345.983180pt;}
.y20c{bottom:348.621353pt;}
.y1ec{bottom:348.624762pt;}
.y8b{bottom:348.629142pt;}
.y328{bottom:348.932112pt;}
.y2d{bottom:349.002505pt;}
.y1b0{bottom:349.154289pt;}
.y70{bottom:349.536671pt;}
.y107{bottom:350.062902pt;}
.y472{bottom:351.573633pt;}
.y3c3{bottom:351.576839pt;}
.y41a{bottom:351.578459pt;}
.y24b{bottom:352.024021pt;}
.y262{bottom:352.025333pt;}
.y234{bottom:352.025527pt;}
.y13d{bottom:353.385333pt;}
.y173{bottom:353.387623pt;}
.y13c{bottom:353.390023pt;}
.y36a{bottom:356.641134pt;}
.y261{bottom:356.712000pt;}
.y106{bottom:361.476613pt;}
.y471{bottom:362.232438pt;}
.y3c2{bottom:362.234794pt;}
.y419{bottom:362.236414pt;}
.y20b{bottom:362.529708pt;}
.y1eb{bottom:362.533118pt;}
.yc3{bottom:362.608816pt;}
.y34{bottom:362.986311pt;}
.y1af{bottom:363.138096pt;}
.y2e7{bottom:363.441259pt;}
.y6f{bottom:363.445026pt;}
.y24a{bottom:366.007827pt;}
.y277{bottom:366.009139pt;}
.y233{bottom:366.009333pt;}
.y369{bottom:367.224278pt;}
.y172{bottom:367.295979pt;}
.y13b{bottom:367.298379pt;}
.y470{bottom:372.890392pt;}
.y105{bottom:372.891174pt;}
.y3c1{bottom:372.892748pt;}
.y418{bottom:372.894368pt;}
.y20a{bottom:376.513514pt;}
.y1ea{bottom:376.516924pt;}
.yc2{bottom:376.517171pt;}
.y8a{bottom:376.522367pt;}
.y327{bottom:376.824274pt;}
.y2c{bottom:376.894667pt;}
.y2e6{bottom:377.425065pt;}
.y6e{bottom:377.428833pt;}
.y368{bottom:377.882233pt;}
.y171{bottom:381.279785pt;}
.y13a{bottom:381.282185pt;}
.y46f{bottom:383.472686pt;}
.y3c0{bottom:383.475892pt;}
.y417{bottom:383.476662pt;}
.y104{bottom:384.304886pt;}
.y367{bottom:388.540187pt;}
.y209{bottom:390.421870pt;}
.y1e9{bottom:390.426343pt;}
.yc1{bottom:390.500977pt;}
.y1ae{bottom:391.030258pt;}
.y2e5{bottom:391.333421pt;}
.y6d{bottom:391.338251pt;}
.y46e{bottom:394.130640pt;}
.y3bf{bottom:394.133847pt;}
.y416{bottom:394.135466pt;}
.y170{bottom:395.188141pt;}
.y139{bottom:395.191604pt;}
.y103{bottom:395.718597pt;}
.y366{bottom:399.122481pt;}
.y208{bottom:404.405676pt;}
.y1e8{bottom:404.410149pt;}
.yc0{bottom:404.411001pt;}
.y46d{bottom:404.713784pt;}
.y3be{bottom:404.716140pt;}
.y415{bottom:404.717760pt;}
.y1ad{bottom:404.939676pt;}
.y326{bottom:405.019300pt;}
.y89{bottom:405.171157pt;}
.y2e4{bottom:405.318289pt;}
.y6c{bottom:405.322057pt;}
.y102{bottom:407.133158pt;}
.y16f{bottom:409.173009pt;}
.y138{bottom:409.175410pt;}
.y365{bottom:409.781285pt;}
.y46c{bottom:415.371739pt;}
.y3bd{bottom:415.374945pt;}
.y414{bottom:415.375715pt;}
.y207{bottom:418.315095pt;}
.ybf{bottom:418.394807pt;}
.y101{bottom:418.546869pt;}
.y325{bottom:419.004169pt;}
.y88{bottom:419.079513pt;}
.y2e3{bottom:419.226645pt;}
.y6b{bottom:419.230413pt;}
.y364{bottom:420.363579pt;}
.y2e2{bottom:421.948169pt;}
.y16e{bottom:423.081365pt;}
.y137{bottom:423.083766pt;}
.y46b{bottom:426.029693pt;}
.y3bc{bottom:426.032899pt;}
.y413{bottom:426.034519pt;}
.y2b{bottom:429.810288pt;}
.y100{bottom:429.961430pt;}
.y363{bottom:431.021534pt;}
.y206{bottom:432.298901pt;}
.y1e7{bottom:432.302311pt;}
.ybe{bottom:432.303163pt;}
.y1ac{bottom:432.831838pt;}
.y324{bottom:432.912525pt;}
.y87{bottom:433.063319pt;}
.y2e1{bottom:433.210451pt;}
.y6a{bottom:433.214219pt;}
.y46a{bottom:436.611987pt;}
.y3bb{bottom:436.615193pt;}
.y412{bottom:436.616813pt;}
.y16d{bottom:437.065171pt;}
.y136{bottom:437.067572pt;}
.yff{bottom:441.450802pt;}
.y362{bottom:441.679488pt;}
.y2a{bottom:442.584923pt;}
.y205{bottom:446.207257pt;}
.y1e6{bottom:446.210667pt;}
.ybd{bottom:446.288032pt;}
.y323{bottom:446.896331pt;}
.y86{bottom:446.971674pt;}
.y2e0{bottom:447.118807pt;}
.y69{bottom:447.123638pt;}
.y469{bottom:447.270791pt;}
.y3ba{bottom:447.273147pt;}
.y411{bottom:447.274767pt;}
.y135{bottom:450.976990pt;}
.y361{bottom:452.262632pt;}
.yfe{bottom:452.864513pt;}
.y29{bottom:455.359557pt;}
.y468{bottom:457.853085pt;}
.y3b9{bottom:457.856291pt;}
.y410{bottom:457.857061pt;}
.ybc{bottom:460.196388pt;}
.y1ab{bottom:460.724000pt;}
.y1aa{bottom:460.729130pt;}
.y322{bottom:460.804687pt;}
.y2b0{bottom:461.103421pt;}
.y2df{bottom:461.103676pt;}
.y68{bottom:461.107444pt;}
.y360{bottom:462.920586pt;}
.yfd{bottom:464.279074pt;}
.y16c{bottom:464.957333pt;}
.y16b{bottom:464.958311pt;}
.y134{bottom:464.960796pt;}
.y28a{bottom:467.982149pt;}
.y28{bottom:468.058637pt;}
.y467{bottom:468.511040pt;}
.y3b8{bottom:468.514246pt;}
.y40f{bottom:468.515866pt;}
.y35f{bottom:473.502880pt;}
.ybb{bottom:474.180194pt;}
.y1a9{bottom:474.712936pt;}
.y321{bottom:474.788493pt;}
.y85{bottom:474.864899pt;}
.y2af{bottom:475.011777pt;}
.y2de{bottom:475.012032pt;}
.y67{bottom:475.015800pt;}
.yfc{bottom:475.692786pt;}
.y16a{bottom:478.866667pt;}
.y133{bottom:478.869152pt;}
.y466{bottom:479.093333pt;}
.y465{bottom:479.096459pt;}
.y3b7{bottom:479.096540pt;}
.y40e{bottom:479.098159pt;}
.y27{bottom:480.833271pt;}
.y289{bottom:481.890505pt;}
.y35e{bottom:484.161685pt;}
.yb9{bottom:486.349333pt;}
.yfb{bottom:487.106497pt;}
.yba{bottom:488.164000pt;}
.yb8{bottom:488.164924pt;}
.y320{bottom:488.697911pt;}
.y2ae{bottom:488.995583pt;}
.y2dd{bottom:488.995838pt;}
.y66{bottom:488.999606pt;}
.y464{bottom:489.754414pt;}
.y3b6{bottom:489.754494pt;}
.y40d{bottom:489.756114pt;}
.y132{bottom:492.852958pt;}
.y169{bottom:492.853205pt;}
.y26{bottom:493.607906pt;}
.y35d{bottom:494.743978pt;}
.y288{bottom:495.874311pt;}
.yfa{bottom:498.521058pt;}
.y463{bottom:500.412368pt;}
.y3b5{bottom:500.413299pt;}
.y40c{bottom:500.414068pt;}
.yb7{bottom:502.074343pt;}
.y31f{bottom:502.681717pt;}
.y2dc{bottom:502.904194pt;}
.y2ad{bottom:502.905002pt;}
.y65{bottom:502.907962pt;}
.y1e5{bottom:504.567747pt;}
.y35c{bottom:505.401933pt;}
.y25{bottom:506.306985pt;}
.y168{bottom:506.761561pt;}
.y287{bottom:509.782667pt;}
.y462{bottom:510.995512pt;}
.y3b4{bottom:510.995592pt;}
.y40b{bottom:510.997212pt;}
.yf9{bottom:516.057333pt;}
.yb6{bottom:516.058149pt;}
.y35b{bottom:516.059887pt;}
.y31e{bottom:516.590073pt;}
.y2ac{bottom:516.887745pt;}
.y2db{bottom:516.888000pt;}
.y64{bottom:516.892830pt;}
.y2da{bottom:516.892884pt;}
.y1e4{bottom:517.342382pt;}
.y24{bottom:519.081620pt;}
.y167{bottom:520.745367pt;}
.y131{bottom:520.746183pt;}
.y461{bottom:521.653466pt;}
.y3b3{bottom:521.653547pt;}
.y40a{bottom:521.655167pt;}
.y286{bottom:523.766667pt;}
.y35a{bottom:526.643031pt;}
.yb5{bottom:529.966505pt;}
.y1e3{bottom:530.117016pt;}
.y31d{bottom:530.573879pt;}
.y2ab{bottom:530.796101pt;}
.y63{bottom:530.801186pt;}
.y2d9{bottom:530.801240pt;}
.y23{bottom:531.856255pt;}
.y460{bottom:532.235760pt;}
.y3b2{bottom:532.236691pt;}
.y409{bottom:532.237460pt;}
.yf8{bottom:533.594318pt;}
.y130{bottom:534.654539pt;}
.y166{bottom:534.654786pt;}
.y359{bottom:537.300986pt;}
.y1e2{bottom:542.891651pt;}
.y45f{bottom:542.893715pt;}
.y3b1{bottom:542.894645pt;}
.y408{bottom:542.895415pt;}
.yb4{bottom:543.950311pt;}
.y31c{bottom:544.483298pt;}
.y22{bottom:544.555334pt;}
.y2aa{bottom:544.779907pt;}
.y62{bottom:544.784992pt;}
.y2d8{bottom:544.785046pt;}
.yf7{bottom:546.368953pt;}
.y358{bottom:547.883279pt;}
.y12f{bottom:548.638345pt;}
.y165{bottom:548.638592pt;}
.y45e{bottom:553.552519pt;}
.y3b0{bottom:553.552600pt;}
.y407{bottom:553.554219pt;}
.y2b8{bottom:553.702001pt;}
.y1e1{bottom:555.590730pt;}
.y21{bottom:557.329969pt;}
.yb3{bottom:557.858861pt;}
.y31b{bottom:558.467104pt;}
.y357{bottom:558.541234pt;}
.y2a9{bottom:558.688263pt;}
.y61{bottom:558.693348pt;}
.y2d7{bottom:558.693401pt;}
.yf6{bottom:559.143587pt;}
.y12e{bottom:562.546701pt;}
.y164{bottom:562.546948pt;}
.y45d{bottom:564.134813pt;}
.y3af{bottom:564.134893pt;}
.y406{bottom:564.136513pt;}
.y2b7{bottom:566.401080pt;}
.y1a{bottom:566.627039pt;}
.y1e0{bottom:568.365365pt;}
.y356{bottom:569.200038pt;}
.y20{bottom:570.104604pt;}
.yf5{bottom:571.842667pt;}
.yb2{bottom:571.845943pt;}
.y31a{bottom:572.375460pt;}
.y2a8{bottom:572.673132pt;}
.y60{bottom:572.678217pt;}
.y2d6{bottom:572.678270pt;}
.y45c{bottom:574.792767pt;}
.y3ae{bottom:574.793698pt;}
.y405{bottom:574.794468pt;}
.y163{bottom:576.530754pt;}
.y12d{bottom:576.531570pt;}
.y19{bottom:578.041600pt;}
.y2b6{bottom:579.175715pt;}
.y355{bottom:579.782332pt;}
.y1df{bottom:581.140000pt;}
.y1f{bottom:582.879239pt;}
.y45b{bottom:585.375911pt;}
.y3ad{bottom:585.375992pt;}
.y404{bottom:585.377612pt;}
.yb1{bottom:585.754298pt;}
.y319{bottom:586.359266pt;}
.y2a7{bottom:586.581488pt;}
.y5f{bottom:586.586573pt;}
.y2d5{bottom:586.586626pt;}
.y18{bottom:589.455311pt;}
.y12c{bottom:590.439925pt;}
.y162{bottom:590.440173pt;}
.y354{bottom:590.440287pt;}
.y2b5{bottom:591.950350pt;}
.y1e{bottom:595.578318pt;}
.y45a{bottom:596.033866pt;}
.y3ac{bottom:596.033946pt;}
.y403{bottom:596.035566pt;}
.yb0{bottom:599.738105pt;}
.y318{bottom:600.267622pt;}
.y2a6{bottom:600.565294pt;}
.y5e{bottom:600.570379pt;}
.y2d4{bottom:600.570432pt;}
.y17{bottom:600.944683pt;}
.y353{bottom:601.022580pt;}
.y12b{bottom:604.423732pt;}
.y161{bottom:604.423979pt;}
.y2b4{bottom:604.649429pt;}
.y459{bottom:606.616159pt;}
.y3ab{bottom:606.616240pt;}
.y402{bottom:606.617860pt;}
.y1d{bottom:608.352953pt;}
.y352{bottom:611.681385pt;}
.y1a8{bottom:611.681761pt;}
.y16{bottom:612.359244pt;}
.yaf{bottom:613.646460pt;}
.y317{bottom:614.252491pt;}
.y2a5{bottom:614.473650pt;}
.yf4{bottom:614.478679pt;}
.y5d{bottom:614.478735pt;}
.y2d3{bottom:614.478788pt;}
.y458{bottom:617.274114pt;}
.y3aa{bottom:617.275044pt;}
.y401{bottom:617.275814pt;}
.y2b3{bottom:617.424064pt;}
.y12a{bottom:618.332087pt;}
.y160{bottom:618.332334pt;}
.y1c{bottom:621.127587pt;}
.y351{bottom:622.263679pt;}
.y15{bottom:623.772956pt;}
.y1a7{bottom:625.666630pt;}
.yae{bottom:627.631329pt;}
.y457{bottom:627.932918pt;}
.y3a9{bottom:627.932999pt;}
.y400{bottom:627.934619pt;}
.y316{bottom:628.160846pt;}
.y2a4{bottom:628.458518pt;}
.yf3{bottom:628.462486pt;}
.y5c{bottom:628.463604pt;}
.y2d2{bottom:628.463657pt;}
.y2b2{bottom:630.198699pt;}
.y15f{bottom:632.316141pt;}
.y129{bottom:632.316956pt;}
.y350{bottom:632.921633pt;}
.y1b{bottom:633.826667pt;}
.y14{bottom:635.186667pt;}
.y456{bottom:638.515212pt;}
.y3a8{bottom:638.515293pt;}
.y3ff{bottom:638.516912pt;}
.y1a6{bottom:639.574986pt;}
.yad{bottom:641.539685pt;}
.y315{bottom:642.144652pt;}
.y2a3{bottom:642.442324pt;}
.yf2{bottom:642.446292pt;}
.y5b{bottom:642.447410pt;}
.y2d1{bottom:642.447463pt;}
.y2b1{bottom:642.973333pt;}
.y34f{bottom:643.580438pt;}
.y278{bottom:645.622607pt;}
.y15e{bottom:646.224496pt;}
.y128{bottom:646.225312pt;}
.y455{bottom:649.173167pt;}
.y3a7{bottom:649.173247pt;}
.y3fe{bottom:649.174867pt;}
.y1a5{bottom:653.558792pt;}
.y34e{bottom:654.162731pt;}
.y2a2{bottom:656.350680pt;}
.yf1{bottom:656.354647pt;}
.y5a{bottom:656.355766pt;}
.y2d0{bottom:656.355819pt;}
.y260{bottom:658.397241pt;}
.y454{bottom:659.755460pt;}
.y3a6{bottom:659.756391pt;}
.y3fd{bottom:659.757161pt;}
.y13{bottom:659.905333pt;}
.y127{bottom:660.209118pt;}
.y15d{bottom:660.209365pt;}
.y34d{bottom:664.820686pt;}
.y1a4{bottom:667.467148pt;}
.yac{bottom:669.431847pt;}
.y314{bottom:670.037877pt;}
.y2a1{bottom:670.334486pt;}
.yf0{bottom:670.339516pt;}
.y59{bottom:670.339572pt;}
.y2cf{bottom:670.339625pt;}
.y453{bottom:670.414265pt;}
.y3a5{bottom:670.414345pt;}
.y3fc{bottom:670.415965pt;}
.y25f{bottom:671.096321pt;}
.y126{bottom:674.192924pt;}
.y15c{bottom:674.193171pt;}
.y34c{bottom:675.402980pt;}
.y452{bottom:681.072219pt;}
.y3a4{bottom:681.072300pt;}
.y3fb{bottom:681.073920pt;}
.y1a3{bottom:681.452016pt;}
.y25e{bottom:683.870955pt;}
.y2a0{bottom:684.243905pt;}
.yef{bottom:684.247872pt;}
.y2ce{bottom:684.247981pt;}
.y58{bottom:684.248990pt;}
.y34b{bottom:686.061784pt;}
.y15b{bottom:688.101527pt;}
.y125{bottom:688.102343pt;}
.y451{bottom:691.654513pt;}
.y3a3{bottom:691.655444pt;}
.y3fa{bottom:691.656213pt;}
.y1a2{bottom:695.435823pt;}
.y25d{bottom:696.645590pt;}
.y34a{bottom:696.719739pt;}
.y29f{bottom:698.227711pt;}
.yab{bottom:698.231538pt;}
.yee{bottom:698.231678pt;}
.y57{bottom:698.232796pt;}
.y2cd{bottom:698.232850pt;}
.y313{bottom:698.232903pt;}
.y15a{bottom:702.078860pt;}
.y124{bottom:702.086149pt;}
.y450{bottom:702.313318pt;}
.y3a2{bottom:702.313398pt;}
.y3f9{bottom:702.315018pt;}
.y12{bottom:703.824000pt;}
.y349{bottom:707.302032pt;}
.y11{bottom:707.602667pt;}
.y1a1{bottom:709.344178pt;}
.y25c{bottom:709.344669pt;}
.y29e{bottom:712.136067pt;}
.yed{bottom:712.140034pt;}
.yaa{bottom:712.140956pt;}
.y56{bottom:712.141152pt;}
.y2cc{bottom:712.141205pt;}
.y312{bottom:712.141259pt;}
.y44f{bottom:712.895612pt;}
.y3a1{bottom:712.895692pt;}
.y3f8{bottom:712.897312pt;}
.y10{bottom:715.313333pt;}
.y159{bottom:715.987216pt;}
.y123{bottom:715.994505pt;}
.y348{bottom:717.959987pt;}
.yf{bottom:719.093333pt;}
.y25b{bottom:722.119304pt;}
.y1a0{bottom:723.327985pt;}
.y44e{bottom:723.553566pt;}
.y3a0{bottom:723.553646pt;}
.y3f7{bottom:723.555266pt;}
.y29d{bottom:726.119873pt;}
.ya9{bottom:726.124762pt;}
.yec{bottom:726.124903pt;}
.y55{bottom:726.124958pt;}
.y2cb{bottom:726.125012pt;}
.y311{bottom:726.125065pt;}
.ye{bottom:726.728000pt;}
.y347{bottom:728.543131pt;}
.y158{bottom:729.972084pt;}
.y122{bottom:729.978311pt;}
.yd{bottom:730.506667pt;}
.y44d{bottom:734.135860pt;}
.y39f{bottom:734.136790pt;}
.y3f6{bottom:734.137560pt;}
.y232{bottom:734.892636pt;}
.y25a{bottom:734.893939pt;}
.y19f{bottom:737.237403pt;}
.y346{bottom:739.201085pt;}
.y29c{bottom:740.029292pt;}
.ya8{bottom:740.033118pt;}
.yeb{bottom:740.033259pt;}
.y54{bottom:740.033314pt;}
.y2ca{bottom:740.033367pt;}
.y310{bottom:740.033421pt;}
.y157{bottom:743.880440pt;}
.y121{bottom:743.886667pt;}
.y44c{bottom:744.794664pt;}
.y39e{bottom:744.794745pt;}
.y3f5{bottom:744.796365pt;}
.y231{bottom:747.667271pt;}
.y259{bottom:747.668574pt;}
.yc{bottom:748.649333pt;}
.ya{bottom:748.650835pt;}
.y345{bottom:749.859040pt;}
.y19e{bottom:751.221209pt;}
.y29b{bottom:754.013098pt;}
.ya7{bottom:754.016924pt;}
.yea{bottom:754.017065pt;}
.y53{bottom:754.018183pt;}
.y2c9{bottom:754.018236pt;}
.y30f{bottom:754.018289pt;}
.yb{bottom:754.846667pt;}
.y44b{bottom:755.452619pt;}
.y39d{bottom:755.452699pt;}
.y3f4{bottom:755.454319pt;}
.y230{bottom:760.366350pt;}
.y258{bottom:760.367653pt;}
.y344{bottom:760.441333pt;}
.y19d{bottom:765.129565pt;}
.y8{bottom:765.884000pt;}
.y44a{bottom:766.034912pt;}
.y39c{bottom:766.034993pt;}
.y3f3{bottom:766.036613pt;}
.y29a{bottom:767.921454pt;}
.ye9{bottom:767.925421pt;}
.ya6{bottom:767.926343pt;}
.y52{bottom:767.926539pt;}
.y2c8{bottom:767.926592pt;}
.y30e{bottom:767.926645pt;}
.y343{bottom:771.098667pt;}
.y9{bottom:772.157333pt;}
.y22f{bottom:773.140985pt;}
.y257{bottom:773.142288pt;}
.y449{bottom:776.692867pt;}
.y39b{bottom:776.693797pt;}
.y3f2{bottom:776.694567pt;}
.y19c{bottom:779.113371pt;}
.y196{bottom:779.944408pt;}
.y299{bottom:781.905260pt;}
.ya5{bottom:781.910149pt;}
.ye8{bottom:781.910289pt;}
.y51{bottom:781.910345pt;}
.y2c7{bottom:781.910398pt;}
.y30d{bottom:781.910451pt;}
.y22e{bottom:785.915619pt;}
.y256{bottom:785.916923pt;}
.y448{bottom:787.276011pt;}
.y39a{bottom:787.276091pt;}
.y3f1{bottom:787.277711pt;}
.y195{bottom:791.358119pt;}
.y19b{bottom:793.022790pt;}
.y342{bottom:795.516900pt;}
.y298{bottom:795.814678pt;}
.ya4{bottom:795.818505pt;}
.ye7{bottom:795.818645pt;}
.y50{bottom:795.818701pt;}
.y2c6{bottom:795.818754pt;}
.y30c{bottom:795.818807pt;}
.y447{bottom:797.933965pt;}
.y399{bottom:797.934046pt;}
.y3f0{bottom:797.935665pt;}
.y49e{bottom:797.936539pt;}
.y22d{bottom:798.614699pt;}
.y255{bottom:798.616002pt;}
.y7{bottom:799.219748pt;}
.y194{bottom:802.771830pt;}
.y19a{bottom:807.006596pt;}
.y446{bottom:808.591920pt;}
.y398{bottom:808.592000pt;}
.y397{bottom:808.592373pt;}
.y3ef{bottom:808.593620pt;}
.y49d{bottom:808.595344pt;}
.y297{bottom:809.798484pt;}
.y22b{bottom:809.801333pt;}
.ya3{bottom:809.802311pt;}
.ye6{bottom:809.802451pt;}
.y4f{bottom:809.803570pt;}
.y2c5{bottom:809.803623pt;}
.y30b{bottom:809.803676pt;}
.y22c{bottom:811.389333pt;}
.y22a{bottom:811.390637pt;}
.y193{bottom:814.186391pt;}
.y395{bottom:819.172724pt;}
.y445{bottom:819.174213pt;}
.y396{bottom:819.174667pt;}
.y3ee{bottom:819.175914pt;}
.y49c{bottom:819.177638pt;}
.y199{bottom:820.914952pt;}
.ya1{bottom:821.972000pt;}
.y6{bottom:822.198667pt;}
.y341{bottom:823.484512pt;}
.y296{bottom:823.706840pt;}
.ya2{bottom:823.710667pt;}
.ye5{bottom:823.710807pt;}
.y4e{bottom:823.711925pt;}
.y2c4{bottom:823.711979pt;}
.y30a{bottom:823.712032pt;}
.y229{bottom:824.165271pt;}
.y394{bottom:829.830678pt;}
.y444{bottom:829.833018pt;}
.y3ed{bottom:829.834718pt;}
.y49b{bottom:829.835592pt;}
.y192{bottom:831.722667pt;}
.y228{bottom:836.864351pt;}
.y340{bottom:837.469381pt;}
.y295{bottom:837.690646pt;}
.y4d{bottom:837.695732pt;}
.y2c3{bottom:837.695785pt;}
.y309{bottom:837.695838pt;}
.y393{bottom:840.412972pt;}
.y443{bottom:840.415312pt;}
.y3ec{bottom:840.417012pt;}
.y49a{bottom:840.417886pt;}
.y198{bottom:848.807114pt;}
.y191{bottom:849.261652pt;}
.y227{bottom:849.638985pt;}
.y392{bottom:851.070926pt;}
.y442{bottom:851.073266pt;}
.y3eb{bottom:851.074966pt;}
.y499{bottom:851.076690pt;}
.y294{bottom:851.599002pt;}
.ye4{bottom:851.604032pt;}
.y4c{bottom:851.604087pt;}
.y2c2{bottom:851.604141pt;}
.y308{bottom:851.604194pt;}
.y391{bottom:861.654070pt;}
.y441{bottom:861.656410pt;}
.y3ea{bottom:861.658110pt;}
.y498{bottom:861.658984pt;}
.y190{bottom:862.036287pt;}
.y226{bottom:862.413620pt;}
.y33f{bottom:865.361543pt;}
.y293{bottom:865.583871pt;}
.ye3{bottom:865.587838pt;}
.y307{bottom:865.588000pt;}
.y306{bottom:865.588816pt;}
.y4b{bottom:865.588956pt;}
.y2c1{bottom:865.589009pt;}
.y390{bottom:872.312025pt;}
.y440{bottom:872.314365pt;}
.y3e9{bottom:872.316065pt;}
.y497{bottom:872.316939pt;}
.y18f{bottom:874.735366pt;}
.y225{bottom:875.188255pt;}
.y292{bottom:879.492227pt;}
.ye2{bottom:879.496194pt;}
.y305{bottom:879.497171pt;}
.y4a{bottom:879.497312pt;}
.y2c0{bottom:879.497365pt;}
.y38f{bottom:882.969979pt;}
.y43f{bottom:882.972319pt;}
.y3e8{bottom:882.974019pt;}
.y496{bottom:882.974893pt;}
.y18e{bottom:887.510001pt;}
.y224{bottom:887.887334pt;}
.y3e{bottom:892.194667pt;}
.y33e{bottom:893.254767pt;}
.ye1{bottom:893.473934pt;}
.y291{bottom:893.476033pt;}
.y304{bottom:893.480977pt;}
.y49{bottom:893.481118pt;}
.y2bf{bottom:893.481171pt;}
.y38e{bottom:893.553123pt;}
.y43e{bottom:893.554613pt;}
.y3e7{bottom:893.556313pt;}
.y495{bottom:893.558037pt;}
.y18d{bottom:900.284636pt;}
.y223{bottom:900.661969pt;}
.y38d{bottom:904.211077pt;}
.y43d{bottom:904.213417pt;}
.y3e6{bottom:904.215118pt;}
.y494{bottom:904.215991pt;}
.y33d{bottom:907.238573pt;}
.ye0{bottom:907.382290pt;}
.y290{bottom:907.384389pt;}
.y303{bottom:907.389333pt;}
.y48{bottom:907.389474pt;}
.y2be{bottom:907.389527pt;}
.y18c{bottom:912.983715pt;}
.y222{bottom:913.436604pt;}
.y38c{bottom:914.793371pt;}
.y43c{bottom:914.795711pt;}
.y3e5{bottom:914.797411pt;}
.y493{bottom:914.798285pt;}
.y2bc{bottom:919.558667pt;}
.y33c{bottom:921.146929pt;}
.ydf{bottom:921.366096pt;}
.y301{bottom:921.367027pt;}
.y28f{bottom:921.369257pt;}
.y2bd{bottom:921.373333pt;}
.y47{bottom:921.374343pt;}
.y38b{bottom:925.451326pt;}
.y43b{bottom:925.453665pt;}
.y3e4{bottom:925.455366pt;}
.y492{bottom:925.457090pt;}
.y18b{bottom:925.758350pt;}
.y302{bottom:926.060000pt;}
.y221{bottom:926.135683pt;}
.y3d{bottom:929.310667pt;}
.yde{bottom:935.274452pt;}
.y300{bottom:935.275383pt;}
.y28e{bottom:935.277613pt;}
.y46{bottom:935.282699pt;}
.y38a{bottom:936.110130pt;}
.y43a{bottom:936.111620pt;}
.y3e3{bottom:936.113320pt;}
.y491{bottom:936.115044pt;}
.y18a{bottom:938.532985pt;}
.y220{bottom:938.910318pt;}
.y389{bottom:946.692424pt;}
.y439{bottom:946.694764pt;}
.y3e2{bottom:946.696464pt;}
.y490{bottom:946.697338pt;}
.y33b{bottom:949.040154pt;}
.y2ff{bottom:949.259189pt;}
.ydd{bottom:949.259320pt;}
.y28d{bottom:949.261419pt;}
.y45{bottom:949.266505pt;}
.y189{bottom:951.232064pt;}
.y21f{bottom:951.684953pt;}
.y388{bottom:957.350378pt;}
.y438{bottom:957.352718pt;}
.y3e1{bottom:957.354418pt;}
.y48f{bottom:957.355292pt;}
.y2fe{bottom:963.167545pt;}
.ydc{bottom:963.167676pt;}
.y28c{bottom:963.169775pt;}
.y44{bottom:963.174861pt;}
.y188{bottom:964.006699pt;}
.y21e{bottom:964.384032pt;}
.y3c{bottom:966.500000pt;}
.y387{bottom:967.932672pt;}
.y437{bottom:967.935012pt;}
.y3e0{bottom:967.936712pt;}
.y48e{bottom:967.938436pt;}
.y21d{bottom:975.572000pt;}
.y187{bottom:976.781333pt;}
.ydb{bottom:977.151482pt;}
.y2fd{bottom:977.152413pt;}
.y28b{bottom:977.154644pt;}
.y43{bottom:977.158667pt;}
.y386{bottom:978.591477pt;}
.y436{bottom:978.592966pt;}
.y3df{bottom:978.594667pt;}
.y48d{bottom:978.596391pt;}
.y48c{bottom:980.788000pt;}
.y2{bottom:1002.226667pt;}
.y41{bottom:1003.226667pt;}
.y48b{bottom:1003.229719pt;}
.y197{bottom:1003.235227pt;}
.y3de{bottom:1003.236325pt;}
.y120{bottom:1003.236452pt;}
.ya0{bottom:1003.237333pt;}
.y49f{bottom:1003.237969pt;}
.h4{height:18.679688pt;}
.h9{height:20.907656pt;}
.h19{height:23.522344pt;}
.h21{height:23.735350pt;}
.h1d{height:24.851001pt;}
.h1a{height:27.957831pt;}
.h10{height:28.021406pt;}
.h1c{height:29.670026pt;}
.ha{height:29.887031pt;}
.hf{height:29.887500pt;}
.h1f{height:30.236369pt;}
.h20{height:30.492317pt;}
.he{height:30.690198pt;}
.h16{height:31.064661pt;}
.h1e{height:32.505188pt;}
.hb{height:32.689219pt;}
.h8{height:32.997656pt;}
.h3{height:33.623437pt;}
.h7{height:34.630781pt;}
.hc{height:37.359844pt;}
.h11{height:37.691010pt;}
.h13{height:37.697442pt;}
.h14{height:37.699641pt;}
.h12{height:37.703338pt;}
.h17{height:37.703580pt;}
.h15{height:37.728378pt;}
.h18{height:37.730008pt;}
.h1b{height:40.556120pt;}
.h6{height:49.501875pt;}
.h5{height:63.044531pt;}
.hd{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x14{left:55.785733pt;}
.x19{left:56.844525pt;}
.x3c{left:58.129067pt;}
.x22{left:59.867600pt;}
.x47{left:61.606267pt;}
.x91{left:64.101506pt;}
.x16{left:66.065235pt;}
.x87{left:67.048022pt;}
.xb{left:70.228549pt;}
.x7a{left:71.961598pt;}
.x23{left:76.195200pt;}
.x67{left:81.940133pt;}
.x24{left:83.149600pt;}
.x93{left:86.550625pt;}
.x68{left:87.760533pt;}
.x6c{left:93.051867pt;}
.x2d{left:97.889733pt;}
.x4a{left:101.820400pt;}
.x2e{left:103.256667pt;}
.x86{left:104.994828pt;}
.x4b{left:107.111733pt;}
.x27{left:112.781067pt;}
.x2f{left:114.217200pt;}
.x25{left:115.426667pt;}
.x28{left:117.240933pt;}
.x30{left:121.171600pt;}
.x26{left:122.607867pt;}
.x4c{left:128.579467pt;}
.x8f{left:135.910292pt;}
.x8a{left:138.934169pt;}
.x8d{left:141.806725pt;}
.x35{left:148.762667pt;}
.x88{left:150.877505pt;}
.x20{left:153.976500pt;}
.x36{left:155.792000pt;}
.x7c{left:164.861861pt;}
.x9b{left:169.245294pt;}
.xc{left:173.632000pt;}
.xd{left:178.620000pt;}
.x3{left:179.829333pt;}
.x6d{left:183.533333pt;}
.x4{left:185.197333pt;}
.x31{left:192.680000pt;}
.x32{left:194.570667pt;}
.x90{left:196.080086pt;}
.x6a{left:197.894563pt;}
.x33{left:199.861333pt;}
.x60{left:203.036000pt;}
.x2b{left:210.066667pt;}
.x2c{left:215.660000pt;}
.x9e{left:217.471752pt;}
.x34{left:225.486667pt;}
.x9c{left:227.978385pt;}
.x1b{left:229.493333pt;}
.x89{left:231.607451pt;}
.x94{left:235.235763pt;}
.x1f{left:241.131138pt;}
.x50{left:251.942667pt;}
.x8c{left:253.226002pt;}
.x1c{left:257.764000pt;}
.x9d{left:260.784516pt;}
.x1{left:267.290648pt;}
.x51{left:268.194667pt;}
.x15{left:269.329333pt;}
.xe{left:272.577991pt;}
.x52{left:278.550667pt;}
.x8e{left:288.375064pt;}
.x69{left:292.532593pt;}
.x5b{left:294.274667pt;}
.x5c{left:300.018667pt;}
.x5{left:303.572000pt;}
.x1a{left:304.554667pt;}
.x7b{left:305.609429pt;}
.x6{left:308.938667pt;}
.xf{left:311.433333pt;}
.x10{left:316.346667pt;}
.x8b{left:321.332516pt;}
.x92{left:331.839149pt;}
.x29{left:350.964525pt;}
.x4d{left:361.625333pt;}
.x4e{left:366.916000pt;}
.x45{left:375.458667pt;}
.x4f{left:377.877333pt;}
.x46{left:380.220000pt;}
.x66{left:392.557314pt;}
.x1e{left:394.943981pt;}
.x17{left:408.790162pt;}
.x7{left:414.160000pt;}
.x2a{left:416.806667pt;}
.x3e{left:418.545333pt;}
.x8{left:419.528000pt;}
.x11{left:423.609333pt;}
.x21{left:424.738863pt;}
.x6b{left:426.402644pt;}
.x12{left:428.522667pt;}
.x61{left:429.652695pt;}
.x97{left:430.710655pt;}
.x13{left:432.529333pt;}
.x3f{left:434.797333pt;}
.x77{left:436.234763pt;}
.x62{left:440.613177pt;}
.x40{left:444.548000pt;}
.x38{left:447.874667pt;}
.x9f{left:450.363826pt;}
.x39{left:453.618667pt;}
.x96{left:466.389342pt;}
.x7d{left:470.168007pt;}
.x84{left:473.274610pt;}
.x83{left:475.391409pt;}
.x72{left:482.192000pt;}
.x99{left:487.408174pt;}
.x18{left:488.461407pt;}
.x53{left:494.210667pt;}
.x73{left:499.577930pt;}
.x7f{left:504.717369pt;}
.x5d{left:515.149333pt;}
.x9{left:517.038667pt;}
.x5e{left:520.894667pt;}
.xa{left:522.936000pt;}
.x1d{left:524.263981pt;}
.x70{left:528.605333pt;}
.x41{left:530.041333pt;}
.x71{left:534.425333pt;}
.x42{left:535.332000pt;}
.x95{left:536.838786pt;}
.x5f{left:542.210667pt;}
.x43{left:546.293333pt;}
.x7e{left:547.425698pt;}
.x98{left:550.525333pt;}
.x9a{left:557.025351pt;}
.x44{left:558.916000pt;}
.x74{left:566.474699pt;}
.x85{left:577.512924pt;}
.x79{left:588.017348pt;}
.x75{left:594.896075pt;}
.x78{left:611.525955pt;}
.x37{left:620.749995pt;}
.x82{left:635.338937pt;}
.x57{left:636.698667pt;}
.x3d{left:639.496000pt;}
.x58{left:641.461333pt;}
.x3a{left:644.560000pt;}
.x3b{left:649.096000pt;}
.x59{left:651.288000pt;}
.x64{left:654.689333pt;}
.x63{left:658.160776pt;}
.x65{left:659.905333pt;}
.x5a{left:661.038667pt;}
.x6e{left:692.106667pt;}
.x80{left:693.165333pt;}
.x81{left:697.776000pt;}
.x54{left:704.428000pt;}
.x6f{left:707.678667pt;}
.x48{left:708.888000pt;}
.x76{left:709.868487pt;}
.x49{left:713.953333pt;}
.x55{left:719.017333pt;}
.x56{left:725.290667pt;}
}




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