
    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_ac7e0a8de5e2b88693d0982a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.833984;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_e6865f41cdbb12e67476faa7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.833984;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_9ec5b908ef3fa6b1430dd27d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.695312;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_d46f50cd73e4b5b393476eca.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_150f0bd4c40901b267494f33.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_b9b4cd45b01df45731fa25a9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130859;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_86e1ee5d96a723fbc56889b4.woff')format("woff");}.ff7{font-family:ff7;line-height:0.962891;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_787eacbd27021c7e9513d4b1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962891;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_70e33d5ba3ee43b867ca576a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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_65e3de851138c246a0b4b56e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_17781e76f1ccb822854c7ea0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.943359;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_b296c2a332993b658762ce15.woff')format("woff");}.ffc{font-family:ffc;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c8f050fa39e5aeaea7ea8ca3.woff')format("woff");}.ffd{font-family:ffd;line-height:1.097168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0fc967a326c3717fc643222f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_840ec4c16355508aa78a8082.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_5c472cf1c6b0d578e1431365.woff')format("woff");}.ff10{font-family:ff10;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9a99ddbbd99a1d6c9fa91af7.woff')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2a478941ce9e85a178d1b05b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_aa17396d617d4e471f535dfd.woff')format("woff");}.ff13{font-family:ff13;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bb78c7dc744cac6e28d85061.woff')format("woff");}.ff14{font-family:ff14;line-height:1.040039;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:ff15;src:url('chunks/assets/font_53d4911a1d1994fdf68ae395.woff')format("woff");}.ff15{font-family:ff15;line-height:1.435059;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:ff16;src:url('chunks/assets/font_d1ed32b615f9ea850fef6186.woff')format("woff");}.ff16{font-family:ff16;line-height:1.130859;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:ff17;src:url('chunks/assets/font_9bbe582e46c9186e3d6628cf.woff')format("woff");}.ff17{font-family:ff17;line-height:0.932129;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:ff18;src:url('chunks/assets/font_9a4be83342af97487524da01.woff')format("woff");}.ff18{font-family:ff18;line-height:0.949219;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:ff19;src:url('chunks/assets/font_0413e848d1b35a857edbd17e.woff')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.910156;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:ff1b;src:url('chunks/assets/font_374f0ccd55acf102910fc16c.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.763672;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:ff1c;src:url('chunks/assets/font_6468f577059edc15abfb2889.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.942383;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.000000,-0.112065,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.112065,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.112065,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.000000,-0.135964,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.135964,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.135964,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.354793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354793,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.429727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429727,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.459682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459682,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.557713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557713,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-82.124638px;}
.v8{vertical-align:-34.457039px;}
.v1{vertical-align:-30.240000px;}
.vd{vertical-align:-29.221517px;}
.v5{vertical-align:-20.067389px;}
.v6{vertical-align:-9.360000px;}
.v7{vertical-align:-6.879232px;}
.ve{vertical-align:-1.765467px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.282931px;}
.vf{vertical-align:6.209572px;}
.va{vertical-align:9.162163px;}
.vc{vertical-align:13.728025px;}
.v4{vertical-align:23.760000px;}
.v3{vertical-align:27.480000px;}
.v2{vertical-align:30.240000px;}
.ls9c{letter-spacing:-3.780000px;}
.ls76{letter-spacing:-3.477487px;}
.ls7c{letter-spacing:-2.716709px;}
.ls35{letter-spacing:-1.620000px;}
.ls6a{letter-spacing:-1.458000px;}
.ls8b{letter-spacing:-1.416000px;}
.ls8a{letter-spacing:-1.260000px;}
.ls89{letter-spacing:-1.080000px;}
.ls88{letter-spacing:-1.062000px;}
.ls8c{letter-spacing:-0.996000px;}
.ls2d{letter-spacing:-0.900000px;}
.ls67{letter-spacing:-0.756000px;}
.ls21{letter-spacing:-0.750000px;}
.ls34{letter-spacing:-0.738000px;}
.ls13{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.684000px;}
.ls61{letter-spacing:-0.618000px;}
.ls56{letter-spacing:-0.428400px;}
.ls1e{letter-spacing:-0.378600px;}
.lsf{letter-spacing:-0.369600px;}
.lse{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.350400px;}
.ls69{letter-spacing:-0.348600px;}
.ls36{letter-spacing:-0.341400px;}
.ls30{letter-spacing:-0.322800px;}
.ls7{letter-spacing:-0.318000px;}
.ls7a{letter-spacing:-0.282000px;}
.ls75{letter-spacing:-0.252908px;}
.ls66{letter-spacing:-0.238800px;}
.ls4{letter-spacing:-0.237600px;}
.ls39{letter-spacing:-0.216000px;}
.ls7b{letter-spacing:-0.197579px;}
.ls74{letter-spacing:-0.183772px;}
.ls8{letter-spacing:-0.180000px;}
.ls41{letter-spacing:-0.161400px;}
.ls71{letter-spacing:-0.154800px;}
.ls38{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.093000px;}
.ls5{letter-spacing:-0.091200px;}
.ls31{letter-spacing:-0.037440px;}
.ls3e{letter-spacing:-0.036000px;}
.ls22{letter-spacing:-0.028080px;}
.ls9{letter-spacing:-0.018720px;}
.ls23{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls97{letter-spacing:0.013440px;}
.ls78{letter-spacing:0.018000px;}
.ls72{letter-spacing:0.019692px;}
.lsc{letter-spacing:0.028080px;}
.ls11{letter-spacing:0.037440px;}
.ls57{letter-spacing:0.053280px;}
.ls68{letter-spacing:0.069000px;}
.ls3a{letter-spacing:0.073440px;}
.lsa3{letter-spacing:0.106560px;}
.ls27{letter-spacing:0.115920px;}
.ls95{letter-spacing:0.125280px;}
.ls3f{letter-spacing:0.129600px;}
.lsa4{letter-spacing:0.134640px;}
.ls37{letter-spacing:0.144000px;}
.ls92{letter-spacing:0.157440px;}
.ls90{letter-spacing:0.161280px;}
.ls94{letter-spacing:0.172080px;}
.ls49{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.181440px;}
.ls10{letter-spacing:0.208080px;}
.ls0{letter-spacing:0.216000px;}
.ls98{letter-spacing:0.217440px;}
.ls1d{letter-spacing:0.252720px;}
.ls45{letter-spacing:0.256200px;}
.ls4f{letter-spacing:0.259920px;}
.ls79{letter-spacing:0.261600px;}
.ls5d{letter-spacing:0.291600px;}
.ls2{letter-spacing:0.314400px;}
.ls62{letter-spacing:0.321600px;}
.ls96{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.338400px;}
.ls93{letter-spacing:0.341280px;}
.lsd{letter-spacing:0.341400px;}
.ls20{letter-spacing:0.350400px;}
.ls9d{letter-spacing:0.350640px;}
.ls9a{letter-spacing:0.354720px;}
.ls6{letter-spacing:0.360000px;}
.ls91{letter-spacing:0.369360px;}
.ls29{letter-spacing:0.369600px;}
.ls32{letter-spacing:0.371400px;}
.ls16{letter-spacing:0.378600px;}
.ls8f{letter-spacing:0.378720px;}
.ls9e{letter-spacing:0.480000px;}
.lsa6{letter-spacing:0.494640px;}
.ls25{letter-spacing:0.504000px;}
.lsa2{letter-spacing:0.513360px;}
.ls65{letter-spacing:0.522720px;}
.ls2f{letter-spacing:0.540000px;}
.ls3c{letter-spacing:0.720000px;}
.lsa1{letter-spacing:0.757440px;}
.ls80{letter-spacing:0.795512px;}
.ls81{letter-spacing:0.856390px;}
.ls50{letter-spacing:0.900000px;}
.ls51{letter-spacing:0.978000px;}
.ls4d{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.980000px;}
.ls60{letter-spacing:2.340000px;}
.ls4b{letter-spacing:2.700000px;}
.ls99{letter-spacing:4.140000px;}
.ls8e{letter-spacing:4.260000px;}
.ls40{letter-spacing:5.580000px;}
.ls5a{letter-spacing:6.300000px;}
.ls18{letter-spacing:7.740000px;}
.ls33{letter-spacing:8.460000px;}
.ls43{letter-spacing:9.180000px;}
.ls54{letter-spacing:10.620000px;}
.ls77{letter-spacing:10.800000px;}
.ls55{letter-spacing:10.980000px;}
.ls1a{letter-spacing:12.060000px;}
.ls17{letter-spacing:12.780000px;}
.ls15{letter-spacing:13.500000px;}
.ls47{letter-spacing:14.220000px;}
.ls4a{letter-spacing:14.940000px;}
.ls12{letter-spacing:15.660000px;}
.ls4c{letter-spacing:16.380000px;}
.ls52{letter-spacing:17.100000px;}
.ls9b{letter-spacing:17.820000px;}
.ls5b{letter-spacing:18.540000px;}
.ls64{letter-spacing:20.700000px;}
.lsa5{letter-spacing:21.221280px;}
.lsa0{letter-spacing:21.420000px;}
.ls5c{letter-spacing:22.140000px;}
.ls14{letter-spacing:22.860000px;}
.ls2a{letter-spacing:25.020000px;}
.ls53{letter-spacing:25.740000px;}
.ls26{letter-spacing:26.460000px;}
.ls3d{letter-spacing:28.620000px;}
.ls5e{letter-spacing:30.060000px;}
.ls48{letter-spacing:30.780000px;}
.ls5f{letter-spacing:31.500000px;}
.ls59{letter-spacing:32.940000px;}
.ls28{letter-spacing:35.100000px;}
.ls85{letter-spacing:36.820822px;}
.ls8d{letter-spacing:37.236000px;}
.ls9f{letter-spacing:37.260000px;}
.ls7e{letter-spacing:39.420000px;}
.ls70{letter-spacing:40.140000px;}
.ls73{letter-spacing:41.580000px;}
.ls58{letter-spacing:45.900000px;}
.ls6e{letter-spacing:50.940000px;}
.ls2b{letter-spacing:51.660000px;}
.ls7d{letter-spacing:56.700000px;}
.ls42{letter-spacing:59.580000px;}
.ls83{letter-spacing:68.309391px;}
.ls6b{letter-spacing:79.020000px;}
.ls7f{letter-spacing:79.587729px;}
.ls4e{letter-spacing:81.180000px;}
.ls63{letter-spacing:83.861280px;}
.ls46{letter-spacing:85.500000px;}
.ls87{letter-spacing:88.256779px;}
.ls82{letter-spacing:88.262867px;}
.ls86{letter-spacing:88.478985px;}
.ls6d{letter-spacing:99.900000px;}
.ls6c{letter-spacing:100.620000px;}
.ls6f{letter-spacing:108.540000px;}
.ls24{letter-spacing:125.621280px;}
.ls44{letter-spacing:142.865280px;}
.ls3b{letter-spacing:164.477280px;}
.ls84{letter-spacing:184.891068px;}
.ls1b{letter-spacing:184.980000px;}
.lsb{letter-spacing:189.180000px;}
.ls19{letter-spacing:247.500000px;}
.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;}
}
.ws2{word-spacing:-167.760000px;}
.ws4{word-spacing:-84.002400px;}
.ws1e{word-spacing:-66.611400px;}
.ws33{word-spacing:-66.309000px;}
.ws1d{word-spacing:-66.240000px;}
.ws32{word-spacing:-66.202560px;}
.ws2f{word-spacing:-66.001200px;}
.ws34{word-spacing:-65.891400px;}
.ws30{word-spacing:-65.484000px;}
.ws0{word-spacing:-27.000000px;}
.ws6{word-spacing:-22.407840px;}
.ws5{word-spacing:-22.316640px;}
.ws12{word-spacing:-21.438600px;}
.ws19{word-spacing:-21.429600px;}
.ws7{word-spacing:-21.420000px;}
.ws15{word-spacing:-21.410400px;}
.wsc{word-spacing:-21.401400px;}
.ws2e{word-spacing:-21.381600px;}
.ws48{word-spacing:-21.351600px;}
.ws40{word-spacing:-21.321600px;}
.ws36{word-spacing:-21.312720px;}
.ws27{word-spacing:-21.189600px;}
.wsf{word-spacing:-21.097440px;}
.ws11{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws18{word-spacing:-21.050640px;}
.ws8{word-spacing:-21.041280px;}
.ws17{word-spacing:-21.031920px;}
.ws26{word-spacing:-21.024000px;}
.ws1c{word-spacing:-21.022560px;}
.ws1a{word-spacing:-20.967000px;}
.ws38{word-spacing:-20.905200px;}
.ws28{word-spacing:-20.898600px;}
.ws37{word-spacing:-20.880000px;}
.ws41{word-spacing:-20.778000px;}
.ws1b{word-spacing:-20.737200px;}
.ws20{word-spacing:-20.718600px;}
.ws14{word-spacing:-20.709600px;}
.ws10{word-spacing:-20.700000px;}
.ws4f{word-spacing:-20.690400px;}
.ws13{word-spacing:-20.681400px;}
.ws2d{word-spacing:-20.442000px;}
.wsb{word-spacing:-20.376000px;}
.ws50{word-spacing:-20.370000px;}
.ws1f{word-spacing:-20.322000px;}
.ws16{word-spacing:-20.310000px;}
.ws47{word-spacing:-20.064000px;}
.ws45{word-spacing:-19.998000px;}
.ws46{word-spacing:-19.644000px;}
.ws35{word-spacing:-19.602000px;}
.ws24{word-spacing:-18.720000px;}
.ws25{word-spacing:-18.216000px;}
.ws21{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.000000px;}
.ws22{word-spacing:-17.856000px;}
.ws23{word-spacing:-17.784000px;}
.ws2b{word-spacing:-15.918000px;}
.ws29{word-spacing:-15.226440px;}
.ws2c{word-spacing:-14.993280px;}
.ws31{word-spacing:-14.970240px;}
.ws2a{word-spacing:-14.940000px;}
.wsa{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.wse{word-spacing:-12.060000px;}
.ws3f{word-spacing:-10.363219px;}
.ws44{word-spacing:-9.822591px;}
.ws3e{word-spacing:-5.636083px;}
.ws3d{word-spacing:-5.383175px;}
.ws43{word-spacing:-4.403064px;}
.ws42{word-spacing:-4.205485px;}
.ws3c{word-spacing:-0.040234px;}
.ws49{word-spacing:-0.036439px;}
.ws4e{word-spacing:-0.033273px;}
.ws3b{word-spacing:-0.030658px;}
.ws4d{word-spacing:-0.030256px;}
.ws1{word-spacing:0.000000px;}
.ws4b{word-spacing:42.062520px;}
.ws3a{word-spacing:86.844685px;}
.ws39{word-spacing:95.575663px;}
.ws4a{word-spacing:392.070469px;}
.ws4c{word-spacing:399.899157px;}
._5c{margin-left:-184.600882px;}
._5d{margin-left:-182.681490px;}
._5b{margin-left:-176.934471px;}
._5a{margin-left:-171.198876px;}
._63{margin-left:-144.215329px;}
._64{margin-left:-142.715847px;}
._62{margin-left:-138.226116px;}
._61{margin-left:-133.745310px;}
._67{margin-left:-19.818720px;}
._65{margin-left:-6.709200px;}
._14{margin-left:-5.646960px;}
._8{margin-left:-3.875040px;}
._7{margin-left:-2.190240px;}
._0{margin-left:-1.008000px;}
._1{width:1.896000px;}
._2{width:3.706560px;}
._17{width:5.517120px;}
._3{width:7.328880px;}
._16{width:8.336880px;}
._19{width:10.024560px;}
._6{width:11.450880px;}
._22{width:12.622320px;}
._1c{width:13.646880px;}
._1d{width:15.033360px;}
._18{width:16.932240px;}
._1a{width:18.024480px;}
._9{width:19.290960px;}
._1e{width:22.155120px;}
._1f{width:23.648880px;}
._38{width:24.682320px;}
._20{width:26.030160px;}
._55{width:27.035280px;}
._36{width:28.051920px;}
._37{width:29.402640px;}
._1b{width:30.403680px;}
._b{width:31.464240px;}
._a{width:32.630880px;}
._21{width:34.051440px;}
._39{width:35.278080px;}
._3b{width:36.403440px;}
._3a{width:37.459680px;}
._43{width:38.831520px;}
._27{width:39.845520px;}
._3c{width:41.443200px;}
._12{width:42.878160px;}
._13{width:43.889040px;}
._3d{width:45.558480px;}
._4a{width:46.636320px;}
._34{width:48.185280px;}
._35{width:49.785840px;}
._3e{width:51.443040px;}
._42{width:52.445760px;}
._23{width:54.123840px;}
._24{width:55.217040px;}
._33{width:56.309760px;}
._30{width:57.579600px;}
._3f{width:58.756800px;}
._4b{width:60.057360px;}
._40{width:61.979520px;}
._41{width:63.305040px;}
._56{width:64.924320px;}
._11{width:65.957040px;}
._4d{width:67.650480px;}
._48{width:68.949840px;}
._e{width:70.463280px;}
._f{width:71.659440px;}
._44{width:73.036080px;}
._4{width:75.476160px;}
._5{width:76.911120px;}
._60{width:78.087600px;}
._66{width:79.156320px;}
._51{width:80.196480px;}
._4f{width:81.207360px;}
._50{width:82.259760px;}
._52{width:83.434560px;}
._d{width:84.913920px;}
._c{width:86.093280px;}
._6b{width:91.737360px;}
._28{width:93.506400px;}
._49{width:94.684560px;}
._5f{width:98.055360px;}
._10{width:100.663920px;}
._53{width:102.308880px;}
._54{width:104.029680px;}
._32{width:106.471200px;}
._31{width:107.658720px;}
._45{width:114.482160px;}
._47{width:115.487280px;}
._46{width:116.610240px;}
._68{width:118.394400px;}
._57{width:121.305600px;}
._4e{width:126.275760px;}
._6e{width:141.292800px;}
._2b{width:143.879040px;}
._2a{width:144.977040px;}
._69{width:147.423600px;}
._6a{width:149.075760px;}
._58{width:173.868480px;}
._59{width:175.444800px;}
._2f{width:184.288080px;}
._15{width:188.192160px;}
._25{width:200.808000px;}
._26{width:205.848000px;}
._6c{width:225.678960px;}
._6d{width:226.774080px;}
._29{width:236.040480px;}
._2e{width:247.021680px;}
._2c{width:273.948480px;}
._2d{width:275.464800px;}
._4c{width:343.404000px;}
._5e{width:2682.600000px;}
.fc9{color:rgb(79,129,189);}
.fc8{color:rgb(0,32,96);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(112,48,160);}
.fc7{color:rgb(79,98,40);}
.fc3{color:transparent;}
.fca{color:rgb(192,0,0);}
.fc2{color:rgb(0,112,192);}
.fcc{color:rgb(34,34,34);}
.fcb{color:rgb(51,51,51);}
.fc4{color:rgb(0,176,80);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs10{font-size:16.552873px;}
.fse{font-size:21.188281px;}
.fs13{font-size:27.311160px;}
.fs15{font-size:30.255837px;}
.fsc{font-size:30.658437px;}
.fsa{font-size:33.052170px;}
.fs14{font-size:33.272958px;}
.fs12{font-size:36.438623px;}
.fs11{font-size:36.927033px;}
.fs8{font-size:38.880000px;}
.fsf{font-size:38.959469px;}
.fsd{font-size:40.234042px;}
.fs7{font-size:48.240000px;}
.fsb{font-size:51.724500px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.fs5{font-size:120.240000px;}
.fs4{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:0.540000px;}
.y1fa{bottom:2.267765px;}
.y6{bottom:2.880000px;}
.y2{bottom:3.960000px;}
.y82{bottom:4.500000px;}
.y289{bottom:4.680000px;}
.y1e6{bottom:5.231792px;}
.y6f{bottom:5.400000px;}
.y1ab{bottom:6.696984px;}
.yae{bottom:7.020000px;}
.yc4{bottom:7.065000px;}
.yb6{bottom:7.200000px;}
.y17d{bottom:8.100000px;}
.y18c{bottom:8.145000px;}
.y17b{bottom:8.280000px;}
.yd2{bottom:8.640000px;}
.y180{bottom:8.820000px;}
.yd6{bottom:9.720000px;}
.yd9{bottom:10.260000px;}
.y1e5{bottom:10.484392px;}
.y179{bottom:10.620000px;}
.y177{bottom:13.140000px;}
.y1aa{bottom:13.420502px;}
.y287{bottom:16.560000px;}
.y285{bottom:16.605000px;}
.y282{bottom:16.740000px;}
.y5{bottom:16.920000px;}
.yce{bottom:17.280000px;}
.y19a{bottom:18.040194px;}
.y280{bottom:18.180000px;}
.yc8{bottom:18.900000px;}
.yac{bottom:19.080000px;}
.yd4{bottom:19.980000px;}
.yd8{bottom:20.520000px;}
.y2a6{bottom:21.960000px;}
.y23c{bottom:22.141387px;}
.y1bf{bottom:24.030788px;}
.y6d{bottom:24.660000px;}
.y56{bottom:25.380000px;}
.y28c{bottom:25.920000px;}
.y1ac{bottom:26.852858px;}
.y176{bottom:27.360000px;}
.ycf{bottom:27.720000px;}
.y81{bottom:28.620000px;}
.yd1{bottom:29.340000px;}
.y173{bottom:29.520000px;}
.y1e7{bottom:29.984792px;}
.yd5{bottom:30.420000px;}
.ybc{bottom:30.780000px;}
.yc1{bottom:30.825000px;}
.yaa{bottom:30.960000px;}
.y27d{bottom:33.300000px;}
.y191{bottom:33.934143px;}
.y4{bottom:34.740000px;}
.y186{bottom:35.820000px;}
.y175{bottom:37.440000px;}
.y23d{bottom:39.153789px;}
.y23f{bottom:39.836385px;}
.yc6{bottom:42.660000px;}
.yab{bottom:42.840000px;}
.y192{bottom:44.926941px;}
.y6c{bottom:45.360000px;}
.y1e8{bottom:46.863229px;}
.y80{bottom:52.740000px;}
.y2a3{bottom:52.920000px;}
.y2a0{bottom:52.950000px;}
.y7{bottom:54.180000px;}
.yb9{bottom:54.540000px;}
.yad{bottom:54.720000px;}
.yc0{bottom:54.765000px;}
.y23e{bottom:55.815380px;}
.y1ad{bottom:56.141087px;}
.y172{bottom:57.240000px;}
.y247{bottom:62.088874px;}
.y24a{bottom:63.232623px;}
.y1e9{bottom:63.357534px;}
.yb1{bottom:66.600000px;}
.yc2{bottom:66.645000px;}
.y246{bottom:69.801376px;}
.y193{bottom:76.354337px;}
.y1c9{bottom:76.841729px;}
.y12a{bottom:77.616000px;}
.yb2{bottom:78.480000px;}
.ybf{bottom:78.525000px;}
.y1ea{bottom:80.239940px;}
.y24b{bottom:80.245025px;}
.y240{bottom:80.815757px;}
.y24d{bottom:80.929904px;}
.y1e3{bottom:81.576000px;}
.y37{bottom:81.936000px;}
.y13a{bottom:82.836000px;}
.y245{bottom:83.791177px;}
.y171{bottom:85.140000px;}
.y1ae{bottom:85.429879px;}
.y160{bottom:86.076000px;}
.y254{bottom:86.515475px;}
.y1c8{bottom:87.398385px;}
.y276{bottom:87.696000px;}
.yf5{bottom:89.136000px;}
.y16b{bottom:89.316000px;}
.yb0{bottom:90.360000px;}
.y11e{bottom:90.396000px;}
.y103{bottom:91.656000px;}
.y1c0{bottom:94.601751px;}
.y129{bottom:94.896000px;}
.y69{bottom:95.256000px;}
.y21f{bottom:96.156000px;}
.y24c{bottom:96.910421px;}
.y1eb{bottom:97.117936px;}
.y16f{bottom:97.776000px;}
.y202{bottom:98.660199px;}
.y1fb{bottom:98.660215px;}
.y244{bottom:99.086815px;}
.y128{bottom:100.116000px;}
.y20e{bottom:100.296000px;}
.y54{bottom:101.196000px;}
.yb8{bottom:102.240000px;}
.ybe{bottom:102.285000px;}
.yb3{bottom:102.420000px;}
.y18{bottom:102.456000px;}
.y29e{bottom:103.896000px;}
.y125{bottom:104.796000px;}
.y241{bottom:106.042145px;}
.y1c7{bottom:106.118102px;}
.yca{bottom:106.416000px;}
.y86{bottom:106.776000px;}
.y194{bottom:107.780056px;}
.ya6{bottom:109.656000px;}
.y242{bottom:109.694835px;}
.y139{bottom:112.176000px;}
.y243{bottom:113.180109px;}
.y127{bottom:113.436000px;}
.y1ec{bottom:113.987111px;}
.y1af{bottom:114.706253px;}
.y1a8{bottom:115.956000px;}
.y1a9{bottom:116.056500px;}
.y1c6{bottom:117.165897px;}
.y13e{bottom:117.396000px;}
.y1e2{bottom:117.756000px;}
.y36{bottom:118.116000px;}
.y201{bottom:118.157880px;}
.y102{bottom:119.376000px;}
.y15f{bottom:122.256000px;}
.y1b7{bottom:123.409566px;}
.y275{bottom:123.876000px;}
.y1b8{bottom:123.889414px;}
.y21e{bottom:124.056000px;}
.y1c5{bottom:124.369262px;}
.yf4{bottom:125.316000px;}
.y16a{bottom:125.496000px;}
.y1c1{bottom:125.808806px;}
.ybb{bottom:126.000000px;}
.y1ff{bottom:126.030165px;}
.yc3{bottom:126.045000px;}
.yb5{bottom:126.180000px;}
.y1b9{bottom:126.288654px;}
.y11d{bottom:126.576000px;}
.y1ba{bottom:127.242705px;}
.y29d{bottom:128.736000px;}
.y138{bottom:129.276000px;}
.y1fc{bottom:129.412827px;}
.y17{bottom:129.816000px;}
.y1ed{bottom:130.494647px;}
.y25b{bottom:131.256000px;}
.y68{bottom:131.436000px;}
.y24e{bottom:131.451167px;}
.y200{bottom:133.157114px;}
.y1bb{bottom:133.486374px;}
.y16e{bottom:133.956000px;}
.y137{bottom:134.496000px;}
.y1c3{bottom:134.925918px;}
.y1c4{bottom:135.405766px;}
.y1bc{bottom:136.365462px;}
.y20d{bottom:136.656000px;}
.y234{bottom:136.983470px;}
.y53{bottom:137.376000px;}
.y1bd{bottom:137.799361px;}
.y1be{bottom:138.759057px;}
.y195{bottom:139.209129px;}
.y1b6{bottom:140.485279px;}
.y124{bottom:141.156000px;}
.y1c2{bottom:141.169587px;}
.y1fe{bottom:141.787960px;}
.yc9{bottom:142.596000px;}
.y85{bottom:142.956000px;}
.y1b0{bottom:143.993916px;}
.ya5{bottom:145.836000px;}
.y136{bottom:146.556000px;}
.y199{bottom:147.093225px;}
.y101{bottom:147.096000px;}
.y1ee{bottom:147.372643px;}
.y24f{bottom:147.424074px;}
.y143{bottom:147.816000px;}
.yba{bottom:149.790000px;}
.yb4{bottom:149.940000px;}
.y1fd{bottom:150.784855px;}
.y135{bottom:151.770000px;}
.y1f5{bottom:152.279985px;}
.y23b{bottom:153.131402px;}
.y1e1{bottom:153.930000px;}
.y35{bottom:154.290000px;}
.y16{bottom:157.170000px;}
.y15e{bottom:158.610000px;}
.y274{bottom:160.050000px;}
.y21d{bottom:160.230000px;}
.y1f6{bottom:160.540352px;}
.y1f7{bottom:161.290080px;}
.yf3{bottom:161.670000px;}
.y11c{bottom:162.750000px;}
.y1f8{bottom:162.785149px;}
.yc7{bottom:162.930000px;}
.y253{bottom:163.351323px;}
.y250{bottom:163.404591px;}
.y134{bottom:163.830000px;}
.y1ef{bottom:164.241818px;}
.y141{bottom:165.090000px;}
.y238{bottom:165.801669px;}
.y29c{bottom:165.810000px;}
.y1f9{bottom:166.542672px;}
.y67{bottom:167.610000px;}
.y235{bottom:167.978063px;}
.y123{bottom:168.870000px;}
.y248{bottom:168.883626px;}
.y133{bottom:169.050000px;}
.y16d{bottom:170.130000px;}
.y196{bottom:170.636525px;}
.y20c{bottom:172.830000px;}
.y1b1{bottom:173.281580px;}
.y52{bottom:173.730000px;}
.y100{bottom:174.810000px;}
.yee{bottom:177.150000px;}
.y84{bottom:179.130000px;}
.y23a{bottom:179.955841px;}
.y132{bottom:181.110000px;}
.y1f0{bottom:181.119814px;}
.ya4{bottom:182.190000px;}
.y131{bottom:186.330000px;}
.y15{bottom:186.690000px;}
.y237{bottom:188.699467px;}
.y249{bottom:189.825713px;}
.y1e0{bottom:190.110000px;}
.y34{bottom:190.650000px;}
.y15d{bottom:194.790000px;}
.y239{bottom:194.863380px;}
.y21c{bottom:196.410000px;}
.y203{bottom:196.536714px;}
.y122{bottom:196.590000px;}
.y1f1{bottom:197.627350px;}
.yf2{bottom:197.850000px;}
.y11b{bottom:199.110000px;}
.y130{bottom:199.650000px;}
.y197{bottom:202.062244px;}
.y1b2{bottom:202.552308px;}
.yff{bottom:202.710000px;}
.y236{bottom:203.295006px;}
.y66{bottom:203.970000px;}
.y1f3{bottom:206.249373px;}
.y278{bottom:206.310000px;}
.y25a{bottom:206.850000px;}
.y20b{bottom:209.010000px;}
.y51{bottom:209.910000px;}
.yed{bottom:213.330000px;}
.y14{bottom:214.410000px;}
.y1f2{bottom:214.496526px;}
.y83{bottom:215.310000px;}
.ya3{bottom:218.370000px;}
.y231{bottom:219.351620px;}
.y121{bottom:224.310000px;}
.y1df{bottom:226.290000px;}
.y33{bottom:226.830000px;}
.y29b{bottom:227.550000px;}
.yfe{bottom:230.430000px;}
.y15c{bottom:230.970000px;}
.y1b3{bottom:231.839972px;}
.y21b{bottom:232.590000px;}
.y198{bottom:233.492993px;}
.y252{bottom:233.559061px;}
.yf1{bottom:234.030000px;}
.yc5{bottom:235.110000px;}
.y11a{bottom:235.290000px;}
.y7f{bottom:235.830000px;}
.y233{bottom:236.473603px;}
.y65{bottom:240.150000px;}
.y13{bottom:242.130000px;}
.y277{bottom:242.490000px;}
.y259{bottom:243.030000px;}
.y20a{bottom:245.190000px;}
.y50{bottom:246.090000px;}
.y232{bottom:246.693524px;}
.y1b5{bottom:246.726550px;}
.yec{bottom:249.690000px;}
.y1ca{bottom:251.574144px;}
.y22c{bottom:251.883387px;}
.y120{bottom:252.210000px;}
.y29a{bottom:252.570000px;}
.ya2{bottom:254.550000px;}
.y18f{bottom:254.910000px;}
.yfd{bottom:258.150000px;}
.y1b4{bottom:261.133281px;}
.y1de{bottom:262.650000px;}
.y32{bottom:263.010000px;}
.y15b{bottom:267.150000px;}
.y22d{bottom:268.434637px;}
.y273{bottom:268.770000px;}
.y21a{bottom:268.950000px;}
.y12{bottom:269.850000px;}
.yf0{bottom:270.210000px;}
.y169{bottom:270.390000px;}
.y119{bottom:271.470000px;}
.y18e{bottom:275.250000px;}
.y64{bottom:276.330000px;}
.y258{bottom:279.210000px;}
.y11f{bottom:279.930000px;}
.y209{bottom:281.370000px;}
.y4f{bottom:282.270000px;}
.y22e{bottom:285.556619px;}
.yeb{bottom:285.870000px;}
.yfc{bottom:286.050000px;}
.y230{bottom:286.127352px;}
.y299{bottom:289.470000px;}
.y12f{bottom:289.830000px;}
.ya1{bottom:290.730000px;}
.y1dd{bottom:298.830000px;}
.y31{bottom:299.190000px;}
.y22f{bottom:302.107869px;}
.y15a{bottom:303.510000px;}
.y18d{bottom:303.690000px;}
.y272{bottom:304.950000px;}
.y219{bottom:305.130000px;}
.y11{bottom:305.850000px;}
.yef{bottom:306.570000px;}
.y118{bottom:307.650000px;}
.y7d{bottom:308.910000px;}
.y63{bottom:312.510000px;}
.yfb{bottom:313.770000px;}
.y298{bottom:314.310000px;}
.y257{bottom:317.010000px;}
.y208{bottom:317.730000px;}
.y4e{bottom:318.630000px;}
.yea{bottom:322.050000px;}
.ya0{bottom:327.090000px;}
.ybd{bottom:331.050000px;}
.y18b{bottom:332.310000px;}
.y1dc{bottom:335.010000px;}
.y30{bottom:335.550000px;}
.y159{bottom:339.735000px;}
.y271{bottom:341.175000px;}
.y218{bottom:341.355000px;}
.yfa{bottom:341.535000px;}
.y168{bottom:342.795000px;}
.y117{bottom:343.875000px;}
.y62{bottom:348.915000px;}
.y297{bottom:351.435000px;}
.y22b{bottom:352.347571px;}
.y256{bottom:353.235000px;}
.y207{bottom:353.955000px;}
.y4d{bottom:354.855000px;}
.ye9{bottom:358.275000px;}
.y10{bottom:360.795000px;}
.y126{bottom:362.415000px;}
.y9f{bottom:363.315000px;}
.yf9{bottom:369.255000px;}
.y1db{bottom:371.235000px;}
.y2f{bottom:371.775000px;}
.y158{bottom:375.915000px;}
.y296{bottom:376.275000px;}
.y22a{bottom:376.889079px;}
.y217{bottom:377.535000px;}
.y167{bottom:378.975000px;}
.y116{bottom:380.235000px;}
.y61{bottom:385.095000px;}
.y229{bottom:388.585295px;}
.y18a{bottom:389.415000px;}
.y206{bottom:390.135000px;}
.y4c{bottom:391.035000px;}
.ye8{bottom:394.635000px;}
.yf8{bottom:397.155000px;}
.y9e{bottom:399.495000px;}
.y1da{bottom:407.595000px;}
.y2e{bottom:407.955000px;}
.y221{bottom:407.997819px;}
.y157{bottom:412.095000px;}
.y224{bottom:412.852852px;}
.y295{bottom:413.175000px;}
.y270{bottom:413.715000px;}
.y216{bottom:413.895000px;}
.y166{bottom:415.335000px;}
.yf{bottom:415.695000px;}
.y115{bottom:416.415000px;}
.y189{bottom:417.855000px;}
.y1a7{bottom:420.555000px;}
.y60{bottom:421.275000px;}
.yf7{bottom:424.875000px;}
.y205{bottom:426.315000px;}
.y4b{bottom:427.215000px;}
.y223{bottom:430.545567px;}
.ye7{bottom:430.815000px;}
.y13d{bottom:434.775000px;}
.y9d{bottom:435.675000px;}
.y294{bottom:438.195000px;}
.y228{bottom:442.523345px;}
.y1d9{bottom:443.775000px;}
.y2d{bottom:444.135000px;}
.y188{bottom:446.475000px;}
.y222{bottom:446.526084px;}
.y156{bottom:448.455000px;}
.y26f{bottom:449.895000px;}
.y215{bottom:450.075000px;}
.y165{bottom:451.515000px;}
.yf6{bottom:452.595000px;}
.y225{bottom:455.087075px;}
.y1a6{bottom:456.735000px;}
.y5f{bottom:457.455000px;}
.y204{bottom:457.995000px;}
.y251{bottom:458.686497px;}
.y4a{bottom:463.575000px;}
.ye6{bottom:466.995000px;}
.ye{bottom:467.355000px;}
.y9c{bottom:472.035000px;}
.y226{bottom:473.297255px;}
.yb7{bottom:474.735000px;}
.y187{bottom:474.915000px;}
.y293{bottom:475.095000px;}
.y1d8{bottom:479.955000px;}
.y227{bottom:480.199316px;}
.y2c{bottom:480.315000px;}
.y155{bottom:484.635000px;}
.y214{bottom:486.255000px;}
.y26e{bottom:487.515000px;}
.y164{bottom:487.695000px;}
.y114{bottom:488.775000px;}
.y1a5{bottom:492.915000px;}
.y5e{bottom:493.635000px;}
.yd{bottom:497.055000px;}
.y49{bottom:499.755000px;}
.y292{bottom:500.115000px;}
.ye5{bottom:503.175000px;}
.y185{bottom:503.535000px;}
.y9b{bottom:508.215000px;}
.y1d7{bottom:516.135000px;}
.y2b{bottom:516.675000px;}
.y154{bottom:520.815000px;}
.y213{bottom:522.435000px;}
.y163{bottom:523.875000px;}
.y113{bottom:525.135000px;}
.y26d{bottom:525.315000px;}
.y1a4{bottom:529.275000px;}
.y5d{bottom:529.995000px;}
.y48{bottom:535.935000px;}
.y291{bottom:537.015000px;}
.y2b3{bottom:538.275000px;}
.ye4{bottom:539.535000px;}
.y12e{bottom:543.495000px;}
.y9a{bottom:544.395000px;}
.y5c{bottom:550.335000px;}
.y1d6{bottom:552.495000px;}
.y2a{bottom:552.855000px;}
.y153{bottom:556.995000px;}
.y212{bottom:558.615000px;}
.y162{bottom:560.235000px;}
.y112{bottom:561.315000px;}
.y26c{bottom:561.495000px;}
.y290{bottom:561.855000px;}
.y7c{bottom:565.275000px;}
.y1a3{bottom:565.455000px;}
.y2b2{bottom:567.255000px;}
.y5b{bottom:571.755000px;}
.y47{bottom:572.115000px;}
.ye3{bottom:575.715000px;}
.y184{bottom:576.435000px;}
.y140{bottom:579.675000px;}
.y99{bottom:580.575000px;}
.y1d5{bottom:588.675000px;}
.y29{bottom:589.035000px;}
.y5a{bottom:593.175000px;}
.y211{bottom:594.975000px;}
.y161{bottom:596.415000px;}
.y2b1{bottom:596.775000px;}
.y111{bottom:597.495000px;}
.y28f{bottom:598.935000px;}
.y26b{bottom:599.295000px;}
.y7b{bottom:601.455000px;}
.y1a2{bottom:601.635000px;}
.y46{bottom:608.325000px;}
.ye2{bottom:611.925000px;}
.y183{bottom:612.645000px;}
.y59{bottom:614.625000px;}
.y98{bottom:616.785000px;}
.y28e{bottom:623.805000px;}
.y1d4{bottom:624.885000px;}
.y28{bottom:625.245000px;}
.y2b0{bottom:626.325000px;}
.y152{bottom:629.565000px;}
.y210{bottom:631.185000px;}
.y16c{bottom:632.625000px;}
.y110{bottom:633.705000px;}
.y26a{bottom:635.505000px;}
.y58{bottom:636.045000px;}
.y7a{bottom:637.845000px;}
.yaf{bottom:641.985000px;}
.y45{bottom:644.685000px;}
.ye1{bottom:648.105000px;}
.y182{bottom:648.825000px;}
.y12d{bottom:652.245000px;}
.y97{bottom:653.145000px;}
.y2af{bottom:655.665000px;}
.y55{bottom:657.645000px;}
.y28d{bottom:660.705000px;}
.y1d3{bottom:661.065000px;}
.y27{bottom:661.605000px;}
.y20f{bottom:662.865000px;}
.y220{bottom:663.840000px;}
.y151{bottom:665.745000px;}
.y10f{bottom:670.065000px;}
.y269{bottom:673.305000px;}
.y79{bottom:674.025000px;}
.y1a1{bottom:674.205000px;}
.y57{bottom:679.065000px;}
.y44{bottom:680.865000px;}
.y255{bottom:681.045000px;}
.ye0{bottom:684.285000px;}
.y181{bottom:685.005000px;}
.y2ae{bottom:685.185000px;}
.y28b{bottom:685.725000px;}
.y142{bottom:688.425000px;}
.y96{bottom:689.325000px;}
.y1d2{bottom:697.425000px;}
.y26{bottom:697.785000px;}
.y150{bottom:701.925000px;}
.y17f{bottom:705.345000px;}
.y10e{bottom:706.245000px;}
.y268{bottom:709.485000px;}
.y78{bottom:710.205000px;}
.y1a0{bottom:710.385000px;}
.y2ad{bottom:714.705000px;}
.y43{bottom:717.045000px;}
.ydf{bottom:720.645000px;}
.y95{bottom:725.505000px;}
.y28a{bottom:731.985000px;}
.y1d1{bottom:733.605000px;}
.y25{bottom:733.965000px;}
.y17e{bottom:734.505000px;}
.y14f{bottom:738.105000px;}
.y10d{bottom:742.425000px;}
.y2ac{bottom:744.225000px;}
.y77{bottom:746.385000px;}
.y19f{bottom:746.565000px;}
.y267{bottom:747.285000px;}
.y42{bottom:753.225000px;}
.yde{bottom:756.825000px;}
.y94{bottom:761.685000px;}
.y17c{bottom:763.125000px;}
.y1d0{bottom:769.785000px;}
.y24{bottom:770.145000px;}
.y2ab{bottom:773.745000px;}
.y14e{bottom:774.465000px;}
.y10c{bottom:778.605000px;}
.y76{bottom:782.565000px;}
.y19e{bottom:782.745000px;}
.y266{bottom:783.465000px;}
.y41{bottom:789.585000px;}
.y17a{bottom:791.565000px;}
.ydd{bottom:793.005000px;}
.y288{bottom:793.725000px;}
.y93{bottom:798.045000px;}
.y2aa{bottom:803.085000px;}
.y1cf{bottom:805.965000px;}
.y8b{bottom:806.505000px;}
.ya9{bottom:809.385000px;}
.y14d{bottom:810.645000px;}
.y23{bottom:814.065000px;}
.y10b{bottom:814.965000px;}
.y286{bottom:818.745000px;}
.y75{bottom:818.925000px;}
.y19d{bottom:819.105000px;}
.y178{bottom:820.185000px;}
.y265{bottom:821.265000px;}
.y40{bottom:825.765000px;}
.ydc{bottom:829.185000px;}
.y2a9{bottom:832.605000px;}
.y92{bottom:834.225000px;}
.y1ce{bottom:842.145000px;}
.y8a{bottom:842.685000px;}
.y14c{bottom:846.825000px;}
.y22{bottom:850.245000px;}
.y10a{bottom:851.145000px;}
.y74{bottom:855.105000px;}
.y19c{bottom:855.285000px;}
.y284{bottom:855.645000px;}
.y264{bottom:857.445000px;}
.y3f{bottom:861.945000px;}
.y2a8{bottom:862.125000px;}
.ydb{bottom:865.545000px;}
.y91{bottom:870.405000px;}
.y1cd{bottom:878.550000px;}
.y89{bottom:878.910000px;}
.y14b{bottom:883.050000px;}
.y170{bottom:884.850000px;}
.ya8{bottom:886.110000px;}
.y21{bottom:886.470000px;}
.y190{bottom:886.965000px;}
.y19b{bottom:887.010000px;}
.y109{bottom:887.370000px;}
.y73{bottom:891.330000px;}
.y283{bottom:892.770000px;}
.y263{bottom:893.670000px;}
.y3e{bottom:898.170000px;}
.yda{bottom:901.770000px;}
.y90{bottom:906.630000px;}
.y2a7{bottom:907.890000px;}
.y14a{bottom:909.150000px;}
.ya7{bottom:910.230000px;}
.y1cc{bottom:914.730000px;}
.y88{bottom:915.090000px;}
.yd7{bottom:922.110000px;}
.y20{bottom:922.650000px;}
.y108{bottom:923.550000px;}
.y72{bottom:927.510000px;}
.y262{bottom:929.850000px;}
.y281{bottom:931.830000px;}
.y174{bottom:932.550000px;}
.y2a5{bottom:932.910000px;}
.y3d{bottom:934.530000px;}
.y149{bottom:934.890000px;}
.y13f{bottom:942.090000px;}
.y8f{bottom:942.990000px;}
.y1cb{bottom:946.410000px;}
.y1e4{bottom:946.440000px;}
.y71{bottom:948.030000px;}
.y87{bottom:951.270000px;}
.yc{bottom:957.030000px;}
.y1f{bottom:958.830000px;}
.y107{bottom:959.730000px;}
.y1f4{bottom:965.524360px;}
.y148{bottom:967.110000px;}
.y261{bottom:967.650000px;}
.y27f{bottom:968.910000px;}
.y3c{bottom:970.710000px;}
.y70{bottom:970.890000px;}
.y2a4{bottom:975.210000px;}
.yd3{bottom:976.650000px;}
.y13c{bottom:978.270000px;}
.y8e{bottom:979.170000px;}
.y1e{bottom:987.630000px;}
.y6e{bottom:993.930000px;}
.y106{bottom:996.090000px;}
.yb{bottom:996.270000px;}
.y2a2{bottom:1000.050000px;}
.y147{bottom:1003.290000px;}
.y260{bottom:1003.830000px;}
.y3b{bottom:1006.890000px;}
.y27e{bottom:1008.150000px;}
.y8d{bottom:1015.350000px;}
.y6b{bottom:1016.790000px;}
.y1d{bottom:1023.810000px;}
.yd0{bottom:1030.110000px;}
.y105{bottom:1032.270000px;}
.y27c{bottom:1032.990000px;}
.y146{bottom:1039.650000px;}
.y25f{bottom:1040.010000px;}
.ya{bottom:1040.190000px;}
.y3a{bottom:1043.070000px;}
.y12c{bottom:1050.630000px;}
.y8c{bottom:1051.530000px;}
.y1c{bottom:1059.990000px;}
.y104{bottom:1068.450000px;}
.y2a1{bottom:1073.310000px;}
.y145{bottom:1075.830000px;}
.y25e{bottom:1077.810000px;}
.y39{bottom:1079.430000px;}
.ycd{bottom:1081.770000px;}
.y6a{bottom:1087.710000px;}
.y27b{bottom:1094.190000px;}
.y9{bottom:1094.910000px;}
.y1b{bottom:1096.170000px;}
.y29f{bottom:1098.150000px;}
.y144{bottom:1103.550000px;}
.y25d{bottom:1113.990000px;}
.y38{bottom:1115.610000px;}
.y27a{bottom:1121.730000px;}
.y13b{bottom:1123.170000px;}
.y1a{bottom:1124.070000px;}
.ycc{bottom:1133.970000px;}
.y8{bottom:1145.520000px;}
.y25c{bottom:1150.200000px;}
.y279{bottom:1151.280000px;}
.y19{bottom:1151.820000px;}
.ycb{bottom:1154.700000px;}
.y12b{bottom:1159.380000px;}
.y3{bottom:1176.120000px;}
.y1{bottom:1200.240000px;}
.h42{height:12.414655px;}
.h3e{height:15.891211px;}
.h16{height:20.700000px;}
.h18{height:20.736000px;}
.h2{height:22.140000px;}
.h50{height:24.120000px;}
.h57{height:24.156000px;}
.h3a{height:24.159716px;}
.h55{height:24.300000px;}
.h44{height:27.695275px;}
.h36{height:27.720000px;}
.h38{height:27.756000px;}
.h35{height:27.900000px;}
.h6{height:28.440000px;}
.h47{height:28.484687px;}
.h40{height:29.219601px;}
.h3c{height:29.409356px;}
.h34{height:30.240000px;}
.h4d{height:31.555892px;}
.h33{height:32.796000px;}
.h4c{height:34.702656px;}
.h54{height:36.180000px;}
.h53{height:36.216000px;}
.h52{height:36.360000px;}
.h58{height:36.396000px;}
.h3b{height:37.808387px;}
.h46{height:38.004345px;}
.h2c{height:38.158594px;}
.h51{height:38.340000px;}
.h48{height:40.287276px;}
.h4a{height:40.956935px;}
.h5b{height:41.580000px;}
.h14{height:42.120000px;}
.h49{height:42.570207px;}
.h56{height:45.540000px;}
.h32{height:46.980000px;}
.h25{height:47.520000px;}
.h4{height:48.761719px;}
.h26{height:50.760000px;}
.h4f{height:51.300000px;}
.h2d{height:52.669336px;}
.h27{height:52.740000px;}
.h11{height:52.971680px;}
.h2b{height:52.998047px;}
.h3{height:53.015625px;}
.h28{height:53.820000px;}
.h10{height:54.658125px;}
.h37{height:55.440000px;}
.h31{height:57.060000px;}
.h2e{height:58.651172px;}
.hf{height:58.655391px;}
.h4b{height:60.894533px;}
.h1b{height:62.100000px;}
.h4e{height:63.303398px;}
.h5{height:65.884219px;}
.h2f{height:67.824844px;}
.h17{height:70.664062px;}
.h24{height:71.460000px;}
.h1f{height:71.496000px;}
.h1d{height:72.360000px;}
.h5a{height:72.540000px;}
.h15{height:72.562500px;}
.h59{height:72.576000px;}
.h29{height:72.846211px;}
.h13{height:74.244727px;}
.h19{height:74.824922px;}
.h12{height:82.635820px;}
.he{height:82.676953px;}
.h1a{height:83.238047px;}
.hd{height:83.721797px;}
.h8{height:83.787539px;}
.hc{height:84.898125px;}
.h5c{height:86.255508px;}
.h1e{height:86.585445px;}
.h2a{height:87.695156px;}
.hb{height:90.884531px;}
.h23{height:95.220000px;}
.h30{height:104.760000px;}
.h7{height:108.843750px;}
.h9{height:110.583984px;}
.ha{height:126.802969px;}
.h22{height:142.776000px;}
.h21{height:166.530000px;}
.h20{height:166.680000px;}
.h43{height:200.300033px;}
.h41{height:225.000000px;}
.h1c{height:239.070000px;}
.h3f{height:256.391253px;}
.h39{height:284.395885px;}
.h3d{height:288.000000px;}
.h45{height:507.594488px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:40.536000px;}
.w6{width:41.436000px;}
.w2{width:70.200000px;}
.wd{width:86.940000px;}
.w26{width:100.980000px;}
.w25{width:101.196000px;}
.w24{width:101.340000px;}
.w5{width:102.060000px;}
.w10{width:126.360000px;}
.we{width:126.576000px;}
.w16{width:126.936000px;}
.w15{width:137.016000px;}
.w18{width:137.520000px;}
.w17{width:137.556000px;}
.wb{width:150.150000px;}
.w12{width:155.160000px;}
.wf{width:157.350000px;}
.wa{width:158.760000px;}
.w9{width:158.790000px;}
.w1e{width:161.490000px;}
.w1a{width:179.490000px;}
.w19{width:179.670000px;}
.w22{width:182.550000px;}
.w14{width:186.150000px;}
.w13{width:186.330000px;}
.w7{width:190.650000px;}
.w11{width:191.550000px;}
.w21{width:209.550000px;}
.w23{width:211.170000px;}
.w20{width:214.590000px;}
.w1b{width:243.795000px;}
.w1c{width:296.490000px;}
.w1f{width:424.875000px;}
.w8{width:469.155000px;}
.w27{width:575.851377px;}
.w2b{width:619.438481px;}
.w2c{width:644.397657px;}
.w29{width:653.531892px;}
.w2a{width:670.481146px;}
.w28{width:707.383907px;}
.w2d{width:721.410000px;}
.w3{width:802.080000px;}
.w1d{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3{left:-1.800000px;}
.x0{left:0.000000px;}
.x78{left:7.560000px;}
.x1{left:8.640000px;}
.x87{left:10.623001px;}
.x88{left:13.272003px;}
.x86{left:15.922054px;}
.xb9{left:33.690127px;}
.x2b{left:37.590000px;}
.x81{left:39.080176px;}
.x7{left:44.250000px;}
.x89{left:51.349383px;}
.xba{left:65.452192px;}
.xbb{left:66.812566px;}
.x4{left:74.339987px;}
.x2{left:78.840000px;}
.x80{left:80.371000px;}
.xbe{left:82.534015px;}
.x5{left:84.959987px;}
.x7f{left:86.826856px;}
.x56{left:89.855987px;}
.xbc{left:90.885915px;}
.x14{left:92.015987px;}
.x66{left:94.715987px;}
.x7b{left:96.516000px;}
.x6f{left:97.775987px;}
.x4b{left:99.395987px;}
.xc1{left:102.275987px;}
.x6e{left:106.775987px;}
.xd{left:110.915987px;}
.xc{left:113.795987px;}
.x3c{left:116.495987px;}
.x48{left:119.015987px;}
.xc0{left:120.275987px;}
.xa7{left:124.462500px;}
.x19{left:126.035987px;}
.x13{left:127.475987px;}
.x4f{left:130.535987px;}
.x16{left:132.515987px;}
.x9b{left:134.055332px;}
.x9{left:137.375987px;}
.x4a{left:141.875987px;}
.x45{left:143.855987px;}
.xc2{left:149.975987px;}
.x27{left:153.900000px;}
.x18{left:155.369987px;}
.x7e{left:158.490000px;}
.x67{left:159.509973px;}
.x60{left:161.309973px;}
.x10{left:165.629987px;}
.x47{left:167.249987px;}
.x71{left:172.289987px;}
.x33{left:173.909987px;}
.x46{left:180.569987px;}
.x30{left:185.429987px;}
.x29{left:186.510000px;}
.x25{left:192.315000px;}
.xbd{left:195.147942px;}
.x4d{left:198.569987px;}
.x34{left:202.529987px;}
.xe{left:207.389987px;}
.xa{left:209.189987px;}
.x63{left:211.529987px;}
.x51{left:213.689987px;}
.x21{left:214.770000px;}
.x8a{left:219.345276px;}
.x6d{left:222.869973px;}
.x3e{left:224.489987px;}
.xaf{left:228.934873px;}
.x5a{left:233.489973px;}
.x2c{left:235.649987px;}
.x5b{left:240.329987px;}
.x4c{left:248.249987px;}
.x8b{left:252.073770px;}
.x75{left:256.169987px;}
.xa9{left:259.399349px;}
.x3a{left:262.829987px;}
.x73{left:264.629987px;}
.x43{left:266.070000px;}
.xad{left:267.273811px;}
.x4e{left:268.589987px;}
.x37{left:271.829987px;}
.x1a{left:275.249987px;}
.x53{left:276.329987px;}
.x26{left:278.175000px;}
.x72{left:279.254987px;}
.x40{left:281.594987px;}
.x32{left:282.674987px;}
.x82{left:283.760198px;}
.x52{left:285.014987px;}
.x3f{left:288.614987px;}
.x36{left:290.054987px;}
.xac{left:291.825907px;}
.x77{left:294.734987px;}
.x31{left:295.814987px;}
.xbf{left:299.054987px;}
.xaa{left:300.681400px;}
.x50{left:301.754987px;}
.x74{left:304.634987px;}
.x2e{left:305.714987px;}
.x3d{left:308.414987px;}
.x15{left:310.214987px;}
.x11{left:312.734987px;}
.x76{left:313.814987px;}
.x79{left:315.255000px;}
.x1d{left:319.395000px;}
.x70{left:326.594987px;}
.xae{left:327.980404px;}
.x22{left:342.075000px;}
.x8c{left:344.934257px;}
.x35{left:349.274987px;}
.x38{left:350.534987px;}
.x9c{left:352.077377px;}
.x12{left:355.394987px;}
.x17{left:356.474987px;}
.x39{left:364.214987px;}
.x3b{left:368.894987px;}
.x8d{left:370.573134px;}
.x2f{left:375.374987px;}
.x9d{left:381.396415px;}
.x1b{left:389.234987px;}
.xf{left:391.034987px;}
.x58{left:399.134973px;}
.x59{left:405.974987px;}
.x49{left:407.774987px;}
.x64{left:410.834973px;}
.xb4{left:416.626943px;}
.xb7{left:420.551091px;}
.x65{left:424.514987px;}
.xab{left:425.953330px;}
.x28{left:434.055000px;}
.x2d{left:435.854987px;}
.xb8{left:437.254888px;}
.xb5{left:440.695060px;}
.xb3{left:442.382444px;}
.xb6{left:444.527644px;}
.x8{left:446.474987px;}
.xb0{left:458.288327px;}
.x9e{left:467.730167px;}
.x1e{left:478.905000px;}
.xb2{left:479.988874px;}
.x41{left:489.525000px;}
.x7c{left:491.685000px;}
.x8e{left:494.366360px;}
.x54{left:496.364973px;}
.x23{left:500.145000px;}
.x55{left:503.204987px;}
.x44{left:510.765000px;}
.x8f{left:518.230236px;}
.x99{left:520.877159px;}
.xa8{left:528.648322px;}
.x7a{left:530.565000px;}
.x68{left:537.224973px;}
.xb1{left:539.047322px;}
.x90{left:545.664873px;}
.x69{left:550.904987px;}
.x91{left:557.145276px;}
.x9f{left:564.955240px;}
.x92{left:568.646441px;}
.xa0{left:576.702533px;}
.x93{left:579.244536px;}
.xa1{left:587.584029px;}
.x94{left:589.863392px;}
.x6b{left:594.644973px;}
.xa2{left:598.485201px;}
.x95{left:600.492627px;}
.x6c{left:608.324987px;}
.xa3{left:609.396213px;}
.x96{left:611.090722px;}
.xa4{left:619.441428px;}
.x2a{left:621.105000px;}
.x42{left:627.765000px;}
.x97{left:632.307673px;}
.x1f{left:638.385000px;}
.x9a{left:640.335665px;}
.x98{left:642.936909px;}
.x24{left:659.670000px;}
.x84{left:662.334218px;}
.x85{left:675.579242px;}
.x5e{left:678.749973px;}
.x5f{left:685.589987px;}
.x7d{left:695.670000px;}
.x83{left:734.369987px;}
.x6{left:737.820000px;}
.x1c{left:740.849987px;}
.x61{left:752.009973px;}
.x62{left:765.689987px;}
.xb{left:767.129987px;}
.xa6{left:768.929987px;}
.xa5{left:772.709987px;}
.x6a{left:789.269973px;}
.x5c{left:796.109973px;}
.x57{left:801.149973px;}
.x5d{left:802.949987px;}
.x20{left:807.989987px;}
@media print{
.v9{vertical-align:-72.999678pt;}
.v8{vertical-align:-30.628479pt;}
.v1{vertical-align:-26.880000pt;}
.vd{vertical-align:-25.974682pt;}
.v5{vertical-align:-17.837679pt;}
.v6{vertical-align:-8.320000pt;}
.v7{vertical-align:-6.114873pt;}
.ve{vertical-align:-1.569304pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.029272pt;}
.vf{vertical-align:5.519620pt;}
.va{vertical-align:8.144145pt;}
.vc{vertical-align:12.202689pt;}
.v4{vertical-align:21.120000pt;}
.v3{vertical-align:24.426667pt;}
.v2{vertical-align:26.880000pt;}
.ls9c{letter-spacing:-3.360000pt;}
.ls76{letter-spacing:-3.091099pt;}
.ls7c{letter-spacing:-2.414852pt;}
.ls35{letter-spacing:-1.440000pt;}
.ls6a{letter-spacing:-1.296000pt;}
.ls8b{letter-spacing:-1.258667pt;}
.ls8a{letter-spacing:-1.120000pt;}
.ls89{letter-spacing:-0.960000pt;}
.ls88{letter-spacing:-0.944000pt;}
.ls8c{letter-spacing:-0.885333pt;}
.ls2d{letter-spacing:-0.800000pt;}
.ls67{letter-spacing:-0.672000pt;}
.ls21{letter-spacing:-0.666667pt;}
.ls34{letter-spacing:-0.656000pt;}
.ls13{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.608000pt;}
.ls61{letter-spacing:-0.549333pt;}
.ls56{letter-spacing:-0.380800pt;}
.ls1e{letter-spacing:-0.336533pt;}
.lsf{letter-spacing:-0.328533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.311467pt;}
.ls69{letter-spacing:-0.309867pt;}
.ls36{letter-spacing:-0.303467pt;}
.ls30{letter-spacing:-0.286933pt;}
.ls7{letter-spacing:-0.282667pt;}
.ls7a{letter-spacing:-0.250667pt;}
.ls75{letter-spacing:-0.224807pt;}
.ls66{letter-spacing:-0.212267pt;}
.ls4{letter-spacing:-0.211200pt;}
.ls39{letter-spacing:-0.192000pt;}
.ls7b{letter-spacing:-0.175626pt;}
.ls74{letter-spacing:-0.163353pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls41{letter-spacing:-0.143467pt;}
.ls71{letter-spacing:-0.137600pt;}
.ls38{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.082667pt;}
.ls5{letter-spacing:-0.081067pt;}
.ls31{letter-spacing:-0.033280pt;}
.ls3e{letter-spacing:-0.032000pt;}
.ls22{letter-spacing:-0.024960pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls23{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls97{letter-spacing:0.011947pt;}
.ls78{letter-spacing:0.016000pt;}
.ls72{letter-spacing:0.017504pt;}
.lsc{letter-spacing:0.024960pt;}
.ls11{letter-spacing:0.033280pt;}
.ls57{letter-spacing:0.047360pt;}
.ls68{letter-spacing:0.061333pt;}
.ls3a{letter-spacing:0.065280pt;}
.lsa3{letter-spacing:0.094720pt;}
.ls27{letter-spacing:0.103040pt;}
.ls95{letter-spacing:0.111360pt;}
.ls3f{letter-spacing:0.115200pt;}
.lsa4{letter-spacing:0.119680pt;}
.ls37{letter-spacing:0.128000pt;}
.ls92{letter-spacing:0.139947pt;}
.ls90{letter-spacing:0.143360pt;}
.ls94{letter-spacing:0.152960pt;}
.ls49{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.161280pt;}
.ls10{letter-spacing:0.184960pt;}
.ls0{letter-spacing:0.192000pt;}
.ls98{letter-spacing:0.193280pt;}
.ls1d{letter-spacing:0.224640pt;}
.ls45{letter-spacing:0.227733pt;}
.ls4f{letter-spacing:0.231040pt;}
.ls79{letter-spacing:0.232533pt;}
.ls5d{letter-spacing:0.259200pt;}
.ls2{letter-spacing:0.279467pt;}
.ls62{letter-spacing:0.285867pt;}
.ls96{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.300800pt;}
.ls93{letter-spacing:0.303360pt;}
.lsd{letter-spacing:0.303467pt;}
.ls20{letter-spacing:0.311467pt;}
.ls9d{letter-spacing:0.311680pt;}
.ls9a{letter-spacing:0.315307pt;}
.ls6{letter-spacing:0.320000pt;}
.ls91{letter-spacing:0.328320pt;}
.ls29{letter-spacing:0.328533pt;}
.ls32{letter-spacing:0.330133pt;}
.ls16{letter-spacing:0.336533pt;}
.ls8f{letter-spacing:0.336640pt;}
.ls9e{letter-spacing:0.426667pt;}
.lsa6{letter-spacing:0.439680pt;}
.ls25{letter-spacing:0.448000pt;}
.lsa2{letter-spacing:0.456320pt;}
.ls65{letter-spacing:0.464640pt;}
.ls2f{letter-spacing:0.480000pt;}
.ls3c{letter-spacing:0.640000pt;}
.lsa1{letter-spacing:0.673280pt;}
.ls80{letter-spacing:0.707122pt;}
.ls81{letter-spacing:0.761236pt;}
.ls50{letter-spacing:0.800000pt;}
.ls51{letter-spacing:0.869333pt;}
.ls4d{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.760000pt;}
.ls60{letter-spacing:2.080000pt;}
.ls4b{letter-spacing:2.400000pt;}
.ls99{letter-spacing:3.680000pt;}
.ls8e{letter-spacing:3.786667pt;}
.ls40{letter-spacing:4.960000pt;}
.ls5a{letter-spacing:5.600000pt;}
.ls18{letter-spacing:6.880000pt;}
.ls33{letter-spacing:7.520000pt;}
.ls43{letter-spacing:8.160000pt;}
.ls54{letter-spacing:9.440000pt;}
.ls77{letter-spacing:9.600000pt;}
.ls55{letter-spacing:9.760000pt;}
.ls1a{letter-spacing:10.720000pt;}
.ls17{letter-spacing:11.360000pt;}
.ls15{letter-spacing:12.000000pt;}
.ls47{letter-spacing:12.640000pt;}
.ls4a{letter-spacing:13.280000pt;}
.ls12{letter-spacing:13.920000pt;}
.ls4c{letter-spacing:14.560000pt;}
.ls52{letter-spacing:15.200000pt;}
.ls9b{letter-spacing:15.840000pt;}
.ls5b{letter-spacing:16.480000pt;}
.ls64{letter-spacing:18.400000pt;}
.lsa5{letter-spacing:18.863360pt;}
.lsa0{letter-spacing:19.040000pt;}
.ls5c{letter-spacing:19.680000pt;}
.ls14{letter-spacing:20.320000pt;}
.ls2a{letter-spacing:22.240000pt;}
.ls53{letter-spacing:22.880000pt;}
.ls26{letter-spacing:23.520000pt;}
.ls3d{letter-spacing:25.440000pt;}
.ls5e{letter-spacing:26.720000pt;}
.ls48{letter-spacing:27.360000pt;}
.ls5f{letter-spacing:28.000000pt;}
.ls59{letter-spacing:29.280000pt;}
.ls28{letter-spacing:31.200000pt;}
.ls85{letter-spacing:32.729619pt;}
.ls8d{letter-spacing:33.098667pt;}
.ls9f{letter-spacing:33.120000pt;}
.ls7e{letter-spacing:35.040000pt;}
.ls70{letter-spacing:35.680000pt;}
.ls73{letter-spacing:36.960000pt;}
.ls58{letter-spacing:40.800000pt;}
.ls6e{letter-spacing:45.280000pt;}
.ls2b{letter-spacing:45.920000pt;}
.ls7d{letter-spacing:50.400000pt;}
.ls42{letter-spacing:52.960000pt;}
.ls83{letter-spacing:60.719459pt;}
.ls6b{letter-spacing:70.240000pt;}
.ls7f{letter-spacing:70.744648pt;}
.ls4e{letter-spacing:72.160000pt;}
.ls63{letter-spacing:74.543360pt;}
.ls46{letter-spacing:76.000000pt;}
.ls87{letter-spacing:78.450470pt;}
.ls82{letter-spacing:78.455882pt;}
.ls86{letter-spacing:78.647986pt;}
.ls6d{letter-spacing:88.800000pt;}
.ls6c{letter-spacing:89.440000pt;}
.ls6f{letter-spacing:96.480000pt;}
.ls24{letter-spacing:111.663360pt;}
.ls44{letter-spacing:126.991360pt;}
.ls3b{letter-spacing:146.202027pt;}
.ls84{letter-spacing:164.347616pt;}
.ls1b{letter-spacing:164.426667pt;}
.lsb{letter-spacing:168.160000pt;}
.ls19{letter-spacing:220.000000pt;}
.ws2{word-spacing:-149.120000pt;}
.ws4{word-spacing:-74.668800pt;}
.ws1e{word-spacing:-59.210133pt;}
.ws33{word-spacing:-58.941333pt;}
.ws1d{word-spacing:-58.880000pt;}
.ws32{word-spacing:-58.846720pt;}
.ws2f{word-spacing:-58.667733pt;}
.ws34{word-spacing:-58.570133pt;}
.ws30{word-spacing:-58.208000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws6{word-spacing:-19.918080pt;}
.ws5{word-spacing:-19.837013pt;}
.ws12{word-spacing:-19.056533pt;}
.ws19{word-spacing:-19.048533pt;}
.ws7{word-spacing:-19.040000pt;}
.ws15{word-spacing:-19.031467pt;}
.wsc{word-spacing:-19.023467pt;}
.ws2e{word-spacing:-19.005867pt;}
.ws48{word-spacing:-18.979200pt;}
.ws40{word-spacing:-18.952533pt;}
.ws36{word-spacing:-18.944640pt;}
.ws27{word-spacing:-18.835200pt;}
.wsf{word-spacing:-18.753280pt;}
.ws11{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws18{word-spacing:-18.711680pt;}
.ws8{word-spacing:-18.703360pt;}
.ws17{word-spacing:-18.695040pt;}
.ws26{word-spacing:-18.688000pt;}
.ws1c{word-spacing:-18.686720pt;}
.ws1a{word-spacing:-18.637333pt;}
.ws38{word-spacing:-18.582400pt;}
.ws28{word-spacing:-18.576533pt;}
.ws37{word-spacing:-18.560000pt;}
.ws41{word-spacing:-18.469333pt;}
.ws1b{word-spacing:-18.433067pt;}
.ws20{word-spacing:-18.416533pt;}
.ws14{word-spacing:-18.408533pt;}
.ws10{word-spacing:-18.400000pt;}
.ws4f{word-spacing:-18.391467pt;}
.ws13{word-spacing:-18.383467pt;}
.ws2d{word-spacing:-18.170667pt;}
.wsb{word-spacing:-18.112000pt;}
.ws50{word-spacing:-18.106667pt;}
.ws1f{word-spacing:-18.064000pt;}
.ws16{word-spacing:-18.053333pt;}
.ws47{word-spacing:-17.834667pt;}
.ws45{word-spacing:-17.776000pt;}
.ws46{word-spacing:-17.461333pt;}
.ws35{word-spacing:-17.424000pt;}
.ws24{word-spacing:-16.640000pt;}
.ws25{word-spacing:-16.192000pt;}
.ws21{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws22{word-spacing:-15.872000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws2b{word-spacing:-14.149333pt;}
.ws29{word-spacing:-13.534613pt;}
.ws2c{word-spacing:-13.327360pt;}
.ws31{word-spacing:-13.306880pt;}
.ws2a{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.wse{word-spacing:-10.720000pt;}
.ws3f{word-spacing:-9.211750pt;}
.ws44{word-spacing:-8.731192pt;}
.ws3e{word-spacing:-5.009851pt;}
.ws3d{word-spacing:-4.785044pt;}
.ws43{word-spacing:-3.913835pt;}
.ws42{word-spacing:-3.738209pt;}
.ws3c{word-spacing:-0.035764pt;}
.ws49{word-spacing:-0.032390pt;}
.ws4e{word-spacing:-0.029576pt;}
.ws3b{word-spacing:-0.027252pt;}
.ws4d{word-spacing:-0.026894pt;}
.ws1{word-spacing:0.000000pt;}
.ws4b{word-spacing:37.388906pt;}
.ws3a{word-spacing:77.195276pt;}
.ws39{word-spacing:84.956145pt;}
.ws4a{word-spacing:348.507084pt;}
.ws4c{word-spacing:355.465918pt;}
._5c{margin-left:-164.089673pt;}
._5d{margin-left:-162.383547pt;}
._5b{margin-left:-157.275085pt;}
._5a{margin-left:-152.176779pt;}
._63{margin-left:-128.191404pt;}
._64{margin-left:-126.858530pt;}
._62{margin-left:-122.867659pt;}
._61{margin-left:-118.884720pt;}
._67{margin-left:-17.616640pt;}
._65{margin-left:-5.963733pt;}
._14{margin-left:-5.019520pt;}
._8{margin-left:-3.444480pt;}
._7{margin-left:-1.946880pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.685333pt;}
._2{width:3.294720pt;}
._17{width:4.904107pt;}
._3{width:6.514560pt;}
._16{width:7.410560pt;}
._19{width:8.910720pt;}
._6{width:10.178560pt;}
._22{width:11.219840pt;}
._1c{width:12.130560pt;}
._1d{width:13.362987pt;}
._18{width:15.050880pt;}
._1a{width:16.021760pt;}
._9{width:17.147520pt;}
._1e{width:19.693440pt;}
._1f{width:21.021227pt;}
._38{width:21.939840pt;}
._20{width:23.137920pt;}
._55{width:24.031360pt;}
._36{width:24.935040pt;}
._37{width:26.135680pt;}
._1b{width:27.025493pt;}
._b{width:27.968213pt;}
._a{width:29.005227pt;}
._21{width:30.267947pt;}
._39{width:31.358293pt;}
._3b{width:32.358613pt;}
._3a{width:33.297493pt;}
._43{width:34.516907pt;}
._27{width:35.418240pt;}
._3c{width:36.838400pt;}
._12{width:38.113920pt;}
._13{width:39.012480pt;}
._3d{width:40.496427pt;}
._4a{width:41.454507pt;}
._34{width:42.831360pt;}
._35{width:44.254080pt;}
._3e{width:45.727147pt;}
._42{width:46.618453pt;}
._23{width:48.110080pt;}
._24{width:49.081813pt;}
._33{width:50.053120pt;}
._30{width:51.181867pt;}
._3f{width:52.228267pt;}
._4b{width:53.384320pt;}
._40{width:55.092907pt;}
._41{width:56.271147pt;}
._56{width:57.710507pt;}
._11{width:58.628480pt;}
._4d{width:60.133760pt;}
._48{width:61.288747pt;}
._e{width:62.634027pt;}
._f{width:63.697280pt;}
._44{width:64.920960pt;}
._4{width:67.089920pt;}
._5{width:68.365440pt;}
._60{width:69.411200pt;}
._66{width:70.361173pt;}
._51{width:71.285760pt;}
._4f{width:72.184320pt;}
._50{width:73.119787pt;}
._52{width:74.164053pt;}
._d{width:75.479040pt;}
._c{width:76.527360pt;}
._6b{width:81.544320pt;}
._28{width:83.116800pt;}
._49{width:84.164053pt;}
._5f{width:87.160320pt;}
._10{width:89.479040pt;}
._53{width:90.941227pt;}
._54{width:92.470827pt;}
._32{width:94.641067pt;}
._31{width:95.696640pt;}
._45{width:101.761920pt;}
._47{width:102.655360pt;}
._46{width:103.653547pt;}
._68{width:105.239467pt;}
._57{width:107.827200pt;}
._4e{width:112.245120pt;}
._6e{width:125.593600pt;}
._2b{width:127.892480pt;}
._2a{width:128.868480pt;}
._69{width:131.043200pt;}
._6a{width:132.511787pt;}
._58{width:154.549760pt;}
._59{width:155.950933pt;}
._2f{width:163.811627pt;}
._15{width:167.281920pt;}
._25{width:178.496000pt;}
._26{width:182.976000pt;}
._6c{width:200.603520pt;}
._6d{width:201.576960pt;}
._29{width:209.813760pt;}
._2e{width:219.574827pt;}
._2c{width:243.509760pt;}
._2d{width:244.857600pt;}
._4c{width:305.248000pt;}
._5e{width:2384.533333pt;}
.fs10{font-size:14.713665pt;}
.fse{font-size:18.834028pt;}
.fs13{font-size:24.276587pt;}
.fs15{font-size:26.894077pt;}
.fsc{font-size:27.251944pt;}
.fsa{font-size:29.379707pt;}
.fs14{font-size:29.575963pt;}
.fs12{font-size:32.389887pt;}
.fs11{font-size:32.824030pt;}
.fs8{font-size:34.560000pt;}
.fsf{font-size:34.630639pt;}
.fsd{font-size:35.763593pt;}
.fs7{font-size:42.880000pt;}
.fsb{font-size:45.977334pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.fs5{font-size:106.880000pt;}
.fs4{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:0.480000pt;}
.y1fa{bottom:2.015791pt;}
.y6{bottom:2.560000pt;}
.y2{bottom:3.520000pt;}
.y82{bottom:4.000000pt;}
.y289{bottom:4.160000pt;}
.y1e6{bottom:4.650482pt;}
.y6f{bottom:4.800000pt;}
.y1ab{bottom:5.952875pt;}
.yae{bottom:6.240000pt;}
.yc4{bottom:6.280000pt;}
.yb6{bottom:6.400000pt;}
.y17d{bottom:7.200000pt;}
.y18c{bottom:7.240000pt;}
.y17b{bottom:7.360000pt;}
.yd2{bottom:7.680000pt;}
.y180{bottom:7.840000pt;}
.yd6{bottom:8.640000pt;}
.yd9{bottom:9.120000pt;}
.y1e5{bottom:9.319459pt;}
.y179{bottom:9.440000pt;}
.y177{bottom:11.680000pt;}
.y1aa{bottom:11.929335pt;}
.y287{bottom:14.720000pt;}
.y285{bottom:14.760000pt;}
.y282{bottom:14.880000pt;}
.y5{bottom:15.040000pt;}
.yce{bottom:15.360000pt;}
.y19a{bottom:16.035728pt;}
.y280{bottom:16.160000pt;}
.yc8{bottom:16.800000pt;}
.yac{bottom:16.960000pt;}
.yd4{bottom:17.760000pt;}
.yd8{bottom:18.240000pt;}
.y2a6{bottom:19.520000pt;}
.y23c{bottom:19.681233pt;}
.y1bf{bottom:21.360700pt;}
.y6d{bottom:21.920000pt;}
.y56{bottom:22.560000pt;}
.y28c{bottom:23.040000pt;}
.y1ac{bottom:23.869208pt;}
.y176{bottom:24.320000pt;}
.ycf{bottom:24.640000pt;}
.y81{bottom:25.440000pt;}
.yd1{bottom:26.080000pt;}
.y173{bottom:26.240000pt;}
.y1e7{bottom:26.653148pt;}
.yd5{bottom:27.040000pt;}
.ybc{bottom:27.360000pt;}
.yc1{bottom:27.400000pt;}
.yaa{bottom:27.520000pt;}
.y27d{bottom:29.600000pt;}
.y191{bottom:30.163683pt;}
.y4{bottom:30.880000pt;}
.y186{bottom:31.840000pt;}
.y175{bottom:33.280000pt;}
.y23d{bottom:34.803368pt;}
.y23f{bottom:35.410120pt;}
.yc6{bottom:37.920000pt;}
.yab{bottom:38.080000pt;}
.y192{bottom:39.935058pt;}
.y6c{bottom:40.320000pt;}
.y1e8{bottom:41.656204pt;}
.y80{bottom:46.880000pt;}
.y2a3{bottom:47.040000pt;}
.y2a0{bottom:47.066667pt;}
.y7{bottom:48.160000pt;}
.yb9{bottom:48.480000pt;}
.yad{bottom:48.640000pt;}
.yc0{bottom:48.680000pt;}
.y23e{bottom:49.613671pt;}
.y1ad{bottom:49.903188pt;}
.y172{bottom:50.880000pt;}
.y247{bottom:55.190111pt;}
.y24a{bottom:56.206776pt;}
.y1e9{bottom:56.317808pt;}
.yb1{bottom:59.200000pt;}
.yc2{bottom:59.240000pt;}
.y246{bottom:62.045668pt;}
.y193{bottom:67.870521pt;}
.y1c9{bottom:68.303759pt;}
.y12a{bottom:68.992000pt;}
.yb2{bottom:69.760000pt;}
.ybf{bottom:69.800000pt;}
.y1ea{bottom:71.324391pt;}
.y24b{bottom:71.328911pt;}
.y240{bottom:71.836229pt;}
.y24d{bottom:71.937692pt;}
.y1e3{bottom:72.512000pt;}
.y37{bottom:72.832000pt;}
.y13a{bottom:73.632000pt;}
.y245{bottom:74.481047pt;}
.y171{bottom:75.680000pt;}
.y1ae{bottom:75.937671pt;}
.y160{bottom:76.512000pt;}
.y254{bottom:76.902645pt;}
.y1c8{bottom:77.687454pt;}
.y276{bottom:77.952000pt;}
.yf5{bottom:79.232000pt;}
.y16b{bottom:79.392000pt;}
.yb0{bottom:80.320000pt;}
.y11e{bottom:80.352000pt;}
.y103{bottom:81.472000pt;}
.y1c0{bottom:84.090445pt;}
.y129{bottom:84.352000pt;}
.y69{bottom:84.672000pt;}
.y21f{bottom:85.472000pt;}
.y24c{bottom:86.142596pt;}
.y1eb{bottom:86.327054pt;}
.y16f{bottom:86.912000pt;}
.y202{bottom:87.697955pt;}
.y1fb{bottom:87.697969pt;}
.y244{bottom:88.077169pt;}
.y128{bottom:88.992000pt;}
.y20e{bottom:89.152000pt;}
.y54{bottom:89.952000pt;}
.yb8{bottom:90.880000pt;}
.ybe{bottom:90.920000pt;}
.yb3{bottom:91.040000pt;}
.y18{bottom:91.072000pt;}
.y29e{bottom:92.352000pt;}
.y125{bottom:93.152000pt;}
.y241{bottom:94.259684pt;}
.y1c7{bottom:94.327202pt;}
.yca{bottom:94.592000pt;}
.y86{bottom:94.912000pt;}
.y194{bottom:95.804494pt;}
.ya6{bottom:97.472000pt;}
.y242{bottom:97.506520pt;}
.y139{bottom:99.712000pt;}
.y243{bottom:100.604542pt;}
.y127{bottom:100.832000pt;}
.y1ec{bottom:101.321877pt;}
.y1af{bottom:101.961113pt;}
.y1a8{bottom:103.072000pt;}
.y1a9{bottom:103.161333pt;}
.y1c6{bottom:104.147464pt;}
.y13e{bottom:104.352000pt;}
.y1e2{bottom:104.672000pt;}
.y36{bottom:104.992000pt;}
.y201{bottom:105.029227pt;}
.y102{bottom:106.112000pt;}
.y15f{bottom:108.672000pt;}
.y1b7{bottom:109.697392pt;}
.y275{bottom:110.112000pt;}
.y1b8{bottom:110.123924pt;}
.y21e{bottom:110.272000pt;}
.y1c5{bottom:110.550455pt;}
.yf4{bottom:111.392000pt;}
.y16a{bottom:111.552000pt;}
.y1c1{bottom:111.830050pt;}
.ybb{bottom:112.000000pt;}
.y1ff{bottom:112.026813pt;}
.yc3{bottom:112.040000pt;}
.yb5{bottom:112.160000pt;}
.y1b9{bottom:112.256582pt;}
.y11d{bottom:112.512000pt;}
.y1ba{bottom:113.104627pt;}
.y29d{bottom:114.432000pt;}
.y138{bottom:114.912000pt;}
.y1fc{bottom:115.033624pt;}
.y17{bottom:115.392000pt;}
.y1ed{bottom:115.995242pt;}
.y25b{bottom:116.672000pt;}
.y68{bottom:116.832000pt;}
.y24e{bottom:116.845482pt;}
.y200{bottom:118.361879pt;}
.y1bb{bottom:118.654555pt;}
.y16e{bottom:119.072000pt;}
.y137{bottom:119.552000pt;}
.y1c3{bottom:119.934150pt;}
.y1c4{bottom:120.360681pt;}
.y1bc{bottom:121.213744pt;}
.y20d{bottom:121.472000pt;}
.y234{bottom:121.763084pt;}
.y53{bottom:122.112000pt;}
.y1bd{bottom:122.488321pt;}
.y1be{bottom:123.341384pt;}
.y195{bottom:123.741448pt;}
.y1b6{bottom:124.875804pt;}
.y124{bottom:125.472000pt;}
.y1c2{bottom:125.484078pt;}
.y1fe{bottom:126.033743pt;}
.yc9{bottom:126.752000pt;}
.y85{bottom:127.072000pt;}
.y1b0{bottom:127.994592pt;}
.ya5{bottom:129.632000pt;}
.y136{bottom:130.272000pt;}
.y199{bottom:130.749533pt;}
.y101{bottom:130.752000pt;}
.y1ee{bottom:130.997905pt;}
.y24f{bottom:131.043622pt;}
.y143{bottom:131.392000pt;}
.yba{bottom:133.146667pt;}
.yb4{bottom:133.280000pt;}
.y1fd{bottom:134.030982pt;}
.y135{bottom:134.906667pt;}
.y1f5{bottom:135.359987pt;}
.y23b{bottom:136.116802pt;}
.y1e1{bottom:136.826667pt;}
.y35{bottom:137.146667pt;}
.y16{bottom:139.706667pt;}
.y15e{bottom:140.986667pt;}
.y274{bottom:142.266667pt;}
.y21d{bottom:142.426667pt;}
.y1f6{bottom:142.702535pt;}
.y1f7{bottom:143.368960pt;}
.yf3{bottom:143.706667pt;}
.y11c{bottom:144.666667pt;}
.y1f8{bottom:144.697911pt;}
.yc7{bottom:144.826667pt;}
.y253{bottom:145.201176pt;}
.y250{bottom:145.248526pt;}
.y134{bottom:145.626667pt;}
.y1ef{bottom:145.992727pt;}
.y141{bottom:146.746667pt;}
.y238{bottom:147.379261pt;}
.y29c{bottom:147.386667pt;}
.y1f9{bottom:148.037931pt;}
.y67{bottom:148.986667pt;}
.y235{bottom:149.313834pt;}
.y123{bottom:150.106667pt;}
.y248{bottom:150.118778pt;}
.y133{bottom:150.266667pt;}
.y16d{bottom:151.226667pt;}
.y196{bottom:151.676911pt;}
.y20c{bottom:153.626667pt;}
.y1b1{bottom:154.028071pt;}
.y52{bottom:154.426667pt;}
.y100{bottom:155.386667pt;}
.yee{bottom:157.466667pt;}
.y84{bottom:159.226667pt;}
.y23a{bottom:159.960748pt;}
.y132{bottom:160.986667pt;}
.y1f0{bottom:160.995390pt;}
.ya4{bottom:161.946667pt;}
.y131{bottom:165.626667pt;}
.y15{bottom:165.946667pt;}
.y237{bottom:167.732859pt;}
.y249{bottom:168.733967pt;}
.y1e0{bottom:168.986667pt;}
.y34{bottom:169.466667pt;}
.y15d{bottom:173.146667pt;}
.y239{bottom:173.211894pt;}
.y21c{bottom:174.586667pt;}
.y203{bottom:174.699301pt;}
.y122{bottom:174.746667pt;}
.y1f1{bottom:175.668756pt;}
.yf2{bottom:175.866667pt;}
.y11b{bottom:176.986667pt;}
.y130{bottom:177.466667pt;}
.y197{bottom:179.610883pt;}
.y1b2{bottom:180.046496pt;}
.yff{bottom:180.186667pt;}
.y236{bottom:180.706672pt;}
.y66{bottom:181.306667pt;}
.y1f3{bottom:183.332776pt;}
.y278{bottom:183.386667pt;}
.y25a{bottom:183.866667pt;}
.y20b{bottom:185.786667pt;}
.y51{bottom:186.586667pt;}
.yed{bottom:189.626667pt;}
.y14{bottom:190.586667pt;}
.y1f2{bottom:190.663578pt;}
.y83{bottom:191.386667pt;}
.ya3{bottom:194.106667pt;}
.y231{bottom:194.979218pt;}
.y121{bottom:199.386667pt;}
.y1df{bottom:201.146667pt;}
.y33{bottom:201.626667pt;}
.y29b{bottom:202.266667pt;}
.yfe{bottom:204.826667pt;}
.y15c{bottom:205.306667pt;}
.y1b3{bottom:206.079975pt;}
.y21b{bottom:206.746667pt;}
.y198{bottom:207.549327pt;}
.y252{bottom:207.608054pt;}
.yf1{bottom:208.026667pt;}
.yc5{bottom:208.986667pt;}
.y11a{bottom:209.146667pt;}
.y7f{bottom:209.626667pt;}
.y233{bottom:210.198758pt;}
.y65{bottom:213.466667pt;}
.y13{bottom:215.226667pt;}
.y277{bottom:215.546667pt;}
.y259{bottom:216.026667pt;}
.y20a{bottom:217.946667pt;}
.y50{bottom:218.746667pt;}
.y232{bottom:219.283132pt;}
.y1b5{bottom:219.312489pt;}
.yec{bottom:221.946667pt;}
.y1ca{bottom:223.621461pt;}
.y22c{bottom:223.896344pt;}
.y120{bottom:224.186667pt;}
.y29a{bottom:224.506667pt;}
.ya2{bottom:226.266667pt;}
.y18f{bottom:226.586667pt;}
.yfd{bottom:229.466667pt;}
.y1b4{bottom:232.118472pt;}
.y1de{bottom:233.466667pt;}
.y32{bottom:233.786667pt;}
.y15b{bottom:237.466667pt;}
.y22d{bottom:238.608566pt;}
.y273{bottom:238.906667pt;}
.y21a{bottom:239.066667pt;}
.y12{bottom:239.866667pt;}
.yf0{bottom:240.186667pt;}
.y169{bottom:240.346667pt;}
.y119{bottom:241.306667pt;}
.y18e{bottom:244.666667pt;}
.y64{bottom:245.626667pt;}
.y258{bottom:248.186667pt;}
.y11f{bottom:248.826667pt;}
.y209{bottom:250.106667pt;}
.y4f{bottom:250.906667pt;}
.y22e{bottom:253.828106pt;}
.yeb{bottom:254.106667pt;}
.yfc{bottom:254.266667pt;}
.y230{bottom:254.335424pt;}
.y299{bottom:257.306667pt;}
.y12f{bottom:257.626667pt;}
.ya1{bottom:258.426667pt;}
.y1dd{bottom:265.626667pt;}
.y31{bottom:265.946667pt;}
.y22f{bottom:268.540328pt;}
.y15a{bottom:269.786667pt;}
.y18d{bottom:269.946667pt;}
.y272{bottom:271.066667pt;}
.y219{bottom:271.226667pt;}
.y11{bottom:271.866667pt;}
.yef{bottom:272.506667pt;}
.y118{bottom:273.466667pt;}
.y7d{bottom:274.586667pt;}
.y63{bottom:277.786667pt;}
.yfb{bottom:278.906667pt;}
.y298{bottom:279.386667pt;}
.y257{bottom:281.786667pt;}
.y208{bottom:282.426667pt;}
.y4e{bottom:283.226667pt;}
.yea{bottom:286.266667pt;}
.ya0{bottom:290.746667pt;}
.ybd{bottom:294.266667pt;}
.y18b{bottom:295.386667pt;}
.y1dc{bottom:297.786667pt;}
.y30{bottom:298.266667pt;}
.y159{bottom:301.986667pt;}
.y271{bottom:303.266667pt;}
.y218{bottom:303.426667pt;}
.yfa{bottom:303.586667pt;}
.y168{bottom:304.706667pt;}
.y117{bottom:305.666667pt;}
.y62{bottom:310.146667pt;}
.y297{bottom:312.386667pt;}
.y22b{bottom:313.197840pt;}
.y256{bottom:313.986667pt;}
.y207{bottom:314.626667pt;}
.y4d{bottom:315.426667pt;}
.ye9{bottom:318.466667pt;}
.y10{bottom:320.706667pt;}
.y126{bottom:322.146667pt;}
.y9f{bottom:322.946667pt;}
.yf9{bottom:328.226667pt;}
.y1db{bottom:329.986667pt;}
.y2f{bottom:330.466667pt;}
.y158{bottom:334.146667pt;}
.y296{bottom:334.466667pt;}
.y22a{bottom:335.012514pt;}
.y217{bottom:335.586667pt;}
.y167{bottom:336.866667pt;}
.y116{bottom:337.986667pt;}
.y61{bottom:342.306667pt;}
.y229{bottom:345.409151pt;}
.y18a{bottom:346.146667pt;}
.y206{bottom:346.786667pt;}
.y4c{bottom:347.586667pt;}
.ye8{bottom:350.786667pt;}
.yf8{bottom:353.026667pt;}
.y9e{bottom:355.106667pt;}
.y1da{bottom:362.306667pt;}
.y2e{bottom:362.626667pt;}
.y221{bottom:362.664728pt;}
.y157{bottom:366.306667pt;}
.y224{bottom:366.980313pt;}
.y295{bottom:367.266667pt;}
.y270{bottom:367.746667pt;}
.y216{bottom:367.906667pt;}
.y166{bottom:369.186667pt;}
.yf{bottom:369.506667pt;}
.y115{bottom:370.146667pt;}
.y189{bottom:371.426667pt;}
.y1a7{bottom:373.826667pt;}
.y60{bottom:374.466667pt;}
.yf7{bottom:377.666667pt;}
.y205{bottom:378.946667pt;}
.y4b{bottom:379.746667pt;}
.y223{bottom:382.707171pt;}
.ye7{bottom:382.946667pt;}
.y13d{bottom:386.466667pt;}
.y9d{bottom:387.266667pt;}
.y294{bottom:389.506667pt;}
.y228{bottom:393.354084pt;}
.y1d9{bottom:394.466667pt;}
.y2d{bottom:394.786667pt;}
.y188{bottom:396.866667pt;}
.y222{bottom:396.912075pt;}
.y156{bottom:398.626667pt;}
.y26f{bottom:399.906667pt;}
.y215{bottom:400.066667pt;}
.y165{bottom:401.346667pt;}
.yf6{bottom:402.306667pt;}
.y225{bottom:404.521845pt;}
.y1a6{bottom:405.986667pt;}
.y5f{bottom:406.626667pt;}
.y204{bottom:407.106667pt;}
.y251{bottom:407.721330pt;}
.y4a{bottom:412.066667pt;}
.ye6{bottom:415.106667pt;}
.ye{bottom:415.426667pt;}
.y9c{bottom:419.586667pt;}
.y226{bottom:420.708671pt;}
.yb7{bottom:421.986667pt;}
.y187{bottom:422.146667pt;}
.y293{bottom:422.306667pt;}
.y1d8{bottom:426.626667pt;}
.y227{bottom:426.843837pt;}
.y2c{bottom:426.946667pt;}
.y155{bottom:430.786667pt;}
.y214{bottom:432.226667pt;}
.y26e{bottom:433.346667pt;}
.y164{bottom:433.506667pt;}
.y114{bottom:434.466667pt;}
.y1a5{bottom:438.146667pt;}
.y5e{bottom:438.786667pt;}
.yd{bottom:441.826667pt;}
.y49{bottom:444.226667pt;}
.y292{bottom:444.546667pt;}
.ye5{bottom:447.266667pt;}
.y185{bottom:447.586667pt;}
.y9b{bottom:451.746667pt;}
.y1d7{bottom:458.786667pt;}
.y2b{bottom:459.266667pt;}
.y154{bottom:462.946667pt;}
.y213{bottom:464.386667pt;}
.y163{bottom:465.666667pt;}
.y113{bottom:466.786667pt;}
.y26d{bottom:466.946667pt;}
.y1a4{bottom:470.466667pt;}
.y5d{bottom:471.106667pt;}
.y48{bottom:476.386667pt;}
.y291{bottom:477.346667pt;}
.y2b3{bottom:478.466667pt;}
.ye4{bottom:479.586667pt;}
.y12e{bottom:483.106667pt;}
.y9a{bottom:483.906667pt;}
.y5c{bottom:489.186667pt;}
.y1d6{bottom:491.106667pt;}
.y2a{bottom:491.426667pt;}
.y153{bottom:495.106667pt;}
.y212{bottom:496.546667pt;}
.y162{bottom:497.986667pt;}
.y112{bottom:498.946667pt;}
.y26c{bottom:499.106667pt;}
.y290{bottom:499.426667pt;}
.y7c{bottom:502.466667pt;}
.y1a3{bottom:502.626667pt;}
.y2b2{bottom:504.226667pt;}
.y5b{bottom:508.226667pt;}
.y47{bottom:508.546667pt;}
.ye3{bottom:511.746667pt;}
.y184{bottom:512.386667pt;}
.y140{bottom:515.266667pt;}
.y99{bottom:516.066667pt;}
.y1d5{bottom:523.266667pt;}
.y29{bottom:523.586667pt;}
.y5a{bottom:527.266667pt;}
.y211{bottom:528.866667pt;}
.y161{bottom:530.146667pt;}
.y2b1{bottom:530.466667pt;}
.y111{bottom:531.106667pt;}
.y28f{bottom:532.386667pt;}
.y26b{bottom:532.706667pt;}
.y7b{bottom:534.626667pt;}
.y1a2{bottom:534.786667pt;}
.y46{bottom:540.733333pt;}
.ye2{bottom:543.933333pt;}
.y183{bottom:544.573333pt;}
.y59{bottom:546.333333pt;}
.y98{bottom:548.253333pt;}
.y28e{bottom:554.493333pt;}
.y1d4{bottom:555.453333pt;}
.y28{bottom:555.773333pt;}
.y2b0{bottom:556.733333pt;}
.y152{bottom:559.613333pt;}
.y210{bottom:561.053333pt;}
.y16c{bottom:562.333333pt;}
.y110{bottom:563.293333pt;}
.y26a{bottom:564.893333pt;}
.y58{bottom:565.373333pt;}
.y7a{bottom:566.973333pt;}
.yaf{bottom:570.653333pt;}
.y45{bottom:573.053333pt;}
.ye1{bottom:576.093333pt;}
.y182{bottom:576.733333pt;}
.y12d{bottom:579.773333pt;}
.y97{bottom:580.573333pt;}
.y2af{bottom:582.813333pt;}
.y55{bottom:584.573333pt;}
.y28d{bottom:587.293333pt;}
.y1d3{bottom:587.613333pt;}
.y27{bottom:588.093333pt;}
.y20f{bottom:589.213333pt;}
.y220{bottom:590.080000pt;}
.y151{bottom:591.773333pt;}
.y10f{bottom:595.613333pt;}
.y269{bottom:598.493333pt;}
.y79{bottom:599.133333pt;}
.y1a1{bottom:599.293333pt;}
.y57{bottom:603.613333pt;}
.y44{bottom:605.213333pt;}
.y255{bottom:605.373333pt;}
.ye0{bottom:608.253333pt;}
.y181{bottom:608.893333pt;}
.y2ae{bottom:609.053333pt;}
.y28b{bottom:609.533333pt;}
.y142{bottom:611.933333pt;}
.y96{bottom:612.733333pt;}
.y1d2{bottom:619.933333pt;}
.y26{bottom:620.253333pt;}
.y150{bottom:623.933333pt;}
.y17f{bottom:626.973333pt;}
.y10e{bottom:627.773333pt;}
.y268{bottom:630.653333pt;}
.y78{bottom:631.293333pt;}
.y1a0{bottom:631.453333pt;}
.y2ad{bottom:635.293333pt;}
.y43{bottom:637.373333pt;}
.ydf{bottom:640.573333pt;}
.y95{bottom:644.893333pt;}
.y28a{bottom:650.653333pt;}
.y1d1{bottom:652.093333pt;}
.y25{bottom:652.413333pt;}
.y17e{bottom:652.893333pt;}
.y14f{bottom:656.093333pt;}
.y10d{bottom:659.933333pt;}
.y2ac{bottom:661.533333pt;}
.y77{bottom:663.453333pt;}
.y19f{bottom:663.613333pt;}
.y267{bottom:664.253333pt;}
.y42{bottom:669.533333pt;}
.yde{bottom:672.733333pt;}
.y94{bottom:677.053333pt;}
.y17c{bottom:678.333333pt;}
.y1d0{bottom:684.253333pt;}
.y24{bottom:684.573333pt;}
.y2ab{bottom:687.773333pt;}
.y14e{bottom:688.413333pt;}
.y10c{bottom:692.093333pt;}
.y76{bottom:695.613333pt;}
.y19e{bottom:695.773333pt;}
.y266{bottom:696.413333pt;}
.y41{bottom:701.853333pt;}
.y17a{bottom:703.613333pt;}
.ydd{bottom:704.893333pt;}
.y288{bottom:705.533333pt;}
.y93{bottom:709.373333pt;}
.y2aa{bottom:713.853333pt;}
.y1cf{bottom:716.413333pt;}
.y8b{bottom:716.893333pt;}
.ya9{bottom:719.453333pt;}
.y14d{bottom:720.573333pt;}
.y23{bottom:723.613333pt;}
.y10b{bottom:724.413333pt;}
.y286{bottom:727.773333pt;}
.y75{bottom:727.933333pt;}
.y19d{bottom:728.093333pt;}
.y178{bottom:729.053333pt;}
.y265{bottom:730.013333pt;}
.y40{bottom:734.013333pt;}
.ydc{bottom:737.053333pt;}
.y2a9{bottom:740.093333pt;}
.y92{bottom:741.533333pt;}
.y1ce{bottom:748.573333pt;}
.y8a{bottom:749.053333pt;}
.y14c{bottom:752.733333pt;}
.y22{bottom:755.773333pt;}
.y10a{bottom:756.573333pt;}
.y74{bottom:760.093333pt;}
.y19c{bottom:760.253333pt;}
.y284{bottom:760.573333pt;}
.y264{bottom:762.173333pt;}
.y3f{bottom:766.173333pt;}
.y2a8{bottom:766.333333pt;}
.ydb{bottom:769.373333pt;}
.y91{bottom:773.693333pt;}
.y1cd{bottom:780.933333pt;}
.y89{bottom:781.253333pt;}
.y14b{bottom:784.933333pt;}
.y170{bottom:786.533333pt;}
.ya8{bottom:787.653333pt;}
.y21{bottom:787.973333pt;}
.y190{bottom:788.413333pt;}
.y19b{bottom:788.453333pt;}
.y109{bottom:788.773333pt;}
.y73{bottom:792.293333pt;}
.y283{bottom:793.573333pt;}
.y263{bottom:794.373333pt;}
.y3e{bottom:798.373333pt;}
.yda{bottom:801.573333pt;}
.y90{bottom:805.893333pt;}
.y2a7{bottom:807.013333pt;}
.y14a{bottom:808.133333pt;}
.ya7{bottom:809.093333pt;}
.y1cc{bottom:813.093333pt;}
.y88{bottom:813.413333pt;}
.yd7{bottom:819.653333pt;}
.y20{bottom:820.133333pt;}
.y108{bottom:820.933333pt;}
.y72{bottom:824.453333pt;}
.y262{bottom:826.533333pt;}
.y281{bottom:828.293333pt;}
.y174{bottom:828.933333pt;}
.y2a5{bottom:829.253333pt;}
.y3d{bottom:830.693333pt;}
.y149{bottom:831.013333pt;}
.y13f{bottom:837.413333pt;}
.y8f{bottom:838.213333pt;}
.y1cb{bottom:841.253333pt;}
.y1e4{bottom:841.280000pt;}
.y71{bottom:842.693333pt;}
.y87{bottom:845.573333pt;}
.yc{bottom:850.693333pt;}
.y1f{bottom:852.293333pt;}
.y107{bottom:853.093333pt;}
.y1f4{bottom:858.243876pt;}
.y148{bottom:859.653333pt;}
.y261{bottom:860.133333pt;}
.y27f{bottom:861.253333pt;}
.y3c{bottom:862.853333pt;}
.y70{bottom:863.013333pt;}
.y2a4{bottom:866.853333pt;}
.yd3{bottom:868.133333pt;}
.y13c{bottom:869.573333pt;}
.y8e{bottom:870.373333pt;}
.y1e{bottom:877.893333pt;}
.y6e{bottom:883.493333pt;}
.y106{bottom:885.413333pt;}
.yb{bottom:885.573333pt;}
.y2a2{bottom:888.933333pt;}
.y147{bottom:891.813333pt;}
.y260{bottom:892.293333pt;}
.y3b{bottom:895.013333pt;}
.y27e{bottom:896.133333pt;}
.y8d{bottom:902.533333pt;}
.y6b{bottom:903.813333pt;}
.y1d{bottom:910.053333pt;}
.yd0{bottom:915.653333pt;}
.y105{bottom:917.573333pt;}
.y27c{bottom:918.213333pt;}
.y146{bottom:924.133333pt;}
.y25f{bottom:924.453333pt;}
.ya{bottom:924.613333pt;}
.y3a{bottom:927.173333pt;}
.y12c{bottom:933.893333pt;}
.y8c{bottom:934.693333pt;}
.y1c{bottom:942.213333pt;}
.y104{bottom:949.733333pt;}
.y2a1{bottom:954.053333pt;}
.y145{bottom:956.293333pt;}
.y25e{bottom:958.053333pt;}
.y39{bottom:959.493333pt;}
.ycd{bottom:961.573333pt;}
.y6a{bottom:966.853333pt;}
.y27b{bottom:972.613333pt;}
.y9{bottom:973.253333pt;}
.y1b{bottom:974.373333pt;}
.y29f{bottom:976.133333pt;}
.y144{bottom:980.933333pt;}
.y25d{bottom:990.213333pt;}
.y38{bottom:991.653333pt;}
.y27a{bottom:997.093333pt;}
.y13b{bottom:998.373333pt;}
.y1a{bottom:999.173333pt;}
.ycc{bottom:1007.973333pt;}
.y8{bottom:1018.240000pt;}
.y25c{bottom:1022.400000pt;}
.y279{bottom:1023.360000pt;}
.y19{bottom:1023.840000pt;}
.ycb{bottom:1026.400000pt;}
.y12b{bottom:1030.560000pt;}
.y3{bottom:1045.440000pt;}
.y1{bottom:1066.880000pt;}
.h42{height:11.035249pt;}
.h3e{height:14.125521pt;}
.h16{height:18.400000pt;}
.h18{height:18.432000pt;}
.h2{height:19.680000pt;}
.h50{height:21.440000pt;}
.h57{height:21.472000pt;}
.h3a{height:21.475303pt;}
.h55{height:21.600000pt;}
.h44{height:24.618022pt;}
.h36{height:24.640000pt;}
.h38{height:24.672000pt;}
.h35{height:24.800000pt;}
.h6{height:25.280000pt;}
.h47{height:25.319721pt;}
.h40{height:25.972979pt;}
.h3c{height:26.141650pt;}
.h34{height:26.880000pt;}
.h4d{height:28.049682pt;}
.h33{height:29.152000pt;}
.h4c{height:30.846805pt;}
.h54{height:32.160000pt;}
.h53{height:32.192000pt;}
.h52{height:32.320000pt;}
.h58{height:32.352000pt;}
.h3b{height:33.607455pt;}
.h46{height:33.781640pt;}
.h2c{height:33.918750pt;}
.h51{height:34.080000pt;}
.h48{height:35.810912pt;}
.h4a{height:36.406165pt;}
.h5b{height:36.960000pt;}
.h14{height:37.440000pt;}
.h49{height:37.840184pt;}
.h56{height:40.480000pt;}
.h32{height:41.760000pt;}
.h25{height:42.240000pt;}
.h4{height:43.343750pt;}
.h26{height:45.120000pt;}
.h4f{height:45.600000pt;}
.h2d{height:46.817187pt;}
.h27{height:46.880000pt;}
.h11{height:47.085938pt;}
.h2b{height:47.109375pt;}
.h3{height:47.125000pt;}
.h28{height:47.840000pt;}
.h10{height:48.585000pt;}
.h37{height:49.280000pt;}
.h31{height:50.720000pt;}
.h2e{height:52.134375pt;}
.hf{height:52.138125pt;}
.h4b{height:54.128474pt;}
.h1b{height:55.200000pt;}
.h4e{height:56.269687pt;}
.h5{height:58.563750pt;}
.h2f{height:60.288750pt;}
.h17{height:62.812500pt;}
.h24{height:63.520000pt;}
.h1f{height:63.552000pt;}
.h1d{height:64.320000pt;}
.h5a{height:64.480000pt;}
.h15{height:64.500000pt;}
.h59{height:64.512000pt;}
.h29{height:64.752187pt;}
.h13{height:65.995312pt;}
.h19{height:66.511042pt;}
.h12{height:73.454062pt;}
.he{height:73.490625pt;}
.h1a{height:73.989375pt;}
.hd{height:74.419375pt;}
.h8{height:74.477812pt;}
.hc{height:75.465000pt;}
.h5c{height:76.671562pt;}
.h1e{height:76.964840pt;}
.h2a{height:77.951250pt;}
.hb{height:80.786250pt;}
.h23{height:84.640000pt;}
.h30{height:93.120000pt;}
.h7{height:96.750000pt;}
.h9{height:98.296875pt;}
.ha{height:112.713750pt;}
.h22{height:126.912000pt;}
.h21{height:148.026667pt;}
.h20{height:148.160000pt;}
.h43{height:178.044474pt;}
.h41{height:200.000000pt;}
.h1c{height:212.506667pt;}
.h3f{height:227.903336pt;}
.h39{height:252.796342pt;}
.h3d{height:256.000000pt;}
.h45{height:451.195101pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:36.032000pt;}
.w6{width:36.832000pt;}
.w2{width:62.400000pt;}
.wd{width:77.280000pt;}
.w26{width:89.760000pt;}
.w25{width:89.952000pt;}
.w24{width:90.080000pt;}
.w5{width:90.720000pt;}
.w10{width:112.320000pt;}
.we{width:112.512000pt;}
.w16{width:112.832000pt;}
.w15{width:121.792000pt;}
.w18{width:122.240000pt;}
.w17{width:122.272000pt;}
.wb{width:133.466667pt;}
.w12{width:137.920000pt;}
.wf{width:139.866667pt;}
.wa{width:141.120000pt;}
.w9{width:141.146667pt;}
.w1e{width:143.546667pt;}
.w1a{width:159.546667pt;}
.w19{width:159.706667pt;}
.w22{width:162.266667pt;}
.w14{width:165.466667pt;}
.w13{width:165.626667pt;}
.w7{width:169.466667pt;}
.w11{width:170.266667pt;}
.w21{width:186.266667pt;}
.w23{width:187.706667pt;}
.w20{width:190.746667pt;}
.w1b{width:216.706667pt;}
.w1c{width:263.546667pt;}
.w1f{width:377.666667pt;}
.w8{width:417.026667pt;}
.w27{width:511.867891pt;}
.w2b{width:550.611983pt;}
.w2c{width:572.797917pt;}
.w29{width:580.917237pt;}
.w2a{width:595.983241pt;}
.w28{width:628.785695pt;}
.w2d{width:641.253333pt;}
.w3{width:712.960000pt;}
.w1d{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x78{left:6.720000pt;}
.x1{left:7.680000pt;}
.x87{left:9.442668pt;}
.x88{left:11.797336pt;}
.x86{left:14.152937pt;}
.xb9{left:29.946780pt;}
.x2b{left:33.413333pt;}
.x81{left:34.737934pt;}
.x7{left:39.333333pt;}
.x89{left:45.643896pt;}
.xba{left:58.179727pt;}
.xbb{left:59.388948pt;}
.x4{left:66.079988pt;}
.x2{left:70.080000pt;}
.x80{left:71.440889pt;}
.xbe{left:73.363569pt;}
.x5{left:75.519988pt;}
.x7f{left:77.179428pt;}
.x56{left:79.871988pt;}
.xbc{left:80.787480pt;}
.x14{left:81.791988pt;}
.x66{left:84.191988pt;}
.x7b{left:85.792000pt;}
.x6f{left:86.911988pt;}
.x4b{left:88.351988pt;}
.xc1{left:90.911988pt;}
.x6e{left:94.911988pt;}
.xd{left:98.591988pt;}
.xc{left:101.151988pt;}
.x3c{left:103.551988pt;}
.x48{left:105.791988pt;}
.xc0{left:106.911988pt;}
.xa7{left:110.633333pt;}
.x19{left:112.031988pt;}
.x13{left:113.311988pt;}
.x4f{left:116.031988pt;}
.x16{left:117.791988pt;}
.x9b{left:119.160295pt;}
.x9{left:122.111988pt;}
.x4a{left:126.111988pt;}
.x45{left:127.871988pt;}
.xc2{left:133.311988pt;}
.x27{left:136.800000pt;}
.x18{left:138.106655pt;}
.x7e{left:140.880000pt;}
.x67{left:141.786643pt;}
.x60{left:143.386643pt;}
.x10{left:147.226655pt;}
.x47{left:148.666655pt;}
.x71{left:153.146655pt;}
.x33{left:154.586655pt;}
.x46{left:160.506655pt;}
.x30{left:164.826655pt;}
.x29{left:165.786667pt;}
.x25{left:170.946667pt;}
.xbd{left:173.464837pt;}
.x4d{left:176.506655pt;}
.x34{left:180.026655pt;}
.xe{left:184.346655pt;}
.xa{left:185.946655pt;}
.x63{left:188.026655pt;}
.x51{left:189.946655pt;}
.x21{left:190.906667pt;}
.x8a{left:194.973579pt;}
.x6d{left:198.106643pt;}
.x3e{left:199.546655pt;}
.xaf{left:203.497665pt;}
.x5a{left:207.546643pt;}
.x2c{left:209.466655pt;}
.x5b{left:213.626655pt;}
.x4c{left:220.666655pt;}
.x8b{left:224.065574pt;}
.x75{left:227.706655pt;}
.xa9{left:230.577199pt;}
.x3a{left:233.626655pt;}
.x73{left:235.226655pt;}
.x43{left:236.506667pt;}
.xad{left:237.576721pt;}
.x4e{left:238.746655pt;}
.x37{left:241.626655pt;}
.x1a{left:244.666655pt;}
.x53{left:245.626655pt;}
.x26{left:247.266667pt;}
.x72{left:248.226655pt;}
.x40{left:250.306655pt;}
.x32{left:251.266655pt;}
.x82{left:252.231287pt;}
.x52{left:253.346655pt;}
.x3f{left:256.546655pt;}
.x36{left:257.826655pt;}
.xac{left:259.400806pt;}
.x77{left:261.986655pt;}
.x31{left:262.946655pt;}
.xbf{left:265.826655pt;}
.xaa{left:267.272356pt;}
.x50{left:268.226655pt;}
.x74{left:270.786655pt;}
.x2e{left:271.746655pt;}
.x3d{left:274.146655pt;}
.x15{left:275.746655pt;}
.x11{left:277.986655pt;}
.x76{left:278.946655pt;}
.x79{left:280.226667pt;}
.x1d{left:283.906667pt;}
.x70{left:290.306655pt;}
.xae{left:291.538137pt;}
.x22{left:304.066667pt;}
.x8c{left:306.608228pt;}
.x35{left:310.466655pt;}
.x38{left:311.586655pt;}
.x9c{left:312.957668pt;}
.x12{left:315.906655pt;}
.x17{left:316.866655pt;}
.x39{left:323.746655pt;}
.x3b{left:327.906655pt;}
.x8d{left:329.398342pt;}
.x2f{left:333.666655pt;}
.x9d{left:339.019035pt;}
.x1b{left:345.986655pt;}
.xf{left:347.586655pt;}
.x58{left:354.786643pt;}
.x59{left:360.866655pt;}
.x49{left:362.466655pt;}
.x64{left:365.186643pt;}
.xb4{left:370.335061pt;}
.xb7{left:373.823192pt;}
.x65{left:377.346655pt;}
.xab{left:378.625183pt;}
.x28{left:385.826667pt;}
.x2d{left:387.426655pt;}
.xb8{left:388.671012pt;}
.xb5{left:391.728942pt;}
.xb3{left:393.228840pt;}
.xb6{left:395.135684pt;}
.x8{left:396.866655pt;}
.xb0{left:407.367402pt;}
.x9e{left:415.760149pt;}
.x1e{left:425.693333pt;}
.xb2{left:426.656777pt;}
.x41{left:435.133333pt;}
.x7c{left:437.053333pt;}
.x8e{left:439.436765pt;}
.x54{left:441.213310pt;}
.x23{left:444.573333pt;}
.x55{left:447.293322pt;}
.x44{left:454.013333pt;}
.x8f{left:460.649099pt;}
.x99{left:463.001920pt;}
.xa8{left:469.909619pt;}
.x7a{left:471.613333pt;}
.x68{left:477.533310pt;}
.xb1{left:479.153175pt;}
.x90{left:485.035442pt;}
.x69{left:489.693322pt;}
.x91{left:495.240246pt;}
.x9f{left:502.182435pt;}
.x92{left:505.463503pt;}
.xa0{left:512.624473pt;}
.x93{left:514.884032pt;}
.xa1{left:522.296914pt;}
.x94{left:524.323015pt;}
.x6b{left:528.573310pt;}
.xa2{left:531.986845pt;}
.x95{left:533.771224pt;}
.x6c{left:540.733322pt;}
.xa3{left:541.685523pt;}
.x96{left:543.191753pt;}
.xa4{left:550.614602pt;}
.x2a{left:552.093333pt;}
.x42{left:558.013333pt;}
.x97{left:562.051265pt;}
.x1f{left:567.453333pt;}
.x9a{left:569.187258pt;}
.x98{left:571.499474pt;}
.x24{left:586.373333pt;}
.x84{left:588.741527pt;}
.x85{left:600.514882pt;}
.x5e{left:603.333310pt;}
.x5f{left:609.413322pt;}
.x7d{left:618.373333pt;}
.x83{left:652.773322pt;}
.x6{left:655.840000pt;}
.x1c{left:658.533322pt;}
.x61{left:668.453310pt;}
.x62{left:680.613322pt;}
.xb{left:681.893322pt;}
.xa6{left:683.493322pt;}
.xa5{left:686.853322pt;}
.x6a{left:701.573310pt;}
.x5c{left:707.653310pt;}
.x57{left:712.133310pt;}
.x5d{left:713.733322pt;}
.x20{left:718.213322pt;}
}




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