
    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_a6ac46ec3f7d4240118bb011.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_f9670dc98c727c36dfc76cde.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_8bba52282254e1652fe11587.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_bf93f4d08dde06c2daba8ced.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976074;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_c1c9f25c4b6e60813a3051aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_6ef18593f44611ac5d9b2024.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960449;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_5c4d61b71d70b3d3ba1f314d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e4aab376c8e3fb332c939d5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_4f49fc4577f130fd23fc3601.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_772497bcebd5ed2d8873a454.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_fd21de1d992991dded5d27c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.099609;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls43{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.340800px;}
.ls10{letter-spacing:-0.317400px;}
.ls28{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.279600px;}
.ls1d{letter-spacing:-0.271200px;}
.ls5a{letter-spacing:-0.267600px;}
.ls29{letter-spacing:-0.249000px;}
.ls59{letter-spacing:-0.188400px;}
.ls3b{letter-spacing:-0.177600px;}
.ls17{letter-spacing:-0.161400px;}
.ls56{letter-spacing:-0.154800px;}
.ls34{letter-spacing:-0.138000px;}
.ls52{letter-spacing:-0.135600px;}
.lsa{letter-spacing:-0.123000px;}
.ls23{letter-spacing:-0.098400px;}
.ls57{letter-spacing:-0.083400px;}
.ls11{letter-spacing:-0.081600px;}
.ls49{letter-spacing:-0.067800px;}
.ls46{letter-spacing:-0.061800px;}
.ls3a{letter-spacing:-0.056160px;}
.ls2e{letter-spacing:-0.052560px;}
.ls3d{letter-spacing:-0.047520px;}
.ls45{letter-spacing:-0.046080px;}
.ls55{letter-spacing:-0.036720px;}
.ls5c{letter-spacing:-0.020880px;}
.ls5b{letter-spacing:-0.020160px;}
.ls41{letter-spacing:-0.015120px;}
.ls12{letter-spacing:-0.007920px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.015840px;}
.ls9{letter-spacing:0.027360px;}
.ls4c{letter-spacing:0.036000px;}
.ls53{letter-spacing:0.038160px;}
.ls51{letter-spacing:0.050400px;}
.ls54{letter-spacing:0.056160px;}
.ls2{letter-spacing:0.066240px;}
.ls24{letter-spacing:0.069000px;}
.ls58{letter-spacing:0.070800px;}
.ls39{letter-spacing:0.081600px;}
.ls4{letter-spacing:0.119520px;}
.ls21{letter-spacing:0.144000px;}
.ls4d{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.152400px;}
.ls42{letter-spacing:0.158400px;}
.ls0{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.168600px;}
.lse{letter-spacing:0.185760px;}
.ls33{letter-spacing:0.186000px;}
.ls5{letter-spacing:0.189600px;}
.ls1{letter-spacing:0.198000px;}
.ls3c{letter-spacing:0.206400px;}
.ls3{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.260400px;}
.ls4f{letter-spacing:0.269760px;}
.ls16{letter-spacing:0.279360px;}
.ls15{letter-spacing:0.279600px;}
.ls27{letter-spacing:0.317400px;}
.ls4a{letter-spacing:0.317520px;}
.ls35{letter-spacing:0.331800px;}
.ls14{letter-spacing:0.342000px;}
.lsc{letter-spacing:0.344400px;}
.ls37{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.364800px;}
.ls30{letter-spacing:0.365040px;}
.ls40{letter-spacing:0.365760px;}
.ls47{letter-spacing:0.448800px;}
.ls48{letter-spacing:0.582000px;}
.ls3e{letter-spacing:0.624000px;}
.ls2d{letter-spacing:0.654000px;}
.ls2b{letter-spacing:0.672000px;}
.ls2c{letter-spacing:0.714000px;}
.ls38{letter-spacing:0.804000px;}
.ls1e{letter-spacing:0.834960px;}
.ls44{letter-spacing:0.912000px;}
.ls36{letter-spacing:3.065760px;}
.ls50{letter-spacing:3.312000px;}
.ls20{letter-spacing:12.186720px;}
.ls1f{letter-spacing:44.562720px;}
.ls4b{letter-spacing:49.961280px;}
.ls1b{letter-spacing:50.549760px;}
.ls22{letter-spacing:53.922720px;}
.ls32{letter-spacing:55.362720px;}
.ls25{letter-spacing:57.941280px;}
.ls4e{letter-spacing:60.564000px;}
.ls3f{letter-spacing:63.282720px;}
.ls26{letter-spacing:90.120000px;}
.ls1a{letter-spacing:94.469760px;}
.ls1c{letter-spacing:113.909760px;}
.lsf{letter-spacing:847.542720px;}
.ls2f{letter-spacing:1879.145760px;}
.lsd{letter-spacing:1879.325760px;}
.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;}
}
.ws1b{word-spacing:-23.250240px;}
.wse{word-spacing:-21.187920px;}
.wsf{word-spacing:-20.437920px;}
.ws20{word-spacing:-20.016000px;}
.ws1c{word-spacing:-19.872000px;}
.ws1d{word-spacing:-19.584000px;}
.ws34{word-spacing:-19.008000px;}
.ws32{word-spacing:-18.149760px;}
.ws33{word-spacing:-18.014160px;}
.ws11{word-spacing:-17.260080px;}
.ws25{word-spacing:-17.178240px;}
.ws13{word-spacing:-17.149080px;}
.ws22{word-spacing:-17.028240px;}
.ws12{word-spacing:-16.980480px;}
.ws10{word-spacing:-16.819080px;}
.ws8{word-spacing:-16.718640px;}
.ws15{word-spacing:-16.700880px;}
.ws21{word-spacing:-16.691640px;}
.ws7{word-spacing:-16.643760px;}
.ws23{word-spacing:-16.634640px;}
.ws9{word-spacing:-16.563840px;}
.ws5{word-spacing:-16.521120px;}
.ws14{word-spacing:-16.498080px;}
.ws4{word-spacing:-16.493760px;}
.ws26{word-spacing:-16.455840px;}
.ws1f{word-spacing:-16.390080px;}
.ws3{word-spacing:-16.374240px;}
.ws6{word-spacing:-16.370760px;}
.ws17{word-spacing:-16.366320px;}
.ws2a{word-spacing:-16.359120px;}
.ws29{word-spacing:-16.326720px;}
.ws27{word-spacing:-16.318080px;}
.ws2e{word-spacing:-16.312440px;}
.ws18{word-spacing:-16.275840px;}
.ws24{word-spacing:-16.236240px;}
.ws1e{word-spacing:-16.125240px;}
.ws16{word-spacing:-16.103040px;}
.ws2b{word-spacing:-15.128640px;}
.ws1a{word-spacing:-15.039240px;}
.ws19{word-spacing:-14.970240px;}
.ws2d{word-spacing:-14.924160px;}
.ws30{word-spacing:-14.796000px;}
.ws2c{word-spacing:-14.034240px;}
.ws28{word-spacing:-13.424160px;}
.ws3c{word-spacing:-13.364640px;}
.ws35{word-spacing:-13.352400px;}
.ws3e{word-spacing:-13.314240px;}
.ws3f{word-spacing:-13.294080px;}
.ws3a{word-spacing:-13.288560px;}
.ws36{word-spacing:-13.273920px;}
.wsc{word-spacing:-13.217760px;}
.ws40{word-spacing:-13.196880px;}
.ws37{word-spacing:-13.181040px;}
.wsd{word-spacing:-13.136160px;}
.ws39{word-spacing:-13.134360px;}
.ws38{word-spacing:-13.062960px;}
.ws3d{word-spacing:-13.046640px;}
.ws3b{word-spacing:-13.029360px;}
.wsb{word-spacing:-12.900360px;}
.ws0{word-spacing:-12.876960px;}
.ws31{word-spacing:-12.204000px;}
.ws1{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.066240px;}
.ws2{word-spacing:-0.054000px;}
.wsa{word-spacing:0.000000px;}
._1e{margin-left:-13.794240px;}
._20{margin-left:-7.314240px;}
._1d{margin-left:-5.819040px;}
._1f{margin-left:-4.396320px;}
._2d{margin-left:-2.689200px;}
._0{margin-left:-1.250400px;}
._1{width:1.658400px;}
._11{width:2.669520px;}
._4{width:4.489200px;}
._3{width:5.497680px;}
._5{width:7.470000px;}
._22{width:8.784720px;}
._23{width:10.338000px;}
._6{width:12.131280px;}
._2f{width:13.206960px;}
._2e{width:15.034800px;}
._29{width:16.046880px;}
._38{width:17.473440px;}
._31{width:18.525600px;}
._2a{width:20.273520px;}
._2b{width:21.334320px;}
._40{width:22.350240px;}
._3c{width:23.731920px;}
._25{width:25.572720px;}
._24{width:27.071280px;}
._37{width:28.146960px;}
._43{width:29.206560px;}
._44{width:32.461680px;}
._33{width:34.081920px;}
._26{width:35.239680px;}
._34{width:36.890640px;}
._2c{width:38.306160px;}
._42{width:40.135680px;}
._39{width:41.502240px;}
._27{width:43.086960px;}
._28{width:44.610720px;}
._49{width:46.696320px;}
._4c{width:47.805840px;}
._41{width:50.362560px;}
._3b{width:53.256960px;}
._46{width:55.668960px;}
._45{width:56.778480px;}
._4a{width:58.221840px;}
._35{width:59.461200px;}
._4d{width:63.290880px;}
._4f{width:66.474720px;}
._3a{width:67.827600px;}
._48{width:74.627280px;}
._3e{width:78.584400px;}
._36{width:84.201840px;}
._51{width:88.854480px;}
._3d{width:95.257440px;}
._52{width:97.348320px;}
._3f{width:106.970400px;}
._4e{width:125.622720px;}
._30{width:135.900240px;}
._32{width:138.084240px;}
._2{width:161.820240px;}
._7{width:196.001760px;}
._50{width:200.437200px;}
._4b{width:223.110000px;}
._47{width:489.443040px;}
._21{width:847.781760px;}
._12{width:1073.886240px;}
._10{width:1125.624960px;}
._d{width:1163.282400px;}
._13{width:1278.192240px;}
._15{width:1408.263360px;}
._1b{width:1417.061520px;}
._e{width:1434.569280px;}
._16{width:1627.224000px;}
._1c{width:1663.989840px;}
._8{width:1776.999840px;}
._c{width:1866.151200px;}
._a{width:1879.138560px;}
._b{width:1896.927600px;}
._1a{width:1898.293920px;}
._f{width:1907.016960px;}
._18{width:1910.984640px;}
._14{width:2134.388880px;}
._9{width:2166.342960px;}
._17{width:2177.439600px;}
._19{width:2178.993360px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(103,141,9);}
.fc3{color:rgb(255,192,0);}
.fc2{color:rgb(0,113,123);}
.fc7{color:rgb(255,255,255);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(139,189,13);}
.fsa{font-size:2.880000px;}
.fs5{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y27e{bottom:3.054000px;}
.y1a{bottom:3.060000px;}
.y254{bottom:3.096000px;}
.y41{bottom:3.240000px;}
.ye{bottom:3.780000px;}
.y11e{bottom:3.810000px;}
.y11{bottom:3.825000px;}
.y29{bottom:3.960000px;}
.y19{bottom:4.140000px;}
.y3d{bottom:4.320000px;}
.y25{bottom:4.500000px;}
.y1d1{bottom:4.545000px;}
.y21{bottom:4.680000px;}
.y2b{bottom:5.220000px;}
.y1b{bottom:7.920000px;}
.y52{bottom:8.280000px;}
.y59{bottom:8.460000px;}
.y26{bottom:8.640000px;}
.y1f{bottom:8.820000px;}
.y50{bottom:9.000000px;}
.y23{bottom:9.360000px;}
.y1d{bottom:9.540000px;}
.y2ad{bottom:11.880000px;}
.y2aa{bottom:12.054000px;}
.y297{bottom:12.060000px;}
.y29c{bottom:12.090000px;}
.y2a3{bottom:12.105000px;}
.y1b1{bottom:12.645000px;}
.y1ac{bottom:12.780000px;}
.y1e{bottom:13.680000px;}
.y243{bottom:15.120000px;}
.y252{bottom:15.150000px;}
.y1ab{bottom:15.660000px;}
.y1ad{bottom:15.840000px;}
.y138{bottom:17.280000px;}
.y141{bottom:18.000000px;}
.y57{bottom:18.180000px;}
.y13e{bottom:18.360000px;}
.y1b2{bottom:20.205000px;}
.y1a9{bottom:21.780000px;}
.y241{bottom:21.825000px;}
.y24{bottom:22.500000px;}
.y20{bottom:22.680000px;}
.y1d4{bottom:23.580000px;}
.y1c7{bottom:23.760000px;}
.y1d0{bottom:23.805000px;}
.y2c0{bottom:23.940000px;}
.y2c8{bottom:23.976000px;}
.y1e7{bottom:24.120000px;}
.y1e4{bottom:24.150000px;}
.y1ef{bottom:24.165000px;}
.yb8{bottom:24.480000px;}
.yb2{bottom:24.660000px;}
.y1e5{bottom:24.690000px;}
.yc4{bottom:24.705000px;}
.yba{bottom:24.840000px;}
.y46{bottom:27.000000px;}
.y253{bottom:27.030000px;}
.y2c7{bottom:27.036000px;}
.y48{bottom:27.180000px;}
.y291{bottom:27.210000px;}
.y24d{bottom:27.225000px;}
.y12d{bottom:30.780000px;}
.y11b{bottom:30.810000px;}
.y11c{bottom:31.530000px;}
.y133{bottom:31.860000px;}
.y1b0{bottom:33.705000px;}
.y2c3{bottom:36.000000px;}
.ya{bottom:37.800000px;}
.y248{bottom:39.060000px;}
.y28c{bottom:39.105000px;}
.y129{bottom:44.634000px;}
.ybf{bottom:44.820000px;}
.ybc{bottom:44.850000px;}
.y13d{bottom:45.390000px;}
.y3{bottom:45.540000px;}
.y23e{bottom:45.765000px;}
.y240{bottom:45.945000px;}
.y24a{bottom:51.120000px;}
.y292{bottom:51.150000px;}
.y26e{bottom:51.165000px;}
.y110{bottom:55.980000px;}
.y12c{bottom:57.774000px;}
.y11d{bottom:57.810000px;}
.y12e{bottom:58.494000px;}
.y132{bottom:58.860000px;}
.y295{bottom:58.905000px;}
.y23b{bottom:60.660000px;}
.y30{bottom:60.840000px;}
.y26c{bottom:63.225000px;}
.y2{bottom:63.540000px;}
.y9{bottom:64.800000px;}
.y23f{bottom:69.885000px;}
.y128{bottom:71.634000px;}
.y13c{bottom:72.390000px;}
.y249{bottom:75.060000px;}
.y26d{bottom:75.105000px;}
.y259{bottom:75.285000px;}
.y12b{bottom:84.774000px;}
.y257{bottom:87.165000px;}
.y8{bottom:91.800000px;}
.y127{bottom:98.634000px;}
.y268{bottom:99.045000px;}
.y258{bottom:99.225000px;}
.y13b{bottom:99.390000px;}
.y27{bottom:109.080000px;}
.yad{bottom:109.260000px;}
.ycd{bottom:110.340000px;}
.y255{bottom:110.700000px;}
.y262{bottom:111.105000px;}
.y12a{bottom:111.774000px;}
.y126{bottom:113.616000px;}
.yac{bottom:113.760000px;}
.y1bc{bottom:114.480000px;}
.y209{bottom:115.560000px;}
.y2c6{bottom:118.260000px;}
.y7{bottom:118.800000px;}
.y290{bottom:122.940000px;}
.y1f9{bottom:123.120000px;}
.y25c{bottom:123.165000px;}
.y7f{bottom:124.200000px;}
.y2ab{bottom:124.380000px;}
.yab{bottom:127.260000px;}
.y1bb{bottom:127.620000px;}
.yaa{bottom:131.760000px;}
.y1d7{bottom:133.380000px;}
.y261{bottom:135.045000px;}
.y251{bottom:135.540000px;}
.y1a1{bottom:135.720000px;}
.y208{bottom:142.560000px;}
.ya9{bottom:145.260000px;}
.y267{bottom:147.105000px;}
.y25b{bottom:147.285000px;}
.y22{bottom:147.420000px;}
.y27d{bottom:147.816000px;}
.y2a9{bottom:149.256000px;}
.yeb{bottom:150.840000px;}
.ycc{bottom:153.000000px;}
.y26a{bottom:154.470000px;}
.y6{bottom:155.520000px;}
.y1f8{bottom:161.100000px;}
.y1a0{bottom:162.720000px;}
.y164{bottom:163.260000px;}
.y2c5{bottom:167.070000px;}
.y163{bottom:167.760000px;}
.y207{bottom:169.560000px;}
.y266{bottom:171.045000px;}
.y25a{bottom:171.225000px;}
.y27c{bottom:172.470000px;}
.y2a8{bottom:173.910000px;}
.y7e{bottom:174.420000px;}
.ya8{bottom:174.600000px;}
.ycb{bottom:174.780000px;}
.y238{bottom:176.760000px;}
.yea{bottom:177.840000px;}
.y269{bottom:179.310000px;}
.y162{bottom:181.260000px;}
.y5{bottom:182.565000px;}
.y250{bottom:184.170000px;}
.y1c{bottom:185.580000px;}
.y182{bottom:185.760000px;}
.y1f7{bottom:188.820000px;}
.y2c4{bottom:191.730000px;}
.y265{bottom:195.165000px;}
.y1d6{bottom:195.480000px;}
.y28f{bottom:195.690000px;}
.y27b{bottom:197.310000px;}
.y2a7{bottom:198.750000px;}
.y181{bottom:199.260000px;}
.y237{bottom:200.700000px;}
.ya7{bottom:201.600000px;}
.y1ba{bottom:203.400000px;}
.ye9{bottom:204.840000px;}
.y7d{bottom:206.460000px;}
.y19f{bottom:207.720000px;}
.y206{bottom:214.590000px;}
.y1f6{bottom:215.130000px;}
.yca{bottom:215.850000px;}
.y1d5{bottom:216.390000px;}
.y180{bottom:217.290000px;}
.y264{bottom:219.105000px;}
.y28e{bottom:220.530000px;}
.y27a{bottom:221.970000px;}
.y2a6{bottom:223.410000px;}
.y18{bottom:223.950000px;}
.y260{bottom:228.090000px;}
.ya6{bottom:228.630000px;}
.y1b9{bottom:230.430000px;}
.ye8{bottom:231.870000px;}
.y24f{bottom:232.950000px;}
.y19e{bottom:234.750000px;}
.y17f{bottom:235.290000px;}
.y17e{bottom:239.790000px;}
.y2c2{bottom:240.510000px;}
.y205{bottom:241.590000px;}
.y1f5{bottom:242.130000px;}
.y236{bottom:242.850000px;}
.y263{bottom:243.045000px;}
.y28d{bottom:245.190000px;}
.y2a5{bottom:248.250000px;}
.y125{bottom:249.330000px;}
.y17d{bottom:253.290000px;}
.yc9{bottom:256.890000px;}
.y1b8{bottom:257.430000px;}
.y7c{bottom:257.610000px;}
.y24e{bottom:257.790000px;}
.y10d{bottom:261.750000px;}
.y235{bottom:266.790000px;}
.y204{bottom:268.590000px;}
.y1f4{bottom:269.130000px;}
.y28b{bottom:270.030000px;}
.y279{bottom:270.750000px;}
.y17c{bottom:271.290000px;}
.y2a4{bottom:272.910000px;}
.ya4{bottom:273.630000px;}
.y17{bottom:276.510000px;}
.ye7{bottom:276.870000px;}
.y124{bottom:277.095000px;}
.ya5{bottom:278.850000px;}
.y24c{bottom:282.450000px;}
.y1b7{bottom:284.430000px;}
.y161{bottom:284.610000px;}
.y10c{bottom:288.750000px;}
.y17b{bottom:289.290000px;}
.y17a{bottom:293.790000px;}
.y55{bottom:295.230000px;}
.y203{bottom:295.590000px;}
.y1f3{bottom:296.130000px;}
.ya3{bottom:297.750000px;}
.yc8{bottom:297.930000px;}
.ye6{bottom:303.870000px;}
.y123{bottom:304.815000px;}
.y179{bottom:307.290000px;}
.y234{bottom:307.830000px;}
.y7b{bottom:308.550000px;}
.y16{bottom:308.730000px;}
.y1b6{bottom:311.430000px;}
.y160{bottom:311.610000px;}
.y2c1{bottom:313.275000px;}
.y10b{bottom:315.750000px;}
.y278{bottom:319.575000px;}
.y54{bottom:321.150000px;}
.ya2{bottom:321.690000px;}
.y2a2{bottom:322.455000px;}
.y202{bottom:322.590000px;}
.y1f2{bottom:323.130000px;}
.ye5{bottom:330.870000px;}
.y24b{bottom:331.275000px;}
.y122{bottom:332.535000px;}
.y233{bottom:332.850000px;}
.y15{bottom:335.730000px;}
.y1b5{bottom:338.430000px;}
.y15f{bottom:338.610000px;}
.yc7{bottom:338.970000px;}
.y144{bottom:342.435000px;}
.y53{bottom:342.750000px;}
.y277{bottom:344.235000px;}
.ya1{bottom:345.630000px;}
.y2a1{bottom:347.295000px;}
.y201{bottom:349.590000px;}
.y232{bottom:356.790000px;}
.y7a{bottom:359.490000px;}
.y1d3{bottom:359.850000px;}
.y121{bottom:360.435000px;}
.yc6{bottom:360.750000px;}
.y2bf{bottom:362.055000px;}
.y14{bottom:362.730000px;}
.y1b4{bottom:365.430000px;}
.y15e{bottom:365.610000px;}
.y28a{bottom:366.735000px;}
.y276{bottom:369.075000px;}
.ya0{bottom:369.750000px;}
.y1f1{bottom:370.110000px;}
.y143{bottom:370.155000px;}
.y2a0{bottom:371.955000px;}
.y51{bottom:373.350000px;}
.ye4{bottom:375.870000px;}
.y247{bottom:380.055000px;}
.y1d2{bottom:380.730000px;}
.yc5{bottom:382.530000px;}
.y19d{bottom:387.750000px;}
.y120{bottom:388.155000px;}
.y13{bottom:389.730000px;}
.y289{bottom:391.575000px;}
.y15d{bottom:392.610000px;}
.y9f{bottom:393.690000px;}
.y275{bottom:393.735000px;}
.y1f0{bottom:394.050000px;}
.y178{bottom:394.590000px;}
.y10a{bottom:396.750000px;}
.y29f{bottom:396.795000px;}
.y142{bottom:397.875000px;}
.ye3{bottom:402.870000px;}
.y4f{bottom:403.770000px;}
.y231{bottom:404.850000px;}
.y4b{bottom:405.210000px;}
.y1b3{bottom:410.430000px;}
.y79{bottom:410.610000px;}
.y2be{bottom:410.835000px;}
.y19c{bottom:414.750000px;}
.y11f{bottom:415.875000px;}
.y288{bottom:416.235000px;}
.y12{bottom:416.730000px;}
.y9e{bottom:417.630000px;}
.y274{bottom:418.575000px;}
.y15c{bottom:419.610000px;}
.y29e{bottom:421.455000px;}
.y177{bottom:421.590000px;}
.yc3{bottom:423.570000px;}
.y109{bottom:423.750000px;}
.y4a{bottom:424.110000px;}
.y13a{bottom:425.595000px;}
.ye2{bottom:429.870000px;}
.y1af{bottom:434.370000px;}
.y1ee{bottom:434.730000px;}
.y2bd{bottom:435.495000px;}
.y287{bottom:441.075000px;}
.y9d{bottom:441.570000px;}
.y19b{bottom:441.750000px;}
.y1cf{bottom:441.930000px;}
.y11a{bottom:443.595000px;}
.y10{bottom:443.730000px;}
.y29d{bottom:446.295000px;}
.y15b{bottom:446.655000px;}
.y230{bottom:446.835000px;}
.y49{bottom:447.375000px;}
.y176{bottom:448.635000px;}
.y4e{bottom:449.895000px;}
.y108{bottom:450.795000px;}
.ye1{bottom:456.915000px;}
.y78{bottom:461.595000px;}
.yc2{bottom:466.275000px;}
.y9c{bottom:468.615000px;}
.y19a{bottom:468.795000px;}
.y22f{bottom:470.055000px;}
.yf{bottom:470.775000px;}
.y29b{bottom:470.955000px;}
.y47{bottom:471.315000px;}
.y4d{bottom:472.935000px;}
.y15a{bottom:473.655000px;}
.y175{bottom:475.635000px;}
.y1ed{bottom:475.815000px;}
.y246{bottom:476.745000px;}
.y107{bottom:477.795000px;}
.y140{bottom:480.345000px;}
.y1ce{bottom:482.655000px;}
.ye0{bottom:483.915000px;}
.y2bc{bottom:484.305000px;}
.y1ae{bottom:486.075000px;}
.y286{bottom:489.885000px;}
.y273{bottom:491.325000px;}
.y2cc{bottom:492.045000px;}
.y25f{bottom:492.765000px;}
.y9b{bottom:495.615000px;}
.y199{bottom:495.795000px;}
.y29a{bottom:495.825000px;}
.y1ec{bottom:496.695000px;}
.yd{bottom:497.775000px;}
.y159{bottom:500.655000px;}
.y173{bottom:502.635000px;}
.y106{bottom:504.795000px;}
.yc1{bottom:507.315000px;}
.y174{bottom:507.855000px;}
.y22e{bottom:508.035000px;}
.y13f{bottom:508.065000px;}
.y67{bottom:508.215000px;}
.y2bb{bottom:509.145000px;}
.ydf{bottom:511.635000px;}
.y77{bottom:512.715000px;}
.y285{bottom:514.545000px;}
.y272{bottom:516.165000px;}
.y45{bottom:519.375000px;}
.y299{bottom:520.485000px;}
.y9a{bottom:522.615000px;}
.y198{bottom:522.795000px;}
.y2d{bottom:524.775000px;}
.y119{bottom:525.345000px;}
.y245{bottom:525.525000px;}
.y22d{bottom:526.935000px;}
.y158{bottom:527.655000px;}
.yc0{bottom:529.095000px;}
.y172{bottom:529.635000px;}
.y105{bottom:531.795000px;}
.y2ba{bottom:533.805000px;}
.y139{bottom:535.965000px;}
.y2cb{bottom:537.045000px;}
.y1eb{bottom:537.375000px;}
.y66{bottom:538.815000px;}
.y271{bottom:540.825000px;}
.y25e{bottom:541.545000px;}
.y1cd{bottom:543.855000px;}
.y76{bottom:544.215000px;}
.y298{bottom:545.325000px;}
.y200{bottom:547.635000px;}
.y22c{bottom:549.435000px;}
.y99{bottom:549.615000px;}
.y197{bottom:549.795000px;}
.y244{bottom:550.365000px;}
.ybe{bottom:550.875000px;}
.y118{bottom:553.065000px;}
.y2c{bottom:554.655000px;}
.y171{bottom:556.635000px;}
.y1ea{bottom:558.255000px;}
.y2b9{bottom:558.645000px;}
.y104{bottom:558.795000px;}
.y18a{bottom:559.695000px;}
.y2ca{bottom:561.165000px;}
.yde{bottom:561.855000px;}
.y284{bottom:563.325000px;}
.y137{bottom:563.685000px;}
.y25d{bottom:566.385000px;}
.y44{bottom:567.255000px;}
.y65{bottom:569.235000px;}
.y296{bottom:569.985000px;}
.y1ff{bottom:574.635000px;}
.y242{bottom:575.025000px;}
.y75{bottom:575.715000px;}
.y98{bottom:576.615000px;}
.y196{bottom:576.795000px;}
.y2a{bottom:578.775000px;}
.y1e9{bottom:579.135000px;}
.y117{bottom:580.965000px;}
.y157{bottom:581.655000px;}
.y2b8{bottom:583.305000px;}
.y170{bottom:583.635000px;}
.y1cc{bottom:584.535000px;}
.y103{bottom:585.795000px;}
.y2c9{bottom:585.825000px;}
.y22b{bottom:586.155000px;}
.y189{bottom:586.695000px;}
.ydd{bottom:588.855000px;}
.y270{bottom:589.605000px;}
.y256{bottom:591.045000px;}
.y43{bottom:591.375000px;}
.y294{bottom:594.825000px;}
.y1aa{bottom:596.415000px;}
.y64{bottom:599.835000px;}
.y1e8{bottom:600.015000px;}
.y1fe{bottom:601.635000px;}
.y195{bottom:603.795000px;}
.y74{bottom:607.215000px;}
.y2b7{bottom:608.145000px;}
.y28{bottom:608.655000px;}
.y116{bottom:608.685000px;}
.y22a{bottom:609.735000px;}
.y16f{bottom:610.635000px;}
.y2b3{bottom:610.665000px;}
.ybd{bottom:612.075000px;}
.y283{bottom:612.105000px;}
.y102{bottom:613.515000px;}
.y26f{bottom:614.265000px;}
.ydc{bottom:615.855000px;}
.y136{bottom:618.405000px;}
.y42{bottom:620.535000px;}
.y1e6{bottom:620.895000px;}
.y97{bottom:621.795000px;}
.y23d{bottom:623.805000px;}
.y1cb{bottom:625.575000px;}
.y212{bottom:627.735000px;}
.y1fd{bottom:628.635000px;}
.y63{bottom:630.255000px;}
.y194{bottom:630.795000px;}
.y188{bottom:631.695000px;}
.y229{bottom:632.415000px;}
.y2b6{bottom:632.805000px;}
.y1a8{bottom:633.135000px;}
.y2b2{bottom:635.325000px;}
.y156{bottom:635.655000px;}
.y115{bottom:636.450000px;}
.y282{bottom:636.765000px;}
.y16e{bottom:637.635000px;}
.y73{bottom:638.535000px;}
.y26b{bottom:639.105000px;}
.ydb{bottom:642.855000px;}
.y40{bottom:643.755000px;}
.y96{bottom:645.735000px;}
.y131{bottom:646.170000px;}
.y20b{bottom:646.635000px;}
.y228{bottom:650.235000px;}
.ybb{bottom:654.735000px;}
.y1fc{bottom:655.635000px;}
.y2b5{bottom:657.690000px;}
.y193{bottom:657.795000px;}
.y187{bottom:658.695000px;}
.yc{bottom:659.775000px;}
.y2b1{bottom:660.210000px;}
.y62{bottom:660.855000px;}
.y281{bottom:661.650000px;}
.y1e3{bottom:661.935000px;}
.y155{bottom:662.655000px;}
.y101{bottom:663.735000px;}
.y114{bottom:664.170000px;}
.y16c{bottom:664.635000px;}
.y1ca{bottom:666.615000px;}
.y3f{bottom:667.875000px;}
.y227{bottom:669.135000px;}
.y95{bottom:669.675000px;}
.y16d{bottom:669.855000px;}
.yda{bottom:670.575000px;}
.y20a{bottom:673.635000px;}
.y135{bottom:673.890000px;}
.y211{bottom:681.765000px;}
.y2b4{bottom:682.350000px;}
.y2b0{bottom:684.870000px;}
.y186{bottom:685.725000px;}
.y1c9{bottom:687.525000px;}
.y72{bottom:689.685000px;}
.y100{bottom:690.765000px;}
.y61{bottom:691.485000px;}
.y16a{bottom:691.665000px;}
.y3e{bottom:691.845000px;}
.y226{bottom:692.745000px;}
.y94{bottom:693.825000px;}
.y154{bottom:694.725000px;}
.y16b{bottom:696.885000px;}
.y1a7{bottom:697.605000px;}
.y1fb{bottom:700.665000px;}
.y134{bottom:701.610000px;}
.yb{bottom:702.285000px;}
.y192{bottom:702.825000px;}
.y1e2{bottom:703.005000px;}
.y113{bottom:704.670000px;}
.y2af{bottom:709.710000px;}
.y280{bottom:710.430000px;}
.y214{bottom:714.345000px;}
.y225{bottom:715.425000px;}
.y3c{bottom:715.785000px;}
.yb9{bottom:715.965000px;}
.y93{bottom:717.765000px;}
.y169{bottom:718.665000px;}
.yd9{bottom:720.825000px;}
.y71{bottom:721.185000px;}
.y153{bottom:721.725000px;}
.y60{bottom:721.905000px;}
.y1e1{bottom:723.885000px;}
.y210{bottom:726.765000px;}
.y1fa{bottom:727.665000px;}
.y1c8{bottom:728.565000px;}
.y130{bottom:729.510000px;}
.y191{bottom:729.825000px;}
.y185{bottom:730.725000px;}
.y224{bottom:733.245000px;}
.y2ae{bottom:734.370000px;}
.y112{bottom:734.730000px;}
.y27f{bottom:735.090000px;}
.y1a6{bottom:736.665000px;}
.y213{bottom:741.345000px;}
.y92{bottom:741.705000px;}
.yff{bottom:744.765000px;}
.y3b{bottom:745.125000px;}
.y168{bottom:745.665000px;}
.yd8{bottom:747.825000px;}
.y23c{bottom:748.230000px;}
.y152{bottom:748.725000px;}
.y1c6{bottom:749.445000px;}
.y223{bottom:751.965000px;}
.y5f{bottom:752.505000px;}
.y70{bottom:752.685000px;}
.y20f{bottom:753.765000px;}
.yf7{bottom:754.665000px;}
.y190{bottom:756.825000px;}
.y12f{bottom:757.230000px;}
.y4{bottom:757.725000px;}
.yb7{bottom:758.805000px;}
.y2ac{bottom:759.210000px;}
.y111{bottom:761.730000px;}
.y293{bottom:763.350000px;}
.y21a{bottom:765.285000px;}
.y91{bottom:765.825000px;}
.yfe{bottom:771.765000px;}
.y3a{bottom:772.125000px;}
.y167{bottom:772.665000px;}
.yd7{bottom:774.825000px;}
.y151{bottom:775.725000px;}
.y20e{bottom:780.765000px;}
.yf6{bottom:781.665000px;}
.y5e{bottom:782.925000px;}
.y18f{bottom:783.825000px;}
.y6f{bottom:784.185000px;}
.y184{bottom:784.725000px;}
.y23a{bottom:789.630000px;}
.y90{bottom:789.765000px;}
.y1c5{bottom:790.485000px;}
.y1e0{bottom:791.205000px;}
.y10f{bottom:795.030000px;}
.y219{bottom:797.685000px;}
.yfd{bottom:798.765000px;}
.y39{bottom:799.125000px;}
.y222{bottom:799.485000px;}
.yb6{bottom:799.665000px;}
.yd6{bottom:801.825000px;}
.y150{bottom:802.725000px;}
.y20d{bottom:807.765000px;}
.yf5{bottom:808.665000px;}
.y18e{bottom:810.825000px;}
.y1c4{bottom:811.365000px;}
.y183{bottom:811.725000px;}
.y5d{bottom:813.525000px;}
.y8f{bottom:813.705000px;}
.y239{bottom:813.780000px;}
.y10e{bottom:819.000000px;}
.yfc{bottom:825.765000px;}
.y38{bottom:826.125000px;}
.y166{bottom:826.665000px;}
.yd5{bottom:828.825000px;}
.y14f{bottom:829.725000px;}
.y218{bottom:830.085000px;}
.y1df{bottom:830.265000px;}
.y1c3{bottom:832.245000px;}
.y20c{bottom:834.765000px;}
.y6e{bottom:835.305000px;}
.yf4{bottom:835.665000px;}
.y8e{bottom:837.825000px;}
.y221{bottom:839.085000px;}
.yb5{bottom:840.705000px;}
.y1a5{bottom:840.885000px;}
.y5c{bottom:843.945000px;}
.yfb{bottom:852.765000px;}
.y37{bottom:853.125000px;}
.y165{bottom:853.665000px;}
.yd4{bottom:855.825000px;}
.y14e{bottom:856.725000px;}
.y1de{bottom:857.265000px;}
.y8d{bottom:861.765000px;}
.yb4{bottom:862.485000px;}
.y1a4{bottom:862.665000px;}
.y18d{bottom:864.825000px;}
.y6d{bottom:866.805000px;}
.y220{bottom:871.305000px;}
.y5b{bottom:874.545000px;}
.y1c2{bottom:878.685000px;}
.y36{bottom:879.405000px;}
.yfa{bottom:879.765000px;}
.yf3{bottom:880.665000px;}
.yd3{bottom:882.825000px;}
.y14d{bottom:883.725000px;}
.y1dd{bottom:884.265000px;}
.y8c{bottom:888.765000px;}
.y1a3{bottom:889.665000px;}
.y18c{bottom:891.825000px;}
.y217{bottom:894.885000px;}
.y6c{bottom:898.305000px;}
.y35{bottom:903.525000px;}
.y5a{bottom:905.145000px;}
.yf9{bottom:906.765000px;}
.y21f{bottom:907.125000px;}
.yf2{bottom:907.665000px;}
.y1dc{bottom:908.205000px;}
.yd2{bottom:909.825000px;}
.y14c{bottom:910.725000px;}
.y86{bottom:911.625000px;}
.y8b{bottom:915.765000px;}
.y1a2{bottom:916.665000px;}
.y1c1{bottom:917.790000px;}
.y18b{bottom:918.870000px;}
.yb3{bottom:925.350000px;}
.y216{bottom:927.330000px;}
.y34{bottom:927.510000px;}
.y6b{bottom:929.670000px;}
.y21e{bottom:930.750000px;}
.yf8{bottom:933.810000px;}
.yf1{bottom:934.710000px;}
.y58{bottom:935.610000px;}
.y85{bottom:935.790000px;}
.yd1{bottom:936.870000px;}
.y14a{bottom:937.770000px;}
.y14b{bottom:942.990000px;}
.y1c0{bottom:944.790000px;}
.y1db{bottom:948.930000px;}
.y33{bottom:952.170000px;}
.y21d{bottom:954.510000px;}
.y84{bottom:959.730000px;}
.y8a{bottom:960.810000px;}
.yf0{bottom:961.710000px;}
.yd0{bottom:963.870000px;}
.y149{bottom:964.770000px;}
.y56{bottom:966.210000px;}
.yb1{bottom:966.390000px;}
.y1da{bottom:969.810000px;}
.y1bf{bottom:971.790000px;}
.y21c{bottom:978.090000px;}
.y6a{bottom:980.790000px;}
.y83{bottom:983.670000px;}
.y89{bottom:987.810000px;}
.yef{bottom:988.710000px;}
.ycf{bottom:990.870000px;}
.y148{bottom:991.770000px;}
.y215{bottom:992.130000px;}
.y1be{bottom:998.790000px;}
.y32{bottom:1002.570000px;}
.yb0{bottom:1007.430000px;}
.y82{bottom:1007.790000px;}
.y1d9{bottom:1010.850000px;}
.y88{bottom:1014.810000px;}
.yee{bottom:1015.710000px;}
.y21b{bottom:1017.870000px;}
.yce{bottom:1018.590000px;}
.y147{bottom:1018.770000px;}
.y1bd{bottom:1025.790000px;}
.y31{bottom:1027.230000px;}
.y69{bottom:1028.490000px;}
.yaf{bottom:1029.210000px;}
.y81{bottom:1031.730000px;}
.y4c{bottom:1033.890000px;}
.yed{bottom:1042.710000px;}
.y146{bottom:1045.770000px;}
.y1d8{bottom:1051.890000px;}
.yec{bottom:1069.710000px;}
.y87{bottom:1070.250000px;}
.y68{bottom:1071.330000px;}
.y145{bottom:1073.490000px;}
.yae{bottom:1075.650000px;}
.y80{bottom:1076.370000px;}
.y2f{bottom:1160.280000px;}
.y1{bottom:1174.140000px;}
.y2e{bottom:1184.400000px;}
.h9{height:4.404375px;}
.h22{height:5.484375px;}
.h47{height:19.980000px;}
.h46{height:20.016000px;}
.h40{height:20.160000px;}
.h41{height:20.196000px;}
.h26{height:21.060000px;}
.h28{height:21.096000px;}
.h17{height:23.940000px;}
.h18{height:23.976000px;}
.h12{height:24.120000px;}
.h58{height:24.156000px;}
.h19{height:25.380000px;}
.h15{height:25.560000px;}
.h25{height:26.149922px;}
.ha{height:27.000000px;}
.hc{height:27.036000px;}
.h1e{height:29.700000px;}
.h3e{height:29.729531px;}
.h21{height:29.736000px;}
.h13{height:29.880000px;}
.h49{height:31.680000px;}
.h4a{height:31.716000px;}
.h24{height:33.621328px;}
.h3c{height:36.000000px;}
.h1f{height:36.886641px;}
.h10{height:38.160000px;}
.h11{height:38.340000px;}
.hf{height:38.376000px;}
.h45{height:39.780000px;}
.h42{height:39.960000px;}
.h44{height:39.996000px;}
.h29{height:40.140000px;}
.h48{height:40.176000px;}
.h27{height:40.320000px;}
.h2e{height:40.356000px;}
.h3{height:41.715352px;}
.h2{height:41.738906px;}
.h2a{height:41.940000px;}
.h2d{height:41.976000px;}
.h3b{height:45.000000px;}
.h14{height:45.695391px;}
.he{height:46.696289px;}
.hd{height:46.722656px;}
.h1a{height:47.880000px;}
.h53{height:47.916000px;}
.h1b{height:48.060000px;}
.h52{height:48.096000px;}
.h1d{height:50.650312px;}
.h3d{height:50.976000px;}
.hb{height:51.677227px;}
.h7{height:51.706406px;}
.h4c{height:53.709961px;}
.h37{height:54.000000px;}
.h39{height:54.036000px;}
.h4{height:56.320312px;}
.h4d{height:57.280781px;}
.h2c{height:60.300000px;}
.h43{height:60.480000px;}
.h2b{height:60.516000px;}
.h1c{height:61.423863px;}
.h3f{height:62.211094px;}
.h6{height:62.296875px;}
.h16{height:64.413984px;}
.h23{height:65.884219px;}
.h3a{height:67.824844px;}
.h4b{height:68.084282px;}
.h57{height:72.036000px;}
.h20{height:72.887344px;}
.h30{height:74.953125px;}
.h33{height:81.036000px;}
.h2f{height:87.695156px;}
.h50{height:91.476000px;}
.h8{height:93.445312px;}
.h51{height:95.976000px;}
.h36{height:110.340000px;}
.h35{height:135.000000px;}
.h59{height:135.576000px;}
.h38{height:137.376000px;}
.h56{height:144.036000px;}
.h34{height:162.750000px;}
.h54{height:192.090000px;}
.h5{height:214.050000px;}
.h55{height:263.955000px;}
.h4e{height:892.440000px;}
.h4f{height:892.500000px;}
.h31{height:892.980000px;}
.h32{height:893.250000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3a{width:30.960000px;}
.w38{width:31.140000px;}
.w30{width:31.176000px;}
.w39{width:31.320000px;}
.wa{width:35.640000px;}
.w40{width:36.540000px;}
.w7{width:38.160000px;}
.w3d{width:52.380000px;}
.w3c{width:52.560000px;}
.w3e{width:52.740000px;}
.w3f{width:54.576000px;}
.w18{width:54.720000px;}
.wb{width:59.040000px;}
.w1b{width:59.940000px;}
.w43{width:60.120000px;}
.w36{width:63.540000px;}
.w8{width:67.140000px;}
.w42{width:80.100000px;}
.w44{width:80.316000px;}
.w12{width:81.720000px;}
.w48{width:83.196000px;}
.w46{width:92.736000px;}
.w3b{width:95.040000px;}
.w47{width:99.360000px;}
.w14{width:104.976000px;}
.w24{width:136.836000px;}
.w2c{width:137.340000px;}
.w34{width:142.416000px;}
.w26{width:158.070000px;}
.w33{width:159.480000px;}
.w21{width:165.270000px;}
.w35{width:176.430000px;}
.w45{width:188.460000px;}
.w10{width:191.010000px;}
.w4{width:191.370000px;}
.w32{width:209.010000px;}
.w5{width:212.610000px;}
.w2a{width:219.810000px;}
.w9{width:224.355000px;}
.w15{width:233.130000px;}
.w31{width:258.870000px;}
.wc{width:266.115000px;}
.wf{width:274.575000px;}
.w6{width:275.115000px;}
.w11{width:276.015000px;}
.w22{width:286.230000px;}
.w1a{width:288.795000px;}
.wd{width:291.495000px;}
.w41{width:295.995000px;}
.w28{width:306.975000px;}
.w29{width:311.475000px;}
.w27{width:316.695000px;}
.w1c{width:329.655000px;}
.w19{width:334.875000px;}
.w2b{width:403.845000px;}
.we{width:403.995000px;}
.w16{width:445.245000px;}
.w37{width:477.825000px;}
.w20{width:488.415000px;}
.w13{width:491.685000px;}
.w25{width:520.305000px;}
.w23{width:541.545000px;}
.w2d{width:541.590000px;}
.w3{width:678.750000px;}
.w17{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.w1f{width:1262.879981px;}
.w1d{width:1262.880000px;}
.w1e{width:1263.000000px;}
.w2f{width:1263.059981px;}
.w2e{width:1263.060000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x2f{left:11.160000px;}
.x3b{left:12.960000px;}
.x10{left:16.020000px;}
.xc{left:19.980000px;}
.x40{left:22.500000px;}
.x4c{left:24.120000px;}
.x39{left:26.640000px;}
.x38{left:29.880000px;}
.x42{left:35.280000px;}
.x48{left:41.040000px;}
.x4d{left:42.120000px;}
.x3d{left:49.140000px;}
.x43{left:53.280000px;}
.x3{left:59.034000px;}
.x44{left:71.280000px;}
.x31{left:75.060000px;}
.x2{left:106.415987px;}
.x22{left:107.999981px;}
.x1f{left:110.555987px;}
.x32{left:112.535987px;}
.x18{left:133.235987px;}
.x35{left:138.276000px;}
.x17{left:142.595987px;}
.xd{left:144.576000px;}
.x9{left:148.895987px;}
.x1{left:158.609987px;}
.x19{left:159.869987px;}
.x7{left:160.959000px;}
.x6{left:164.559000px;}
.x21{left:167.070000px;}
.x14{left:188.850000px;}
.xe{left:211.710000px;}
.x2c{left:215.669973px;}
.x2d{left:220.889987px;}
.x29{left:238.169973px;}
.x5{left:240.339000px;}
.x2a{left:243.389987px;}
.x8{left:268.779000px;}
.x4{left:277.599000px;}
.xa{left:297.795000px;}
.x1e{left:322.454987px;}
.x16{left:340.275000px;}
.x34{left:381.675000px;}
.x36{left:397.155000px;}
.x4f{left:403.815000px;}
.x25{left:407.954973px;}
.x26{left:413.174987px;}
.xf{left:436.065000px;}
.x11{left:471.705000px;}
.x33{left:478.545000px;}
.x50{left:484.635000px;}
.x20{left:496.725000px;}
.xb{left:510.405000px;}
.x2b{left:514.724987px;}
.x12{left:530.745000px;}
.x51{left:545.475000px;}
.x3f{left:585.285000px;}
.x27{left:595.049973px;}
.x23{left:597.135000px;}
.x28{left:600.269987px;}
.x37{left:606.165000px;}
.x1a{left:609.449973px;}
.x1b{left:614.669987px;}
.x41{left:617.145000px;}
.x30{left:627.450000px;}
.x2e{left:648.690000px;}
.x15{left:680.550000px;}
.x1c{left:743.909973px;}
.x1d{left:749.129987px;}
.x24{left:762.405000px;}
.x3a{left:765.645000px;}
.x45{left:776.805000px;}
.x46{left:808.485000px;}
.x52{left:815.685000px;}
.x47{left:840.390000px;}
.x49{left:893.670000px;}
.x3c{left:908.070000px;}
.x53{left:909.150000px;}
.x4a{left:946.770000px;}
.x4b{left:1000.410000px;}
.x54{left:1009.230000px;}
.x4e{left:1055.880000px;}
.x3e{left:1084.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls43{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.302933pt;}
.ls10{letter-spacing:-0.282133pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.248533pt;}
.ls1d{letter-spacing:-0.241067pt;}
.ls5a{letter-spacing:-0.237867pt;}
.ls29{letter-spacing:-0.221333pt;}
.ls59{letter-spacing:-0.167467pt;}
.ls3b{letter-spacing:-0.157867pt;}
.ls17{letter-spacing:-0.143467pt;}
.ls56{letter-spacing:-0.137600pt;}
.ls34{letter-spacing:-0.122667pt;}
.ls52{letter-spacing:-0.120533pt;}
.lsa{letter-spacing:-0.109333pt;}
.ls23{letter-spacing:-0.087467pt;}
.ls57{letter-spacing:-0.074133pt;}
.ls11{letter-spacing:-0.072533pt;}
.ls49{letter-spacing:-0.060267pt;}
.ls46{letter-spacing:-0.054933pt;}
.ls3a{letter-spacing:-0.049920pt;}
.ls2e{letter-spacing:-0.046720pt;}
.ls3d{letter-spacing:-0.042240pt;}
.ls45{letter-spacing:-0.040960pt;}
.ls55{letter-spacing:-0.032640pt;}
.ls5c{letter-spacing:-0.018560pt;}
.ls5b{letter-spacing:-0.017920pt;}
.ls41{letter-spacing:-0.013440pt;}
.ls12{letter-spacing:-0.007040pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.014080pt;}
.ls9{letter-spacing:0.024320pt;}
.ls4c{letter-spacing:0.032000pt;}
.ls53{letter-spacing:0.033920pt;}
.ls51{letter-spacing:0.044800pt;}
.ls54{letter-spacing:0.049920pt;}
.ls2{letter-spacing:0.058880pt;}
.ls24{letter-spacing:0.061333pt;}
.ls58{letter-spacing:0.062933pt;}
.ls39{letter-spacing:0.072533pt;}
.ls4{letter-spacing:0.106240pt;}
.ls21{letter-spacing:0.128000pt;}
.ls4d{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.135467pt;}
.ls42{letter-spacing:0.140800pt;}
.ls0{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.149867pt;}
.lse{letter-spacing:0.165120pt;}
.ls33{letter-spacing:0.165333pt;}
.ls5{letter-spacing:0.168533pt;}
.ls1{letter-spacing:0.176000pt;}
.ls3c{letter-spacing:0.183467pt;}
.ls3{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.231467pt;}
.ls4f{letter-spacing:0.239787pt;}
.ls16{letter-spacing:0.248320pt;}
.ls15{letter-spacing:0.248533pt;}
.ls27{letter-spacing:0.282133pt;}
.ls4a{letter-spacing:0.282240pt;}
.ls35{letter-spacing:0.294933pt;}
.ls14{letter-spacing:0.304000pt;}
.lsc{letter-spacing:0.306133pt;}
.ls37{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.324267pt;}
.ls30{letter-spacing:0.324480pt;}
.ls40{letter-spacing:0.325120pt;}
.ls47{letter-spacing:0.398933pt;}
.ls48{letter-spacing:0.517333pt;}
.ls3e{letter-spacing:0.554667pt;}
.ls2d{letter-spacing:0.581333pt;}
.ls2b{letter-spacing:0.597333pt;}
.ls2c{letter-spacing:0.634667pt;}
.ls38{letter-spacing:0.714667pt;}
.ls1e{letter-spacing:0.742187pt;}
.ls44{letter-spacing:0.810667pt;}
.ls36{letter-spacing:2.725120pt;}
.ls50{letter-spacing:2.944000pt;}
.ls20{letter-spacing:10.832640pt;}
.ls1f{letter-spacing:39.611307pt;}
.ls4b{letter-spacing:44.410027pt;}
.ls1b{letter-spacing:44.933120pt;}
.ls22{letter-spacing:47.931307pt;}
.ls32{letter-spacing:49.211307pt;}
.ls25{letter-spacing:51.503360pt;}
.ls4e{letter-spacing:53.834667pt;}
.ls3f{letter-spacing:56.251307pt;}
.ls26{letter-spacing:80.106667pt;}
.ls1a{letter-spacing:83.973120pt;}
.ls1c{letter-spacing:101.253120pt;}
.lsf{letter-spacing:753.371307pt;}
.ls2f{letter-spacing:1670.351787pt;}
.lsd{letter-spacing:1670.511787pt;}
.ws1b{word-spacing:-20.666880pt;}
.wse{word-spacing:-18.833707pt;}
.wsf{word-spacing:-18.167040pt;}
.ws20{word-spacing:-17.792000pt;}
.ws1c{word-spacing:-17.664000pt;}
.ws1d{word-spacing:-17.408000pt;}
.ws34{word-spacing:-16.896000pt;}
.ws32{word-spacing:-16.133120pt;}
.ws33{word-spacing:-16.012587pt;}
.ws11{word-spacing:-15.342293pt;}
.ws25{word-spacing:-15.269547pt;}
.ws13{word-spacing:-15.243627pt;}
.ws22{word-spacing:-15.136213pt;}
.ws12{word-spacing:-15.093760pt;}
.ws10{word-spacing:-14.950293pt;}
.ws8{word-spacing:-14.861013pt;}
.ws15{word-spacing:-14.845227pt;}
.ws21{word-spacing:-14.837013pt;}
.ws7{word-spacing:-14.794453pt;}
.ws23{word-spacing:-14.786347pt;}
.ws9{word-spacing:-14.723413pt;}
.ws5{word-spacing:-14.685440pt;}
.ws14{word-spacing:-14.664960pt;}
.ws4{word-spacing:-14.661120pt;}
.ws26{word-spacing:-14.627413pt;}
.ws1f{word-spacing:-14.568960pt;}
.ws3{word-spacing:-14.554880pt;}
.ws6{word-spacing:-14.551787pt;}
.ws17{word-spacing:-14.547840pt;}
.ws2a{word-spacing:-14.541440pt;}
.ws29{word-spacing:-14.512640pt;}
.ws27{word-spacing:-14.504960pt;}
.ws2e{word-spacing:-14.499947pt;}
.ws18{word-spacing:-14.467413pt;}
.ws24{word-spacing:-14.432213pt;}
.ws1e{word-spacing:-14.333547pt;}
.ws16{word-spacing:-14.313813pt;}
.ws2b{word-spacing:-13.447680pt;}
.ws1a{word-spacing:-13.368213pt;}
.ws19{word-spacing:-13.306880pt;}
.ws2d{word-spacing:-13.265920pt;}
.ws30{word-spacing:-13.152000pt;}
.ws2c{word-spacing:-12.474880pt;}
.ws28{word-spacing:-11.932587pt;}
.ws3c{word-spacing:-11.879680pt;}
.ws35{word-spacing:-11.868800pt;}
.ws3e{word-spacing:-11.834880pt;}
.ws3f{word-spacing:-11.816960pt;}
.ws3a{word-spacing:-11.812053pt;}
.ws36{word-spacing:-11.799040pt;}
.wsc{word-spacing:-11.749120pt;}
.ws40{word-spacing:-11.730560pt;}
.ws37{word-spacing:-11.716480pt;}
.wsd{word-spacing:-11.676587pt;}
.ws39{word-spacing:-11.674987pt;}
.ws38{word-spacing:-11.611520pt;}
.ws3d{word-spacing:-11.597013pt;}
.ws3b{word-spacing:-11.581653pt;}
.wsb{word-spacing:-11.466987pt;}
.ws0{word-spacing:-11.446187pt;}
.ws31{word-spacing:-10.848000pt;}
.ws1{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.058880pt;}
.ws2{word-spacing:-0.048000pt;}
.wsa{word-spacing:0.000000pt;}
._1e{margin-left:-12.261547pt;}
._20{margin-left:-6.501547pt;}
._1d{margin-left:-5.172480pt;}
._1f{margin-left:-3.907840pt;}
._2d{margin-left:-2.390400pt;}
._0{margin-left:-1.111467pt;}
._1{width:1.474133pt;}
._11{width:2.372907pt;}
._4{width:3.990400pt;}
._3{width:4.886827pt;}
._5{width:6.640000pt;}
._22{width:7.808640pt;}
._23{width:9.189333pt;}
._6{width:10.783360pt;}
._2f{width:11.739520pt;}
._2e{width:13.364267pt;}
._29{width:14.263893pt;}
._38{width:15.531947pt;}
._31{width:16.467200pt;}
._2a{width:18.020907pt;}
._2b{width:18.963840pt;}
._40{width:19.866880pt;}
._3c{width:21.095040pt;}
._25{width:22.731307pt;}
._24{width:24.063360pt;}
._37{width:25.019520pt;}
._43{width:25.961387pt;}
._44{width:28.854827pt;}
._33{width:30.295040pt;}
._26{width:31.324160pt;}
._34{width:32.791680pt;}
._2c{width:34.049920pt;}
._42{width:35.676160pt;}
._39{width:36.890880pt;}
._27{width:38.299520pt;}
._28{width:39.653973pt;}
._49{width:41.507840pt;}
._4c{width:42.494080pt;}
._41{width:44.766720pt;}
._3b{width:47.339520pt;}
._46{width:49.483520pt;}
._45{width:50.469760pt;}
._4a{width:51.752747pt;}
._35{width:52.854400pt;}
._4d{width:56.258560pt;}
._4f{width:59.088640pt;}
._3a{width:60.291200pt;}
._48{width:66.335360pt;}
._3e{width:69.852800pt;}
._36{width:74.846080pt;}
._51{width:78.981760pt;}
._3d{width:84.673280pt;}
._52{width:86.531840pt;}
._3f{width:95.084800pt;}
._4e{width:111.664640pt;}
._30{width:120.800213pt;}
._32{width:122.741547pt;}
._2{width:143.840213pt;}
._7{width:174.223787pt;}
._50{width:178.166400pt;}
._4b{width:198.320000pt;}
._47{width:435.060480pt;}
._21{width:753.583787pt;}
._12{width:954.565547pt;}
._10{width:1000.555520pt;}
._d{width:1034.028800pt;}
._13{width:1136.170880pt;}
._15{width:1251.789653pt;}
._1b{width:1259.610240pt;}
._e{width:1275.172693pt;}
._16{width:1446.421333pt;}
._1c{width:1479.102080pt;}
._8{width:1579.555413pt;}
._c{width:1658.801067pt;}
._a{width:1670.345387pt;}
._b{width:1686.157867pt;}
._1a{width:1687.372373pt;}
._f{width:1695.126187pt;}
._18{width:1698.653013pt;}
._14{width:1897.234560pt;}
._9{width:1925.638187pt;}
._17{width:1935.501867pt;}
._19{width:1936.882987pt;}
.fsa{font-size:2.560000pt;}
.fs5{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y27e{bottom:2.714667pt;}
.y1a{bottom:2.720000pt;}
.y254{bottom:2.752000pt;}
.y41{bottom:2.880000pt;}
.ye{bottom:3.360000pt;}
.y11e{bottom:3.386667pt;}
.y11{bottom:3.400000pt;}
.y29{bottom:3.520000pt;}
.y19{bottom:3.680000pt;}
.y3d{bottom:3.840000pt;}
.y25{bottom:4.000000pt;}
.y1d1{bottom:4.040000pt;}
.y21{bottom:4.160000pt;}
.y2b{bottom:4.640000pt;}
.y1b{bottom:7.040000pt;}
.y52{bottom:7.360000pt;}
.y59{bottom:7.520000pt;}
.y26{bottom:7.680000pt;}
.y1f{bottom:7.840000pt;}
.y50{bottom:8.000000pt;}
.y23{bottom:8.320000pt;}
.y1d{bottom:8.480000pt;}
.y2ad{bottom:10.560000pt;}
.y2aa{bottom:10.714667pt;}
.y297{bottom:10.720000pt;}
.y29c{bottom:10.746667pt;}
.y2a3{bottom:10.760000pt;}
.y1b1{bottom:11.240000pt;}
.y1ac{bottom:11.360000pt;}
.y1e{bottom:12.160000pt;}
.y243{bottom:13.440000pt;}
.y252{bottom:13.466667pt;}
.y1ab{bottom:13.920000pt;}
.y1ad{bottom:14.080000pt;}
.y138{bottom:15.360000pt;}
.y141{bottom:16.000000pt;}
.y57{bottom:16.160000pt;}
.y13e{bottom:16.320000pt;}
.y1b2{bottom:17.960000pt;}
.y1a9{bottom:19.360000pt;}
.y241{bottom:19.400000pt;}
.y24{bottom:20.000000pt;}
.y20{bottom:20.160000pt;}
.y1d4{bottom:20.960000pt;}
.y1c7{bottom:21.120000pt;}
.y1d0{bottom:21.160000pt;}
.y2c0{bottom:21.280000pt;}
.y2c8{bottom:21.312000pt;}
.y1e7{bottom:21.440000pt;}
.y1e4{bottom:21.466667pt;}
.y1ef{bottom:21.480000pt;}
.yb8{bottom:21.760000pt;}
.yb2{bottom:21.920000pt;}
.y1e5{bottom:21.946667pt;}
.yc4{bottom:21.960000pt;}
.yba{bottom:22.080000pt;}
.y46{bottom:24.000000pt;}
.y253{bottom:24.026667pt;}
.y2c7{bottom:24.032000pt;}
.y48{bottom:24.160000pt;}
.y291{bottom:24.186667pt;}
.y24d{bottom:24.200000pt;}
.y12d{bottom:27.360000pt;}
.y11b{bottom:27.386667pt;}
.y11c{bottom:28.026667pt;}
.y133{bottom:28.320000pt;}
.y1b0{bottom:29.960000pt;}
.y2c3{bottom:32.000000pt;}
.ya{bottom:33.600000pt;}
.y248{bottom:34.720000pt;}
.y28c{bottom:34.760000pt;}
.y129{bottom:39.674667pt;}
.ybf{bottom:39.840000pt;}
.ybc{bottom:39.866667pt;}
.y13d{bottom:40.346667pt;}
.y3{bottom:40.480000pt;}
.y23e{bottom:40.680000pt;}
.y240{bottom:40.840000pt;}
.y24a{bottom:45.440000pt;}
.y292{bottom:45.466667pt;}
.y26e{bottom:45.480000pt;}
.y110{bottom:49.760000pt;}
.y12c{bottom:51.354667pt;}
.y11d{bottom:51.386667pt;}
.y12e{bottom:51.994667pt;}
.y132{bottom:52.320000pt;}
.y295{bottom:52.360000pt;}
.y23b{bottom:53.920000pt;}
.y30{bottom:54.080000pt;}
.y26c{bottom:56.200000pt;}
.y2{bottom:56.480000pt;}
.y9{bottom:57.600000pt;}
.y23f{bottom:62.120000pt;}
.y128{bottom:63.674667pt;}
.y13c{bottom:64.346667pt;}
.y249{bottom:66.720000pt;}
.y26d{bottom:66.760000pt;}
.y259{bottom:66.920000pt;}
.y12b{bottom:75.354667pt;}
.y257{bottom:77.480000pt;}
.y8{bottom:81.600000pt;}
.y127{bottom:87.674667pt;}
.y268{bottom:88.040000pt;}
.y258{bottom:88.200000pt;}
.y13b{bottom:88.346667pt;}
.y27{bottom:96.960000pt;}
.yad{bottom:97.120000pt;}
.ycd{bottom:98.080000pt;}
.y255{bottom:98.400000pt;}
.y262{bottom:98.760000pt;}
.y12a{bottom:99.354667pt;}
.y126{bottom:100.992000pt;}
.yac{bottom:101.120000pt;}
.y1bc{bottom:101.760000pt;}
.y209{bottom:102.720000pt;}
.y2c6{bottom:105.120000pt;}
.y7{bottom:105.600000pt;}
.y290{bottom:109.280000pt;}
.y1f9{bottom:109.440000pt;}
.y25c{bottom:109.480000pt;}
.y7f{bottom:110.400000pt;}
.y2ab{bottom:110.560000pt;}
.yab{bottom:113.120000pt;}
.y1bb{bottom:113.440000pt;}
.yaa{bottom:117.120000pt;}
.y1d7{bottom:118.560000pt;}
.y261{bottom:120.040000pt;}
.y251{bottom:120.480000pt;}
.y1a1{bottom:120.640000pt;}
.y208{bottom:126.720000pt;}
.ya9{bottom:129.120000pt;}
.y267{bottom:130.760000pt;}
.y25b{bottom:130.920000pt;}
.y22{bottom:131.040000pt;}
.y27d{bottom:131.392000pt;}
.y2a9{bottom:132.672000pt;}
.yeb{bottom:134.080000pt;}
.ycc{bottom:136.000000pt;}
.y26a{bottom:137.306667pt;}
.y6{bottom:138.240000pt;}
.y1f8{bottom:143.200000pt;}
.y1a0{bottom:144.640000pt;}
.y164{bottom:145.120000pt;}
.y2c5{bottom:148.506667pt;}
.y163{bottom:149.120000pt;}
.y207{bottom:150.720000pt;}
.y266{bottom:152.040000pt;}
.y25a{bottom:152.200000pt;}
.y27c{bottom:153.306667pt;}
.y2a8{bottom:154.586667pt;}
.y7e{bottom:155.040000pt;}
.ya8{bottom:155.200000pt;}
.ycb{bottom:155.360000pt;}
.y238{bottom:157.120000pt;}
.yea{bottom:158.080000pt;}
.y269{bottom:159.386667pt;}
.y162{bottom:161.120000pt;}
.y5{bottom:162.280000pt;}
.y250{bottom:163.706667pt;}
.y1c{bottom:164.960000pt;}
.y182{bottom:165.120000pt;}
.y1f7{bottom:167.840000pt;}
.y2c4{bottom:170.426667pt;}
.y265{bottom:173.480000pt;}
.y1d6{bottom:173.760000pt;}
.y28f{bottom:173.946667pt;}
.y27b{bottom:175.386667pt;}
.y2a7{bottom:176.666667pt;}
.y181{bottom:177.120000pt;}
.y237{bottom:178.400000pt;}
.ya7{bottom:179.200000pt;}
.y1ba{bottom:180.800000pt;}
.ye9{bottom:182.080000pt;}
.y7d{bottom:183.520000pt;}
.y19f{bottom:184.640000pt;}
.y206{bottom:190.746667pt;}
.y1f6{bottom:191.226667pt;}
.yca{bottom:191.866667pt;}
.y1d5{bottom:192.346667pt;}
.y180{bottom:193.146667pt;}
.y264{bottom:194.760000pt;}
.y28e{bottom:196.026667pt;}
.y27a{bottom:197.306667pt;}
.y2a6{bottom:198.586667pt;}
.y18{bottom:199.066667pt;}
.y260{bottom:202.746667pt;}
.ya6{bottom:203.226667pt;}
.y1b9{bottom:204.826667pt;}
.ye8{bottom:206.106667pt;}
.y24f{bottom:207.066667pt;}
.y19e{bottom:208.666667pt;}
.y17f{bottom:209.146667pt;}
.y17e{bottom:213.146667pt;}
.y2c2{bottom:213.786667pt;}
.y205{bottom:214.746667pt;}
.y1f5{bottom:215.226667pt;}
.y236{bottom:215.866667pt;}
.y263{bottom:216.040000pt;}
.y28d{bottom:217.946667pt;}
.y2a5{bottom:220.666667pt;}
.y125{bottom:221.626667pt;}
.y17d{bottom:225.146667pt;}
.yc9{bottom:228.346667pt;}
.y1b8{bottom:228.826667pt;}
.y7c{bottom:228.986667pt;}
.y24e{bottom:229.146667pt;}
.y10d{bottom:232.666667pt;}
.y235{bottom:237.146667pt;}
.y204{bottom:238.746667pt;}
.y1f4{bottom:239.226667pt;}
.y28b{bottom:240.026667pt;}
.y279{bottom:240.666667pt;}
.y17c{bottom:241.146667pt;}
.y2a4{bottom:242.586667pt;}
.ya4{bottom:243.226667pt;}
.y17{bottom:245.786667pt;}
.ye7{bottom:246.106667pt;}
.y124{bottom:246.306667pt;}
.ya5{bottom:247.866667pt;}
.y24c{bottom:251.066667pt;}
.y1b7{bottom:252.826667pt;}
.y161{bottom:252.986667pt;}
.y10c{bottom:256.666667pt;}
.y17b{bottom:257.146667pt;}
.y17a{bottom:261.146667pt;}
.y55{bottom:262.426667pt;}
.y203{bottom:262.746667pt;}
.y1f3{bottom:263.226667pt;}
.ya3{bottom:264.666667pt;}
.yc8{bottom:264.826667pt;}
.ye6{bottom:270.106667pt;}
.y123{bottom:270.946667pt;}
.y179{bottom:273.146667pt;}
.y234{bottom:273.626667pt;}
.y7b{bottom:274.266667pt;}
.y16{bottom:274.426667pt;}
.y1b6{bottom:276.826667pt;}
.y160{bottom:276.986667pt;}
.y2c1{bottom:278.466667pt;}
.y10b{bottom:280.666667pt;}
.y278{bottom:284.066667pt;}
.y54{bottom:285.466667pt;}
.ya2{bottom:285.946667pt;}
.y2a2{bottom:286.626667pt;}
.y202{bottom:286.746667pt;}
.y1f2{bottom:287.226667pt;}
.ye5{bottom:294.106667pt;}
.y24b{bottom:294.466667pt;}
.y122{bottom:295.586667pt;}
.y233{bottom:295.866667pt;}
.y15{bottom:298.426667pt;}
.y1b5{bottom:300.826667pt;}
.y15f{bottom:300.986667pt;}
.yc7{bottom:301.306667pt;}
.y144{bottom:304.386667pt;}
.y53{bottom:304.666667pt;}
.y277{bottom:305.986667pt;}
.ya1{bottom:307.226667pt;}
.y2a1{bottom:308.706667pt;}
.y201{bottom:310.746667pt;}
.y232{bottom:317.146667pt;}
.y7a{bottom:319.546667pt;}
.y1d3{bottom:319.866667pt;}
.y121{bottom:320.386667pt;}
.yc6{bottom:320.666667pt;}
.y2bf{bottom:321.826667pt;}
.y14{bottom:322.426667pt;}
.y1b4{bottom:324.826667pt;}
.y15e{bottom:324.986667pt;}
.y28a{bottom:325.986667pt;}
.y276{bottom:328.066667pt;}
.ya0{bottom:328.666667pt;}
.y1f1{bottom:328.986667pt;}
.y143{bottom:329.026667pt;}
.y2a0{bottom:330.626667pt;}
.y51{bottom:331.866667pt;}
.ye4{bottom:334.106667pt;}
.y247{bottom:337.826667pt;}
.y1d2{bottom:338.426667pt;}
.yc5{bottom:340.026667pt;}
.y19d{bottom:344.666667pt;}
.y120{bottom:345.026667pt;}
.y13{bottom:346.426667pt;}
.y289{bottom:348.066667pt;}
.y15d{bottom:348.986667pt;}
.y9f{bottom:349.946667pt;}
.y275{bottom:349.986667pt;}
.y1f0{bottom:350.266667pt;}
.y178{bottom:350.746667pt;}
.y10a{bottom:352.666667pt;}
.y29f{bottom:352.706667pt;}
.y142{bottom:353.666667pt;}
.ye3{bottom:358.106667pt;}
.y4f{bottom:358.906667pt;}
.y231{bottom:359.866667pt;}
.y4b{bottom:360.186667pt;}
.y1b3{bottom:364.826667pt;}
.y79{bottom:364.986667pt;}
.y2be{bottom:365.186667pt;}
.y19c{bottom:368.666667pt;}
.y11f{bottom:369.666667pt;}
.y288{bottom:369.986667pt;}
.y12{bottom:370.426667pt;}
.y9e{bottom:371.226667pt;}
.y274{bottom:372.066667pt;}
.y15c{bottom:372.986667pt;}
.y29e{bottom:374.626667pt;}
.y177{bottom:374.746667pt;}
.yc3{bottom:376.506667pt;}
.y109{bottom:376.666667pt;}
.y4a{bottom:376.986667pt;}
.y13a{bottom:378.306667pt;}
.ye2{bottom:382.106667pt;}
.y1af{bottom:386.106667pt;}
.y1ee{bottom:386.426667pt;}
.y2bd{bottom:387.106667pt;}
.y287{bottom:392.066667pt;}
.y9d{bottom:392.506667pt;}
.y19b{bottom:392.666667pt;}
.y1cf{bottom:392.826667pt;}
.y11a{bottom:394.306667pt;}
.y10{bottom:394.426667pt;}
.y29d{bottom:396.706667pt;}
.y15b{bottom:397.026667pt;}
.y230{bottom:397.186667pt;}
.y49{bottom:397.666667pt;}
.y176{bottom:398.786667pt;}
.y4e{bottom:399.906667pt;}
.y108{bottom:400.706667pt;}
.ye1{bottom:406.146667pt;}
.y78{bottom:410.306667pt;}
.yc2{bottom:414.466667pt;}
.y9c{bottom:416.546667pt;}
.y19a{bottom:416.706667pt;}
.y22f{bottom:417.826667pt;}
.yf{bottom:418.466667pt;}
.y29b{bottom:418.626667pt;}
.y47{bottom:418.946667pt;}
.y4d{bottom:420.386667pt;}
.y15a{bottom:421.026667pt;}
.y175{bottom:422.786667pt;}
.y1ed{bottom:422.946667pt;}
.y246{bottom:423.773333pt;}
.y107{bottom:424.706667pt;}
.y140{bottom:426.973333pt;}
.y1ce{bottom:429.026667pt;}
.ye0{bottom:430.146667pt;}
.y2bc{bottom:430.493333pt;}
.y1ae{bottom:432.066667pt;}
.y286{bottom:435.453333pt;}
.y273{bottom:436.733333pt;}
.y2cc{bottom:437.373333pt;}
.y25f{bottom:438.013333pt;}
.y9b{bottom:440.546667pt;}
.y199{bottom:440.706667pt;}
.y29a{bottom:440.733333pt;}
.y1ec{bottom:441.506667pt;}
.yd{bottom:442.466667pt;}
.y159{bottom:445.026667pt;}
.y173{bottom:446.786667pt;}
.y106{bottom:448.706667pt;}
.yc1{bottom:450.946667pt;}
.y174{bottom:451.426667pt;}
.y22e{bottom:451.586667pt;}
.y13f{bottom:451.613333pt;}
.y67{bottom:451.746667pt;}
.y2bb{bottom:452.573333pt;}
.ydf{bottom:454.786667pt;}
.y77{bottom:455.746667pt;}
.y285{bottom:457.373333pt;}
.y272{bottom:458.813333pt;}
.y45{bottom:461.666667pt;}
.y299{bottom:462.653333pt;}
.y9a{bottom:464.546667pt;}
.y198{bottom:464.706667pt;}
.y2d{bottom:466.466667pt;}
.y119{bottom:466.973333pt;}
.y245{bottom:467.133333pt;}
.y22d{bottom:468.386667pt;}
.y158{bottom:469.026667pt;}
.yc0{bottom:470.306667pt;}
.y172{bottom:470.786667pt;}
.y105{bottom:472.706667pt;}
.y2ba{bottom:474.493333pt;}
.y139{bottom:476.413333pt;}
.y2cb{bottom:477.373333pt;}
.y1eb{bottom:477.666667pt;}
.y66{bottom:478.946667pt;}
.y271{bottom:480.733333pt;}
.y25e{bottom:481.373333pt;}
.y1cd{bottom:483.426667pt;}
.y76{bottom:483.746667pt;}
.y298{bottom:484.733333pt;}
.y200{bottom:486.786667pt;}
.y22c{bottom:488.386667pt;}
.y99{bottom:488.546667pt;}
.y197{bottom:488.706667pt;}
.y244{bottom:489.213333pt;}
.ybe{bottom:489.666667pt;}
.y118{bottom:491.613333pt;}
.y2c{bottom:493.026667pt;}
.y171{bottom:494.786667pt;}
.y1ea{bottom:496.226667pt;}
.y2b9{bottom:496.573333pt;}
.y104{bottom:496.706667pt;}
.y18a{bottom:497.506667pt;}
.y2ca{bottom:498.813333pt;}
.yde{bottom:499.426667pt;}
.y284{bottom:500.733333pt;}
.y137{bottom:501.053333pt;}
.y25d{bottom:503.453333pt;}
.y44{bottom:504.226667pt;}
.y65{bottom:505.986667pt;}
.y296{bottom:506.653333pt;}
.y1ff{bottom:510.786667pt;}
.y242{bottom:511.133333pt;}
.y75{bottom:511.746667pt;}
.y98{bottom:512.546667pt;}
.y196{bottom:512.706667pt;}
.y2a{bottom:514.466667pt;}
.y1e9{bottom:514.786667pt;}
.y117{bottom:516.413333pt;}
.y157{bottom:517.026667pt;}
.y2b8{bottom:518.493333pt;}
.y170{bottom:518.786667pt;}
.y1cc{bottom:519.586667pt;}
.y103{bottom:520.706667pt;}
.y2c9{bottom:520.733333pt;}
.y22b{bottom:521.026667pt;}
.y189{bottom:521.506667pt;}
.ydd{bottom:523.426667pt;}
.y270{bottom:524.093333pt;}
.y256{bottom:525.373333pt;}
.y43{bottom:525.666667pt;}
.y294{bottom:528.733333pt;}
.y1aa{bottom:530.146667pt;}
.y64{bottom:533.186667pt;}
.y1e8{bottom:533.346667pt;}
.y1fe{bottom:534.786667pt;}
.y195{bottom:536.706667pt;}
.y74{bottom:539.746667pt;}
.y2b7{bottom:540.573333pt;}
.y28{bottom:541.026667pt;}
.y116{bottom:541.053333pt;}
.y22a{bottom:541.986667pt;}
.y16f{bottom:542.786667pt;}
.y2b3{bottom:542.813333pt;}
.ybd{bottom:544.066667pt;}
.y283{bottom:544.093333pt;}
.y102{bottom:545.346667pt;}
.y26f{bottom:546.013333pt;}
.ydc{bottom:547.426667pt;}
.y136{bottom:549.693333pt;}
.y42{bottom:551.586667pt;}
.y1e6{bottom:551.906667pt;}
.y97{bottom:552.706667pt;}
.y23d{bottom:554.493333pt;}
.y1cb{bottom:556.066667pt;}
.y212{bottom:557.986667pt;}
.y1fd{bottom:558.786667pt;}
.y63{bottom:560.226667pt;}
.y194{bottom:560.706667pt;}
.y188{bottom:561.506667pt;}
.y229{bottom:562.146667pt;}
.y2b6{bottom:562.493333pt;}
.y1a8{bottom:562.786667pt;}
.y2b2{bottom:564.733333pt;}
.y156{bottom:565.026667pt;}
.y115{bottom:565.733333pt;}
.y282{bottom:566.013333pt;}
.y16e{bottom:566.786667pt;}
.y73{bottom:567.586667pt;}
.y26b{bottom:568.093333pt;}
.ydb{bottom:571.426667pt;}
.y40{bottom:572.226667pt;}
.y96{bottom:573.986667pt;}
.y131{bottom:574.373333pt;}
.y20b{bottom:574.786667pt;}
.y228{bottom:577.986667pt;}
.ybb{bottom:581.986667pt;}
.y1fc{bottom:582.786667pt;}
.y2b5{bottom:584.613333pt;}
.y193{bottom:584.706667pt;}
.y187{bottom:585.506667pt;}
.yc{bottom:586.466667pt;}
.y2b1{bottom:586.853333pt;}
.y62{bottom:587.426667pt;}
.y281{bottom:588.133333pt;}
.y1e3{bottom:588.386667pt;}
.y155{bottom:589.026667pt;}
.y101{bottom:589.986667pt;}
.y114{bottom:590.373333pt;}
.y16c{bottom:590.786667pt;}
.y1ca{bottom:592.546667pt;}
.y3f{bottom:593.666667pt;}
.y227{bottom:594.786667pt;}
.y95{bottom:595.266667pt;}
.y16d{bottom:595.426667pt;}
.yda{bottom:596.066667pt;}
.y20a{bottom:598.786667pt;}
.y135{bottom:599.013333pt;}
.y211{bottom:606.013333pt;}
.y2b4{bottom:606.533333pt;}
.y2b0{bottom:608.773333pt;}
.y186{bottom:609.533333pt;}
.y1c9{bottom:611.133333pt;}
.y72{bottom:613.053333pt;}
.y100{bottom:614.013333pt;}
.y61{bottom:614.653333pt;}
.y16a{bottom:614.813333pt;}
.y3e{bottom:614.973333pt;}
.y226{bottom:615.773333pt;}
.y94{bottom:616.733333pt;}
.y154{bottom:617.533333pt;}
.y16b{bottom:619.453333pt;}
.y1a7{bottom:620.093333pt;}
.y1fb{bottom:622.813333pt;}
.y134{bottom:623.653333pt;}
.yb{bottom:624.253333pt;}
.y192{bottom:624.733333pt;}
.y1e2{bottom:624.893333pt;}
.y113{bottom:626.373333pt;}
.y2af{bottom:630.853333pt;}
.y280{bottom:631.493333pt;}
.y214{bottom:634.973333pt;}
.y225{bottom:635.933333pt;}
.y3c{bottom:636.253333pt;}
.yb9{bottom:636.413333pt;}
.y93{bottom:638.013333pt;}
.y169{bottom:638.813333pt;}
.yd9{bottom:640.733333pt;}
.y71{bottom:641.053333pt;}
.y153{bottom:641.533333pt;}
.y60{bottom:641.693333pt;}
.y1e1{bottom:643.453333pt;}
.y210{bottom:646.013333pt;}
.y1fa{bottom:646.813333pt;}
.y1c8{bottom:647.613333pt;}
.y130{bottom:648.453333pt;}
.y191{bottom:648.733333pt;}
.y185{bottom:649.533333pt;}
.y224{bottom:651.773333pt;}
.y2ae{bottom:652.773333pt;}
.y112{bottom:653.093333pt;}
.y27f{bottom:653.413333pt;}
.y1a6{bottom:654.813333pt;}
.y213{bottom:658.973333pt;}
.y92{bottom:659.293333pt;}
.yff{bottom:662.013333pt;}
.y3b{bottom:662.333333pt;}
.y168{bottom:662.813333pt;}
.yd8{bottom:664.733333pt;}
.y23c{bottom:665.093333pt;}
.y152{bottom:665.533333pt;}
.y1c6{bottom:666.173333pt;}
.y223{bottom:668.413333pt;}
.y5f{bottom:668.893333pt;}
.y70{bottom:669.053333pt;}
.y20f{bottom:670.013333pt;}
.yf7{bottom:670.813333pt;}
.y190{bottom:672.733333pt;}
.y12f{bottom:673.093333pt;}
.y4{bottom:673.533333pt;}
.yb7{bottom:674.493333pt;}
.y2ac{bottom:674.853333pt;}
.y111{bottom:677.093333pt;}
.y293{bottom:678.533333pt;}
.y21a{bottom:680.253333pt;}
.y91{bottom:680.733333pt;}
.yfe{bottom:686.013333pt;}
.y3a{bottom:686.333333pt;}
.y167{bottom:686.813333pt;}
.yd7{bottom:688.733333pt;}
.y151{bottom:689.533333pt;}
.y20e{bottom:694.013333pt;}
.yf6{bottom:694.813333pt;}
.y5e{bottom:695.933333pt;}
.y18f{bottom:696.733333pt;}
.y6f{bottom:697.053333pt;}
.y184{bottom:697.533333pt;}
.y23a{bottom:701.893333pt;}
.y90{bottom:702.013333pt;}
.y1c5{bottom:702.653333pt;}
.y1e0{bottom:703.293333pt;}
.y10f{bottom:706.693333pt;}
.y219{bottom:709.053333pt;}
.yfd{bottom:710.013333pt;}
.y39{bottom:710.333333pt;}
.y222{bottom:710.653333pt;}
.yb6{bottom:710.813333pt;}
.yd6{bottom:712.733333pt;}
.y150{bottom:713.533333pt;}
.y20d{bottom:718.013333pt;}
.yf5{bottom:718.813333pt;}
.y18e{bottom:720.733333pt;}
.y1c4{bottom:721.213333pt;}
.y183{bottom:721.533333pt;}
.y5d{bottom:723.133333pt;}
.y8f{bottom:723.293333pt;}
.y239{bottom:723.360000pt;}
.y10e{bottom:728.000000pt;}
.yfc{bottom:734.013333pt;}
.y38{bottom:734.333333pt;}
.y166{bottom:734.813333pt;}
.yd5{bottom:736.733333pt;}
.y14f{bottom:737.533333pt;}
.y218{bottom:737.853333pt;}
.y1df{bottom:738.013333pt;}
.y1c3{bottom:739.773333pt;}
.y20c{bottom:742.013333pt;}
.y6e{bottom:742.493333pt;}
.yf4{bottom:742.813333pt;}
.y8e{bottom:744.733333pt;}
.y221{bottom:745.853333pt;}
.yb5{bottom:747.293333pt;}
.y1a5{bottom:747.453333pt;}
.y5c{bottom:750.173333pt;}
.yfb{bottom:758.013333pt;}
.y37{bottom:758.333333pt;}
.y165{bottom:758.813333pt;}
.yd4{bottom:760.733333pt;}
.y14e{bottom:761.533333pt;}
.y1de{bottom:762.013333pt;}
.y8d{bottom:766.013333pt;}
.yb4{bottom:766.653333pt;}
.y1a4{bottom:766.813333pt;}
.y18d{bottom:768.733333pt;}
.y6d{bottom:770.493333pt;}
.y220{bottom:774.493333pt;}
.y5b{bottom:777.373333pt;}
.y1c2{bottom:781.053333pt;}
.y36{bottom:781.693333pt;}
.yfa{bottom:782.013333pt;}
.yf3{bottom:782.813333pt;}
.yd3{bottom:784.733333pt;}
.y14d{bottom:785.533333pt;}
.y1dd{bottom:786.013333pt;}
.y8c{bottom:790.013333pt;}
.y1a3{bottom:790.813333pt;}
.y18c{bottom:792.733333pt;}
.y217{bottom:795.453333pt;}
.y6c{bottom:798.493333pt;}
.y35{bottom:803.133333pt;}
.y5a{bottom:804.573333pt;}
.yf9{bottom:806.013333pt;}
.y21f{bottom:806.333333pt;}
.yf2{bottom:806.813333pt;}
.y1dc{bottom:807.293333pt;}
.yd2{bottom:808.733333pt;}
.y14c{bottom:809.533333pt;}
.y86{bottom:810.333333pt;}
.y8b{bottom:814.013333pt;}
.y1a2{bottom:814.813333pt;}
.y1c1{bottom:815.813333pt;}
.y18b{bottom:816.773333pt;}
.yb3{bottom:822.533333pt;}
.y216{bottom:824.293333pt;}
.y34{bottom:824.453333pt;}
.y6b{bottom:826.373333pt;}
.y21e{bottom:827.333333pt;}
.yf8{bottom:830.053333pt;}
.yf1{bottom:830.853333pt;}
.y58{bottom:831.653333pt;}
.y85{bottom:831.813333pt;}
.yd1{bottom:832.773333pt;}
.y14a{bottom:833.573333pt;}
.y14b{bottom:838.213333pt;}
.y1c0{bottom:839.813333pt;}
.y1db{bottom:843.493333pt;}
.y33{bottom:846.373333pt;}
.y21d{bottom:848.453333pt;}
.y84{bottom:853.093333pt;}
.y8a{bottom:854.053333pt;}
.yf0{bottom:854.853333pt;}
.yd0{bottom:856.773333pt;}
.y149{bottom:857.573333pt;}
.y56{bottom:858.853333pt;}
.yb1{bottom:859.013333pt;}
.y1da{bottom:862.053333pt;}
.y1bf{bottom:863.813333pt;}
.y21c{bottom:869.413333pt;}
.y6a{bottom:871.813333pt;}
.y83{bottom:874.373333pt;}
.y89{bottom:878.053333pt;}
.yef{bottom:878.853333pt;}
.ycf{bottom:880.773333pt;}
.y148{bottom:881.573333pt;}
.y215{bottom:881.893333pt;}
.y1be{bottom:887.813333pt;}
.y32{bottom:891.173333pt;}
.yb0{bottom:895.493333pt;}
.y82{bottom:895.813333pt;}
.y1d9{bottom:898.533333pt;}
.y88{bottom:902.053333pt;}
.yee{bottom:902.853333pt;}
.y21b{bottom:904.773333pt;}
.yce{bottom:905.413333pt;}
.y147{bottom:905.573333pt;}
.y1bd{bottom:911.813333pt;}
.y31{bottom:913.093333pt;}
.y69{bottom:914.213333pt;}
.yaf{bottom:914.853333pt;}
.y81{bottom:917.093333pt;}
.y4c{bottom:919.013333pt;}
.yed{bottom:926.853333pt;}
.y146{bottom:929.573333pt;}
.y1d8{bottom:935.013333pt;}
.yec{bottom:950.853333pt;}
.y87{bottom:951.333333pt;}
.y68{bottom:952.293333pt;}
.y145{bottom:954.213333pt;}
.yae{bottom:956.133333pt;}
.y80{bottom:956.773333pt;}
.y2f{bottom:1031.360000pt;}
.y1{bottom:1043.680000pt;}
.y2e{bottom:1052.800000pt;}
.h9{height:3.915000pt;}
.h22{height:4.875000pt;}
.h47{height:17.760000pt;}
.h46{height:17.792000pt;}
.h40{height:17.920000pt;}
.h41{height:17.952000pt;}
.h26{height:18.720000pt;}
.h28{height:18.752000pt;}
.h17{height:21.280000pt;}
.h18{height:21.312000pt;}
.h12{height:21.440000pt;}
.h58{height:21.472000pt;}
.h19{height:22.560000pt;}
.h15{height:22.720000pt;}
.h25{height:23.244375pt;}
.ha{height:24.000000pt;}
.hc{height:24.032000pt;}
.h1e{height:26.400000pt;}
.h3e{height:26.426250pt;}
.h21{height:26.432000pt;}
.h13{height:26.560000pt;}
.h49{height:28.160000pt;}
.h4a{height:28.192000pt;}
.h24{height:29.885625pt;}
.h3c{height:32.000000pt;}
.h1f{height:32.788125pt;}
.h10{height:33.920000pt;}
.h11{height:34.080000pt;}
.hf{height:34.112000pt;}
.h45{height:35.360000pt;}
.h42{height:35.520000pt;}
.h44{height:35.552000pt;}
.h29{height:35.680000pt;}
.h48{height:35.712000pt;}
.h27{height:35.840000pt;}
.h2e{height:35.872000pt;}
.h3{height:37.080312pt;}
.h2{height:37.101250pt;}
.h2a{height:37.280000pt;}
.h2d{height:37.312000pt;}
.h3b{height:40.000000pt;}
.h14{height:40.618125pt;}
.he{height:41.507812pt;}
.hd{height:41.531250pt;}
.h1a{height:42.560000pt;}
.h53{height:42.592000pt;}
.h1b{height:42.720000pt;}
.h52{height:42.752000pt;}
.h1d{height:45.022500pt;}
.h3d{height:45.312000pt;}
.hb{height:45.935313pt;}
.h7{height:45.961250pt;}
.h4c{height:47.742188pt;}
.h37{height:48.000000pt;}
.h39{height:48.032000pt;}
.h4{height:50.062500pt;}
.h4d{height:50.916250pt;}
.h2c{height:53.600000pt;}
.h43{height:53.760000pt;}
.h2b{height:53.792000pt;}
.h1c{height:54.598989pt;}
.h3f{height:55.298750pt;}
.h6{height:55.375000pt;}
.h16{height:57.256875pt;}
.h23{height:58.563750pt;}
.h3a{height:60.288750pt;}
.h4b{height:60.519362pt;}
.h57{height:64.032000pt;}
.h20{height:64.788750pt;}
.h30{height:66.625000pt;}
.h33{height:72.032000pt;}
.h2f{height:77.951250pt;}
.h50{height:81.312000pt;}
.h8{height:83.062500pt;}
.h51{height:85.312000pt;}
.h36{height:98.080000pt;}
.h35{height:120.000000pt;}
.h59{height:120.512000pt;}
.h38{height:122.112000pt;}
.h56{height:128.032000pt;}
.h34{height:144.666667pt;}
.h54{height:170.746667pt;}
.h5{height:190.266667pt;}
.h55{height:234.626667pt;}
.h4e{height:793.280000pt;}
.h4f{height:793.333333pt;}
.h31{height:793.760000pt;}
.h32{height:794.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3a{width:27.520000pt;}
.w38{width:27.680000pt;}
.w30{width:27.712000pt;}
.w39{width:27.840000pt;}
.wa{width:31.680000pt;}
.w40{width:32.480000pt;}
.w7{width:33.920000pt;}
.w3d{width:46.560000pt;}
.w3c{width:46.720000pt;}
.w3e{width:46.880000pt;}
.w3f{width:48.512000pt;}
.w18{width:48.640000pt;}
.wb{width:52.480000pt;}
.w1b{width:53.280000pt;}
.w43{width:53.440000pt;}
.w36{width:56.480000pt;}
.w8{width:59.680000pt;}
.w42{width:71.200000pt;}
.w44{width:71.392000pt;}
.w12{width:72.640000pt;}
.w48{width:73.952000pt;}
.w46{width:82.432000pt;}
.w3b{width:84.480000pt;}
.w47{width:88.320000pt;}
.w14{width:93.312000pt;}
.w24{width:121.632000pt;}
.w2c{width:122.080000pt;}
.w34{width:126.592000pt;}
.w26{width:140.506667pt;}
.w33{width:141.760000pt;}
.w21{width:146.906667pt;}
.w35{width:156.826667pt;}
.w45{width:167.520000pt;}
.w10{width:169.786667pt;}
.w4{width:170.106667pt;}
.w32{width:185.786667pt;}
.w5{width:188.986667pt;}
.w2a{width:195.386667pt;}
.w9{width:199.426667pt;}
.w15{width:207.226667pt;}
.w31{width:230.106667pt;}
.wc{width:236.546667pt;}
.wf{width:244.066667pt;}
.w6{width:244.546667pt;}
.w11{width:245.346667pt;}
.w22{width:254.426667pt;}
.w1a{width:256.706667pt;}
.wd{width:259.106667pt;}
.w41{width:263.106667pt;}
.w28{width:272.866667pt;}
.w29{width:276.866667pt;}
.w27{width:281.506667pt;}
.w1c{width:293.026667pt;}
.w19{width:297.666667pt;}
.w2b{width:358.973333pt;}
.we{width:359.106667pt;}
.w16{width:395.773333pt;}
.w37{width:424.733333pt;}
.w20{width:434.146667pt;}
.w13{width:437.053333pt;}
.w25{width:462.493333pt;}
.w23{width:481.373333pt;}
.w2d{width:481.413333pt;}
.w3{width:603.333333pt;}
.w17{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.w1f{width:1122.559983pt;}
.w1d{width:1122.560000pt;}
.w1e{width:1122.666667pt;}
.w2f{width:1122.719983pt;}
.w2e{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x2f{left:9.920000pt;}
.x3b{left:11.520000pt;}
.x10{left:14.240000pt;}
.xc{left:17.760000pt;}
.x40{left:20.000000pt;}
.x4c{left:21.440000pt;}
.x39{left:23.680000pt;}
.x38{left:26.560000pt;}
.x42{left:31.360000pt;}
.x48{left:36.480000pt;}
.x4d{left:37.440000pt;}
.x3d{left:43.680000pt;}
.x43{left:47.360000pt;}
.x3{left:52.474667pt;}
.x44{left:63.360000pt;}
.x31{left:66.720000pt;}
.x2{left:94.591988pt;}
.x22{left:95.999983pt;}
.x1f{left:98.271988pt;}
.x32{left:100.031988pt;}
.x18{left:118.431988pt;}
.x35{left:122.912000pt;}
.x17{left:126.751988pt;}
.xd{left:128.512000pt;}
.x9{left:132.351988pt;}
.x1{left:140.986655pt;}
.x19{left:142.106655pt;}
.x7{left:143.074667pt;}
.x6{left:146.274667pt;}
.x21{left:148.506667pt;}
.x14{left:167.866667pt;}
.xe{left:188.186667pt;}
.x2c{left:191.706643pt;}
.x2d{left:196.346655pt;}
.x29{left:211.706643pt;}
.x5{left:213.634667pt;}
.x2a{left:216.346655pt;}
.x8{left:238.914667pt;}
.x4{left:246.754667pt;}
.xa{left:264.706667pt;}
.x1e{left:286.626655pt;}
.x16{left:302.466667pt;}
.x34{left:339.266667pt;}
.x36{left:353.026667pt;}
.x4f{left:358.946667pt;}
.x25{left:362.626643pt;}
.x26{left:367.266655pt;}
.xf{left:387.613333pt;}
.x11{left:419.293333pt;}
.x33{left:425.373333pt;}
.x50{left:430.786667pt;}
.x20{left:441.533333pt;}
.xb{left:453.693333pt;}
.x2b{left:457.533322pt;}
.x12{left:471.773333pt;}
.x51{left:484.866667pt;}
.x3f{left:520.253333pt;}
.x27{left:528.933310pt;}
.x23{left:530.786667pt;}
.x28{left:533.573322pt;}
.x37{left:538.813333pt;}
.x1a{left:541.733310pt;}
.x1b{left:546.373322pt;}
.x41{left:548.573333pt;}
.x30{left:557.733333pt;}
.x2e{left:576.613333pt;}
.x15{left:604.933333pt;}
.x1c{left:661.253310pt;}
.x1d{left:665.893322pt;}
.x24{left:677.693333pt;}
.x3a{left:680.573333pt;}
.x45{left:690.493333pt;}
.x46{left:718.653333pt;}
.x52{left:725.053333pt;}
.x47{left:747.013333pt;}
.x49{left:794.373333pt;}
.x3c{left:807.173333pt;}
.x53{left:808.133333pt;}
.x4a{left:841.573333pt;}
.x4b{left:889.253333pt;}
.x54{left:897.093333pt;}
.x4e{left:938.560000pt;}
.x3e{left:964.000000pt;}
}




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