
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_fe2eacb85f224e9628ed7090.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8911d57ca4a46fa74f35913d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9043ada3918399ab5d0961d8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4d177b7d54cfdf1d5f858d52.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_995aac82ccac7e4adc148491.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861328;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_034fa6340788e593b8923224.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900391;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_f2f2ebb8daa8e3f642776aa5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_038a403afdc010bf0ddbfa2f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_7ba0c40ab9d69f7c6f923bfe.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_26636f481f2c3fe83e98a414.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.667000;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_5bcd7a80a76c14ec58bdf15f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.840332;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_78fb64038d26d02c102fd718.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_49124aef2614d488e5fbc963.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_fc72d3bc15e31aabd2de23ab.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_36cfba478c1fa59e7d59a0a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.904297;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;}
.mb{transform:matrix(0.000000,-0.249598,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249598,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249598,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.249802,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249802,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249802,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249862,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250207,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250207,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250207,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.md{transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249794,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250137,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250198,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250399,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250403,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);}
.ve{vertical-align:-67.680000px;}
.v18{vertical-align:-44.278380px;}
.v10{vertical-align:-40.683004px;}
.v7{vertical-align:-29.881908px;}
.vd{vertical-align:-26.999800px;}
.v13{vertical-align:-20.880000px;}
.v16{vertical-align:-18.000000px;}
.vc{vertical-align:-15.479400px;}
.v1c{vertical-align:-12.240000px;}
.v1e{vertical-align:-11.161800px;}
.v11{vertical-align:-10.079129px;}
.v1b{vertical-align:-8.278200px;}
.v1d{vertical-align:-6.841800px;}
.v19{vertical-align:-5.400000px;}
.vb{vertical-align:-4.320000px;}
.v6{vertical-align:-2.880000px;}
.v9{vertical-align:-1.441800px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.441800px;}
.v3{vertical-align:2.880000px;}
.v17{vertical-align:5.760000px;}
.v1f{vertical-align:6.841800px;}
.v14{vertical-align:18.000000px;}
.vf{vertical-align:19.079027px;}
.v12{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.v5{vertical-align:27.000000px;}
.v1a{vertical-align:30.958200px;}
.v2{vertical-align:36.359424px;}
.v8{vertical-align:42.120000px;}
.v15{vertical-align:44.641800px;}
.v4{vertical-align:62.639424px;}
.lsc2{letter-spacing:-4.320000px;}
.ls40{letter-spacing:-2.916000px;}
.lsff{letter-spacing:-2.162465px;}
.lsfb{letter-spacing:-2.040562px;}
.lsf6{letter-spacing:-2.026655px;}
.ls3e{letter-spacing:-1.792800px;}
.lse8{letter-spacing:-1.532338px;}
.lsef{letter-spacing:-1.465745px;}
.lsf0{letter-spacing:-1.186672px;}
.lsda{letter-spacing:-1.175573px;}
.lsd7{letter-spacing:-1.157941px;}
.lsdd{letter-spacing:-0.947789px;}
.lsdc{letter-spacing:-0.914386px;}
.ls3{letter-spacing:-0.864000px;}
.lse7{letter-spacing:-0.797198px;}
.lsf3{letter-spacing:-0.683138px;}
.lsf1{letter-spacing:-0.648549px;}
.ls86{letter-spacing:-0.504000px;}
.lsb4{letter-spacing:-0.402804px;}
.lsfd{letter-spacing:-0.397827px;}
.lsf7{letter-spacing:-0.387293px;}
.lsf8{letter-spacing:-0.371070px;}
.lsab{letter-spacing:-0.361800px;}
.lsf9{letter-spacing:-0.360766px;}
.lsfe{letter-spacing:-0.360411px;}
.ls4d{letter-spacing:-0.360000px;}
.ls3c{letter-spacing:-0.345600px;}
.lsba{letter-spacing:-0.342684px;}
.lsaa{letter-spacing:-0.340200px;}
.ls5a{letter-spacing:-0.302400px;}
.ls33{letter-spacing:-0.280800px;}
.lsd6{letter-spacing:-0.270540px;}
.ls7c{letter-spacing:-0.258516px;}
.ls2a{letter-spacing:-0.237600px;}
.lsf5{letter-spacing:-0.230400px;}
.lsa8{letter-spacing:-0.222444px;}
.ls87{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.208800px;}
.lsc3{letter-spacing:-0.201600px;}
.lsd2{letter-spacing:-0.194400px;}
.lsb9{letter-spacing:-0.186372px;}
.ls81{letter-spacing:-0.181944px;}
.lse3{letter-spacing:-0.180360px;}
.ls2b{letter-spacing:-0.180000px;}
.lsb7{letter-spacing:-0.172800px;}
.lsee{letter-spacing:-0.168336px;}
.ls74{letter-spacing:-0.165600px;}
.lse6{letter-spacing:-0.156312px;}
.lsb5{letter-spacing:-0.151200px;}
.lsa3{letter-spacing:-0.145800px;}
.ls4{letter-spacing:-0.144000px;}
.lse1{letter-spacing:-0.138276px;}
.ls7d{letter-spacing:-0.132264px;}
.lsca{letter-spacing:-0.126252px;}
.lsc0{letter-spacing:-0.120240px;}
.ls73{letter-spacing:-0.118800px;}
.ls6d{letter-spacing:-0.114228px;}
.lseb{letter-spacing:-0.108216px;}
.ls4c{letter-spacing:-0.108000px;}
.lscf{letter-spacing:-0.102204px;}
.ls3f{letter-spacing:-0.100800px;}
.lsec{letter-spacing:-0.097200px;}
.ls6e{letter-spacing:-0.096192px;}
.lsde{letter-spacing:-0.093600px;}
.lsa9{letter-spacing:-0.091800px;}
.lsac{letter-spacing:-0.090972px;}
.lse2{letter-spacing:-0.090180px;}
.lscc{letter-spacing:-0.089424px;}
.lsb6{letter-spacing:-0.086400px;}
.ls56{letter-spacing:-0.086184px;}
.lsd5{letter-spacing:-0.084168px;}
.ls50{letter-spacing:-0.079200px;}
.ls9b{letter-spacing:-0.078156px;}
.lsc1{letter-spacing:-0.075600px;}
.ls42{letter-spacing:-0.072144px;}
.ls55{letter-spacing:-0.072000px;}
.lsa5{letter-spacing:-0.070200px;}
.ls6f{letter-spacing:-0.066132px;}
.ls5b{letter-spacing:-0.064800px;}
.lse5{letter-spacing:-0.060120px;}
.lscd{letter-spacing:-0.059400px;}
.ls57{letter-spacing:-0.057600px;}
.ls49{letter-spacing:-0.056232px;}
.ls1b{letter-spacing:-0.055296px;}
.lsb8{letter-spacing:-0.054108px;}
.ls9f{letter-spacing:-0.054000px;}
.ls54{letter-spacing:-0.051120px;}
.ls20{letter-spacing:-0.050400px;}
.ls21{letter-spacing:-0.048384px;}
.ls1d{letter-spacing:-0.043200px;}
.lsd3{letter-spacing:-0.042084px;}
.ls4a{letter-spacing:-0.040896px;}
.lsa2{letter-spacing:-0.037800px;}
.ls34{letter-spacing:-0.036072px;}
.ls36{letter-spacing:-0.036000px;}
.lsdb{letter-spacing:-0.035072px;}
.lsbb{letter-spacing:-0.033516px;}
.lsa1{letter-spacing:-0.032400px;}
.lscb{letter-spacing:-0.030060px;}
.ls27{letter-spacing:-0.028800px;}
.lsa0{letter-spacing:-0.027000px;}
.ls39{letter-spacing:-0.024048px;}
.ls1e{letter-spacing:-0.021600px;}
.ls72{letter-spacing:-0.016200px;}
.ls1c{letter-spacing:-0.014400px;}
.ls9d{letter-spacing:-0.012024px;}
.lsa4{letter-spacing:-0.010800px;}
.ls1f{letter-spacing:-0.007200px;}
.ls22{letter-spacing:-0.006912px;}
.ls9e{letter-spacing:-0.005400px;}
.ls2{letter-spacing:0.000000px;}
.ls89{letter-spacing:0.003888px;}
.ls62{letter-spacing:0.005400px;}
.lsb2{letter-spacing:0.006012px;}
.ls16{letter-spacing:0.007200px;}
.ls8c{letter-spacing:0.007776px;}
.ls63{letter-spacing:0.010800px;}
.lsbc{letter-spacing:0.012024px;}
.lsc9{letter-spacing:0.014364px;}
.ls10{letter-spacing:0.014400px;}
.ls78{letter-spacing:0.016200px;}
.lsaf{letter-spacing:0.018036px;}
.ls15{letter-spacing:0.021600px;}
.ls7{letter-spacing:0.025164px;}
.lsa{letter-spacing:0.026352px;}
.ls77{letter-spacing:0.027000px;}
.ls12{letter-spacing:0.028800px;}
.ls76{letter-spacing:0.030060px;}
.ls66{letter-spacing:0.032400px;}
.ls18{letter-spacing:0.036000px;}
.ls61{letter-spacing:0.037800px;}
.lse{letter-spacing:0.039528px;}
.lsf{letter-spacing:0.041940px;}
.ls25{letter-spacing:0.043200px;}
.ls8e{letter-spacing:0.048600px;}
.ls23{letter-spacing:0.050328px;}
.ls13{letter-spacing:0.050400px;}
.ls51{letter-spacing:0.051120px;}
.lsb{letter-spacing:0.052704px;}
.ls8d{letter-spacing:0.054000px;}
.ls8b{letter-spacing:0.054108px;}
.ls24{letter-spacing:0.057600px;}
.lsd8{letter-spacing:0.057897px;}
.ls5{letter-spacing:0.058716px;}
.ls60{letter-spacing:0.059400px;}
.ls30{letter-spacing:0.060120px;}
.ls14{letter-spacing:0.064800px;}
.ls99{letter-spacing:0.067032px;}
.ls1a{letter-spacing:0.067104px;}
.ls8f{letter-spacing:0.070200px;}
.ls28{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.072468px;}
.ls64{letter-spacing:0.075600px;}
.lse4{letter-spacing:0.078156px;}
.lsc{letter-spacing:0.079056px;}
.ls17{letter-spacing:0.079200px;}
.ls79{letter-spacing:0.081000px;}
.ls6{letter-spacing:0.083880px;}
.ls41{letter-spacing:0.084168px;}
.lsf4{letter-spacing:0.085644px;}
.lsce{letter-spacing:0.086184px;}
.ls11{letter-spacing:0.086400px;}
.ls70{letter-spacing:0.090180px;}
.ls91{letter-spacing:0.091800px;}
.ls8{letter-spacing:0.092232px;}
.ls52{letter-spacing:0.093600px;}
.lsbd{letter-spacing:0.095760px;}
.ls9c{letter-spacing:0.096192px;}
.ls90{letter-spacing:0.097200px;}
.ls2e{letter-spacing:0.098820px;}
.lsc8{letter-spacing:0.100548px;}
.ls2c{letter-spacing:0.100800px;}
.lsd0{letter-spacing:0.102204px;}
.ls5d{letter-spacing:0.102600px;}
.ls4e{letter-spacing:0.105336px;}
.ls2d{letter-spacing:0.105408px;}
.ls19{letter-spacing:0.108000px;}
.ls7e{letter-spacing:0.108216px;}
.ls98{letter-spacing:0.110124px;}
.lsb3{letter-spacing:0.113400px;}
.ls26{letter-spacing:0.115200px;}
.lsd{letter-spacing:0.118584px;}
.ls96{letter-spacing:0.118800px;}
.ls4f{letter-spacing:0.122400px;}
.lsb1{letter-spacing:0.124200px;}
.ls9a{letter-spacing:0.124488px;}
.lsbf{letter-spacing:0.129276px;}
.ls75{letter-spacing:0.129600px;}
.lsbe{letter-spacing:0.134064px;}
.ls92{letter-spacing:0.135000px;}
.ls38{letter-spacing:0.136800px;}
.ls0{letter-spacing:0.144000px;}
.lsa6{letter-spacing:0.144288px;}
.ls2f{letter-spacing:0.151200px;}
.ls83{letter-spacing:0.158400px;}
.lsa7{letter-spacing:0.162000px;}
.ls35{letter-spacing:0.165600px;}
.ls94{letter-spacing:0.178200px;}
.ls80{letter-spacing:0.179400px;}
.ls53{letter-spacing:0.180000px;}
.lsd4{letter-spacing:0.180360px;}
.ls7f{letter-spacing:0.180600px;}
.ls46{letter-spacing:0.181944px;}
.ls32{letter-spacing:0.191520px;}
.ls7a{letter-spacing:0.230400px;}
.ls71{letter-spacing:0.243000px;}
.ls1{letter-spacing:0.288000px;}
.ls5e{letter-spacing:0.360000px;}
.lsd1{letter-spacing:0.418640px;}
.ls31{letter-spacing:0.453600px;}
.lsfa{letter-spacing:0.615424px;}
.lsed{letter-spacing:0.703092px;}
.ls43{letter-spacing:1.656000px;}
.ls44{letter-spacing:2.160000px;}
.lsf2{letter-spacing:2.550959px;}
.ls82{letter-spacing:2.880000px;}
.ls84{letter-spacing:3.420000px;}
.ls85{letter-spacing:3.600000px;}
.ls7b{letter-spacing:3.960000px;}
.ls45{letter-spacing:4.060800px;}
.lsdf{letter-spacing:4.320000px;}
.ls37{letter-spacing:4.327200px;}
.lse0{letter-spacing:4.680000px;}
.ls3b{letter-spacing:4.687200px;}
.ls58{letter-spacing:5.040000px;}
.ls59{letter-spacing:5.400000px;}
.ls88{letter-spacing:7.128000px;}
.ls101{letter-spacing:7.920000px;}
.ls5c{letter-spacing:8.640000px;}
.ls4b{letter-spacing:9.928800px;}
.ls3a{letter-spacing:10.814400px;}
.ls47{letter-spacing:13.320000px;}
.ls29{letter-spacing:18.360000px;}
.ls100{letter-spacing:19.440000px;}
.ls48{letter-spacing:25.920000px;}
.lsc4{letter-spacing:34.727184px;}
.ls68{letter-spacing:62.424000px;}
.ls69{letter-spacing:67.199485px;}
.lsd9{letter-spacing:69.137997px;}
.lsc5{letter-spacing:70.740000px;}
.ls6a{letter-spacing:138.790632px;}
.ls67{letter-spacing:167.578200px;}
.ls5f{letter-spacing:176.580000px;}
.ls65{letter-spacing:185.581800px;}
.lse9{letter-spacing:189.178200px;}
.lsc6{letter-spacing:210.421800px;}
.lsae{letter-spacing:264.690000px;}
.lsc7{letter-spacing:415.978200px;}
.lsad{letter-spacing:421.650000px;}
.lsfc{letter-spacing:439.685373px;}
.lsea{letter-spacing:458.460000px;}
.lsb0{letter-spacing:498.781200px;}
.ls8a{letter-spacing:575.370000px;}
.ls97{letter-spacing:700.290000px;}
.ls95{letter-spacing:727.290000px;}
.ls93{letter-spacing:731.967012px;}
.ls6b{letter-spacing:898.628259px;}
.ls6c{letter-spacing:1074.310802px;}
.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;}
}
.ws41{word-spacing:-451.663735px;}
.ws32{word-spacing:-81.519060px;}
.ws2d{word-spacing:-72.000000px;}
.ws25{word-spacing:-29.646000px;}
.ws16{word-spacing:-24.646367px;}
.ws2{word-spacing:-20.304000px;}
.ws0{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.872000px;}
.ws19{word-spacing:-19.239900px;}
.ws1{word-spacing:-19.152000px;}
.ws9{word-spacing:-18.453600px;}
.ws10{word-spacing:-18.144000px;}
.ws43{word-spacing:-18.079200px;}
.ws7{word-spacing:-18.072000px;}
.ws44{word-spacing:-18.043200px;}
.ws20{word-spacing:-18.021600px;}
.wsb{word-spacing:-18.014400px;}
.ws42{word-spacing:-18.007200px;}
.ws6{word-spacing:-18.000000px;}
.ws46{word-spacing:-17.992800px;}
.ws35{word-spacing:-17.978400px;}
.ws45{word-spacing:-17.956800px;}
.ws34{word-spacing:-17.906400px;}
.ws33{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.820000px;}
.ws21{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.654400px;}
.wse{word-spacing:-17.640000px;}
.ws5{word-spacing:-16.542468px;}
.ws15{word-spacing:-16.401600px;}
.wsc{word-spacing:-15.840000px;}
.ws22{word-spacing:-15.120180px;}
.ws2a{word-spacing:-14.627196px;}
.ws38{word-spacing:-13.647439px;}
.ws28{word-spacing:-13.516200px;}
.ws2b{word-spacing:-13.510800px;}
.ws2c{word-spacing:-13.505400px;}
.ws12{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.483800px;}
.ws26{word-spacing:-13.159800px;}
.ws29{word-spacing:-13.138200px;}
.ws30{word-spacing:-12.799704px;}
.ws37{word-spacing:-12.438961px;}
.ws1e{word-spacing:-12.151944px;}
.wsf{word-spacing:-12.075336px;}
.wsd{word-spacing:-11.970000px;}
.ws11{word-spacing:-11.883816px;}
.ws2e{word-spacing:-11.880000px;}
.ws1f{word-spacing:-11.788056px;}
.ws36{word-spacing:-11.583866px;}
.ws3a{word-spacing:-11.371226px;}
.ws3b{word-spacing:-11.336637px;}
.ws17{word-spacing:-11.223300px;}
.ws31{word-spacing:-11.223122px;}
.ws3e{word-spacing:-9.963504px;}
.ws40{word-spacing:-9.937800px;}
.ws23{word-spacing:-9.727776px;}
.ws1b{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.000000px;}
.ws2f{word-spacing:-8.971200px;}
.ws24{word-spacing:-8.946000px;}
.ws27{word-spacing:-8.640000px;}
.ws3d{word-spacing:-0.007200px;}
.ws4{word-spacing:0.000000px;}
.ws3c{word-spacing:0.007200px;}
.ws1c{word-spacing:0.151200px;}
.ws1d{word-spacing:0.156600px;}
.ws39{word-spacing:30.200373px;}
.ws3f{word-spacing:302.374828px;}
.ws18{word-spacing:518.446501px;}
.ws1a{word-spacing:602.077406px;}
._145{margin-left:-3160.542564px;}
._129{margin-left:-3098.498292px;}
._109{margin-left:-3033.771156px;}
._73{margin-left:-3001.377600px;}
._d8{margin-left:-2984.625828px;}
._15c{margin-left:-2974.620207px;}
._3f{margin-left:-2973.204000px;}
._195{margin-left:-2965.987260px;}
._56{margin-left:-2956.320000px;}
._b1{margin-left:-2953.713600px;}
._51{margin-left:-2952.453600px;}
._8b{margin-left:-2951.435700px;}
._49{margin-left:-2948.311152px;}
._39{margin-left:-2947.017600px;}
._48{margin-left:-2946.016260px;}
._b0{margin-left:-2942.935200px;}
._102{margin-left:-2937.310308px;}
._12b{margin-left:-2933.511228px;}
._27{margin-left:-2931.823800px;}
._ad{margin-left:-2929.845756px;}
._ae{margin-left:-2928.600000px;}
._37{margin-left:-2917.068498px;}
._18{margin-left:-2915.033940px;}
._f{margin-left:-2913.888600px;}
._192{margin-left:-2907.109440px;}
._12c{margin-left:-2906.059846px;}
._e{margin-left:-2897.176320px;}
._20{margin-left:-2895.565500px;}
._17d{margin-left:-2883.240000px;}
._c{margin-left:-2880.230400px;}
._4{margin-left:-2863.235016px;}
._105{margin-left:-2858.068800px;}
._172{margin-left:-2848.060800px;}
._188{margin-left:-2844.309600px;}
._137{margin-left:-2806.149600px;}
._16b{margin-left:-2805.120000px;}
._8f{margin-left:-2801.487888px;}
._169{margin-left:-2800.440000px;}
._182{margin-left:-2792.980800px;}
._4b{margin-left:-2779.374240px;}
._46{margin-left:-2777.760000px;}
._2f{margin-left:-2776.500000px;}
._18c{margin-left:-2775.312000px;}
._17f{margin-left:-2736.216000px;}
._15e{margin-left:-2733.059638px;}
._12f{margin-left:-2707.200000px;}
._139{margin-left:-2704.230000px;}
._16d{margin-left:-2688.568920px;}
._1b{margin-left:-2680.292340px;}
._104{margin-left:-2651.623200px;}
._19a{margin-left:-2636.517600px;}
._167{margin-left:-2631.931200px;}
._6{margin-left:-2630.298996px;}
._d9{margin-left:-2614.276944px;}
._130{margin-left:-2605.197744px;}
._4d{margin-left:-2574.619200px;}
._17e{margin-left:-2562.492600px;}
._44{margin-left:-2540.491200px;}
._21{margin-left:-2532.535200px;}
._13a{margin-left:-2527.190172px;}
._13d{margin-left:-2476.116000px;}
._ab{margin-left:-2472.314400px;}
._131{margin-left:-2440.406736px;}
._ac{margin-left:-2414.232000px;}
._22{margin-left:-2412.936000px;}
._5{margin-left:-2402.834472px;}
._13b{margin-left:-2394.376992px;}
._17b{margin-left:-2330.136000px;}
._59{margin-left:-2323.716912px;}
._b3{margin-left:-2306.784384px;}
._185{margin-left:-2260.058400px;}
._ea{margin-left:-2237.309604px;}
._a8{margin-left:-2195.287200px;}
._b2{margin-left:-2192.061600px;}
._e9{margin-left:-2182.904820px;}
._38{margin-left:-2165.878241px;}
._189{margin-left:-2138.348880px;}
._18f{margin-left:-2137.060980px;}
._165{margin-left:-2101.727520px;}
._178{margin-left:-2090.052000px;}
._52{margin-left:-2028.225600px;}
._32{margin-left:-2023.890233px;}
._19d{margin-left:-2000.448000px;}
._30{margin-left:-1998.213000px;}
._144{margin-left:-1988.546400px;}
._4e{margin-left:-1973.296800px;}
._15f{margin-left:-1962.429939px;}
._8c{margin-left:-1937.844000px;}
._193{margin-left:-1924.826400px;}
._196{margin-left:-1922.983200px;}
._35{margin-left:-1895.916840px;}
._58{margin-left:-1886.896800px;}
._13e{margin-left:-1829.804832px;}
._19c{margin-left:-1828.440000px;}
._40{margin-left:-1814.061600px;}
._19{margin-left:-1806.782400px;}
._7{margin-left:-1695.303216px;}
._12d{margin-left:-1681.905595px;}
._12e{margin-left:-1677.859200px;}
._138{margin-left:-1626.750000px;}
._15d{margin-left:-1606.145176px;}
._41{margin-left:-1602.907200px;}
._36{margin-left:-1584.536550px;}
._16e{margin-left:-1577.032344px;}
._31{margin-left:-1551.043179px;}
._198{margin-left:-1518.984000px;}
._a9{margin-left:-1508.666400px;}
._17a{margin-left:-1501.353000px;}
._18d{margin-left:-1500.341400px;}
._136{margin-left:-1493.956800px;}
._72{margin-left:-1484.352000px;}
._179{margin-left:-1468.915200px;}
._186{margin-left:-1433.124000px;}
._af{margin-left:-1426.118400px;}
._163{margin-left:-1316.592000px;}
._47{margin-left:-1290.672000px;}
._176{margin-left:-1258.560000px;}
._2e{margin-left:-1241.316000px;}
._15a{margin-left:-1234.037124px;}
._57{margin-left:-1230.264000px;}
._187{margin-left:-1228.802400px;}
._19b{margin-left:-1222.560000px;}
._166{margin-left:-1200.736800px;}
._13c{margin-left:-1180.540800px;}
._12a{margin-left:-1156.896360px;}
._71{margin-left:-1116.323568px;}
._134{margin-left:-1082.232000px;}
._aa{margin-left:-1080.288000px;}
._8{margin-left:-1040.424012px;}
._181{margin-left:-1038.672000px;}
._4f{margin-left:-1027.351152px;}
._177{margin-left:-1002.528000px;}
._53{margin-left:-980.272800px;}
._2d{margin-left:-956.880000px;}
._162{margin-left:-934.560000px;}
._42{margin-left:-918.453600px;}
._199{margin-left:-898.581600px;}
._164{margin-left:-784.382400px;}
._29{margin-left:-767.664000px;}
._2c{margin-left:-750.838140px;}
._174{margin-left:-747.159300px;}
._106{margin-left:-742.320000px;}
._1c{margin-left:-737.341848px;}
._e7{margin-left:-672.861348px;}
._175{margin-left:-620.626320px;}
._db{margin-left:-591.435720px;}
._108{margin-left:-566.337600px;}
._1a{margin-left:-559.985976px;}
._180{margin-left:-558.720000px;}
._2b{margin-left:-548.726400px;}
._173{margin-left:-527.691600px;}
._103{margin-left:-476.294400px;}
._9{margin-left:-474.944940px;}
._171{margin-left:-441.725935px;}
._4a{margin-left:-438.537600px;}
._74{margin-left:-436.579200px;}
._107{margin-left:-393.033600px;}
._85{margin-left:-390.701030px;}
._7e{margin-left:-367.135772px;}
._88{margin-left:-365.334917px;}
._8d{margin-left:-353.880000px;}
._7d{margin-left:-340.854068px;}
._87{margin-left:-339.414924px;}
._77{margin-left:-329.565471px;}
._82{margin-left:-327.046962px;}
._89{margin-left:-323.407327px;}
._76{margin-left:-303.284991px;}
._81{margin-left:-301.125628px;}
._7b{margin-left:-286.297404px;}
._84{margin-left:-284.138041px;}
._79{margin-left:-247.419893px;}
._83{margin-left:-244.905874px;}
._70{margin-left:-229.410000px;}
._15b{margin-left:-226.440000px;}
._da{margin-left:-223.470000px;}
._86{margin-left:-196.672620px;}
._7c{margin-left:-192.713040px;}
._e8{margin-left:-177.930000px;}
._7a{margin-left:-160.439318px;}
._78{margin-left:-133.799693px;}
._133{margin-left:-68.949378px;}
._132{margin-left:-67.794080px;}
._3d{margin-left:-26.460000px;}
._3e{margin-left:-24.955200px;}
._194{margin-left:-20.237580px;}
._25{margin-left:-18.448020px;}
._26{margin-left:-17.294220px;}
._3b{margin-left:-14.241600px;}
._3a{margin-left:-13.161600px;}
._34{margin-left:-11.908800px;}
._33{margin-left:-10.526400px;}
._55{margin-left:-8.640000px;}
._54{margin-left:-7.545600px;}
._50{margin-left:-6.235200px;}
._1e{margin-left:-5.090400px;}
._16{margin-left:-3.974400px;}
._3{margin-left:-2.306700px;}
._0{margin-left:-1.126080px;}
._2{width:1.188000px;}
._28{width:2.188800px;}
._12{width:3.225600px;}
._17{width:4.240800px;}
._13{width:6.069600px;}
._d{width:7.560000px;}
._24{width:8.611200px;}
._15{width:9.705600px;}
._b{width:10.857600px;}
._a{width:11.894400px;}
._1f{width:12.974400px;}
._23{width:13.996800px;}
._2a{width:15.897600px;}
._1d{width:16.905600px;}
._14{width:19.418400px;}
._10{width:20.829600px;}
._11{width:21.888000px;}
._16c{width:23.206320px;}
._18e{width:24.665760px;}
._3c{width:25.927200px;}
._135{width:27.388800px;}
._18a{width:32.378400px;}
._8e{width:34.268400px;}
._5b{width:37.267200px;}
._115{width:42.951600px;}
._151{width:44.458200px;}
._184{width:48.395916px;}
._d7{width:49.912884px;}
._191{width:54.619200px;}
._183{width:56.232000px;}
._161{width:57.867751px;}
._18b{width:59.343840px;}
._d6{width:62.796600px;}
._128{width:65.853000px;}
._ec{width:69.130800px;}
._160{width:70.444255px;}
._ee{width:72.662400px;}
._10c{width:74.158200px;}
._117{width:75.692376px;}
._11c{width:77.382000px;}
._ed{width:78.472800px;}
._17c{width:80.820000px;}
._10a{width:82.458324px;}
._14f{width:84.153276px;}
._10b{width:86.340600px;}
._bc{width:88.268400px;}
._124{width:93.058200px;}
._150{width:94.359600px;}
._10f{width:100.348200px;}
._be{width:102.205800px;}
._e6{width:103.917600px;}
._a4{width:106.358400px;}
._f1{width:108.145800px;}
._43{width:109.728000px;}
._14c{width:110.894400px;}
._e5{width:112.471200px;}
._10d{width:115.525080px;}
._d0{width:117.110340px;}
._df{width:118.605600px;}
._9e{width:119.620800px;}
._9f{width:120.889800px;}
._d5{width:122.255280px;}
._a0{width:124.302600px;}
._114{width:125.382600px;}
._11b{width:127.283400px;}
._bf{width:129.211200px;}
._c1{width:130.512600px;}
._95{width:133.731000px;}
._69{width:135.043200px;}
._f9{width:136.333800px;}
._a2{width:137.889000px;}
._d1{width:139.790340px;}
._13f{width:141.867180px;}
._92{width:146.939400px;}
._11a{width:148.132800px;}
._c3{width:149.164200px;}
._116{width:150.168600px;}
._93{width:151.259400px;}
._10e{width:152.382600px;}
._62{width:156.823200px;}
._197{width:158.400000px;}
._98{width:160.833600px;}
._e3{width:161.870400px;}
._96{width:165.159000px;}
._122{width:167.875200px;}
._190{width:169.761600px;}
._e2{width:172.621800px;}
._f8{width:174.007440px;}
._f3{width:175.183920px;}
._60{width:176.221800px;}
._9a{width:178.005600px;}
._119{width:179.361000px;}
._5e{width:183.087000px;}
._6c{width:185.220000px;}
._140{width:186.939720px;}
._121{width:187.979400px;}
._61{width:194.189400px;}
._159{width:195.247800px;}
._ba{width:199.584000px;}
._6d{width:200.826000px;}
._ef{width:202.883400px;}
._6a{width:204.903000px;}
._c0{width:208.261800px;}
._156{width:209.476800px;}
._e1{width:211.874400px;}
._fc{width:215.033400px;}
._5a{width:216.594000px;}
._120{width:220.071600px;}
._9c{width:223.133400px;}
._6f{width:224.775000px;}
._f0{width:226.951200px;}
._64{width:228.371400px;}
._f4{width:229.911300px;}
._ce{width:231.012000px;}
._14a{width:232.054200px;}
._c9{width:233.444880px;}
._149{width:236.012400px;}
._d3{width:237.475800px;}
._5c{width:239.870880px;}
._f7{width:242.022600px;}
._cb{width:243.116280px;}
._b6{width:244.576800px;}
._14b{width:245.732400px;}
._126{width:247.060800px;}
._b5{width:249.436476px;}
._5d{width:251.551800px;}
._63{width:252.659520px;}
._5f{width:254.286000px;}
._65{width:257.191200px;}
._147{width:259.983000px;}
._143{width:262.634220px;}
._66{width:263.822400px;}
._148{width:269.492400px;}
._153{width:272.338200px;}
._68{width:273.650400px;}
._67{width:275.459400px;}
._4c{width:280.332000px;}
._c5{width:281.812680px;}
._cd{width:287.128800px;}
._11e{width:289.070280px;}
._101{width:290.312280px;}
._100{width:293.365800px;}
._6b{width:296.055000px;}
._125{width:300.963600px;}
._157{width:302.451480px;}
._8a{width:303.948000px;}
._11f{width:305.991000px;}
._152{width:315.630000px;}
._170{width:333.383634px;}
._9d{width:336.129300px;}
._146{width:342.700560px;}
._16f{width:343.819622px;}
._110{width:347.007600px;}
._a7{width:367.821360px;}
._158{width:370.669680px;}
._dc{width:372.542400px;}
._eb{width:374.387400px;}
._127{width:377.560080px;}
._ff{width:381.304800px;}
._6e{width:383.918400px;}
._111{width:385.843680px;}
._11d{width:388.513800px;}
._75{width:394.005600px;}
._a1{width:404.063280px;}
._fd{width:405.213480px;}
._c2{width:412.163460px;}
._c8{width:413.961660px;}
._112{width:421.087500px;}
._155{width:429.197400px;}
._fa{width:432.059400px;}
._142{width:435.407076px;}
._14d{width:448.087500px;}
._ca{width:451.580580px;}
._cc{width:467.780580px;}
._113{width:475.653600px;}
._c6{width:476.950140px;}
._7f{width:479.988000px;}
._c4{width:487.388340px;}
._cf{width:490.278960px;}
._c7{width:492.077160px;}
._d4{width:493.150140px;}
._141{width:495.242172px;}
._d2{width:497.251260px;}
._123{width:499.699800px;}
._14e{width:502.653600px;}
._fe{width:509.236200px;}
._b4{width:510.782400px;}
._80{width:514.173600px;}
._e4{width:518.342400px;}
._fb{width:532.445400px;}
._a6{width:535.415760px;}
._118{width:539.684280px;}
._f2{width:545.227200px;}
._f5{width:551.723400px;}
._f6{width:565.045200px;}
._154{width:580.332600px;}
._b9{width:593.177580px;}
._b7{width:599.149980px;}
._bb{width:606.738960px;}
._b8{width:620.548200px;}
._e0{width:622.022400px;}
._a5{width:650.108880px;}
._90{width:665.290800px;}
._a3{width:669.641400px;}
._91{width:726.678000px;}
._99{width:795.058200px;}
._9b{width:808.120800px;}
._97{width:809.443800px;}
._dd{width:829.337400px;}
._94{width:835.018200px;}
._1{width:990.627360px;}
._45{width:1366.143192px;}
._de{width:1487.316600px;}
._bd{width:1769.472000px;}
._168{width:2307.168000px;}
._16a{width:2312.604000px;}
.fc4{color:rgb(31,73,124);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(0,51,204);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:29.880000px;}
.fsc{font-size:36.000000px;}
.fs12{font-size:38.880000px;}
.fs17{font-size:41.752800px;}
.fs1b{font-size:43.236600px;}
.fs14{font-size:44.536200px;}
.fs10{font-size:44.893200px;}
.fs6{font-size:45.000000px;}
.fs18{font-size:46.562400px;}
.fs7{font-size:47.880000px;}
.fsd{font-size:48.144000px;}
.fs9{font-size:51.120000px;}
.fs1e{font-size:53.001600px;}
.fs1d{font-size:53.010000px;}
.fs1f{font-size:53.043600px;}
.fs1c{font-size:53.053800px;}
.fs1a{font-size:53.214000px;}
.fs19{font-size:53.299800px;}
.fsb{font-size:54.000000px;}
.fs16{font-size:58.453800px;}
.fs15{font-size:58.486200px;}
.fs8{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fsa{font-size:76.094487px;}
.fs11{font-size:76.959600px;}
.fse{font-size:82.534200px;}
.fs4{font-size:83.880000px;}
.fs2{font-size:84.240000px;}
.fsf{font-size:115.438800px;}
.y0{bottom:0.000000px;}
.y18f{bottom:3.150450px;}
.y11{bottom:36.030450px;}
.y10{bottom:55.650450px;}
.y158{bottom:110.820450px;}
.yf0{bottom:114.690450px;}
.y122{bottom:119.280450px;}
.y44{bottom:121.440450px;}
.y1e5{bottom:122.970450px;}
.y10d{bottom:124.320450px;}
.y253{bottom:126.570450px;}
.y7b{bottom:128.280450px;}
.y2b{bottom:132.960600px;}
.y23b{bottom:133.590450px;}
.y196{bottom:137.550450px;}
.y92{bottom:138.450450px;}
.y1da{bottom:141.240450px;}
.y20c{bottom:143.400450px;}
.y252{bottom:143.850450px;}
.y157{bottom:144.570450px;}
.y28c{bottom:146.280450px;}
.y1b5{bottom:146.550450px;}
.y6e{bottom:150.870600px;}
.y6d{bottom:151.590450px;}
.y11c{bottom:151.680450px;}
.y23a{bottom:153.660450px;}
.y5a{bottom:153.840450px;}
.y1fa{bottom:154.470450px;}
.yef{bottom:156.090450px;}
.y156{bottom:160.410450px;}
.y1bb{bottom:160.680450px;}
.y251{bottom:161.040600px;}
.ya8{bottom:161.220450px;}
.y43{bottom:162.840450px;}
.y1e4{bottom:164.370600px;}
.y10c{bottom:165.720450px;}
.y1e8{bottom:167.340450px;}
.y195{bottom:168.420450px;}
.y7a{bottom:169.680450px;}
.y239{bottom:170.850450px;}
.y82{bottom:175.170450px;}
.y234{bottom:176.070450px;}
.y2a{bottom:176.700600px;}
.y91{bottom:179.850450px;}
.y280{bottom:180.840450px;}
.y155{bottom:181.380000px;}
.y1d9{bottom:182.640450px;}
.y1e7{bottom:184.620600px;}
.y20b{bottom:184.800450px;}
.y28b{bottom:187.680450px;}
.y1b4{bottom:187.950600px;}
.ye5{bottom:190.020450px;}
.y6c{bottom:192.990450px;}
.y11b{bottom:193.080450px;}
.y59{bottom:195.240450px;}
.y154{bottom:196.860900px;}
.y194{bottom:199.290600px;}
.y26f{bottom:201.360450px;}
.y1ba{bottom:202.080450px;}
.ya7{bottom:202.620600px;}
.y238{bottom:202.890450px;}
.ye0{bottom:203.520450px;}
.ye6{bottom:203.520958px;}
.y42{bottom:204.240450px;}
.y233{bottom:204.510450px;}
.y1e3{bottom:205.770450px;}
.y10b{bottom:207.120600px;}
.yeb{bottom:209.280877px;}
.y81{bottom:209.730450px;}
.y153{bottom:210.990450px;}
.y79{bottom:211.080450px;}
.y193{bottom:216.570450px;}
.y1e6{bottom:216.660450px;}
.ye2{bottom:218.550693px;}
.ye9{bottom:218.551201px;}
.yde{bottom:220.800450px;}
.y90{bottom:221.250450px;}
.y249{bottom:221.340450px;}
.y27f{bottom:222.240450px;}
.ye4{bottom:223.320029px;}
.yee{bottom:223.322156px;}
.y1d8{bottom:224.040600px;}
.y26d{bottom:225.118514px;}
.y20a{bottom:226.200600px;}
.y1f3{bottom:227.190450px;}
.y29{bottom:228.810450px;}
.y28a{bottom:229.080450px;}
.y1b3{bottom:229.350450px;}
.ye7{bottom:230.881118px;}
.y232{bottom:232.320450px;}
.y6b{bottom:233.670450px;}
.y6a{bottom:234.390450px;}
.y11a{bottom:234.480450px;}
.y58{bottom:236.550450px;}
.y192{bottom:237.090450px;}
.y151{bottom:238.080450px;}
.y152{bottom:239.070000px;}
.y264{bottom:242.040600px;}
.y247{bottom:242.397659px;}
.y1b9{bottom:243.480450px;}
.y80{bottom:243.840450px;}
.ya6{bottom:244.020450px;}
.ye1{bottom:244.470905px;}
.ye8{bottom:244.471412px;}
.ydf{bottom:244.829478px;}
.y41{bottom:245.550450px;}
.y1e2{bottom:247.170450px;}
.y10a{bottom:248.520450px;}
.ye3{bottom:249.330450px;}
.yea{bottom:249.330653px;}
.yec{bottom:250.231080px;}
.yb2{bottom:252.480450px;}
.y150{bottom:253.110450px;}
.y231{bottom:254.370450px;}
.yed{bottom:254.461934px;}
.y23c{bottom:256.260450px;}
.y191{bottom:257.250450px;}
.y1f1{bottom:257.699673px;}
.y1d7{bottom:258.510450px;}
.y78{bottom:261.480450px;}
.y8f{bottom:262.650450px;}
.y27e{bottom:263.550450px;}
.y209{bottom:267.600450px;}
.y28{bottom:269.220450px;}
.y289{bottom:270.480450px;}
.y1b2{bottom:270.750450px;}
.y1e9{bottom:271.020450px;}
.y1d6{bottom:272.280450px;}
.y18e{bottom:272.820000px;}
.y265{bottom:274.170170px;}
.y69{bottom:275.070450px;}
.y68{bottom:275.790450px;}
.y119{bottom:275.880450px;}
.y190{bottom:275.970450px;}
.y230{bottom:276.330450px;}
.y57{bottom:277.950450px;}
.y14f{bottom:278.220450px;}
.y18d{bottom:283.710450px;}
.y1b8{bottom:284.880450px;}
.ya5{bottom:285.420450px;}
.y40{bottom:286.950450px;}
.y23d{bottom:288.570099px;}
.y1e1{bottom:288.570450px;}
.y1d5{bottom:289.470450px;}
.y109{bottom:289.920450px;}
.y208{bottom:291.360450px;}
.y14e{bottom:293.250450px;}
.yb1{bottom:293.880450px;}
.y26e{bottom:294.420450px;}
.y22f{bottom:298.290450px;}
.y1f6{bottom:298.740450px;}
.yd3{bottom:300.450450px;}
.yd6{bottom:300.450958px;}
.y77{bottom:302.880450px;}
.y8e{bottom:304.050450px;}
.y27d{bottom:304.950450px;}
.ydb{bottom:306.210877px;}
.y266{bottom:306.299740px;}
.y1d4{bottom:308.100450px;}
.y27{bottom:309.540450px;}
.y18c{bottom:310.710600px;}
.y288{bottom:311.880450px;}
.y1b1{bottom:312.150450px;}
.y207{bottom:312.600450px;}
.yd5{bottom:315.480693px;}
.yd9{bottom:315.481201px;}
.y14d{bottom:316.020450px;}
.y67{bottom:316.470450px;}
.y66{bottom:317.190450px;}
.y118{bottom:317.280450px;}
.yd1{bottom:317.730450px;}
.y56{bottom:319.350450px;}
.y1f5{bottom:319.890450px;}
.ydd{bottom:320.250232px;}
.y1ea{bottom:320.700581px;}
.y23e{bottom:320.879749px;}
.y22e{bottom:321.960600px;}
.y1b7{bottom:326.280450px;}
.y248{bottom:326.460600px;}
.y1d3{bottom:326.640450px;}
.ya4{bottom:326.820450px;}
.yd7{bottom:327.811118px;}
.y3f{bottom:328.350450px;}
.y1e0{bottom:329.970450px;}
.y108{bottom:331.320450px;}
.y18b{bottom:331.950450px;}
.y206{bottom:333.930450px;}
.yb0{bottom:335.280450px;}
.y1d2{bottom:335.550450px;}
.y14c{bottom:337.260450px;}
.y267{bottom:338.519412px;}
.y1f4{bottom:341.130450px;}
.yd4{bottom:341.400905px;}
.yd8{bottom:341.401412px;}
.yd2{bottom:341.759478px;}
.y22d{bottom:342.210600px;}
.y76{bottom:344.280450px;}
.y8d{bottom:345.450450px;}
.yda{bottom:346.260653px;}
.y27c{bottom:346.350450px;}
.ydc{bottom:347.161080px;}
.y26{bottom:349.860450px;}
.y18a{bottom:352.920450px;}
.y23f{bottom:353.189398px;}
.y287{bottom:353.280450px;}
.y205{bottom:355.260450px;}
.y65{bottom:357.870450px;}
.y64{bottom:358.590450px;}
.y117{bottom:358.680450px;}
.y1b0{bottom:362.550450px;}
.y1d1{bottom:363.090450px;}
.y22c{bottom:365.880450px;}
.y1b6{bottom:367.680450px;}
.ya3{bottom:368.220450px;}
.y3e{bottom:369.750600px;}
.y1eb{bottom:370.380712px;}
.y268{bottom:370.648982px;}
.y1df{bottom:371.280450px;}
.y107{bottom:372.720450px;}
.y189{bottom:374.250600px;}
.y204{bottom:376.500600px;}
.yaf{bottom:376.680450px;}
.y14b{bottom:379.920450px;}
.y1d0{bottom:381.720450px;}
.y240{bottom:385.409415px;}
.y75{bottom:385.680600px;}
.y8c{bottom:386.850450px;}
.y27b{bottom:387.750600px;}
.y22b{bottom:387.840600px;}
.y25{bottom:390.270600px;}
.y286{bottom:394.680600px;}
.y188{bottom:395.490450px;}
.yce{bottom:397.740450px;}
.ycf{bottom:399.090600px;}
.y63{bottom:399.270600px;}
.y62{bottom:399.990450px;}
.y116{bottom:400.080450px;}
.y1cf{bottom:400.350450px;}
.y14a{bottom:401.160450px;}
.y269{bottom:402.778552px;}
.y203{bottom:403.860600px;}
.y1af{bottom:403.950600px;}
.yd0{bottom:404.490400px;}
.ya2{bottom:409.620600px;}
.y22a{bottom:409.800450px;}
.y3d{bottom:411.150450px;}
.y106{bottom:414.120600px;}
.y187{bottom:415.200600px;}
.y241{bottom:417.719064px;}
.yae{bottom:418.080450px;}
.y1de{bottom:418.350450px;}
.y1ce{bottom:418.890450px;}
.y1ec{bottom:420.060843px;}
.y149{bottom:422.490450px;}
.y74{bottom:427.080450px;}
.y27a{bottom:429.150450px;}
.y24{bottom:430.590600px;}
.y229{bottom:431.850450px;}
.y26a{bottom:434.908122px;}
.y1dd{bottom:435.630450px;}
.y186{bottom:436.080450px;}
.y8b{bottom:437.250600px;}
.y1cd{bottom:437.520600px;}
.y272{bottom:437.700600px;}
.y1f2{bottom:438.060450px;}
.y61{bottom:440.670450px;}
.y60{bottom:441.390450px;}
.y148{bottom:443.820450px;}
.y1ae{bottom:445.350450px;}
.ycd{bottom:445.980450px;}
.y242{bottom:450.028714px;}
.y115{bottom:450.480450px;}
.ya1{bottom:451.020600px;}
.y55{bottom:452.550450px;}
.y228{bottom:453.810450px;}
.y105{bottom:455.430600px;}
.y1cc{bottom:456.150450px;}
.yad{bottom:459.480450px;}
.y184{bottom:459.930450px;}
.y271{bottom:459.930600px;}
.y202{bottom:460.470450px;}
.y3c{bottom:461.550450px;}
.y147{bottom:465.060450px;}
.y26b{bottom:467.037692px;}
.y73{bottom:468.480450px;}
.y24f{bottom:469.470450px;}
.y1ed{bottom:469.650789px;}
.y1dc{bottom:470.280600px;}
.y279{bottom:470.550450px;}
.y23{bottom:471.000600px;}
.y1cb{bottom:474.780600px;}
.y183{bottom:475.410900px;}
.y227{bottom:475.770600px;}
.y285{bottom:477.480450px;}
.y8a{bottom:478.650450px;}
.y5f{bottom:478.740450px;}
.y1db{bottom:481.440891px;}
.y270{bottom:482.070450px;}
.y243{bottom:482.338363px;}
.y146{bottom:486.390450px;}
.y1ad{bottom:486.750600px;}
.ycc{bottom:487.380450px;}
.y24e{bottom:488.910450px;}
.y185{bottom:490.890000px;}
.y182{bottom:490.980450px;}
.y114{bottom:491.880450px;}
.ya0{bottom:492.420450px;}
.y1ca{bottom:493.320450px;}
.y275{bottom:493.950600px;}
.y104{bottom:496.830450px;}
.y226{bottom:497.730450px;}
.y54{bottom:498.000600px;}
.y26c{bottom:499.257365px;}
.yf{bottom:500.295000px;}
.yac{bottom:500.880450px;}
.y201{bottom:501.870600px;}
.y3b{bottom:502.950600px;}
.y145{bottom:507.720450px;}
.y24d{bottom:508.260450px;}
.y72{bottom:509.880450px;}
.y22{bottom:511.320450px;}
.y1c9{bottom:511.950600px;}
.y5e{bottom:513.210600px;}
.y180{bottom:513.390450px;}
.y244{bottom:514.558380px;}
.y284{bottom:518.880450px;}
.y1ee{bottom:519.330920px;}
.y225{bottom:519.690600px;}
.y89{bottom:520.050450px;}
.y250{bottom:520.410450px;}
.y24c{bottom:527.700450px;}
.y1ac{bottom:528.150450px;}
.ycb{bottom:528.780450px;}
.y17f{bottom:528.870900px;}
.y144{bottom:528.960450px;}
.y1c8{bottom:530.580450px;}
.ye{bottom:531.435000px;}
.y113{bottom:533.280450px;}
.y260{bottom:534.630450px;}
.y274{bottom:535.350450px;}
.y224{bottom:540.030450px;}
.y1f9{bottom:542.280450px;}
.y9f{bottom:542.820450px;}
.y200{bottom:543.270450px;}
.y181{bottom:544.350000px;}
.y3a{bottom:544.350450px;}
.y17e{bottom:544.440450px;}
.y245{bottom:546.868029px;}
.y24b{bottom:547.050450px;}
.y103{bottom:547.230450px;}
.y5d{bottom:547.410450px;}
.y1c7{bottom:549.120450px;}
.y143{bottom:550.290450px;}
.y53{bottom:551.280450px;}
.y21{bottom:551.730450px;}
.y278{bottom:553.350450px;}
.y25e{bottom:558.296288px;}
.y283{bottom:560.280450px;}
.y88{bottom:561.450450px;}
.yd{bottom:562.395000px;}
.y1ab{bottom:562.620450px;}
.y7f{bottom:563.610450px;}
.y223{bottom:563.700450px;}
.y17c{bottom:566.130450px;}
.y24a{bottom:566.490450px;}
.y1c6{bottom:567.750450px;}
.y1ef{bottom:569.011051px;}
.yca{bottom:570.180450px;}
.y102{bottom:570.540450px;}
.y142{bottom:571.620450px;}
.y112{bottom:574.680450px;}
.y254{bottom:575.220450px;}
.y246{bottom:579.177678px;}
.y273{bottom:580.800450px;}
.y17b{bottom:581.610900px;}
.y1aa{bottom:582.420450px;}
.y1f8{bottom:583.680450px;}
.y9e{bottom:584.220450px;}
.y1ff{bottom:584.670450px;}
.y222{bottom:585.660450px;}
.y39{bottom:585.750450px;}
.y1c5{bottom:586.380450px;}
.y101{bottom:589.620450px;}
.y20{bottom:592.050450px;}
.y52{bottom:592.680450px;}
.y141{bottom:592.860450px;}
.y277{bottom:594.750450px;}
.y17d{bottom:597.090000px;}
.y17a{bottom:597.180450px;}
.y7e{bottom:598.080450px;}
.y1a9{bottom:601.500450px;}
.y282{bottom:601.680450px;}
.y255{bottom:603.750131px;}
.y1c4{bottom:604.920450px;}
.y87{bottom:606.270594px;}
.y221{bottom:607.620450px;}
.y100{bottom:608.790450px;}
.yc9{bottom:611.580450px;}
.y140{bottom:614.190450px;}
.y111{bottom:616.080450px;}
.y237{bottom:617.610450px;}
.y178{bottom:618.240450px;}
.y1f0{bottom:618.691182px;}
.y1a8{bottom:620.670450px;}
.y1c3{bottom:623.550450px;}
.yc{bottom:624.855000px;}
.y1f7{bottom:625.080450px;}
.y9d{bottom:625.530450px;}
.y86{bottom:625.890450px;}
.y1fe{bottom:626.070450px;}
.y25f{bottom:626.610450px;}
.y38{bottom:627.150450px;}
.yff{bottom:627.870450px;}
.y220{bottom:629.580450px;}
.y256{bottom:632.279812px;}
.y7d{bottom:632.280450px;}
.y1f{bottom:632.460450px;}
.y177{bottom:633.720900px;}
.y51{bottom:634.080450px;}
.y13f{bottom:635.520450px;}
.y276{bottom:636.150450px;}
.y1a7{bottom:639.750450px;}
.y1c2{bottom:642.180450px;}
.y281{bottom:643.080450px;}
.yfe{bottom:647.040450px;}
.y179{bottom:649.200000px;}
.y176{bottom:649.290450px;}
.y21f{bottom:651.540450px;}
.yc8{bottom:652.980450px;}
.y13e{bottom:656.760450px;}
.y110{bottom:657.480450px;}
.y1a6{bottom:658.920450px;}
.y257{bottom:660.719301px;}
.y1c1{bottom:660.720450px;}
.yfd{bottom:666.120450px;}
.yb{bottom:666.285000px;}
.y85{bottom:666.480450px;}
.y9c{bottom:666.930450px;}
.y236{bottom:670.080450px;}
.y21d{bottom:672.690450px;}
.y1e{bottom:672.780450px;}
.y1fd{bottom:673.140450px;}
.y71{bottom:674.760450px;}
.y50{bottom:675.480450px;}
.y174{bottom:676.830000px;}
.y37{bottom:677.550450px;}
.y21e{bottom:677.910918px;}
.y13d{bottom:678.000450px;}
.y1bf{bottom:679.440450px;}
.y121{bottom:684.480450px;}
.y1c0{bottom:684.660918px;}
.yfc{bottom:685.290450px;}
.y258{bottom:689.248982px;}
.y1fc{bottom:690.420450px;}
.y175{bottom:692.220000px;}
.y173{bottom:692.310450px;}
.yc7{bottom:694.290450px;}
.y21c{bottom:695.550450px;}
.y13c{bottom:696.540000px;}
.y1a5{bottom:697.170450px;}
.y1be{bottom:698.880450px;}
.y235{bottom:702.120450px;}
.yfb{bottom:704.370450px;}
.ya{bottom:707.685000px;}
.y84{bottom:707.880450px;}
.y171{bottom:708.690000px;}
.y13b{bottom:712.020450px;}
.y1d{bottom:713.190450px;}
.y21b{bottom:715.800450px;}
.y1a4{bottom:716.250450px;}
.y4f{bottom:716.880450px;}
.y9b{bottom:717.330450px;}
.y1bd{bottom:717.510450px;}
.y259{bottom:717.778663px;}
.y36{bottom:718.950450px;}
.y1fb{bottom:722.370450px;}
.yfa{bottom:723.540450px;}
.y172{bottom:724.080450px;}
.y170{bottom:724.170450px;}
.y120{bottom:725.880450px;}
.y13a{bottom:730.560900px;}
.y217{bottom:732.990450px;}
.y1a3{bottom:735.420450px;}
.yc6{bottom:735.690450px;}
.yf9{bottom:742.620450px;}
.y1bc{bottom:743.070450px;}
.y139{bottom:746.130450px;}
.y25a{bottom:746.308344px;}
.y83{bottom:749.280450px;}
.y16e{bottom:750.630000px;}
.y9{bottom:751.965000px;}
.y1c{bottom:753.510450px;}
.y1a2{bottom:754.500450px;}
.y4e{bottom:758.280450px;}
.y9a{bottom:758.730450px;}
.y35{bottom:760.350450px;}
.yf8{bottom:761.790450px;}
.y215{bottom:763.499673px;}
.y138{bottom:764.670000px;}
.y16f{bottom:766.020450px;}
.y16d{bottom:766.110450px;}
.y11f{bottom:767.280450px;}
.y263{bottom:772.770450px;}
.y1a1{bottom:773.670450px;}
.y25b{bottom:774.747834px;}
.y20d{bottom:776.820450px;}
.y137{bottom:780.150450px;}
.yf7{bottom:780.870450px;}
.yc5{bottom:781.140450px;}
.y16b{bottom:783.570000px;}
.y8{bottom:789.045000px;}
.y10f{bottom:790.680450px;}
.y1a0{bottom:792.750450px;}
.y1b{bottom:793.920450px;}
.y262{bottom:794.910450px;}
.y70{bottom:795.540600px;}
.y136{bottom:798.690000px;}
.y16c{bottom:798.960450px;}
.y16a{bottom:799.050450px;}
.y4d{bottom:799.680450px;}
.yf6{bottom:800.040600px;}
.y34{bottom:801.750450px;}
.y25c{bottom:803.277515px;}
.y11e{bottom:808.680450px;}
.y99{bottom:809.130450px;}
.y19f{bottom:811.920450px;}
.y135{bottom:814.170450px;}
.y261{bottom:817.050450px;}
.yf4{bottom:818.670000px;}
.y7{bottom:823.425000px;}
.y168{bottom:824.520000px;}
.yf3{bottom:825.240450px;}
.y20e{bottom:826.500581px;}
.yc4{bottom:829.470450px;}
.y6f{bottom:829.740450px;}
.y19e{bottom:831.000450px;}
.y25d{bottom:831.807196px;}
.y10e{bottom:832.080450px;}
.y134{bottom:832.710900px;}
.yf5{bottom:834.150450px;}
.y1a{bottom:838.200450px;}
.y169{bottom:839.910450px;}
.y167{bottom:840.000450px;}
.y4c{bottom:841.080450px;}
.y33{bottom:843.150450px;}
.y133{bottom:848.280450px;}
.y11d{bottom:850.080450px;}
.y19d{bottom:850.170450px;}
.y98{bottom:850.530450px;}
.yc3{bottom:853.590450px;}
.yf2{bottom:857.100450px;}
.y6{bottom:857.805000px;}
.y132{bottom:866.820000px;}
.y166{bottom:867.090000px;}
.y19c{bottom:869.250600px;}
.yc2{bottom:870.600450px;}
.y20f{bottom:876.180712px;}
.y131{bottom:882.300450px;}
.yab{bottom:882.480450px;}
.y165{bottom:882.570450px;}
.y32{bottom:884.550450px;}
.yf1{bottom:885.270450px;}
.yc1{bottom:887.610600px;}
.y19{bottom:888.420450px;}
.y18{bottom:888.421296px;}
.y4b{bottom:891.480450px;}
.y97{bottom:891.930600px;}
.y5{bottom:892.005000px;}
.y164{bottom:902.190450px;}
.y130{bottom:903.720450px;}
.y12f{bottom:904.530450px;}
.yc0{bottom:904.620450px;}
.y19b{bottom:906.870450px;}
.y12e{bottom:920.010900px;}
.ybf{bottom:921.720450px;}
.yaa{bottom:923.880450px;}
.y17{bottom:925.411269px;}
.y210{bottom:925.860843px;}
.y31{bottom:925.950450px;}
.y19a{bottom:926.670450px;}
.y4{bottom:927.150000px;}
.y163{bottom:929.820000px;}
.y4a{bottom:932.880450px;}
.y12d{bottom:935.580450px;}
.ybe{bottom:938.730450px;}
.y96{bottom:941.250594px;}
.y216{bottom:943.950450px;}
.y162{bottom:945.300450px;}
.y95{bottom:950.340450px;}
.y199{bottom:950.700450px;}
.ybd{bottom:955.740450px;}
.y12c{bottom:956.280450px;}
.y3{bottom:956.310000px;}
.y12b{bottom:958.170450px;}
.y16{bottom:962.401242px;}
.ya9{bottom:965.190450px;}
.y161{bottom:966.270450px;}
.y30{bottom:967.350450px;}
.ybc{bottom:972.750450px;}
.y7c{bottom:973.470450px;}
.y12a{bottom:973.740000px;}
.y49{bottom:974.190450px;}
.y198{bottom:974.730450px;}
.y211{bottom:975.540974px;}
.y160{bottom:987.060450px;}
.y129{bottom:989.220450px;}
.ybb{bottom:989.760450px;}
.y15{bottom:999.391215px;}
.y15e{bottom:999.930450px;}
.y197{bottom:1000.380450px;}
.y94{bottom:1006.590450px;}
.yba{bottom:1006.770450px;}
.y15f{bottom:1008.660450px;}
.y2f{bottom:1008.750450px;}
.y128{bottom:1010.550450px;}
.y5c{bottom:1014.870450px;}
.y15d{bottom:1015.410900px;}
.y48{bottom:1015.590450px;}
.yb9{bottom:1023.870450px;}
.y212{bottom:1025.221106px;}
.y15c{bottom:1030.980450px;}
.y127{bottom:1031.880450px;}
.y14{bottom:1037.280450px;}
.yb8{bottom:1040.880450px;}
.y93{bottom:1047.990450px;}
.y15b{bottom:1049.160900px;}
.y2e{bottom:1050.150450px;}
.y126{bottom:1053.120450px;}
.y47{bottom:1056.990450px;}
.yb7{bottom:1057.890450px;}
.y15a{bottom:1064.730450px;}
.y21a{bottom:1068.690450px;}
.y125{bottom:1074.450450px;}
.yb6{bottom:1074.900450px;}
.y213{bottom:1074.901237px;}
.y159{bottom:1080.210900px;}
.y219{bottom:1085.520450px;}
.y13{bottom:1089.930450px;}
.y2d{bottom:1091.550450px;}
.yb5{bottom:1091.910450px;}
.y124{bottom:1095.780450px;}
.y46{bottom:1098.390450px;}
.y218{bottom:1102.350450px;}
.y2{bottom:1107.150000px;}
.yb4{bottom:1112.790450px;}
.y123{bottom:1115.670450px;}
.y214{bottom:1124.581368px;}
.y2c{bottom:1136.910450px;}
.y12{bottom:1137.000450px;}
.y5b{bottom:1139.070450px;}
.y45{bottom:1139.790600px;}
.y1{bottom:1140.990000px;}
.yb3{bottom:1142.580450px;}
.h2e{height:15.210000px;}
.h37{height:30.397180px;}
.h1c{height:31.170962px;}
.h3d{height:31.477427px;}
.h34{height:32.423571px;}
.h1a{height:33.253410px;}
.h3a{height:33.898700px;}
.hc{height:34.366992px;}
.h42{height:36.723277px;}
.h3f{height:36.759444px;}
.h13{height:36.966797px;}
.h44{height:38.483095px;}
.h40{height:38.489194px;}
.h43{height:38.513590px;}
.h41{height:38.520996px;}
.h3c{height:38.741247px;}
.h15{height:38.759766px;}
.h14{height:38.761566px;}
.h3b{height:38.803712px;}
.h26{height:39.999023px;}
.h2c{height:41.156367px;}
.h36{height:42.555965px;}
.h35{height:42.579553px;}
.h27{height:43.152539px;}
.h31{height:43.189453px;}
.h2a{height:43.479844px;}
.h29{height:43.838044px;}
.h23{height:43.839844px;}
.h2b{height:43.841644px;}
.h25{height:44.519766px;}
.h39{height:45.239766px;}
.h38{height:45.601566px;}
.h6{height:45.646348px;}
.h9{height:47.286914px;}
.h22{height:48.787031px;}
.hb{height:49.289062px;}
.ha{height:49.612500px;}
.h16{height:49.886719px;}
.h1e{height:51.332053px;}
.h5{height:51.679688px;}
.h2f{height:52.971680px;}
.h1d{height:53.435816px;}
.h8{height:54.925664px;}
.h18{height:55.050311px;}
.h1f{height:55.239557px;}
.hd{height:56.786133px;}
.h20{height:57.005719px;}
.h17{height:57.306461px;}
.h7{height:57.421758px;}
.h28{height:58.975137px;}
.h30{height:59.985352px;}
.hf{height:61.366992px;}
.h2{height:65.884219px;}
.h2d{height:69.717966px;}
.h33{height:70.079766px;}
.h24{height:70.481644px;}
.h3e{height:70.628906px;}
.h21{height:74.399766px;}
.h32{height:74.761566px;}
.h3{height:75.093750px;}
.h1b{height:76.084746px;}
.h12{height:84.528788px;}
.h19{height:85.508135px;}
.h4{height:87.859687px;}
.h10{height:98.906133px;}
.h11{height:116.339893px;}
.he{height:119.425557px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:345.960000px;}
.w4{width:892.500000px;}
.w3{width:892.830000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8d{left:48.420000px;}
.x8a{left:50.400000px;}
.x2b{left:54.270000px;}
.x91{left:55.530000px;}
.x8e{left:57.060000px;}
.x8b{left:59.310324px;}
.xf{left:62.640000px;}
.x90{left:65.700000px;}
.xb{left:71.010000px;}
.x88{left:85.050000px;}
.x60{left:91.800000px;}
.x68{left:95.760000px;}
.x55{left:103.770000px;}
.xa{left:106.380000px;}
.x92{left:109.620000px;}
.x41{left:112.950000px;}
.x73{left:114.480000px;}
.x38{left:117.000000px;}
.x29{left:119.340000px;}
.x42{left:120.869156px;}
.x75{left:123.390324px;}
.x2a{left:125.370000px;}
.x1{left:127.655987px;}
.x3f{left:129.420000px;}
.x78{left:135.000000px;}
.xc{left:138.240000px;}
.x3a{left:141.660000px;}
.x97{left:143.010000px;}
.x4{left:144.215987px;}
.x40{left:147.060000px;}
.x33{left:148.950198px;}
.x39{left:153.990000px;}
.x5{left:155.729987px;}
.x8{left:157.709987px;}
.x3b{left:159.210000px;}
.x3c{left:160.380000px;}
.x3d{left:161.910000px;}
.x95{left:163.260000px;}
.x3e{left:164.520000px;}
.x32{left:167.940000px;}
.x61{left:170.549550px;}
.x18{left:175.590000px;}
.x69{left:179.550000px;}
.x19{left:181.620000px;}
.x96{left:182.969878px;}
.x71{left:186.300000px;}
.x6d{left:187.829550px;}
.x22{left:194.760000px;}
.x79{left:199.530000px;}
.x23{left:200.790000px;}
.x82{left:205.290798px;}
.x80{left:207.809631px;}
.x2e{left:209.790000px;}
.x81{left:211.500429px;}
.x7e{left:212.760000px;}
.x2c{left:213.930000px;}
.x1a{left:216.810000px;}
.x2d{left:219.960000px;}
.x1b{left:222.840000px;}
.x2{left:229.889987px;}
.x85{left:231.750000px;}
.x98{left:244.620000px;}
.x6{left:255.269987px;}
.x7f{left:276.480000px;}
.x8c{left:278.100000px;}
.x87{left:285.120000px;}
.x99{left:289.080016px;}
.x9b{left:290.790000px;}
.x86{left:296.640000px;}
.x76{left:299.610000px;}
.x31{left:301.050000px;}
.x9a{left:306.179906px;}
.x77{left:314.190000px;}
.x8f{left:316.350000px;}
.x28{left:328.320000px;}
.x15{left:334.890000px;}
.x89{left:344.250000px;}
.x1e{left:345.870000px;}
.x1f{left:351.900000px;}
.x4a{left:364.140467px;}
.x74{left:365.760000px;}
.x2f{left:368.730000px;}
.x3{left:369.974987px;}
.x72{left:375.570000px;}
.x45{left:385.290750px;}
.x20{left:387.090000px;}
.x49{left:391.320406px;}
.x21{left:393.120000px;}
.x56{left:396.270450px;}
.x24{left:403.830000px;}
.x25{left:413.550000px;}
.x34{left:418.860396px;}
.x83{left:420.120000px;}
.x7c{left:422.280000px;}
.x4e{left:427.139798px;}
.x37{left:437.490000px;}
.x9{left:441.990000px;}
.x7{left:446.474987px;}
.x47{left:449.191107px;}
.x93{left:451.890000px;}
.x46{left:456.750000px;}
.x58{left:459.990450px;}
.x7b{left:461.250000px;}
.x1c{left:467.280000px;}
.x1d{left:473.310000px;}
.x57{left:474.660900px;}
.x4f{left:479.790000px;}
.x26{left:483.750000px;}
.x4b{left:486.718738px;}
.x6a{left:487.890000px;}
.x27{left:489.780000px;}
.x51{left:494.458853px;}
.x54{left:496.259798px;}
.x10{left:511.650000px;}
.x11{left:517.680000px;}
.x5a{left:523.800900px;}
.x59{left:538.380900px;}
.x84{left:549.630000px;}
.x53{left:562.679780px;}
.x43{left:574.290000px;}
.x65{left:582.210000px;}
.x44{left:583.291087px;}
.x5c{left:585.900900px;}
.x48{left:589.141169px;}
.x4c{left:596.340000px;}
.x62{left:599.219100px;}
.x5b{left:602.191350px;}
.x50{left:604.440459px;}
.x63{left:624.329100px;}
.x4d{left:627.480168px;}
.x52{left:633.329233px;}
.x12{left:647.640000px;}
.x5e{left:649.710000px;}
.x13{left:653.670000px;}
.x5d{left:666.000450px;}
.x35{left:672.390000px;}
.xd{left:701.280000px;}
.xe{left:707.310000px;}
.x16{left:709.560000px;}
.x17{left:715.590000px;}
.x36{left:723.330000px;}
.x7d{left:726.570000px;}
.x5f{left:730.980000px;}
.x6e{left:738.180000px;}
.x64{left:740.878650px;}
.x67{left:742.770450px;}
.x6f{left:744.930450px;}
.x66{left:746.550450px;}
.x70{left:749.429550px;}
.x94{left:765.089850px;}
.x6c{left:768.510450px;}
.x30{left:779.490000px;}
.x7a{left:783.633193px;}
.x14{left:786.600000px;}
.x6b{left:810.540000px;}
@media print{
.ve{vertical-align:-60.160000pt;}
.v18{vertical-align:-39.358560pt;}
.v10{vertical-align:-36.162670pt;}
.v7{vertical-align:-26.561696pt;}
.vd{vertical-align:-23.999822pt;}
.v13{vertical-align:-18.560000pt;}
.v16{vertical-align:-16.000000pt;}
.vc{vertical-align:-13.759467pt;}
.v1c{vertical-align:-10.880000pt;}
.v1e{vertical-align:-9.921600pt;}
.v11{vertical-align:-8.959226pt;}
.v1b{vertical-align:-7.358400pt;}
.v1d{vertical-align:-6.081600pt;}
.v19{vertical-align:-4.800000pt;}
.vb{vertical-align:-3.840000pt;}
.v6{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.281600pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.281600pt;}
.v3{vertical-align:2.560000pt;}
.v17{vertical-align:5.120000pt;}
.v1f{vertical-align:6.081600pt;}
.v14{vertical-align:16.000000pt;}
.vf{vertical-align:16.959135pt;}
.v12{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.v5{vertical-align:24.000000pt;}
.v1a{vertical-align:27.518400pt;}
.v2{vertical-align:32.319488pt;}
.v8{vertical-align:37.440000pt;}
.v15{vertical-align:39.681600pt;}
.v4{vertical-align:55.679488pt;}
.lsc2{letter-spacing:-3.840000pt;}
.ls40{letter-spacing:-2.592000pt;}
.lsff{letter-spacing:-1.922191pt;}
.lsfb{letter-spacing:-1.813833pt;}
.lsf6{letter-spacing:-1.801471pt;}
.ls3e{letter-spacing:-1.593600pt;}
.lse8{letter-spacing:-1.362079pt;}
.lsef{letter-spacing:-1.302884pt;}
.lsf0{letter-spacing:-1.054820pt;}
.lsda{letter-spacing:-1.044953pt;}
.lsd7{letter-spacing:-1.029281pt;}
.lsdd{letter-spacing:-0.842479pt;}
.lsdc{letter-spacing:-0.812788pt;}
.ls3{letter-spacing:-0.768000pt;}
.lse7{letter-spacing:-0.708620pt;}
.lsf3{letter-spacing:-0.607234pt;}
.lsf1{letter-spacing:-0.576488pt;}
.ls86{letter-spacing:-0.448000pt;}
.lsb4{letter-spacing:-0.358048pt;}
.lsfd{letter-spacing:-0.353624pt;}
.lsf7{letter-spacing:-0.344260pt;}
.lsf8{letter-spacing:-0.329840pt;}
.lsab{letter-spacing:-0.321600pt;}
.lsf9{letter-spacing:-0.320681pt;}
.lsfe{letter-spacing:-0.320365pt;}
.ls4d{letter-spacing:-0.320000pt;}
.ls3c{letter-spacing:-0.307200pt;}
.lsba{letter-spacing:-0.304608pt;}
.lsaa{letter-spacing:-0.302400pt;}
.ls5a{letter-spacing:-0.268800pt;}
.ls33{letter-spacing:-0.249600pt;}
.lsd6{letter-spacing:-0.240480pt;}
.ls7c{letter-spacing:-0.229792pt;}
.ls2a{letter-spacing:-0.211200pt;}
.lsf5{letter-spacing:-0.204800pt;}
.lsa8{letter-spacing:-0.197728pt;}
.ls87{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.185600pt;}
.lsc3{letter-spacing:-0.179200pt;}
.lsd2{letter-spacing:-0.172800pt;}
.lsb9{letter-spacing:-0.165664pt;}
.ls81{letter-spacing:-0.161728pt;}
.lse3{letter-spacing:-0.160320pt;}
.ls2b{letter-spacing:-0.160000pt;}
.lsb7{letter-spacing:-0.153600pt;}
.lsee{letter-spacing:-0.149632pt;}
.ls74{letter-spacing:-0.147200pt;}
.lse6{letter-spacing:-0.138944pt;}
.lsb5{letter-spacing:-0.134400pt;}
.lsa3{letter-spacing:-0.129600pt;}
.ls4{letter-spacing:-0.128000pt;}
.lse1{letter-spacing:-0.122912pt;}
.ls7d{letter-spacing:-0.117568pt;}
.lsca{letter-spacing:-0.112224pt;}
.lsc0{letter-spacing:-0.106880pt;}
.ls73{letter-spacing:-0.105600pt;}
.ls6d{letter-spacing:-0.101536pt;}
.lseb{letter-spacing:-0.096192pt;}
.ls4c{letter-spacing:-0.096000pt;}
.lscf{letter-spacing:-0.090848pt;}
.ls3f{letter-spacing:-0.089600pt;}
.lsec{letter-spacing:-0.086400pt;}
.ls6e{letter-spacing:-0.085504pt;}
.lsde{letter-spacing:-0.083200pt;}
.lsa9{letter-spacing:-0.081600pt;}
.lsac{letter-spacing:-0.080864pt;}
.lse2{letter-spacing:-0.080160pt;}
.lscc{letter-spacing:-0.079488pt;}
.lsb6{letter-spacing:-0.076800pt;}
.ls56{letter-spacing:-0.076608pt;}
.lsd5{letter-spacing:-0.074816pt;}
.ls50{letter-spacing:-0.070400pt;}
.ls9b{letter-spacing:-0.069472pt;}
.lsc1{letter-spacing:-0.067200pt;}
.ls42{letter-spacing:-0.064128pt;}
.ls55{letter-spacing:-0.064000pt;}
.lsa5{letter-spacing:-0.062400pt;}
.ls6f{letter-spacing:-0.058784pt;}
.ls5b{letter-spacing:-0.057600pt;}
.lse5{letter-spacing:-0.053440pt;}
.lscd{letter-spacing:-0.052800pt;}
.ls57{letter-spacing:-0.051200pt;}
.ls49{letter-spacing:-0.049984pt;}
.ls1b{letter-spacing:-0.049152pt;}
.lsb8{letter-spacing:-0.048096pt;}
.ls9f{letter-spacing:-0.048000pt;}
.ls54{letter-spacing:-0.045440pt;}
.ls20{letter-spacing:-0.044800pt;}
.ls21{letter-spacing:-0.043008pt;}
.ls1d{letter-spacing:-0.038400pt;}
.lsd3{letter-spacing:-0.037408pt;}
.ls4a{letter-spacing:-0.036352pt;}
.lsa2{letter-spacing:-0.033600pt;}
.ls34{letter-spacing:-0.032064pt;}
.ls36{letter-spacing:-0.032000pt;}
.lsdb{letter-spacing:-0.031175pt;}
.lsbb{letter-spacing:-0.029792pt;}
.lsa1{letter-spacing:-0.028800pt;}
.lscb{letter-spacing:-0.026720pt;}
.ls27{letter-spacing:-0.025600pt;}
.lsa0{letter-spacing:-0.024000pt;}
.ls39{letter-spacing:-0.021376pt;}
.ls1e{letter-spacing:-0.019200pt;}
.ls72{letter-spacing:-0.014400pt;}
.ls1c{letter-spacing:-0.012800pt;}
.ls9d{letter-spacing:-0.010688pt;}
.lsa4{letter-spacing:-0.009600pt;}
.ls1f{letter-spacing:-0.006400pt;}
.ls22{letter-spacing:-0.006144pt;}
.ls9e{letter-spacing:-0.004800pt;}
.ls2{letter-spacing:0.000000pt;}
.ls89{letter-spacing:0.003456pt;}
.ls62{letter-spacing:0.004800pt;}
.lsb2{letter-spacing:0.005344pt;}
.ls16{letter-spacing:0.006400pt;}
.ls8c{letter-spacing:0.006912pt;}
.ls63{letter-spacing:0.009600pt;}
.lsbc{letter-spacing:0.010688pt;}
.lsc9{letter-spacing:0.012768pt;}
.ls10{letter-spacing:0.012800pt;}
.ls78{letter-spacing:0.014400pt;}
.lsaf{letter-spacing:0.016032pt;}
.ls15{letter-spacing:0.019200pt;}
.ls7{letter-spacing:0.022368pt;}
.lsa{letter-spacing:0.023424pt;}
.ls77{letter-spacing:0.024000pt;}
.ls12{letter-spacing:0.025600pt;}
.ls76{letter-spacing:0.026720pt;}
.ls66{letter-spacing:0.028800pt;}
.ls18{letter-spacing:0.032000pt;}
.ls61{letter-spacing:0.033600pt;}
.lse{letter-spacing:0.035136pt;}
.lsf{letter-spacing:0.037280pt;}
.ls25{letter-spacing:0.038400pt;}
.ls8e{letter-spacing:0.043200pt;}
.ls23{letter-spacing:0.044736pt;}
.ls13{letter-spacing:0.044800pt;}
.ls51{letter-spacing:0.045440pt;}
.lsb{letter-spacing:0.046848pt;}
.ls8d{letter-spacing:0.048000pt;}
.ls8b{letter-spacing:0.048096pt;}
.ls24{letter-spacing:0.051200pt;}
.lsd8{letter-spacing:0.051464pt;}
.ls5{letter-spacing:0.052192pt;}
.ls60{letter-spacing:0.052800pt;}
.ls30{letter-spacing:0.053440pt;}
.ls14{letter-spacing:0.057600pt;}
.ls99{letter-spacing:0.059584pt;}
.ls1a{letter-spacing:0.059648pt;}
.ls8f{letter-spacing:0.062400pt;}
.ls28{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.064416pt;}
.ls64{letter-spacing:0.067200pt;}
.lse4{letter-spacing:0.069472pt;}
.lsc{letter-spacing:0.070272pt;}
.ls17{letter-spacing:0.070400pt;}
.ls79{letter-spacing:0.072000pt;}
.ls6{letter-spacing:0.074560pt;}
.ls41{letter-spacing:0.074816pt;}
.lsf4{letter-spacing:0.076128pt;}
.lsce{letter-spacing:0.076608pt;}
.ls11{letter-spacing:0.076800pt;}
.ls70{letter-spacing:0.080160pt;}
.ls91{letter-spacing:0.081600pt;}
.ls8{letter-spacing:0.081984pt;}
.ls52{letter-spacing:0.083200pt;}
.lsbd{letter-spacing:0.085120pt;}
.ls9c{letter-spacing:0.085504pt;}
.ls90{letter-spacing:0.086400pt;}
.ls2e{letter-spacing:0.087840pt;}
.lsc8{letter-spacing:0.089376pt;}
.ls2c{letter-spacing:0.089600pt;}
.lsd0{letter-spacing:0.090848pt;}
.ls5d{letter-spacing:0.091200pt;}
.ls4e{letter-spacing:0.093632pt;}
.ls2d{letter-spacing:0.093696pt;}
.ls19{letter-spacing:0.096000pt;}
.ls7e{letter-spacing:0.096192pt;}
.ls98{letter-spacing:0.097888pt;}
.lsb3{letter-spacing:0.100800pt;}
.ls26{letter-spacing:0.102400pt;}
.lsd{letter-spacing:0.105408pt;}
.ls96{letter-spacing:0.105600pt;}
.ls4f{letter-spacing:0.108800pt;}
.lsb1{letter-spacing:0.110400pt;}
.ls9a{letter-spacing:0.110656pt;}
.lsbf{letter-spacing:0.114912pt;}
.ls75{letter-spacing:0.115200pt;}
.lsbe{letter-spacing:0.119168pt;}
.ls92{letter-spacing:0.120000pt;}
.ls38{letter-spacing:0.121600pt;}
.ls0{letter-spacing:0.128000pt;}
.lsa6{letter-spacing:0.128256pt;}
.ls2f{letter-spacing:0.134400pt;}
.ls83{letter-spacing:0.140800pt;}
.lsa7{letter-spacing:0.144000pt;}
.ls35{letter-spacing:0.147200pt;}
.ls94{letter-spacing:0.158400pt;}
.ls80{letter-spacing:0.159467pt;}
.ls53{letter-spacing:0.160000pt;}
.lsd4{letter-spacing:0.160320pt;}
.ls7f{letter-spacing:0.160533pt;}
.ls46{letter-spacing:0.161728pt;}
.ls32{letter-spacing:0.170240pt;}
.ls7a{letter-spacing:0.204800pt;}
.ls71{letter-spacing:0.216000pt;}
.ls1{letter-spacing:0.256000pt;}
.ls5e{letter-spacing:0.320000pt;}
.lsd1{letter-spacing:0.372125pt;}
.ls31{letter-spacing:0.403200pt;}
.lsfa{letter-spacing:0.547044pt;}
.lsed{letter-spacing:0.624971pt;}
.ls43{letter-spacing:1.472000pt;}
.ls44{letter-spacing:1.920000pt;}
.lsf2{letter-spacing:2.267519pt;}
.ls82{letter-spacing:2.560000pt;}
.ls84{letter-spacing:3.040000pt;}
.ls85{letter-spacing:3.200000pt;}
.ls7b{letter-spacing:3.520000pt;}
.ls45{letter-spacing:3.609600pt;}
.lsdf{letter-spacing:3.840000pt;}
.ls37{letter-spacing:3.846400pt;}
.lse0{letter-spacing:4.160000pt;}
.ls3b{letter-spacing:4.166400pt;}
.ls58{letter-spacing:4.480000pt;}
.ls59{letter-spacing:4.800000pt;}
.ls88{letter-spacing:6.336000pt;}
.ls101{letter-spacing:7.040000pt;}
.ls5c{letter-spacing:7.680000pt;}
.ls4b{letter-spacing:8.825600pt;}
.ls3a{letter-spacing:9.612800pt;}
.ls47{letter-spacing:11.840000pt;}
.ls29{letter-spacing:16.320000pt;}
.ls100{letter-spacing:17.280000pt;}
.ls48{letter-spacing:23.040000pt;}
.lsc4{letter-spacing:30.868608pt;}
.ls68{letter-spacing:55.488000pt;}
.ls69{letter-spacing:59.732876pt;}
.lsd9{letter-spacing:61.455997pt;}
.lsc5{letter-spacing:62.880000pt;}
.ls6a{letter-spacing:123.369451pt;}
.ls67{letter-spacing:148.958400pt;}
.ls5f{letter-spacing:156.960000pt;}
.ls65{letter-spacing:164.961600pt;}
.lse9{letter-spacing:168.158400pt;}
.lsc6{letter-spacing:187.041600pt;}
.lsae{letter-spacing:235.280000pt;}
.lsc7{letter-spacing:369.758400pt;}
.lsad{letter-spacing:374.800000pt;}
.lsfc{letter-spacing:390.831443pt;}
.lsea{letter-spacing:407.520000pt;}
.lsb0{letter-spacing:443.361067pt;}
.ls8a{letter-spacing:511.440000pt;}
.ls97{letter-spacing:622.480000pt;}
.ls95{letter-spacing:646.480000pt;}
.ls93{letter-spacing:650.637344pt;}
.ls6b{letter-spacing:798.780675pt;}
.ls6c{letter-spacing:954.942935pt;}
.ws41{word-spacing:-401.478875pt;}
.ws32{word-spacing:-72.461387pt;}
.ws2d{word-spacing:-64.000000pt;}
.ws25{word-spacing:-26.352000pt;}
.ws16{word-spacing:-21.907882pt;}
.ws2{word-spacing:-18.048000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws19{word-spacing:-17.102133pt;}
.ws1{word-spacing:-17.024000pt;}
.ws9{word-spacing:-16.403200pt;}
.ws10{word-spacing:-16.128000pt;}
.ws43{word-spacing:-16.070400pt;}
.ws7{word-spacing:-16.064000pt;}
.ws44{word-spacing:-16.038400pt;}
.ws20{word-spacing:-16.019200pt;}
.wsb{word-spacing:-16.012800pt;}
.ws42{word-spacing:-16.006400pt;}
.ws6{word-spacing:-16.000000pt;}
.ws46{word-spacing:-15.993600pt;}
.ws35{word-spacing:-15.980800pt;}
.ws45{word-spacing:-15.961600pt;}
.ws34{word-spacing:-15.916800pt;}
.ws33{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.840000pt;}
.ws21{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.692800pt;}
.wse{word-spacing:-15.680000pt;}
.ws5{word-spacing:-14.704416pt;}
.ws15{word-spacing:-14.579200pt;}
.wsc{word-spacing:-14.080000pt;}
.ws22{word-spacing:-13.440160pt;}
.ws2a{word-spacing:-13.001952pt;}
.ws38{word-spacing:-12.131057pt;}
.ws28{word-spacing:-12.014400pt;}
.ws2b{word-spacing:-12.009600pt;}
.ws2c{word-spacing:-12.004800pt;}
.ws12{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.985600pt;}
.ws26{word-spacing:-11.697600pt;}
.ws29{word-spacing:-11.678400pt;}
.ws30{word-spacing:-11.377515pt;}
.ws37{word-spacing:-11.056854pt;}
.ws1e{word-spacing:-10.801728pt;}
.wsf{word-spacing:-10.733632pt;}
.wsd{word-spacing:-10.640000pt;}
.ws11{word-spacing:-10.563392pt;}
.ws2e{word-spacing:-10.560000pt;}
.ws1f{word-spacing:-10.478272pt;}
.ws36{word-spacing:-10.296769pt;}
.ws3a{word-spacing:-10.107756pt;}
.ws3b{word-spacing:-10.077010pt;}
.ws17{word-spacing:-9.976267pt;}
.ws31{word-spacing:-9.976109pt;}
.ws3e{word-spacing:-8.856448pt;}
.ws40{word-spacing:-8.833600pt;}
.ws23{word-spacing:-8.646912pt;}
.ws1b{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.000000pt;}
.ws2f{word-spacing:-7.974400pt;}
.ws24{word-spacing:-7.952000pt;}
.ws27{word-spacing:-7.680000pt;}
.ws3d{word-spacing:-0.006400pt;}
.ws4{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.006400pt;}
.ws1c{word-spacing:0.134400pt;}
.ws1d{word-spacing:0.139200pt;}
.ws39{word-spacing:26.844776pt;}
.ws3f{word-spacing:268.777625pt;}
.ws18{word-spacing:460.841334pt;}
.ws1a{word-spacing:535.179916pt;}
._145{margin-left:-2809.371168pt;}
._129{margin-left:-2754.220704pt;}
._109{margin-left:-2696.685472pt;}
._73{margin-left:-2667.891200pt;}
._d8{margin-left:-2653.000736pt;}
._15c{margin-left:-2644.106850pt;}
._3f{margin-left:-2642.848000pt;}
._195{margin-left:-2636.433120pt;}
._56{margin-left:-2627.840000pt;}
._b1{margin-left:-2625.523200pt;}
._51{margin-left:-2624.403200pt;}
._8b{margin-left:-2623.498400pt;}
._49{margin-left:-2620.721024pt;}
._39{margin-left:-2619.571200pt;}
._48{margin-left:-2618.681120pt;}
._b0{margin-left:-2615.942400pt;}
._102{margin-left:-2610.942496pt;}
._12b{margin-left:-2607.565536pt;}
._27{margin-left:-2606.065600pt;}
._ad{margin-left:-2604.307339pt;}
._ae{margin-left:-2603.200000pt;}
._37{margin-left:-2592.949776pt;}
._18{margin-left:-2591.141280pt;}
._f{margin-left:-2590.123200pt;}
._192{margin-left:-2584.097280pt;}
._12c{margin-left:-2583.164307pt;}
._e{margin-left:-2575.267840pt;}
._20{margin-left:-2573.836000pt;}
._17d{margin-left:-2562.880000pt;}
._c{margin-left:-2560.204800pt;}
._4{margin-left:-2545.097792pt;}
._105{margin-left:-2540.505600pt;}
._172{margin-left:-2531.609600pt;}
._188{margin-left:-2528.275200pt;}
._137{margin-left:-2494.355200pt;}
._16b{margin-left:-2493.440000pt;}
._8f{margin-left:-2490.211456pt;}
._169{margin-left:-2489.280000pt;}
._182{margin-left:-2482.649600pt;}
._4b{margin-left:-2470.554880pt;}
._46{margin-left:-2469.120000pt;}
._2f{margin-left:-2468.000000pt;}
._18c{margin-left:-2466.944000pt;}
._17f{margin-left:-2432.192000pt;}
._15e{margin-left:-2429.386345pt;}
._12f{margin-left:-2406.400000pt;}
._139{margin-left:-2403.760000pt;}
._16d{margin-left:-2389.839040pt;}
._1b{margin-left:-2382.482080pt;}
._104{margin-left:-2356.998400pt;}
._19a{margin-left:-2343.571200pt;}
._167{margin-left:-2339.494400pt;}
._6{margin-left:-2338.043552pt;}
._d9{margin-left:-2323.801728pt;}
._130{margin-left:-2315.731328pt;}
._4d{margin-left:-2288.550400pt;}
._17e{margin-left:-2277.771200pt;}
._44{margin-left:-2258.214400pt;}
._21{margin-left:-2251.142400pt;}
._13a{margin-left:-2246.391264pt;}
._13d{margin-left:-2200.992000pt;}
._ab{margin-left:-2197.612800pt;}
._131{margin-left:-2169.250432pt;}
._ac{margin-left:-2145.984000pt;}
._22{margin-left:-2144.832000pt;}
._5{margin-left:-2135.852864pt;}
._13b{margin-left:-2128.335104pt;}
._17b{margin-left:-2071.232000pt;}
._59{margin-left:-2065.526144pt;}
._b3{margin-left:-2050.475008pt;}
._185{margin-left:-2008.940800pt;}
._ea{margin-left:-1988.719648pt;}
._a8{margin-left:-1951.366400pt;}
._b2{margin-left:-1948.499200pt;}
._e9{margin-left:-1940.359840pt;}
._38{margin-left:-1925.225103pt;}
._189{margin-left:-1900.754560pt;}
._18f{margin-left:-1899.609760pt;}
._165{margin-left:-1868.202240pt;}
._178{margin-left:-1857.824000pt;}
._52{margin-left:-1802.867200pt;}
._32{margin-left:-1799.013540pt;}
._19d{margin-left:-1778.176000pt;}
._30{margin-left:-1776.189333pt;}
._144{margin-left:-1767.596800pt;}
._4e{margin-left:-1754.041600pt;}
._15f{margin-left:-1744.382168pt;}
._8c{margin-left:-1722.528000pt;}
._193{margin-left:-1710.956800pt;}
._196{margin-left:-1709.318400pt;}
._35{margin-left:-1685.259414pt;}
._58{margin-left:-1677.241600pt;}
._13e{margin-left:-1626.493184pt;}
._19c{margin-left:-1625.280000pt;}
._40{margin-left:-1612.499200pt;}
._19{margin-left:-1606.028800pt;}
._7{margin-left:-1506.936192pt;}
._12d{margin-left:-1495.027196pt;}
._12e{margin-left:-1491.430400pt;}
._138{margin-left:-1446.000000pt;}
._15d{margin-left:-1427.684601pt;}
._41{margin-left:-1424.806400pt;}
._36{margin-left:-1408.476933pt;}
._16e{margin-left:-1401.806528pt;}
._31{margin-left:-1378.705048pt;}
._198{margin-left:-1350.208000pt;}
._a9{margin-left:-1341.036800pt;}
._17a{margin-left:-1334.536000pt;}
._18d{margin-left:-1333.636800pt;}
._136{margin-left:-1327.961600pt;}
._72{margin-left:-1319.424000pt;}
._179{margin-left:-1305.702400pt;}
._186{margin-left:-1273.888000pt;}
._af{margin-left:-1267.660800pt;}
._163{margin-left:-1170.304000pt;}
._47{margin-left:-1147.264000pt;}
._176{margin-left:-1118.720000pt;}
._2e{margin-left:-1103.392000pt;}
._15a{margin-left:-1096.921888pt;}
._57{margin-left:-1093.568000pt;}
._187{margin-left:-1092.268800pt;}
._19b{margin-left:-1086.720000pt;}
._166{margin-left:-1067.321600pt;}
._13c{margin-left:-1049.369600pt;}
._12a{margin-left:-1028.352320pt;}
._71{margin-left:-992.287616pt;}
._134{margin-left:-961.984000pt;}
._aa{margin-left:-960.256000pt;}
._8{margin-left:-924.821344pt;}
._181{margin-left:-923.264000pt;}
._4f{margin-left:-913.201024pt;}
._177{margin-left:-891.136000pt;}
._53{margin-left:-871.353600pt;}
._2d{margin-left:-850.560000pt;}
._162{margin-left:-830.720000pt;}
._42{margin-left:-816.403200pt;}
._199{margin-left:-798.739200pt;}
._164{margin-left:-697.228800pt;}
._29{margin-left:-682.368000pt;}
._2c{margin-left:-667.411680pt;}
._174{margin-left:-664.141600pt;}
._106{margin-left:-659.840000pt;}
._1c{margin-left:-655.414976pt;}
._e7{margin-left:-598.098976pt;}
._175{margin-left:-551.667840pt;}
._db{margin-left:-525.720640pt;}
._108{margin-left:-503.411200pt;}
._1a{margin-left:-497.765312pt;}
._180{margin-left:-496.640000pt;}
._2b{margin-left:-487.756800pt;}
._173{margin-left:-469.059200pt;}
._103{margin-left:-423.372800pt;}
._9{margin-left:-422.173280pt;}
._171{margin-left:-392.645275pt;}
._4a{margin-left:-389.811200pt;}
._74{margin-left:-388.070400pt;}
._107{margin-left:-349.363200pt;}
._85{margin-left:-347.289805pt;}
._7e{margin-left:-326.342908pt;}
._88{margin-left:-324.742149pt;}
._8d{margin-left:-314.560000pt;}
._7d{margin-left:-302.981394pt;}
._87{margin-left:-301.702155pt;}
._77{margin-left:-292.947085pt;}
._82{margin-left:-290.708411pt;}
._89{margin-left:-287.473180pt;}
._76{margin-left:-269.586659pt;}
._81{margin-left:-267.667225pt;}
._7b{margin-left:-254.486582pt;}
._84{margin-left:-252.567148pt;}
._79{margin-left:-219.928794pt;}
._83{margin-left:-217.694110pt;}
._70{margin-left:-203.920000pt;}
._15b{margin-left:-201.280000pt;}
._da{margin-left:-198.640000pt;}
._86{margin-left:-174.820107pt;}
._7c{margin-left:-171.300480pt;}
._e8{margin-left:-158.160000pt;}
._7a{margin-left:-142.612727pt;}
._78{margin-left:-118.933061pt;}
._133{margin-left:-61.288336pt;}
._132{margin-left:-60.261405pt;}
._3d{margin-left:-23.520000pt;}
._3e{margin-left:-22.182400pt;}
._194{margin-left:-17.988960pt;}
._25{margin-left:-16.398240pt;}
._26{margin-left:-15.372640pt;}
._3b{margin-left:-12.659200pt;}
._3a{margin-left:-11.699200pt;}
._34{margin-left:-10.585600pt;}
._33{margin-left:-9.356800pt;}
._55{margin-left:-7.680000pt;}
._54{margin-left:-6.707200pt;}
._50{margin-left:-5.542400pt;}
._1e{margin-left:-4.524800pt;}
._16{margin-left:-3.532800pt;}
._3{margin-left:-2.050400pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.056000pt;}
._28{width:1.945600pt;}
._12{width:2.867200pt;}
._17{width:3.769600pt;}
._13{width:5.395200pt;}
._d{width:6.720000pt;}
._24{width:7.654400pt;}
._15{width:8.627200pt;}
._b{width:9.651200pt;}
._a{width:10.572800pt;}
._1f{width:11.532800pt;}
._23{width:12.441600pt;}
._2a{width:14.131200pt;}
._1d{width:15.027200pt;}
._14{width:17.260800pt;}
._10{width:18.515200pt;}
._11{width:19.456000pt;}
._16c{width:20.627840pt;}
._18e{width:21.925120pt;}
._3c{width:23.046400pt;}
._135{width:24.345600pt;}
._18a{width:28.780800pt;}
._8e{width:30.460800pt;}
._5b{width:33.126400pt;}
._115{width:38.179200pt;}
._151{width:39.518400pt;}
._184{width:43.018592pt;}
._d7{width:44.367008pt;}
._191{width:48.550400pt;}
._183{width:49.984000pt;}
._161{width:51.438001pt;}
._18b{width:52.750080pt;}
._d6{width:55.819200pt;}
._128{width:58.536000pt;}
._ec{width:61.449600pt;}
._160{width:62.617116pt;}
._ee{width:64.588800pt;}
._10c{width:65.918400pt;}
._117{width:67.282112pt;}
._11c{width:68.784000pt;}
._ed{width:69.753600pt;}
._17c{width:71.840000pt;}
._10a{width:73.296288pt;}
._14f{width:74.802912pt;}
._10b{width:76.747200pt;}
._bc{width:78.460800pt;}
._124{width:82.718400pt;}
._150{width:83.875200pt;}
._10f{width:89.198400pt;}
._be{width:90.849600pt;}
._e6{width:92.371200pt;}
._a4{width:94.540800pt;}
._f1{width:96.129600pt;}
._43{width:97.536000pt;}
._14c{width:98.572800pt;}
._e5{width:99.974400pt;}
._10d{width:102.688960pt;}
._d0{width:104.098080pt;}
._df{width:105.427200pt;}
._9e{width:106.329600pt;}
._9f{width:107.457600pt;}
._d5{width:108.671360pt;}
._a0{width:110.491200pt;}
._114{width:111.451200pt;}
._11b{width:113.140800pt;}
._bf{width:114.854400pt;}
._c1{width:116.011200pt;}
._95{width:118.872000pt;}
._69{width:120.038400pt;}
._f9{width:121.185600pt;}
._a2{width:122.568000pt;}
._d1{width:124.258080pt;}
._13f{width:126.104160pt;}
._92{width:130.612800pt;}
._11a{width:131.673600pt;}
._c3{width:132.590400pt;}
._116{width:133.483200pt;}
._93{width:134.452800pt;}
._10e{width:135.451200pt;}
._62{width:139.398400pt;}
._197{width:140.800000pt;}
._98{width:142.963200pt;}
._e3{width:143.884800pt;}
._96{width:146.808000pt;}
._122{width:149.222400pt;}
._190{width:150.899200pt;}
._e2{width:153.441600pt;}
._f8{width:154.673280pt;}
._f3{width:155.719040pt;}
._60{width:156.641600pt;}
._9a{width:158.227200pt;}
._119{width:159.432000pt;}
._5e{width:162.744000pt;}
._6c{width:164.640000pt;}
._140{width:166.168640pt;}
._121{width:167.092800pt;}
._61{width:172.612800pt;}
._159{width:173.553600pt;}
._ba{width:177.408000pt;}
._6d{width:178.512000pt;}
._ef{width:180.340800pt;}
._6a{width:182.136000pt;}
._c0{width:185.121600pt;}
._156{width:186.201600pt;}
._e1{width:188.332800pt;}
._fc{width:191.140800pt;}
._5a{width:192.528000pt;}
._120{width:195.619200pt;}
._9c{width:198.340800pt;}
._6f{width:199.800000pt;}
._f0{width:201.734400pt;}
._64{width:202.996800pt;}
._f4{width:204.365600pt;}
._ce{width:205.344000pt;}
._14a{width:206.270400pt;}
._c9{width:207.506560pt;}
._149{width:209.788800pt;}
._d3{width:211.089600pt;}
._5c{width:213.218560pt;}
._f7{width:215.131200pt;}
._cb{width:216.103360pt;}
._b6{width:217.401600pt;}
._14b{width:218.428800pt;}
._126{width:219.609600pt;}
._b5{width:221.721312pt;}
._5d{width:223.601600pt;}
._63{width:224.586240pt;}
._5f{width:226.032000pt;}
._65{width:228.614400pt;}
._147{width:231.096000pt;}
._143{width:233.452640pt;}
._66{width:234.508800pt;}
._148{width:239.548800pt;}
._153{width:242.078400pt;}
._68{width:243.244800pt;}
._67{width:244.852800pt;}
._4c{width:249.184000pt;}
._c5{width:250.500160pt;}
._cd{width:255.225600pt;}
._11e{width:256.951360pt;}
._101{width:258.055360pt;}
._100{width:260.769600pt;}
._6b{width:263.160000pt;}
._125{width:267.523200pt;}
._157{width:268.845760pt;}
._8a{width:270.176000pt;}
._11f{width:271.992000pt;}
._152{width:280.560000pt;}
._170{width:296.341008pt;}
._9d{width:298.781600pt;}
._146{width:304.622720pt;}
._16f{width:305.617442pt;}
._110{width:308.451200pt;}
._a7{width:326.952320pt;}
._158{width:329.484160pt;}
._dc{width:331.148800pt;}
._eb{width:332.788800pt;}
._127{width:335.608960pt;}
._ff{width:338.937600pt;}
._6e{width:341.260800pt;}
._111{width:342.972160pt;}
._11d{width:345.345600pt;}
._75{width:350.227200pt;}
._a1{width:359.167360pt;}
._fd{width:360.189760pt;}
._c2{width:366.367520pt;}
._c8{width:367.965920pt;}
._112{width:374.300000pt;}
._155{width:381.508800pt;}
._fa{width:384.052800pt;}
._142{width:387.028512pt;}
._14d{width:398.300000pt;}
._ca{width:401.404960pt;}
._cc{width:415.804960pt;}
._113{width:422.803200pt;}
._c6{width:423.955680pt;}
._7f{width:426.656000pt;}
._c4{width:433.234080pt;}
._cf{width:435.803520pt;}
._c7{width:437.401920pt;}
._d4{width:438.355680pt;}
._141{width:440.215264pt;}
._d2{width:442.001120pt;}
._123{width:444.177600pt;}
._14e{width:446.803200pt;}
._fe{width:452.654400pt;}
._b4{width:454.028800pt;}
._80{width:457.043200pt;}
._e4{width:460.748800pt;}
._fb{width:473.284800pt;}
._a6{width:475.925120pt;}
._118{width:479.719360pt;}
._f2{width:484.646400pt;}
._f5{width:490.420800pt;}
._f6{width:502.262400pt;}
._154{width:515.851200pt;}
._b9{width:527.268960pt;}
._b7{width:532.577760pt;}
._bb{width:539.323520pt;}
._b8{width:551.598400pt;}
._e0{width:552.908800pt;}
._a5{width:577.874560pt;}
._90{width:591.369600pt;}
._a3{width:595.236800pt;}
._91{width:645.936000pt;}
._99{width:706.718400pt;}
._9b{width:718.329600pt;}
._97{width:719.505600pt;}
._dd{width:737.188800pt;}
._94{width:742.238400pt;}
._1{width:880.557653pt;}
._45{width:1214.349504pt;}
._de{width:1322.059200pt;}
._bd{width:1572.864000pt;}
._168{width:2050.816000pt;}
._16a{width:2055.648000pt;}
.fs13{font-size:26.560000pt;}
.fsc{font-size:32.000000pt;}
.fs12{font-size:34.560000pt;}
.fs17{font-size:37.113600pt;}
.fs1b{font-size:38.432533pt;}
.fs14{font-size:39.587733pt;}
.fs10{font-size:39.905067pt;}
.fs6{font-size:40.000000pt;}
.fs18{font-size:41.388800pt;}
.fs7{font-size:42.560000pt;}
.fsd{font-size:42.794667pt;}
.fs9{font-size:45.440000pt;}
.fs1e{font-size:47.112533pt;}
.fs1d{font-size:47.120000pt;}
.fs1f{font-size:47.149867pt;}
.fs1c{font-size:47.158933pt;}
.fs1a{font-size:47.301333pt;}
.fs19{font-size:47.377600pt;}
.fsb{font-size:48.000000pt;}
.fs16{font-size:51.958933pt;}
.fs15{font-size:51.987733pt;}
.fs8{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fsa{font-size:67.639544pt;}
.fs11{font-size:68.408533pt;}
.fse{font-size:73.363733pt;}
.fs4{font-size:74.560000pt;}
.fs2{font-size:74.880000pt;}
.fsf{font-size:102.612267pt;}
.y0{bottom:0.000000pt;}
.y18f{bottom:2.800400pt;}
.y11{bottom:32.027067pt;}
.y10{bottom:49.467067pt;}
.y158{bottom:98.507067pt;}
.yf0{bottom:101.947067pt;}
.y122{bottom:106.027067pt;}
.y44{bottom:107.947067pt;}
.y1e5{bottom:109.307067pt;}
.y10d{bottom:110.507067pt;}
.y253{bottom:112.507067pt;}
.y7b{bottom:114.027067pt;}
.y2b{bottom:118.187200pt;}
.y23b{bottom:118.747067pt;}
.y196{bottom:122.267067pt;}
.y92{bottom:123.067067pt;}
.y1da{bottom:125.547067pt;}
.y20c{bottom:127.467067pt;}
.y252{bottom:127.867067pt;}
.y157{bottom:128.507067pt;}
.y28c{bottom:130.027067pt;}
.y1b5{bottom:130.267067pt;}
.y6e{bottom:134.107200pt;}
.y6d{bottom:134.747067pt;}
.y11c{bottom:134.827067pt;}
.y23a{bottom:136.587067pt;}
.y5a{bottom:136.747067pt;}
.y1fa{bottom:137.307067pt;}
.yef{bottom:138.747067pt;}
.y156{bottom:142.587067pt;}
.y1bb{bottom:142.827067pt;}
.y251{bottom:143.147200pt;}
.ya8{bottom:143.307067pt;}
.y43{bottom:144.747067pt;}
.y1e4{bottom:146.107200pt;}
.y10c{bottom:147.307067pt;}
.y1e8{bottom:148.747067pt;}
.y195{bottom:149.707067pt;}
.y7a{bottom:150.827067pt;}
.y239{bottom:151.867067pt;}
.y82{bottom:155.707067pt;}
.y234{bottom:156.507067pt;}
.y2a{bottom:157.067200pt;}
.y91{bottom:159.867067pt;}
.y280{bottom:160.747067pt;}
.y155{bottom:161.226667pt;}
.y1d9{bottom:162.347067pt;}
.y1e7{bottom:164.107200pt;}
.y20b{bottom:164.267067pt;}
.y28b{bottom:166.827067pt;}
.y1b4{bottom:167.067200pt;}
.ye5{bottom:168.907067pt;}
.y6c{bottom:171.547067pt;}
.y11b{bottom:171.627067pt;}
.y59{bottom:173.547067pt;}
.y154{bottom:174.987467pt;}
.y194{bottom:177.147200pt;}
.y26f{bottom:178.987067pt;}
.y1ba{bottom:179.627067pt;}
.ya7{bottom:180.107200pt;}
.y238{bottom:180.347067pt;}
.ye0{bottom:180.907067pt;}
.ye6{bottom:180.907518pt;}
.y42{bottom:181.547067pt;}
.y233{bottom:181.787067pt;}
.y1e3{bottom:182.907067pt;}
.y10b{bottom:184.107200pt;}
.yeb{bottom:186.027447pt;}
.y81{bottom:186.427067pt;}
.y153{bottom:187.547067pt;}
.y79{bottom:187.627067pt;}
.y193{bottom:192.507067pt;}
.y1e6{bottom:192.587067pt;}
.ye2{bottom:194.267283pt;}
.ye9{bottom:194.267734pt;}
.yde{bottom:196.267067pt;}
.y90{bottom:196.667067pt;}
.y249{bottom:196.747067pt;}
.y27f{bottom:197.547067pt;}
.ye4{bottom:198.506693pt;}
.yee{bottom:198.508583pt;}
.y1d8{bottom:199.147200pt;}
.y26d{bottom:200.105346pt;}
.y20a{bottom:201.067200pt;}
.y1f3{bottom:201.947067pt;}
.y29{bottom:203.387067pt;}
.y28a{bottom:203.627067pt;}
.y1b3{bottom:203.867067pt;}
.ye7{bottom:205.227661pt;}
.y232{bottom:206.507067pt;}
.y6b{bottom:207.707067pt;}
.y6a{bottom:208.347067pt;}
.y11a{bottom:208.427067pt;}
.y58{bottom:210.267067pt;}
.y192{bottom:210.747067pt;}
.y151{bottom:211.627067pt;}
.y152{bottom:212.506667pt;}
.y264{bottom:215.147200pt;}
.y247{bottom:215.464586pt;}
.y1b9{bottom:216.427067pt;}
.y80{bottom:216.747067pt;}
.ya6{bottom:216.907067pt;}
.ye1{bottom:217.307471pt;}
.ye8{bottom:217.307922pt;}
.ydf{bottom:217.626203pt;}
.y41{bottom:218.267067pt;}
.y1e2{bottom:219.707067pt;}
.y10a{bottom:220.907067pt;}
.ye3{bottom:221.627067pt;}
.yea{bottom:221.627247pt;}
.yec{bottom:222.427627pt;}
.yb2{bottom:224.427067pt;}
.y150{bottom:224.987067pt;}
.y231{bottom:226.107067pt;}
.yed{bottom:226.188386pt;}
.y23c{bottom:227.787067pt;}
.y191{bottom:228.667067pt;}
.y1f1{bottom:229.066376pt;}
.y1d7{bottom:229.787067pt;}
.y78{bottom:232.427067pt;}
.y8f{bottom:233.467067pt;}
.y27e{bottom:234.267067pt;}
.y209{bottom:237.867067pt;}
.y28{bottom:239.307067pt;}
.y289{bottom:240.427067pt;}
.y1b2{bottom:240.667067pt;}
.y1e9{bottom:240.907067pt;}
.y1d6{bottom:242.027067pt;}
.y18e{bottom:242.506667pt;}
.y265{bottom:243.706818pt;}
.y69{bottom:244.507067pt;}
.y68{bottom:245.147067pt;}
.y119{bottom:245.227067pt;}
.y190{bottom:245.307067pt;}
.y230{bottom:245.627067pt;}
.y57{bottom:247.067067pt;}
.y14f{bottom:247.307067pt;}
.y18d{bottom:252.187067pt;}
.y1b8{bottom:253.227067pt;}
.ya5{bottom:253.707067pt;}
.y40{bottom:255.067067pt;}
.y23d{bottom:256.506755pt;}
.y1e1{bottom:256.507067pt;}
.y1d5{bottom:257.307067pt;}
.y109{bottom:257.707067pt;}
.y208{bottom:258.987067pt;}
.y14e{bottom:260.667067pt;}
.yb1{bottom:261.227067pt;}
.y26e{bottom:261.707067pt;}
.y22f{bottom:265.147067pt;}
.y1f6{bottom:265.547067pt;}
.yd3{bottom:267.067067pt;}
.yd6{bottom:267.067518pt;}
.y77{bottom:269.227067pt;}
.y8e{bottom:270.267067pt;}
.y27d{bottom:271.067067pt;}
.ydb{bottom:272.187447pt;}
.y266{bottom:272.266435pt;}
.y1d4{bottom:273.867067pt;}
.y27{bottom:275.147067pt;}
.y18c{bottom:276.187200pt;}
.y288{bottom:277.227067pt;}
.y1b1{bottom:277.467067pt;}
.y207{bottom:277.867067pt;}
.yd5{bottom:280.427283pt;}
.yd9{bottom:280.427734pt;}
.y14d{bottom:280.907067pt;}
.y67{bottom:281.307067pt;}
.y66{bottom:281.947067pt;}
.y118{bottom:282.027067pt;}
.yd1{bottom:282.427067pt;}
.y56{bottom:283.867067pt;}
.y1f5{bottom:284.347067pt;}
.ydd{bottom:284.666873pt;}
.y1ea{bottom:285.067183pt;}
.y23e{bottom:285.226443pt;}
.y22e{bottom:286.187200pt;}
.y1b7{bottom:290.027067pt;}
.y248{bottom:290.187200pt;}
.y1d3{bottom:290.347067pt;}
.ya4{bottom:290.507067pt;}
.yd7{bottom:291.387661pt;}
.y3f{bottom:291.867067pt;}
.y1e0{bottom:293.307067pt;}
.y108{bottom:294.507067pt;}
.y18b{bottom:295.067067pt;}
.y206{bottom:296.827067pt;}
.yb0{bottom:298.027067pt;}
.y1d2{bottom:298.267067pt;}
.y14c{bottom:299.787067pt;}
.y267{bottom:300.906144pt;}
.y1f4{bottom:303.227067pt;}
.yd4{bottom:303.467471pt;}
.yd8{bottom:303.467922pt;}
.yd2{bottom:303.786203pt;}
.y22d{bottom:304.187200pt;}
.y76{bottom:306.027067pt;}
.y8d{bottom:307.067067pt;}
.yda{bottom:307.787247pt;}
.y27c{bottom:307.867067pt;}
.ydc{bottom:308.587627pt;}
.y26{bottom:310.987067pt;}
.y18a{bottom:313.707067pt;}
.y23f{bottom:313.946132pt;}
.y287{bottom:314.027067pt;}
.y205{bottom:315.787067pt;}
.y65{bottom:318.107067pt;}
.y64{bottom:318.747067pt;}
.y117{bottom:318.827067pt;}
.y1b0{bottom:322.267067pt;}
.y1d1{bottom:322.747067pt;}
.y22c{bottom:325.227067pt;}
.y1b6{bottom:326.827067pt;}
.ya3{bottom:327.307067pt;}
.y3e{bottom:328.667200pt;}
.y1eb{bottom:329.227300pt;}
.y268{bottom:329.465762pt;}
.y1df{bottom:330.027067pt;}
.y107{bottom:331.307067pt;}
.y189{bottom:332.667200pt;}
.y204{bottom:334.667200pt;}
.yaf{bottom:334.827067pt;}
.y14b{bottom:337.707067pt;}
.y1d0{bottom:339.307067pt;}
.y240{bottom:342.586147pt;}
.y75{bottom:342.827200pt;}
.y8c{bottom:343.867067pt;}
.y27b{bottom:344.667200pt;}
.y22b{bottom:344.747200pt;}
.y25{bottom:346.907200pt;}
.y286{bottom:350.827200pt;}
.y188{bottom:351.547067pt;}
.yce{bottom:353.547067pt;}
.ycf{bottom:354.747200pt;}
.y63{bottom:354.907200pt;}
.y62{bottom:355.547067pt;}
.y116{bottom:355.627067pt;}
.y1cf{bottom:355.867067pt;}
.y14a{bottom:356.587067pt;}
.y269{bottom:358.025380pt;}
.y203{bottom:358.987200pt;}
.y1af{bottom:359.067200pt;}
.yd0{bottom:359.547022pt;}
.ya2{bottom:364.107200pt;}
.y22a{bottom:364.267067pt;}
.y3d{bottom:365.467067pt;}
.y106{bottom:368.107200pt;}
.y187{bottom:369.067200pt;}
.y241{bottom:371.305835pt;}
.yae{bottom:371.627067pt;}
.y1de{bottom:371.867067pt;}
.y1ce{bottom:372.347067pt;}
.y1ec{bottom:373.387416pt;}
.y149{bottom:375.547067pt;}
.y74{bottom:379.627067pt;}
.y27a{bottom:381.467067pt;}
.y24{bottom:382.747200pt;}
.y229{bottom:383.867067pt;}
.y26a{bottom:386.584998pt;}
.y1dd{bottom:387.227067pt;}
.y186{bottom:387.627067pt;}
.y8b{bottom:388.667200pt;}
.y1cd{bottom:388.907200pt;}
.y272{bottom:389.067200pt;}
.y1f2{bottom:389.387067pt;}
.y61{bottom:391.707067pt;}
.y60{bottom:392.347067pt;}
.y148{bottom:394.507067pt;}
.y1ae{bottom:395.867067pt;}
.ycd{bottom:396.427067pt;}
.y242{bottom:400.025523pt;}
.y115{bottom:400.427067pt;}
.ya1{bottom:400.907200pt;}
.y55{bottom:402.267067pt;}
.y228{bottom:403.387067pt;}
.y105{bottom:404.827200pt;}
.y1cc{bottom:405.467067pt;}
.yad{bottom:408.427067pt;}
.y184{bottom:408.827067pt;}
.y271{bottom:408.827200pt;}
.y202{bottom:409.307067pt;}
.y3c{bottom:410.267067pt;}
.y147{bottom:413.387067pt;}
.y26b{bottom:415.144615pt;}
.y73{bottom:416.427067pt;}
.y24f{bottom:417.307067pt;}
.y1ed{bottom:417.467368pt;}
.y1dc{bottom:418.027200pt;}
.y279{bottom:418.267067pt;}
.y23{bottom:418.667200pt;}
.y1cb{bottom:422.027200pt;}
.y183{bottom:422.587467pt;}
.y227{bottom:422.907200pt;}
.y285{bottom:424.427067pt;}
.y8a{bottom:425.467067pt;}
.y5f{bottom:425.547067pt;}
.y1db{bottom:427.947459pt;}
.y270{bottom:428.507067pt;}
.y243{bottom:428.745211pt;}
.y146{bottom:432.347067pt;}
.y1ad{bottom:432.667200pt;}
.ycc{bottom:433.227067pt;}
.y24e{bottom:434.587067pt;}
.y185{bottom:436.346667pt;}
.y182{bottom:436.427067pt;}
.y114{bottom:437.227067pt;}
.ya0{bottom:437.707067pt;}
.y1ca{bottom:438.507067pt;}
.y275{bottom:439.067200pt;}
.y104{bottom:441.627067pt;}
.y226{bottom:442.427067pt;}
.y54{bottom:442.667200pt;}
.y26c{bottom:443.784324pt;}
.yf{bottom:444.706667pt;}
.yac{bottom:445.227067pt;}
.y201{bottom:446.107200pt;}
.y3b{bottom:447.067200pt;}
.y145{bottom:451.307067pt;}
.y24d{bottom:451.787067pt;}
.y72{bottom:453.227067pt;}
.y22{bottom:454.507067pt;}
.y1c9{bottom:455.067200pt;}
.y5e{bottom:456.187200pt;}
.y180{bottom:456.347067pt;}
.y244{bottom:457.385226pt;}
.y284{bottom:461.227067pt;}
.y1ee{bottom:461.627484pt;}
.y225{bottom:461.947200pt;}
.y89{bottom:462.267067pt;}
.y250{bottom:462.587067pt;}
.y24c{bottom:469.067067pt;}
.y1ac{bottom:469.467067pt;}
.ycb{bottom:470.027067pt;}
.y17f{bottom:470.107467pt;}
.y144{bottom:470.187067pt;}
.y1c8{bottom:471.627067pt;}
.ye{bottom:472.386667pt;}
.y113{bottom:474.027067pt;}
.y260{bottom:475.227067pt;}
.y274{bottom:475.867067pt;}
.y224{bottom:480.027067pt;}
.y1f9{bottom:482.027067pt;}
.y9f{bottom:482.507067pt;}
.y200{bottom:482.907067pt;}
.y181{bottom:483.866667pt;}
.y3a{bottom:483.867067pt;}
.y17e{bottom:483.947067pt;}
.y245{bottom:486.104915pt;}
.y24b{bottom:486.267067pt;}
.y103{bottom:486.427067pt;}
.y5d{bottom:486.587067pt;}
.y1c7{bottom:488.107067pt;}
.y143{bottom:489.147067pt;}
.y53{bottom:490.027067pt;}
.y21{bottom:490.427067pt;}
.y278{bottom:491.867067pt;}
.y25e{bottom:496.263367pt;}
.y283{bottom:498.027067pt;}
.y88{bottom:499.067067pt;}
.yd{bottom:499.906667pt;}
.y1ab{bottom:500.107067pt;}
.y7f{bottom:500.987067pt;}
.y223{bottom:501.067067pt;}
.y17c{bottom:503.227067pt;}
.y24a{bottom:503.547067pt;}
.y1c6{bottom:504.667067pt;}
.y1ef{bottom:505.787601pt;}
.yca{bottom:506.827067pt;}
.y102{bottom:507.147067pt;}
.y142{bottom:508.107067pt;}
.y112{bottom:510.827067pt;}
.y254{bottom:511.307067pt;}
.y246{bottom:514.824603pt;}
.y273{bottom:516.267067pt;}
.y17b{bottom:516.987467pt;}
.y1aa{bottom:517.707067pt;}
.y1f8{bottom:518.827067pt;}
.y9e{bottom:519.307067pt;}
.y1ff{bottom:519.707067pt;}
.y222{bottom:520.587067pt;}
.y39{bottom:520.667067pt;}
.y1c5{bottom:521.227067pt;}
.y101{bottom:524.107067pt;}
.y20{bottom:526.267067pt;}
.y52{bottom:526.827067pt;}
.y141{bottom:526.987067pt;}
.y277{bottom:528.667067pt;}
.y17d{bottom:530.746667pt;}
.y17a{bottom:530.827067pt;}
.y7e{bottom:531.627067pt;}
.y1a9{bottom:534.667067pt;}
.y282{bottom:534.827067pt;}
.y255{bottom:536.666783pt;}
.y1c4{bottom:537.707067pt;}
.y87{bottom:538.907195pt;}
.y221{bottom:540.107067pt;}
.y100{bottom:541.147067pt;}
.yc9{bottom:543.627067pt;}
.y140{bottom:545.947067pt;}
.y111{bottom:547.627067pt;}
.y237{bottom:548.987067pt;}
.y178{bottom:549.547067pt;}
.y1f0{bottom:549.947717pt;}
.y1a8{bottom:551.707067pt;}
.y1c3{bottom:554.267067pt;}
.yc{bottom:555.426667pt;}
.y1f7{bottom:555.627067pt;}
.y9d{bottom:556.027067pt;}
.y86{bottom:556.347067pt;}
.y1fe{bottom:556.507067pt;}
.y25f{bottom:556.987067pt;}
.y38{bottom:557.467067pt;}
.yff{bottom:558.107067pt;}
.y220{bottom:559.627067pt;}
.y256{bottom:562.026499pt;}
.y7d{bottom:562.027067pt;}
.y1f{bottom:562.187067pt;}
.y177{bottom:563.307467pt;}
.y51{bottom:563.627067pt;}
.y13f{bottom:564.907067pt;}
.y276{bottom:565.467067pt;}
.y1a7{bottom:568.667067pt;}
.y1c2{bottom:570.827067pt;}
.y281{bottom:571.627067pt;}
.yfe{bottom:575.147067pt;}
.y179{bottom:577.066667pt;}
.y176{bottom:577.147067pt;}
.y21f{bottom:579.147067pt;}
.yc8{bottom:580.427067pt;}
.y13e{bottom:583.787067pt;}
.y110{bottom:584.427067pt;}
.y1a6{bottom:585.707067pt;}
.y257{bottom:587.306046pt;}
.y1c1{bottom:587.307067pt;}
.yfd{bottom:592.107067pt;}
.yb{bottom:592.253333pt;}
.y85{bottom:592.427067pt;}
.y9c{bottom:592.827067pt;}
.y236{bottom:595.627067pt;}
.y21d{bottom:597.947067pt;}
.y1e{bottom:598.027067pt;}
.y1fd{bottom:598.347067pt;}
.y71{bottom:599.787067pt;}
.y50{bottom:600.427067pt;}
.y174{bottom:601.626667pt;}
.y37{bottom:602.267067pt;}
.y21e{bottom:602.587483pt;}
.y13d{bottom:602.667067pt;}
.y1bf{bottom:603.947067pt;}
.y121{bottom:608.427067pt;}
.y1c0{bottom:608.587483pt;}
.yfc{bottom:609.147067pt;}
.y258{bottom:612.665762pt;}
.y1fc{bottom:613.707067pt;}
.y175{bottom:615.306667pt;}
.y173{bottom:615.387067pt;}
.yc7{bottom:617.147067pt;}
.y21c{bottom:618.267067pt;}
.y13c{bottom:619.146667pt;}
.y1a5{bottom:619.707067pt;}
.y1be{bottom:621.227067pt;}
.y235{bottom:624.107067pt;}
.yfb{bottom:626.107067pt;}
.ya{bottom:629.053333pt;}
.y84{bottom:629.227067pt;}
.y171{bottom:629.946667pt;}
.y13b{bottom:632.907067pt;}
.y1d{bottom:633.947067pt;}
.y21b{bottom:636.267067pt;}
.y1a4{bottom:636.667067pt;}
.y4f{bottom:637.227067pt;}
.y9b{bottom:637.627067pt;}
.y1bd{bottom:637.787067pt;}
.y259{bottom:638.025478pt;}
.y36{bottom:639.067067pt;}
.y1fb{bottom:642.107067pt;}
.yfa{bottom:643.147067pt;}
.y172{bottom:643.627067pt;}
.y170{bottom:643.707067pt;}
.y120{bottom:645.227067pt;}
.y13a{bottom:649.387467pt;}
.y217{bottom:651.547067pt;}
.y1a3{bottom:653.707067pt;}
.yc6{bottom:653.947067pt;}
.yf9{bottom:660.107067pt;}
.y1bc{bottom:660.507067pt;}
.y139{bottom:663.227067pt;}
.y25a{bottom:663.385195pt;}
.y83{bottom:666.027067pt;}
.y16e{bottom:667.226667pt;}
.y9{bottom:668.413333pt;}
.y1c{bottom:669.787067pt;}
.y1a2{bottom:670.667067pt;}
.y4e{bottom:674.027067pt;}
.y9a{bottom:674.427067pt;}
.y35{bottom:675.867067pt;}
.yf8{bottom:677.147067pt;}
.y215{bottom:678.666376pt;}
.y138{bottom:679.706667pt;}
.y16f{bottom:680.907067pt;}
.y16d{bottom:680.987067pt;}
.y11f{bottom:682.027067pt;}
.y263{bottom:686.907067pt;}
.y1a1{bottom:687.707067pt;}
.y25b{bottom:688.664741pt;}
.y20d{bottom:690.507067pt;}
.y137{bottom:693.467067pt;}
.yf7{bottom:694.107067pt;}
.yc5{bottom:694.347067pt;}
.y16b{bottom:696.506667pt;}
.y8{bottom:701.373333pt;}
.y10f{bottom:702.827067pt;}
.y1a0{bottom:704.667067pt;}
.y1b{bottom:705.707067pt;}
.y262{bottom:706.587067pt;}
.y70{bottom:707.147200pt;}
.y136{bottom:709.946667pt;}
.y16c{bottom:710.187067pt;}
.y16a{bottom:710.267067pt;}
.y4d{bottom:710.827067pt;}
.yf6{bottom:711.147200pt;}
.y34{bottom:712.667067pt;}
.y25c{bottom:714.024457pt;}
.y11e{bottom:718.827067pt;}
.y99{bottom:719.227067pt;}
.y19f{bottom:721.707067pt;}
.y135{bottom:723.707067pt;}
.y261{bottom:726.267067pt;}
.yf4{bottom:727.706667pt;}
.y7{bottom:731.933333pt;}
.y168{bottom:732.906667pt;}
.yf3{bottom:733.547067pt;}
.y20e{bottom:734.667183pt;}
.yc4{bottom:737.307067pt;}
.y6f{bottom:737.547067pt;}
.y19e{bottom:738.667067pt;}
.y25d{bottom:739.384174pt;}
.y10e{bottom:739.627067pt;}
.y134{bottom:740.187467pt;}
.yf5{bottom:741.467067pt;}
.y1a{bottom:745.067067pt;}
.y169{bottom:746.587067pt;}
.y167{bottom:746.667067pt;}
.y4c{bottom:747.627067pt;}
.y33{bottom:749.467067pt;}
.y133{bottom:754.027067pt;}
.y11d{bottom:755.627067pt;}
.y19d{bottom:755.707067pt;}
.y98{bottom:756.027067pt;}
.yc3{bottom:758.747067pt;}
.yf2{bottom:761.867067pt;}
.y6{bottom:762.493333pt;}
.y132{bottom:770.506667pt;}
.y166{bottom:770.746667pt;}
.y19c{bottom:772.667200pt;}
.yc2{bottom:773.867067pt;}
.y20f{bottom:778.827300pt;}
.y131{bottom:784.267067pt;}
.yab{bottom:784.427067pt;}
.y165{bottom:784.507067pt;}
.y32{bottom:786.267067pt;}
.yf1{bottom:786.907067pt;}
.yc1{bottom:788.987200pt;}
.y19{bottom:789.707067pt;}
.y18{bottom:789.707819pt;}
.y4b{bottom:792.427067pt;}
.y97{bottom:792.827200pt;}
.y5{bottom:792.893333pt;}
.y164{bottom:801.947067pt;}
.y130{bottom:803.307067pt;}
.y12f{bottom:804.027067pt;}
.yc0{bottom:804.107067pt;}
.y19b{bottom:806.107067pt;}
.y12e{bottom:817.787467pt;}
.ybf{bottom:819.307067pt;}
.yaa{bottom:821.227067pt;}
.y17{bottom:822.587795pt;}
.y210{bottom:822.987416pt;}
.y31{bottom:823.067067pt;}
.y19a{bottom:823.707067pt;}
.y4{bottom:824.133333pt;}
.y163{bottom:826.506667pt;}
.y4a{bottom:829.227067pt;}
.y12d{bottom:831.627067pt;}
.ybe{bottom:834.427067pt;}
.y96{bottom:836.667195pt;}
.y216{bottom:839.067067pt;}
.y162{bottom:840.267067pt;}
.y95{bottom:844.747067pt;}
.y199{bottom:845.067067pt;}
.ybd{bottom:849.547067pt;}
.y12c{bottom:850.027067pt;}
.y3{bottom:850.053333pt;}
.y12b{bottom:851.707067pt;}
.y16{bottom:855.467771pt;}
.ya9{bottom:857.947067pt;}
.y161{bottom:858.907067pt;}
.y30{bottom:859.867067pt;}
.ybc{bottom:864.667067pt;}
.y7c{bottom:865.307067pt;}
.y12a{bottom:865.546667pt;}
.y49{bottom:865.947067pt;}
.y198{bottom:866.427067pt;}
.y211{bottom:867.147533pt;}
.y160{bottom:877.387067pt;}
.y129{bottom:879.307067pt;}
.ybb{bottom:879.787067pt;}
.y15{bottom:888.347747pt;}
.y15e{bottom:888.827067pt;}
.y197{bottom:889.227067pt;}
.y94{bottom:894.747067pt;}
.yba{bottom:894.907067pt;}
.y15f{bottom:896.587067pt;}
.y2f{bottom:896.667067pt;}
.y128{bottom:898.267067pt;}
.y5c{bottom:902.107067pt;}
.y15d{bottom:902.587467pt;}
.y48{bottom:902.747067pt;}
.yb9{bottom:910.107067pt;}
.y212{bottom:911.307649pt;}
.y15c{bottom:916.427067pt;}
.y127{bottom:917.227067pt;}
.y14{bottom:922.027067pt;}
.yb8{bottom:925.227067pt;}
.y93{bottom:931.547067pt;}
.y15b{bottom:932.587467pt;}
.y2e{bottom:933.467067pt;}
.y126{bottom:936.107067pt;}
.y47{bottom:939.547067pt;}
.yb7{bottom:940.347067pt;}
.y15a{bottom:946.427067pt;}
.y21a{bottom:949.947067pt;}
.y125{bottom:955.067067pt;}
.yb6{bottom:955.467067pt;}
.y213{bottom:955.467766pt;}
.y159{bottom:960.187467pt;}
.y219{bottom:964.907067pt;}
.y13{bottom:968.827067pt;}
.y2d{bottom:970.267067pt;}
.yb5{bottom:970.587067pt;}
.y124{bottom:974.027067pt;}
.y46{bottom:976.347067pt;}
.y218{bottom:979.867067pt;}
.y2{bottom:984.133333pt;}
.yb4{bottom:989.147067pt;}
.y123{bottom:991.707067pt;}
.y214{bottom:999.627882pt;}
.y2c{bottom:1010.587067pt;}
.y12{bottom:1010.667067pt;}
.y5b{bottom:1012.507067pt;}
.y45{bottom:1013.147200pt;}
.y1{bottom:1014.213333pt;}
.yb3{bottom:1015.627067pt;}
.h2e{height:13.520000pt;}
.h37{height:27.019716pt;}
.h1c{height:27.707522pt;}
.h3d{height:27.979935pt;}
.h34{height:28.820952pt;}
.h1a{height:29.558587pt;}
.h3a{height:30.132178pt;}
.hc{height:30.548438pt;}
.h42{height:32.642913pt;}
.h3f{height:32.675062pt;}
.h13{height:32.859375pt;}
.h44{height:34.207196pt;}
.h40{height:34.212617pt;}
.h43{height:34.234303pt;}
.h41{height:34.240886pt;}
.h3c{height:34.436664pt;}
.h15{height:34.453125pt;}
.h14{height:34.454725pt;}
.h3b{height:34.492188pt;}
.h26{height:35.554688pt;}
.h2c{height:36.583437pt;}
.h36{height:37.827524pt;}
.h35{height:37.848491pt;}
.h27{height:38.357812pt;}
.h31{height:38.390625pt;}
.h2a{height:38.648750pt;}
.h29{height:38.967150pt;}
.h23{height:38.968750pt;}
.h2b{height:38.970350pt;}
.h25{height:39.573125pt;}
.h39{height:40.213125pt;}
.h38{height:40.534725pt;}
.h6{height:40.574531pt;}
.h9{height:42.032812pt;}
.h22{height:43.366250pt;}
.hb{height:43.812500pt;}
.ha{height:44.100000pt;}
.h16{height:44.343750pt;}
.h1e{height:45.628492pt;}
.h5{height:45.937500pt;}
.h2f{height:47.085938pt;}
.h1d{height:47.498503pt;}
.h8{height:48.822812pt;}
.h18{height:48.933610pt;}
.h1f{height:49.101828pt;}
.hd{height:50.476562pt;}
.h20{height:50.671751pt;}
.h17{height:50.939077pt;}
.h7{height:51.041562pt;}
.h28{height:52.422344pt;}
.h30{height:53.320312pt;}
.hf{height:54.548437pt;}
.h2{height:58.563750pt;}
.h2d{height:61.971525pt;}
.h33{height:62.293125pt;}
.h24{height:62.650350pt;}
.h3e{height:62.781250pt;}
.h21{height:66.133125pt;}
.h32{height:66.454725pt;}
.h3{height:66.750000pt;}
.h1b{height:67.630885pt;}
.h12{height:75.136700pt;}
.h19{height:76.007231pt;}
.h4{height:78.097500pt;}
.h10{height:87.916563pt;}
.h11{height:103.413238pt;}
.he{height:106.156050pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:307.520000pt;}
.w4{width:793.333333pt;}
.w3{width:793.626667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8d{left:43.040000pt;}
.x8a{left:44.800000pt;}
.x2b{left:48.240000pt;}
.x91{left:49.360000pt;}
.x8e{left:50.720000pt;}
.x8b{left:52.720288pt;}
.xf{left:55.680000pt;}
.x90{left:58.400000pt;}
.xb{left:63.120000pt;}
.x88{left:75.600000pt;}
.x60{left:81.600000pt;}
.x68{left:85.120000pt;}
.x55{left:92.240000pt;}
.xa{left:94.560000pt;}
.x92{left:97.440000pt;}
.x41{left:100.400000pt;}
.x73{left:101.760000pt;}
.x38{left:104.000000pt;}
.x29{left:106.080000pt;}
.x42{left:107.439250pt;}
.x75{left:109.680288pt;}
.x2a{left:111.440000pt;}
.x1{left:113.471988pt;}
.x3f{left:115.040000pt;}
.x78{left:120.000000pt;}
.xc{left:122.880000pt;}
.x3a{left:125.920000pt;}
.x97{left:127.120000pt;}
.x4{left:128.191988pt;}
.x40{left:130.720000pt;}
.x33{left:132.400176pt;}
.x39{left:136.880000pt;}
.x5{left:138.426655pt;}
.x8{left:140.186655pt;}
.x3b{left:141.520000pt;}
.x3c{left:142.560000pt;}
.x3d{left:143.920000pt;}
.x95{left:145.120000pt;}
.x3e{left:146.240000pt;}
.x32{left:149.280000pt;}
.x61{left:151.599600pt;}
.x18{left:156.080000pt;}
.x69{left:159.600000pt;}
.x19{left:161.440000pt;}
.x96{left:162.639891pt;}
.x71{left:165.600000pt;}
.x6d{left:166.959600pt;}
.x22{left:173.120000pt;}
.x79{left:177.360000pt;}
.x23{left:178.480000pt;}
.x82{left:182.480709pt;}
.x80{left:184.719672pt;}
.x2e{left:186.480000pt;}
.x81{left:188.000381pt;}
.x7e{left:189.120000pt;}
.x2c{left:190.160000pt;}
.x1a{left:192.720000pt;}
.x2d{left:195.520000pt;}
.x1b{left:198.080000pt;}
.x2{left:204.346655pt;}
.x85{left:206.000000pt;}
.x98{left:217.440000pt;}
.x6{left:226.906655pt;}
.x7f{left:245.760000pt;}
.x8c{left:247.200000pt;}
.x87{left:253.440000pt;}
.x99{left:256.960014pt;}
.x9b{left:258.480000pt;}
.x86{left:263.680000pt;}
.x76{left:266.320000pt;}
.x31{left:267.600000pt;}
.x9a{left:272.159917pt;}
.x77{left:279.280000pt;}
.x8f{left:281.200000pt;}
.x28{left:291.840000pt;}
.x15{left:297.680000pt;}
.x89{left:306.000000pt;}
.x1e{left:307.440000pt;}
.x1f{left:312.800000pt;}
.x4a{left:323.680415pt;}
.x74{left:325.120000pt;}
.x2f{left:327.760000pt;}
.x3{left:328.866655pt;}
.x72{left:333.840000pt;}
.x45{left:342.480667pt;}
.x20{left:344.080000pt;}
.x49{left:347.840361pt;}
.x21{left:349.440000pt;}
.x56{left:352.240400pt;}
.x24{left:358.960000pt;}
.x25{left:367.600000pt;}
.x34{left:372.320352pt;}
.x83{left:373.440000pt;}
.x7c{left:375.360000pt;}
.x4e{left:379.679821pt;}
.x37{left:388.880000pt;}
.x9{left:392.880000pt;}
.x7{left:396.866655pt;}
.x47{left:399.280984pt;}
.x93{left:401.680000pt;}
.x46{left:406.000000pt;}
.x58{left:408.880400pt;}
.x7b{left:410.000000pt;}
.x1c{left:415.360000pt;}
.x1d{left:420.720000pt;}
.x57{left:421.920800pt;}
.x4f{left:426.480000pt;}
.x26{left:430.000000pt;}
.x4b{left:432.638878pt;}
.x6a{left:433.680000pt;}
.x27{left:435.360000pt;}
.x51{left:439.518981pt;}
.x54{left:441.119820pt;}
.x10{left:454.800000pt;}
.x11{left:460.160000pt;}
.x5a{left:465.600800pt;}
.x59{left:478.560800pt;}
.x84{left:488.560000pt;}
.x53{left:500.159805pt;}
.x43{left:510.480000pt;}
.x65{left:517.520000pt;}
.x44{left:518.480966pt;}
.x5c{left:520.800800pt;}
.x48{left:523.681039pt;}
.x4c{left:530.080000pt;}
.x62{left:532.639200pt;}
.x5b{left:535.281200pt;}
.x50{left:537.280408pt;}
.x63{left:554.959200pt;}
.x4d{left:557.760149pt;}
.x52{left:562.959319pt;}
.x12{left:575.680000pt;}
.x5e{left:577.520000pt;}
.x13{left:581.040000pt;}
.x5d{left:592.000400pt;}
.x35{left:597.680000pt;}
.xd{left:623.360000pt;}
.xe{left:628.720000pt;}
.x16{left:630.720000pt;}
.x17{left:636.080000pt;}
.x36{left:642.960000pt;}
.x7d{left:645.840000pt;}
.x5f{left:649.760000pt;}
.x6e{left:656.160000pt;}
.x64{left:658.558800pt;}
.x67{left:660.240400pt;}
.x6f{left:662.160400pt;}
.x66{left:663.600400pt;}
.x70{left:666.159600pt;}
.x94{left:680.079867pt;}
.x6c{left:683.120400pt;}
.x30{left:692.880000pt;}
.x7a{left:696.562838pt;}
.x14{left:699.200000pt;}
.x6b{left:720.480000pt;}
}




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