
    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_5032bf5e3369cb06ca61442f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985352;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_df7137488e2ea8e94cee209e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3cd3d3beca30accbb0714451.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_7d67e1391c860fef8067d959.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953613;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_9fe2176908a62f549f05ea52.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4c0dbc1d96723f66a1261031.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093750;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_2861b9532f7ff155f6e78dc1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e7c21479093725eb4b4c0515.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_66a5185114654e5ec7abcfd1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_ba5a56cbafa68df0199e2005.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_e91b3c493c2761cba5395480.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372559;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_e369ffb068f576509dfd8a73.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_11383ed69703629f2d2aa0eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.372559;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_798dded55a9a1451e5b6fa5c.woff2')format("woff");}.fff{font-family:fff;line-height:0.953613;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_4b5db3e0f4a2e234442857eb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_76790b9fb38e9eb2e1284a85.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_153432e83e2e7ff6750d22d6.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_5900b34cf15b1af85200ee4a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_61b6bdf69cd46e60168ed314.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.947754;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_97439b1088f8c78fd3138449.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.728027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_4cf893113f833208302c84a0.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d432dbeaec77f374bc5331e6.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m7{transform:matrix(0.000000,-0.229861,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.229861,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.229861,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249991,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.244474,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244474,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244474,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.288823,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.288823,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.288823,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216395,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m8{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255651,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.271904,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271904,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271904,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);}
