
    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_d7722d08888d284b43158378.woff')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_de49a2597a6586d9dfa6c88f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.115000;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_026a2023d31db65c262388eb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.131000;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_3c29daff72818a3803b4428f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.934000;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_3b2a1cd9eea2c93468353f3d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.934000;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_a8ec71eae3437a29c071ea30.woff')format("woff");}.ff6{font-family:ff6;line-height:1.121000;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_7ad776a41685a4e99d810c7c.woff')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_7ad776a41685a4e99d810c7c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_bba518bf910801266c5e7c8d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.107000;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_6f1d322be958bafdb2bb6350.woff')format("woff");}.ffa{font-family:ffa;line-height:0.912000;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_91627d13cc94aa1482e3e696.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_17cea610d1084687efaa8354.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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;}
.m4{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m3{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.000000px;}
.v3{vertical-align:39.124800px;}
.v2{vertical-align:60.000000px;}
.lse{letter-spacing:-9.420000px;}
.ls5{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.420000px;}
.ls10{letter-spacing:2.147400px;}
.ls8{letter-spacing:2.461800px;}
.ls1{letter-spacing:3.000000px;}
.lsb{letter-spacing:4.081200px;}
.ls4{letter-spacing:7.447200px;}
.lsa{letter-spacing:7.458000px;}
.ls0{letter-spacing:10.080000px;}
.lsf{letter-spacing:11.434800px;}
.lsc{letter-spacing:11.841000px;}
.ls7{letter-spacing:241.723800px;}
.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;}
}
.ws9f{word-spacing:-72.000000px;}
.wsa0{word-spacing:-63.304800px;}
.wsa4{word-spacing:-62.138400px;}
.wsa1{word-spacing:-62.016000px;}
.wsc9{word-spacing:-61.908600px;}
.wsa2{word-spacing:-61.908000px;}
.wsa3{word-spacing:-61.857600px;}
.ws1{word-spacing:-21.756000px;}
.ws102{word-spacing:-17.100000px;}
.ws3{word-spacing:-16.680000px;}
.ws8a{word-spacing:-15.012000px;}
.ws25{word-spacing:-11.676000px;}
.ws6{word-spacing:-10.080000px;}
.ws2{word-spacing:-9.674400px;}
.ws0{word-spacing:-8.006567px;}
.ws5{word-spacing:-7.980000px;}
.ws108{word-spacing:-7.560000px;}
.wse8{word-spacing:-7.320000px;}
.wsf1{word-spacing:-6.900000px;}
.ws10e{word-spacing:-6.480000px;}
.wsc1{word-spacing:-6.420000px;}
.wse9{word-spacing:-6.120000px;}
.wsfc{word-spacing:-5.580000px;}
.wsee{word-spacing:-5.280000px;}
.ws15{word-spacing:-4.500000px;}
.ws22{word-spacing:-4.440000px;}
.wse3{word-spacing:-4.260000px;}
.wsb0{word-spacing:-4.080000px;}
.ws88{word-spacing:-3.660000px;}
.wsea{word-spacing:-3.540000px;}
.wsdf{word-spacing:-3.480000px;}
.wscd{word-spacing:-3.420000px;}
.ws109{word-spacing:-3.360000px;}
.ws9b{word-spacing:-3.300000px;}
.ws40{word-spacing:-3.240000px;}
.wsb7{word-spacing:-3.180000px;}
.wscc{word-spacing:-3.120000px;}
.ws5e{word-spacing:-3.060000px;}
.ws79{word-spacing:-3.000000px;}
.wsbe{word-spacing:-2.940000px;}
.wsd8{word-spacing:-2.880000px;}
.ws81{word-spacing:-2.820000px;}
.ws4f{word-spacing:-2.760000px;}
.wsc0{word-spacing:-2.700000px;}
.ws58{word-spacing:-2.640000px;}
.ws87{word-spacing:-2.580000px;}
.ws85{word-spacing:-2.520000px;}
.ws80{word-spacing:-2.460000px;}
.ws1a{word-spacing:-2.400000px;}
.wsc4{word-spacing:-2.340000px;}
.wsb2{word-spacing:-2.280000px;}
.wsd7{word-spacing:-2.220000px;}
.wsc6{word-spacing:-2.160000px;}
.wsab{word-spacing:-2.100000px;}
.ws83{word-spacing:-2.040000px;}
.ws52{word-spacing:-1.980000px;}
.ws4a{word-spacing:-1.920000px;}
.ws43{word-spacing:-1.860000px;}
.wsa5{word-spacing:-1.800000px;}
.ws39{word-spacing:-1.740000px;}
.ws86{word-spacing:-1.680000px;}
.ws23{word-spacing:-1.620000px;}
.ws6b{word-spacing:-1.560000px;}
.ws78{word-spacing:-1.500000px;}
.ws50{word-spacing:-1.440000px;}
.ws64{word-spacing:-1.380000px;}
.ws5d{word-spacing:-1.320000px;}
.ws9{word-spacing:-1.260000px;}
.wsc2{word-spacing:-1.200000px;}
.wsbf{word-spacing:-1.140000px;}
.ws71{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.020000px;}
.ws30{word-spacing:-0.960000px;}
.ws5f{word-spacing:-0.900000px;}
.ws6f{word-spacing:-0.840000px;}
.wscb{word-spacing:-0.780000px;}
.ws5a{word-spacing:-0.720000px;}
.ws2f{word-spacing:-0.660000px;}
.ws56{word-spacing:-0.600000px;}
.ws3e{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.480000px;}
.wsa6{word-spacing:-0.420000px;}
.ws62{word-spacing:-0.360000px;}
.wsb3{word-spacing:-0.300000px;}
.ws35{word-spacing:-0.240000px;}
.ws53{word-spacing:-0.180000px;}
.ws12{word-spacing:-0.120000px;}
.ws32{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.wsb9{word-spacing:0.042000px;}
.ws51{word-spacing:0.060000px;}
.wsba{word-spacing:0.084000px;}
.wsae{word-spacing:0.120000px;}
.wsc5{word-spacing:0.180000px;}
.ws66{word-spacing:0.240000px;}
.ws6e{word-spacing:0.300000px;}
.ws28{word-spacing:0.360000px;}
.ws36{word-spacing:0.420000px;}
.ws37{word-spacing:0.480000px;}
.ws49{word-spacing:0.540000px;}
.wsbb{word-spacing:0.600000px;}
.ws77{word-spacing:0.660000px;}
.ws82{word-spacing:0.720000px;}
.ws57{word-spacing:0.780000px;}
.ws33{word-spacing:0.840000px;}
.ws1e{word-spacing:0.900000px;}
.ws31{word-spacing:0.960000px;}
.ws73{word-spacing:1.020000px;}
.wsa9{word-spacing:1.080000px;}
.ws16{word-spacing:1.140000px;}
.wse{word-spacing:1.200000px;}
.ws3d{word-spacing:1.260000px;}
.ws6c{word-spacing:1.320000px;}
.ws11{word-spacing:1.380000px;}
.ws2b{word-spacing:1.440000px;}
.ws7d{word-spacing:1.500000px;}
.ws21{word-spacing:1.560000px;}
.ws42{word-spacing:1.620000px;}
.wsb{word-spacing:1.680000px;}
.ws60{word-spacing:1.740000px;}
.wsd1{word-spacing:1.800000px;}
.ws65{word-spacing:1.860000px;}
.wsb1{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws4c{word-spacing:2.040000px;}
.ws34{word-spacing:2.100000px;}
.ws1b{word-spacing:2.160000px;}
.ws76{word-spacing:2.220000px;}
.ws4b{word-spacing:2.280000px;}
.ws61{word-spacing:2.340000px;}
.wsac{word-spacing:2.400000px;}
.ws70{word-spacing:2.460000px;}
.ws44{word-spacing:2.520000px;}
.ws7e{word-spacing:2.580000px;}
.ws55{word-spacing:2.640000px;}
.ws74{word-spacing:2.700000px;}
.ws7b{word-spacing:2.760000px;}
.ws45{word-spacing:2.820000px;}
.ws75{word-spacing:2.880000px;}
.wsd4{word-spacing:2.940000px;}
.wsc7{word-spacing:3.000000px;}
.ws4e{word-spacing:3.060000px;}
.wsf{word-spacing:3.120000px;}
.ws46{word-spacing:3.180000px;}
.ws6d{word-spacing:3.240000px;}
.ws13{word-spacing:3.300000px;}
.wsb4{word-spacing:3.360000px;}
.ws5c{word-spacing:3.420000px;}
.ws3f{word-spacing:3.480000px;}
.ws2c{word-spacing:3.540000px;}
.wsa8{word-spacing:3.600000px;}
.ws38{word-spacing:3.660000px;}
.ws84{word-spacing:3.720000px;}
.ws2d{word-spacing:3.780000px;}
.ws54{word-spacing:3.840000px;}
.ws72{word-spacing:3.900000px;}
.ws26{word-spacing:3.960000px;}
.ws69{word-spacing:4.020000px;}
.ws17{word-spacing:4.080000px;}
.ws7{word-spacing:4.140000px;}
.wsb8{word-spacing:4.200000px;}
.ws29{word-spacing:4.260000px;}
.ws5b{word-spacing:4.320000px;}
.ws7a{word-spacing:4.380000px;}
.ws2a{word-spacing:4.440000px;}
.wsad{word-spacing:4.500000px;}
.ws89{word-spacing:4.560000px;}
.wsce{word-spacing:4.620000px;}
.ws68{word-spacing:4.680000px;}
.wsd{word-spacing:4.740000px;}
.ws2e{word-spacing:4.800000px;}
.wsbd{word-spacing:4.860000px;}
.ws9c{word-spacing:4.920000px;}
.wsaa{word-spacing:4.980000px;}
.wsd3{word-spacing:5.040000px;}
.ws3b{word-spacing:5.100000px;}
.wsdc{word-spacing:5.160000px;}
.wsd5{word-spacing:5.220000px;}
.wsed{word-spacing:5.280000px;}
.ws47{word-spacing:5.340000px;}
.wsf0{word-spacing:5.400000px;}
.ws7c{word-spacing:5.520000px;}
.ws14{word-spacing:5.580000px;}
.ws7f{word-spacing:5.640000px;}
.ws9d{word-spacing:5.700000px;}
.wsaf{word-spacing:5.760000px;}
.wsb6{word-spacing:5.820000px;}
.ws63{word-spacing:5.880000px;}
.wsd2{word-spacing:5.940000px;}
.wsde{word-spacing:6.060000px;}
.wsd6{word-spacing:6.120000px;}
.ws20{word-spacing:6.180000px;}
.ws48{word-spacing:6.240000px;}
.ws6a{word-spacing:6.300000px;}
.wsd9{word-spacing:6.360000px;}
.wsbc{word-spacing:6.420000px;}
.wsa7{word-spacing:6.540000px;}
.wsf6{word-spacing:6.600000px;}
.ws106{word-spacing:6.720000px;}
.ws67{word-spacing:6.840000px;}
.wsdd{word-spacing:6.960000px;}
.wseb{word-spacing:7.020000px;}
.wse0{word-spacing:7.080000px;}
.wsc3{word-spacing:7.140000px;}
.wsfe{word-spacing:7.200000px;}
.ws59{word-spacing:7.260000px;}
.ws10d{word-spacing:7.320000px;}
.ws4d{word-spacing:7.380000px;}
.wsc{word-spacing:7.440000px;}
.wse1{word-spacing:7.620000px;}
.ws1c{word-spacing:7.680000px;}
.ws107{word-spacing:7.800000px;}
.wscf{word-spacing:7.860000px;}
.wsd0{word-spacing:7.980000px;}
.wsdb{word-spacing:8.040000px;}
.ws19{word-spacing:8.340000px;}
.ws10b{word-spacing:8.760000px;}
.wsb5{word-spacing:8.940000px;}
.wse6{word-spacing:9.000000px;}
.wsfb{word-spacing:9.060000px;}
.wsda{word-spacing:9.120000px;}
.ws3a{word-spacing:9.180000px;}
.wsca{word-spacing:9.240000px;}
.wsf4{word-spacing:9.300000px;}
.ws3c{word-spacing:9.360000px;}
.wsf7{word-spacing:9.420000px;}
.ws10{word-spacing:9.540000px;}
.wsa{word-spacing:9.600000px;}
.wsec{word-spacing:9.780000px;}
.wsfa{word-spacing:9.900000px;}
.ws10c{word-spacing:10.620000px;}
.ws101{word-spacing:10.800000px;}
.wse2{word-spacing:11.220000px;}
.ws111{word-spacing:11.460000px;}
.ws105{word-spacing:11.580000px;}
.ws104{word-spacing:11.700000px;}
.wsf9{word-spacing:11.820000px;}
.wsf5{word-spacing:13.140000px;}
.ws1d{word-spacing:14.940000px;}
.wse4{word-spacing:15.180000px;}
.ws10a{word-spacing:15.300000px;}
.wsfd{word-spacing:15.840000px;}
.wsf2{word-spacing:15.900000px;}
.ws24{word-spacing:16.020000px;}
.ws1f{word-spacing:16.560000px;}
.ws10f{word-spacing:16.620000px;}
.ws110{word-spacing:17.580000px;}
.ws112{word-spacing:18.060000px;}
.ws113{word-spacing:18.420000px;}
.wsff{word-spacing:18.480000px;}
.wsef{word-spacing:18.960000px;}
.wse7{word-spacing:19.140000px;}
.ws18{word-spacing:22.440000px;}
.ws103{word-spacing:22.740000px;}
.ws100{word-spacing:23.520000px;}
.wsf8{word-spacing:32.880000px;}
.wsf3{word-spacing:57.480000px;}
.wse5{word-spacing:61.440000px;}
.ws92{word-spacing:87.946800px;}
.ws93{word-spacing:116.449800px;}
.ws97{word-spacing:119.870400px;}
.ws95{word-spacing:122.206800px;}
.ws94{word-spacing:141.913800px;}
.ws99{word-spacing:173.668800px;}
.ws98{word-spacing:187.195200px;}
.ws8e{word-spacing:192.706200px;}
.ws8d{word-spacing:198.479400px;}
.ws8c{word-spacing:234.653400px;}
.ws8b{word-spacing:246.757800px;}
.ws96{word-spacing:319.056000px;}
.ws9e{word-spacing:378.240600px;}
.ws9a{word-spacing:591.677400px;}
.ws90{word-spacing:769.105200px;}
.ws91{word-spacing:778.305000px;}
.ws8f{word-spacing:830.125200px;}
.wsc8{word-spacing:1152.099000px;}
._19{margin-left:-20.400000px;}
._1b{margin-left:-17.640000px;}
._1a{margin-left:-16.200000px;}
._1d{margin-left:-15.012000px;}
._27{margin-left:-10.001967px;}
._28{margin-left:-8.915967px;}
._25{margin-left:-7.740000px;}
._6{margin-left:-6.660000px;}
._5{margin-left:-5.015967px;}
._1{margin-left:-3.864000px;}
._3{margin-left:-2.759967px;}
._0{margin-left:-1.584033px;}
._2{width:1.080000px;}
._21{width:2.947833px;}
._1e{width:4.612800px;}
._18{width:7.423200px;}
._29{width:8.599767px;}
._2b{width:9.817833px;}
._2a{width:11.921400px;}
._1f{width:15.012000px;}
._2c{width:18.401400px;}
._20{width:21.714000px;}
._26{width:25.260000px;}
._24{width:61.440000px;}
._13{width:96.309600px;}
._23{width:111.906000px;}
._10{width:142.924800px;}
._11{width:169.849800px;}
._8{width:195.903000px;}
._d{width:216.518967px;}
._e{width:220.134600px;}
._a{width:255.263400px;}
._12{width:264.699600px;}
._15{width:285.276600px;}
._7{width:297.624000px;}
._14{width:341.862000px;}
._f{width:354.512400px;}
._22{width:610.837200px;}
._c{width:627.261600px;}
._b{width:654.510000px;}
._1c{width:741.305400px;}
._9{width:754.546800px;}
._16{width:795.504000px;}
._17{width:918.148800px;}
._4{width:2385.306033px;}
.fc5{color:rgb(219,0,0);}
.fc3{color:rgb(248,156,14);}
.fc6{color:rgb(0,0,0);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(68,65,65);}
.fs0{font-size:22.080600px;}
.fs1{font-size:28.800600px;}
.fs3{font-size:34.800000px;}
.fs2{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs9{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:54.900000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:79.137900px;}
.y41{bottom:85.039350px;}
.y1d{bottom:89.291250px;}
.y1c{bottom:99.731250px;}
.y40{bottom:103.039350px;}
.y1b{bottom:110.171250px;}
.y210{bottom:119.055000px;}
.y8c{bottom:119.055150px;}
.y158{bottom:119.055300px;}
.y408{bottom:119.080200px;}
.y1a{bottom:125.298300px;}
.y3f{bottom:129.543300px;}
.y20f{bottom:131.655000px;}
.y19{bottom:135.738300px;}
.y8b{bottom:137.133000px;}
.y396{bottom:137.157300px;}
.y274{bottom:137.178450px;}
.y16d{bottom:137.190000px;}
.y126{bottom:137.212950px;}
.y493{bottom:137.269800px;}
.y464{bottom:137.295450px;}
.y3c8{bottom:137.309250px;}
.yf4{bottom:137.317800px;}
.y241{bottom:137.321100px;}
.y2d9{bottom:137.354400px;}
.y2a6{bottom:137.372100px;}
.y33c{bottom:137.406150px;}
.y30b{bottom:137.536800px;}
.y1dc{bottom:137.669100px;}
.y436{bottom:137.692050px;}
.yc0{bottom:137.713200px;}
.y157{bottom:137.799750px;}
.y1a9{bottom:137.826450px;}
.y407{bottom:137.860200px;}
.y20e{bottom:144.255000px;}
.y18{bottom:146.178300px;}
.y3e{bottom:147.543300px;}
.y8a{bottom:155.210850px;}
.y395{bottom:155.259600px;}
.y273{bottom:155.301750px;}
.y16c{bottom:155.324700px;}
.y125{bottom:155.371050px;}
.y463{bottom:155.535900px;}
.y3c7{bottom:155.563350px;}
.yf3{bottom:155.580450px;}
.y240{bottom:155.587050px;}
.y2d8{bottom:155.653800px;}
.y2a5{bottom:155.689200px;}
.y33b{bottom:155.757150px;}
.y30a{bottom:156.018600px;}
.y1db{bottom:156.283050px;}
.y435{bottom:156.328950px;}
.ybf{bottom:156.371550px;}
.y156{bottom:156.544200px;}
.y1a8{bottom:156.597900px;}
.y20d{bottom:156.855000px;}
.y17{bottom:159.807300px;}
.y492{bottom:163.988400px;}
.y406{bottom:165.145200px;}
.y3d{bottom:165.543300px;}
.y89{bottom:173.288850px;}
.y394{bottom:173.361900px;}
.y272{bottom:173.425050px;}
.y16b{bottom:173.459550px;}
.y462{bottom:173.776200px;}
.y3c6{bottom:173.817450px;}
.yf2{bottom:173.843250px;}
.y23f{bottom:173.853150px;}
.y2d7{bottom:173.953350px;}
.y2a4{bottom:174.006300px;}
.y33a{bottom:174.108150px;}
.y309{bottom:174.500400px;}
.y1da{bottom:174.896850px;}
.ybe{bottom:175.029750px;}
.y1a7{bottom:175.369200px;}
.y155{bottom:179.540550px;}
.y124{bottom:182.032950px;}
.y491{bottom:182.203200px;}
.y434{bottom:183.469800px;}
.y3c{bottom:183.543300px;}
.y405{bottom:183.925200px;}
.y88{bottom:191.366700px;}
.y393{bottom:191.464200px;}
.y3c5{bottom:192.071550px;}
.yf1{bottom:192.106050px;}
.y23e{bottom:192.119250px;}
.y16{bottom:192.157050px;}
.y2d6{bottom:192.252750px;}
.y2a3{bottom:192.323400px;}
.y339{bottom:192.459300px;}
.y1d9{bottom:193.510800px;}
.ybd{bottom:193.687950px;}
.y1a6{bottom:194.140650px;}
.y20c{bottom:194.966850px;}
.y16a{bottom:195.846450px;}
.y154{bottom:198.285150px;}
.y271{bottom:200.052300px;}
.y123{bottom:200.190900px;}
.y461{bottom:200.520600px;}
.y308{bottom:201.486000px;}
.y3b{bottom:201.543300px;}
.y433{bottom:202.106700px;}
.y15{bottom:202.957050px;}
.y490{bottom:208.921800px;}
.y392{bottom:209.566500px;}
.yf0{bottom:210.368700px;}
.y23d{bottom:210.385200px;}
.y338{bottom:210.810450px;}
.y404{bottom:211.210200px;}
.y1d8{bottom:212.124750px;}
.ybc{bottom:212.346150px;}
.y1a5{bottom:212.911950px;}
.y14{bottom:213.397050px;}
.y20b{bottom:213.550500px;}
.y2d5{bottom:214.804050px;}
.y87{bottom:217.948650px;}
.y270{bottom:218.175600px;}
.y122{bottom:218.348850px;}
.y460{bottom:218.761050px;}
.y3c4{bottom:218.829750px;}
.y2a2{bottom:219.144450px;}
.y362{bottom:219.314250px;}
.y3a{bottom:219.543300px;}
.y307{bottom:219.967650px;}
.y13{bottom:223.837050px;}
.y153{bottom:225.533550px;}
.y48f{bottom:227.136600px;}
.yef{bottom:228.631500px;}
.y23c{bottom:228.651150px;}
.y432{bottom:229.247550px;}
.y403{bottom:229.990200px;}
.ybb{bottom:231.004350px;}
.y20a{bottom:232.134000px;}
.y86{bottom:236.026500px;}
.y391{bottom:236.172750px;}
.y26f{bottom:236.299050px;}
.y121{bottom:236.506950px;}
.y3c3{bottom:237.083850px;}
.y2a1{bottom:237.461550px;}
.y12{bottom:237.466050px;}
.y39{bottom:237.543300px;}
.y337{bottom:237.665400px;}
.y306{bottom:238.449450px;}
.y1d7{bottom:239.242650px;}
.y1a4{bottom:240.187350px;}
.y169{bottom:243.093000px;}
.y152{bottom:244.277850px;}
.y48e{bottom:245.351250px;}
.y45f{bottom:245.505300px;}
.yee{bottom:246.894150px;}
.y431{bottom:247.884450px;}
.y402{bottom:248.770200px;}
.yba{bottom:249.662550px;}
.y209{bottom:250.717650px;}
.y23b{bottom:251.169150px;}
.y85{bottom:254.104500px;}
.y390{bottom:254.275050px;}
.y26e{bottom:254.422350px;}
.y120{bottom:254.664900px;}
.y3c2{bottom:255.337950px;}
.y38{bottom:255.543300px;}
.y2a0{bottom:255.778650px;}
.y336{bottom:256.016400px;}
.y305{bottom:256.931250px;}
.y1d6{bottom:257.856600px;}
.y1a3{bottom:258.958800px;}
.y168{bottom:261.227850px;}
.y2d4{bottom:262.215300px;}
.y151{bottom:263.022450px;}
.y48d{bottom:263.566050px;}
.y45e{bottom:263.745750px;}
.yed{bottom:265.156950px;}
.y430{bottom:266.521500px;}
.yb9{bottom:268.320750px;}
.y11{bottom:269.187150px;}
.y208{bottom:269.301300px;}
.y84{bottom:272.182500px;}
.y38f{bottom:272.377200px;}
.y26d{bottom:272.545650px;}
.y11f{bottom:272.822850px;}
.y37{bottom:273.543300px;}
.y3c1{bottom:273.592050px;}
.y29f{bottom:274.095750px;}
.y335{bottom:274.367550px;}
.y304{bottom:275.412900px;}
.y401{bottom:276.055200px;}
.y1d5{bottom:276.470550px;}
.y1a2{bottom:277.730100px;}
.y167{bottom:279.362700px;}
.y2d3{bottom:280.514700px;}
.y10{bottom:280.690200px;}
.y150{bottom:281.766750px;}
.y45d{bottom:281.986200px;}
.yb8{bottom:286.978950px;}
.y207{bottom:287.884950px;}
.y83{bottom:290.260350px;}
.y48c{bottom:290.284650px;}
.y38e{bottom:290.479500px;}
.y11e{bottom:290.980800px;}
.y36{bottom:291.543300px;}
.y3c0{bottom:291.846150px;}
.yec{bottom:291.923550px;}
.y29e{bottom:292.412850px;}
.y334{bottom:292.718550px;}
.y42f{bottom:293.662350px;}
.y303{bottom:293.894700px;}
.y400{bottom:294.835200px;}
.y1d4{bottom:295.084500px;}
.y1a1{bottom:296.501550px;}
.y361{bottom:296.970450px;}
.y166{bottom:297.497550px;}
.y23a{bottom:298.547100px;}
.y2d2{bottom:298.814100px;}
.y26c{bottom:299.172900px;}
.y14f{bottom:300.511350px;}
.yb7{bottom:305.637150px;}
.y82{bottom:308.338200px;}
.y48b{bottom:308.499450px;}
.y38d{bottom:308.581800px;}
.y45c{bottom:308.730450px;}
.y11d{bottom:309.138750px;}
.y35{bottom:309.543300px;}
.y3bf{bottom:310.100400px;}
.yeb{bottom:310.186350px;}
.yf{bottom:310.298100px;}
.y29d{bottom:310.729950px;}
.y333{bottom:311.069700px;}
.y42e{bottom:312.299250px;}
.y302{bottom:312.376500px;}
.y3ff{bottom:313.615200px;}
.y1d3{bottom:313.698450px;}
.y206{bottom:314.972400px;}
.y1a0{bottom:315.272850px;}
.y239{bottom:316.813050px;}
.y2d1{bottom:317.113500px;}
.y26b{bottom:317.296200px;}
.ye{bottom:321.098100px;}
.y165{bottom:324.136350px;}
.yb6{bottom:324.295500px;}
.y81{bottom:326.416200px;}
.y38c{bottom:326.684100px;}
.y45b{bottom:326.970900px;}
.y11c{bottom:327.296850px;}
.y34{bottom:327.543300px;}
.y14e{bottom:327.759750px;}
.y3be{bottom:328.354500px;}
.yea{bottom:328.449150px;}
.y29c{bottom:329.047050px;}
.y332{bottom:329.420700px;}
.y301{bottom:330.858150px;}
.yd{bottom:331.538100px;}
.y1d2{bottom:332.312400px;}
.y205{bottom:333.556050px;}
.y19f{bottom:334.044300px;}
.y238{bottom:335.079000px;}
.y48a{bottom:335.218050px;}
.y2d0{bottom:335.412900px;}
.y26a{bottom:335.419500px;}
.y42d{bottom:339.440100px;}
.y3fe{bottom:340.900200px;}
.yc{bottom:341.978100px;}
.y164{bottom:342.271050px;}
.y360{bottom:344.433450px;}
.y80{bottom:344.494050px;}
.y11b{bottom:345.454800px;}
.y33{bottom:345.543300px;}
.y14d{bottom:346.504200px;}
.ye9{bottom:346.711800px;}
.y29b{bottom:347.364150px;}
.y331{bottom:347.771700px;}
.y300{bottom:349.339950px;}
.y1d1{bottom:350.926350px;}
.yb5{bottom:351.457650px;}
.y204{bottom:352.139700px;}
.yb{bottom:352.418100px;}
.y38b{bottom:353.290350px;}
.y237{bottom:353.345100px;}
.y489{bottom:353.432700px;}
.y269{bottom:353.542950px;}
.y2cf{bottom:353.712300px;}
.y45a{bottom:353.715150px;}
.y3bd{bottom:355.112550px;}
.y19e{bottom:357.067500px;}
.y42c{bottom:358.077000px;}
.y3fd{bottom:359.680200px;}
.y163{bottom:360.405900px;}
.y7f{bottom:362.572050px;}
.y35f{bottom:362.784450px;}
.ya{bottom:362.858100px;}
.y32{bottom:363.543300px;}
.ye8{bottom:364.974450px;}
.y14c{bottom:365.248650px;}
.y29a{bottom:365.681250px;}
.y330{bottom:366.122850px;}
.y2ff{bottom:367.821600px;}
.y1d0{bottom:369.540150px;}
.yb4{bottom:370.115700px;}
.y203{bottom:370.723350px;}
.y38a{bottom:371.392500px;}
.y236{bottom:371.611050px;}
.y488{bottom:371.647500px;}
.y268{bottom:371.666250px;}
.y459{bottom:371.955600px;}
.y2ce{bottom:372.011700px;}
.y11a{bottom:372.116700px;}
.y9{bottom:373.298100px;}
.y3bc{bottom:373.366650px;}
.y42b{bottom:376.713900px;}
.y3fc{bottom:378.460200px;}
.y162{bottom:378.540750px;}
.y7e{bottom:380.649900px;}
.y35e{bottom:381.135600px;}
.ye7{bottom:383.237250px;}
.y8{bottom:383.738100px;}
.y14b{bottom:383.993100px;}
.y31{bottom:385.795200px;}
.y2fe{bottom:386.303400px;}
.y299{bottom:388.250250px;}
.yb3{bottom:388.774050px;}
.y202{bottom:389.306850px;}
.y389{bottom:389.494800px;}
.y267{bottom:389.789550px;}
.y235{bottom:389.877150px;}
.y458{bottom:390.196050px;}
.y119{bottom:390.274650px;}
.y2cd{bottom:390.311100px;}
.y3bb{bottom:391.620900px;}
.y32f{bottom:392.977800px;}
.y42a{bottom:395.350950px;}
.y1cf{bottom:396.658050px;}
.y161{bottom:396.675600px;}
.y3fb{bottom:397.240200px;}
.y7{bottom:397.367100px;}
.y487{bottom:398.366100px;}
.y7d{bottom:398.727900px;}
.y35d{bottom:399.486600px;}
.y19d{bottom:401.350800px;}
.ye6{bottom:401.500050px;}
.y2fd{bottom:404.785200px;}
.yb2{bottom:407.432250px;}
.y388{bottom:407.597100px;}
.y201{bottom:407.890500px;}
.y266{bottom:407.912850px;}
.y118{bottom:408.432750px;}
.y457{bottom:408.436350px;}
.y2cc{bottom:408.610500px;}
.y3ba{bottom:409.875000px;}
.y14a{bottom:411.241500px;}
.y32e{bottom:411.328950px;}
.y160{bottom:414.810450px;}
.y1ce{bottom:415.272000px;}
.y486{bottom:416.580900px;}
.y234{bottom:416.647050px;}
.y7c{bottom:416.805750px;}
.y35c{bottom:417.837600px;}
.ye5{bottom:419.762700px;}
.y429{bottom:422.491800px;}
.y3fa{bottom:424.525200px;}
.y387{bottom:425.699400px;}
.yb1{bottom:426.090450px;}
.y200{bottom:426.474000px;}
.y117{bottom:426.590700px;}
.y19c{bottom:426.627150px;}
.y2cb{bottom:426.909900px;}
.y298{bottom:427.175250px;}
.y2fc{bottom:427.518900px;}
.y3b9{bottom:428.129100px;}
.y32d{bottom:429.679950px;}
.y6{bottom:432.374850px;}
.y15f{bottom:432.945300px;}
.y1cd{bottom:433.885950px;}
.y265{bottom:434.540100px;}
.y7b{bottom:434.883750px;}
.y233{bottom:434.913150px;}
.y456{bottom:435.180750px;}
.y35b{bottom:436.188750px;}
.y30{bottom:436.507050px;}
.ye4{bottom:438.025500px;}
.y149{bottom:438.569700px;}
.y428{bottom:441.128700px;}
.y485{bottom:443.299500px;}
.y3f9{bottom:443.305200px;}
.y386{bottom:443.801700px;}
.y116{bottom:444.748650px;}
.y1ff{bottom:445.057650px;}
.y19b{bottom:445.879050px;}
.y5{bottom:446.037900px;}
.y3b8{bottom:446.383350px;}
.y32c{bottom:448.030950px;}
.yb0{bottom:449.000550px;}
.y15e{bottom:451.080150px;}
.y4b3{bottom:451.377450px;}
.y297{bottom:451.997250px;}
.y1cc{bottom:452.499900px;}
.y264{bottom:452.663400px;}
.y7a{bottom:452.961600px;}
.y232{bottom:453.179100px;}
.y455{bottom:453.421200px;}
.y2ca{bottom:453.713250px;}
.y2f{bottom:454.507050px;}
.ye3{bottom:456.288150px;}
.y427{bottom:459.765600px;}
.y484{bottom:461.514150px;}
.y385{bottom:461.904000px;}
.y3f8{bottom:462.085200px;}
.y35a{bottom:463.043700px;}
.y146{bottom:463.327050px;}
.y1fe{bottom:463.641300px;}
.y3b7{bottom:464.637450px;}
.y19a{bottom:465.131100px;}
.y4b2{bottom:469.377450px;}
.y263{bottom:470.786700px;}
.y148{bottom:470.827050px;}
.y79{bottom:471.039600px;}
.y1cb{bottom:471.113850px;}
.y296{bottom:471.249300px;}
.y115{bottom:471.410550px;}
.y231{bottom:471.445200px;}
.y454{bottom:471.661500px;}
.y2c9{bottom:472.012650px;}
.y15d{bottom:473.466900px;}
.ye2{bottom:474.550950px;}
.y32b{bottom:474.886050px;}
.y145{bottom:478.327050px;}
.y2fb{bottom:478.712400px;}
.y483{bottom:479.728950px;}
.y384{bottom:480.006300px;}
.y293{bottom:480.720000px;}
.y2e{bottom:481.011000px;}
.y359{bottom:481.394850px;}
.y190{bottom:482.101800px;}
.y1fd{bottom:482.224800px;}
.y193{bottom:482.257050px;}
.y3b6{bottom:482.891550px;}
.y199{bottom:484.383000px;}
.y147{bottom:485.827050px;}
.y426{bottom:486.906450px;}
.y4b1{bottom:487.377450px;}
.y262{bottom:488.910150px;}
.y78{bottom:489.117450px;}
.y3f7{bottom:489.370200px;}
.y114{bottom:489.568500px;}
.y230{bottom:489.711300px;}
.y1ca{bottom:489.727800px;}
.y2c8{bottom:490.312050px;}
.y295{bottom:490.501200px;}
.ye1{bottom:492.813600px;}
.y32a{bottom:493.237050px;}
.y144{bottom:493.327050px;}
.yaf{bottom:496.770600px;}
.y18f{bottom:497.101800px;}
.y2fa{bottom:497.194200px;}
.y192{bottom:497.257050px;}
.y482{bottom:497.943750px;}
.y383{bottom:498.108600px;}
.y453{bottom:498.405900px;}
.y2d{bottom:499.011000px;}
.y358{bottom:499.745850px;}
.y1fc{bottom:500.808450px;}
.y3b5{bottom:501.145650px;}
.y198{bottom:503.635050px;}
.y425{bottom:505.543500px;}
.y261{bottom:507.033450px;}
.y77{bottom:507.195300px;}
.y113{bottom:507.726450px;}
.y22f{bottom:507.977250px;}
.y3f6{bottom:508.150200px;}
.y1c9{bottom:508.341750px;}
.y2c7{bottom:508.611450px;}
.y294{bottom:509.753100px;}
.ye0{bottom:511.076400px;}
.y329{bottom:511.588050px;}
.y18e{bottom:512.101800px;}
.y191{bottom:512.257050px;}
.y4b0{bottom:513.881400px;}
.yae{bottom:515.428800px;}
.y2f9{bottom:515.675850px;}
.y15c{bottom:515.809650px;}
.y382{bottom:516.210900px;}
.y452{bottom:516.646200px;}
.y2c{bottom:517.011000px;}
.y143{bottom:518.084550px;}
.y357{bottom:518.096850px;}
.y197{bottom:518.635050px;}
.y1fb{bottom:519.392100px;}
.y3b4{bottom:519.399750px;}
.y481{bottom:524.662350px;}
.y260{bottom:525.156750px;}
.y76{bottom:525.273300px;}
.y142{bottom:525.584550px;}
.y112{bottom:525.884550px;}
.y2c6{bottom:526.910850px;}
.y3f5{bottom:526.930200px;}
.ydf{bottom:529.339050px;}
.y328{bottom:529.939200px;}
.y4af{bottom:531.881400px;}
.y424{bottom:532.684350px;}
.yad{bottom:534.087000px;}
.y2f8{bottom:534.157650px;}
.y292{bottom:534.605100px;}
.y22e{bottom:534.747150px;}
.y2b{bottom:535.011000px;}
.y1c8{bottom:535.459650px;}
.y356{bottom:536.448000px;}
.y3b3{bottom:537.654000px;}
.y196{bottom:537.886950px;}
.y381{bottom:542.817000px;}
.y480{bottom:542.877000px;}
.y75{bottom:543.351300px;}
.y451{bottom:543.390600px;}
.y111{bottom:544.042500px;}
.y2c5{bottom:545.210250px;}
.y1fa{bottom:546.479550px;}
.y423{bottom:551.321250px;}
.y25f{bottom:551.784000px;}
.y2f7{bottom:552.639450px;}
.yac{bottom:552.745350px;}
.y195{bottom:552.886950px;}
.y2a{bottom:553.011000px;}
.y22d{bottom:553.013250px;}
.y1c7{bottom:554.073600px;}
.y3f4{bottom:554.215200px;}
.y355{bottom:554.799000px;}
.y3b2{bottom:555.908100px;}
.yde{bottom:556.105800px;}
.y327{bottom:556.794150px;}
.y141{bottom:557.842050px;}
.y4ae{bottom:558.385350px;}
.y291{bottom:559.767450px;}
.y380{bottom:560.919300px;}
.y47f{bottom:561.091800px;}
.y74{bottom:561.429150px;}
.y450{bottom:561.631050px;}
.y110{bottom:562.200450px;}
.y2c4{bottom:563.509650px;}
.y1f9{bottom:565.063200px;}
.y140{bottom:565.342050px;}
.y194{bottom:567.886950px;}
.y290{bottom:569.238300px;}
.y25e{bottom:569.907300px;}
.y29{bottom:571.011000px;}
.y2f6{bottom:571.121100px;}
.y22c{bottom:571.279200px;}
.yab{bottom:571.403550px;}
.y1c6{bottom:572.687400px;}
.y3f3{bottom:572.995200px;}
.y354{bottom:573.150150px;}
.y3b1{bottom:574.162200px;}
.ydd{bottom:574.368600px;}
.y326{bottom:575.145300px;}
.y4ad{bottom:576.385350px;}
.y422{bottom:578.462100px;}
.y54{bottom:578.636550px;}
.y37f{bottom:579.021600px;}
.y47e{bottom:579.306450px;}
.y10f{bottom:580.358400px;}
.y2c3{bottom:581.809050px;}
.y1f8{bottom:583.646850px;}
.y73{bottom:588.011100px;}
.y25d{bottom:588.030600px;}
.y44f{bottom:588.375300px;}
.y28{bottom:589.011000px;}
.y53{bottom:589.076550px;}
.y22b{bottom:589.545300px;}
.y2f5{bottom:589.602900px;}
.yaa{bottom:590.061750px;}
.y1c5{bottom:591.301350px;}
.y353{bottom:591.501150px;}
.y3f2{bottom:591.775200px;}
.y3b0{bottom:592.416300px;}
.ydc{bottom:592.631250px;}
.y18d{bottom:592.738950px;}
.y325{bottom:593.496300px;}
.y421{bottom:597.099000px;}
.y37e{bottom:597.123900px;}
.y13f{bottom:597.599550px;}
.y10e{bottom:598.516500px;}
.y2c2{bottom:600.108450px;}
.y1f7{bottom:602.230500px;}
.y52{bottom:602.705400px;}
.y4ac{bottom:602.889300px;}
.y28f{bottom:603.871500px;}
.y13e{bottom:605.099550px;}
.y47d{bottom:606.025200px;}
.y72{bottom:606.088950px;}
.y25c{bottom:606.154050px;}
.y44e{bottom:606.615750px;}
.y27{bottom:607.011000px;}
.y22a{bottom:607.811250px;}
.y2f4{bottom:608.084550px;}
.ya9{bottom:608.719950px;}
.y1c4{bottom:609.915300px;}
.ydb{bottom:610.893900px;}
.y324{bottom:611.847450px;}
.y18c{bottom:611.990850px;}
.y37d{bottom:615.226200px;}
.y420{bottom:615.735900px;}
.y352{bottom:618.356250px;}
.y2c1{bottom:618.407850px;}
.y28c{bottom:618.716250px;}
.y28e{bottom:618.871500px;}
.y3f1{bottom:619.060200px;}
.y3af{bottom:619.174500px;}
.y1f6{bottom:620.814000px;}
.y4ab{bottom:620.889300px;}
.y10d{bottom:620.926350px;}
.y71{bottom:624.166800px;}
.y47c{bottom:624.239850px;}
.y25b{bottom:624.277350px;}
.y26{bottom:625.011000px;}
.y229{bottom:626.077350px;}
.ya8{bottom:627.378150px;}
.y51{bottom:627.679350px;}
.y1c3{bottom:628.529250px;}
.yda{bottom:629.156700px;}
.y323{bottom:630.198450px;}
.y18b{bottom:631.242900px;}
.y2f3{bottom:631.966350px;}
.y37c{bottom:633.328500px;}
.y44d{bottom:633.360150px;}
.y28d{bottom:633.871500px;}
.y2c0{bottom:636.707250px;}
.y13d{bottom:637.356900px;}
.y3ae{bottom:637.428600px;}
.y3f0{bottom:637.840200px;}
.y50{bottom:638.119500px;}
.y4aa{bottom:638.889300px;}
.y70{bottom:642.244800px;}
.y25a{bottom:642.400650px;}
.y47b{bottom:642.454650px;}
.y41f{bottom:642.876750px;}
.y25{bottom:643.011000px;}
.y186{bottom:644.116950px;}
.y228{bottom:644.343300px;}
.ya7{bottom:646.036350px;}
.y1c2{bottom:647.143200px;}
.yd9{bottom:647.419350px;}
.y1f5{bottom:647.901600px;}
.y322{bottom:648.549450px;}
.y2f2{bottom:650.448150px;}
.y18a{bottom:650.494800px;}
.y37b{bottom:651.430650px;}
.y44c{bottom:651.600450px;}
.y4f{bottom:651.748350px;}
.y2bf{bottom:655.006650px;}
.y351{bottom:655.058250px;}
.y3ad{bottom:655.682700px;}
.y28b{bottom:658.723350px;}
.y6f{bottom:660.322650px;}
.y24{bottom:661.011000px;}
.y41e{bottom:661.513800px;}
.y13c{bottom:662.114400px;}
.ya6{bottom:664.694550px;}
.y3ef{bottom:665.125200px;}
.y4a9{bottom:665.393250px;}
.y189{bottom:665.494800px;}
.yd8{bottom:665.682150px;}
.y1c1{bottom:665.757150px;}
.y1f4{bottom:666.485250px;}
.y10c{bottom:668.196150px;}
.y2f1{bottom:668.929800px;}
.y259{bottom:669.027900px;}
.y47a{bottom:669.173250px;}
.y37a{bottom:669.532950px;}
.y13b{bottom:669.614400px;}
.y44b{bottom:669.840900px;}
.y227{bottom:671.113350px;}
.y2be{bottom:673.306050px;}
.y350{bottom:673.409400px;}
.y3ac{bottom:673.936800px;}
.y321{bottom:675.404550px;}
.y4e{bottom:676.722300px;}
.y6e{bottom:678.400650px;}
.y23{bottom:679.011000px;}
.y41d{bottom:680.150700px;}
.y188{bottom:680.494800px;}
.y4a8{bottom:683.393250px;}
.y3ee{bottom:683.905200px;}
.yd7{bottom:683.944950px;}
.y1c0{bottom:684.371100px;}
.y1f3{bottom:685.068750px;}
.y10b{bottom:686.354100px;}
.y258{bottom:687.151200px;}
.y479{bottom:687.388050px;}
.y2f0{bottom:687.411600px;}
.y379{bottom:687.635250px;}
.y226{bottom:689.379300px;}
.y4d{bottom:690.351300px;}
.y28a{bottom:690.955800px;}
.y2bd{bottom:691.605450px;}
.ya5{bottom:691.856700px;}
.y3ab{bottom:692.191050px;}
.y320{bottom:693.755550px;}
.y187{bottom:695.494800px;}
.y6d{bottom:696.478500px;}
.y44a{bottom:696.585150px;}
.y22{bottom:697.011000px;}
.y34f{bottom:700.264350px;}
.y13a{bottom:701.871900px;}
.yd6{bottom:702.207600px;}
.y3ed{bottom:702.685200px;}
.y1f2{bottom:703.652400px;}
.y10a{bottom:704.512050px;}
.y257{bottom:705.274500px;}
.y478{bottom:705.602700px;}
.y2ef{bottom:705.893400px;}
.y4c{bottom:706.821300px;}
.y41c{bottom:707.291550px;}
.y225{bottom:707.645250px;}
.y4a7{bottom:709.897200px;}
.y3aa{bottom:710.445150px;}
.ya4{bottom:710.514900px;}
.y1bf{bottom:711.489000px;}
.y31f{bottom:712.106700px;}
.y378{bottom:714.241500px;}
.y6c{bottom:714.556500px;}
.y21{bottom:715.011000px;}
.y139{bottom:716.871900px;}
.y2bc{bottom:718.408800px;}
.y179{bottom:718.513650px;}
.y34e{bottom:718.615350px;}
.y289{bottom:719.328750px;}
.y185{bottom:720.346800px;}
.yd5{bottom:720.470400px;}
.y3ec{bottom:721.465200px;}
.y1f1{bottom:722.236050px;}
.y109{bottom:722.670150px;}
.y449{bottom:723.329550px;}
.y256{bottom:723.397950px;}
.y2ee{bottom:724.375050px;}
.y224{bottom:725.911350px;}
.y41b{bottom:725.928450px;}
.y4a6{bottom:727.897200px;}
.y3a9{bottom:728.699250px;}
.ya3{bottom:729.173100px;}
.y1be{bottom:730.102950px;}
.y31e{bottom:730.457700px;}
.y4b{bottom:731.795250px;}
.y477{bottom:732.321300px;}
.y377{bottom:732.343800px;}
.y6b{bottom:732.634350px;}
.y20{bottom:733.011000px;}
.y178{bottom:733.513650px;}
.y184{bottom:735.346800px;}
.y2bb{bottom:736.708200px;}
.y34d{bottom:736.966500px;}
.y288{bottom:737.645850px;}
.yd4{bottom:738.733050px;}
.y1f0{bottom:740.819550px;}
.y108{bottom:740.828100px;}
.y255{bottom:741.521250px;}
.y448{bottom:741.570000px;}
.y138{bottom:741.939750px;}
.y4a{bottom:742.235250px;}
.y2ed{bottom:742.856850px;}
.y223{bottom:744.177450px;}
.y41a{bottom:744.565350px;}
.y4a5{bottom:745.897200px;}
.y3a8{bottom:746.953350px;}
.ya2{bottom:747.831300px;}
.y1bd{bottom:748.716900px;}
.y3eb{bottom:748.750200px;}
.y31d{bottom:748.808700px;}
.y183{bottom:750.346800px;}
.y376{bottom:750.446100px;}
.y476{bottom:750.536100px;}
.y6a{bottom:750.712350px;}
.y1f{bottom:751.011000px;}
.y2ba{bottom:755.007600px;}
.y34c{bottom:755.317500px;}
.y49{bottom:755.864250px;}
.y287{bottom:755.962950px;}
.y107{bottom:758.986050px;}
.y1ef{bottom:759.403200px;}
.y254{bottom:759.644550px;}
.y447{bottom:759.810300px;}
.y3da{bottom:760.031850px;}
.y2ec{bottom:761.338500px;}
.y222{bottom:762.443400px;}
.y3a7{bottom:765.207600px;}
.y182{bottom:765.346800px;}
.yd3{bottom:765.499800px;}
.ya1{bottom:766.489500px;}
.y137{bottom:766.697250px;}
.y31c{bottom:767.159850px;}
.y1bc{bottom:767.330700px;}
.y375{bottom:768.548400px;}
.y69{bottom:768.790350px;}
.y419{bottom:771.706200px;}
.y4a4{bottom:772.401150px;}
.y1e{bottom:773.263050px;}
.y2b9{bottom:773.307000px;}
.y48{bottom:773.397150px;}
.y34b{bottom:773.668650px;}
.y286{bottom:774.280050px;}
.y3ea{bottom:776.035200px;}
.y106{bottom:777.144150px;}
.y475{bottom:777.254700px;}
.y253{bottom:777.767850px;}
.y3d9{bottom:778.031850px;}
.y181{bottom:780.346800px;}
.y221{bottom:780.709500px;}
.y17b{bottom:782.472750px;}
.y3a6{bottom:783.461700px;}
.yd2{bottom:783.762450px;}
.ya0{bottom:785.147700px;}
.y1bb{bottom:785.944650px;}
.y1ee{bottom:786.490650px;}
.y446{bottom:786.554700px;}
.y374{bottom:786.650550px;}
.y68{bottom:786.868200px;}
.y2eb{bottom:788.324250px;}
.y418{bottom:790.343100px;}
.y4a3{bottom:790.401150px;}
.y136{bottom:791.454750px;}
.y2b8{bottom:791.606250px;}
.y34a{bottom:792.019650px;}
.y285{bottom:792.597150px;}
.y31b{bottom:794.014800px;}
.y3e9{bottom:794.815200px;}
.y105{bottom:795.302100px;}
.y180{bottom:795.346800px;}
.y474{bottom:795.469500px;}
.y252{bottom:795.891150px;}
.y3d8{bottom:796.031850px;}
.y17a{bottom:797.472750px;}
.y220{bottom:798.975450px;}
.yd1{bottom:802.025250px;}
.y9f{bottom:803.806050px;}
.y1ba{bottom:804.558600px;}
.y373{bottom:804.753000px;}
.y445{bottom:804.795000px;}
.y67{bottom:804.946050px;}
.y1ed{bottom:805.074300px;}
.y2ea{bottom:806.806050px;}
.y4a2{bottom:808.401150px;}
.y417{bottom:808.980150px;}
.y2b7{bottom:809.905800px;}
.y3a5{bottom:810.219750px;}
.y349{bottom:810.370650px;}
.y31a{bottom:812.365950px;}
.y104{bottom:813.460050px;}
.y3e8{bottom:813.597000px;}
.y473{bottom:813.684150px;}
.y251{bottom:814.014450px;}
.y17f{bottom:814.598700px;}
.y135{bottom:816.212100px;}
.y21f{bottom:817.241400px;}
.y3d7{bottom:818.283750px;}
.y284{bottom:819.418200px;}
.yd0{bottom:820.287900px;}
.y9e{bottom:822.464100px;}
.y372{bottom:822.855150px;}
.y66{bottom:823.024050px;}
.y1b9{bottom:823.172550px;}
.y1ec{bottom:823.657950px;}
.y2e9{bottom:825.287700px;}
.y2b6{bottom:828.205200px;}
.y3a4{bottom:828.473850px;}
.y348{bottom:828.721800px;}
.y17e{bottom:829.598700px;}
.y319{bottom:830.716950px;}
.y444{bottom:831.539400px;}
.y250{bottom:832.137750px;}
.y4a1{bottom:834.904950px;}
.y21e{bottom:835.507500px;}
.y416{bottom:836.121000px;}
.y283{bottom:837.735300px;}
.ycf{bottom:838.550700px;}
.y103{bottom:840.121950px;}
.y472{bottom:840.402900px;}
.y3e7{bottom:840.891450px;}
.y371{bottom:840.957450px;}
.y134{bottom:840.969600px;}
.y65{bottom:841.101900px;}
.y9d{bottom:841.122450px;}
.y1b8{bottom:841.786500px;}
.y1eb{bottom:842.241600px;}
.y2e8{bottom:843.769350px;}
.y17d{bottom:844.598700px;}
.y2b5{bottom:846.504600px;}
.y3a3{bottom:846.728100px;}
.y318{bottom:849.067950px;}
.y443{bottom:849.779850px;}
.y24f{bottom:850.261200px;}
.y4a0{bottom:852.904950px;}
.y21d{bottom:853.773600px;}
.y347{bottom:855.576750px;}
.y282{bottom:856.052250px;}
.yce{bottom:856.813500px;}
.y102{bottom:858.279900px;}
.y471{bottom:858.617550px;}
.y370{bottom:859.059750px;}
.y64{bottom:859.179900px;}
.y17c{bottom:859.598700px;}
.y3e6{bottom:859.671450px;}
.y9c{bottom:859.780650px;}
.y1b7{bottom:860.400450px;}
.y1ea{bottom:860.825100px;}
.y2e7{bottom:862.251150px;}
.y415{bottom:863.261850px;}
.y2b4{bottom:864.804000px;}
.y3a2{bottom:864.982200px;}
.y133{bottom:865.726800px;}
.y317{bottom:867.419100px;}
.y3d6{bottom:868.995600px;}
.y21c{bottom:872.039550px;}
.y47{bottom:872.278050px;}
.y346{bottom:873.927900px;}
.y281{bottom:874.369500px;}
.ycd{bottom:875.076150px;}
.y101{bottom:876.437850px;}
.y442{bottom:876.524100px;}
.y24e{bottom:876.888450px;}
.y36f{bottom:877.162050px;}
.y9b{bottom:878.438850px;}
.y3e5{bottom:878.451450px;}
.y1b6{bottom:879.014400px;}
.y1e9{bottom:879.408750px;}
.y49f{bottom:879.408900px;}
.y2e6{bottom:880.732950px;}
.y414{bottom:881.898750px;}
.y3a1{bottom:883.236300px;}
.y177{bottom:884.450700px;}
.y470{bottom:885.336150px;}
.y63{bottom:885.761700px;}
.y3d5{bottom:886.995600px;}
.y132{bottom:890.484300px;}
.y2b3{bottom:891.607350px;}
.y345{bottom:892.278900px;}
.y316{bottom:894.274050px;}
.y100{bottom:894.595950px;}
.y441{bottom:894.764550px;}
.y24d{bottom:895.011750px;}
.y36e{bottom:895.264350px;}
.y9a{bottom:897.097050px;}
.y49e{bottom:897.408900px;}
.y46{bottom:897.477900px;}
.y1b5{bottom:897.628350px;}
.y1e8{bottom:897.992400px;}
.y21b{bottom:898.809600px;}
.y2e5{bottom:899.214600px;}
.y413{bottom:900.535800px;}
.y280{bottom:901.190400px;}
.ycc{bottom:901.842750px;}
.y46f{bottom:903.550950px;}
.y62{bottom:903.839700px;}
.y3d4{bottom:904.995600px;}
.y131{bottom:905.484300px;}
.y3e4{bottom:905.736450px;}
.y3a0{bottom:905.742300px;}
.y2b2{bottom:909.906750px;}
.y344{bottom:910.630050px;}
.y315{bottom:912.625050px;}
.yff{bottom:912.753900px;}
.y24c{bottom:913.135050px;}
.y49d{bottom:915.408900px;}
.y99{bottom:915.755250px;}
.y1b4{bottom:916.242300px;}
.y1e7{bottom:916.576050px;}
.y21a{bottom:917.075550px;}
.y176{bottom:917.137350px;}
.y2e4{bottom:917.696400px;}
.y27f{bottom:919.507650px;}
.ycb{bottom:920.105550px;}
.y440{bottom:921.508800px;}
.y46e{bottom:921.765600px;}
.y36d{bottom:921.870450px;}
.y61{bottom:921.917550px;}
.y45{bottom:922.677900px;}
.y3d3{bottom:922.995600px;}
.y3e3{bottom:924.516450px;}
.y412{bottom:927.676500px;}
.y2b1{bottom:928.206150px;}
.y130{bottom:930.241650px;}
.yfe{bottom:930.911850px;}
.y314{bottom:930.976200px;}
.y24b{bottom:931.258350px;}
.y98{bottom:934.413450px;}
.y1b3{bottom:934.856250px;}
.y1e6{bottom:935.159550px;}
.y219{bottom:935.341500px;}
.y2e3{bottom:936.178200px;}
.y343{bottom:937.485000px;}
.y27e{bottom:937.824600px;}
.yca{bottom:938.368350px;}
.y43f{bottom:939.749250px;}
.y36c{bottom:939.972900px;}
.y60{bottom:939.995550px;}
.y3d2{bottom:940.995600px;}
.y49c{bottom:941.912850px;}
.y3e2{bottom:943.296450px;}
.y12f{bottom:945.241650px;}
.y175{bottom:945.964650px;}
.y411{bottom:946.313550px;}
.y2b0{bottom:946.505550px;}
.y46d{bottom:948.484350px;}
.y313{bottom:949.327200px;}
.y24a{bottom:949.381650px;}
.y97{bottom:953.071650px;}
.y1b2{bottom:953.470200px;}
.y218{bottom:953.607600px;}
.y1e5{bottom:953.743200px;}
.y342{bottom:955.836000px;}
.y27d{bottom:956.141850px;}
.y44{bottom:956.381850px;}
.y39f{bottom:956.708400px;}
.yfd{bottom:957.573750px;}
.y43e{bottom:957.989700px;}
.y5f{bottom:958.073400px;}
.y36b{bottom:958.075050px;}
.y3d1{bottom:958.995600px;}
.y49b{bottom:959.912850px;}
.y2e2{bottom:963.163950px;}
.y174{bottom:964.735950px;}
.y2af{bottom:964.804950px;}
.yc9{bottom:965.134950px;}
.y46c{bottom:966.699150px;}
.y12e{bottom:969.999150px;}
.y3e1{bottom:970.581450px;}
.y96{bottom:971.729850px;}
.y217{bottom:971.873550px;}
.y312{bottom:971.930400px;}
.y1b1{bottom:972.084150px;}
.y1e4{bottom:972.326700px;}
.y410{bottom:973.454400px;}
.y341{bottom:974.187150px;}
.y27c{bottom:974.458800px;}
.y39e{bottom:974.962500px;}
.yfc{bottom:975.731850px;}
.y249{bottom:976.009050px;}
.y36a{bottom:976.177350px;}
.y3d0{bottom:976.995600px;}
.y49a{bottom:977.912850px;}
.y2e1{bottom:981.645600px;}
.y2ae{bottom:983.104350px;}
.yc8{bottom:983.397600px;}
.y5e{bottom:984.655200px;}
.y43d{bottom:984.734100px;}
.y12d{bottom:984.999150px;}
.y173{bottom:987.759450px;}
.y3e0{bottom:989.361450px;}
.y43{bottom:989.381850px;}
.y216{bottom:990.139650px;}
.y95{bottom:990.388050px;}
.y40f{bottom:992.091300px;}
.y340{bottom:992.538150px;}
.y27b{bottom:992.775900px;}
.y39d{bottom:993.216600px;}
.y46b{bottom:993.417600px;}
.yfb{bottom:993.889650px;}
.y248{bottom:994.132350px;}
.y369{bottom:994.279650px;}
.y3cf{bottom:994.995600px;}
.y1b0{bottom:999.201900px;}
.y1e3{bottom:999.414300px;}
.y2e0{bottom:1000.127400px;}
.y2ad{bottom:1001.403750px;}
.yc7{bottom:1001.660400px;}
.y5d{bottom:1002.733200px;}
.y43c{bottom:1002.974400px;}
.y499{bottom:1004.416800px;}
.y215{bottom:1008.405600px;}
.y94{bottom:1009.046400px;}
.y12c{bottom:1009.756650px;}
.y33f{bottom:1010.889150px;}
.y27a{bottom:1011.093000px;}
.y46a{bottom:1011.632400px;}
.yfa{bottom:1012.047750px;}
.y247{bottom:1012.255650px;}
.y368{bottom:1012.381950px;}
.y3df{bottom:1016.646450px;}
.y1af{bottom:1017.815850px;}
.y1e2{bottom:1017.997950px;}
.y2df{bottom:1018.609200px;}
.y40e{bottom:1019.232150px;}
.y311{bottom:1019.393250px;}
.y2ac{bottom:1019.703150px;}
.yc6{bottom:1019.923200px;}
.y39c{bottom:1019.974800px;}
.y5c{bottom:1020.811200px;}
.y43b{bottom:1021.214850px;}
.y3ce{bottom:1021.499550px;}
.y42{bottom:1022.381850px;}
.y498{bottom:1022.416800px;}
.y214{bottom:1026.671700px;}
.y33e{bottom:1029.240300px;}
.y469{bottom:1029.847200px;}
.yf9{bottom:1030.205700px;}
.y246{bottom:1030.378950px;}
.y12b{bottom:1034.514000px;}
.y3de{bottom:1035.426450px;}
.y172{bottom:1035.642600px;}
.y93{bottom:1036.208550px;}
.y1ae{bottom:1036.429800px;}
.y1e1{bottom:1036.581450px;}
.y2de{bottom:1037.090850px;}
.y310{bottom:1037.744250px;}
.y40d{bottom:1037.869050px;}
.y279{bottom:1037.914050px;}
.y2ab{bottom:1038.002550px;}
.yc5{bottom:1038.185850px;}
.y39b{bottom:1038.228900px;}
.y5b{bottom:1038.889050px;}
.y367{bottom:1038.988200px;}
.y3cd{bottom:1039.499550px;}
.y213{bottom:1044.937650px;}
.y33d{bottom:1047.591300px;}
.y43a{bottom:1047.959250px;}
.y468{bottom:1048.061850px;}
.yf8{bottom:1048.363650px;}
.y245{bottom:1048.502250px;}
.y497{bottom:1048.920750px;}
.y3dd{bottom:1054.206450px;}
.y171{bottom:1054.414050px;}
.y92{bottom:1054.866600px;}
.y1ad{bottom:1055.043750px;}
.y1e0{bottom:1055.165100px;}
.y2dd{bottom:1055.572500px;}
.y30f{bottom:1056.095250px;}
.y278{bottom:1056.231150px;}
.y2aa{bottom:1056.301950px;}
.yc4{bottom:1056.448650px;}
.y39a{bottom:1056.483000px;}
.y15b{bottom:1056.535200px;}
.y5a{bottom:1056.967050px;}
.y366{bottom:1057.090350px;}
.y3cc{bottom:1057.499550px;}
.y12a{bottom:1059.271500px;}
.y40c{bottom:1065.010050px;}
.y439{bottom:1066.199550px;}
.y244{bottom:1066.625550px;}
.y496{bottom:1066.920750px;}
.y212{bottom:1067.455650px;}
.y170{bottom:1073.185350px;}
.y91{bottom:1073.524950px;}
.y1ac{bottom:1073.657850px;}
.y1df{bottom:1073.748750px;}
.y2dc{bottom:1074.054300px;}
.y30e{bottom:1074.446250px;}
.y277{bottom:1074.548250px;}
.y2a9{bottom:1074.601350px;}
.yc3{bottom:1074.711300px;}
.y399{bottom:1074.737100px;}
.y467{bottom:1074.780600px;}
.yf7{bottom:1075.025550px;}
.y59{bottom:1075.044900px;}
.y365{bottom:1075.192800px;}
.y3cb{bottom:1075.499550px;}
.y3dc{bottom:1081.491450px;}
.y40b{bottom:1083.646950px;}
.y129{bottom:1084.029000px;}
.y438{bottom:1084.440000px;}
.y15a{bottom:1084.725900px;}
.y243{bottom:1084.749000px;}
.y495{bottom:1084.920750px;}
.y128{bottom:1091.529000px;}
.y16f{bottom:1091.956800px;}
.y90{bottom:1092.183150px;}
.y1ab{bottom:1092.271650px;}
.y1de{bottom:1092.332400px;}
.y2db{bottom:1092.536100px;}
.y30d{bottom:1092.797400px;}
.y276{bottom:1092.865350px;}
.y2a8{bottom:1092.900750px;}
.yc2{bottom:1092.974100px;}
.y398{bottom:1092.991200px;}
.y466{bottom:1092.995250px;}
.yf6{bottom:1093.183650px;}
.y364{bottom:1093.294950px;}
.y3ca{bottom:1093.499550px;}
.y58{bottom:1097.374800px;}
.y3db{bottom:1100.271450px;}
.y16e{bottom:1110.728100px;}
.y40a{bottom:1110.787800px;}
.y8f{bottom:1110.841350px;}
.y1aa{bottom:1110.885600px;}
.y1dd{bottom:1110.915900px;}
.y2da{bottom:1111.017750px;}
.y30c{bottom:1111.148400px;}
.y275{bottom:1111.182450px;}
.y437{bottom:1111.184400px;}
.y2a7{bottom:1111.200150px;}
.y465{bottom:1111.209900px;}
.y211{bottom:1111.233450px;}
.yc1{bottom:1111.236750px;}
.y397{bottom:1111.245450px;}
.yf5{bottom:1111.341450px;}
.y159{bottom:1111.364700px;}
.y242{bottom:1111.376250px;}
.y363{bottom:1111.397250px;}
.y494{bottom:1111.424700px;}
.y3c9{bottom:1111.499550px;}
.y57{bottom:1123.304700px;}
.y4{bottom:1127.585100px;}
.y409{bottom:1129.424700px;}
.y8e{bottom:1129.499550px;}
.y127{bottom:1131.641550px;}
.y3{bottom:1138.941300px;}
.y2{bottom:1145.661600px;}
.y1{bottom:1152.285750px;}
.y8d{bottom:1177.795200px;}
.y55{bottom:1177.795350px;}
.h2{height:20.049185px;}
.h5{height:25.369200px;}
.h3{height:26.496552px;}
.hd{height:30.618000px;}
.h19{height:38.136000px;}
.h4{height:38.892000px;}
.h18{height:39.474000px;}
.h17{height:40.860000px;}
.hc{height:43.739400px;}
.hf{height:43.740000px;}
.h10{height:46.308000px;}
.h14{height:49.032000px;}
.h1b{height:49.653000px;}
.h13{height:49.680000px;}
.hb{height:49.849200px;}
.h8{height:54.480000px;}
.h9{height:55.200000px;}
.h6{height:55.560000px;}
.he{height:66.672000px;}
.h7{height:77.280000px;}
.h15{height:79.032000px;}
.h11{height:79.680000px;}
.h1a{height:88.156800px;}
.h16{height:109.032000px;}
.h12{height:109.680000px;}
.ha{height:110.400000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:79.455750px;}
.xe{left:83.165550px;}
.xf{left:84.182550px;}
.xb{left:85.402800px;}
.x1d{left:90.956100px;}
.x19{left:96.546900px;}
.x2a{left:98.170350px;}
.x29{left:99.464550px;}
.x2{left:102.433800px;}
.x20{left:106.279650px;}
.x28{left:108.078150px;}
.x31{left:109.336650px;}
.x30{left:111.600150px;}
.x11{left:115.334700px;}
.x3{left:116.483850px;}
.x6{left:117.512250px;}
.x4{left:119.216250px;}
.x7{left:121.989450px;}
.x5{left:123.644250px;}
.x8{left:125.594850px;}
.x9{left:128.874000px;}
.x23{left:137.847000px;}
.x1{left:161.510850px;}
.x16{left:189.530700px;}
.x1a{left:194.829750px;}
.x2d{left:197.374650px;}
.x22{left:223.510950px;}
.x2c{left:235.559250px;}
.x21{left:243.533250px;}
.x24{left:253.103700px;}
.x10{left:265.357500px;}
.x25{left:268.672650px;}
.x17{left:287.268450px;}
.x12{left:312.108000px;}
.xa{left:332.195400px;}
.x2e{left:372.158850px;}
.x1f{left:399.221700px;}
.x1e{left:418.669050px;}
.x2f{left:420.637350px;}
.x1b{left:424.289400px;}
.x26{left:427.434450px;}
.x13{left:435.007500px;}
.x27{left:475.912800px;}
.x18{left:550.948050px;}
.x1c{left:564.851550px;}
.x14{left:568.789050px;}
.xc{left:611.247300px;}
.xd{left:614.896050px;}
.x15{left:700.600050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.v3{vertical-align:34.777600pt;}
.v2{vertical-align:53.333333pt;}
.lse{letter-spacing:-8.373333pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.373333pt;}
.ls10{letter-spacing:1.908800pt;}
.ls8{letter-spacing:2.188267pt;}
.ls1{letter-spacing:2.666667pt;}
.lsb{letter-spacing:3.627733pt;}
.ls4{letter-spacing:6.619733pt;}
.lsa{letter-spacing:6.629333pt;}
.ls0{letter-spacing:8.960000pt;}
.lsf{letter-spacing:10.164267pt;}
.lsc{letter-spacing:10.525333pt;}
.ls7{letter-spacing:214.865600pt;}
.ws9f{word-spacing:-64.000000pt;}
.wsa0{word-spacing:-56.270933pt;}
.wsa4{word-spacing:-55.234133pt;}
.wsa1{word-spacing:-55.125333pt;}
.wsc9{word-spacing:-55.029867pt;}
.wsa2{word-spacing:-55.029333pt;}
.wsa3{word-spacing:-54.984533pt;}
.ws1{word-spacing:-19.338667pt;}
.ws102{word-spacing:-15.200000pt;}
.ws3{word-spacing:-14.826667pt;}
.ws8a{word-spacing:-13.344000pt;}
.ws25{word-spacing:-10.378667pt;}
.ws6{word-spacing:-8.960000pt;}
.ws2{word-spacing:-8.599467pt;}
.ws0{word-spacing:-7.116948pt;}
.ws5{word-spacing:-7.093333pt;}
.ws108{word-spacing:-6.720000pt;}
.wse8{word-spacing:-6.506667pt;}
.wsf1{word-spacing:-6.133333pt;}
.ws10e{word-spacing:-5.760000pt;}
.wsc1{word-spacing:-5.706667pt;}
.wse9{word-spacing:-5.440000pt;}
.wsfc{word-spacing:-4.960000pt;}
.wsee{word-spacing:-4.693333pt;}
.ws15{word-spacing:-4.000000pt;}
.ws22{word-spacing:-3.946667pt;}
.wse3{word-spacing:-3.786667pt;}
.wsb0{word-spacing:-3.626667pt;}
.ws88{word-spacing:-3.253333pt;}
.wsea{word-spacing:-3.146667pt;}
.wsdf{word-spacing:-3.093333pt;}
.wscd{word-spacing:-3.040000pt;}
.ws109{word-spacing:-2.986667pt;}
.ws9b{word-spacing:-2.933333pt;}
.ws40{word-spacing:-2.880000pt;}
.wsb7{word-spacing:-2.826667pt;}
.wscc{word-spacing:-2.773333pt;}
.ws5e{word-spacing:-2.720000pt;}
.ws79{word-spacing:-2.666667pt;}
.wsbe{word-spacing:-2.613333pt;}
.wsd8{word-spacing:-2.560000pt;}
.ws81{word-spacing:-2.506667pt;}
.ws4f{word-spacing:-2.453333pt;}
.wsc0{word-spacing:-2.400000pt;}
.ws58{word-spacing:-2.346667pt;}
.ws87{word-spacing:-2.293333pt;}
.ws85{word-spacing:-2.240000pt;}
.ws80{word-spacing:-2.186667pt;}
.ws1a{word-spacing:-2.133333pt;}
.wsc4{word-spacing:-2.080000pt;}
.wsb2{word-spacing:-2.026667pt;}
.wsd7{word-spacing:-1.973333pt;}
.wsc6{word-spacing:-1.920000pt;}
.wsab{word-spacing:-1.866667pt;}
.ws83{word-spacing:-1.813333pt;}
.ws52{word-spacing:-1.760000pt;}
.ws4a{word-spacing:-1.706667pt;}
.ws43{word-spacing:-1.653333pt;}
.wsa5{word-spacing:-1.600000pt;}
.ws39{word-spacing:-1.546667pt;}
.ws86{word-spacing:-1.493333pt;}
.ws23{word-spacing:-1.440000pt;}
.ws6b{word-spacing:-1.386667pt;}
.ws78{word-spacing:-1.333333pt;}
.ws50{word-spacing:-1.280000pt;}
.ws64{word-spacing:-1.226667pt;}
.ws5d{word-spacing:-1.173333pt;}
.ws9{word-spacing:-1.120000pt;}
.wsc2{word-spacing:-1.066667pt;}
.wsbf{word-spacing:-1.013333pt;}
.ws71{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.906667pt;}
.ws30{word-spacing:-0.853333pt;}
.ws5f{word-spacing:-0.800000pt;}
.ws6f{word-spacing:-0.746667pt;}
.wscb{word-spacing:-0.693333pt;}
.ws5a{word-spacing:-0.640000pt;}
.ws2f{word-spacing:-0.586667pt;}
.ws56{word-spacing:-0.533333pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.426667pt;}
.wsa6{word-spacing:-0.373333pt;}
.ws62{word-spacing:-0.320000pt;}
.wsb3{word-spacing:-0.266667pt;}
.ws35{word-spacing:-0.213333pt;}
.ws53{word-spacing:-0.160000pt;}
.ws12{word-spacing:-0.106667pt;}
.ws32{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.037333pt;}
.ws51{word-spacing:0.053333pt;}
.wsba{word-spacing:0.074667pt;}
.wsae{word-spacing:0.106667pt;}
.wsc5{word-spacing:0.160000pt;}
.ws66{word-spacing:0.213333pt;}
.ws6e{word-spacing:0.266667pt;}
.ws28{word-spacing:0.320000pt;}
.ws36{word-spacing:0.373333pt;}
.ws37{word-spacing:0.426667pt;}
.ws49{word-spacing:0.480000pt;}
.wsbb{word-spacing:0.533333pt;}
.ws77{word-spacing:0.586667pt;}
.ws82{word-spacing:0.640000pt;}
.ws57{word-spacing:0.693333pt;}
.ws33{word-spacing:0.746667pt;}
.ws1e{word-spacing:0.800000pt;}
.ws31{word-spacing:0.853333pt;}
.ws73{word-spacing:0.906667pt;}
.wsa9{word-spacing:0.960000pt;}
.ws16{word-spacing:1.013333pt;}
.wse{word-spacing:1.066667pt;}
.ws3d{word-spacing:1.120000pt;}
.ws6c{word-spacing:1.173333pt;}
.ws11{word-spacing:1.226667pt;}
.ws2b{word-spacing:1.280000pt;}
.ws7d{word-spacing:1.333333pt;}
.ws21{word-spacing:1.386667pt;}
.ws42{word-spacing:1.440000pt;}
.wsb{word-spacing:1.493333pt;}
.ws60{word-spacing:1.546667pt;}
.wsd1{word-spacing:1.600000pt;}
.ws65{word-spacing:1.653333pt;}
.wsb1{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws4c{word-spacing:1.813333pt;}
.ws34{word-spacing:1.866667pt;}
.ws1b{word-spacing:1.920000pt;}
.ws76{word-spacing:1.973333pt;}
.ws4b{word-spacing:2.026667pt;}
.ws61{word-spacing:2.080000pt;}
.wsac{word-spacing:2.133333pt;}
.ws70{word-spacing:2.186667pt;}
.ws44{word-spacing:2.240000pt;}
.ws7e{word-spacing:2.293333pt;}
.ws55{word-spacing:2.346667pt;}
.ws74{word-spacing:2.400000pt;}
.ws7b{word-spacing:2.453333pt;}
.ws45{word-spacing:2.506667pt;}
.ws75{word-spacing:2.560000pt;}
.wsd4{word-spacing:2.613333pt;}
.wsc7{word-spacing:2.666667pt;}
.ws4e{word-spacing:2.720000pt;}
.wsf{word-spacing:2.773333pt;}
.ws46{word-spacing:2.826667pt;}
.ws6d{word-spacing:2.880000pt;}
.ws13{word-spacing:2.933333pt;}
.wsb4{word-spacing:2.986667pt;}
.ws5c{word-spacing:3.040000pt;}
.ws3f{word-spacing:3.093333pt;}
.ws2c{word-spacing:3.146667pt;}
.wsa8{word-spacing:3.200000pt;}
.ws38{word-spacing:3.253333pt;}
.ws84{word-spacing:3.306667pt;}
.ws2d{word-spacing:3.360000pt;}
.ws54{word-spacing:3.413333pt;}
.ws72{word-spacing:3.466667pt;}
.ws26{word-spacing:3.520000pt;}
.ws69{word-spacing:3.573333pt;}
.ws17{word-spacing:3.626667pt;}
.ws7{word-spacing:3.680000pt;}
.wsb8{word-spacing:3.733333pt;}
.ws29{word-spacing:3.786667pt;}
.ws5b{word-spacing:3.840000pt;}
.ws7a{word-spacing:3.893333pt;}
.ws2a{word-spacing:3.946667pt;}
.wsad{word-spacing:4.000000pt;}
.ws89{word-spacing:4.053333pt;}
.wsce{word-spacing:4.106667pt;}
.ws68{word-spacing:4.160000pt;}
.wsd{word-spacing:4.213333pt;}
.ws2e{word-spacing:4.266667pt;}
.wsbd{word-spacing:4.320000pt;}
.ws9c{word-spacing:4.373333pt;}
.wsaa{word-spacing:4.426667pt;}
.wsd3{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.533333pt;}
.wsdc{word-spacing:4.586667pt;}
.wsd5{word-spacing:4.640000pt;}
.wsed{word-spacing:4.693333pt;}
.ws47{word-spacing:4.746667pt;}
.wsf0{word-spacing:4.800000pt;}
.ws7c{word-spacing:4.906667pt;}
.ws14{word-spacing:4.960000pt;}
.ws7f{word-spacing:5.013333pt;}
.ws9d{word-spacing:5.066667pt;}
.wsaf{word-spacing:5.120000pt;}
.wsb6{word-spacing:5.173333pt;}
.ws63{word-spacing:5.226667pt;}
.wsd2{word-spacing:5.280000pt;}
.wsde{word-spacing:5.386667pt;}
.wsd6{word-spacing:5.440000pt;}
.ws20{word-spacing:5.493333pt;}
.ws48{word-spacing:5.546667pt;}
.ws6a{word-spacing:5.600000pt;}
.wsd9{word-spacing:5.653333pt;}
.wsbc{word-spacing:5.706667pt;}
.wsa7{word-spacing:5.813333pt;}
.wsf6{word-spacing:5.866667pt;}
.ws106{word-spacing:5.973333pt;}
.ws67{word-spacing:6.080000pt;}
.wsdd{word-spacing:6.186667pt;}
.wseb{word-spacing:6.240000pt;}
.wse0{word-spacing:6.293333pt;}
.wsc3{word-spacing:6.346667pt;}
.wsfe{word-spacing:6.400000pt;}
.ws59{word-spacing:6.453333pt;}
.ws10d{word-spacing:6.506667pt;}
.ws4d{word-spacing:6.560000pt;}
.wsc{word-spacing:6.613333pt;}
.wse1{word-spacing:6.773333pt;}
.ws1c{word-spacing:6.826667pt;}
.ws107{word-spacing:6.933333pt;}
.wscf{word-spacing:6.986667pt;}
.wsd0{word-spacing:7.093333pt;}
.wsdb{word-spacing:7.146667pt;}
.ws19{word-spacing:7.413333pt;}
.ws10b{word-spacing:7.786667pt;}
.wsb5{word-spacing:7.946667pt;}
.wse6{word-spacing:8.000000pt;}
.wsfb{word-spacing:8.053333pt;}
.wsda{word-spacing:8.106667pt;}
.ws3a{word-spacing:8.160000pt;}
.wsca{word-spacing:8.213333pt;}
.wsf4{word-spacing:8.266667pt;}
.ws3c{word-spacing:8.320000pt;}
.wsf7{word-spacing:8.373333pt;}
.ws10{word-spacing:8.480000pt;}
.wsa{word-spacing:8.533333pt;}
.wsec{word-spacing:8.693333pt;}
.wsfa{word-spacing:8.800000pt;}
.ws10c{word-spacing:9.440000pt;}
.ws101{word-spacing:9.600000pt;}
.wse2{word-spacing:9.973333pt;}
.ws111{word-spacing:10.186667pt;}
.ws105{word-spacing:10.293333pt;}
.ws104{word-spacing:10.400000pt;}
.wsf9{word-spacing:10.506667pt;}
.wsf5{word-spacing:11.680000pt;}
.ws1d{word-spacing:13.280000pt;}
.wse4{word-spacing:13.493333pt;}
.ws10a{word-spacing:13.600000pt;}
.wsfd{word-spacing:14.080000pt;}
.wsf2{word-spacing:14.133333pt;}
.ws24{word-spacing:14.240000pt;}
.ws1f{word-spacing:14.720000pt;}
.ws10f{word-spacing:14.773333pt;}
.ws110{word-spacing:15.626667pt;}
.ws112{word-spacing:16.053333pt;}
.ws113{word-spacing:16.373333pt;}
.wsff{word-spacing:16.426667pt;}
.wsef{word-spacing:16.853333pt;}
.wse7{word-spacing:17.013333pt;}
.ws18{word-spacing:19.946667pt;}
.ws103{word-spacing:20.213333pt;}
.ws100{word-spacing:20.906667pt;}
.wsf8{word-spacing:29.226667pt;}
.wsf3{word-spacing:51.093333pt;}
.wse5{word-spacing:54.613333pt;}
.ws92{word-spacing:78.174933pt;}
.ws93{word-spacing:103.510933pt;}
.ws97{word-spacing:106.551467pt;}
.ws95{word-spacing:108.628267pt;}
.ws94{word-spacing:126.145600pt;}
.ws99{word-spacing:154.372267pt;}
.ws98{word-spacing:166.395733pt;}
.ws8e{word-spacing:171.294400pt;}
.ws8d{word-spacing:176.426133pt;}
.ws8c{word-spacing:208.580800pt;}
.ws8b{word-spacing:219.340267pt;}
.ws96{word-spacing:283.605333pt;}
.ws9e{word-spacing:336.213867pt;}
.ws9a{word-spacing:525.935467pt;}
.ws90{word-spacing:683.649067pt;}
.ws91{word-spacing:691.826667pt;}
.ws8f{word-spacing:737.889067pt;}
.wsc8{word-spacing:1024.088000pt;}
._19{margin-left:-18.133333pt;}
._1b{margin-left:-15.680000pt;}
._1a{margin-left:-14.400000pt;}
._1d{margin-left:-13.344000pt;}
._27{margin-left:-8.890637pt;}
._28{margin-left:-7.925304pt;}
._25{margin-left:-6.880000pt;}
._6{margin-left:-5.920000pt;}
._5{margin-left:-4.458637pt;}
._1{margin-left:-3.434667pt;}
._3{margin-left:-2.453304pt;}
._0{margin-left:-1.408029pt;}
._2{width:0.960000pt;}
._21{width:2.620296pt;}
._1e{width:4.100267pt;}
._18{width:6.598400pt;}
._29{width:7.644237pt;}
._2b{width:8.726963pt;}
._2a{width:10.596800pt;}
._1f{width:13.344000pt;}
._2c{width:16.356800pt;}
._20{width:19.301333pt;}
._26{width:22.453333pt;}
._24{width:54.613333pt;}
._13{width:85.608533pt;}
._23{width:99.472000pt;}
._10{width:127.044267pt;}
._11{width:150.977600pt;}
._8{width:174.136000pt;}
._d{width:192.461304pt;}
._e{width:195.675200pt;}
._a{width:226.900800pt;}
._12{width:235.288533pt;}
._15{width:253.579200pt;}
._7{width:264.554667pt;}
._14{width:303.877333pt;}
._f{width:315.122133pt;}
._22{width:542.966400pt;}
._c{width:557.565867pt;}
._b{width:581.786667pt;}
._1c{width:658.938133pt;}
._9{width:670.708267pt;}
._16{width:707.114667pt;}
._17{width:816.132267pt;}
._4{width:2120.272029pt;}
.fs0{font-size:19.627200pt;}
.fs1{font-size:25.600533pt;}
.fs3{font-size:30.933333pt;}
.fs2{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs9{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:48.800000pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:70.344800pt;}
.y41{bottom:75.590533pt;}
.y1d{bottom:79.370000pt;}
.y1c{bottom:88.650000pt;}
.y40{bottom:91.590533pt;}
.y1b{bottom:97.930000pt;}
.y210{bottom:105.826667pt;}
.y8c{bottom:105.826800pt;}
.y158{bottom:105.826933pt;}
.y408{bottom:105.849067pt;}
.y1a{bottom:111.376267pt;}
.y3f{bottom:115.149600pt;}
.y20f{bottom:117.026667pt;}
.y19{bottom:120.656267pt;}
.y8b{bottom:121.896000pt;}
.y396{bottom:121.917600pt;}
.y274{bottom:121.936400pt;}
.y16d{bottom:121.946667pt;}
.y126{bottom:121.967067pt;}
.y493{bottom:122.017600pt;}
.y464{bottom:122.040400pt;}
.y3c8{bottom:122.052667pt;}
.yf4{bottom:122.060267pt;}
.y241{bottom:122.063200pt;}
.y2d9{bottom:122.092800pt;}
.y2a6{bottom:122.108533pt;}
.y33c{bottom:122.138800pt;}
.y30b{bottom:122.254933pt;}
.y1dc{bottom:122.372533pt;}
.y436{bottom:122.392933pt;}
.yc0{bottom:122.411733pt;}
.y157{bottom:122.488667pt;}
.y1a9{bottom:122.512400pt;}
.y407{bottom:122.542400pt;}
.y20e{bottom:128.226667pt;}
.y18{bottom:129.936267pt;}
.y3e{bottom:131.149600pt;}
.y8a{bottom:137.965200pt;}
.y395{bottom:138.008533pt;}
.y273{bottom:138.046000pt;}
.y16c{bottom:138.066400pt;}
.y125{bottom:138.107600pt;}
.y463{bottom:138.254133pt;}
.y3c7{bottom:138.278533pt;}
.yf3{bottom:138.293733pt;}
.y240{bottom:138.299600pt;}
.y2d8{bottom:138.358933pt;}
.y2a5{bottom:138.390400pt;}
.y33b{bottom:138.450800pt;}
.y30a{bottom:138.683200pt;}
.y1db{bottom:138.918267pt;}
.y435{bottom:138.959067pt;}
.ybf{bottom:138.996933pt;}
.y156{bottom:139.150400pt;}
.y1a8{bottom:139.198133pt;}
.y20d{bottom:139.426667pt;}
.y17{bottom:142.050933pt;}
.y492{bottom:145.767467pt;}
.y406{bottom:146.795733pt;}
.y3d{bottom:147.149600pt;}
.y89{bottom:154.034533pt;}
.y394{bottom:154.099467pt;}
.y272{bottom:154.155600pt;}
.y16b{bottom:154.186267pt;}
.y462{bottom:154.467733pt;}
.y3c6{bottom:154.504400pt;}
.yf2{bottom:154.527333pt;}
.y23f{bottom:154.536133pt;}
.y2d7{bottom:154.625200pt;}
.y2a4{bottom:154.672267pt;}
.y33a{bottom:154.762800pt;}
.y309{bottom:155.111467pt;}
.y1da{bottom:155.463867pt;}
.ybe{bottom:155.582000pt;}
.y1a7{bottom:155.883733pt;}
.y155{bottom:159.591600pt;}
.y124{bottom:161.807067pt;}
.y491{bottom:161.958400pt;}
.y434{bottom:163.084267pt;}
.y3c{bottom:163.149600pt;}
.y405{bottom:163.489067pt;}
.y88{bottom:170.103733pt;}
.y393{bottom:170.190400pt;}
.y3c5{bottom:170.730267pt;}
.yf1{bottom:170.760933pt;}
.y23e{bottom:170.772667pt;}
.y16{bottom:170.806267pt;}
.y2d6{bottom:170.891333pt;}
.y2a3{bottom:170.954133pt;}
.y339{bottom:171.074933pt;}
.y1d9{bottom:172.009600pt;}
.ybd{bottom:172.167067pt;}
.y1a6{bottom:172.569467pt;}
.y20c{bottom:173.303867pt;}
.y16a{bottom:174.085733pt;}
.y154{bottom:176.253467pt;}
.y271{bottom:177.824267pt;}
.y123{bottom:177.947467pt;}
.y461{bottom:178.240533pt;}
.y308{bottom:179.098667pt;}
.y3b{bottom:179.149600pt;}
.y433{bottom:179.650400pt;}
.y15{bottom:180.406267pt;}
.y490{bottom:185.708267pt;}
.y392{bottom:186.281333pt;}
.yf0{bottom:186.994400pt;}
.y23d{bottom:187.009067pt;}
.y338{bottom:187.387067pt;}
.y404{bottom:187.742400pt;}
.y1d8{bottom:188.555333pt;}
.ybc{bottom:188.752133pt;}
.y1a5{bottom:189.255067pt;}
.y14{bottom:189.686267pt;}
.y20b{bottom:189.822667pt;}
.y2d5{bottom:190.936933pt;}
.y87{bottom:193.732133pt;}
.y270{bottom:193.933867pt;}
.y122{bottom:194.087867pt;}
.y460{bottom:194.454267pt;}
.y3c4{bottom:194.515333pt;}
.y2a2{bottom:194.795067pt;}
.y362{bottom:194.946000pt;}
.y3a{bottom:195.149600pt;}
.y307{bottom:195.526800pt;}
.y13{bottom:198.966267pt;}
.y153{bottom:200.474267pt;}
.y48f{bottom:201.899200pt;}
.yef{bottom:203.228000pt;}
.y23c{bottom:203.245467pt;}
.y432{bottom:203.775600pt;}
.y403{bottom:204.435733pt;}
.ybb{bottom:205.337200pt;}
.y20a{bottom:206.341333pt;}
.y86{bottom:209.801333pt;}
.y391{bottom:209.931333pt;}
.y26f{bottom:210.043600pt;}
.y121{bottom:210.228400pt;}
.y3c3{bottom:210.741200pt;}
.y2a1{bottom:211.076933pt;}
.y12{bottom:211.080933pt;}
.y39{bottom:211.149600pt;}
.y337{bottom:211.258133pt;}
.y306{bottom:211.955067pt;}
.y1d7{bottom:212.660133pt;}
.y1a4{bottom:213.499867pt;}
.y169{bottom:216.082667pt;}
.y152{bottom:217.135867pt;}
.y48e{bottom:218.090000pt;}
.y45f{bottom:218.226933pt;}
.yee{bottom:219.461467pt;}
.y431{bottom:220.341733pt;}
.y402{bottom:221.129067pt;}
.yba{bottom:221.922267pt;}
.y209{bottom:222.860133pt;}
.y23b{bottom:223.261467pt;}
.y85{bottom:225.870667pt;}
.y390{bottom:226.022267pt;}
.y26e{bottom:226.153200pt;}
.y120{bottom:226.368800pt;}
.y3c2{bottom:226.967067pt;}
.y38{bottom:227.149600pt;}
.y2a0{bottom:227.358800pt;}
.y336{bottom:227.570133pt;}
.y305{bottom:228.383333pt;}
.y1d6{bottom:229.205867pt;}
.y1a3{bottom:230.185600pt;}
.y168{bottom:232.202533pt;}
.y2d4{bottom:233.080267pt;}
.y151{bottom:233.797733pt;}
.y48d{bottom:234.280933pt;}
.y45e{bottom:234.440667pt;}
.yed{bottom:235.695067pt;}
.y430{bottom:236.908000pt;}
.yb9{bottom:238.507333pt;}
.y11{bottom:239.277467pt;}
.y208{bottom:239.378933pt;}
.y84{bottom:241.940000pt;}
.y38f{bottom:242.113067pt;}
.y26d{bottom:242.262800pt;}
.y11f{bottom:242.509200pt;}
.y37{bottom:243.149600pt;}
.y3c1{bottom:243.192933pt;}
.y29f{bottom:243.640667pt;}
.y335{bottom:243.882267pt;}
.y304{bottom:244.811467pt;}
.y401{bottom:245.382400pt;}
.y1d5{bottom:245.751600pt;}
.y1a2{bottom:246.871200pt;}
.y167{bottom:248.322400pt;}
.y2d3{bottom:249.346400pt;}
.y10{bottom:249.502400pt;}
.y150{bottom:250.459333pt;}
.y45d{bottom:250.654400pt;}
.yb8{bottom:255.092400pt;}
.y207{bottom:255.897733pt;}
.y83{bottom:258.009200pt;}
.y48c{bottom:258.030800pt;}
.y38e{bottom:258.204000pt;}
.y11e{bottom:258.649600pt;}
.y36{bottom:259.149600pt;}
.y3c0{bottom:259.418800pt;}
.yec{bottom:259.487600pt;}
.y29e{bottom:259.922533pt;}
.y334{bottom:260.194267pt;}
.y42f{bottom:261.033200pt;}
.y303{bottom:261.239733pt;}
.y400{bottom:262.075733pt;}
.y1d4{bottom:262.297333pt;}
.y1a1{bottom:263.556933pt;}
.y361{bottom:263.973733pt;}
.y166{bottom:264.442267pt;}
.y23a{bottom:265.375200pt;}
.y2d2{bottom:265.612533pt;}
.y26c{bottom:265.931467pt;}
.y14f{bottom:267.121200pt;}
.yb7{bottom:271.677467pt;}
.y82{bottom:274.078400pt;}
.y48b{bottom:274.221733pt;}
.y38d{bottom:274.294933pt;}
.y45c{bottom:274.427067pt;}
.y11d{bottom:274.790000pt;}
.y35{bottom:275.149600pt;}
.y3bf{bottom:275.644800pt;}
.yeb{bottom:275.721200pt;}
.yf{bottom:275.820533pt;}
.y29d{bottom:276.204400pt;}
.y333{bottom:276.506400pt;}
.y42e{bottom:277.599333pt;}
.y302{bottom:277.668000pt;}
.y3ff{bottom:278.769067pt;}
.y1d3{bottom:278.843067pt;}
.y206{bottom:279.975467pt;}
.y1a0{bottom:280.242533pt;}
.y239{bottom:281.611600pt;}
.y2d1{bottom:281.878667pt;}
.y26b{bottom:282.041067pt;}
.ye{bottom:285.420533pt;}
.y165{bottom:288.121200pt;}
.yb6{bottom:288.262667pt;}
.y81{bottom:290.147733pt;}
.y38c{bottom:290.385867pt;}
.y45b{bottom:290.640800pt;}
.y11c{bottom:290.930533pt;}
.y34{bottom:291.149600pt;}
.y14e{bottom:291.342000pt;}
.y3be{bottom:291.870667pt;}
.yea{bottom:291.954800pt;}
.y29c{bottom:292.486267pt;}
.y332{bottom:292.818400pt;}
.y301{bottom:294.096133pt;}
.yd{bottom:294.700533pt;}
.y1d2{bottom:295.388800pt;}
.y205{bottom:296.494267pt;}
.y19f{bottom:296.928267pt;}
.y238{bottom:297.848000pt;}
.y48a{bottom:297.971600pt;}
.y2d0{bottom:298.144800pt;}
.y26a{bottom:298.150667pt;}
.y42d{bottom:301.724533pt;}
.y3fe{bottom:303.022400pt;}
.yc{bottom:303.980533pt;}
.y164{bottom:304.240933pt;}
.y360{bottom:306.163067pt;}
.y80{bottom:306.216933pt;}
.y11b{bottom:307.070933pt;}
.y33{bottom:307.149600pt;}
.y14d{bottom:308.003733pt;}
.ye9{bottom:308.188267pt;}
.y29b{bottom:308.768133pt;}
.y331{bottom:309.130400pt;}
.y300{bottom:310.524400pt;}
.y1d1{bottom:311.934533pt;}
.yb5{bottom:312.406800pt;}
.y204{bottom:313.013067pt;}
.yb{bottom:313.260533pt;}
.y38b{bottom:314.035867pt;}
.y237{bottom:314.084533pt;}
.y489{bottom:314.162400pt;}
.y269{bottom:314.260400pt;}
.y2cf{bottom:314.410933pt;}
.y45a{bottom:314.413467pt;}
.y3bd{bottom:315.655600pt;}
.y19e{bottom:317.393333pt;}
.y42c{bottom:318.290667pt;}
.y3fd{bottom:319.715733pt;}
.y163{bottom:320.360800pt;}
.y7f{bottom:322.286267pt;}
.y35f{bottom:322.475067pt;}
.ya{bottom:322.540533pt;}
.y32{bottom:323.149600pt;}
.ye8{bottom:324.421733pt;}
.y14c{bottom:324.665467pt;}
.y29a{bottom:325.050000pt;}
.y330{bottom:325.442533pt;}
.y2ff{bottom:326.952533pt;}
.y1d0{bottom:328.480133pt;}
.yb4{bottom:328.991733pt;}
.y203{bottom:329.531867pt;}
.y38a{bottom:330.126667pt;}
.y236{bottom:330.320933pt;}
.y488{bottom:330.353333pt;}
.y268{bottom:330.370000pt;}
.y459{bottom:330.627200pt;}
.y2ce{bottom:330.677067pt;}
.y11a{bottom:330.770400pt;}
.y9{bottom:331.820533pt;}
.y3bc{bottom:331.881467pt;}
.y42b{bottom:334.856800pt;}
.y3fc{bottom:336.409067pt;}
.y162{bottom:336.480667pt;}
.y7e{bottom:338.355467pt;}
.y35e{bottom:338.787200pt;}
.ye7{bottom:340.655333pt;}
.y8{bottom:341.100533pt;}
.y14b{bottom:341.327200pt;}
.y31{bottom:342.929067pt;}
.y2fe{bottom:343.380800pt;}
.y299{bottom:345.111333pt;}
.yb3{bottom:345.576933pt;}
.y202{bottom:346.050533pt;}
.y389{bottom:346.217600pt;}
.y267{bottom:346.479600pt;}
.y235{bottom:346.557467pt;}
.y458{bottom:346.840933pt;}
.y119{bottom:346.910800pt;}
.y2cd{bottom:346.943200pt;}
.y3bb{bottom:348.107467pt;}
.y32f{bottom:349.313600pt;}
.y42a{bottom:351.423067pt;}
.y1cf{bottom:352.584933pt;}
.y161{bottom:352.600533pt;}
.y3fb{bottom:353.102400pt;}
.y7{bottom:353.215200pt;}
.y487{bottom:354.103200pt;}
.y7d{bottom:354.424800pt;}
.y35d{bottom:355.099200pt;}
.y19d{bottom:356.756267pt;}
.ye6{bottom:356.888933pt;}
.y2fd{bottom:359.809067pt;}
.yb2{bottom:362.162000pt;}
.y388{bottom:362.308533pt;}
.y201{bottom:362.569333pt;}
.y266{bottom:362.589200pt;}
.y118{bottom:363.051333pt;}
.y457{bottom:363.054533pt;}
.y2cc{bottom:363.209333pt;}
.y3ba{bottom:364.333333pt;}
.y14a{bottom:365.548000pt;}
.y32e{bottom:365.625733pt;}
.y160{bottom:368.720400pt;}
.y1ce{bottom:369.130667pt;}
.y486{bottom:370.294133pt;}
.y234{bottom:370.352933pt;}
.y7c{bottom:370.494000pt;}
.y35c{bottom:371.411200pt;}
.ye5{bottom:373.122400pt;}
.y429{bottom:375.548267pt;}
.y3fa{bottom:377.355733pt;}
.y387{bottom:378.399467pt;}
.yb1{bottom:378.747067pt;}
.y200{bottom:379.088000pt;}
.y117{bottom:379.191733pt;}
.y19c{bottom:379.224133pt;}
.y2cb{bottom:379.475467pt;}
.y298{bottom:379.711333pt;}
.y2fc{bottom:380.016800pt;}
.y3b9{bottom:380.559200pt;}
.y32d{bottom:381.937733pt;}
.y6{bottom:384.333200pt;}
.y15f{bottom:384.840267pt;}
.y1cd{bottom:385.676400pt;}
.y265{bottom:386.257867pt;}
.y7b{bottom:386.563333pt;}
.y233{bottom:386.589467pt;}
.y456{bottom:386.827333pt;}
.y35b{bottom:387.723333pt;}
.y30{bottom:388.006267pt;}
.ye4{bottom:389.356000pt;}
.y149{bottom:389.839733pt;}
.y428{bottom:392.114400pt;}
.y485{bottom:394.044000pt;}
.y3f9{bottom:394.049067pt;}
.y386{bottom:394.490400pt;}
.y116{bottom:395.332133pt;}
.y1ff{bottom:395.606800pt;}
.y19b{bottom:396.336933pt;}
.y5{bottom:396.478133pt;}
.y3b8{bottom:396.785200pt;}
.y32c{bottom:398.249733pt;}
.yb0{bottom:399.111600pt;}
.y15e{bottom:400.960133pt;}
.y4b3{bottom:401.224400pt;}
.y297{bottom:401.775333pt;}
.y1cc{bottom:402.222133pt;}
.y264{bottom:402.367467pt;}
.y7a{bottom:402.632533pt;}
.y232{bottom:402.825867pt;}
.y455{bottom:403.041067pt;}
.y2ca{bottom:403.300667pt;}
.y2f{bottom:404.006267pt;}
.ye3{bottom:405.589467pt;}
.y427{bottom:408.680533pt;}
.y484{bottom:410.234800pt;}
.y385{bottom:410.581333pt;}
.y3f8{bottom:410.742400pt;}
.y35a{bottom:411.594400pt;}
.y146{bottom:411.846267pt;}
.y1fe{bottom:412.125600pt;}
.y3b7{bottom:413.011067pt;}
.y19a{bottom:413.449867pt;}
.y4b2{bottom:417.224400pt;}
.y263{bottom:418.477067pt;}
.y148{bottom:418.512933pt;}
.y79{bottom:418.701867pt;}
.y1cb{bottom:418.767867pt;}
.y296{bottom:418.888267pt;}
.y115{bottom:419.031600pt;}
.y231{bottom:419.062400pt;}
.y454{bottom:419.254667pt;}
.y2c9{bottom:419.566800pt;}
.y15d{bottom:420.859467pt;}
.ye2{bottom:421.823067pt;}
.y32b{bottom:422.120933pt;}
.y145{bottom:425.179600pt;}
.y2fb{bottom:425.522133pt;}
.y483{bottom:426.425733pt;}
.y384{bottom:426.672267pt;}
.y293{bottom:427.306667pt;}
.y2e{bottom:427.565333pt;}
.y359{bottom:427.906533pt;}
.y190{bottom:428.534933pt;}
.y1fd{bottom:428.644267pt;}
.y193{bottom:428.672933pt;}
.y3b6{bottom:429.236933pt;}
.y199{bottom:430.562667pt;}
.y147{bottom:431.846267pt;}
.y426{bottom:432.805733pt;}
.y4b1{bottom:433.224400pt;}
.y262{bottom:434.586800pt;}
.y78{bottom:434.771067pt;}
.y3f7{bottom:434.995733pt;}
.y114{bottom:435.172000pt;}
.y230{bottom:435.298933pt;}
.y1ca{bottom:435.313600pt;}
.y2c8{bottom:435.832933pt;}
.y295{bottom:436.001067pt;}
.ye1{bottom:438.056533pt;}
.y32a{bottom:438.432933pt;}
.y144{bottom:438.512933pt;}
.yaf{bottom:441.573867pt;}
.y18f{bottom:441.868267pt;}
.y2fa{bottom:441.950400pt;}
.y192{bottom:442.006267pt;}
.y482{bottom:442.616667pt;}
.y383{bottom:442.763200pt;}
.y453{bottom:443.027467pt;}
.y2d{bottom:443.565333pt;}
.y358{bottom:444.218533pt;}
.y1fc{bottom:445.163067pt;}
.y3b5{bottom:445.462800pt;}
.y198{bottom:447.675600pt;}
.y425{bottom:449.372000pt;}
.y261{bottom:450.696400pt;}
.y77{bottom:450.840267pt;}
.y113{bottom:451.312400pt;}
.y22f{bottom:451.535333pt;}
.y3f6{bottom:451.689067pt;}
.y1c9{bottom:451.859333pt;}
.y2c7{bottom:452.099067pt;}
.y294{bottom:453.113867pt;}
.ye0{bottom:454.290133pt;}
.y329{bottom:454.744933pt;}
.y18e{bottom:455.201600pt;}
.y191{bottom:455.339600pt;}
.y4b0{bottom:456.783467pt;}
.yae{bottom:458.158933pt;}
.y2f9{bottom:458.378533pt;}
.y15c{bottom:458.497467pt;}
.y382{bottom:458.854133pt;}
.y452{bottom:459.241067pt;}
.y2c{bottom:459.565333pt;}
.y143{bottom:460.519600pt;}
.y357{bottom:460.530533pt;}
.y197{bottom:461.008933pt;}
.y1fb{bottom:461.681867pt;}
.y3b4{bottom:461.688667pt;}
.y481{bottom:466.366533pt;}
.y260{bottom:466.806000pt;}
.y76{bottom:466.909600pt;}
.y142{bottom:467.186267pt;}
.y112{bottom:467.452933pt;}
.y2c6{bottom:468.365200pt;}
.y3f5{bottom:468.382400pt;}
.ydf{bottom:470.523600pt;}
.y328{bottom:471.057067pt;}
.y4af{bottom:472.783467pt;}
.y424{bottom:473.497200pt;}
.yad{bottom:474.744000pt;}
.y2f8{bottom:474.806800pt;}
.y292{bottom:475.204533pt;}
.y22e{bottom:475.330800pt;}
.y2b{bottom:475.565333pt;}
.y1c8{bottom:475.964133pt;}
.y356{bottom:476.842667pt;}
.y3b3{bottom:477.914667pt;}
.y196{bottom:478.121733pt;}
.y381{bottom:482.504000pt;}
.y480{bottom:482.557333pt;}
.y75{bottom:482.978933pt;}
.y451{bottom:483.013867pt;}
.y111{bottom:483.593333pt;}
.y2c5{bottom:484.631333pt;}
.y1fa{bottom:485.759600pt;}
.y423{bottom:490.063333pt;}
.y25f{bottom:490.474667pt;}
.y2f7{bottom:491.235067pt;}
.yac{bottom:491.329200pt;}
.y195{bottom:491.455067pt;}
.y2a{bottom:491.565333pt;}
.y22d{bottom:491.567333pt;}
.y1c7{bottom:492.509867pt;}
.y3f4{bottom:492.635733pt;}
.y355{bottom:493.154667pt;}
.y3b2{bottom:494.140533pt;}
.yde{bottom:494.316267pt;}
.y327{bottom:494.928133pt;}
.y141{bottom:495.859600pt;}
.y4ae{bottom:496.342533pt;}
.y291{bottom:497.571067pt;}
.y380{bottom:498.594933pt;}
.y47f{bottom:498.748267pt;}
.y74{bottom:499.048133pt;}
.y450{bottom:499.227600pt;}
.y110{bottom:499.733733pt;}
.y2c4{bottom:500.897467pt;}
.y1f9{bottom:502.278400pt;}
.y140{bottom:502.526267pt;}
.y194{bottom:504.788400pt;}
.y290{bottom:505.989600pt;}
.y25e{bottom:506.584267pt;}
.y29{bottom:507.565333pt;}
.y2f6{bottom:507.663200pt;}
.y22c{bottom:507.803733pt;}
.yab{bottom:507.914267pt;}
.y1c6{bottom:509.055467pt;}
.y3f3{bottom:509.329067pt;}
.y354{bottom:509.466800pt;}
.y3b1{bottom:510.366400pt;}
.ydd{bottom:510.549867pt;}
.y326{bottom:511.240267pt;}
.y4ad{bottom:512.342533pt;}
.y422{bottom:514.188533pt;}
.y54{bottom:514.343600pt;}
.y37f{bottom:514.685867pt;}
.y47e{bottom:514.939067pt;}
.y10f{bottom:515.874133pt;}
.y2c3{bottom:517.163600pt;}
.y1f8{bottom:518.797200pt;}
.y73{bottom:522.676533pt;}
.y25d{bottom:522.693867pt;}
.y44f{bottom:523.000267pt;}
.y28{bottom:523.565333pt;}
.y53{bottom:523.623600pt;}
.y22b{bottom:524.040267pt;}
.y2f5{bottom:524.091467pt;}
.yaa{bottom:524.499333pt;}
.y1c5{bottom:525.601200pt;}
.y353{bottom:525.778800pt;}
.y3f2{bottom:526.022400pt;}
.y3b0{bottom:526.592267pt;}
.ydc{bottom:526.783333pt;}
.y18d{bottom:526.879067pt;}
.y325{bottom:527.552267pt;}
.y421{bottom:530.754667pt;}
.y37e{bottom:530.776800pt;}
.y13f{bottom:531.199600pt;}
.y10e{bottom:532.014667pt;}
.y2c2{bottom:533.429733pt;}
.y1f7{bottom:535.316000pt;}
.y52{bottom:535.738133pt;}
.y4ac{bottom:535.901600pt;}
.y28f{bottom:536.774667pt;}
.y13e{bottom:537.866267pt;}
.y47d{bottom:538.689067pt;}
.y72{bottom:538.745733pt;}
.y25c{bottom:538.803600pt;}
.y44e{bottom:539.214000pt;}
.y27{bottom:539.565333pt;}
.y22a{bottom:540.276667pt;}
.y2f4{bottom:540.519600pt;}
.ya9{bottom:541.084400pt;}
.y1c4{bottom:542.146933pt;}
.ydb{bottom:543.016800pt;}
.y324{bottom:543.864400pt;}
.y18c{bottom:543.991867pt;}
.y37d{bottom:546.867733pt;}
.y420{bottom:547.320800pt;}
.y352{bottom:549.650000pt;}
.y2c1{bottom:549.695867pt;}
.y28c{bottom:549.970000pt;}
.y28e{bottom:550.108000pt;}
.y3f1{bottom:550.275733pt;}
.y3af{bottom:550.377333pt;}
.y1f6{bottom:551.834667pt;}
.y4ab{bottom:551.901600pt;}
.y10d{bottom:551.934533pt;}
.y71{bottom:554.814933pt;}
.y47c{bottom:554.879867pt;}
.y25b{bottom:554.913200pt;}
.y26{bottom:555.565333pt;}
.y229{bottom:556.513200pt;}
.ya8{bottom:557.669467pt;}
.y51{bottom:557.937200pt;}
.y1c3{bottom:558.692667pt;}
.yda{bottom:559.250400pt;}
.y323{bottom:560.176400pt;}
.y18b{bottom:561.104800pt;}
.y2f3{bottom:561.747867pt;}
.y37c{bottom:562.958667pt;}
.y44d{bottom:562.986800pt;}
.y28d{bottom:563.441333pt;}
.y2c0{bottom:565.962000pt;}
.y13d{bottom:566.539467pt;}
.y3ae{bottom:566.603200pt;}
.y3f0{bottom:566.969067pt;}
.y50{bottom:567.217333pt;}
.y4aa{bottom:567.901600pt;}
.y70{bottom:570.884267pt;}
.y25a{bottom:571.022800pt;}
.y47b{bottom:571.070800pt;}
.y41f{bottom:571.446000pt;}
.y25{bottom:571.565333pt;}
.y186{bottom:572.548400pt;}
.y228{bottom:572.749600pt;}
.ya7{bottom:574.254533pt;}
.y1c2{bottom:575.238400pt;}
.yd9{bottom:575.483867pt;}
.y1f5{bottom:575.912533pt;}
.y322{bottom:576.488400pt;}
.y2f2{bottom:578.176133pt;}
.y18a{bottom:578.217600pt;}
.y37b{bottom:579.049467pt;}
.y44c{bottom:579.200400pt;}
.y4f{bottom:579.331867pt;}
.y2bf{bottom:582.228133pt;}
.y351{bottom:582.274000pt;}
.y3ad{bottom:582.829067pt;}
.y28b{bottom:585.531867pt;}
.y6f{bottom:586.953467pt;}
.y24{bottom:587.565333pt;}
.y41e{bottom:588.012267pt;}
.y13c{bottom:588.546133pt;}
.ya6{bottom:590.839600pt;}
.y3ef{bottom:591.222400pt;}
.y4a9{bottom:591.460667pt;}
.y189{bottom:591.550933pt;}
.yd8{bottom:591.717467pt;}
.y1c1{bottom:591.784133pt;}
.y1f4{bottom:592.431333pt;}
.y10c{bottom:593.952133pt;}
.y2f1{bottom:594.604267pt;}
.y259{bottom:594.691467pt;}
.y47a{bottom:594.820667pt;}
.y37a{bottom:595.140400pt;}
.y13b{bottom:595.212800pt;}
.y44b{bottom:595.414133pt;}
.y227{bottom:596.545200pt;}
.y2be{bottom:598.494267pt;}
.y350{bottom:598.586133pt;}
.y3ac{bottom:599.054933pt;}
.y321{bottom:600.359600pt;}
.y4e{bottom:601.530933pt;}
.y6e{bottom:603.022800pt;}
.y23{bottom:603.565333pt;}
.y41d{bottom:604.578400pt;}
.y188{bottom:604.884267pt;}
.y4a8{bottom:607.460667pt;}
.y3ee{bottom:607.915733pt;}
.yd7{bottom:607.951067pt;}
.y1c0{bottom:608.329867pt;}
.y1f3{bottom:608.950000pt;}
.y10b{bottom:610.092533pt;}
.y258{bottom:610.801067pt;}
.y479{bottom:611.011600pt;}
.y2f0{bottom:611.032533pt;}
.y379{bottom:611.231333pt;}
.y226{bottom:612.781600pt;}
.y4d{bottom:613.645600pt;}
.y28a{bottom:614.182933pt;}
.y2bd{bottom:614.760400pt;}
.ya5{bottom:614.983733pt;}
.y3ab{bottom:615.280933pt;}
.y320{bottom:616.671600pt;}
.y187{bottom:618.217600pt;}
.y6d{bottom:619.092000pt;}
.y44a{bottom:619.186800pt;}
.y22{bottom:619.565333pt;}
.y34f{bottom:622.457200pt;}
.y13a{bottom:623.886133pt;}
.yd6{bottom:624.184533pt;}
.y3ed{bottom:624.609067pt;}
.y1f2{bottom:625.468800pt;}
.y10a{bottom:626.232933pt;}
.y257{bottom:626.910667pt;}
.y478{bottom:627.202400pt;}
.y2ef{bottom:627.460800pt;}
.y4c{bottom:628.285600pt;}
.y41c{bottom:628.703600pt;}
.y225{bottom:629.018000pt;}
.y4a7{bottom:631.019733pt;}
.y3aa{bottom:631.506800pt;}
.ya4{bottom:631.568800pt;}
.y1bf{bottom:632.434667pt;}
.y31f{bottom:632.983733pt;}
.y378{bottom:634.881333pt;}
.y6c{bottom:635.161333pt;}
.y21{bottom:635.565333pt;}
.y139{bottom:637.219467pt;}
.y2bc{bottom:638.585600pt;}
.y179{bottom:638.678800pt;}
.y34e{bottom:638.769200pt;}
.y289{bottom:639.403333pt;}
.y185{bottom:640.308267pt;}
.yd5{bottom:640.418133pt;}
.y3ec{bottom:641.302400pt;}
.y1f1{bottom:641.987600pt;}
.y109{bottom:642.373467pt;}
.y449{bottom:642.959600pt;}
.y256{bottom:643.020400pt;}
.y2ee{bottom:643.888933pt;}
.y224{bottom:645.254533pt;}
.y41b{bottom:645.269733pt;}
.y4a6{bottom:647.019733pt;}
.y3a9{bottom:647.732667pt;}
.ya3{bottom:648.153867pt;}
.y1be{bottom:648.980400pt;}
.y31e{bottom:649.295733pt;}
.y4b{bottom:650.484667pt;}
.y477{bottom:650.952267pt;}
.y377{bottom:650.972267pt;}
.y6b{bottom:651.230533pt;}
.y20{bottom:651.565333pt;}
.y178{bottom:652.012133pt;}
.y184{bottom:653.641600pt;}
.y2bb{bottom:654.851733pt;}
.y34d{bottom:655.081333pt;}
.y288{bottom:655.685200pt;}
.yd4{bottom:656.651600pt;}
.y1f0{bottom:658.506267pt;}
.y108{bottom:658.513867pt;}
.y255{bottom:659.130000pt;}
.y448{bottom:659.173333pt;}
.y138{bottom:659.502000pt;}
.y4a{bottom:659.764667pt;}
.y2ed{bottom:660.317200pt;}
.y223{bottom:661.491067pt;}
.y41a{bottom:661.835867pt;}
.y4a5{bottom:663.019733pt;}
.y3a8{bottom:663.958533pt;}
.ya2{bottom:664.738933pt;}
.y1bd{bottom:665.526133pt;}
.y3eb{bottom:665.555733pt;}
.y31d{bottom:665.607733pt;}
.y183{bottom:666.974933pt;}
.y376{bottom:667.063200pt;}
.y476{bottom:667.143200pt;}
.y6a{bottom:667.299867pt;}
.y1f{bottom:667.565333pt;}
.y2ba{bottom:671.117867pt;}
.y34c{bottom:671.393333pt;}
.y49{bottom:671.879333pt;}
.y287{bottom:671.967067pt;}
.y107{bottom:674.654267pt;}
.y1ef{bottom:675.025067pt;}
.y254{bottom:675.239600pt;}
.y447{bottom:675.386933pt;}
.y3da{bottom:675.583867pt;}
.y2ec{bottom:676.745333pt;}
.y222{bottom:677.727467pt;}
.y3a7{bottom:680.184533pt;}
.y182{bottom:680.308267pt;}
.yd3{bottom:680.444267pt;}
.ya1{bottom:681.324000pt;}
.y137{bottom:681.508667pt;}
.y31c{bottom:681.919867pt;}
.y1bc{bottom:682.071733pt;}
.y375{bottom:683.154133pt;}
.y69{bottom:683.369200pt;}
.y419{bottom:685.961067pt;}
.y4a4{bottom:686.578800pt;}
.y1e{bottom:687.344933pt;}
.y2b9{bottom:687.384000pt;}
.y48{bottom:687.464133pt;}
.y34b{bottom:687.705467pt;}
.y286{bottom:688.248933pt;}
.y3ea{bottom:689.809067pt;}
.y106{bottom:690.794800pt;}
.y475{bottom:690.893067pt;}
.y253{bottom:691.349200pt;}
.y3d9{bottom:691.583867pt;}
.y181{bottom:693.641600pt;}
.y221{bottom:693.964000pt;}
.y17b{bottom:695.531333pt;}
.y3a6{bottom:696.410400pt;}
.yd2{bottom:696.677733pt;}
.ya0{bottom:697.909067pt;}
.y1bb{bottom:698.617467pt;}
.y1ee{bottom:699.102800pt;}
.y446{bottom:699.159733pt;}
.y374{bottom:699.244933pt;}
.y68{bottom:699.438400pt;}
.y2eb{bottom:700.732667pt;}
.y418{bottom:702.527200pt;}
.y4a3{bottom:702.578800pt;}
.y136{bottom:703.515333pt;}
.y2b8{bottom:703.650000pt;}
.y34a{bottom:704.017467pt;}
.y285{bottom:704.530800pt;}
.y31b{bottom:705.790933pt;}
.y3e9{bottom:706.502400pt;}
.y105{bottom:706.935200pt;}
.y180{bottom:706.974933pt;}
.y474{bottom:707.084000pt;}
.y252{bottom:707.458800pt;}
.y3d8{bottom:707.583867pt;}
.y17a{bottom:708.864667pt;}
.y220{bottom:710.200400pt;}
.yd1{bottom:712.911333pt;}
.y9f{bottom:714.494267pt;}
.y1ba{bottom:715.163200pt;}
.y373{bottom:715.336000pt;}
.y445{bottom:715.373333pt;}
.y67{bottom:715.507600pt;}
.y1ed{bottom:715.621600pt;}
.y2ea{bottom:717.160933pt;}
.y4a2{bottom:718.578800pt;}
.y417{bottom:719.093467pt;}
.y2b7{bottom:719.916267pt;}
.y3a5{bottom:720.195333pt;}
.y349{bottom:720.329467pt;}
.y31a{bottom:722.103067pt;}
.y104{bottom:723.075600pt;}
.y3e8{bottom:723.197333pt;}
.y473{bottom:723.274800pt;}
.y251{bottom:723.568400pt;}
.y17f{bottom:724.087733pt;}
.y135{bottom:725.521867pt;}
.y21f{bottom:726.436800pt;}
.y3d7{bottom:727.363333pt;}
.y284{bottom:728.371733pt;}
.yd0{bottom:729.144800pt;}
.y9e{bottom:731.079200pt;}
.y372{bottom:731.426800pt;}
.y66{bottom:731.576933pt;}
.y1b9{bottom:731.708933pt;}
.y1ec{bottom:732.140400pt;}
.y2e9{bottom:733.589067pt;}
.y2b6{bottom:736.182400pt;}
.y3a4{bottom:736.421200pt;}
.y348{bottom:736.641600pt;}
.y17e{bottom:737.421067pt;}
.y319{bottom:738.415067pt;}
.y444{bottom:739.146133pt;}
.y250{bottom:739.678000pt;}
.y4a1{bottom:742.137733pt;}
.y21e{bottom:742.673333pt;}
.y416{bottom:743.218667pt;}
.y283{bottom:744.653600pt;}
.ycf{bottom:745.378400pt;}
.y103{bottom:746.775067pt;}
.y472{bottom:747.024800pt;}
.y3e7{bottom:747.459067pt;}
.y371{bottom:747.517733pt;}
.y134{bottom:747.528533pt;}
.y65{bottom:747.646133pt;}
.y9d{bottom:747.664400pt;}
.y1b8{bottom:748.254667pt;}
.y1eb{bottom:748.659200pt;}
.y2e8{bottom:750.017200pt;}
.y17d{bottom:750.754400pt;}
.y2b5{bottom:752.448533pt;}
.y3a3{bottom:752.647200pt;}
.y318{bottom:754.727067pt;}
.y443{bottom:755.359867pt;}
.y24f{bottom:755.787733pt;}
.y4a0{bottom:758.137733pt;}
.y21d{bottom:758.909867pt;}
.y347{bottom:760.512667pt;}
.y282{bottom:760.935333pt;}
.yce{bottom:761.612000pt;}
.y102{bottom:762.915467pt;}
.y471{bottom:763.215600pt;}
.y370{bottom:763.608667pt;}
.y64{bottom:763.715467pt;}
.y17c{bottom:764.087733pt;}
.y3e6{bottom:764.152400pt;}
.y9c{bottom:764.249467pt;}
.y1b7{bottom:764.800400pt;}
.y1ea{bottom:765.177867pt;}
.y2e7{bottom:766.445467pt;}
.y415{bottom:767.343867pt;}
.y2b4{bottom:768.714667pt;}
.y3a2{bottom:768.873067pt;}
.y133{bottom:769.534933pt;}
.y317{bottom:771.039200pt;}
.y3d6{bottom:772.440533pt;}
.y21c{bottom:775.146267pt;}
.y47{bottom:775.358267pt;}
.y346{bottom:776.824800pt;}
.y281{bottom:777.217333pt;}
.ycd{bottom:777.845467pt;}
.y101{bottom:779.055867pt;}
.y442{bottom:779.132533pt;}
.y24e{bottom:779.456400pt;}
.y36f{bottom:779.699600pt;}
.y9b{bottom:780.834533pt;}
.y3e5{bottom:780.845733pt;}
.y1b6{bottom:781.346133pt;}
.y1e9{bottom:781.696667pt;}
.y49f{bottom:781.696800pt;}
.y2e6{bottom:782.873733pt;}
.y414{bottom:783.910000pt;}
.y3a1{bottom:785.098933pt;}
.y177{bottom:786.178400pt;}
.y470{bottom:786.965467pt;}
.y63{bottom:787.343733pt;}
.y3d5{bottom:788.440533pt;}
.y132{bottom:791.541600pt;}
.y2b3{bottom:792.539867pt;}
.y345{bottom:793.136800pt;}
.y316{bottom:794.910267pt;}
.y100{bottom:795.196400pt;}
.y441{bottom:795.346267pt;}
.y24d{bottom:795.566000pt;}
.y36e{bottom:795.790533pt;}
.y9a{bottom:797.419600pt;}
.y49e{bottom:797.696800pt;}
.y46{bottom:797.758133pt;}
.y1b5{bottom:797.891867pt;}
.y1e8{bottom:798.215467pt;}
.y21b{bottom:798.941867pt;}
.y2e5{bottom:799.301867pt;}
.y413{bottom:800.476267pt;}
.y280{bottom:801.058133pt;}
.ycc{bottom:801.638000pt;}
.y46f{bottom:803.156400pt;}
.y62{bottom:803.413067pt;}
.y3d4{bottom:804.440533pt;}
.y131{bottom:804.874933pt;}
.y3e4{bottom:805.099067pt;}
.y3a0{bottom:805.104267pt;}
.y2b2{bottom:808.806000pt;}
.y344{bottom:809.448933pt;}
.y315{bottom:811.222267pt;}
.yff{bottom:811.336800pt;}
.y24c{bottom:811.675600pt;}
.y49d{bottom:813.696800pt;}
.y99{bottom:814.004667pt;}
.y1b4{bottom:814.437600pt;}
.y1e7{bottom:814.734267pt;}
.y21a{bottom:815.178267pt;}
.y176{bottom:815.233200pt;}
.y2e4{bottom:815.730133pt;}
.y27f{bottom:817.340133pt;}
.ycb{bottom:817.871600pt;}
.y440{bottom:819.118933pt;}
.y46e{bottom:819.347200pt;}
.y36d{bottom:819.440400pt;}
.y61{bottom:819.482267pt;}
.y45{bottom:820.158133pt;}
.y3d3{bottom:820.440533pt;}
.y3e3{bottom:821.792400pt;}
.y412{bottom:824.601333pt;}
.y2b1{bottom:825.072133pt;}
.y130{bottom:826.881467pt;}
.yfe{bottom:827.477200pt;}
.y314{bottom:827.534400pt;}
.y24b{bottom:827.785200pt;}
.y98{bottom:830.589733pt;}
.y1b3{bottom:830.983333pt;}
.y1e6{bottom:831.252933pt;}
.y219{bottom:831.414667pt;}
.y2e3{bottom:832.158400pt;}
.y343{bottom:833.320000pt;}
.y27e{bottom:833.621867pt;}
.yca{bottom:834.105200pt;}
.y43f{bottom:835.332667pt;}
.y36c{bottom:835.531467pt;}
.y60{bottom:835.551600pt;}
.y3d2{bottom:836.440533pt;}
.y49c{bottom:837.255867pt;}
.y3e2{bottom:838.485733pt;}
.y12f{bottom:840.214800pt;}
.y175{bottom:840.857467pt;}
.y411{bottom:841.167600pt;}
.y2b0{bottom:841.338267pt;}
.y46d{bottom:843.097200pt;}
.y313{bottom:843.846400pt;}
.y24a{bottom:843.894800pt;}
.y97{bottom:847.174800pt;}
.y1b2{bottom:847.529067pt;}
.y218{bottom:847.651200pt;}
.y1e5{bottom:847.771733pt;}
.y342{bottom:849.632000pt;}
.y27d{bottom:849.903867pt;}
.y44{bottom:850.117200pt;}
.y39f{bottom:850.407467pt;}
.yfd{bottom:851.176667pt;}
.y43e{bottom:851.546400pt;}
.y5f{bottom:851.620800pt;}
.y36b{bottom:851.622267pt;}
.y3d1{bottom:852.440533pt;}
.y49b{bottom:853.255867pt;}
.y2e2{bottom:856.145733pt;}
.y174{bottom:857.543067pt;}
.y2af{bottom:857.604400pt;}
.yc9{bottom:857.897733pt;}
.y46c{bottom:859.288133pt;}
.y12e{bottom:862.221467pt;}
.y3e1{bottom:862.739067pt;}
.y96{bottom:863.759867pt;}
.y217{bottom:863.887600pt;}
.y312{bottom:863.938133pt;}
.y1b1{bottom:864.074800pt;}
.y1e4{bottom:864.290400pt;}
.y410{bottom:865.292800pt;}
.y341{bottom:865.944133pt;}
.y27c{bottom:866.185600pt;}
.y39e{bottom:866.633333pt;}
.yfc{bottom:867.317200pt;}
.y249{bottom:867.563600pt;}
.y36a{bottom:867.713200pt;}
.y3d0{bottom:868.440533pt;}
.y49a{bottom:869.255867pt;}
.y2e1{bottom:872.573867pt;}
.y2ae{bottom:873.870533pt;}
.yc8{bottom:874.131200pt;}
.y5e{bottom:875.249067pt;}
.y43d{bottom:875.319200pt;}
.y12d{bottom:875.554800pt;}
.y173{bottom:878.008400pt;}
.y3e0{bottom:879.432400pt;}
.y43{bottom:879.450533pt;}
.y216{bottom:880.124133pt;}
.y95{bottom:880.344933pt;}
.y40f{bottom:881.858933pt;}
.y340{bottom:882.256133pt;}
.y27b{bottom:882.467467pt;}
.y39d{bottom:882.859200pt;}
.y46b{bottom:883.037867pt;}
.yfb{bottom:883.457467pt;}
.y248{bottom:883.673200pt;}
.y369{bottom:883.804133pt;}
.y3cf{bottom:884.440533pt;}
.y1b0{bottom:888.179467pt;}
.y1e3{bottom:888.368267pt;}
.y2e0{bottom:889.002133pt;}
.y2ad{bottom:890.136667pt;}
.yc7{bottom:890.364800pt;}
.y5d{bottom:891.318400pt;}
.y43c{bottom:891.532800pt;}
.y499{bottom:892.814933pt;}
.y215{bottom:896.360533pt;}
.y94{bottom:896.930133pt;}
.y12c{bottom:897.561467pt;}
.y33f{bottom:898.568133pt;}
.y27a{bottom:898.749333pt;}
.y46a{bottom:899.228800pt;}
.yfa{bottom:899.598000pt;}
.y247{bottom:899.782800pt;}
.y368{bottom:899.895067pt;}
.y3df{bottom:903.685733pt;}
.y1af{bottom:904.725200pt;}
.y1e2{bottom:904.887067pt;}
.y2df{bottom:905.430400pt;}
.y40e{bottom:905.984133pt;}
.y311{bottom:906.127333pt;}
.y2ac{bottom:906.402800pt;}
.yc6{bottom:906.598400pt;}
.y39c{bottom:906.644267pt;}
.y5c{bottom:907.387733pt;}
.y43b{bottom:907.746533pt;}
.y3ce{bottom:907.999600pt;}
.y42{bottom:908.783867pt;}
.y498{bottom:908.814933pt;}
.y214{bottom:912.597067pt;}
.y33e{bottom:914.880267pt;}
.y469{bottom:915.419733pt;}
.yf9{bottom:915.738400pt;}
.y246{bottom:915.892400pt;}
.y12b{bottom:919.568000pt;}
.y3de{bottom:920.379067pt;}
.y172{bottom:920.571200pt;}
.y93{bottom:921.074267pt;}
.y1ae{bottom:921.270933pt;}
.y1e1{bottom:921.405733pt;}
.y2de{bottom:921.858533pt;}
.y310{bottom:922.439333pt;}
.y40d{bottom:922.550267pt;}
.y279{bottom:922.590267pt;}
.y2ab{bottom:922.668933pt;}
.yc5{bottom:922.831867pt;}
.y39b{bottom:922.870133pt;}
.y5b{bottom:923.456933pt;}
.y367{bottom:923.545067pt;}
.y3cd{bottom:923.999600pt;}
.y213{bottom:928.833467pt;}
.y33d{bottom:931.192267pt;}
.y43a{bottom:931.519333pt;}
.y468{bottom:931.610533pt;}
.yf8{bottom:931.878800pt;}
.y245{bottom:932.002000pt;}
.y497{bottom:932.374000pt;}
.y3dd{bottom:937.072400pt;}
.y171{bottom:937.256933pt;}
.y92{bottom:937.659200pt;}
.y1ad{bottom:937.816667pt;}
.y1e0{bottom:937.924533pt;}
.y2dd{bottom:938.286667pt;}
.y30f{bottom:938.751333pt;}
.y278{bottom:938.872133pt;}
.y2aa{bottom:938.935067pt;}
.yc4{bottom:939.065467pt;}
.y39a{bottom:939.096000pt;}
.y15b{bottom:939.142400pt;}
.y5a{bottom:939.526267pt;}
.y366{bottom:939.635867pt;}
.y3cc{bottom:939.999600pt;}
.y12a{bottom:941.574667pt;}
.y40c{bottom:946.675600pt;}
.y439{bottom:947.732933pt;}
.y244{bottom:948.111600pt;}
.y496{bottom:948.374000pt;}
.y212{bottom:948.849467pt;}
.y170{bottom:953.942533pt;}
.y91{bottom:954.244400pt;}
.y1ac{bottom:954.362533pt;}
.y1df{bottom:954.443333pt;}
.y2dc{bottom:954.714933pt;}
.y30e{bottom:955.063333pt;}
.y277{bottom:955.154000pt;}
.y2a9{bottom:955.201200pt;}
.yc3{bottom:955.298933pt;}
.y399{bottom:955.321867pt;}
.y467{bottom:955.360533pt;}
.yf7{bottom:955.578267pt;}
.y59{bottom:955.595467pt;}
.y365{bottom:955.726933pt;}
.y3cb{bottom:955.999600pt;}
.y3dc{bottom:961.325733pt;}
.y40b{bottom:963.241733pt;}
.y129{bottom:963.581333pt;}
.y438{bottom:963.946667pt;}
.y15a{bottom:964.200800pt;}
.y243{bottom:964.221333pt;}
.y495{bottom:964.374000pt;}
.y128{bottom:970.248000pt;}
.y16f{bottom:970.628267pt;}
.y90{bottom:970.829467pt;}
.y1ab{bottom:970.908133pt;}
.y1de{bottom:970.962133pt;}
.y2db{bottom:971.143200pt;}
.y30d{bottom:971.375467pt;}
.y276{bottom:971.435867pt;}
.y2a8{bottom:971.467333pt;}
.yc2{bottom:971.532533pt;}
.y398{bottom:971.547733pt;}
.y466{bottom:971.551333pt;}
.yf6{bottom:971.718800pt;}
.y364{bottom:971.817733pt;}
.y3ca{bottom:971.999600pt;}
.y58{bottom:975.444267pt;}
.y3db{bottom:978.019067pt;}
.y16e{bottom:987.313867pt;}
.y40a{bottom:987.366933pt;}
.y8f{bottom:987.414533pt;}
.y1aa{bottom:987.453867pt;}
.y1dd{bottom:987.480800pt;}
.y2da{bottom:987.571333pt;}
.y30c{bottom:987.687467pt;}
.y275{bottom:987.717733pt;}
.y437{bottom:987.719467pt;}
.y2a7{bottom:987.733467pt;}
.y465{bottom:987.742133pt;}
.y211{bottom:987.763067pt;}
.yc1{bottom:987.766000pt;}
.y397{bottom:987.773733pt;}
.yf5{bottom:987.859067pt;}
.y159{bottom:987.879733pt;}
.y242{bottom:987.890000pt;}
.y363{bottom:987.908667pt;}
.y494{bottom:987.933067pt;}
.y3c9{bottom:987.999600pt;}
.y57{bottom:998.493067pt;}
.y4{bottom:1002.297867pt;}
.y409{bottom:1003.933067pt;}
.y8e{bottom:1003.999600pt;}
.y127{bottom:1005.903600pt;}
.y3{bottom:1012.392267pt;}
.y2{bottom:1018.365867pt;}
.y1{bottom:1024.254000pt;}
.y8d{bottom:1046.929067pt;}
.y55{bottom:1046.929200pt;}
.h2{height:17.821498pt;}
.h5{height:22.550400pt;}
.h3{height:23.552491pt;}
.hd{height:27.216000pt;}
.h19{height:33.898667pt;}
.h4{height:34.570667pt;}
.h18{height:35.088000pt;}
.h17{height:36.320000pt;}
.hc{height:38.879467pt;}
.hf{height:38.880000pt;}
.h10{height:41.162667pt;}
.h14{height:43.584000pt;}
.h1b{height:44.136000pt;}
.h13{height:44.160000pt;}
.hb{height:44.310400pt;}
.h8{height:48.426667pt;}
.h9{height:49.066667pt;}
.h6{height:49.386667pt;}
.he{height:59.264000pt;}
.h7{height:68.693333pt;}
.h15{height:70.250667pt;}
.h11{height:70.826667pt;}
.h1a{height:78.361600pt;}
.h16{height:96.917333pt;}
.h12{height:97.493333pt;}
.ha{height:98.133333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:70.627333pt;}
.xe{left:73.924933pt;}
.xf{left:74.828933pt;}
.xb{left:75.913600pt;}
.x1d{left:80.849867pt;}
.x19{left:85.819467pt;}
.x2a{left:87.262533pt;}
.x29{left:88.412933pt;}
.x2{left:91.052267pt;}
.x20{left:94.470800pt;}
.x28{left:96.069467pt;}
.x31{left:97.188133pt;}
.x30{left:99.200133pt;}
.x11{left:102.519733pt;}
.x3{left:103.541200pt;}
.x6{left:104.455333pt;}
.x4{left:105.970000pt;}
.x7{left:108.435067pt;}
.x5{left:109.906000pt;}
.x8{left:111.639867pt;}
.x9{left:114.554667pt;}
.x23{left:122.530667pt;}
.x1{left:143.565200pt;}
.x16{left:168.471733pt;}
.x1a{left:173.182000pt;}
.x2d{left:175.444133pt;}
.x22{left:198.676400pt;}
.x2c{left:209.386000pt;}
.x21{left:216.474000pt;}
.x24{left:224.981067pt;}
.x10{left:235.873333pt;}
.x25{left:238.820133pt;}
.x17{left:255.349733pt;}
.x12{left:277.429333pt;}
.xa{left:295.284800pt;}
.x2e{left:330.807867pt;}
.x1f{left:354.863733pt;}
.x1e{left:372.150267pt;}
.x2f{left:373.899867pt;}
.x1b{left:377.146133pt;}
.x26{left:379.941733pt;}
.x13{left:386.673333pt;}
.x27{left:423.033600pt;}
.x18{left:489.731600pt;}
.x1c{left:502.090267pt;}
.x14{left:505.590267pt;}
.xc{left:543.330933pt;}
.xd{left:546.574267pt;}
.x15{left:622.755600pt;}
}




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