
    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_8def3c13bfcd5d348c6f9d2b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5d64a3ed66f63e46c10ed62f.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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_4a6f2001447368fed110efa7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_017dbe180b5af202c5a186b0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_062c9a2eba2eb01da8b00e08.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_793e6c0df7b452fa4fc1cffe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_3b5f36547bfaf55881830e8b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_94bdb52eb8d871ac0e097f4a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_2a61775f5bdf472ae98d39aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_01c34b1a355157c5aa6d5583.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249866,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,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);}
.v1{vertical-align:-41.133346px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.ls29{letter-spacing:-2.048530px;}
.lsc{letter-spacing:-1.822650px;}
.ls21{letter-spacing:-1.797870px;}
.ls5{letter-spacing:-1.266720px;}
.ls1a{letter-spacing:-0.893990px;}
.ls28{letter-spacing:-0.468627px;}
.ls6{letter-spacing:-0.332806px;}
.ls26{letter-spacing:-0.016443px;}
.ls18{letter-spacing:-0.015661px;}
.lsb{letter-spacing:-0.014679px;}
.ls20{letter-spacing:-0.014431px;}
.ls2a{letter-spacing:-0.012332px;}
.ls23{letter-spacing:-0.010823px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.007216px;}
.ls9{letter-spacing:0.007340px;}
.ls14{letter-spacing:0.007831px;}
.ls24{letter-spacing:0.008222px;}
.ls1e{letter-spacing:0.010823px;}
.ls8{letter-spacing:0.011009px;}
.ls13{letter-spacing:0.011746px;}
.ls25{letter-spacing:0.012332px;}
.ls2d{letter-spacing:0.078600px;}
.ls16{letter-spacing:0.292341px;}
.ls1c{letter-spacing:0.608510px;}
.ls15{letter-spacing:0.660378px;}
.ls3{letter-spacing:0.902160px;}
.ls1f{letter-spacing:1.184550px;}
.lsa{letter-spacing:1.234264px;}
.ls2{letter-spacing:1.262160px;}
.ls11{letter-spacing:1.278360px;}
.ls2c{letter-spacing:1.548000px;}
.ls22{letter-spacing:1.797870px;}
.ls1d{letter-spacing:1.803883px;}
.lsd{letter-spacing:1.834882px;}
.ls2b{letter-spacing:1.928160px;}
.ls17{letter-spacing:1.951117px;}
.ls19{letter-spacing:1.957642px;}
.ls27{letter-spacing:2.055381px;}
.ls7{letter-spacing:2.111760px;}
.lsf{letter-spacing:2.250000px;}
.ls4{letter-spacing:2.316000px;}
.lse{letter-spacing:2.391120px;}
.ls10{letter-spacing:2.511120px;}
.ls12{letter-spacing:845.685360px;}
.ls0{letter-spacing:845.805360px;}
.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;}
}
.ws1{word-spacing:-14.888880px;}
.ws5c{word-spacing:-3.088320px;}
.ws8{word-spacing:-2.748240px;}
.ws4c{word-spacing:-2.289840px;}
.ws18{word-spacing:-2.150640px;}
.ws81{word-spacing:-1.440000px;}
.ws80{word-spacing:-1.422000px;}
.ws0{word-spacing:0.000000px;}
.ws3e{word-spacing:5.219400px;}
.ws63{word-spacing:6.482520px;}
.ws6f{word-spacing:9.086880px;}
.ws32{word-spacing:11.458560px;}
.ws65{word-spacing:11.463600px;}
.ws2f{word-spacing:12.417480px;}
.ws7e{word-spacing:12.675960px;}
.ws70{word-spacing:13.448160px;}
.ws21{word-spacing:13.489200px;}
.ws10{word-spacing:13.863720px;}
.ws44{word-spacing:14.670000px;}
.ws4f{word-spacing:14.989320px;}
.ws42{word-spacing:15.410280px;}
.ws23{word-spacing:15.418920px;}
.ws1d{word-spacing:17.426640px;}
.ws71{word-spacing:17.627400px;}
.ws1a{word-spacing:17.748000px;}
.ws1b{word-spacing:18.837000px;}
.ws14{word-spacing:19.261560px;}
.ws25{word-spacing:19.551960px;}
.ws6d{word-spacing:19.665000px;}
.ws76{word-spacing:21.248040px;}
.ws5f{word-spacing:21.258480px;}
.ws62{word-spacing:21.526920px;}
.ws2c{word-spacing:22.077720px;}
.ws2e{word-spacing:22.366800px;}
.ws2b{word-spacing:24.651000px;}
.ws41{word-spacing:24.774840px;}
.ws27{word-spacing:25.041240px;}
.ws3f{word-spacing:25.294680px;}
.ws3d{word-spacing:25.628520px;}
.ws24{word-spacing:25.870800px;}
.ws30{word-spacing:26.299440px;}
.ws7d{word-spacing:27.700320px;}
.ws26{word-spacing:27.943560px;}
.ws72{word-spacing:28.309800px;}
.ws77{word-spacing:28.523160px;}
.ws7{word-spacing:28.931520px;}
.ws16{word-spacing:28.965720px;}
.wsf{word-spacing:29.050920px;}
.ws19{word-spacing:29.263080px;}
.ws6c{word-spacing:29.352600px;}
.ws2{word-spacing:29.994240px;}
.wsc{word-spacing:30.233640px;}
.wsd{word-spacing:32.426640px;}
.ws68{word-spacing:32.558160px;}
.ws38{word-spacing:32.727960px;}
.ws29{word-spacing:33.275880px;}
.ws48{word-spacing:33.343920px;}
.wse{word-spacing:33.528720px;}
.ws75{word-spacing:33.602160px;}
.ws61{word-spacing:34.255560px;}
.ws3c{word-spacing:35.701200px;}
.ws4e{word-spacing:35.724360px;}
.ws54{word-spacing:36.515280px;}
.ws15{word-spacing:36.897120px;}
.ws50{word-spacing:38.000640px;}
.ws6{word-spacing:38.710200px;}
.ws6a{word-spacing:39.440280px;}
.ws28{word-spacing:39.657720px;}
.ws4b{word-spacing:39.681120px;}
.ws7a{word-spacing:39.688320px;}
.ws5d{word-spacing:40.703160px;}
.ws1e{word-spacing:41.741280px;}
.ws4a{word-spacing:41.832000px;}
.ws67{word-spacing:41.861640px;}
.wsa{word-spacing:42.620520px;}
.ws3b{word-spacing:42.951720px;}
.ws5{word-spacing:43.739640px;}
.wsb{word-spacing:44.292240px;}
.ws1c{word-spacing:44.451840px;}
.ws79{word-spacing:44.947800px;}
.ws69{word-spacing:45.526320px;}
.ws12{word-spacing:46.743600px;}
.ws7c{word-spacing:46.875960px;}
.ws2a{word-spacing:47.376120px;}
.ws5a{word-spacing:47.777760px;}
.ws53{word-spacing:48.355320px;}
.ws11{word-spacing:48.416040px;}
.ws47{word-spacing:48.763920px;}
.ws35{word-spacing:48.914640px;}
.ws17{word-spacing:49.069920px;}
.ws5b{word-spacing:49.490400px;}
.ws9{word-spacing:50.129400px;}
.ws5e{word-spacing:50.509800px;}
.ws59{word-spacing:50.637600px;}
.ws78{word-spacing:51.564240px;}
.ws3a{word-spacing:51.659280px;}
.ws56{word-spacing:52.154040px;}
.ws31{word-spacing:52.462200px;}
.ws52{word-spacing:52.809240px;}
.ws55{word-spacing:54.104040px;}
.ws2d{word-spacing:54.164280px;}
.ws74{word-spacing:54.388440px;}
.ws60{word-spacing:55.680480px;}
.ws33{word-spacing:55.819200px;}
.ws20{word-spacing:56.342880px;}
.ws57{word-spacing:57.013680px;}
.ws36{word-spacing:57.489600px;}
.ws51{word-spacing:57.927600px;}
.ws6e{word-spacing:58.270800px;}
.ws49{word-spacing:58.982520px;}
.ws39{word-spacing:59.606040px;}
.ws66{word-spacing:60.841080px;}
.ws4{word-spacing:60.906000px;}
.ws7f{word-spacing:61.122000px;}
.ws37{word-spacing:61.323960px;}
.ws34{word-spacing:61.675680px;}
.ws45{word-spacing:61.922880px;}
.ws73{word-spacing:63.431280px;}
.ws64{word-spacing:63.907680px;}
.ws58{word-spacing:64.303200px;}
.ws46{word-spacing:65.143920px;}
.ws3{word-spacing:67.980000px;}
.ws40{word-spacing:69.767400px;}
.ws43{word-spacing:69.914880px;}
.ws6b{word-spacing:70.750200px;}
.ws7b{word-spacing:70.907880px;}
.ws22{word-spacing:74.483760px;}
.ws13{word-spacing:76.515240px;}
.ws4d{word-spacing:83.741400px;}
.ws1f{word-spacing:93.558240px;}
._ab{margin-left:-12.808800px;}
._aa{margin-left:-11.659920px;}
._96{margin-left:-10.390320px;}
._bb{margin-left:-8.381880px;}
._77{margin-left:-7.140240px;}
._b7{margin-left:-5.971680px;}
._6d{margin-left:-3.759000px;}
._29{margin-left:-1.928880px;}
._59{width:1.232640px;}
._2{width:2.252880px;}
._37{width:3.471120px;}
._0{width:4.906200px;}
._40{width:5.951760px;}
._11{width:7.791120px;}
._1b{width:8.829360px;}
._6{width:10.512000px;}
._3f{width:11.674800px;}
._12{width:12.766080px;}
._67{width:13.866720px;}
._7{width:15.675120px;}
._1e{width:17.028000px;}
._1c{width:18.815400px;}
._85{width:20.484240px;}
._c{width:21.771360px;}
._10{width:23.793480px;}
._89{width:24.826800px;}
._16{width:25.982760px;}
._17{width:27.203160px;}
._ac{width:28.323360px;}
._14{width:29.414160px;}
._39{width:30.571560px;}
._13{width:31.887720px;}
._70{width:33.067920px;}
._27{width:34.113720px;}
._b{width:35.663520px;}
._2a{width:36.700200px;}
._52{width:38.483640px;}
._5b{width:40.006440px;}
._56{width:41.358720px;}
._ad{width:42.498000px;}
._46{width:43.894560px;}
._21{width:44.973720px;}
._50{width:46.140480px;}
._3b{width:47.451000px;}
._86{width:48.590640px;}
._d{width:49.872000px;}
._19{width:51.501240px;}
._3{width:52.605360px;}
._74{width:54.475560px;}
._1{width:55.518120px;}
._61{width:56.754720px;}
._48{width:58.052280px;}
._34{width:59.057760px;}
._7e{width:60.351840px;}
._3a{width:61.494360px;}
._36{width:62.616600px;}
._3c{width:64.182360px;}
._5f{width:65.259360px;}
._a7{width:66.266280px;}
._4b{width:67.530720px;}
._68{width:68.626920px;}
._63{width:70.150200px;}
._8{width:71.820000px;}
._38{width:73.994040px;}
._1f{width:75.570600px;}
._75{width:77.238840px;}
._b2{width:78.276600px;}
._4c{width:79.299120px;}
._41{width:81.265320px;}
._8c{width:82.553880px;}
._23{width:84.422640px;}
._b0{width:85.676160px;}
._22{width:87.414600px;}
._44{width:88.590720px;}
._7f{width:90.219360px;}
._20{width:91.910280px;}
._9b{width:93.556971px;}
._49{width:94.872360px;}
._60{width:95.961000px;}
._28{width:97.539960px;}
._a{width:98.724000px;}
._5{width:100.344000px;}
._2c{width:101.507520px;}
._53{width:102.900720px;}
._1d{width:104.148120px;}
._7d{width:105.933360px;}
._2f{width:107.773080px;}
._2e{width:108.963360px;}
._98{width:110.135640px;}
._26{width:111.742920px;}
._91{width:112.978200px;}
._bd{width:114.690000px;}
._2b{width:116.006520px;}
._30{width:117.951240px;}
._31{width:120.015840px;}
._93{width:121.080000px;}
._c0{width:122.502000px;}
._64{width:123.503880px;}
._9e{width:125.215320px;}
._62{width:126.372360px;}
._6f{width:127.390560px;}
._9f{width:128.501040px;}
._8d{width:131.383560px;}
._9{width:132.420000px;}
._af{width:133.621800px;}
._5e{width:136.257000px;}
._55{width:137.347320px;}
._92{width:138.520920px;}
._7c{width:139.766400px;}
._73{width:140.826000px;}
._2d{width:142.302720px;}
._a2{width:143.323608px;}
._4d{width:144.404400px;}
._a0{width:145.481520px;}
._15{width:146.616600px;}
._42{width:148.175400px;}
._7b{width:150.569400px;}
._5a{width:152.092320px;}
._b1{width:154.208640px;}
._35{width:155.476560px;}
._3d{width:161.894040px;}
._1a{width:163.673880px;}
._4a{width:165.103080px;}
._45{width:166.516800px;}
._b5{width:169.086000px;}
._82{width:171.917880px;}
._6b{width:174.472800px;}
._bf{width:176.298000px;}
._90{width:178.635720px;}
._79{width:180.118200px;}
._be{width:181.181760px;}
._a4{width:183.339960px;}
._a6{width:185.035560px;}
._51{width:188.364480px;}
._32{width:189.870000px;}
._5c{width:193.402680px;}
._5d{width:196.452240px;}
._99{width:197.488560px;}
._9d{width:201.347160px;}
._f{width:203.639640px;}
._78{width:205.693440px;}
._a3{width:207.943440px;}
._8e{width:210.019560px;}
._9c{width:211.578720px;}
._e{width:214.460160px;}
._43{width:216.500280px;}
._bc{width:219.534000px;}
._4f{width:220.545960px;}
._83{width:221.927280px;}
._72{width:223.589280px;}
._8b{width:228.366960px;}
._88{width:233.909400px;}
._ba{width:235.104000px;}
._4{width:236.255640px;}
._66{width:238.618680px;}
._b8{width:239.784000px;}
._97{width:241.212960px;}
._47{width:243.070680px;}
._33{width:246.586680px;}
._94{width:249.125640px;}
._6a{width:254.570640px;}
._80{width:255.710400px;}
._65{width:262.790880px;}
._8a{width:263.798160px;}
._8f{width:268.899677px;}
._b9{width:273.114000px;}
._a1{width:278.543880px;}
._ae{width:280.145040px;}
._25{width:281.941440px;}
._b6{width:286.152000px;}
._3e{width:287.605680px;}
._6c{width:288.945720px;}
._4e{width:290.219040px;}
._9a{width:293.528160px;}
._24{width:296.344080px;}
._81{width:300.772800px;}
._b3{width:306.882000px;}
._a5{width:310.623720px;}
._a9{width:313.017480px;}
._7a{width:315.838440px;}
._84{width:316.845720px;}
._58{width:318.888360px;}
._18{width:321.308280px;}
._b4{width:340.740000px;}
._87{width:345.824280px;}
._57{width:348.826920px;}
._6e{width:364.599000px;}
._a8{width:367.514280px;}
._95{width:369.882720px;}
._76{width:377.500680px;}
._71{width:388.957080px;}
._69{width:413.548920px;}
._54{width:554.117760px;}
.fc1{color:transparent;}
.fc2{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:32.469896px;}
.fs10{font-size:33.027879px;}
.fsa{font-size:33.120000px;}
.fsc{font-size:33.654556px;}
.fs13{font-size:34.251134px;}
.fs14{font-size:35.237561px;}
.fs9{font-size:36.000000px;}
.fs1a{font-size:36.996860px;}
.fs8{font-size:38.880000px;}
.fs18{font-size:39.685429px;}
.fs11{font-size:40.367407px;}
.fsf{font-size:42.068195px;}
.fs15{font-size:43.068130px;}
.fs1b{font-size:45.218384px;}
.fs19{font-size:46.900962px;}
.fsd{font-size:47.677287px;}
.fs12{font-size:47.706936px;}
.fs6{font-size:47.880000px;}
.fs16{font-size:50.898699px;}
.fs1c{font-size:53.439908px;}
.fsb{font-size:54.000000px;}
.fse{font-size:58.895472px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:96.120000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:119.880000px;}
.fs2{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y250{bottom:2.970000px;}
.y27b{bottom:3.000000px;}
.y171{bottom:3.535096px;}
.y1ec{bottom:3.858581px;}
.y20d{bottom:4.159219px;}
.y33c{bottom:4.410000px;}
.y324{bottom:4.680000px;}
.yaa{bottom:5.102881px;}
.y100{bottom:5.759940px;}
.ye2{bottom:6.677381px;}
.y23e{bottom:7.479806px;}
.y347{bottom:14.490000px;}
.y20c{bottom:15.283168px;}
.y1eb{bottom:15.283177px;}
.y170{bottom:15.933336px;}
.yff{bottom:17.381013px;}
.ye1{bottom:18.298454px;}
.y23d{bottom:20.497391px;}
.y262{bottom:20.880000px;}
.y255{bottom:20.970000px;}
.y265{bottom:21.000000px;}
.y33b{bottom:24.480000px;}
.y34b{bottom:24.510000px;}
.y33f{bottom:24.570000px;}
.y323{bottom:24.750000px;}
.y32d{bottom:24.840000px;}
.y1ee{bottom:29.413587px;}
.y1cd{bottom:29.413596px;}
.y152{bottom:31.268855px;}
.ye4{bottom:32.060070px;}
.yc3{bottom:32.671698px;}
.y346{bottom:34.650000px;}
.y21f{bottom:36.597876px;}
.y25e{bottom:38.970000px;}
.y1ce{bottom:40.537543px;}
.y1ef{bottom:40.838181px;}
.y153{bottom:43.340983px;}
.yc4{bottom:43.986804px;}
.y33a{bottom:44.640000px;}
.y34a{bottom:44.670000px;}
.y33e{bottom:44.730000px;}
.y322{bottom:44.910000px;}
.y32a{bottom:45.000000px;}
.y220{bottom:49.272726px;}
.y240{bottom:49.615289px;}
.y1f0{bottom:51.962127px;}
.y1cf{bottom:51.962135px;}
.y345{bottom:54.810000px;}
.yc5{bottom:55.607725px;}
.y154{bottom:55.739383px;}
.yb2{bottom:55.819011px;}
.y221{bottom:62.290140px;}
.y1d0{bottom:63.086081px;}
.y1f1{bottom:63.386719px;}
.y339{bottom:64.800000px;}
.y349{bottom:64.830000px;}
.y341{bottom:64.890000px;}
.y321{bottom:65.070000px;}
.y332{bottom:65.100000px;}
.y329{bottom:65.160000px;}
.yc6{bottom:66.922831px;}
.ye5{bottom:67.534459px;}
.y18{bottom:67.680000px;}
.y155{bottom:67.811510px;}
.y1f2{bottom:74.510665px;}
.y1d1{bottom:74.510674px;}
.y344{bottom:74.880000px;}
.y222{bottom:74.964990px;}
.y241{bottom:75.307553px;}
.yb1{bottom:76.151974px;}
.yc7{bottom:78.543752px;}
.ye6{bottom:79.461193px;}
.y156{bottom:80.209912px;}
.y343{bottom:84.960000px;}
.y320{bottom:85.230000px;}
.y331{bottom:85.260000px;}
.y328{bottom:85.320000px;}
.y1d2{bottom:85.634622px;}
.y1f3{bottom:85.935259px;}
.y223{bottom:87.982403px;}
.yc8{bottom:89.858858px;}
.ye7{bottom:91.387927px;}
.y157{bottom:92.282039px;}
.y17{bottom:95.670000px;}
.y1f4{bottom:97.059204px;}
.y1d3{bottom:97.059214px;}
.y224{bottom:100.657253px;}
.y242{bottom:100.999817px;}
.yc9{bottom:101.479778px;}
.ye8{bottom:103.314661px;}
.y158{bottom:104.680440px;}
.y31f{bottom:105.390000px;}
.y330{bottom:105.420000px;}
.y1d4{bottom:108.183161px;}
.y1f5{bottom:108.483798px;}
.y9b{bottom:112.050000px;}
.y38{bottom:112.410000px;}
.yca{bottom:112.794885px;}
.y225{bottom:113.674667px;}
.ye9{bottom:114.935581px;}
.ybd{bottom:116.550000px;}
.y159{bottom:116.752567px;}
.yc1{bottom:116.910000px;}
.yc2{bottom:118.022548px;}
.y1f6{bottom:119.607744px;}
.y1d5{bottom:119.607753px;}
.y65{bottom:121.770000px;}
.y31d{bottom:122.490000px;}
.ycb{bottom:124.415805px;}
.y293{bottom:124.740000px;}
.y32f{bottom:125.490000px;}
.y327{bottom:125.550000px;}
.y226{bottom:126.349517px;}
.y243{bottom:126.692080px;}
.yea{bottom:126.862315px;}
.yb0{bottom:127.333778px;}
.y92{bottom:128.160000px;}
.y15a{bottom:129.150968px;}
.y9a{bottom:130.050000px;}
.y1d6{bottom:130.731699px;}
.y1f7{bottom:131.032336px;}
.y37{bottom:132.480000px;}
.y99{bottom:134.550000px;}
.ycc{bottom:135.730912px;}
.y21d{bottom:136.170000px;}
.yeb{bottom:138.789049px;}
.y227{bottom:139.366930px;}
.y31c{bottom:140.490000px;}
.y15b{bottom:141.223096px;}
.y1f8{bottom:142.156284px;}
.y1d7{bottom:142.156293px;}
.ybc{bottom:142.650000px;}
.y2ea{bottom:143.640000px;}
.y7b{bottom:144.720000px;}
.y186{bottom:145.080000px;}
.y333{bottom:145.650000px;}
.y326{bottom:145.710000px;}
.ycd{bottom:147.351832px;}
.y27f{bottom:148.230000px;}
.yec{bottom:150.715783px;}
.y228{bottom:152.041781px;}
.y244{bottom:152.384344px;}
.y36{bottom:152.460000px;}
.y1d8{bottom:153.287755px;}
.y1f9{bottom:153.588392px;}
.y15c{bottom:153.621496px;}
.y64{bottom:154.800000px;}
.y35{bottom:157.680000px;}
.y292{bottom:157.770000px;}
.y31b{bottom:158.490000px;}
.yce{bottom:158.665410px;}
.y98{bottom:160.650000px;}
.y91{bottom:161.190000px;}
.yed{bottom:162.640988px;}
.y2e9{bottom:163.080000px;}
.y1fa{bottom:164.712339px;}
.y1d9{bottom:164.712347px;}
.y229{bottom:165.059194px;}
.y15d{bottom:165.688730px;}
.y2b6{bottom:165.690000px;}
.y32c{bottom:165.870000px;}
.y27e{bottom:166.950000px;}
.ycf{bottom:170.286330px;}
.yee{bottom:174.261908px;}
.y1da{bottom:175.836295px;}
.y1fb{bottom:176.136933px;}
.y31a{bottom:176.490000px;}
.y7a{bottom:177.660000px;}
.y22a{bottom:177.732331px;}
.y15e{bottom:177.760857px;}
.y245{bottom:178.074895px;}
.y185{bottom:180.810000px;}
.y2e8{bottom:181.080000px;}
.y21c{bottom:181.170000px;}
.yd0{bottom:181.601437px;}
.y52{bottom:181.800000px;}
.y2b5{bottom:183.690000px;}
.y34{bottom:184.680000px;}
.y32b{bottom:186.030000px;}
.yef{bottom:186.188642px;}
.y27d{bottom:186.480000px;}
.y1fc{bottom:187.260877px;}
.y1db{bottom:187.260888px;}
.y63{bottom:187.740000px;}
.y15f{bottom:190.159257px;}
.y291{bottom:190.710000px;}
.y22b{bottom:190.749745px;}
.yd1{bottom:193.222357px;}
.y319{bottom:194.490000px;}
.yf0{bottom:198.115376px;}
.y1dc{bottom:198.384833px;}
.y1fd{bottom:198.685472px;}
.yae{bottom:199.317136px;}
.y2e7{bottom:200.610000px;}
.yaf{bottom:201.420548px;}
.y97{bottom:201.690000px;}
.y160{bottom:202.231384px;}
.y90{bottom:203.130000px;}
.y22c{bottom:203.424595px;}
.y246{bottom:203.767159px;}
.yd2{bottom:204.537464px;}
.y27c{bottom:205.200000px;}
.y10e{bottom:208.080000px;}
.y1dd{bottom:209.508780px;}
.y1fe{bottom:209.809417px;}
.yf1{bottom:210.042110px;}
.ya0{bottom:210.060000px;}
.y79{bottom:210.690000px;}
.y318{bottom:212.490000px;}
.y21b{bottom:214.110000px;}
.y161{bottom:214.629785px;}
.y51{bottom:214.740000px;}
.yd3{bottom:216.158384px;}
.y22d{bottom:216.442009px;}
.y2e6{bottom:218.610000px;}
.y62{bottom:220.770000px;}
.y1de{bottom:220.933372px;}
.y2b4{bottom:221.130000px;}
.y1ff{bottom:221.234010px;}
.yf2{bottom:221.968844px;}
.y290{bottom:223.740000px;}
.y27a{bottom:224.010000px;}
.y184{bottom:225.840000px;}
.y162{bottom:226.701913px;}
.yd4{bottom:227.473491px;}
.y22e{bottom:229.116859px;}
.y247{bottom:229.459422px;}
.y317{bottom:230.520000px;}
.y1df{bottom:232.057319px;}
.y200{bottom:232.357956px;}
.y33{bottom:232.770000px;}
.yf3{bottom:233.589765px;}
.y96{bottom:234.750000px;}
.y8f{bottom:236.190000px;}
.yac{bottom:237.645941px;}
.y2e5{bottom:238.080000px;}
.yd5{bottom:239.094411px;}
.y163{bottom:239.100315px;}
.y2b3{bottom:239.160000px;}
.y10d{bottom:240.240000px;}
.y10f{bottom:240.439876px;}
.y22f{bottom:242.134272px;}
.y279{bottom:242.760000px;}
.y201{bottom:243.481902px;}
.y1e0{bottom:243.481912px;}
.y78{bottom:243.750000px;}
.yf4{bottom:245.516499px;}
.yab{bottom:245.592152px;}
.yad{bottom:246.527006px;}
.y21a{bottom:247.080000px;}
.y50{bottom:247.800000px;}
.y9f{bottom:248.430000px;}
.y316{bottom:248.520000px;}
.ya1{bottom:249.592781px;}
.yd6{bottom:250.409518px;}
.y164{bottom:251.172441px;}
.y189{bottom:252.840000px;}
.y337{bottom:254.190000px;}
.y1e1{bottom:254.605858px;}
.y230{bottom:254.809122px;}
.y202{bottom:254.906495px;}
.y248{bottom:255.151686px;}
.y2e4{bottom:256.080000px;}
.yf5{bottom:257.443233px;}
.y183{bottom:258.690000px;}
.y278{bottom:261.480000px;}
.yd7{bottom:262.030438px;}
.y165{bottom:263.570842px;}
.y61{bottom:265.170000px;}
.y32{bottom:265.800000px;}
.y203{bottom:266.030441px;}
.y1e2{bottom:266.030451px;}
.y315{bottom:266.520000px;}
.y95{bottom:267.690000px;}
.y231{bottom:267.826536px;}
.ya3{bottom:268.495944px;}
.y28f{bottom:268.860000px;}
.y8e{bottom:269.130000px;}
.yf6{bottom:269.369967px;}
.yd8{bottom:273.345545px;}
.y2e3{bottom:275.610000px;}
.y166{bottom:275.642969px;}
.y77{bottom:276.690000px;}
.y1e3{bottom:277.154397px;}
.y204{bottom:277.455035px;}
.y219{bottom:280.110000px;}
.y277{bottom:280.290000px;}
.y232{bottom:280.501386px;}
.y4f{bottom:280.740000px;}
.y249{bottom:280.843949px;}
.yf7{bottom:281.296701px;}
.ya2{bottom:282.284963px;}
.y314{bottom:284.520000px;}
.yd9{bottom:284.966465px;}
.y188{bottom:284.970000px;}
.y18a{bottom:286.107926px;}
.y167{bottom:288.041370px;}
.y205{bottom:288.578980px;}
.y1e4{bottom:288.578990px;}
.y336{bottom:290.010000px;}
.y182{bottom:291.720000px;}
.yf8{bottom:292.917621px;}
.y233{bottom:293.518799px;}
.y2e2{bottom:293.610000px;}
.y2b2{bottom:296.130000px;}
.yda{bottom:296.281572px;}
.y31{bottom:298.740000px;}
.y276{bottom:299.010000px;}
.y1e5{bottom:299.702936px;}
.y206{bottom:300.003574px;}
.y168{bottom:300.113497px;}
.y94{bottom:300.720000px;}
.y28e{bottom:301.800000px;}
.y8d{bottom:302.160000px;}
.y313{bottom:302.430000px;}
.yf9{bottom:304.844355px;}
.y234{bottom:306.193650px;}
.y24a{bottom:306.536213px;}
.ydb{bottom:307.902492px;}
.y335{bottom:309.090000px;}
.y76{bottom:309.720000px;}
.y207{bottom:311.127520px;}
.y1e6{bottom:311.127530px;}
.y169{bottom:312.511898px;}
.y218{bottom:313.050000px;}
.y2e1{bottom:313.140000px;}
.y4e{bottom:313.770000px;}
.y2b1{bottom:314.130000px;}
.yfa{bottom:316.771089px;}
.y275{bottom:317.730000px;}
.y235{bottom:319.211063px;}
.ydc{bottom:319.217599px;}
.y312{bottom:320.430000px;}
.y1e7{bottom:322.251475px;}
.y208{bottom:322.552113px;}
.y16a{bottom:324.584026px;}
.y181{bottom:324.660000px;}
.yfb{bottom:328.697823px;}
.ydd{bottom:330.838519px;}
.y2e0{bottom:331.140000px;}
.y30{bottom:331.770000px;}
.y236{bottom:331.885913px;}
.y24b{bottom:332.228477px;}
.y2b0{bottom:333.660000px;}
.y209{bottom:333.676059px;}
.y1e8{bottom:333.676068px;}
.y15{bottom:334.380000px;}
.y28d{bottom:334.740000px;}
.y8c{bottom:335.190000px;}
.y16b{bottom:336.982427px;}
.y311{bottom:339.240000px;}
.yfc{bottom:340.318744px;}
.yde{bottom:342.153626px;}
.y60{bottom:342.660000px;}
.y1e9{bottom:344.800014px;}
.y237{bottom:344.903327px;}
.y20a{bottom:345.100653px;}
.y217{bottom:346.080000px;}
.y4d{bottom:346.710000px;}
.y16c{bottom:349.054554px;}
.y2df{bottom:350.580000px;}
.y75{bottom:351.660000px;}
.yfd{bottom:352.245478px;}
.y274{bottom:353.730000px;}
.ydf{bottom:353.774546px;}
.y20b{bottom:356.224598px;}
.y1ea{bottom:356.224608px;}
.y238{bottom:357.578177px;}
.y180{bottom:357.690000px;}
.y24c{bottom:357.920740px;}
.y310{bottom:357.960000px;}
.y16d{bottom:361.452956px;}
.yfe{bottom:364.172212px;}
.ye0{bottom:365.089653px;}
.y14{bottom:367.320000px;}
.y28c{bottom:367.770000px;}
.y8b{bottom:368.130000px;}
.y2de{bottom:368.580000px;}
.y239{bottom:370.595590px;}
.y20e{bottom:370.655662px;}
.y1ed{bottom:370.655671px;}
.y2af{bottom:371.190000px;}
.y273{bottom:372.540000px;}
.y16e{bottom:373.525082px;}
.y2e{bottom:373.710000px;}
.y5f{bottom:375.690000px;}
.y30f{bottom:375.960000px;}
.y216{bottom:379.020000px;}
.y2f{bottom:379.740000px;}
.y101{bottom:381.909406px;}
.ye3{bottom:382.826847px;}
.y23a{bottom:383.270440px;}
.y24d{bottom:383.613004px;}
.y74{bottom:384.690000px;}
.y1aa{bottom:384.786087px;}
.y1cb{bottom:385.086725px;}
.y16f{bottom:385.923483px;}
.y2dd{bottom:388.110000px;}
.y2ae{bottom:389.190000px;}
.y17f{bottom:390.630000px;}
.y272{bottom:391.260000px;}
.y30e{bottom:393.960000px;}
.y1a9{bottom:396.210681px;}
.y23b{bottom:396.287854px;}
.y1ca{bottom:396.511319px;}
.y13{bottom:400.260000px;}
.y28b{bottom:400.710000px;}
.y8a{bottom:401.160000px;}
.y172{bottom:404.521083px;}
.y2dc{bottom:406.110000px;}
.y2d{bottom:406.740000px;}
.y5e{bottom:408.630000px;}
.y23c{bottom:408.962704px;}
.y24e{bottom:409.305268px;}
.y271{bottom:409.980000px;}
.y18b{bottom:410.341102px;}
.y1ac{bottom:410.641740px;}
.y30d{bottom:411.960000px;}
.y215{bottom:412.050000px;}
.y4c{bottom:412.770000px;}
.y73{bottom:417.630000px;}
.ybb{bottom:417.720000px;}
.y150{bottom:421.161034px;}
.y12f{bottom:421.161044px;}
.y18c{bottom:421.465048px;}
.y1ad{bottom:422.066333px;}
.y17e{bottom:423.660000px;}
.y2db{bottom:424.110000px;}
.y2ad{bottom:426.630000px;}
.y270{bottom:428.790000px;}
.y23f{bottom:428.831388px;}
.y30c{bottom:429.960000px;}
.y334{bottom:430.680000px;}
.y18d{bottom:432.889641px;}
.y1ae{bottom:433.190279px;}
.y12{bottom:433.290000px;}
.y14f{bottom:433.559438px;}
.y12e{bottom:433.559447px;}
.y28a{bottom:433.740000px;}
.y89{bottom:434.100000px;}
.y2c{bottom:439.770000px;}
.y5d{bottom:441.660000px;}
.y2da{bottom:443.550000px;}
.y18e{bottom:444.013588px;}
.y1af{bottom:444.614873px;}
.y214{bottom:445.080000px;}
.y4b{bottom:445.710000px;}
.y2ac{bottom:446.160000px;}
.y26f{bottom:447.510000px;}
.y30b{bottom:447.960000px;}
.y131{bottom:448.894304px;}
.y110{bottom:448.894315px;}
.y72{bottom:450.660000px;}
.ya6{bottom:454.530849px;}
.y18f{bottom:455.438180px;}
.y1b0{bottom:455.738819px;}
.y17d{bottom:456.690000px;}
.yba{bottom:459.660000px;}
.y132{bottom:460.966433px;}
.y111{bottom:461.292715px;}
.y2d9{bottom:461.550000px;}
.y2ab{bottom:464.160000px;}
.ya7{bottom:464.814192px;}
.y30a{bottom:465.960000px;}
.y26e{bottom:466.230000px;}
.y11{bottom:466.320000px;}
.y190{bottom:466.562126px;}
.y289{bottom:466.680000px;}
.y88{bottom:467.130000px;}
.y1b1{bottom:467.163411px;}
.y2b{bottom:472.710000px;}
.y133{bottom:473.364833px;}
.y112{bottom:473.364842px;}
.y5c{bottom:474.690000px;}
.y191{bottom:477.986720px;}
.y213{bottom:478.020000px;}
.y1b2{bottom:478.287357px;}
.y4a{bottom:478.740000px;}
.y2d8{bottom:481.080000px;}
.y2aa{bottom:483.600000px;}
.y71{bottom:483.690000px;}
.y309{bottom:483.960000px;}
.y26d{bottom:485.040000px;}
.y134{bottom:485.436959px;}
.y113{bottom:485.763244px;}
.y192{bottom:489.110666px;}
.y1b3{bottom:489.411304px;}
.y17c{bottom:489.630000px;}
.yb9{bottom:492.690000px;}
.y135{bottom:497.835360px;}
.y114{bottom:497.835371px;}
.y2d7{bottom:499.080000px;}
.y10{bottom:499.260000px;}
.y288{bottom:499.710000px;}
.y87{bottom:500.070000px;}
.y193{bottom:500.234613px;}
.y1b4{bottom:500.835898px;}
.y2a9{bottom:501.600000px;}
.y308{bottom:501.960000px;}
.y26c{bottom:503.760000px;}
.y2a{bottom:505.740000px;}
.y5b{bottom:507.630000px;}
.y9e{bottom:509.700000px;}
.y136{bottom:509.907488px;}
.y115{bottom:510.233771px;}
.y212{bottom:511.050000px;}
.y194{bottom:511.659205px;}
.y49{bottom:511.680000px;}
.y1b5{bottom:511.959842px;}
.y70{bottom:516.630000px;}
.y2d6{bottom:518.520000px;}
.y2a8{bottom:519.600000px;}
.y307{bottom:519.960000px;}
.ya5{bottom:520.203970px;}
.y137{bottom:522.305889px;}
.y116{bottom:522.305899px;}
.y26b{bottom:522.480000px;}
.y10b{bottom:522.750000px;}
.y195{bottom:522.783152px;}
.y1b6{bottom:523.384435px;}
.yb8{bottom:525.630000px;}
.yf{bottom:532.290000px;}
.y287{bottom:532.740000px;}
.y196{bottom:534.207744px;}
.y138{bottom:534.378015px;}
.y1b7{bottom:534.508381px;}
.y117{bottom:534.704300px;}
.y17b{bottom:534.720000px;}
.ya4{bottom:535.862693px;}
.y306{bottom:537.870000px;}
.y2d5{bottom:538.050000px;}
.y29{bottom:538.680000px;}
.y2a7{bottom:539.130000px;}
.y5a{bottom:540.660000px;}
.y26a{bottom:541.290000px;}
.y211{bottom:543.990000px;}
.y86{bottom:544.440000px;}
.y48{bottom:544.710000px;}
.y197{bottom:545.331690px;}
.y9d{bottom:545.430000px;}
.y1b8{bottom:545.932975px;}
.y139{bottom:546.776417px;}
.y118{bottom:546.776427px;}
.y6f{bottom:549.660000px;}
.y10a{bottom:555.600000px;}
.y305{bottom:555.870000px;}
.y2d4{bottom:556.050000px;}
.y198{bottom:556.756284px;}
.y1b9{bottom:557.056922px;}
.y2a6{bottom:557.130000px;}
.yb7{bottom:558.660000px;}
.y13a{bottom:558.848544px;}
.y119{bottom:559.174828px;}
.y269{bottom:560.010000px;}
.ye{bottom:565.230000px;}
.y286{bottom:565.680000px;}
.y17a{bottom:567.660000px;}
.y199{bottom:567.880229px;}
.y1ba{bottom:568.481515px;}
.y13b{bottom:571.246944px;}
.y11a{bottom:571.246955px;}
.y28{bottom:571.710000px;}
.y34d{bottom:572.880000px;}
.y59{bottom:573.600000px;}
.y304{bottom:573.870000px;}
.y2d3{bottom:574.050000px;}
.y2a5{bottom:575.130000px;}
.y210{bottom:577.020000px;}
.y47{bottom:577.650000px;}
.y268{bottom:578.730000px;}
.y19a{bottom:579.304822px;}
.y1bb{bottom:579.605460px;}
.yc0{bottom:580.710000px;}
.y6e{bottom:582.600000px;}
.y13c{bottom:583.319072px;}
.y11b{bottom:583.645356px;}
.y9c{bottom:583.770000px;}
.y109{bottom:588.630000px;}
.y19b{bottom:590.428768px;}
.y1bc{bottom:591.030053px;}
.yb6{bottom:591.600000px;}
.y303{bottom:591.870000px;}
.y32e{bottom:592.590000px;}
.y2d2{bottom:593.490000px;}
.y2a4{bottom:594.570000px;}
.y13d{bottom:595.717474px;}
.y11c{bottom:595.717483px;}
.y267{bottom:597.540000px;}
.yd{bottom:598.260000px;}
.y285{bottom:598.710000px;}
.y179{bottom:600.600000px;}
.y19c{bottom:601.853362px;}
.y1bd{bottom:602.154000px;}
.y27{bottom:604.650000px;}
.y58{bottom:606.630000px;}
.y13e{bottom:607.789599px;}
.y11d{bottom:608.115884px;}
.y34c{bottom:608.610000px;}
.y20f{bottom:609.150000px;}
.y21e{bottom:609.587184px;}
.y302{bottom:609.870000px;}
.y46{bottom:610.680000px;}
.y2d1{bottom:611.490000px;}
.y2a3{bottom:612.570000px;}
.y19d{bottom:612.977308px;}
.y1be{bottom:613.578594px;}
.ybf{bottom:613.650000px;}
.y85{bottom:614.370000px;}
.y6d{bottom:615.630000px;}
.y266{bottom:616.260000px;}
.y13f{bottom:620.188001px;}
.y11e{bottom:620.188013px;}
.y108{bottom:621.570000px;}
.y19e{bottom:624.401901px;}
.yb5{bottom:624.630000px;}
.y1bf{bottom:624.702539px;}
.y348{bottom:627.780000px;}
.y301{bottom:627.870000px;}
.y2d0{bottom:629.490000px;}
.yc{bottom:631.200000px;}
.y2a2{bottom:632.100000px;}
.y140{bottom:632.260128px;}
.y11f{bottom:632.586413px;}
.y178{bottom:633.630000px;}
.y264{bottom:634.980000px;}
.y19f{bottom:635.525846px;}
.y1c0{bottom:636.127133px;}
.y26{bottom:637.680000px;}
.y84{bottom:639.660000px;}
.y284{bottom:642.990000px;}
.y45{bottom:643.710000px;}
.y141{bottom:644.658530px;}
.y120{bottom:644.658539px;}
.y300{bottom:645.900000px;}
.ybe{bottom:646.710000px;}
.y1a0{bottom:646.950440px;}
.y1c1{bottom:647.251077px;}
.y57{bottom:648.600000px;}
.y2cf{bottom:649.050000px;}
.y2a1{bottom:650.130000px;}
.y107{bottom:654.630000px;}
.y142{bottom:656.730657px;}
.y121{bottom:657.056940px;}
.yb4{bottom:657.600000px;}
.y1a1{bottom:658.074386px;}
.y1c2{bottom:658.675672px;}
.y2ff{bottom:663.900000px;}
.yb{bottom:664.260000px;}
.y177{bottom:666.600000px;}
.y2ce{bottom:667.050000px;}
.y2a0{bottom:668.130000px;}
.y143{bottom:669.129057px;}
.y122{bottom:669.129069px;}
.y1a2{bottom:669.498980px;}
.y1c3{bottom:669.799618px;}
.y263{bottom:671.010000px;}
.ya9{bottom:674.921451px;}
.y44{bottom:676.680000px;}
.y25{bottom:679.740000px;}
.y1a3{bottom:680.622925px;}
.y144{bottom:681.201184px;}
.y1c4{bottom:681.224210px;}
.y123{bottom:681.527468px;}
.y56{bottom:681.630000px;}
.y2fe{bottom:681.900000px;}
.y29f{bottom:686.130000px;}
.y2cd{bottom:686.580000px;}
.y93{bottom:687.660000px;}
.y261{bottom:689.820000px;}
.y6c{bottom:690.630000px;}
.y1a4{bottom:692.047519px;}
.y1c5{bottom:692.348156px;}
.y145{bottom:693.599585px;}
.y124{bottom:693.599596px;}
.y176{bottom:699.630000px;}
.y2fd{bottom:699.900000px;}
.ya{bottom:700.530000px;}
.y1a5{bottom:703.171464px;}
.y1c6{bottom:703.472102px;}
.y2cc{bottom:704.580000px;}
.y29e{bottom:705.570000px;}
.y146{bottom:705.671713px;}
.y125{bottom:705.997998px;}
.y342{bottom:709.080000px;}
.y43{bottom:709.710000px;}
.y24{bottom:712.680000px;}
.y1a6{bottom:714.295411px;}
.y83{bottom:714.660000px;}
.y1c7{bottom:714.896695px;}
.y147{bottom:717.743841px;}
.y2fc{bottom:717.900000px;}
.y126{bottom:718.070125px;}
.y106{bottom:720.600000px;}
.y283{bottom:720.690000px;}
.y29d{bottom:723.570000px;}
.y55{bottom:723.660000px;}
.y2cb{bottom:724.020000px;}
.y1a7{bottom:725.720004px;}
.y260{bottom:725.730000px;}
.y1c8{bottom:726.020642px;}
.y148{bottom:730.142241px;}
.y127{bottom:730.468524px;}
.y175{bottom:732.660000px;}
.y2fb{bottom:735.900000px;}
.y1a8{bottom:736.843951px;}
.y1c9{bottom:737.445235px;}
.y149{bottom:742.214369px;}
.y128{bottom:742.540652px;}
.y29c{bottom:743.100000px;}
.y2ca{bottom:743.550000px;}
.y9{bottom:744.000000px;}
.y25f{bottom:744.540000px;}
.y23{bottom:745.710000px;}
.y82{bottom:747.600000px;}
.y1ab{bottom:751.575661px;}
.y1cc{bottom:751.876299px;}
.y105{bottom:753.630000px;}
.y2fa{bottom:753.900000px;}
.y42{bottom:754.080000px;}
.y325{bottom:754.440000px;}
.y14a{bottom:754.612769px;}
.y129{bottom:754.612780px;}
.y54{bottom:756.600000px;}
.y29b{bottom:761.100000px;}
.y2c9{bottom:761.550000px;}
.y25d{bottom:763.260000px;}
.y174{bottom:765.600000px;}
.y14b{bottom:766.684896px;}
.y12a{bottom:767.011180px;}
.y2f9{bottom:771.900000px;}
.y22{bottom:778.650000px;}
.y14c{bottom:779.083297px;}
.y12b{bottom:779.083308px;}
.y8{bottom:779.730000px;}
.y81{bottom:780.630000px;}
.y2c8{bottom:780.990000px;}
.y104{bottom:786.570000px;}
.y53{bottom:789.630000px;}
.y2f8{bottom:789.900000px;}
.y14d{bottom:791.155425px;}
.y12c{bottom:791.481708px;}
.yb3{bottom:795.660000px;}
.y173{bottom:798.630000px;}
.y2c7{bottom:798.990000px;}
.y29a{bottom:800.070000px;}
.ya8{bottom:801.827168px;}
.y14e{bottom:803.553826px;}
.y12d{bottom:803.553837px;}
.y2f7{bottom:807.900000px;}
.y340{bottom:810.510000px;}
.y21{bottom:811.680000px;}
.y80{bottom:813.570000px;}
.y7{bottom:815.460000px;}
.y25c{bottom:817.260000px;}
.y299{bottom:818.070000px;}
.y2c6{bottom:818.520000px;}
.y103{bottom:819.600000px;}
.y151{bottom:822.151425px;}
.y130{bottom:822.477709px;}
.y6b{bottom:822.570000px;}
.y2f6{bottom:825.900000px;}
.y41{bottom:831.570000px;}
.y25b{bottom:835.980000px;}
.y2c5{bottom:836.520000px;}
.y298{bottom:837.600000px;}
.y2f5{bottom:843.900000px;}
.y20{bottom:844.620000px;}
.y7f{bottom:846.600000px;}
.y6{bottom:851.190000px;}
.y282{bottom:852.540000px;}
.y25a{bottom:854.790000px;}
.y6a{bottom:855.600000px;}
.y2c4{bottom:855.960000px;}
.y2f4{bottom:861.900000px;}
.y40{bottom:864.600000px;}
.y102{bottom:864.690000px;}
.y259{bottom:873.510000px;}
.y297{bottom:873.600000px;}
.y2c3{bottom:873.960000px;}
.y1f{bottom:877.650000px;}
.y7e{bottom:879.540000px;}
.y2f3{bottom:879.900000px;}
.y281{bottom:885.570000px;}
.y69{bottom:888.540000px;}
.y5{bottom:890.520000px;}
.y33d{bottom:891.870000px;}
.y258{bottom:892.230000px;}
.y296{bottom:893.040000px;}
.y2c2{bottom:893.490000px;}
.y3f{bottom:897.540000px;}
.y2f2{bottom:897.900000px;}
.y1e{bottom:910.680000px;}
.y257{bottom:911.040000px;}
.y2c1{bottom:911.490000px;}
.y7d{bottom:912.570000px;}
.y2f1{bottom:915.810000px;}
.y68{bottom:921.570000px;}
.y4{bottom:929.760000px;}
.y3e{bottom:930.570000px;}
.y280{bottom:930.660000px;}
.y2c0{bottom:931.020000px;}
.y2f0{bottom:933.810000px;}
.y1d{bottom:943.620000px;}
.y256{bottom:947.040000px;}
.y2bf{bottom:950.460000px;}
.y2ef{bottom:951.810000px;}
.y295{bottom:951.990000px;}
.y67{bottom:954.600000px;}
.y31e{bottom:956.670000px;}
.y3d{bottom:963.600000px;}
.y254{bottom:965.760000px;}
.y2be{bottom:968.460000px;}
.y2ee{bottom:969.810000px;}
.y338{bottom:973.230000px;}
.y1c{bottom:976.650000px;}
.y3{bottom:985.380000px;}
.y66{bottom:987.540000px;}
.y2ed{bottom:987.810000px;}
.y2bd{bottom:987.990000px;}
.y3c{bottom:996.540000px;}
.y253{bottom:1001.760000px;}
.y2bc{bottom:1005.990000px;}
.y2ec{bottom:1006.620000px;}
.y1b{bottom:1009.590000px;}
.y252{bottom:1020.480000px;}
.y7c{bottom:1020.570000px;}
.y2bb{bottom:1025.430000px;}
.y3b{bottom:1029.570000px;}
.y294{bottom:1029.660000px;}
.y251{bottom:1040.010000px;}
.y2{bottom:1042.170000px;}
.y1a{bottom:1042.620000px;}
.y2eb{bottom:1042.710000px;}
.y2ba{bottom:1043.430000px;}
.y24f{bottom:1058.730000px;}
.y3a{bottom:1062.510000px;}
.y2b9{bottom:1062.960000px;}
.y187{bottom:1071.900000px;}
.y1{bottom:1080.630000px;}
.y2b8{bottom:1080.990000px;}
.y19{bottom:1086.930000px;}
.y39{bottom:1095.570000px;}
.y10c{bottom:1095.660000px;}
.y2b7{bottom:1098.990000px;}
.y16{bottom:1201.860000px;}
.h30{height:17.910000px;}
.h2f{height:18.000000px;}
.h31{height:18.030000px;}
.h28{height:18.720000px;}
.h26{height:18.750000px;}
.h2b{height:18.810000px;}
.h1f{height:29.124609px;}
.h16{height:29.625104px;}
.h11{height:30.187216px;}
.h19{height:30.722330px;}
.h1b{height:31.607128px;}
.hd{height:32.942109px;}
.h23{height:33.185171px;}
.h20{height:35.596745px;}
.hb{height:35.806641px;}
.h2d{height:35.910000px;}
.h2a{height:36.000000px;}
.h2e{height:36.030000px;}
.h17{height:36.208461px;}
.h14{height:37.734020px;}
.h1c{height:38.630935px;}
.ha{height:38.671172px;}
.h24{height:40.559654px;}
.h21{height:42.068880px;}
.h12{height:42.765223px;}
.h18{height:42.791817px;}
.h1d{height:45.654741px;}
.h29{height:47.223633px;}
.h8{height:47.622832px;}
.h25{height:47.934137px;}
.h13{height:52.827628px;}
.he{height:53.709961px;}
.h2c{height:54.000000px;}
.h27{height:55.291992px;}
.h33{height:57.098145px;}
.hc{height:57.612832px;}
.h3{height:59.797090px;}
.h6{height:65.526152px;}
.hf{height:71.613281px;}
.h7{height:73.722656px;}
.h38{height:80.550000px;}
.h3b{height:80.580000px;}
.h39{height:80.640000px;}
.h9{height:95.603730px;}
.h3a{height:100.710000px;}
.h5{height:107.419922px;}
.h2{height:119.236113px;}
.h32{height:120.810000px;}
.h37{height:120.870000px;}
.h4{height:141.687070px;}
.h36{height:161.100000px;}
.h35{height:161.130000px;}
.h34{height:201.420000px;}
.h15{height:396.334546px;}
.h22{height:443.962316px;}
.h1e{height:767.552296px;}
.h10{height:821.732087px;}
.h1a{height:836.892084px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:45.180000px;}
.w12{width:48.270000px;}
.w17{width:53.040000px;}
.w18{width:53.400000px;}
.w11{width:55.260000px;}
.w16{width:58.410000px;}
.w15{width:60.840000px;}
.we{width:106.380000px;}
.wa{width:112.710000px;}
.wc{width:122.790000px;}
.wd{width:123.420000px;}
.wf{width:132.330000px;}
.wb{width:132.390000px;}
.w9{width:142.470000px;}
.w19{width:170.130000px;}
.w10{width:192.180000px;}
.w1b{width:233.940000px;}
.w14{width:239.070000px;}
.w4{width:447.061358px;}
.w1a{width:464.190000px;}
.w5{width:620.898690px;}
.w6{width:653.501495px;}
.w8{width:679.020961px;}
.w7{width:679.128100px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5c{left:5.271889px;}
.x7c{left:6.964614px;}
.x57{left:8.206778px;}
.x80{left:9.369669px;}
.x47{left:10.766704px;}
.xb3{left:11.910000px;}
.x7d{left:14.179785px;}
.xb1{left:15.840000px;}
.x41{left:17.196130px;}
.x3d{left:18.726947px;}
.x4d{left:19.951592px;}
.x91{left:21.996227px;}
.xb2{left:23.220000px;}
.x45{left:24.237879px;}
.x46{left:25.768694px;}
.x90{left:26.806342px;}
.x40{left:28.218001px;}
.xb0{left:29.250000px;}
.x5b{left:30.707576px;}
.x3f{left:31.891958px;}
.x9e{left:32.979349px;}
.x44{left:34.647423px;}
.xaf{left:35.820000px;}
.x9d{left:37.094631px;}
.x42{left:38.321381px;}
.x49{left:39.546030px;}
.x48{left:41.076846px;}
.x7e{left:42.138578px;}
.x3e{left:43.219992px;}
.x4b{left:44.750800px;}
.x7f{left:46.948692px;}
.x7b{left:48.451856px;}
.x9b{left:50.126347px;}
.x59{left:51.903982px;}
.x54{left:53.534477px;}
.xa7{left:54.750000px;}
.x4a{left:56.078834px;}
.x53{left:57.773759px;}
.x8f{left:58.973987px;}
.x5a{left:60.056445px;}
.x43{left:62.202099px;}
.x1a{left:64.038287px;}
.x58{left:65.274023px;}
.x56{left:66.904517px;}
.x4c{left:68.631519px;}
.x4e{left:73.223972px;}
.x9c{left:75.160957px;}
.x55{left:76.361375px;}
.x9f{left:77.561530px;}
.xa8{left:80.670000px;}
.x50{left:83.327343px;}
.xa0{left:84.420328px;}
.x83{left:88.435931px;}
.xaa{left:90.840000px;}
.xa9{left:100.350000px;}
.xa1{left:102.939089px;}
.x1{left:106.379987px;}
.x8{left:109.979987px;}
.x23{left:111.419987px;}
.x9{left:117.029987px;}
.x19{left:118.928264px;}
.x81{left:123.910533px;}
.xb{left:127.739987px;}
.x16{left:138.782081px;}
.x5d{left:146.472563px;}
.x2{left:148.979987px;}
.xa{left:159.599987px;}
.x1c{left:176.153986px;}
.x82{left:180.128750px;}
.x4f{left:182.830347px;}
.x92{left:186.442031px;}
.xa3{left:191.370000px;}
.x18{left:194.606361px;}
.x78{left:196.691740px;}
.x5e{left:200.931021px;}
.x75{left:205.822501px;}
.x72{left:207.779093px;}
.xa2{left:208.907510px;}
.x6e{left:211.040079px;}
.x6f{left:215.931557px;}
.x15{left:217.963791px;}
.x71{left:220.823035px;}
.x6d{left:224.410120px;}
.x76{left:227.018906px;}
.x12{left:228.474641px;}
.x1b{left:231.978261px;}
.x6c{left:233.214781px;}
.x70{left:235.823568px;}
.x14{left:236.883320px;}
.x11{left:241.087661px;}
.x6b{left:242.345541px;}
.x74{left:244.628228px;}
.x77{left:245.932621px;}
.x10{left:249.496338px;}
.x73{left:267.455127px;}
.xb4{left:276.510000px;}
.x7a{left:286.042741px;}
.x1d{left:288.736834px;}
.x79{left:294.521308px;}
.x84{left:299.780355px;}
.x86{left:317.217021px;}
.x7{left:322.409987px;}
.x88{left:327.438514px;}
.x26{left:328.870124px;}
.xa4{left:333.840000px;}
.x5f{left:334.957522px;}
.x85{left:337.660009px;}
.x30{left:338.973501px;}
.x89{left:340.065065px;}
.x87{left:343.071388px;}
.x8a{left:344.875180px;}
.x1e{left:348.298300px;}
.x60{left:349.631957px;}
.x94{left:351.789727px;}
.x39{left:353.056997px;}
.x93{left:355.397313px;}
.x8c{left:356.900466px;}
.x2f{left:358.567937px;}
.x13{left:360.210587px;}
.x95{left:361.710587px;}
.x68{left:363.328092px;}
.x66{left:365.610782px;}
.x2b{left:367.140505px;}
.x38{left:369.283640px;}
.x34{left:370.508293px;}
.x2e{left:372.651438px;}
.x29{left:374.182256px;}
.x28{left:375.406908px;}
.x62{left:378.002529px;}
.x2d{left:380.305515px;}
.x33{left:381.836328px;}
.x8b{left:383.356098px;}
.x36{left:384.897956px;}
.x31{left:386.428774px;}
.x2a{left:388.265756px;}
.x32{left:389.796568px;}
.x67{left:391.698665px;}
.x27{left:393.164366px;}
.x37{left:395.001337px;}
.x98{left:396.152678px;}
.x63{left:397.568442px;}
.x2c{left:400.206114px;}
.x17{left:402.253980px;}
.x1f{left:403.655426px;}
.x65{left:405.394806px;}
.x61{left:407.351399px;}
.x35{left:412.146468px;}
.x97{left:420.158471px;}
.x64{left:423.330226px;}
.x3a{left:427.760792px;}
.x3c{left:431.740902px;}
.x6a{left:440.613447px;}
.x21{left:442.589973px;}
.x8d{left:443.783170px;}
.x3{left:446.549987px;}
.x22{left:448.439987px;}
.xa6{left:457.260000px;}
.x99{left:463.711836px;}
.x8e{left:485.270411px;}
.x96{left:494.890645px;}
.x3b{left:515.935753px;}
.x69{left:532.247143px;}
.x9a{left:549.103865px;}
.xf{left:554.189987px;}
.x5{left:564.179973px;}
.x6{left:568.049987px;}
.xa5{left:578.940000px;}
.xc{left:614.339973px;}
.xd{left:619.739987px;}
.xac{left:687.870000px;}
.x25{left:728.549987px;}
.xad{left:748.710000px;}
.x52{left:761.219987px;}
.xab{left:771.839987px;}
.x20{left:773.729987px;}
.x51{left:775.259987px;}
.x24{left:777.149987px;}
.x4{left:780.029987px;}
.xe{left:786.689987px;}
.xae{left:807.120000px;}
@media print{
.v1{vertical-align:-36.562974pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.ls29{letter-spacing:-1.820915pt;}
.lsc{letter-spacing:-1.620133pt;}
.ls21{letter-spacing:-1.598107pt;}
.ls5{letter-spacing:-1.125973pt;}
.ls1a{letter-spacing:-0.794658pt;}
.ls28{letter-spacing:-0.416557pt;}
.ls6{letter-spacing:-0.295828pt;}
.ls26{letter-spacing:-0.014616pt;}
.ls18{letter-spacing:-0.013921pt;}
.lsb{letter-spacing:-0.013048pt;}
.ls20{letter-spacing:-0.012828pt;}
.ls2a{letter-spacing:-0.010962pt;}
.ls23{letter-spacing:-0.009621pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.006414pt;}
.ls9{letter-spacing:0.006524pt;}
.ls14{letter-spacing:0.006961pt;}
.ls24{letter-spacing:0.007308pt;}
.ls1e{letter-spacing:0.009621pt;}
.ls8{letter-spacing:0.009786pt;}
.ls13{letter-spacing:0.010441pt;}
.ls25{letter-spacing:0.010962pt;}
.ls2d{letter-spacing:0.069867pt;}
.ls16{letter-spacing:0.259859pt;}
.ls1c{letter-spacing:0.540898pt;}
.ls15{letter-spacing:0.587003pt;}
.ls3{letter-spacing:0.801920pt;}
.ls1f{letter-spacing:1.052933pt;}
.lsa{letter-spacing:1.097124pt;}
.ls2{letter-spacing:1.121920pt;}
.ls11{letter-spacing:1.136320pt;}
.ls2c{letter-spacing:1.376000pt;}
.ls22{letter-spacing:1.598107pt;}
.ls1d{letter-spacing:1.603452pt;}
.lsd{letter-spacing:1.631006pt;}
.ls2b{letter-spacing:1.713920pt;}
.ls17{letter-spacing:1.734326pt;}
.ls19{letter-spacing:1.740126pt;}
.ls27{letter-spacing:1.827005pt;}
.ls7{letter-spacing:1.877120pt;}
.lsf{letter-spacing:2.000000pt;}
.ls4{letter-spacing:2.058667pt;}
.lse{letter-spacing:2.125440pt;}
.ls10{letter-spacing:2.232107pt;}
.ls12{letter-spacing:751.720320pt;}
.ls0{letter-spacing:751.826987pt;}
.ws1{word-spacing:-13.234560pt;}
.ws5c{word-spacing:-2.745173pt;}
.ws8{word-spacing:-2.442880pt;}
.ws4c{word-spacing:-2.035413pt;}
.ws18{word-spacing:-1.911680pt;}
.ws81{word-spacing:-1.280000pt;}
.ws80{word-spacing:-1.264000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3e{word-spacing:4.639467pt;}
.ws63{word-spacing:5.762240pt;}
.ws6f{word-spacing:8.077227pt;}
.ws32{word-spacing:10.185387pt;}
.ws65{word-spacing:10.189867pt;}
.ws2f{word-spacing:11.037760pt;}
.ws7e{word-spacing:11.267520pt;}
.ws70{word-spacing:11.953920pt;}
.ws21{word-spacing:11.990400pt;}
.ws10{word-spacing:12.323307pt;}
.ws44{word-spacing:13.040000pt;}
.ws4f{word-spacing:13.323840pt;}
.ws42{word-spacing:13.698027pt;}
.ws23{word-spacing:13.705707pt;}
.ws1d{word-spacing:15.490347pt;}
.ws71{word-spacing:15.668800pt;}
.ws1a{word-spacing:15.776000pt;}
.ws1b{word-spacing:16.744000pt;}
.ws14{word-spacing:17.121387pt;}
.ws25{word-spacing:17.379520pt;}
.ws6d{word-spacing:17.480000pt;}
.ws76{word-spacing:18.887147pt;}
.ws5f{word-spacing:18.896427pt;}
.ws62{word-spacing:19.135040pt;}
.ws2c{word-spacing:19.624640pt;}
.ws2e{word-spacing:19.881600pt;}
.ws2b{word-spacing:21.912000pt;}
.ws41{word-spacing:22.022080pt;}
.ws27{word-spacing:22.258880pt;}
.ws3f{word-spacing:22.484160pt;}
.ws3d{word-spacing:22.780907pt;}
.ws24{word-spacing:22.996267pt;}
.ws30{word-spacing:23.377280pt;}
.ws7d{word-spacing:24.622507pt;}
.ws26{word-spacing:24.838720pt;}
.ws72{word-spacing:25.164267pt;}
.ws77{word-spacing:25.353920pt;}
.ws7{word-spacing:25.716907pt;}
.ws16{word-spacing:25.747307pt;}
.wsf{word-spacing:25.823040pt;}
.ws19{word-spacing:26.011627pt;}
.ws6c{word-spacing:26.091200pt;}
.ws2{word-spacing:26.661547pt;}
.wsc{word-spacing:26.874347pt;}
.wsd{word-spacing:28.823680pt;}
.ws68{word-spacing:28.940587pt;}
.ws38{word-spacing:29.091520pt;}
.ws29{word-spacing:29.578560pt;}
.ws48{word-spacing:29.639040pt;}
.wse{word-spacing:29.803307pt;}
.ws75{word-spacing:29.868587pt;}
.ws61{word-spacing:30.449387pt;}
.ws3c{word-spacing:31.734400pt;}
.ws4e{word-spacing:31.754987pt;}
.ws54{word-spacing:32.458027pt;}
.ws15{word-spacing:32.797440pt;}
.ws50{word-spacing:33.778347pt;}
.ws6{word-spacing:34.409067pt;}
.ws6a{word-spacing:35.058027pt;}
.ws28{word-spacing:35.251307pt;}
.ws4b{word-spacing:35.272107pt;}
.ws7a{word-spacing:35.278507pt;}
.ws5d{word-spacing:36.180587pt;}
.ws1e{word-spacing:37.103360pt;}
.ws4a{word-spacing:37.184000pt;}
.ws67{word-spacing:37.210347pt;}
.wsa{word-spacing:37.884907pt;}
.ws3b{word-spacing:38.179307pt;}
.ws5{word-spacing:38.879680pt;}
.wsb{word-spacing:39.370880pt;}
.ws1c{word-spacing:39.512747pt;}
.ws79{word-spacing:39.953600pt;}
.ws69{word-spacing:40.467840pt;}
.ws12{word-spacing:41.549867pt;}
.ws7c{word-spacing:41.667520pt;}
.ws2a{word-spacing:42.112107pt;}
.ws5a{word-spacing:42.469120pt;}
.ws53{word-spacing:42.982507pt;}
.ws11{word-spacing:43.036480pt;}
.ws47{word-spacing:43.345707pt;}
.ws35{word-spacing:43.479680pt;}
.ws17{word-spacing:43.617707pt;}
.ws5b{word-spacing:43.991467pt;}
.ws9{word-spacing:44.559467pt;}
.ws5e{word-spacing:44.897600pt;}
.ws59{word-spacing:45.011200pt;}
.ws78{word-spacing:45.834880pt;}
.ws3a{word-spacing:45.919360pt;}
.ws56{word-spacing:46.359147pt;}
.ws31{word-spacing:46.633067pt;}
.ws52{word-spacing:46.941547pt;}
.ws55{word-spacing:48.092480pt;}
.ws2d{word-spacing:48.146027pt;}
.ws74{word-spacing:48.345280pt;}
.ws60{word-spacing:49.493760pt;}
.ws33{word-spacing:49.617067pt;}
.ws20{word-spacing:50.082560pt;}
.ws57{word-spacing:50.678827pt;}
.ws36{word-spacing:51.101867pt;}
.ws51{word-spacing:51.491200pt;}
.ws6e{word-spacing:51.796267pt;}
.ws49{word-spacing:52.428907pt;}
.ws39{word-spacing:52.983147pt;}
.ws66{word-spacing:54.080960pt;}
.ws4{word-spacing:54.138667pt;}
.ws7f{word-spacing:54.330667pt;}
.ws37{word-spacing:54.510187pt;}
.ws34{word-spacing:54.822827pt;}
.ws45{word-spacing:55.042560pt;}
.ws73{word-spacing:56.383360pt;}
.ws64{word-spacing:56.806827pt;}
.ws58{word-spacing:57.158400pt;}
.ws46{word-spacing:57.905707pt;}
.ws3{word-spacing:60.426667pt;}
.ws40{word-spacing:62.015467pt;}
.ws43{word-spacing:62.146560pt;}
.ws6b{word-spacing:62.889067pt;}
.ws7b{word-spacing:63.029227pt;}
.ws22{word-spacing:66.207787pt;}
.ws13{word-spacing:68.013547pt;}
.ws4d{word-spacing:74.436800pt;}
.ws1f{word-spacing:83.162880pt;}
._ab{margin-left:-11.385600pt;}
._aa{margin-left:-10.364373pt;}
._96{margin-left:-9.235840pt;}
._bb{margin-left:-7.450560pt;}
._77{margin-left:-6.346880pt;}
._b7{margin-left:-5.308160pt;}
._6d{margin-left:-3.341333pt;}
._29{margin-left:-1.714560pt;}
._59{width:1.095680pt;}
._2{width:2.002560pt;}
._37{width:3.085440pt;}
._0{width:4.361067pt;}
._40{width:5.290453pt;}
._11{width:6.925440pt;}
._1b{width:7.848320pt;}
._6{width:9.344000pt;}
._3f{width:10.377600pt;}
._12{width:11.347627pt;}
._67{width:12.325973pt;}
._7{width:13.933440pt;}
._1e{width:15.136000pt;}
._1c{width:16.724800pt;}
._85{width:18.208213pt;}
._c{width:19.352320pt;}
._10{width:21.149760pt;}
._89{width:22.068267pt;}
._16{width:23.095787pt;}
._17{width:24.180587pt;}
._ac{width:25.176320pt;}
._14{width:26.145920pt;}
._39{width:27.174720pt;}
._13{width:28.344640pt;}
._70{width:29.393707pt;}
._27{width:30.323307pt;}
._b{width:31.700907pt;}
._2a{width:32.622400pt;}
._52{width:34.207680pt;}
._5b{width:35.561280pt;}
._56{width:36.763307pt;}
._ad{width:37.776000pt;}
._46{width:39.017387pt;}
._21{width:39.976640pt;}
._50{width:41.013760pt;}
._3b{width:42.178667pt;}
._86{width:43.191680pt;}
._d{width:44.330667pt;}
._19{width:45.778880pt;}
._3{width:46.760320pt;}
._74{width:48.422720pt;}
._1{width:49.349440pt;}
._61{width:50.448640pt;}
._48{width:51.602027pt;}
._34{width:52.495787pt;}
._7e{width:53.646080pt;}
._3a{width:54.661653pt;}
._36{width:55.659200pt;}
._3c{width:57.050987pt;}
._5f{width:58.008320pt;}
._a7{width:58.903360pt;}
._4b{width:60.027307pt;}
._68{width:61.001707pt;}
._63{width:62.355733pt;}
._8{width:63.840000pt;}
._38{width:65.772480pt;}
._1f{width:67.173867pt;}
._75{width:68.656747pt;}
._b2{width:69.579200pt;}
._4c{width:70.488107pt;}
._41{width:72.235840pt;}
._8c{width:73.381227pt;}
._23{width:75.042347pt;}
._b0{width:76.156587pt;}
._22{width:77.701867pt;}
._44{width:78.747307pt;}
._7f{width:80.194987pt;}
._20{width:81.698027pt;}
._9b{width:83.161752pt;}
._49{width:84.330987pt;}
._60{width:85.298667pt;}
._28{width:86.702187pt;}
._a{width:87.754667pt;}
._5{width:89.194667pt;}
._2c{width:90.228907pt;}
._53{width:91.467307pt;}
._1d{width:92.576107pt;}
._7d{width:94.162987pt;}
._2f{width:95.798293pt;}
._2e{width:96.856320pt;}
._98{width:97.898347pt;}
._26{width:99.327040pt;}
._91{width:100.425067pt;}
._bd{width:101.946667pt;}
._2b{width:103.116907pt;}
._30{width:104.845547pt;}
._31{width:106.680747pt;}
._93{width:107.626667pt;}
._c0{width:108.890667pt;}
._64{width:109.781227pt;}
._9e{width:111.302507pt;}
._62{width:112.330987pt;}
._6f{width:113.236053pt;}
._9f{width:114.223147pt;}
._8d{width:116.785387pt;}
._9{width:117.706667pt;}
._af{width:118.774933pt;}
._5e{width:121.117333pt;}
._55{width:122.086507pt;}
._92{width:123.129707pt;}
._7c{width:124.236800pt;}
._73{width:125.178667pt;}
._2d{width:126.491307pt;}
._a2{width:127.398763pt;}
._4d{width:128.359467pt;}
._a0{width:129.316907pt;}
._15{width:130.325867pt;}
._42{width:131.711467pt;}
._7b{width:133.839467pt;}
._5a{width:135.193173pt;}
._b1{width:137.074347pt;}
._35{width:138.201387pt;}
._3d{width:143.905813pt;}
._1a{width:145.487893pt;}
._4a{width:146.758293pt;}
._45{width:148.014933pt;}
._b5{width:150.298667pt;}
._82{width:152.815893pt;}
._6b{width:155.086933pt;}
._bf{width:156.709333pt;}
._90{width:158.787307pt;}
._79{width:160.105067pt;}
._be{width:161.050453pt;}
._a4{width:162.968853pt;}
._a6{width:164.476053pt;}
._51{width:167.435093pt;}
._32{width:168.773333pt;}
._5c{width:171.913493pt;}
._5d{width:174.624213pt;}
._99{width:175.545387pt;}
._9d{width:178.975253pt;}
._f{width:181.013013pt;}
._78{width:182.838613pt;}
._a3{width:184.838613pt;}
._8e{width:186.684053pt;}
._9c{width:188.069973pt;}
._e{width:190.631253pt;}
._43{width:192.444693pt;}
._bc{width:195.141333pt;}
._4f{width:196.040853pt;}
._83{width:197.268693pt;}
._72{width:198.746027pt;}
._8b{width:202.992853pt;}
._88{width:207.919467pt;}
._ba{width:208.981333pt;}
._4{width:210.005013pt;}
._66{width:212.105493pt;}
._b8{width:213.141333pt;}
._97{width:214.411520pt;}
._47{width:216.062827pt;}
._33{width:219.188160pt;}
._94{width:221.445013pt;}
._6a{width:226.285013pt;}
._80{width:227.298133pt;}
._65{width:233.591893pt;}
._8a{width:234.487253pt;}
._8f{width:239.021935pt;}
._b9{width:242.768000pt;}
._a1{width:247.594560pt;}
._ae{width:249.017813pt;}
._25{width:250.614613pt;}
._b6{width:254.357333pt;}
._3e{width:255.649493pt;}
._6c{width:256.840640pt;}
._4e{width:257.972480pt;}
._9a{width:260.913920pt;}
._24{width:263.416960pt;}
._81{width:267.353600pt;}
._b3{width:272.784000pt;}
._a5{width:276.109973pt;}
._a9{width:278.237760pt;}
._7a{width:280.745280pt;}
._84{width:281.640640pt;}
._58{width:283.456320pt;}
._18{width:285.607360pt;}
._b4{width:302.880000pt;}
._87{width:307.399360pt;}
._57{width:310.068373pt;}
._6e{width:324.088000pt;}
._a8{width:326.679360pt;}
._95{width:328.784640pt;}
._76{width:335.556160pt;}
._71{width:345.739627pt;}
._69{width:367.599040pt;}
._54{width:492.549120pt;}
.fs17{font-size:28.862130pt;}
.fs10{font-size:29.358115pt;}
.fsa{font-size:29.440000pt;}
.fsc{font-size:29.915161pt;}
.fs13{font-size:30.445452pt;}
.fs14{font-size:31.322276pt;}
.fs9{font-size:32.000000pt;}
.fs1a{font-size:32.886097pt;}
.fs8{font-size:34.560000pt;}
.fs18{font-size:35.275937pt;}
.fs11{font-size:35.882140pt;}
.fsf{font-size:37.393951pt;}
.fs15{font-size:38.282782pt;}
.fs1b{font-size:40.194119pt;}
.fs19{font-size:41.689744pt;}
.fsd{font-size:42.379811pt;}
.fs12{font-size:42.406165pt;}
.fs6{font-size:42.560000pt;}
.fs16{font-size:45.243288pt;}
.fs1c{font-size:47.502141pt;}
.fsb{font-size:48.000000pt;}
.fse{font-size:52.351531pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:85.440000pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:106.560000pt;}
.fs2{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y250{bottom:2.640000pt;}
.y27b{bottom:2.666667pt;}
.y171{bottom:3.142307pt;}
.y1ec{bottom:3.429850pt;}
.y20d{bottom:3.697083pt;}
.y33c{bottom:3.920000pt;}
.y324{bottom:4.160000pt;}
.yaa{bottom:4.535894pt;}
.y100{bottom:5.119946pt;}
.ye2{bottom:5.935450pt;}
.y23e{bottom:6.648716pt;}
.y347{bottom:12.880000pt;}
.y20c{bottom:13.585038pt;}
.y1eb{bottom:13.585046pt;}
.y170{bottom:14.162966pt;}
.yff{bottom:15.449789pt;}
.ye1{bottom:16.265292pt;}
.y23d{bottom:18.219903pt;}
.y262{bottom:18.560000pt;}
.y255{bottom:18.640000pt;}
.y265{bottom:18.666667pt;}
.y33b{bottom:21.760000pt;}
.y34b{bottom:21.786667pt;}
.y33f{bottom:21.840000pt;}
.y323{bottom:22.000000pt;}
.y32d{bottom:22.080000pt;}
.y1ee{bottom:26.145411pt;}
.y1cd{bottom:26.145419pt;}
.y152{bottom:27.794538pt;}
.ye4{bottom:28.497840pt;}
.yc3{bottom:29.041509pt;}
.y346{bottom:30.800000pt;}
.y21f{bottom:32.531445pt;}
.y25e{bottom:34.640000pt;}
.y1ce{bottom:36.033371pt;}
.y1ef{bottom:36.300605pt;}
.y153{bottom:38.525318pt;}
.yc4{bottom:39.099382pt;}
.y33a{bottom:39.680000pt;}
.y34a{bottom:39.706667pt;}
.y33e{bottom:39.760000pt;}
.y322{bottom:39.920000pt;}
.y32a{bottom:40.000000pt;}
.y220{bottom:43.797979pt;}
.y240{bottom:44.102480pt;}
.y1f0{bottom:46.188557pt;}
.y1cf{bottom:46.188564pt;}
.y345{bottom:48.720000pt;}
.yc5{bottom:49.429089pt;}
.y154{bottom:49.546118pt;}
.yb2{bottom:49.616899pt;}
.y221{bottom:55.369013pt;}
.y1d0{bottom:56.076517pt;}
.y1f1{bottom:56.343751pt;}
.y339{bottom:57.600000pt;}
.y349{bottom:57.626667pt;}
.y341{bottom:57.680000pt;}
.y321{bottom:57.840000pt;}
.y332{bottom:57.866667pt;}
.y329{bottom:57.920000pt;}
.yc6{bottom:59.486961pt;}
.ye5{bottom:60.030630pt;}
.y18{bottom:60.160000pt;}
.y155{bottom:60.276898pt;}
.y1f2{bottom:66.231702pt;}
.y1d1{bottom:66.231710pt;}
.y344{bottom:66.560000pt;}
.y222{bottom:66.635546pt;}
.y241{bottom:66.940047pt;}
.yb1{bottom:67.690644pt;}
.yc7{bottom:69.816668pt;}
.ye6{bottom:70.632171pt;}
.y156{bottom:71.297699pt;}
.y343{bottom:75.520000pt;}
.y320{bottom:75.760000pt;}
.y331{bottom:75.786667pt;}
.y328{bottom:75.840000pt;}
.y1d2{bottom:76.119664pt;}
.y1f3{bottom:76.386897pt;}
.y223{bottom:78.206581pt;}
.yc8{bottom:79.874541pt;}
.ye7{bottom:81.233713pt;}
.y157{bottom:82.028479pt;}
.y17{bottom:85.040000pt;}
.y1f4{bottom:86.274848pt;}
.y1d3{bottom:86.274857pt;}
.y224{bottom:89.473114pt;}
.y242{bottom:89.777615pt;}
.yc9{bottom:90.204248pt;}
.ye8{bottom:91.835254pt;}
.y158{bottom:93.049280pt;}
.y31f{bottom:93.680000pt;}
.y330{bottom:93.706667pt;}
.y1d4{bottom:96.162809pt;}
.y1f5{bottom:96.430042pt;}
.y9b{bottom:99.600000pt;}
.y38{bottom:99.920000pt;}
.yca{bottom:100.262120pt;}
.y225{bottom:101.044148pt;}
.ye9{bottom:102.164961pt;}
.ybd{bottom:103.600000pt;}
.y159{bottom:103.780059pt;}
.yc1{bottom:103.920000pt;}
.yc2{bottom:104.908931pt;}
.y1f6{bottom:106.317994pt;}
.y1d5{bottom:106.318002pt;}
.y65{bottom:108.240000pt;}
.y31d{bottom:108.880000pt;}
.ycb{bottom:110.591827pt;}
.y293{bottom:110.880000pt;}
.y32f{bottom:111.546667pt;}
.y327{bottom:111.600000pt;}
.y226{bottom:112.310682pt;}
.y243{bottom:112.615183pt;}
.yea{bottom:112.766502pt;}
.yb0{bottom:113.185581pt;}
.y92{bottom:113.920000pt;}
.y15a{bottom:114.800860pt;}
.y9a{bottom:115.600000pt;}
.y1d6{bottom:116.205955pt;}
.y1f7{bottom:116.473188pt;}
.y37{bottom:117.760000pt;}
.y99{bottom:119.600000pt;}
.ycc{bottom:120.649700pt;}
.y21d{bottom:121.040000pt;}
.yeb{bottom:123.368044pt;}
.y227{bottom:123.881716pt;}
.y31c{bottom:124.880000pt;}
.y15b{bottom:125.531641pt;}
.y1f8{bottom:126.361141pt;}
.y1d7{bottom:126.361149pt;}
.ybc{bottom:126.800000pt;}
.y2ea{bottom:127.680000pt;}
.y7b{bottom:128.640000pt;}
.y186{bottom:128.960000pt;}
.y333{bottom:129.466667pt;}
.y326{bottom:129.520000pt;}
.ycd{bottom:130.979407pt;}
.y27f{bottom:131.760000pt;}
.yec{bottom:133.969585pt;}
.y228{bottom:135.148249pt;}
.y244{bottom:135.452750pt;}
.y36{bottom:135.520000pt;}
.y1d8{bottom:136.255782pt;}
.y1f9{bottom:136.523016pt;}
.y15c{bottom:136.552441pt;}
.y64{bottom:137.600000pt;}
.y35{bottom:140.160000pt;}
.y292{bottom:140.240000pt;}
.y31b{bottom:140.880000pt;}
.yce{bottom:141.035920pt;}
.y98{bottom:142.800000pt;}
.y91{bottom:143.280000pt;}
.yed{bottom:144.569767pt;}
.y2e9{bottom:144.960000pt;}
.y1fa{bottom:146.410968pt;}
.y1d9{bottom:146.410975pt;}
.y229{bottom:146.719284pt;}
.y15d{bottom:147.278871pt;}
.y2b6{bottom:147.280000pt;}
.y32c{bottom:147.440000pt;}
.y27e{bottom:148.400000pt;}
.ycf{bottom:151.365627pt;}
.yee{bottom:154.899474pt;}
.y1da{bottom:156.298928pt;}
.y1fb{bottom:156.566162pt;}
.y31a{bottom:156.880000pt;}
.y7a{bottom:157.920000pt;}
.y22a{bottom:157.984295pt;}
.y15e{bottom:158.009651pt;}
.y245{bottom:158.288795pt;}
.y185{bottom:160.720000pt;}
.y2e8{bottom:160.960000pt;}
.y21c{bottom:161.040000pt;}
.yd0{bottom:161.423500pt;}
.y52{bottom:161.600000pt;}
.y2b5{bottom:163.280000pt;}
.y34{bottom:164.160000pt;}
.y32b{bottom:165.360000pt;}
.yef{bottom:165.501015pt;}
.y27d{bottom:165.760000pt;}
.y1fc{bottom:166.454113pt;}
.y1db{bottom:166.454122pt;}
.y63{bottom:166.880000pt;}
.y15f{bottom:169.030451pt;}
.y291{bottom:169.520000pt;}
.y22b{bottom:169.555329pt;}
.yd1{bottom:171.753206pt;}
.y319{bottom:172.880000pt;}
.yf0{bottom:176.102557pt;}
.y1dc{bottom:176.342074pt;}
.y1fd{bottom:176.609308pt;}
.yae{bottom:177.170788pt;}
.y2e7{bottom:178.320000pt;}
.yaf{bottom:179.040487pt;}
.y97{bottom:179.280000pt;}
.y160{bottom:179.761230pt;}
.y90{bottom:180.560000pt;}
.y22c{bottom:180.821862pt;}
.y246{bottom:181.126363pt;}
.yd2{bottom:181.811079pt;}
.y27c{bottom:182.400000pt;}
.y10e{bottom:184.960000pt;}
.y1dd{bottom:186.230026pt;}
.y1fe{bottom:186.497260pt;}
.yf1{bottom:186.704098pt;}
.ya0{bottom:186.720000pt;}
.y79{bottom:187.280000pt;}
.y318{bottom:188.880000pt;}
.y21b{bottom:190.320000pt;}
.y161{bottom:190.782031pt;}
.y51{bottom:190.880000pt;}
.yd3{bottom:192.140786pt;}
.y22d{bottom:192.392897pt;}
.y2e6{bottom:194.320000pt;}
.y62{bottom:196.240000pt;}
.y1de{bottom:196.385219pt;}
.y2b4{bottom:196.560000pt;}
.y1ff{bottom:196.652453pt;}
.yf2{bottom:197.305639pt;}
.y290{bottom:198.880000pt;}
.y27a{bottom:199.120000pt;}
.y184{bottom:200.746667pt;}
.y162{bottom:201.512812pt;}
.yd4{bottom:202.198659pt;}
.y22e{bottom:203.659430pt;}
.y247{bottom:203.963931pt;}
.y317{bottom:204.906667pt;}
.y1df{bottom:206.273172pt;}
.y200{bottom:206.540405pt;}
.y33{bottom:206.906667pt;}
.yf3{bottom:207.635346pt;}
.y96{bottom:208.666667pt;}
.y8f{bottom:209.946667pt;}
.yac{bottom:211.240836pt;}
.y2e5{bottom:211.626667pt;}
.yd5{bottom:212.528365pt;}
.y163{bottom:212.533613pt;}
.y2b3{bottom:212.586667pt;}
.y10d{bottom:213.546667pt;}
.y10f{bottom:213.724334pt;}
.y22f{bottom:215.230464pt;}
.y279{bottom:215.786667pt;}
.y201{bottom:216.428357pt;}
.y1e0{bottom:216.428366pt;}
.y78{bottom:216.666667pt;}
.yf4{bottom:218.236888pt;}
.yab{bottom:218.304135pt;}
.yad{bottom:219.135117pt;}
.y21a{bottom:219.626667pt;}
.y50{bottom:220.266667pt;}
.y9f{bottom:220.826667pt;}
.y316{bottom:220.906667pt;}
.ya1{bottom:221.860250pt;}
.yd6{bottom:222.586238pt;}
.y164{bottom:223.264392pt;}
.y189{bottom:224.746667pt;}
.y337{bottom:225.946667pt;}
.y1e1{bottom:226.316318pt;}
.y230{bottom:226.496998pt;}
.y202{bottom:226.583552pt;}
.y248{bottom:226.801498pt;}
.y2e4{bottom:227.626667pt;}
.yf5{bottom:228.838429pt;}
.y183{bottom:229.946667pt;}
.y278{bottom:232.426667pt;}
.yd7{bottom:232.915945pt;}
.y165{bottom:234.285193pt;}
.y61{bottom:235.706667pt;}
.y32{bottom:236.266667pt;}
.y203{bottom:236.471503pt;}
.y1e2{bottom:236.471512pt;}
.y315{bottom:236.906667pt;}
.y95{bottom:237.946667pt;}
.y231{bottom:238.068032pt;}
.ya3{bottom:238.663062pt;}
.y28f{bottom:238.986667pt;}
.y8e{bottom:239.226667pt;}
.yf6{bottom:239.439970pt;}
.yd8{bottom:242.973818pt;}
.y2e3{bottom:244.986667pt;}
.y166{bottom:245.015973pt;}
.y77{bottom:245.946667pt;}
.y1e3{bottom:246.359464pt;}
.y204{bottom:246.626698pt;}
.y219{bottom:248.986667pt;}
.y277{bottom:249.146667pt;}
.y232{bottom:249.334565pt;}
.y4f{bottom:249.546667pt;}
.y249{bottom:249.639066pt;}
.yf7{bottom:250.041512pt;}
.ya2{bottom:250.919967pt;}
.y314{bottom:252.906667pt;}
.yd9{bottom:253.303525pt;}
.y188{bottom:253.306667pt;}
.y18a{bottom:254.318156pt;}
.y167{bottom:256.036773pt;}
.y205{bottom:256.514649pt;}
.y1e4{bottom:256.514657pt;}
.y336{bottom:257.786667pt;}
.y182{bottom:259.306667pt;}
.yf8{bottom:260.371219pt;}
.y233{bottom:260.905600pt;}
.y2e2{bottom:260.986667pt;}
.y2b2{bottom:263.226667pt;}
.yda{bottom:263.361397pt;}
.y31{bottom:265.546667pt;}
.y276{bottom:265.786667pt;}
.y1e5{bottom:266.402610pt;}
.y206{bottom:266.669844pt;}
.y168{bottom:266.767553pt;}
.y94{bottom:267.306667pt;}
.y28e{bottom:268.266667pt;}
.y8d{bottom:268.586667pt;}
.y313{bottom:268.826667pt;}
.yf9{bottom:270.972760pt;}
.y234{bottom:272.172133pt;}
.y24a{bottom:272.476634pt;}
.ydb{bottom:273.691104pt;}
.y335{bottom:274.746667pt;}
.y76{bottom:275.306667pt;}
.y207{bottom:276.557796pt;}
.y1e6{bottom:276.557804pt;}
.y169{bottom:277.788354pt;}
.y218{bottom:278.266667pt;}
.y2e1{bottom:278.346667pt;}
.y4e{bottom:278.906667pt;}
.y2b1{bottom:279.226667pt;}
.yfa{bottom:281.574301pt;}
.y275{bottom:282.426667pt;}
.y235{bottom:283.743167pt;}
.ydc{bottom:283.748977pt;}
.y312{bottom:284.826667pt;}
.y1e7{bottom:286.445755pt;}
.y208{bottom:286.712989pt;}
.y16a{bottom:288.519134pt;}
.y181{bottom:288.586667pt;}
.yfb{bottom:292.175843pt;}
.ydd{bottom:294.078684pt;}
.y2e0{bottom:294.346667pt;}
.y30{bottom:294.906667pt;}
.y236{bottom:295.009701pt;}
.y24b{bottom:295.314202pt;}
.y2b0{bottom:296.586667pt;}
.y209{bottom:296.600941pt;}
.y1e8{bottom:296.600949pt;}
.y15{bottom:297.226667pt;}
.y28d{bottom:297.546667pt;}
.y8c{bottom:297.946667pt;}
.y16b{bottom:299.539935pt;}
.y311{bottom:301.546667pt;}
.yfc{bottom:302.505550pt;}
.yde{bottom:304.136556pt;}
.y60{bottom:304.586667pt;}
.y1e9{bottom:306.488902pt;}
.y237{bottom:306.580735pt;}
.y20a{bottom:306.756136pt;}
.y217{bottom:307.626667pt;}
.y4d{bottom:308.186667pt;}
.y16c{bottom:310.270715pt;}
.y2df{bottom:311.626667pt;}
.y75{bottom:312.586667pt;}
.yfd{bottom:313.107091pt;}
.y274{bottom:314.426667pt;}
.ydf{bottom:314.466263pt;}
.y20b{bottom:316.644087pt;}
.y1ea{bottom:316.644096pt;}
.y238{bottom:317.847268pt;}
.y180{bottom:317.946667pt;}
.y24c{bottom:318.151769pt;}
.y310{bottom:318.186667pt;}
.y16d{bottom:321.291516pt;}
.yfe{bottom:323.708632pt;}
.ye0{bottom:324.524136pt;}
.y14{bottom:326.506667pt;}
.y28c{bottom:326.906667pt;}
.y8b{bottom:327.226667pt;}
.y2de{bottom:327.626667pt;}
.y239{bottom:329.418303pt;}
.y20e{bottom:329.471700pt;}
.y1ed{bottom:329.471708pt;}
.y2af{bottom:329.946667pt;}
.y273{bottom:331.146667pt;}
.y16e{bottom:332.022295pt;}
.y2e{bottom:332.186667pt;}
.y5f{bottom:333.946667pt;}
.y30f{bottom:334.186667pt;}
.y216{bottom:336.906667pt;}
.y2f{bottom:337.546667pt;}
.y101{bottom:339.475027pt;}
.ye3{bottom:340.290530pt;}
.y23a{bottom:340.684836pt;}
.y24d{bottom:340.989337pt;}
.y74{bottom:341.946667pt;}
.y1aa{bottom:342.032077pt;}
.y1cb{bottom:342.299311pt;}
.y16f{bottom:343.043096pt;}
.y2dd{bottom:344.986667pt;}
.y2ae{bottom:345.946667pt;}
.y17f{bottom:347.226667pt;}
.y272{bottom:347.786667pt;}
.y30e{bottom:350.186667pt;}
.y1a9{bottom:352.187272pt;}
.y23b{bottom:352.255870pt;}
.y1ca{bottom:352.454506pt;}
.y13{bottom:355.786667pt;}
.y28b{bottom:356.186667pt;}
.y8a{bottom:356.586667pt;}
.y172{bottom:359.574296pt;}
.y2dc{bottom:360.986667pt;}
.y2d{bottom:361.546667pt;}
.y5e{bottom:363.226667pt;}
.y23c{bottom:363.522404pt;}
.y24e{bottom:363.826905pt;}
.y271{bottom:364.426667pt;}
.y18b{bottom:364.747646pt;}
.y1ac{bottom:365.014880pt;}
.y30d{bottom:366.186667pt;}
.y215{bottom:366.266667pt;}
.y4c{bottom:366.906667pt;}
.y73{bottom:371.226667pt;}
.ybb{bottom:371.306667pt;}
.y150{bottom:374.365364pt;}
.y12f{bottom:374.365373pt;}
.y18c{bottom:374.635598pt;}
.y1ad{bottom:375.170073pt;}
.y17e{bottom:376.586667pt;}
.y2db{bottom:376.986667pt;}
.y2ad{bottom:379.226667pt;}
.y270{bottom:381.146667pt;}
.y23f{bottom:381.183456pt;}
.y30c{bottom:382.186667pt;}
.y334{bottom:382.826667pt;}
.y18d{bottom:384.790792pt;}
.y1ae{bottom:385.058025pt;}
.y12{bottom:385.146667pt;}
.y14f{bottom:385.386167pt;}
.y12e{bottom:385.386175pt;}
.y28a{bottom:385.546667pt;}
.y89{bottom:385.866667pt;}
.y2c{bottom:390.906667pt;}
.y5d{bottom:392.586667pt;}
.y2da{bottom:394.266667pt;}
.y18e{bottom:394.678745pt;}
.y1af{bottom:395.213220pt;}
.y214{bottom:395.626667pt;}
.y4b{bottom:396.186667pt;}
.y2ac{bottom:396.586667pt;}
.y26f{bottom:397.786667pt;}
.y30b{bottom:398.186667pt;}
.y131{bottom:399.017159pt;}
.y110{bottom:399.017169pt;}
.y72{bottom:400.586667pt;}
.ya6{bottom:404.027422pt;}
.y18f{bottom:404.833938pt;}
.y1b0{bottom:405.101172pt;}
.y17d{bottom:405.946667pt;}
.yba{bottom:408.586667pt;}
.y132{bottom:409.747940pt;}
.y111{bottom:410.037969pt;}
.y2d9{bottom:410.266667pt;}
.y2ab{bottom:412.586667pt;}
.ya7{bottom:413.168171pt;}
.y30a{bottom:414.186667pt;}
.y26e{bottom:414.426667pt;}
.y11{bottom:414.506667pt;}
.y190{bottom:414.721890pt;}
.y289{bottom:414.826667pt;}
.y88{bottom:415.226667pt;}
.y1b1{bottom:415.256366pt;}
.y2b{bottom:420.186667pt;}
.y133{bottom:420.768741pt;}
.y112{bottom:420.768749pt;}
.y5c{bottom:421.946667pt;}
.y191{bottom:424.877085pt;}
.y213{bottom:424.906667pt;}
.y1b2{bottom:425.144317pt;}
.y4a{bottom:425.546667pt;}
.y2d8{bottom:427.626667pt;}
.y2aa{bottom:429.866667pt;}
.y71{bottom:429.946667pt;}
.y309{bottom:430.186667pt;}
.y26d{bottom:431.146667pt;}
.y134{bottom:431.499519pt;}
.y113{bottom:431.789550pt;}
.y192{bottom:434.765036pt;}
.y1b3{bottom:435.032270pt;}
.y17c{bottom:435.226667pt;}
.yb9{bottom:437.946667pt;}
.y135{bottom:442.520320pt;}
.y114{bottom:442.520329pt;}
.y2d7{bottom:443.626667pt;}
.y10{bottom:443.786667pt;}
.y288{bottom:444.186667pt;}
.y87{bottom:444.506667pt;}
.y193{bottom:444.652989pt;}
.y1b4{bottom:445.187465pt;}
.y2a9{bottom:445.866667pt;}
.y308{bottom:446.186667pt;}
.y26c{bottom:447.786667pt;}
.y2a{bottom:449.546667pt;}
.y5b{bottom:451.226667pt;}
.y9e{bottom:453.066667pt;}
.y136{bottom:453.251100pt;}
.y115{bottom:453.541130pt;}
.y212{bottom:454.266667pt;}
.y194{bottom:454.808182pt;}
.y49{bottom:454.826667pt;}
.y1b5{bottom:455.075415pt;}
.y70{bottom:459.226667pt;}
.y2d6{bottom:460.906667pt;}
.y2a8{bottom:461.866667pt;}
.y307{bottom:462.186667pt;}
.ya5{bottom:462.403529pt;}
.y137{bottom:464.271901pt;}
.y116{bottom:464.271911pt;}
.y26b{bottom:464.426667pt;}
.y10b{bottom:464.666667pt;}
.y195{bottom:464.696135pt;}
.y1b6{bottom:465.230609pt;}
.yb8{bottom:467.226667pt;}
.yf{bottom:473.146667pt;}
.y287{bottom:473.546667pt;}
.y196{bottom:474.851328pt;}
.y138{bottom:475.002680pt;}
.y1b7{bottom:475.118561pt;}
.y117{bottom:475.292711pt;}
.y17b{bottom:475.306667pt;}
.ya4{bottom:476.322393pt;}
.y306{bottom:478.106667pt;}
.y2d5{bottom:478.266667pt;}
.y29{bottom:478.826667pt;}
.y2a7{bottom:479.226667pt;}
.y5a{bottom:480.586667pt;}
.y26a{bottom:481.146667pt;}
.y211{bottom:483.546667pt;}
.y86{bottom:483.946667pt;}
.y48{bottom:484.186667pt;}
.y197{bottom:484.739280pt;}
.y9d{bottom:484.826667pt;}
.y1b8{bottom:485.273756pt;}
.y139{bottom:486.023482pt;}
.y118{bottom:486.023490pt;}
.y6f{bottom:488.586667pt;}
.y10a{bottom:493.866667pt;}
.y305{bottom:494.106667pt;}
.y2d4{bottom:494.266667pt;}
.y198{bottom:494.894475pt;}
.y1b9{bottom:495.161708pt;}
.y2a6{bottom:495.226667pt;}
.yb7{bottom:496.586667pt;}
.y13a{bottom:496.754261pt;}
.y119{bottom:497.044292pt;}
.y269{bottom:497.786667pt;}
.ye{bottom:502.426667pt;}
.y286{bottom:502.826667pt;}
.y17a{bottom:504.586667pt;}
.y199{bottom:504.782426pt;}
.y1ba{bottom:505.316903pt;}
.y13b{bottom:507.775062pt;}
.y11a{bottom:507.775071pt;}
.y28{bottom:508.186667pt;}
.y34d{bottom:509.226667pt;}
.y59{bottom:509.866667pt;}
.y304{bottom:510.106667pt;}
.y2d3{bottom:510.266667pt;}
.y2a5{bottom:511.226667pt;}
.y210{bottom:512.906667pt;}
.y47{bottom:513.466667pt;}
.y268{bottom:514.426667pt;}
.y19a{bottom:514.937620pt;}
.y1bb{bottom:515.204854pt;}
.yc0{bottom:516.186667pt;}
.y6e{bottom:517.866667pt;}
.y13c{bottom:518.505842pt;}
.y11b{bottom:518.795872pt;}
.y9c{bottom:518.906667pt;}
.y109{bottom:523.226667pt;}
.y19b{bottom:524.825572pt;}
.y1bc{bottom:525.360047pt;}
.yb6{bottom:525.866667pt;}
.y303{bottom:526.106667pt;}
.y32e{bottom:526.746667pt;}
.y2d2{bottom:527.546667pt;}
.y2a4{bottom:528.506667pt;}
.y13d{bottom:529.526644pt;}
.y11c{bottom:529.526652pt;}
.y267{bottom:531.146667pt;}
.yd{bottom:531.786667pt;}
.y285{bottom:532.186667pt;}
.y179{bottom:533.866667pt;}
.y19c{bottom:534.980766pt;}
.y1bd{bottom:535.248000pt;}
.y27{bottom:537.466667pt;}
.y58{bottom:539.226667pt;}
.y13e{bottom:540.257421pt;}
.y11d{bottom:540.547452pt;}
.y34c{bottom:540.986667pt;}
.y20f{bottom:541.466667pt;}
.y21e{bottom:541.855275pt;}
.y302{bottom:542.106667pt;}
.y46{bottom:542.826667pt;}
.y2d1{bottom:543.546667pt;}
.y2a3{bottom:544.506667pt;}
.y19d{bottom:544.868718pt;}
.y1be{bottom:545.403194pt;}
.ybf{bottom:545.466667pt;}
.y85{bottom:546.106667pt;}
.y6d{bottom:547.226667pt;}
.y266{bottom:547.786667pt;}
.y13f{bottom:551.278223pt;}
.y11e{bottom:551.278234pt;}
.y108{bottom:552.506667pt;}
.y19e{bottom:555.023912pt;}
.yb5{bottom:555.226667pt;}
.y1bf{bottom:555.291146pt;}
.y348{bottom:558.026667pt;}
.y301{bottom:558.106667pt;}
.y2d0{bottom:559.546667pt;}
.yc{bottom:561.066667pt;}
.y2a2{bottom:561.866667pt;}
.y140{bottom:562.009003pt;}
.y11f{bottom:562.299033pt;}
.y178{bottom:563.226667pt;}
.y264{bottom:564.426667pt;}
.y19f{bottom:564.911863pt;}
.y1c0{bottom:565.446340pt;}
.y26{bottom:566.826667pt;}
.y84{bottom:568.586667pt;}
.y284{bottom:571.546667pt;}
.y45{bottom:572.186667pt;}
.y141{bottom:573.029804pt;}
.y120{bottom:573.029813pt;}
.y300{bottom:574.133333pt;}
.ybe{bottom:574.853333pt;}
.y1a0{bottom:575.067058pt;}
.y1c1{bottom:575.334291pt;}
.y57{bottom:576.533333pt;}
.y2cf{bottom:576.933333pt;}
.y2a1{bottom:577.893333pt;}
.y107{bottom:581.893333pt;}
.y142{bottom:583.760584pt;}
.y121{bottom:584.050614pt;}
.yb4{bottom:584.533333pt;}
.y1a1{bottom:584.955010pt;}
.y1c2{bottom:585.489486pt;}
.y2ff{bottom:590.133333pt;}
.yb{bottom:590.453333pt;}
.y177{bottom:592.533333pt;}
.y2ce{bottom:592.933333pt;}
.y2a0{bottom:593.893333pt;}
.y143{bottom:594.781384pt;}
.y122{bottom:594.781395pt;}
.y1a2{bottom:595.110205pt;}
.y1c3{bottom:595.377438pt;}
.y263{bottom:596.453333pt;}
.ya9{bottom:599.930179pt;}
.y44{bottom:601.493333pt;}
.y25{bottom:604.213333pt;}
.y1a3{bottom:604.998155pt;}
.y144{bottom:605.512164pt;}
.y1c4{bottom:605.532631pt;}
.y123{bottom:605.802194pt;}
.y56{bottom:605.893333pt;}
.y2fe{bottom:606.133333pt;}
.y29f{bottom:609.893333pt;}
.y2cd{bottom:610.293333pt;}
.y93{bottom:611.253333pt;}
.y261{bottom:613.173333pt;}
.y6c{bottom:613.893333pt;}
.y1a4{bottom:615.153350pt;}
.y1c5{bottom:615.420583pt;}
.y145{bottom:616.532965pt;}
.y124{bottom:616.532974pt;}
.y176{bottom:621.893333pt;}
.y2fd{bottom:622.133333pt;}
.ya{bottom:622.693333pt;}
.y1a5{bottom:625.041301pt;}
.y1c6{bottom:625.308535pt;}
.y2cc{bottom:626.293333pt;}
.y29e{bottom:627.173333pt;}
.y146{bottom:627.263745pt;}
.y125{bottom:627.553776pt;}
.y342{bottom:630.293333pt;}
.y43{bottom:630.853333pt;}
.y24{bottom:633.493333pt;}
.y1a6{bottom:634.929255pt;}
.y83{bottom:635.253333pt;}
.y1c7{bottom:635.463729pt;}
.y147{bottom:637.994525pt;}
.y2fc{bottom:638.133333pt;}
.y126{bottom:638.284556pt;}
.y106{bottom:640.533333pt;}
.y283{bottom:640.613333pt;}
.y29d{bottom:643.173333pt;}
.y55{bottom:643.253333pt;}
.y2cb{bottom:643.573333pt;}
.y1a7{bottom:645.084448pt;}
.y260{bottom:645.093333pt;}
.y1c8{bottom:645.351682pt;}
.y148{bottom:649.015325pt;}
.y127{bottom:649.305355pt;}
.y175{bottom:651.253333pt;}
.y2fb{bottom:654.133333pt;}
.y1a8{bottom:654.972401pt;}
.y1c9{bottom:655.506875pt;}
.y149{bottom:659.746106pt;}
.y128{bottom:660.036135pt;}
.y29c{bottom:660.533333pt;}
.y2ca{bottom:660.933333pt;}
.y9{bottom:661.333333pt;}
.y25f{bottom:661.813333pt;}
.y23{bottom:662.853333pt;}
.y82{bottom:664.533333pt;}
.y1ab{bottom:668.067254pt;}
.y1cc{bottom:668.334488pt;}
.y105{bottom:669.893333pt;}
.y2fa{bottom:670.133333pt;}
.y42{bottom:670.293333pt;}
.y325{bottom:670.613333pt;}
.y14a{bottom:670.766906pt;}
.y129{bottom:670.766915pt;}
.y54{bottom:672.533333pt;}
.y29b{bottom:676.533333pt;}
.y2c9{bottom:676.933333pt;}
.y25d{bottom:678.453333pt;}
.y174{bottom:680.533333pt;}
.y14b{bottom:681.497685pt;}
.y12a{bottom:681.787716pt;}
.y2f9{bottom:686.133333pt;}
.y22{bottom:692.133333pt;}
.y14c{bottom:692.518486pt;}
.y12b{bottom:692.518496pt;}
.y8{bottom:693.093333pt;}
.y81{bottom:693.893333pt;}
.y2c8{bottom:694.213333pt;}
.y104{bottom:699.173333pt;}
.y53{bottom:701.893333pt;}
.y2f8{bottom:702.133333pt;}
.y14d{bottom:703.249267pt;}
.y12c{bottom:703.539296pt;}
.yb3{bottom:707.253333pt;}
.y173{bottom:709.893333pt;}
.y2c7{bottom:710.213333pt;}
.y29a{bottom:711.173333pt;}
.ya8{bottom:712.735260pt;}
.y14e{bottom:714.270067pt;}
.y12d{bottom:714.270078pt;}
.y2f7{bottom:718.133333pt;}
.y340{bottom:720.453333pt;}
.y21{bottom:721.493333pt;}
.y80{bottom:723.173333pt;}
.y7{bottom:724.853333pt;}
.y25c{bottom:726.453333pt;}
.y299{bottom:727.173333pt;}
.y2c6{bottom:727.573333pt;}
.y103{bottom:728.533333pt;}
.y151{bottom:730.801267pt;}
.y130{bottom:731.091297pt;}
.y6b{bottom:731.173333pt;}
.y2f6{bottom:734.133333pt;}
.y41{bottom:739.173333pt;}
.y25b{bottom:743.093333pt;}
.y2c5{bottom:743.573333pt;}
.y298{bottom:744.533333pt;}
.y2f5{bottom:750.133333pt;}
.y20{bottom:750.773333pt;}
.y7f{bottom:752.533333pt;}
.y6{bottom:756.613333pt;}
.y282{bottom:757.813333pt;}
.y25a{bottom:759.813333pt;}
.y6a{bottom:760.533333pt;}
.y2c4{bottom:760.853333pt;}
.y2f4{bottom:766.133333pt;}
.y40{bottom:768.533333pt;}
.y102{bottom:768.613333pt;}
.y259{bottom:776.453333pt;}
.y297{bottom:776.533333pt;}
.y2c3{bottom:776.853333pt;}
.y1f{bottom:780.133333pt;}
.y7e{bottom:781.813333pt;}
.y2f3{bottom:782.133333pt;}
.y281{bottom:787.173333pt;}
.y69{bottom:789.813333pt;}
.y5{bottom:791.573333pt;}
.y33d{bottom:792.773333pt;}
.y258{bottom:793.093333pt;}
.y296{bottom:793.813333pt;}
.y2c2{bottom:794.213333pt;}
.y3f{bottom:797.813333pt;}
.y2f2{bottom:798.133333pt;}
.y1e{bottom:809.493333pt;}
.y257{bottom:809.813333pt;}
.y2c1{bottom:810.213333pt;}
.y7d{bottom:811.173333pt;}
.y2f1{bottom:814.053333pt;}
.y68{bottom:819.173333pt;}
.y4{bottom:826.453333pt;}
.y3e{bottom:827.173333pt;}
.y280{bottom:827.253333pt;}
.y2c0{bottom:827.573333pt;}
.y2f0{bottom:830.053333pt;}
.y1d{bottom:838.773333pt;}
.y256{bottom:841.813333pt;}
.y2bf{bottom:844.853333pt;}
.y2ef{bottom:846.053333pt;}
.y295{bottom:846.213333pt;}
.y67{bottom:848.533333pt;}
.y31e{bottom:850.373333pt;}
.y3d{bottom:856.533333pt;}
.y254{bottom:858.453333pt;}
.y2be{bottom:860.853333pt;}
.y2ee{bottom:862.053333pt;}
.y338{bottom:865.093333pt;}
.y1c{bottom:868.133333pt;}
.y3{bottom:875.893333pt;}
.y66{bottom:877.813333pt;}
.y2ed{bottom:878.053333pt;}
.y2bd{bottom:878.213333pt;}
.y3c{bottom:885.813333pt;}
.y253{bottom:890.453333pt;}
.y2bc{bottom:894.213333pt;}
.y2ec{bottom:894.773333pt;}
.y1b{bottom:897.413333pt;}
.y252{bottom:907.093333pt;}
.y7c{bottom:907.173333pt;}
.y2bb{bottom:911.493333pt;}
.y3b{bottom:915.173333pt;}
.y294{bottom:915.253333pt;}
.y251{bottom:924.453333pt;}
.y2{bottom:926.373333pt;}
.y1a{bottom:926.773333pt;}
.y2eb{bottom:926.853333pt;}
.y2ba{bottom:927.493333pt;}
.y24f{bottom:941.093333pt;}
.y3a{bottom:944.453333pt;}
.y2b9{bottom:944.853333pt;}
.y187{bottom:952.800000pt;}
.y1{bottom:960.560000pt;}
.y2b8{bottom:960.880000pt;}
.y19{bottom:966.160000pt;}
.y39{bottom:973.840000pt;}
.y10c{bottom:973.920000pt;}
.y2b7{bottom:976.880000pt;}
.y16{bottom:1068.320000pt;}
.h30{height:15.920000pt;}
.h2f{height:16.000000pt;}
.h31{height:16.026667pt;}
.h28{height:16.640000pt;}
.h26{height:16.666667pt;}
.h2b{height:16.720000pt;}
.h1f{height:25.888542pt;}
.h16{height:26.333426pt;}
.h11{height:26.833081pt;}
.h19{height:27.308738pt;}
.h1b{height:28.095225pt;}
.hd{height:29.281875pt;}
.h23{height:29.497930pt;}
.h20{height:31.641551pt;}
.hb{height:31.828125pt;}
.h2d{height:31.920000pt;}
.h2a{height:32.000000pt;}
.h2e{height:32.026667pt;}
.h17{height:32.185298pt;}
.h14{height:33.541351pt;}
.h1c{height:34.338609pt;}
.ha{height:34.374375pt;}
.h24{height:36.053026pt;}
.h21{height:37.394560pt;}
.h12{height:38.013531pt;}
.h18{height:38.037171pt;}
.h1d{height:40.581992pt;}
.h29{height:41.976562pt;}
.h8{height:42.331406pt;}
.h25{height:42.608121pt;}
.h13{height:46.957892pt;}
.he{height:47.742188pt;}
.h2c{height:48.000000pt;}
.h27{height:49.148438pt;}
.h33{height:50.753906pt;}
.hc{height:51.211406pt;}
.h3{height:53.152969pt;}
.h6{height:58.245469pt;}
.hf{height:63.656250pt;}
.h7{height:65.531250pt;}
.h38{height:71.600000pt;}
.h3b{height:71.626667pt;}
.h39{height:71.680000pt;}
.h9{height:84.981094pt;}
.h3a{height:89.520000pt;}
.h5{height:95.484375pt;}
.h2{height:105.987656pt;}
.h32{height:107.386667pt;}
.h37{height:107.440000pt;}
.h4{height:125.944062pt;}
.h36{height:143.200000pt;}
.h35{height:143.226667pt;}
.h34{height:179.040000pt;}
.h15{height:352.297374pt;}
.h22{height:394.633170pt;}
.h1e{height:682.268707pt;}
.h10{height:730.428522pt;}
.h1a{height:743.904075pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:40.160000pt;}
.w12{width:42.906667pt;}
.w17{width:47.146667pt;}
.w18{width:47.466667pt;}
.w11{width:49.120000pt;}
.w16{width:51.920000pt;}
.w15{width:54.080000pt;}
.we{width:94.560000pt;}
.wa{width:100.186667pt;}
.wc{width:109.146667pt;}
.wd{width:109.706667pt;}
.wf{width:117.626667pt;}
.wb{width:117.680000pt;}
.w9{width:126.640000pt;}
.w19{width:151.226667pt;}
.w10{width:170.826667pt;}
.w1b{width:207.946667pt;}
.w14{width:212.506667pt;}
.w4{width:397.387874pt;}
.w1a{width:412.613333pt;}
.w5{width:551.909947pt;}
.w6{width:580.890218pt;}
.w8{width:603.574188pt;}
.w7{width:603.669422pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5c{left:4.686123pt;}
.x7c{left:6.190768pt;}
.x57{left:7.294914pt;}
.x80{left:8.328595pt;}
.x47{left:9.570403pt;}
.xb3{left:10.586667pt;}
.x7d{left:12.604254pt;}
.xb1{left:14.080000pt;}
.x41{left:15.285449pt;}
.x3d{left:16.646175pt;}
.x4d{left:17.734748pt;}
.x91{left:19.552201pt;}
.xb2{left:20.640000pt;}
.x45{left:21.544782pt;}
.x46{left:22.905506pt;}
.x90{left:23.827859pt;}
.x40{left:25.082668pt;}
.xb0{left:26.000000pt;}
.x5b{left:27.295623pt;}
.x3f{left:28.348407pt;}
.x9e{left:29.314977pt;}
.x44{left:30.797710pt;}
.xaf{left:31.840000pt;}
.x9d{left:32.973005pt;}
.x42{left:34.063450pt;}
.x49{left:35.152027pt;}
.x48{left:36.512752pt;}
.x7e{left:37.456513pt;}
.x3e{left:38.417770pt;}
.x4b{left:39.778489pt;}
.x7f{left:41.732171pt;}
.x7b{left:43.068316pt;}
.x9b{left:44.556753pt;}
.x59{left:46.136872pt;}
.x54{left:47.586202pt;}
.xa7{left:48.666667pt;}
.x4a{left:49.847853pt;}
.x53{left:51.354452pt;}
.x8f{left:52.421321pt;}
.x5a{left:53.383507pt;}
.x43{left:55.290755pt;}
.x1a{left:56.922922pt;}
.x58{left:58.021354pt;}
.x56{left:59.470682pt;}
.x4c{left:61.005794pt;}
.x4e{left:65.087975pt;}
.x9c{left:66.809739pt;}
.x55{left:67.876778pt;}
.x9f{left:68.943583pt;}
.xa8{left:71.706667pt;}
.x50{left:74.068750pt;}
.xa0{left:75.040291pt;}
.x83{left:78.609716pt;}
.xaa{left:80.746667pt;}
.xa9{left:89.200000pt;}
.xa1{left:91.501412pt;}
.x1{left:94.559988pt;}
.x8{left:97.759988pt;}
.x23{left:99.039988pt;}
.x9{left:104.026655pt;}
.x19{left:105.714013pt;}
.x81{left:110.142696pt;}
.xb{left:113.546655pt;}
.x16{left:123.361849pt;}
.x5d{left:130.197834pt;}
.x2{left:132.426655pt;}
.xa{left:141.866655pt;}
.x1c{left:156.581321pt;}
.x82{left:160.114444pt;}
.x4f{left:162.515864pt;}
.x92{left:165.726250pt;}
.xa3{left:170.106667pt;}
.x18{left:172.983432pt;}
.x78{left:174.837102pt;}
.x5e{left:178.605352pt;}
.x75{left:182.953334pt;}
.x72{left:184.692527pt;}
.xa2{left:185.695564pt;}
.x6e{left:187.591182pt;}
.x6f{left:191.939162pt;}
.x15{left:193.745592pt;}
.x71{left:196.287142pt;}
.x6d{left:199.475662pt;}
.x76{left:201.794583pt;}
.x12{left:203.088570pt;}
.x1b{left:206.202899pt;}
.x6c{left:207.302027pt;}
.x70{left:209.620950pt;}
.x14{left:210.562951pt;}
.x11{left:214.300143pt;}
.x6b{left:215.418258pt;}
.x74{left:217.447314pt;}
.x77{left:218.606775pt;}
.x10{left:221.774522pt;}
.x73{left:237.737890pt;}
.xb4{left:245.786667pt;}
.x7a{left:254.260214pt;}
.x1d{left:256.654964pt;}
.x79{left:261.796718pt;}
.x84{left:266.471427pt;}
.x86{left:281.970685pt;}
.x7{left:286.586655pt;}
.x88{left:291.056457pt;}
.x26{left:292.328999pt;}
.xa4{left:296.746667pt;}
.x5f{left:297.740020pt;}
.x85{left:300.142230pt;}
.x30{left:301.309778pt;}
.x89{left:302.280058pt;}
.x87{left:304.952345pt;}
.x8a{left:306.555715pt;}
.x1e{left:309.598489pt;}
.x60{left:310.783961pt;}
.x94{left:312.701979pt;}
.x39{left:313.828442pt;}
.x93{left:315.908722pt;}
.x8c{left:317.244859pt;}
.x2f{left:318.727055pt;}
.x13{left:320.187189pt;}
.x95{left:321.520522pt;}
.x68{left:322.958304pt;}
.x66{left:324.987362pt;}
.x2b{left:326.347115pt;}
.x38{left:328.252124pt;}
.x34{left:329.340705pt;}
.x2e{left:331.245722pt;}
.x29{left:332.606450pt;}
.x28{left:333.695030pt;}
.x62{left:336.002248pt;}
.x2d{left:338.049347pt;}
.x33{left:339.410069pt;}
.x8b{left:340.760976pt;}
.x36{left:342.131516pt;}
.x31{left:343.492244pt;}
.x2a{left:345.125117pt;}
.x32{left:346.485838pt;}
.x67{left:348.176591pt;}
.x27{left:349.479436pt;}
.x37{left:351.112299pt;}
.x98{left:352.135714pt;}
.x63{left:353.394170pt;}
.x2c{left:355.738768pt;}
.x17{left:357.559094pt;}
.x1f{left:358.804823pt;}
.x65{left:360.350939pt;}
.x61{left:362.090132pt;}
.x35{left:366.352416pt;}
.x97{left:373.474197pt;}
.x64{left:376.293534pt;}
.x3a{left:380.231815pt;}
.x3c{left:383.769691pt;}
.x6a{left:391.656397pt;}
.x21{left:393.413310pt;}
.x8d{left:394.473929pt;}
.x3{left:396.933322pt;}
.x22{left:398.613322pt;}
.xa6{left:406.453333pt;}
.x99{left:412.188299pt;}
.x8e{left:431.351476pt;}
.x96{left:439.902796pt;}
.x3b{left:458.609558pt;}
.x69{left:473.108571pt;}
.x9a{left:488.092325pt;}
.xf{left:492.613322pt;}
.x5{left:501.493310pt;}
.x6{left:504.933322pt;}
.xa5{left:514.613333pt;}
.xc{left:546.079976pt;}
.xd{left:550.879988pt;}
.xac{left:611.440000pt;}
.x25{left:647.599988pt;}
.xad{left:665.520000pt;}
.x52{left:676.639988pt;}
.xab{left:686.079988pt;}
.x20{left:687.759988pt;}
.x51{left:689.119988pt;}
.x24{left:690.799988pt;}
.x4{left:693.359988pt;}
.xe{left:699.279988pt;}
.xae{left:717.440000pt;}
}




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