.v7{vertical-align:-27.480000px;}
.v2{vertical-align:-23.760000px;}
.v1{vertical-align:-20.880000px;}
.ve{vertical-align:-14.400000px;}
.va{vertical-align:-10.080000px;}
.v4{vertical-align:-5.760000px;}
.v9{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.vb{vertical-align:10.080000px;}
.vc{vertical-align:12.240000px;}
.vf{vertical-align:14.400000px;}
.v11{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.v6{vertical-align:27.360000px;}
.vd{vertical-align:33.840000px;}
.v10{vertical-align:37.649029px;}
.v8{vertical-align:44.640000px;}
.lsb{letter-spacing:-27.420000px;}
.ls9{letter-spacing:-19.140000px;}
.ls31{letter-spacing:-17.280000px;}
.ls19{letter-spacing:-17.100000px;}
.lse{letter-spacing:-13.500000px;}
.lsf{letter-spacing:-12.780000px;}
.ls16{letter-spacing:-12.060000px;}
.ls18{letter-spacing:-10.620000px;}
.ls12{letter-spacing:-9.900000px;}
.ls15{letter-spacing:-8.460000px;}
.ls1a{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.288000px;}
.ls42{letter-spacing:-0.166200px;}
.ls14{letter-spacing:-0.130200px;}
.ls17{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.106800px;}
.ls2d{letter-spacing:-0.080447px;}
.ls30{letter-spacing:-0.068316px;}
.lsc{letter-spacing:-0.064200px;}
.ls3d{letter-spacing:-0.058320px;}
.ls43{letter-spacing:-0.054720px;}
.ls3f{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.011024px;}
.ls34{letter-spacing:0.012245px;}
.ls35{letter-spacing:0.016343px;}
.ls37{letter-spacing:0.019984px;}
.ls36{letter-spacing:0.035126px;}
.ls28{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.153600px;}
.ls33{letter-spacing:0.167691px;}
.ls2e{letter-spacing:0.170517px;}
.ls38{letter-spacing:0.175628px;}
.ls2{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.201122px;}
.ls2a{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.236835px;}
.ls8{letter-spacing:0.256200px;}
.ls40{letter-spacing:0.284400px;}
.ls3e{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.305400px;}
.ls39{letter-spacing:0.306000px;}
.ls3{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.385200px;}
.ls20{letter-spacing:0.406080px;}
.ls1b{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.447840px;}
.ls3b{letter-spacing:0.471600px;}
.ls13{letter-spacing:0.589800px;}
.ls11{letter-spacing:0.591000px;}
.ls3c{letter-spacing:0.651600px;}
.ls41{letter-spacing:0.720000px;}
.ls21{letter-spacing:1.792800px;}
.ls27{letter-spacing:2.081520px;}
.ls22{letter-spacing:2.512800px;}
.ls1e{letter-spacing:2.801520px;}
.ls1c{letter-spacing:2.921520px;}
.ls1d{letter-spacing:15.552000px;}
.ls26{letter-spacing:16.272000px;}
.ls24{letter-spacing:27.745200px;}
.ls25{letter-spacing:45.239520px;}
.ls1f{letter-spacing:53.496000px;}
.ls2c{letter-spacing:1226.776566px;}
.ls0{letter-spacing:2187.221280px;}
.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;}
}
.ws37{word-spacing:-72.000000px;}
.ws2{word-spacing:-66.240000px;}
.ws13{word-spacing:-59.760000px;}
.ws9{word-spacing:-26.704080px;}
.ws2e{word-spacing:-21.949457px;}
.ws5{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.016000px;}
.ws2c{word-spacing:-19.512263px;}
.ws3{word-spacing:-18.414720px;}
.ws17{word-spacing:-18.144000px;}
.ws16{word-spacing:-18.072000px;}
.ws14{word-spacing:-18.000000px;}
.ws8{word-spacing:-16.560000px;}
.ws1d{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.531000px;}
.ws10{word-spacing:-15.529800px;}
.wsc{word-spacing:-15.300000px;}
.ws32{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.226440px;}
.wse{word-spacing:-15.093600px;}
.ws0{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws12{word-spacing:-14.830800px;}
.ws11{word-spacing:-14.809800px;}
.ws35{word-spacing:-14.220000px;}
.ws36{word-spacing:-14.165280px;}
.ws2f{word-spacing:-13.505760px;}
.ws33{word-spacing:-13.500000px;}
.ws30{word-spacing:-13.447440px;}
.ws1a{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.700000px;}
.ws1c{word-spacing:-11.246400px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.ws34{word-spacing:-9.000000px;}
.ws31{word-spacing:-8.786880px;}
.ws15{word-spacing:0.000000px;}
.ws18{word-spacing:1.008000px;}
.ws1b{word-spacing:5.904000px;}
.ws27{word-spacing:46.683058px;}
.ws28{word-spacing:58.250482px;}
.ws29{word-spacing:126.565981px;}
.ws20{word-spacing:128.352652px;}
.ws2a{word-spacing:134.797782px;}
.ws21{word-spacing:141.980507px;}
.ws26{word-spacing:171.239157px;}
.ws24{word-spacing:171.250088px;}
.ws22{word-spacing:172.282956px;}
.ws25{word-spacing:179.476423px;}
.ws1e{word-spacing:183.384593px;}
.ws23{word-spacing:185.917246px;}
.ws1f{word-spacing:197.005947px;}
.ws2b{word-spacing:248.701181px;}
.ws2d{word-spacing:276.245290px;}
._33{margin-left:-2226.720000px;}
._38{margin-left:-2210.484720px;}
._88{margin-left:-2051.866320px;}
._3{margin-left:-1577.088000px;}
._1{margin-left:-1534.620480px;}
._1c{margin-left:-1495.490160px;}
._24{margin-left:-1431.152640px;}
._87{margin-left:-1296.120000px;}
._1a{margin-left:-1253.540160px;}
._85{margin-left:-1225.321920px;}
._84{margin-left:-1123.373520px;}
._20{margin-left:-1100.786160px;}
._6f{margin-left:-1067.099520px;}
._6d{margin-left:-1056.540000px;}
._3a{margin-left:-1051.037040px;}
._78{margin-left:-1003.571280px;}
._2b{margin-left:-960.811200px;}
._79{margin-left:-959.624160px;}
._89{margin-left:-949.270800px;}
._47{margin-left:-942.309360px;}
._6b{margin-left:-911.947440px;}
._3b{margin-left:-910.066320px;}
._66{margin-left:-857.816400px;}
._8e{margin-left:-833.235600px;}
._8d{margin-left:-815.756880px;}
._1f{margin-left:-784.866240px;}
._1e{margin-left:-782.608320px;}
._3c{margin-left:-729.644160px;}
._3d{margin-left:-707.866800px;}
._91{margin-left:-684.785520px;}
._71{margin-left:-668.965680px;}
._45{margin-left:-658.564080px;}
._70{margin-left:-657.540000px;}
._46{margin-left:-653.756640px;}
._42{margin-left:-651.034560px;}
._48{margin-left:-631.422240px;}
._69{margin-left:-615.565920px;}
._64{margin-left:-609.300000px;}
._27{margin-left:-594.816240px;}
._40{margin-left:-541.422240px;}
._25{margin-left:-538.804080px;}
._3f{margin-left:-515.496000px;}
._77{margin-left:-511.687920px;}
._5c{margin-left:-493.510320px;}
._92{margin-left:-490.741440px;}
._4a{margin-left:-477.153600px;}
._6a{margin-left:-455.507760px;}
._4e{margin-left:-451.800720px;}
._4f{margin-left:-417.263280px;}
._49{margin-left:-410.239680px;}
._76{margin-left:-404.385120px;}
._21{margin-left:-394.679520px;}
._53{margin-left:-384.371520px;}
._2c{margin-left:-374.598720px;}
._80{margin-left:-365.120640px;}
._8b{margin-left:-363.520800px;}
._83{margin-left:-361.296000px;}
._61{margin-left:-355.142400px;}
._39{margin-left:-351.336000px;}
._5d{margin-left:-342.080400px;}
._62{margin-left:-334.816560px;}
._81{margin-left:-330.576000px;}
._55{margin-left:-322.356000px;}
._44{margin-left:-319.680000px;}
._2f{margin-left:-309.547920px;}
._68{margin-left:-308.280000px;}
._58{margin-left:-300.165120px;}
._60{margin-left:-297.200880px;}
._67{margin-left:-285.133200px;}
._5f{margin-left:-283.840800px;}
._30{margin-left:-271.224000px;}
._15{margin-left:-256.052160px;}
._8{margin-left:-248.399760px;}
._52{margin-left:-247.015920px;}
._5{margin-left:-243.943200px;}
._13{margin-left:-242.408640px;}
._14{margin-left:-240.996960px;}
._2d{margin-left:-229.443840px;}
._5a{margin-left:-223.524000px;}
._50{margin-left:-216.994320px;}
._9{margin-left:-215.735040px;}
._6c{margin-left:-212.399280px;}
._54{margin-left:-209.519280px;}
._75{margin-left:-203.580000px;}
._4{margin-left:-201.818880px;}
._32{margin-left:-199.018800px;}
._8a{margin-left:-193.984560px;}
._3e{margin-left:-190.640880px;}
._c{margin-left:-188.683440px;}
._7{margin-left:-183.533760px;}
._51{margin-left:-178.133040px;}
._8f{margin-left:-171.370320px;}
._56{margin-left:-169.918560px;}
._63{margin-left:-167.952240px;}
._d{margin-left:-165.251520px;}
._26{margin-left:-164.067840px;}
._74{margin-left:-161.356320px;}
._4b{margin-left:-159.201360px;}
._12{margin-left:-156.384000px;}
._90{margin-left:-155.323440px;}
._f{margin-left:-153.054720px;}
._16{margin-left:-151.200000px;}
._4d{margin-left:-149.620080px;}
._7b{margin-left:-138.960000px;}
._43{margin-left:-136.262160px;}
._e{margin-left:-132.445440px;}
._0{margin-left:-130.271040px;}
._86{margin-left:-128.843280px;}
._7c{margin-left:-112.698480px;}
._7a{margin-left:-110.275200px;}
._7d{margin-left:-106.100640px;}
._17{margin-left:-104.328000px;}
._41{margin-left:-91.800000px;}
._19{margin-left:-83.232000px;}
._11{margin-left:-79.344000px;}
._31{margin-left:-69.352560px;}
._8c{margin-left:-64.837920px;}
._2e{margin-left:-63.368160px;}
._10{margin-left:-58.014720px;}
._59{margin-left:-56.794560px;}
._a{margin-left:-51.583680px;}
._b{margin-left:-39.589440px;}
._4c{margin-left:-35.100000px;}
._73{margin-left:-34.040640px;}
._93{margin-left:-30.780000px;}
._28{margin-left:-27.462240px;}
._1d{margin-left:-25.945920px;}
._82{margin-left:-21.823920px;}
._18{margin-left:-20.736000px;}
._6{margin-left:-19.143360px;}
._7e{margin-left:-17.250960px;}
._72{margin-left:-15.402960px;}
._34{margin-left:-14.220000px;}
._2a{margin-left:-12.046320px;}
._5e{margin-left:-10.794960px;}
._57{margin-left:-9.292320px;}
._22{margin-left:-7.856640px;}
._23{margin-left:-6.486480px;}
._29{margin-left:-5.089680px;}
._9a{margin-left:-3.838320px;}
._7f{margin-left:-2.629440px;}
._2{margin-left:-1.059840px;}
._1b{width:1.007520px;}
._35{width:2.070480px;}
._6e{width:3.487200px;}
._36{width:4.632720px;}
._5b{width:5.736960px;}
._65{width:7.089600px;}
._37{width:9.048480px;}
._98{width:10.150560px;}
._9b{width:12.096000px;}
._96{width:13.464000px;}
._97{width:14.616000px;}
._99{width:15.888480px;}
._b1{width:17.658000px;}
._b7{width:18.669600px;}
._b4{width:19.728000px;}
._b5{width:21.096000px;}
._9c{width:26.352000px;}
._94{width:32.184000px;}
._95{width:33.336960px;}
._b6{width:35.208000px;}
._b0{width:41.623687px;}
._a7{width:48.007172px;}
._aa{width:65.902047px;}
._ad{width:77.486809px;}
._ab{width:90.194904px;}
._ac{width:95.874679px;}
._9f{width:150.535267px;}
._ae{width:153.674849px;}
._af{width:157.182464px;}
._a2{width:164.143461px;}
._a5{width:168.347908px;}
._a6{width:175.164587px;}
._a0{width:179.590777px;}
._a1{width:186.266224px;}
._a8{width:197.993875px;}
._a9{width:201.877501px;}
._a3{width:212.311854px;}
._a4{width:219.088454px;}
._9d{width:223.493873px;}
._9e{width:230.202963px;}
._b2{width:273.123463px;}
._b3{width:303.372384px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:12.240000px;}
.fs17{font-size:13.116665px;}
.fs11{font-size:15.445756px;}
.fs8{font-size:18.000000px;}
.fs18{font-size:18.445310px;}
.fsf{font-size:21.720594px;}
.fs16{font-size:22.134372px;}
.fs10{font-size:26.064713px;}
.fs12{font-size:26.233330px;}
.fs14{font-size:29.922392px;}
.fs5{font-size:30.240000px;}
.fsd{font-size:30.499287px;}
.fs15{font-size:30.598719px;}
.fs13{font-size:34.035014px;}
.fse{font-size:35.235630px;}
.fs9{font-size:36.000000px;}
.fs22{font-size:38.796637px;}
.fs3{font-size:38.880000px;}
.fsc{font-size:40.078518px;}
.fs6{font-size:41.760000px;}
.fs19{font-size:43.822294px;}
.fs24{font-size:47.943911px;}
.fs7{font-size:48.240000px;}
.fs23{font-size:48.309802px;}
.fs1e{font-size:48.675693px;}
.fsb{font-size:51.120000px;}
.fs26{font-size:54.000000px;}
.fs25{font-size:56.880000px;}
.fs1b{font-size:57.330233px;}
.fs1c{font-size:57.655250px;}
.fs4{font-size:59.760000px;}
.fs1d{font-size:60.557156px;}
.fs1f{font-size:61.847614px;}
.fs27{font-size:62.991941px;}
.fs1a{font-size:63.065045px;}
.fs21{font-size:64.040673px;}
.fs20{font-size:64.408946px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1c4{bottom:2.880000px;}
.y22{bottom:3.240000px;}
.y16d{bottom:3.960000px;}
.yf0{bottom:4.815352px;}
.yaf{bottom:5.260357px;}
.y193{bottom:5.400000px;}
.y16c{bottom:5.574000px;}
.y169{bottom:5.580000px;}
.y14c{bottom:5.760000px;}
.y19e{bottom:6.840000px;}
.y165{bottom:7.020000px;}
.ya6{bottom:7.070416px;}
.y148{bottom:7.200000px;}
.yf7{bottom:7.274707px;}
.y1c1{bottom:7.380000px;}
.y1e9{bottom:7.560000px;}
.y118{bottom:7.915769px;}
.y14{bottom:8.460000px;}
.y1c9{bottom:8.820000px;}
.y1c2{bottom:10.620000px;}
.y6{bottom:12.060000px;}
.y133{bottom:12.852681px;}
.ycc{bottom:16.603551px;}
.y191{bottom:16.740000px;}
.y1a0{bottom:16.770000px;}
.y14a{bottom:16.920000px;}
.y1d7{bottom:16.965000px;}
.y8d{bottom:17.331701px;}
.y85{bottom:17.331710px;}
.y21{bottom:18.000000px;}
.yd4{bottom:18.140641px;}
.y1c3{bottom:18.360000px;}
.y18e{bottom:19.620000px;}
.y163{bottom:19.800000px;}
.y146{bottom:19.980000px;}
.y34{bottom:20.520000px;}
.y1e6{bottom:23.760000px;}
.y1c8{bottom:25.200000px;}
.y1ce{bottom:25.236000px;}
.y20{bottom:25.560000px;}
.y13{bottom:28.260000px;}
.yd5{bottom:28.388036px;}
.ycd{bottom:28.388056px;}
.y8e{bottom:30.484727px;}
.y86{bottom:30.484737px;}
.y3{bottom:34.200000px;}
.y1be{bottom:35.820000px;}
.y128{bottom:37.373473px;}
.y33{bottom:37.800000px;}
.y10e{bottom:38.720952px;}
.y1ae{bottom:39.240000px;}
.y1ef{bottom:39.285000px;}
.y16f{bottom:39.420000px;}
.y167{bottom:39.450000px;}
.y1e5{bottom:41.040000px;}
.y1f{bottom:42.840000px;}
.y5{bottom:44.490000px;}
.y10f{bottom:53.629985px;}
.y129{bottom:53.933697px;}
.y2{bottom:54.360000px;}
.y32{bottom:55.080000px;}
.y1e{bottom:60.120000px;}
.yd6{bottom:61.493952px;}
.yce{bottom:61.493973px;}
.y8f{bottom:69.469171px;}
.y87{bottom:69.469181px;}
.y31{bottom:72.180000px;}
.y1d{bottom:77.430000px;}
.y30{bottom:89.460000px;}
.y1c{bottom:94.530000px;}
.yd7{bottom:94.599869px;}
.ycf{bottom:94.599889px;}
.y110{bottom:96.707816px;}
.y117{bottom:100.248959px;}
.y12a{bottom:101.782477px;}
.y124{bottom:104.040431px;}
.y123{bottom:104.122789px;}
.y2f{bottom:106.740000px;}
.y90{bottom:108.453615px;}
.y88{bottom:108.453625px;}
.y13e{bottom:110.567518px;}
.y13d{bottom:110.841936px;}
.yf8{bottom:110.895959px;}
.y6f{bottom:111.060000px;}
.y1b{bottom:111.810000px;}
.yf1{bottom:113.970198px;}
.y1cd{bottom:114.840000px;}
.y132{bottom:116.970610px;}
.y2e{bottom:124.065000px;}
.y166{bottom:125.100000px;}
.yd8{bottom:127.705785px;}
.yd0{bottom:127.705805px;}
.y1a{bottom:129.090000px;}
.ya7{bottom:130.780786px;}
.y58{bottom:131.040000px;}
.y143{bottom:132.120000px;}
.yb0{bottom:132.716323px;}
.y1cf{bottom:137.376000px;}
.y206{bottom:138.096000px;}
.y111{bottom:139.869099px;}
.y39{bottom:140.256000px;}
.y2d{bottom:141.345000px;}
.y1f7{bottom:144.936000px;}
.y19{bottom:146.370000px;}
.y121{bottom:146.541786px;}
.y91{bottom:147.438058px;}
.y89{bottom:147.438068px;}
.y16b{bottom:147.636000px;}
.y122{bottom:148.765286px;}
.y12b{bottom:149.723948px;}
.y1b5{bottom:153.750000px;}
.y6e{bottom:153.930000px;}
.y6d{bottom:154.110000px;}
.y2c{bottom:158.625000px;}
.y1cb{bottom:159.870000px;}
.yd9{bottom:160.811702px;}
.yd1{bottom:160.811722px;}
.y6c{bottom:162.390000px;}
.y142{bottom:163.290000px;}
.y18{bottom:163.650000px;}
.y13c{bottom:163.813189px;}
.y13b{bottom:164.636444px;}
.y225{bottom:165.270000px;}
.y205{bottom:169.230000px;}
.y16a{bottom:170.130000px;}
.y1b1{bottom:171.210000px;}
.y38{bottom:171.390000px;}
.y18b{bottom:171.570000px;}
.y57{bottom:174.090000px;}
.y2b{bottom:175.725000px;}
.y1f6{bottom:175.890000px;}
.y17{bottom:180.930000px;}
.y1cc{bottom:182.370000px;}
.y112{bottom:182.950224px;}
.y224{bottom:183.990000px;}
.y92{bottom:186.422502px;}
.y8a{bottom:186.422512px;}
.y168{bottom:192.630000px;}
.y2a{bottom:193.005000px;}
.y1b4{bottom:193.710000px;}
.yda{bottom:193.917618px;}
.yd2{bottom:193.917638px;}
.y12c{bottom:197.576386px;}
.y10c{bottom:198.210000px;}
.y204{bottom:200.190000px;}
.y37{bottom:202.350000px;}
.y18a{bottom:202.530000px;}
.y1c7{bottom:204.870000px;}
.y56{bottom:205.230000px;}
.y141{bottom:206.310000px;}
.y1f5{bottom:207.030000px;}
.y16{bottom:207.930000px;}
.y29{bottom:210.285000px;}
.y6b{bottom:211.350000px;}
.y223{bottom:214.590000px;}
.y162{bottom:215.130000px;}
.yff{bottom:215.952238px;}
.yf6{bottom:215.952259px;}
.y1b3{bottom:216.210000px;}
.yfe{bottom:221.592404px;}
.yf5{bottom:221.592425px;}
.y93{bottom:225.406946px;}
.y8b{bottom:225.406956px;}
.y113{bottom:226.028055px;}
.ydb{bottom:227.023535px;}
.yd3{bottom:227.023555px;}
.yfd{bottom:227.228471px;}
.yf4{bottom:227.228492px;}
.y1ca{bottom:227.370000px;}
.y28{bottom:227.565000px;}
.y10b{bottom:229.170000px;}
.yef{bottom:229.995298px;}
.yfa{bottom:230.097752px;}
.y203{bottom:231.330000px;}
.y11f{bottom:232.286768px;}
.yfc{bottom:232.864538px;}
.yf3{bottom:232.864559px;}
.y222{bottom:233.130000px;}
.y189{bottom:233.670000px;}
.y120{bottom:235.251437px;}
.y55{bottom:236.190000px;}
.y1f4{bottom:237.990000px;}
.yee{bottom:237.990998px;}
.yf9{bottom:238.093452px;}
.yfb{bottom:238.503338px;}
.yf2{bottom:238.503358px;}
.y1b2{bottom:238.710000px;}
.y36{bottom:238.890000px;}
.y164{bottom:240.510000px;}
.y140{bottom:240.690000px;}
.y6a{bottom:242.490000px;}
.y27{bottom:244.845000px;}
.y12d{bottom:245.425166px;}
.y1c5{bottom:249.870000px;}
.y221{bottom:251.850000px;}
.yb7{bottom:252.203717px;}
.yae{bottom:252.445067px;}
.ydc{bottom:254.083501px;}
.ye7{bottom:254.903272px;}
.yb6{bottom:258.840565px;}
.yad{bottom:259.081915px;}
.y10a{bottom:260.310000px;}
.y1ad{bottom:261.210000px;}
.y35{bottom:263.910000px;}
.yc4{bottom:264.125932px;}
.ybc{bottom:264.125953px;}
.y94{bottom:264.391389px;}
.y8c{bottom:264.391399px;}
.y188{bottom:264.630000px;}
.yb5{bottom:265.477413px;}
.yac{bottom:265.718763px;}
.y138{bottom:266.650500px;}
.y54{bottom:267.330000px;}
.y131{bottom:267.473754px;}
.y26{bottom:268.065000px;}
.yb2{bottom:268.976847px;}
.ya9{bottom:268.976857px;}
.y114{bottom:269.106984px;}
.y1f3{bottom:269.130000px;}
.y25{bottom:269.670000px;}
.y13f{bottom:270.930000px;}
.y127{bottom:271.020000px;}
.yb4{bottom:272.117479px;}
.yab{bottom:272.358829px;}
.y1c6{bottom:272.370000px;}
.y69{bottom:273.450000px;}
.y202{bottom:274.350000px;}
.yc5{bottom:274.376062px;}
.ybd{bottom:274.376082px;}
.yba{bottom:276.870000px;}
.yb1{bottom:278.392322px;}
.ya8{bottom:278.392332px;}
.yb3{bottom:278.754327px;}
.yaa{bottom:278.995677px;}
.y220{bottom:282.450000px;}
.y161{bottom:283.710000px;}
.y109{bottom:291.270000px;}
.y11c{bottom:291.591292px;}
.y12e{bottom:293.275165px;}
.y1bd{bottom:294.870000px;}
.y9f{bottom:294.928931px;}
.y187{bottom:295.770000px;}
.y96{bottom:297.583681px;}
.y53{bottom:298.290000px;}
.yb9{bottom:299.190000px;}
.y1f2{bottom:300.090000px;}
.y21f{bottom:300.990000px;}
.y68{bottom:304.590000px;}
.y201{bottom:305.310000px;}
.y11b{bottom:305.678990px;}
.y160{bottom:306.030000px;}
.y1b0{bottom:306.210000px;}
.y7d{bottom:306.995931px;}
.y75{bottom:306.995941px;}
.yc6{bottom:308.814140px;}
.ybe{bottom:308.814160px;}
.y115{bottom:312.267167px;}
.y137{bottom:317.060516px;}
.y11d{bottom:319.517382px;}
.y11a{bottom:319.764492px;}
.y7e{bottom:320.152176px;}
.y76{bottom:320.152186px;}
.y11e{bottom:321.740882px;}
.y108{bottom:322.410000px;}
.y1c0{bottom:326.550000px;}
.y186{bottom:326.730000px;}
.y1af{bottom:328.710000px;}
.y52{bottom:329.430000px;}
.y21e{bottom:331.590000px;}
.y136{bottom:332.523067px;}
.y1f1{bottom:333.930000px;}
.y67{bottom:335.550000px;}
.y200{bottom:336.450000px;}
.yb8{bottom:337.890000px;}
.y74{bottom:337.919980px;}
.y15f{bottom:340.770000px;}
.y12f{bottom:341.215417px;}
.yc7{bottom:343.252217px;}
.ybf{bottom:343.252238px;}
.y119{bottom:346.201715px;}
.y135{bottom:347.984399px;}
.y1ee{bottom:350.130000px;}
.y21d{bottom:350.310000px;}
.y1ab{bottom:351.210000px;}
.y1bf{bottom:352.110000px;}
.y107{bottom:353.370000px;}
.y139{bottom:354.574095px;}
.y116{bottom:355.346097px;}
.y13a{bottom:355.397350px;}
.y15d{bottom:357.150000px;}
.y7f{bottom:359.136619px;}
.y77{bottom:359.136630px;}
.ye8{bottom:359.959570px;}
.ydd{bottom:359.959590px;}
.y51{bottom:360.390000px;}
.y66{bottom:366.690000px;}
.y1ff{bottom:367.410000px;}
.y21c{bottom:368.850000px;}
.y185{bottom:369.930000px;}
.y1f0{bottom:372.630000px;}
.y1ac{bottom:376.770000px;}
.yc8{bottom:377.690295px;}
.yc0{bottom:377.690315px;}
.y134{bottom:378.908283px;}
.y15e{bottom:379.650000px;}
.y130{bottom:389.065416px;}
.y50{bottom:391.575000px;}
.y1bc{bottom:395.175000px;}
.y65{bottom:397.695000px;}
.y80{bottom:398.121063px;}
.y78{bottom:398.121073px;}
.y1fe{bottom:398.595000px;}
.y106{bottom:399.495000px;}
.y15b{bottom:402.195000px;}
.yc9{bottom:412.128373px;}
.yc1{bottom:412.128393px;}
.y184{bottom:412.995000px;}
.ya0{bottom:416.105715px;}
.y1bb{bottom:417.675000px;}
.y21b{bottom:418.215000px;}
.y1aa{bottom:419.835000px;}
.y95{bottom:421.656543px;}
.y4f{bottom:422.535000px;}
.y15c{bottom:424.695000px;}
.y64{bottom:428.835000px;}
.y1fd{bottom:429.555000px;}
.y21a{bottom:436.755000px;}
.y81{bottom:437.105507px;}
.y79{bottom:437.105517px;}
.y1ea{bottom:440.175000px;}
.y1a9{bottom:442.155000px;}
.y105{bottom:442.515000px;}
.y183{bottom:443.955000px;}
.yca{bottom:446.566451px;}
.yc2{bottom:446.566471px;}
.y159{bottom:447.195000px;}
.y4e{bottom:453.675000px;}
.y219{bottom:455.295000px;}
.y63{bottom:459.795000px;}
.y1ba{bottom:460.695000px;}
.yed{bottom:462.249052px;}
.ye4{bottom:462.556494px;}
.y1ed{bottom:462.675000px;}
.yec{bottom:467.885119px;}
.ye3{bottom:468.192561px;}
.y15a{bottom:469.695000px;}
.yeb{bottom:473.523919px;}
.y104{bottom:473.655000px;}
.ye2{bottom:473.831361px;}
.y182{bottom:475.095000px;}
.y82{bottom:476.089950px;}
.y7a{bottom:476.089960px;}
.ye6{bottom:476.290725px;}
.ydf{bottom:476.290746px;}
.y1a8{bottom:477.075000px;}
.yea{bottom:479.159986px;}
.ye1{bottom:479.467428px;}
.ycb{bottom:481.004528px;}
.yc3{bottom:481.004549px;}
.ye5{bottom:484.283693px;}
.yde{bottom:484.283714px;}
.y4d{bottom:484.635000px;}
.ye9{bottom:484.796053px;}
.ye0{bottom:485.103495px;}
.y1ec{bottom:485.175000px;}
.y218{bottom:486.075000px;}
.y62{bottom:490.935000px;}
.y1b9{bottom:491.655000px;}
.y157{bottom:492.195000px;}
.y1a6{bottom:493.455000px;}
.y103{bottom:504.615000px;}
.y181{bottom:506.055000px;}
.y1eb{bottom:507.675000px;}
.y158{bottom:514.695000px;}
.y83{bottom:515.074394px;}
.y7b{bottom:515.074404px;}
.y4c{bottom:515.775000px;}
.y1a7{bottom:515.955000px;}
.y217{bottom:516.675000px;}
.y1b8{bottom:522.795000px;}
.y1e4{bottom:530.175000px;}
.y61{bottom:533.955000px;}
.y216{bottom:535.215000px;}
.y155{bottom:537.195000px;}
.y1a4{bottom:538.455000px;}
.y102{bottom:538.995000px;}
.y9b{bottom:540.178578px;}
.ya5{bottom:542.109288px;}
.y4b{bottom:546.735000px;}
.y9a{bottom:546.815426px;}
.ya4{bottom:548.746136px;}
.y99{bottom:553.455492px;}
.y1b7{bottom:553.755000px;}
.y84{bottom:554.058838px;}
.y7c{bottom:554.058848px;}
.ya3{bottom:555.386202px;}
.y1e8{bottom:555.555000px;}
.y24{bottom:556.095000px;}
.y9e{bottom:558.644296px;}
.y9d{bottom:558.644306px;}
.y98{bottom:560.092340px;}
.y1a5{bottom:560.955000px;}
.y101{bottom:561.315000px;}
.ya2{bottom:562.023050px;}
.y156{bottom:562.755000px;}
.y215{bottom:565.815000px;}
.y23{bottom:566.355000px;}
.y97{bottom:566.729188px;}
.y9c{bottom:568.056563px;}
.y180{bottom:568.155000px;}
.ya1{bottom:568.659898px;}
.y15{bottom:576.975000px;}
.y4a{bottom:577.695000px;}
.y1e7{bottom:581.115000px;}
.y1a2{bottom:583.455000px;}
.y214{bottom:584.535000px;}
.y1fc{bottom:584.895000px;}
.y1b6{bottom:596.775000px;}
.y17f{bottom:599.295000px;}
.y100{bottom:600.195000px;}
.ybb{bottom:604.316185px;}
.y154{bottom:605.775000px;}
.y1a3{bottom:605.955000px;}
.y60{bottom:608.115000px;}
.y49{bottom:608.835000px;}
.y213{bottom:615.135000px;}
.y1fb{bottom:615.855000px;}
.y1e3{bottom:624.135000px;}
.y153{bottom:628.275000px;}
.y19f{bottom:628.455000px;}
.y17e{bottom:630.255000px;}
.y212{bottom:633.675000px;}
.y5f{bottom:639.075000px;}
.y48{bottom:639.795000px;}
.y1e2{bottom:646.665000px;}
.y1fa{bottom:647.025000px;}
.y1a1{bottom:650.985000px;}
.y17d{bottom:661.425000px;}
.y152{bottom:663.045000px;}
.y211{bottom:664.305000px;}
.y1e1{bottom:668.985000px;}
.y5e{bottom:670.245000px;}
.y47{bottom:670.965000px;}
.y19c{bottom:673.485000px;}
.y151{bottom:679.425000px;}
.y210{bottom:683.025000px;}
.y1f9{bottom:690.045000px;}
.y17c{bottom:692.385000px;}
.y126{bottom:695.625000px;}
.y19d{bottom:699.045000px;}
.y5d{bottom:701.385000px;}
.y46{bottom:701.925000px;}
.y1e0{bottom:702.645000px;}
.y20f{bottom:713.625000px;}
.y17b{bottom:723.525000px;}
.y14f{bottom:724.425000px;}
.y45{bottom:733.065000px;}
.y10d{bottom:734.294919px;}
.y125{bottom:734.325000px;}
.y1df{bottom:735.045000px;}
.y19b{bottom:742.065000px;}
.y20e{bottom:744.225000px;}
.y150{bottom:746.925000px;}
.y1dd{bottom:751.425000px;}
.y44{bottom:764.025000px;}
.y19a{bottom:764.385000px;}
.y17a{bottom:766.545000px;}
.y14d{bottom:769.425000px;}
.y1de{bottom:773.925000px;}
.y20d{bottom:774.825000px;}
.y14e{bottom:791.925000px;}
.y20c{bottom:793.365000px;}
.y5c{bottom:795.165000px;}
.y1db{bottom:796.425000px;}
.y179{bottom:797.505000px;}
.y199{bottom:799.305000px;}
.y12{bottom:805.065000px;}
.y43{bottom:807.225000px;}
.y149{bottom:814.425000px;}
.y198{bottom:815.685000px;}
.y1dc{bottom:818.925000px;}
.y20b{bottom:823.965000px;}
.y5b{bottom:826.125000px;}
.y178{bottom:828.645000px;}
.y14b{bottom:836.925000px;}
.y42{bottom:838.185000px;}
.y1d9{bottom:841.425000px;}
.y20a{bottom:842.685000px;}
.y11{bottom:856.905000px;}
.y5a{bottom:857.265000px;}
.y145{bottom:859.425000px;}
.y177{bottom:859.605000px;}
.y196{bottom:860.685000px;}
.y1da{bottom:863.925000px;}
.y230{bottom:867.165000px;}
.y41{bottom:869.325000px;}
.y209{bottom:873.285000px;}
.y197{bottom:883.185000px;}
.y147{bottom:884.985000px;}
.y22f{bottom:885.705000px;}
.y1d6{bottom:886.425000px;}
.y59{bottom:888.225000px;}
.y176{bottom:890.745000px;}
.y10{bottom:891.825000px;}
.y40{bottom:900.330000px;}
.y22e{bottom:904.470000px;}
.y194{bottom:905.730000px;}
.y1d8{bottom:908.970000px;}
.y1f8{bottom:919.410000px;}
.y175{bottom:921.750000px;}
.y208{bottom:922.470000px;}
.yf{bottom:926.970000px;}
.y144{bottom:928.050000px;}
.y195{bottom:928.230000px;}
.y3f{bottom:931.290000px;}
.y1d3{bottom:931.470000px;}
.y22d{bottom:935.070000px;}
.y207{bottom:941.190000px;}
.y73{bottom:950.370000px;}
.y190{bottom:950.730000px;}
.y174{bottom:952.890000px;}
.y22c{bottom:953.610000px;}
.ye{bottom:961.170000px;}
.y3e{bottom:962.430000px;}
.y1d5{bottom:963.150000px;}
.yd{bottom:972.150000px;}
.y22b{bottom:972.330000px;}
.y192{bottom:973.230000px;}
.y72{bottom:981.510000px;}
.yc{bottom:987.630000px;}
.y1d4{bottom:988.710000px;}
.y3d{bottom:993.390000px;}
.y18d{bottom:995.730000px;}
.y173{bottom:995.910000px;}
.y22a{bottom:1002.930000px;}
.yb{bottom:1004.910000px;}
.y71{bottom:1012.470000px;}
.y16e{bottom:1013.370000px;}
.y18f{bottom:1021.110000px;}
.y229{bottom:1021.470000px;}
.ya{bottom:1022.190000px;}
.y3c{bottom:1024.530000px;}
.y1d2{bottom:1031.730000px;}
.y9{bottom:1035.510000px;}
.y172{bottom:1035.870000px;}
.y70{bottom:1043.610000px;}
.y228{bottom:1052.070000px;}
.y1d1{bottom:1054.050000px;}
.y3b{bottom:1055.490000px;}
.y171{bottom:1058.370000px;}
.y8{bottom:1059.630000px;}
.y18c{bottom:1064.310000px;}
.y227{bottom:1070.790000px;}
.y170{bottom:1080.870000px;}
.y7{bottom:1083.750000px;}
.y3a{bottom:1086.630000px;}
.y1d0{bottom:1087.890000px;}
.y226{bottom:1089.330000px;}
.y1{bottom:1115.430000px;}
.y4{bottom:1124.430000px;}
.h15{height:8.666016px;}
.h11{height:15.837891px;}
.h2c{height:19.237882px;}
.h46{height:21.600000px;}
.h47{height:21.636000px;}
.h3f{height:21.780000px;}
.h42{height:21.816000px;}
.h20{height:22.653901px;}
.h2a{height:23.085459px;}
.h44{height:24.660000px;}
.h3b{height:24.696000px;}
.h3c{height:24.840000px;}
.h2b{height:25.977145px;}
.h21{height:27.184681px;}
.h26{height:27.360544px;}
.h8{height:29.678906px;}
.h23{height:30.589836px;}
.h24{height:30.602708px;}
.h4e{height:30.960000px;}
.h28{height:31.208120px;}
.h31{height:31.411683px;}
.h1e{height:31.809803px;}
.h29{height:31.913508px;}
.h38{height:34.628315px;}
.h27{height:35.497455px;}
.h12{height:36.281250px;}
.h1f{height:36.749661px;}
.h7{height:38.158594px;}
.hb{height:39.600000px;}
.h1d{height:41.800642px;}
.h1a{height:43.082578px;}
.h55{height:44.100000px;}
.h54{height:44.136000px;}
.h3d{height:44.280000px;}
.h41{height:44.316000px;}
.h2f{height:45.204827px;}
.h2e{height:45.619693px;}
.h36{height:46.168131px;}
.hc{height:47.344922px;}
.h43{height:50.220000px;}
.h9{height:50.244654px;}
.h39{height:50.256000px;}
.h40{height:50.400000px;}
.h34{height:50.672157px;}
.hf{height:52.581797px;}
.h50{height:52.998047px;}
.h58{height:55.425526px;}
.h4f{height:55.503491px;}
.h4c{height:55.824609px;}
.h51{height:56.212031px;}
.hd{height:57.075469px;}
.h4d{height:58.463677px;}
.h10{height:58.651172px;}
.h4a{height:59.038594px;}
.h3a{height:59.439023px;}
.h3e{height:59.551172px;}
.ha{height:59.642578px;}
.h14{height:60.226875px;}
.h3{height:61.416000px;}
.h49{height:61.423863px;}
.h32{height:63.159221px;}
.h35{height:64.505129px;}
.h37{height:64.778930px;}
.h22{height:64.833710px;}
.h52{height:65.010937px;}
.h2{height:65.884219px;}
.h30{height:68.997406px;}
.h5{height:70.664062px;}
.h16{height:72.562500px;}
.h4{height:73.722656px;}
.h17{height:74.704922px;}
.h18{height:74.824922px;}
.h56{height:75.780000px;}
.h53{height:81.900000px;}
.h4b{height:82.080000px;}
.h6{height:84.898125px;}
.h19{height:87.722578px;}
.h45{height:89.136000px;}
.h48{height:89.280000px;}
.h57{height:89.316000px;}
.h1b{height:104.504063px;}
.he{height:225.750000px;}
.h13{height:282.090000px;}
.h2d{height:368.995059px;}
.h33{height:406.955201px;}
.h25{height:498.974413px;}
.h1c{height:586.133300px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w23{width:51.300000px;}
.w22{width:51.336000px;}
.w2a{width:56.160000px;}
.w2b{width:56.196000px;}
.w2c{width:56.340000px;}
.w2d{width:56.376000px;}
.w24{width:62.496000px;}
.w25{width:73.620000px;}
.w1b{width:74.196000px;}
.w19{width:80.280000px;}
.w1a{width:80.316000px;}
.w15{width:82.080000px;}
.w14{width:82.116000px;}
.w13{width:82.260000px;}
.wc{width:82.620000px;}
.wf{width:82.656000px;}
.we{width:82.800000px;}
.wd{width:82.836000px;}
.w9{width:93.780000px;}
.w10{width:94.140000px;}
.w20{width:103.320000px;}
.w1e{width:103.356000px;}
.w21{width:103.500000px;}
.w1f{width:103.536000px;}
.w1c{width:107.280000px;}
.w27{width:113.076000px;}
.w28{width:113.220000px;}
.w29{width:113.256000px;}
.w16{width:120.600000px;}
.w17{width:120.816000px;}
.wa{width:140.976000px;}
.w11{width:143.316000px;}
.w3{width:400.935000px;}
.w18{width:404.355000px;}
.w12{width:413.895000px;}
.wb{width:416.595000px;}
.w7{width:463.511448px;}
.w8{width:470.688054px;}
.w1d{width:519.945000px;}
.w26{width:568.905000px;}
.w4{width:654.765000px;}
.w6{width:656.994097px;}
.w5{width:657.886743px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x6f{left:9.576000px;}
.x7f{left:10.656000px;}
.x7d{left:11.880000px;}
.x28{left:12.963080px;}
.x63{left:15.120000px;}
.x37{left:16.294582px;}
.x27{left:17.769157px;}
.x36{left:20.067029px;}
.x54{left:21.106879px;}
.x26{left:22.572447px;}
.x35{left:23.843666px;}
.x6d{left:25.200000px;}
.x62{left:27.360000px;}
.x52{left:28.699395px;}
.x66{left:30.060000px;}
.x46{left:31.964837px;}
.x5f{left:33.840000px;}
.x51{left:35.472293px;}
.x2f{left:38.035164px;}
.x41{left:39.247817px;}
.x72{left:40.365000px;}
.x3b{left:42.077155px;}
.x6b{left:43.914000px;}
.x6{left:46.260000px;}
.x74{left:48.060000px;}
.x6c{left:49.365000px;}
.x83{left:52.740000px;}
.x25{left:54.436543px;}
.x34{left:56.647170px;}
.x48{left:62.155028px;}
.x7e{left:82.800000px;}
.x6e{left:84.600000px;}
.x49{left:86.698902px;}
.x56{left:90.729950px;}
.x59{left:93.199819px;}
.x50{left:94.299976px;}
.x45{left:96.196654px;}
.x1{left:102.635987px;}
.x20{left:106.415987px;}
.x12{left:107.496000px;}
.x5b{left:109.476000px;}
.x67{left:112.356000px;}
.x7{left:119.375987px;}
.x8{left:126.395987px;}
.x4e{left:128.532891px;}
.x2d{left:136.962878px;}
.x55{left:142.513991px;}
.x80{left:146.016000px;}
.x47{left:153.884071px;}
.x21{left:160.409987px;}
.x69{left:167.970000px;}
.xb{left:169.409987px;}
.x64{left:172.830000px;}
.x5d{left:174.270000px;}
.x8b{left:179.849987px;}
.x42{left:195.305474px;}
.x33{left:197.762302px;}
.x3d{left:200.857949px;}
.x2e{left:202.358080px;}
.x44{left:204.239980px;}
.x81{left:220.350000px;}
.x71{left:227.235000px;}
.x4{left:229.350000px;}
.x68{left:233.850000px;}
.x82{left:250.095000px;}
.xa{left:258.509987px;}
.x70{left:267.510000px;}
.xc{left:268.769987px;}
.x87{left:277.230000px;}
.x9{left:288.074987px;}
.x5{left:292.755000px;}
.x4c{left:295.424525px;}
.x57{left:297.407440px;}
.xe{left:310.034987px;}
.x78{left:319.575000px;}
.x4d{left:329.731250px;}
.x53{left:333.272177px;}
.x2c{left:338.898793px;}
.x3f{left:341.930620px;}
.x2b{left:343.703478px;}
.x5c{left:345.855000px;}
.x3a{left:347.065338px;}
.x2a{left:348.508161px;}
.x39{left:350.837784px;}
.x29{left:351.850549px;}
.x3c{left:355.029394px;}
.x22{left:356.474987px;}
.x30{left:364.700632px;}
.x3e{left:366.139933px;}
.x73{left:371.595000px;}
.x38{left:383.644081px;}
.x88{left:391.215000px;}
.x4a{left:396.918781px;}
.x58{left:400.515658px;}
.x10{left:402.194987px;}
.x23{left:404.354987px;}
.x79{left:423.795000px;}
.x11{left:429.374987px;}
.x4b{left:432.035196px;}
.xd{left:436.034987px;}
.x84{left:448.095000px;}
.x24{left:450.434987px;}
.x31{left:462.480794px;}
.x43{left:463.610136px;}
.x75{left:475.845000px;}
.x89{left:505.185000px;}
.x18{left:508.929000px;}
.x5e{left:512.745000px;}
.x17{left:514.869000px;}
.x6a{left:517.425000px;}
.x32{left:523.384662px;}
.x7a{left:527.865000px;}
.x40{left:530.161641px;}
.x1e{left:560.634000px;}
.x85{left:562.065000px;}
.x16{left:564.054000px;}
.xf{left:578.444987px;}
.x76{left:579.885000px;}
.x60{left:596.265000px;}
.x65{left:597.345000px;}
.x1a{left:599.334000px;}
.x14{left:602.934000px;}
.x19{left:610.494000px;}
.x1b{left:613.914000px;}
.x1c{left:619.494000px;}
.x15{left:629.034000px;}
.x7b{left:631.905000px;}
.x1d{left:646.674000px;}
.x4f{left:667.769987px;}
.x5a{left:671.369987px;}
.x86{left:676.050000px;}
.x61{left:679.830000px;}
.x77{left:683.970000px;}
.x8a{left:732.930000px;}
.x7c{left:736.170000px;}
.x2{left:740.309987px;}
.x3{left:755.969987px;}
.x1f{left:764.609987px;}
@media print{
.v7{vertical-align:-24.426667pt;}
.v2{vertical-align:-21.120000pt;}
.v1{vertical-align:-18.560000pt;}
.ve{vertical-align:-12.800000pt;}
.va{vertical-align:-8.960000pt;}
.v4{vertical-align:-5.120000pt;}
.v9{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.vb{vertical-align:8.960000pt;}
.vc{vertical-align:10.880000pt;}
.vf{vertical-align:12.800000pt;}
.v11{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.v6{vertical-align:24.320000pt;}
.vd{vertical-align:30.080000pt;}
.v10{vertical-align:33.465804pt;}
.v8{vertical-align:39.680000pt;}
.lsb{letter-spacing:-24.373333pt;}
.ls9{letter-spacing:-17.013333pt;}
.ls31{letter-spacing:-15.360000pt;}
.ls19{letter-spacing:-15.200000pt;}
.lse{letter-spacing:-12.000000pt;}
.lsf{letter-spacing:-11.360000pt;}
.ls16{letter-spacing:-10.720000pt;}
.ls18{letter-spacing:-9.440000pt;}
.ls12{letter-spacing:-8.800000pt;}
.ls15{letter-spacing:-7.520000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls42{letter-spacing:-0.147733pt;}
.ls14{letter-spacing:-0.115733pt;}
.ls17{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls2d{letter-spacing:-0.071508pt;}
.ls30{letter-spacing:-0.060725pt;}
.lsc{letter-spacing:-0.057067pt;}
.ls3d{letter-spacing:-0.051840pt;}
.ls43{letter-spacing:-0.048640pt;}
.ls3f{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.009799pt;}
.ls34{letter-spacing:0.010885pt;}
.ls35{letter-spacing:0.014527pt;}
.ls37{letter-spacing:0.017764pt;}
.ls36{letter-spacing:0.031223pt;}
.ls28{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.136533pt;}
.ls33{letter-spacing:0.149059pt;}
.ls2e{letter-spacing:0.151570pt;}
.ls38{letter-spacing:0.156113pt;}
.ls2{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.178775pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.210520pt;}
.ls8{letter-spacing:0.227733pt;}
.ls40{letter-spacing:0.252800pt;}
.ls3e{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.271467pt;}
.ls39{letter-spacing:0.272000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.342400pt;}
.ls20{letter-spacing:0.360960pt;}
.ls1b{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.398080pt;}
.ls3b{letter-spacing:0.419200pt;}
.ls13{letter-spacing:0.524267pt;}
.ls11{letter-spacing:0.525333pt;}
.ls3c{letter-spacing:0.579200pt;}
.ls41{letter-spacing:0.640000pt;}
.ls21{letter-spacing:1.593600pt;}
.ls27{letter-spacing:1.850240pt;}
.ls22{letter-spacing:2.233600pt;}
.ls1e{letter-spacing:2.490240pt;}
.ls1c{letter-spacing:2.596907pt;}
.ls1d{letter-spacing:13.824000pt;}
.ls26{letter-spacing:14.464000pt;}
.ls24{letter-spacing:24.662400pt;}
.ls25{letter-spacing:40.212907pt;}
.ls1f{letter-spacing:47.552000pt;}
.ls2c{letter-spacing:1090.468059pt;}
.ls0{letter-spacing:1944.196693pt;}
.ws37{word-spacing:-64.000000pt;}
.ws2{word-spacing:-58.880000pt;}
.ws13{word-spacing:-53.120000pt;}
.ws9{word-spacing:-23.736960pt;}
.ws2e{word-spacing:-19.510628pt;}
.ws5{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.792000pt;}
.ws2c{word-spacing:-17.344234pt;}
.ws3{word-spacing:-16.368640pt;}
.ws17{word-spacing:-16.128000pt;}
.ws16{word-spacing:-16.064000pt;}
.ws14{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.805333pt;}
.ws10{word-spacing:-13.804267pt;}
.wsc{word-spacing:-13.600000pt;}
.ws32{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.534613pt;}
.wse{word-spacing:-13.416533pt;}
.ws0{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws12{word-spacing:-13.182933pt;}
.ws11{word-spacing:-13.164267pt;}
.ws35{word-spacing:-12.640000pt;}
.ws36{word-spacing:-12.591360pt;}
.ws2f{word-spacing:-12.005120pt;}
.ws33{word-spacing:-12.000000pt;}
.ws30{word-spacing:-11.953280pt;}
.ws1a{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.400000pt;}
.ws1c{word-spacing:-9.996800pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws34{word-spacing:-8.000000pt;}
.ws31{word-spacing:-7.810560pt;}
.ws15{word-spacing:0.000000pt;}
.ws18{word-spacing:0.896000pt;}
.ws1b{word-spacing:5.248000pt;}
.ws27{word-spacing:41.496052pt;}
.ws28{word-spacing:51.778206pt;}
.ws29{word-spacing:112.503095pt;}
.ws20{word-spacing:114.091247pt;}
.ws2a{word-spacing:119.820251pt;}
.ws21{word-spacing:126.204895pt;}
.ws26{word-spacing:152.212584pt;}
.ws24{word-spacing:152.222300pt;}
.ws22{word-spacing:153.140405pt;}
.ws25{word-spacing:159.534598pt;}
.ws1e{word-spacing:163.008527pt;}
.ws23{word-spacing:165.259774pt;}
.ws1f{word-spacing:175.116397pt;}
.ws2b{word-spacing:221.067717pt;}
.ws2d{word-spacing:245.551369pt;}
._33{margin-left:-1979.306667pt;}
._38{margin-left:-1964.875307pt;}
._88{margin-left:-1823.881173pt;}
._3{margin-left:-1401.856000pt;}
._1{margin-left:-1364.107093pt;}
._1c{margin-left:-1329.324587pt;}
._24{margin-left:-1272.135680pt;}
._87{margin-left:-1152.106667pt;}
._1a{margin-left:-1114.257920pt;}
._85{margin-left:-1089.175040pt;}
._84{margin-left:-998.554240pt;}
._20{margin-left:-978.476587pt;}
._6f{margin-left:-948.532907pt;}
._6d{margin-left:-939.146667pt;}
._3a{margin-left:-934.255147pt;}
._78{margin-left:-892.063360pt;}
._2b{margin-left:-854.054400pt;}
._79{margin-left:-852.999253pt;}
._89{margin-left:-843.796267pt;}
._47{margin-left:-837.608320pt;}
._6b{margin-left:-810.619947pt;}
._3b{margin-left:-808.947840pt;}
._66{margin-left:-762.503467pt;}
._8e{margin-left:-740.653867pt;}
._8d{margin-left:-725.117227pt;}
._1f{margin-left:-697.658880pt;}
._1e{margin-left:-695.651840pt;}
._3c{margin-left:-648.572587pt;}
._3d{margin-left:-629.214933pt;}
._91{margin-left:-608.698240pt;}
._71{margin-left:-594.636160pt;}
._45{margin-left:-585.390293pt;}
._70{margin-left:-584.480000pt;}
._46{margin-left:-581.117013pt;}
._42{margin-left:-578.697387pt;}
._48{margin-left:-561.264213pt;}
._69{margin-left:-547.169707pt;}
._64{margin-left:-541.600000pt;}
._27{margin-left:-528.725547pt;}
._40{margin-left:-481.264213pt;}
._25{margin-left:-478.936960pt;}
._3f{margin-left:-458.218667pt;}
._77{margin-left:-454.833707pt;}
._5c{margin-left:-438.675840pt;}
._92{margin-left:-436.214613pt;}
._4a{margin-left:-424.136533pt;}
._6a{margin-left:-404.895787pt;}
._4e{margin-left:-401.600640pt;}
._4f{margin-left:-370.900693pt;}
._49{margin-left:-364.657493pt;}
._76{margin-left:-359.453440pt;}
._21{margin-left:-350.826240pt;}
._53{margin-left:-341.663573pt;}
._2c{margin-left:-332.976640pt;}
._80{margin-left:-324.551680pt;}
._8b{margin-left:-323.129600pt;}
._83{margin-left:-321.152000pt;}
._61{margin-left:-315.682133pt;}
._39{margin-left:-312.298667pt;}
._5d{margin-left:-304.071467pt;}
._62{margin-left:-297.614720pt;}
._81{margin-left:-293.845333pt;}
._55{margin-left:-286.538667pt;}
._44{margin-left:-284.160000pt;}
._2f{margin-left:-275.153707pt;}
._68{margin-left:-274.026667pt;}
._58{margin-left:-266.813440pt;}
._60{margin-left:-264.178560pt;}
._67{margin-left:-253.451733pt;}
._5f{margin-left:-252.302933pt;}
._30{margin-left:-241.088000pt;}
._15{margin-left:-227.601920pt;}
._8{margin-left:-220.799787pt;}
._52{margin-left:-219.569707pt;}
._5{margin-left:-216.838400pt;}
._13{margin-left:-215.474347pt;}
._14{margin-left:-214.219520pt;}
._2d{margin-left:-203.950080pt;}
._5a{margin-left:-198.688000pt;}
._50{margin-left:-192.883840pt;}
._9{margin-left:-191.764480pt;}
._6c{margin-left:-188.799360pt;}
._54{margin-left:-186.239360pt;}
._75{margin-left:-180.960000pt;}
._4{margin-left:-179.394560pt;}
._32{margin-left:-176.905600pt;}
._8a{margin-left:-172.430720pt;}
._3e{margin-left:-169.458560pt;}
._c{margin-left:-167.718613pt;}
._7{margin-left:-163.141120pt;}
._51{margin-left:-158.340480pt;}
._8f{margin-left:-152.329173pt;}
._56{margin-left:-151.038720pt;}
._63{margin-left:-149.290880pt;}
._d{margin-left:-146.890240pt;}
._26{margin-left:-145.838080pt;}
._74{margin-left:-143.427840pt;}
._4b{margin-left:-141.512320pt;}
._12{margin-left:-139.008000pt;}
._90{margin-left:-138.065280pt;}
._f{margin-left:-136.048640pt;}
._16{margin-left:-134.400000pt;}
._4d{margin-left:-132.995627pt;}
._7b{margin-left:-123.520000pt;}
._43{margin-left:-121.121920pt;}
._e{margin-left:-117.729280pt;}
._0{margin-left:-115.796480pt;}
._86{margin-left:-114.527360pt;}
._7c{margin-left:-100.176427pt;}
._7a{margin-left:-98.022400pt;}
._7d{margin-left:-94.311680pt;}
._17{margin-left:-92.736000pt;}
._41{margin-left:-81.600000pt;}
._19{margin-left:-73.984000pt;}
._11{margin-left:-70.528000pt;}
._31{margin-left:-61.646720pt;}
._8c{margin-left:-57.633707pt;}
._2e{margin-left:-56.327253pt;}
._10{margin-left:-51.568640pt;}
._59{margin-left:-50.484053pt;}
._a{margin-left:-45.852160pt;}
._b{margin-left:-35.190613pt;}
._4c{margin-left:-31.200000pt;}
._73{margin-left:-30.258347pt;}
._93{margin-left:-27.360000pt;}
._28{margin-left:-24.410880pt;}
._1d{margin-left:-23.063040pt;}
._82{margin-left:-19.399040pt;}
._18{margin-left:-18.432000pt;}
._6{margin-left:-17.016320pt;}
._7e{margin-left:-15.334187pt;}
._72{margin-left:-13.691520pt;}
._34{margin-left:-12.640000pt;}
._2a{margin-left:-10.707840pt;}
._5e{margin-left:-9.595520pt;}
._57{margin-left:-8.259840pt;}
._22{margin-left:-6.983680pt;}
._23{margin-left:-5.765760pt;}
._29{margin-left:-4.524160pt;}
._9a{margin-left:-3.411840pt;}
._7f{margin-left:-2.337280pt;}
._2{margin-left:-0.942080pt;}
._1b{width:0.895573pt;}
._35{width:1.840427pt;}
._6e{width:3.099733pt;}
._36{width:4.117973pt;}
._5b{width:5.099520pt;}
._65{width:6.301867pt;}
._37{width:8.043093pt;}
._98{width:9.022720pt;}
._9b{width:10.752000pt;}
._96{width:11.968000pt;}
._97{width:12.992000pt;}
._99{width:14.123093pt;}
._b1{width:15.696000pt;}
._b7{width:16.595200pt;}
._b4{width:17.536000pt;}
._b5{width:18.752000pt;}
._9c{width:23.424000pt;}
._94{width:28.608000pt;}
._95{width:29.632853pt;}
._b6{width:31.296000pt;}
._b0{width:36.998833pt;}
._a7{width:42.673042pt;}
._aa{width:58.579598pt;}
._ad{width:68.877163pt;}
._ab{width:80.173248pt;}
._ac{width:85.221937pt;}
._9f{width:133.809127pt;}
._ae{width:136.599866pt;}
._af{width:139.717746pt;}
._a2{width:145.905299pt;}
._a5{width:149.642585pt;}
._a6{width:155.701855pt;}
._a0{width:159.636246pt;}
._a1{width:165.569977pt;}
._a8{width:175.994555pt;}
._a9{width:179.446667pt;}
._a3{width:188.721648pt;}
._a4{width:194.745293pt;}
._9d{width:198.661221pt;}
._9e{width:204.624856pt;}
._b2{width:242.776412pt;}
._b3{width:269.664341pt;}
.fsa{font-size:10.880000pt;}
.fs17{font-size:11.659258pt;}
.fs11{font-size:13.729561pt;}
.fs8{font-size:16.000000pt;}
.fs18{font-size:16.395831pt;}
.fsf{font-size:19.307195pt;}
.fs16{font-size:19.674998pt;}
.fs10{font-size:23.168633pt;}
.fs12{font-size:23.318516pt;}
.fs14{font-size:26.597682pt;}
.fs5{font-size:26.880000pt;}
.fsd{font-size:27.110477pt;}
.fs15{font-size:27.198861pt;}
.fs13{font-size:30.253345pt;}
.fse{font-size:31.320560pt;}
.fs9{font-size:32.000000pt;}
.fs22{font-size:34.485900pt;}
.fs3{font-size:34.560000pt;}
.fsc{font-size:35.625349pt;}
.fs6{font-size:37.120000pt;}
.fs19{font-size:38.953150pt;}
.fs24{font-size:42.616810pt;}
.fs7{font-size:42.880000pt;}
.fs23{font-size:42.942046pt;}
.fs1e{font-size:43.267283pt;}
.fsb{font-size:45.440000pt;}
.fs26{font-size:48.000000pt;}
.fs25{font-size:50.560000pt;}
.fs1b{font-size:50.960208pt;}
.fs1c{font-size:51.249111pt;}
.fs4{font-size:53.120000pt;}
.fs1d{font-size:53.828583pt;}
.fs1f{font-size:54.975657pt;}
.fs27{font-size:55.992837pt;}
.fs1a{font-size:56.057818pt;}
.fs21{font-size:56.925043pt;}
.fs20{font-size:57.252396pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1c4{bottom:2.560000pt;}
.y22{bottom:2.880000pt;}
.y16d{bottom:3.520000pt;}
.yf0{bottom:4.280313pt;}
.yaf{bottom:4.675873pt;}
.y193{bottom:4.800000pt;}
.y16c{bottom:4.954667pt;}
.y169{bottom:4.960000pt;}
.y14c{bottom:5.120000pt;}
.y19e{bottom:6.080000pt;}
.y165{bottom:6.240000pt;}
.ya6{bottom:6.284814pt;}
.y148{bottom:6.400000pt;}
.yf7{bottom:6.466406pt;}
.y1c1{bottom:6.560000pt;}
.y1e9{bottom:6.720000pt;}
.y118{bottom:7.036239pt;}
.y14{bottom:7.520000pt;}
.y1c9{bottom:7.840000pt;}
.y1c2{bottom:9.440000pt;}
.y6{bottom:10.720000pt;}
.y133{bottom:11.424605pt;}
.ycc{bottom:14.758712pt;}
.y191{bottom:14.880000pt;}
.y1a0{bottom:14.906667pt;}
.y14a{bottom:15.040000pt;}
.y1d7{bottom:15.080000pt;}
.y8d{bottom:15.405956pt;}
.y85{bottom:15.405965pt;}
.y21{bottom:16.000000pt;}
.yd4{bottom:16.125014pt;}
.y1c3{bottom:16.320000pt;}
.y18e{bottom:17.440000pt;}
.y163{bottom:17.600000pt;}
.y146{bottom:17.760000pt;}
.y34{bottom:18.240000pt;}
.y1e6{bottom:21.120000pt;}
.y1c8{bottom:22.400000pt;}
.y1ce{bottom:22.432000pt;}
.y20{bottom:22.720000pt;}
.y13{bottom:25.120000pt;}
.yd5{bottom:25.233810pt;}
.ycd{bottom:25.233828pt;}
.y8e{bottom:27.097535pt;}
.y86{bottom:27.097544pt;}
.y3{bottom:30.400000pt;}
.y1be{bottom:31.840000pt;}
.y128{bottom:33.220865pt;}
.y33{bottom:33.600000pt;}
.y10e{bottom:34.418624pt;}
.y1ae{bottom:34.880000pt;}
.y1ef{bottom:34.920000pt;}
.y16f{bottom:35.040000pt;}
.y167{bottom:35.066667pt;}
.y1e5{bottom:36.480000pt;}
.y1f{bottom:38.080000pt;}
.y5{bottom:39.546667pt;}
.y10f{bottom:47.671098pt;}
.y129{bottom:47.941064pt;}
.y2{bottom:48.320000pt;}
.y32{bottom:48.960000pt;}
.y1e{bottom:53.440000pt;}
.yd6{bottom:54.661291pt;}
.yce{bottom:54.661309pt;}
.y8f{bottom:61.750374pt;}
.y87{bottom:61.750383pt;}
.y31{bottom:64.160000pt;}
.y1d{bottom:68.826667pt;}
.y30{bottom:79.520000pt;}
.y1c{bottom:84.026667pt;}
.yd7{bottom:84.088772pt;}
.ycf{bottom:84.088790pt;}
.y110{bottom:85.962503pt;}
.y117{bottom:89.110186pt;}
.y12a{bottom:90.473312pt;}
.y124{bottom:92.480383pt;}
.y123{bottom:92.553590pt;}
.y2f{bottom:94.880000pt;}
.y90{bottom:96.403213pt;}
.y88{bottom:96.403222pt;}
.y13e{bottom:98.282238pt;}
.y13d{bottom:98.526166pt;}
.yf8{bottom:98.574186pt;}
.y6f{bottom:98.720000pt;}
.y1b{bottom:99.386667pt;}
.yf1{bottom:101.306843pt;}
.y1cd{bottom:102.080000pt;}
.y132{bottom:103.973875pt;}
.y2e{bottom:110.280000pt;}
.y166{bottom:111.200000pt;}
.yd8{bottom:113.516254pt;}
.yd0{bottom:113.516272pt;}
.y1a{bottom:114.746667pt;}
.ya7{bottom:116.249588pt;}
.y58{bottom:116.480000pt;}
.y143{bottom:117.440000pt;}
.yb0{bottom:117.970065pt;}
.y1cf{bottom:122.112000pt;}
.y206{bottom:122.752000pt;}
.y111{bottom:124.328088pt;}
.y39{bottom:124.672000pt;}
.y2d{bottom:125.640000pt;}
.y1f7{bottom:128.832000pt;}
.y19{bottom:130.106667pt;}
.y121{bottom:130.259365pt;}
.y91{bottom:131.056052pt;}
.y89{bottom:131.056061pt;}
.y16b{bottom:131.232000pt;}
.y122{bottom:132.235810pt;}
.y12b{bottom:133.087954pt;}
.y1b5{bottom:136.666667pt;}
.y6e{bottom:136.826667pt;}
.y6d{bottom:136.986667pt;}
.y2c{bottom:141.000000pt;}
.y1cb{bottom:142.106667pt;}
.yd9{bottom:142.943735pt;}
.yd1{bottom:142.943753pt;}
.y6c{bottom:144.346667pt;}
.y142{bottom:145.146667pt;}
.y18{bottom:145.466667pt;}
.y13c{bottom:145.611724pt;}
.y13b{bottom:146.343506pt;}
.y225{bottom:146.906667pt;}
.y205{bottom:150.426667pt;}
.y16a{bottom:151.226667pt;}
.y1b1{bottom:152.186667pt;}
.y38{bottom:152.346667pt;}
.y18b{bottom:152.506667pt;}
.y57{bottom:154.746667pt;}
.y2b{bottom:156.200000pt;}
.y1f6{bottom:156.346667pt;}
.y17{bottom:160.826667pt;}
.y1cc{bottom:162.106667pt;}
.y112{bottom:162.622421pt;}
.y224{bottom:163.546667pt;}
.y92{bottom:165.708891pt;}
.y8a{bottom:165.708900pt;}
.y168{bottom:171.226667pt;}
.y2a{bottom:171.560000pt;}
.y1b4{bottom:172.186667pt;}
.yda{bottom:172.371216pt;}
.yd2{bottom:172.371234pt;}
.y12c{bottom:175.623455pt;}
.y10c{bottom:176.186667pt;}
.y204{bottom:177.946667pt;}
.y37{bottom:179.866667pt;}
.y18a{bottom:180.026667pt;}
.y1c7{bottom:182.106667pt;}
.y56{bottom:182.426667pt;}
.y141{bottom:183.386667pt;}
.y1f5{bottom:184.026667pt;}
.y16{bottom:184.826667pt;}
.y29{bottom:186.920000pt;}
.y6b{bottom:187.866667pt;}
.y223{bottom:190.746667pt;}
.y162{bottom:191.226667pt;}
.yff{bottom:191.957545pt;}
.yf6{bottom:191.957563pt;}
.y1b3{bottom:192.186667pt;}
.yfe{bottom:196.971026pt;}
.yf5{bottom:196.971044pt;}
.y93{bottom:200.361729pt;}
.y8b{bottom:200.361738pt;}
.y113{bottom:200.913827pt;}
.ydb{bottom:201.798697pt;}
.yd3{bottom:201.798715pt;}
.yfd{bottom:201.980863pt;}
.yf4{bottom:201.980881pt;}
.y1ca{bottom:202.106667pt;}
.y28{bottom:202.280000pt;}
.y10b{bottom:203.706667pt;}
.yef{bottom:204.440265pt;}
.yfa{bottom:204.531335pt;}
.y203{bottom:205.626667pt;}
.y11f{bottom:206.477127pt;}
.yfc{bottom:206.990701pt;}
.yf3{bottom:206.990719pt;}
.y222{bottom:207.226667pt;}
.y189{bottom:207.706667pt;}
.y120{bottom:209.112389pt;}
.y55{bottom:209.946667pt;}
.y1f4{bottom:211.546667pt;}
.yee{bottom:211.547554pt;}
.yf9{bottom:211.638624pt;}
.yfb{bottom:212.002967pt;}
.yf2{bottom:212.002985pt;}
.y1b2{bottom:212.186667pt;}
.y36{bottom:212.346667pt;}
.y164{bottom:213.786667pt;}
.y140{bottom:213.946667pt;}
.y6a{bottom:215.546667pt;}
.y27{bottom:217.640000pt;}
.y12d{bottom:218.155703pt;}
.y1c5{bottom:222.106667pt;}
.y221{bottom:223.866667pt;}
.yb7{bottom:224.181082pt;}
.yae{bottom:224.395615pt;}
.ydc{bottom:225.852001pt;}
.ye7{bottom:226.580686pt;}
.yb6{bottom:230.080502pt;}
.yad{bottom:230.295036pt;}
.y10a{bottom:231.386667pt;}
.y1ad{bottom:232.186667pt;}
.y35{bottom:234.586667pt;}
.yc4{bottom:234.778607pt;}
.ybc{bottom:234.778625pt;}
.y94{bottom:235.014568pt;}
.y8c{bottom:235.014577pt;}
.y188{bottom:235.226667pt;}
.yb5{bottom:235.979923pt;}
.yac{bottom:236.194456pt;}
.y138{bottom:237.022666pt;}
.y54{bottom:237.626667pt;}
.y131{bottom:237.754448pt;}
.y26{bottom:238.280000pt;}
.yb2{bottom:239.090531pt;}
.ya9{bottom:239.090540pt;}
.y114{bottom:239.206208pt;}
.y1f3{bottom:239.226667pt;}
.y25{bottom:239.706667pt;}
.y13f{bottom:240.826667pt;}
.y127{bottom:240.906667pt;}
.yb4{bottom:241.882204pt;}
.yab{bottom:242.096737pt;}
.y1c6{bottom:242.106667pt;}
.y69{bottom:243.066667pt;}
.y202{bottom:243.866667pt;}
.yc5{bottom:243.889833pt;}
.ybd{bottom:243.889851pt;}
.yba{bottom:246.106667pt;}
.yb1{bottom:247.459842pt;}
.ya8{bottom:247.459851pt;}
.yb3{bottom:247.781624pt;}
.yaa{bottom:247.996158pt;}
.y220{bottom:251.066667pt;}
.y161{bottom:252.186667pt;}
.y109{bottom:258.906667pt;}
.y11c{bottom:259.192260pt;}
.y12e{bottom:260.689035pt;}
.y1bd{bottom:262.106667pt;}
.y9f{bottom:262.159050pt;}
.y187{bottom:262.906667pt;}
.y96{bottom:264.518827pt;}
.y53{bottom:265.146667pt;}
.yb9{bottom:265.946667pt;}
.y1f2{bottom:266.746667pt;}
.y21f{bottom:267.546667pt;}
.y68{bottom:270.746667pt;}
.y201{bottom:271.386667pt;}
.y11b{bottom:271.714658pt;}
.y160{bottom:272.026667pt;}
.y1b0{bottom:272.186667pt;}
.y7d{bottom:272.885272pt;}
.y75{bottom:272.885281pt;}
.yc6{bottom:274.501457pt;}
.ybe{bottom:274.501475pt;}
.y115{bottom:277.570815pt;}
.y137{bottom:281.831569pt;}
.y11d{bottom:284.015450pt;}
.y11a{bottom:284.235104pt;}
.y7e{bottom:284.579712pt;}
.y76{bottom:284.579721pt;}
.y11e{bottom:285.991895pt;}
.y108{bottom:286.586667pt;}
.y1c0{bottom:290.266667pt;}
.y186{bottom:290.426667pt;}
.y1af{bottom:292.186667pt;}
.y52{bottom:292.826667pt;}
.y21e{bottom:294.746667pt;}
.y136{bottom:295.576060pt;}
.y1f1{bottom:296.826667pt;}
.y67{bottom:298.266667pt;}
.y200{bottom:299.066667pt;}
.yb8{bottom:300.346667pt;}
.y74{bottom:300.373315pt;}
.y15f{bottom:302.906667pt;}
.y12f{bottom:303.302593pt;}
.yc7{bottom:305.113082pt;}
.ybf{bottom:305.113100pt;}
.y119{bottom:307.734858pt;}
.y135{bottom:309.319466pt;}
.y1ee{bottom:311.226667pt;}
.y21d{bottom:311.386667pt;}
.y1ab{bottom:312.186667pt;}
.y1bf{bottom:312.986667pt;}
.y107{bottom:314.106667pt;}
.y139{bottom:315.176974pt;}
.y116{bottom:315.863197pt;}
.y13a{bottom:315.908755pt;}
.y15d{bottom:317.466667pt;}
.y7f{bottom:319.232551pt;}
.y77{bottom:319.232560pt;}
.ye8{bottom:319.964062pt;}
.ydd{bottom:319.964080pt;}
.y51{bottom:320.346667pt;}
.y66{bottom:325.946667pt;}
.y1ff{bottom:326.586667pt;}
.y21c{bottom:327.866667pt;}
.y185{bottom:328.826667pt;}
.y1f0{bottom:331.226667pt;}
.y1ac{bottom:334.906667pt;}
.yc8{bottom:335.724707pt;}
.yc0{bottom:335.724725pt;}
.y134{bottom:336.807362pt;}
.y15e{bottom:337.466667pt;}
.y130{bottom:345.835925pt;}
.y50{bottom:348.066667pt;}
.y1bc{bottom:351.266667pt;}
.y65{bottom:353.506667pt;}
.y80{bottom:353.885389pt;}
.y78{bottom:353.885398pt;}
.y1fe{bottom:354.306667pt;}
.y106{bottom:355.106667pt;}
.y15b{bottom:357.506667pt;}
.yc9{bottom:366.336331pt;}
.yc1{bottom:366.336349pt;}
.y184{bottom:367.106667pt;}
.ya0{bottom:369.871747pt;}
.y1bb{bottom:371.266667pt;}
.y21b{bottom:371.746667pt;}
.y1aa{bottom:373.186667pt;}
.y95{bottom:374.805816pt;}
.y4f{bottom:375.586667pt;}
.y15c{bottom:377.506667pt;}
.y64{bottom:381.186667pt;}
.y1fd{bottom:381.826667pt;}
.y21a{bottom:388.226667pt;}
.y81{bottom:388.538228pt;}
.y79{bottom:388.538237pt;}
.y1ea{bottom:391.266667pt;}
.y1a9{bottom:393.026667pt;}
.y105{bottom:393.346667pt;}
.y183{bottom:394.626667pt;}
.yca{bottom:396.947956pt;}
.yc2{bottom:396.947974pt;}
.y159{bottom:397.506667pt;}
.y4e{bottom:403.266667pt;}
.y219{bottom:404.706667pt;}
.y63{bottom:408.706667pt;}
.y1ba{bottom:409.506667pt;}
.yed{bottom:410.888046pt;}
.ye4{bottom:411.161328pt;}
.y1ed{bottom:411.266667pt;}
.yec{bottom:415.897884pt;}
.ye3{bottom:416.171166pt;}
.y15a{bottom:417.506667pt;}
.yeb{bottom:420.910150pt;}
.y104{bottom:421.026667pt;}
.ye2{bottom:421.183432pt;}
.y182{bottom:422.306667pt;}
.y82{bottom:423.191067pt;}
.y7a{bottom:423.191076pt;}
.ye6{bottom:423.369534pt;}
.ydf{bottom:423.369552pt;}
.y1a8{bottom:424.066667pt;}
.yea{bottom:425.919987pt;}
.ye1{bottom:426.193269pt;}
.ycb{bottom:427.559581pt;}
.yc3{bottom:427.559599pt;}
.ye5{bottom:430.474394pt;}
.yde{bottom:430.474412pt;}
.y4d{bottom:430.786667pt;}
.ye9{bottom:430.929825pt;}
.ye0{bottom:431.203107pt;}
.y1ec{bottom:431.266667pt;}
.y218{bottom:432.066667pt;}
.y62{bottom:436.386667pt;}
.y1b9{bottom:437.026667pt;}
.y157{bottom:437.506667pt;}
.y1a6{bottom:438.626667pt;}
.y103{bottom:448.546667pt;}
.y181{bottom:449.826667pt;}
.y1eb{bottom:451.266667pt;}
.y158{bottom:457.506667pt;}
.y83{bottom:457.843906pt;}
.y7b{bottom:457.843915pt;}
.y4c{bottom:458.466667pt;}
.y1a7{bottom:458.626667pt;}
.y217{bottom:459.266667pt;}
.y1b8{bottom:464.706667pt;}
.y1e4{bottom:471.266667pt;}
.y61{bottom:474.626667pt;}
.y216{bottom:475.746667pt;}
.y155{bottom:477.506667pt;}
.y1a4{bottom:478.626667pt;}
.y102{bottom:479.106667pt;}
.y9b{bottom:480.158736pt;}
.ya5{bottom:481.874922pt;}
.y4b{bottom:485.986667pt;}
.y9a{bottom:486.058157pt;}
.ya4{bottom:487.774343pt;}
.y99{bottom:491.960437pt;}
.y1b7{bottom:492.226667pt;}
.y84{bottom:492.496745pt;}
.y7c{bottom:492.496754pt;}
.ya3{bottom:493.676624pt;}
.y1e8{bottom:493.826667pt;}
.y24{bottom:494.306667pt;}
.y9e{bottom:496.572707pt;}
.y9d{bottom:496.572716pt;}
.y98{bottom:497.859858pt;}
.y1a5{bottom:498.626667pt;}
.y101{bottom:498.946667pt;}
.ya2{bottom:499.576044pt;}
.y156{bottom:500.226667pt;}
.y215{bottom:502.946667pt;}
.y23{bottom:503.426667pt;}
.y97{bottom:503.759279pt;}
.y9c{bottom:504.939167pt;}
.y180{bottom:505.026667pt;}
.ya1{bottom:505.475465pt;}
.y15{bottom:512.866667pt;}
.y4a{bottom:513.506667pt;}
.y1e7{bottom:516.546667pt;}
.y1a2{bottom:518.626667pt;}
.y214{bottom:519.586667pt;}
.y1fc{bottom:519.906667pt;}
.y1b6{bottom:530.466667pt;}
.y17f{bottom:532.706667pt;}
.y100{bottom:533.506667pt;}
.ybb{bottom:537.169942pt;}
.y154{bottom:538.466667pt;}
.y1a3{bottom:538.626667pt;}
.y60{bottom:540.546667pt;}
.y49{bottom:541.186667pt;}
.y213{bottom:546.786667pt;}
.y1fb{bottom:547.426667pt;}
.y1e3{bottom:554.786667pt;}
.y153{bottom:558.466667pt;}
.y19f{bottom:558.626667pt;}
.y17e{bottom:560.226667pt;}
.y212{bottom:563.266667pt;}
.y5f{bottom:568.066667pt;}
.y48{bottom:568.706667pt;}
.y1e2{bottom:574.813333pt;}
.y1fa{bottom:575.133333pt;}
.y1a1{bottom:578.653333pt;}
.y17d{bottom:587.933333pt;}
.y152{bottom:589.373333pt;}
.y211{bottom:590.493333pt;}
.y1e1{bottom:594.653333pt;}
.y5e{bottom:595.773333pt;}
.y47{bottom:596.413333pt;}
.y19c{bottom:598.653333pt;}
.y151{bottom:603.933333pt;}
.y210{bottom:607.133333pt;}
.y1f9{bottom:613.373333pt;}
.y17c{bottom:615.453333pt;}
.y126{bottom:618.333333pt;}
.y19d{bottom:621.373333pt;}
.y5d{bottom:623.453333pt;}
.y46{bottom:623.933333pt;}
.y1e0{bottom:624.573333pt;}
.y20f{bottom:634.333333pt;}
.y17b{bottom:643.133333pt;}
.y14f{bottom:643.933333pt;}
.y45{bottom:651.613333pt;}
.y10d{bottom:652.706594pt;}
.y125{bottom:652.733333pt;}
.y1df{bottom:653.373333pt;}
.y19b{bottom:659.613333pt;}
.y20e{bottom:661.533333pt;}
.y150{bottom:663.933333pt;}
.y1dd{bottom:667.933333pt;}
.y44{bottom:679.133333pt;}
.y19a{bottom:679.453333pt;}
.y17a{bottom:681.373333pt;}
.y14d{bottom:683.933333pt;}
.y1de{bottom:687.933333pt;}
.y20d{bottom:688.733333pt;}
.y14e{bottom:703.933333pt;}
.y20c{bottom:705.213333pt;}
.y5c{bottom:706.813333pt;}
.y1db{bottom:707.933333pt;}
.y179{bottom:708.893333pt;}
.y199{bottom:710.493333pt;}
.y12{bottom:715.613333pt;}
.y43{bottom:717.533333pt;}
.y149{bottom:723.933333pt;}
.y198{bottom:725.053333pt;}
.y1dc{bottom:727.933333pt;}
.y20b{bottom:732.413333pt;}
.y5b{bottom:734.333333pt;}
.y178{bottom:736.573333pt;}
.y14b{bottom:743.933333pt;}
.y42{bottom:745.053333pt;}
.y1d9{bottom:747.933333pt;}
.y20a{bottom:749.053333pt;}
.y11{bottom:761.693333pt;}
.y5a{bottom:762.013333pt;}
.y145{bottom:763.933333pt;}
.y177{bottom:764.093333pt;}
.y196{bottom:765.053333pt;}
.y1da{bottom:767.933333pt;}
.y230{bottom:770.813333pt;}
.y41{bottom:772.733333pt;}
.y209{bottom:776.253333pt;}
.y197{bottom:785.053333pt;}
.y147{bottom:786.653333pt;}
.y22f{bottom:787.293333pt;}
.y1d6{bottom:787.933333pt;}
.y59{bottom:789.533333pt;}
.y176{bottom:791.773333pt;}
.y10{bottom:792.733333pt;}
.y40{bottom:800.293333pt;}
.y22e{bottom:803.973333pt;}
.y194{bottom:805.093333pt;}
.y1d8{bottom:807.973333pt;}
.y1f8{bottom:817.253333pt;}
.y175{bottom:819.333333pt;}
.y208{bottom:819.973333pt;}
.yf{bottom:823.973333pt;}
.y144{bottom:824.933333pt;}
.y195{bottom:825.093333pt;}
.y3f{bottom:827.813333pt;}
.y1d3{bottom:827.973333pt;}
.y22d{bottom:831.173333pt;}
.y207{bottom:836.613333pt;}
.y73{bottom:844.773333pt;}
.y190{bottom:845.093333pt;}
.y174{bottom:847.013333pt;}
.y22c{bottom:847.653333pt;}
.ye{bottom:854.373333pt;}
.y3e{bottom:855.493333pt;}
.y1d5{bottom:856.133333pt;}
.yd{bottom:864.133333pt;}
.y22b{bottom:864.293333pt;}
.y192{bottom:865.093333pt;}
.y72{bottom:872.453333pt;}
.yc{bottom:877.893333pt;}
.y1d4{bottom:878.853333pt;}
.y3d{bottom:883.013333pt;}
.y18d{bottom:885.093333pt;}
.y173{bottom:885.253333pt;}
.y22a{bottom:891.493333pt;}
.yb{bottom:893.253333pt;}
.y71{bottom:899.973333pt;}
.y16e{bottom:900.773333pt;}
.y18f{bottom:907.653333pt;}
.y229{bottom:907.973333pt;}
.ya{bottom:908.613333pt;}
.y3c{bottom:910.693333pt;}
.y1d2{bottom:917.093333pt;}
.y9{bottom:920.453333pt;}
.y172{bottom:920.773333pt;}
.y70{bottom:927.653333pt;}
.y228{bottom:935.173333pt;}
.y1d1{bottom:936.933333pt;}
.y3b{bottom:938.213333pt;}
.y171{bottom:940.773333pt;}
.y8{bottom:941.893333pt;}
.y18c{bottom:946.053333pt;}
.y227{bottom:951.813333pt;}
.y170{bottom:960.773333pt;}
.y7{bottom:963.333333pt;}
.y3a{bottom:965.893333pt;}
.y1d0{bottom:967.013333pt;}
.y226{bottom:968.293333pt;}
.y1{bottom:991.493333pt;}
.y4{bottom:999.493333pt;}
.h15{height:7.703125pt;}
.h11{height:14.078125pt;}
.h2c{height:17.100340pt;}
.h46{height:19.200000pt;}
.h47{height:19.232000pt;}
.h3f{height:19.360000pt;}
.h42{height:19.392000pt;}
.h20{height:20.136801pt;}
.h2a{height:20.520408pt;}
.h44{height:21.920000pt;}
.h3b{height:21.952000pt;}
.h3c{height:22.080000pt;}
.h2b{height:23.090796pt;}
.h21{height:24.164161pt;}
.h26{height:24.320483pt;}
.h8{height:26.381250pt;}
.h23{height:27.190966pt;}
.h24{height:27.202407pt;}
.h4e{height:27.520000pt;}
.h28{height:27.740551pt;}
.h31{height:27.921496pt;}
.h1e{height:28.275381pt;}
.h29{height:28.367562pt;}
.h38{height:30.780724pt;}
.h27{height:31.553294pt;}
.h12{height:32.250000pt;}
.h1f{height:32.666365pt;}
.h7{height:33.918750pt;}
.hb{height:35.200000pt;}
.h1d{height:37.156126pt;}
.h1a{height:38.295625pt;}
.h55{height:39.200000pt;}
.h54{height:39.232000pt;}
.h3d{height:39.360000pt;}
.h41{height:39.392000pt;}
.h2f{height:40.182068pt;}
.h2e{height:40.550838pt;}
.h36{height:41.038339pt;}
.hc{height:42.084375pt;}
.h43{height:44.640000pt;}
.h9{height:44.661915pt;}
.h39{height:44.672000pt;}
.h40{height:44.800000pt;}
.h34{height:45.041917pt;}
.hf{height:46.739375pt;}
.h50{height:47.109375pt;}
.h58{height:49.267134pt;}
.h4f{height:49.336436pt;}
.h4c{height:49.621875pt;}
.h51{height:49.966250pt;}
.hd{height:50.733750pt;}
.h4d{height:51.967713pt;}
.h10{height:52.134375pt;}
.h4a{height:52.478750pt;}
.h3a{height:52.834688pt;}
.h3e{height:52.934375pt;}
.ha{height:53.015625pt;}
.h14{height:53.535000pt;}
.h3{height:54.592000pt;}
.h49{height:54.598989pt;}
.h32{height:56.141530pt;}
.h35{height:57.337892pt;}
.h37{height:57.581271pt;}
.h22{height:57.629965pt;}
.h52{height:57.787500pt;}
.h2{height:58.563750pt;}
.h30{height:61.331028pt;}
.h5{height:62.812500pt;}
.h16{height:64.500000pt;}
.h4{height:65.531250pt;}
.h17{height:66.404375pt;}
.h18{height:66.511042pt;}
.h56{height:67.360000pt;}
.h53{height:72.800000pt;}
.h4b{height:72.960000pt;}
.h6{height:75.465000pt;}
.h19{height:77.975625pt;}
.h45{height:79.232000pt;}
.h48{height:79.360000pt;}
.h57{height:79.392000pt;}
.h1b{height:92.892500pt;}
.he{height:200.666667pt;}
.h13{height:250.746667pt;}
.h2d{height:327.995608pt;}
.h33{height:361.737957pt;}
.h25{height:443.532811pt;}
.h1c{height:521.007378pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w23{width:45.600000pt;}
.w22{width:45.632000pt;}
.w2a{width:49.920000pt;}
.w2b{width:49.952000pt;}
.w2c{width:50.080000pt;}
.w2d{width:50.112000pt;}
.w24{width:55.552000pt;}
.w25{width:65.440000pt;}
.w1b{width:65.952000pt;}
.w19{width:71.360000pt;}
.w1a{width:71.392000pt;}
.w15{width:72.960000pt;}
.w14{width:72.992000pt;}
.w13{width:73.120000pt;}
.wc{width:73.440000pt;}
.wf{width:73.472000pt;}
.we{width:73.600000pt;}
.wd{width:73.632000pt;}
.w9{width:83.360000pt;}
.w10{width:83.680000pt;}
.w20{width:91.840000pt;}
.w1e{width:91.872000pt;}
.w21{width:92.000000pt;}
.w1f{width:92.032000pt;}
.w1c{width:95.360000pt;}
.w27{width:100.512000pt;}
.w28{width:100.640000pt;}
.w29{width:100.672000pt;}
.w16{width:107.200000pt;}
.w17{width:107.392000pt;}
.wa{width:125.312000pt;}
.w11{width:127.392000pt;}
.w3{width:356.386667pt;}
.w18{width:359.426667pt;}
.w12{width:367.906667pt;}
.wb{width:370.306667pt;}
.w7{width:412.010176pt;}
.w8{width:418.389381pt;}
.w1d{width:462.173333pt;}
.w26{width:505.693333pt;}
.w4{width:582.013333pt;}
.w6{width:583.994753pt;}
.w5{width:584.788216pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x6f{left:8.512000pt;}
.x7f{left:9.472000pt;}
.x7d{left:10.560000pt;}
.x28{left:11.522737pt;}
.x63{left:13.440000pt;}
.x37{left:14.484072pt;}
.x27{left:15.794806pt;}
.x36{left:17.837359pt;}
.x54{left:18.761671pt;}
.x26{left:20.064398pt;}
.x35{left:21.194370pt;}
.x6d{left:22.400000pt;}
.x62{left:24.320000pt;}
.x52{left:25.510574pt;}
.x66{left:26.720000pt;}
.x46{left:28.413189pt;}
.x5f{left:30.080000pt;}
.x51{left:31.530927pt;}
.x2f{left:33.809034pt;}
.x41{left:34.886948pt;}
.x72{left:35.880000pt;}
.x3b{left:37.401916pt;}
.x6b{left:39.034667pt;}
.x6{left:41.120000pt;}
.x74{left:42.720000pt;}
.x6c{left:43.880000pt;}
.x83{left:46.880000pt;}
.x25{left:48.388038pt;}
.x34{left:50.353040pt;}
.x48{left:55.248914pt;}
.x7e{left:73.600000pt;}
.x6e{left:75.200000pt;}
.x49{left:77.065691pt;}
.x56{left:80.648844pt;}
.x59{left:82.844284pt;}
.x50{left:83.822201pt;}
.x45{left:85.508137pt;}
.x1{left:91.231988pt;}
.x20{left:94.591988pt;}
.x12{left:95.552000pt;}
.x5b{left:97.312000pt;}
.x67{left:99.872000pt;}
.x7{left:106.111988pt;}
.x8{left:112.351988pt;}
.x4e{left:114.251458pt;}
.x2d{left:121.744781pt;}
.x55{left:126.679103pt;}
.x80{left:129.792000pt;}
.x47{left:136.785840pt;}
.x21{left:142.586655pt;}
.x69{left:149.306667pt;}
.xb{left:150.586655pt;}
.x64{left:153.626667pt;}
.x5d{left:154.906667pt;}
.x8b{left:159.866655pt;}
.x42{left:173.604866pt;}
.x33{left:175.788713pt;}
.x3d{left:178.540399pt;}
.x2e{left:179.873849pt;}
.x44{left:181.546649pt;}
.x81{left:195.866667pt;}
.x71{left:201.986667pt;}
.x4{left:203.866667pt;}
.x68{left:207.866667pt;}
.x82{left:222.306667pt;}
.xa{left:229.786655pt;}
.x70{left:237.786667pt;}
.xc{left:238.906655pt;}
.x87{left:246.426667pt;}
.x9{left:256.066655pt;}
.x5{left:260.226667pt;}
.x4c{left:262.599578pt;}
.x57{left:264.362169pt;}
.xe{left:275.586655pt;}
.x78{left:284.066667pt;}
.x4d{left:293.094444pt;}
.x53{left:296.241935pt;}
.x2c{left:301.243372pt;}
.x3f{left:303.938329pt;}
.x2b{left:305.514203pt;}
.x5c{left:307.426667pt;}
.x3a{left:308.502523pt;}
.x2a{left:309.785032pt;}
.x39{left:311.855808pt;}
.x29{left:312.756043pt;}
.x3c{left:315.581684pt;}
.x22{left:316.866655pt;}
.x30{left:324.178339pt;}
.x3e{left:325.457718pt;}
.x73{left:330.306667pt;}
.x38{left:341.016961pt;}
.x88{left:347.746667pt;}
.x4a{left:352.816694pt;}
.x58{left:356.013918pt;}
.x10{left:357.506655pt;}
.x23{left:359.426655pt;}
.x79{left:376.706667pt;}
.x11{left:381.666655pt;}
.x4b{left:384.031285pt;}
.xd{left:387.586655pt;}
.x84{left:398.306667pt;}
.x24{left:400.386655pt;}
.x31{left:411.094039pt;}
.x43{left:412.097899pt;}
.x75{left:422.973333pt;}
.x89{left:449.053333pt;}
.x18{left:452.381333pt;}
.x5e{left:455.773333pt;}
.x17{left:457.661333pt;}
.x6a{left:459.933333pt;}
.x32{left:465.230810pt;}
.x7a{left:469.213333pt;}
.x40{left:471.254792pt;}
.x1e{left:498.341333pt;}
.x85{left:499.613333pt;}
.x16{left:501.381333pt;}
.xf{left:514.173322pt;}
.x76{left:515.453333pt;}
.x60{left:530.013333pt;}
.x65{left:530.973333pt;}
.x1a{left:532.741333pt;}
.x14{left:535.941333pt;}
.x19{left:542.661333pt;}
.x1b{left:545.701333pt;}
.x1c{left:550.661333pt;}
.x15{left:559.141333pt;}
.x7b{left:561.693333pt;}
.x1d{left:574.821333pt;}
.x4f{left:593.573322pt;}
.x5a{left:596.773322pt;}
.x86{left:600.933333pt;}
.x61{left:604.293333pt;}
.x77{left:607.973333pt;}
.x8a{left:651.493333pt;}
.x7c{left:654.373333pt;}
.x2{left:658.053322pt;}
.x3{left:671.973322pt;}
.x1f{left:679.653322pt;}
}




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