
    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_4a3b211f16537d1a83962914.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.151000;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_38a606aef700e793d9f2542f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.048000;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_d1464b12e9c5e9fe2612d633.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d7a96849f8d74f431890eb19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.083000;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_4a3b211f16537d1a83962914.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.151000;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_a8944fcc8e75cc44c5846091.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.048000;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_d1464b12e9c5e9fe2612d633.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e957fcf714fd0b06bd429f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.848145;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;}
.m9{transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.225000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.md{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m4{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260308,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260309,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-29.765400px;}
.vb{vertical-align:-25.518000px;}
.v2{vertical-align:-19.980000px;}
.v5{vertical-align:-14.985000px;}
.vd{vertical-align:-11.906400px;}
.v6{vertical-align:-4.253400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:12.755400px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:19.980000px;}
.v4{vertical-align:21.142200px;}
.vc{vertical-align:26.361000px;}
.ve{vertical-align:28.080000px;}
.v8{vertical-align:38.267400px;}
.v9{vertical-align:59.525400px;}
.ls10{letter-spacing:-4.680000px;}
.lsb{letter-spacing:-3.600000px;}
.ls16{letter-spacing:-2.700000px;}
.ls17{letter-spacing:-2.400000px;}
.ls3{letter-spacing:-1.200000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.419760px;}
.lsf{letter-spacing:-0.349800px;}
.lsa{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.174900px;}
.ls18{letter-spacing:-0.120000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000120px;}
.ls7{letter-spacing:0.139320px;}
.ls8{letter-spacing:0.139920px;}
.ls6{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.981448px;}
.ls9{letter-spacing:1.164300px;}
.ls19{letter-spacing:6.060000px;}
.ls14{letter-spacing:92.235600px;}
.ls13{letter-spacing:94.786800px;}
.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;}
}
.ws145{word-spacing:-22.560000px;}
.wsb1{word-spacing:-18.150000px;}
.ws36{word-spacing:-16.740000px;}
.ws2{word-spacing:-16.500000px;}
.ws1{word-spacing:-15.900000px;}
.ws7f{word-spacing:-15.780000px;}
.ws0{word-spacing:-15.510000px;}
.wse0{word-spacing:-13.200000px;}
.ws39{word-spacing:-12.900000px;}
.wsb2{word-spacing:-12.375000px;}
.wsd0{word-spacing:-11.550000px;}
.wsdd{word-spacing:-9.900000px;}
.ws13b{word-spacing:-9.840000px;}
.ws37{word-spacing:-9.759420px;}
.ws3{word-spacing:-9.619500px;}
.wsdc{word-spacing:-9.444600px;}
.ws81{word-spacing:-9.269700px;}
.ws80{word-spacing:-9.199740px;}
.wsb3{word-spacing:-7.214625px;}
.wseb{word-spacing:-7.020000px;}
.wsc0{word-spacing:-5.460000px;}
.ws32{word-spacing:-5.184000px;}
.ws68{word-spacing:-5.040000px;}
.ws34{word-spacing:-4.800000px;}
.ws107{word-spacing:-4.680000px;}
.wsec{word-spacing:-4.620000px;}
.ws133{word-spacing:-4.560000px;}
.ws12d{word-spacing:-4.140000px;}
.ws33{word-spacing:-3.600000px;}
.wsaf{word-spacing:-3.240000px;}
.wsad{word-spacing:-3.180000px;}
.wsb0{word-spacing:-3.120000px;}
.ws58{word-spacing:-3.060000px;}
.wsa0{word-spacing:-3.000000px;}
.ws4e{word-spacing:-2.940000px;}
.wsb7{word-spacing:-2.880000px;}
.wsa{word-spacing:-2.820000px;}
.ws4f{word-spacing:-2.760000px;}
.ws1e{word-spacing:-2.700000px;}
.wsfc{word-spacing:-2.640000px;}
.ws95{word-spacing:-2.580000px;}
.ws124{word-spacing:-2.520000px;}
.ws24{word-spacing:-2.460000px;}
.ws1d{word-spacing:-2.400000px;}
.ws1f{word-spacing:-2.340000px;}
.wsac{word-spacing:-2.280000px;}
.ws9{word-spacing:-2.220000px;}
.ws115{word-spacing:-2.160000px;}
.ws54{word-spacing:-2.100000px;}
.wsfb{word-spacing:-2.040000px;}
.ws49{word-spacing:-1.980000px;}
.ws53{word-spacing:-1.920000px;}
.ws26{word-spacing:-1.860000px;}
.ws4b{word-spacing:-1.800000px;}
.ws102{word-spacing:-1.740000px;}
.ws9f{word-spacing:-1.680000px;}
.ws116{word-spacing:-1.620000px;}
.ws9a{word-spacing:-1.560000px;}
.ws52{word-spacing:-1.500000px;}
.wse{word-spacing:-1.440000px;}
.wsb6{word-spacing:-1.380000px;}
.ws7e{word-spacing:-1.320000px;}
.wsf4{word-spacing:-1.302000px;}
.ws7b{word-spacing:-1.140000px;}
.ws4d{word-spacing:-1.080000px;}
.ws3f{word-spacing:-1.020000px;}
.ws35{word-spacing:-0.981448px;}
.wsc2{word-spacing:-0.960000px;}
.wsb{word-spacing:-0.900000px;}
.ws10d{word-spacing:-0.840000px;}
.ws77{word-spacing:-0.780000px;}
.ws3c{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.660000px;}
.ws122{word-spacing:-0.600000px;}
.ws8d{word-spacing:-0.540000px;}
.wsf0{word-spacing:-0.480000px;}
.ws79{word-spacing:-0.420000px;}
.ws5b{word-spacing:-0.360000px;}
.ws27{word-spacing:-0.300000px;}
.wsf2{word-spacing:-0.240000px;}
.wsa1{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.139920px;}
.ws1c{word-spacing:-0.120000px;}
.wsd2{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws21{word-spacing:0.060000px;}
.ws22{word-spacing:0.120000px;}
.ws7d{word-spacing:0.180000px;}
.wsa8{word-spacing:0.240000px;}
.ws8e{word-spacing:0.300000px;}
.ws11e{word-spacing:0.360000px;}
.wsb5{word-spacing:0.420000px;}
.wsaa{word-spacing:0.426479px;}
.ws29{word-spacing:0.480000px;}
.ws3d{word-spacing:0.540000px;}
.wsef{word-spacing:0.600000px;}
.wsa2{word-spacing:0.660000px;}
.ws7{word-spacing:0.720000px;}
.ws46{word-spacing:0.780000px;}
.ws11c{word-spacing:0.840000px;}
.ws70{word-spacing:0.900000px;}
.ws11b{word-spacing:0.960000px;}
.ws4c{word-spacing:1.020000px;}
.ws90{word-spacing:1.080000px;}
.ws8f{word-spacing:1.140000px;}
.ws5{word-spacing:1.200000px;}
.ws96{word-spacing:1.260000px;}
.ws8c{word-spacing:1.320000px;}
.wsee{word-spacing:1.380000px;}
.wsd9{word-spacing:1.440000px;}
.wse6{word-spacing:1.560000px;}
.ws98{word-spacing:1.620000px;}
.ws89{word-spacing:1.680000px;}
.ws5c{word-spacing:1.740000px;}
.ws19{word-spacing:1.800000px;}
.ws110{word-spacing:1.860000px;}
.ws123{word-spacing:1.920000px;}
.ws57{word-spacing:1.980000px;}
.ws31{word-spacing:2.040000px;}
.ws51{word-spacing:2.100000px;}
.ws3e{word-spacing:2.160000px;}
.ws10{word-spacing:2.220000px;}
.ws41{word-spacing:2.280000px;}
.wsfe{word-spacing:2.340000px;}
.wsb8{word-spacing:2.400000px;}
.ws5a{word-spacing:2.460000px;}
.wsf3{word-spacing:2.520000px;}
.ws3b{word-spacing:2.580000px;}
.wsea{word-spacing:2.640000px;}
.ws10f{word-spacing:2.700000px;}
.ws114{word-spacing:2.760000px;}
.wsd3{word-spacing:2.820000px;}
.ws11{word-spacing:2.880000px;}
.ws8b{word-spacing:2.940000px;}
.wsed{word-spacing:3.000000px;}
.wsb9{word-spacing:3.060000px;}
.wsd6{word-spacing:3.120000px;}
.ws25{word-spacing:3.180000px;}
.ws40{word-spacing:3.240000px;}
.wsda{word-spacing:3.300000px;}
.ws13{word-spacing:3.360000px;}
.ws111{word-spacing:3.420000px;}
.ws97{word-spacing:3.480000px;}
.wsbe{word-spacing:3.540000px;}
.ws67{word-spacing:3.600000px;}
.wse5{word-spacing:3.660000px;}
.wsd8{word-spacing:3.720000px;}
.wsc1{word-spacing:3.780000px;}
.ws6{word-spacing:3.840000px;}
.wsbb{word-spacing:3.900000px;}
.ws11f{word-spacing:3.960000px;}
.ws45{word-spacing:4.020000px;}
.ws8{word-spacing:4.080000px;}
.ws9e{word-spacing:4.200000px;}
.ws20{word-spacing:4.320000px;}
.ws7c{word-spacing:4.380000px;}
.wsc7{word-spacing:4.440000px;}
.ws63{word-spacing:4.500000px;}
.ws5e{word-spacing:4.560000px;}
.wsae{word-spacing:4.620000px;}
.ws108{word-spacing:4.680000px;}
.ws88{word-spacing:4.740000px;}
.ws6f{word-spacing:4.800000px;}
.ws85{word-spacing:4.920000px;}
.wse8{word-spacing:4.980000px;}
.ws78{word-spacing:5.100000px;}
.ws83{word-spacing:5.160000px;}
.ws104{word-spacing:5.220000px;}
.ws4a{word-spacing:5.280000px;}
.ws113{word-spacing:5.340000px;}
.ws101{word-spacing:5.400000px;}
.ws6a{word-spacing:5.580000px;}
.ws99{word-spacing:5.640000px;}
.ws91{word-spacing:5.700000px;}
.ws59{word-spacing:5.760000px;}
.ws18{word-spacing:5.880000px;}
.ws1a{word-spacing:5.940000px;}
.ws11a{word-spacing:6.060000px;}
.ws112{word-spacing:6.120000px;}
.ws10b{word-spacing:6.180000px;}
.wsdb{word-spacing:6.300000px;}
.wsbc{word-spacing:6.360000px;}
.ws82{word-spacing:6.420000px;}
.wsfd{word-spacing:6.480000px;}
.ws66{word-spacing:6.600000px;}
.wsd{word-spacing:6.660000px;}
.wsc6{word-spacing:6.780000px;}
.wsbf{word-spacing:6.840000px;}
.wsba{word-spacing:6.900000px;}
.wse9{word-spacing:6.960000px;}
.ws1b{word-spacing:7.020000px;}
.ws74{word-spacing:7.080000px;}
.ws11d{word-spacing:7.140000px;}
.ws10e{word-spacing:7.200000px;}
.wsd4{word-spacing:7.260000px;}
.ws47{word-spacing:7.320000px;}
.ws131{word-spacing:7.380000px;}
.ws50{word-spacing:7.440000px;}
.ws10a{word-spacing:7.500000px;}
.ws64{word-spacing:7.560000px;}
.wsa7{word-spacing:7.680000px;}
.ws14{word-spacing:7.740000px;}
.ws119{word-spacing:7.800000px;}
.wse2{word-spacing:7.860000px;}
.wsa3{word-spacing:7.920000px;}
.ws55{word-spacing:7.980000px;}
.wsa5{word-spacing:8.040000px;}
.ws8a{word-spacing:8.220000px;}
.wsd7{word-spacing:8.280000px;}
.ws3a{word-spacing:8.340000px;}
.ws69{word-spacing:8.400000px;}
.wsa4{word-spacing:8.460000px;}
.wse4{word-spacing:8.520000px;}
.wsf{word-spacing:8.580000px;}
.ws9b{word-spacing:8.640000px;}
.ws9d{word-spacing:8.700000px;}
.wscd{word-spacing:8.745600px;}
.ws84{word-spacing:8.760000px;}
.ws7a{word-spacing:8.820000px;}
.wsc3{word-spacing:8.880000px;}
.ws106{word-spacing:8.940000px;}
.ws42{word-spacing:9.000000px;}
.ws5d{word-spacing:9.060000px;}
.ws48{word-spacing:9.120000px;}
.ws6c{word-spacing:9.180000px;}
.wsff{word-spacing:9.300000px;}
.wsd1{word-spacing:9.420000px;}
.ws87{word-spacing:9.480000px;}
.ws17{word-spacing:9.600000px;}
.wsf1{word-spacing:9.660000px;}
.ws61{word-spacing:9.780000px;}
.ws103{word-spacing:9.840000px;}
.wsc5{word-spacing:9.900000px;}
.ws120{word-spacing:9.960000px;}
.ws14f{word-spacing:10.140000px;}
.ws121{word-spacing:10.320000px;}
.wsd5{word-spacing:10.380000px;}
.wsc{word-spacing:10.440000px;}
.ws105{word-spacing:10.740000px;}
.ws10c{word-spacing:10.860000px;}
.ws132{word-spacing:11.100000px;}
.ws12f{word-spacing:11.160000px;}
.ws92{word-spacing:11.220000px;}
.ws16{word-spacing:11.580000px;}
.wsa6{word-spacing:11.640000px;}
.ws86{word-spacing:11.940000px;}
.ws15{word-spacing:12.000000px;}
.wsab{word-spacing:12.060000px;}
.ws44{word-spacing:12.300000px;}
.ws109{word-spacing:12.360000px;}
.ws73{word-spacing:12.420000px;}
.ws151{word-spacing:12.540000px;}
.ws94{word-spacing:12.600000px;}
.ws134{word-spacing:12.660000px;}
.ws13d{word-spacing:12.720000px;}
.ws65{word-spacing:12.840000px;}
.wscc{word-spacing:12.997200px;}
.ws100{word-spacing:13.260000px;}
.ws14c{word-spacing:13.320000px;}
.ws71{word-spacing:13.620000px;}
.ws72{word-spacing:13.920000px;}
.ws141{word-spacing:13.980000px;}
.wsc4{word-spacing:14.100000px;}
.ws76{word-spacing:14.220000px;}
.ws117{word-spacing:14.340000px;}
.ws93{word-spacing:15.000000px;}
.ws12{word-spacing:15.120000px;}
.ws43{word-spacing:15.240000px;}
.ws6d{word-spacing:15.360000px;}
.ws75{word-spacing:15.540000px;}
.ws12a{word-spacing:15.780000px;}
.ws13c{word-spacing:15.900000px;}
.ws23{word-spacing:16.140000px;}
.ws13a{word-spacing:16.260000px;}
.ws14d{word-spacing:16.440000px;}
.wsbd{word-spacing:16.500000px;}
.ws130{word-spacing:16.800000px;}
.ws9c{word-spacing:17.340000px;}
.ws118{word-spacing:17.400000px;}
.wse7{word-spacing:17.760000px;}
.ws129{word-spacing:17.820000px;}
.wsa9{word-spacing:18.240000px;}
.ws126{word-spacing:18.480000px;}
.ws144{word-spacing:18.780000px;}
.ws6e{word-spacing:18.900000px;}
.ws143{word-spacing:19.080000px;}
.ws152{word-spacing:19.740000px;}
.ws6b{word-spacing:20.040000px;}
.ws13e{word-spacing:20.160000px;}
.ws12c{word-spacing:20.340000px;}
.ws153{word-spacing:20.460000px;}
.ws12e{word-spacing:20.520000px;}
.ws128{word-spacing:20.580000px;}
.ws148{word-spacing:20.880000px;}
.ws146{word-spacing:21.240000px;}
.ws136{word-spacing:22.020000px;}
.ws127{word-spacing:22.380000px;}
.ws2c{word-spacing:22.440000px;}
.ws2f{word-spacing:22.680000px;}
.ws2a{word-spacing:23.100000px;}
.wsc8{word-spacing:23.220000px;}
.ws139{word-spacing:23.460000px;}
.wse3{word-spacing:24.300000px;}
.ws13f{word-spacing:25.980000px;}
.ws140{word-spacing:26.940000px;}
.ws138{word-spacing:27.180000px;}
.ws135{word-spacing:27.300000px;}
.ws150{word-spacing:28.740000px;}
.ws60{word-spacing:29.460000px;}
.ws14e{word-spacing:30.420000px;}
.ws149{word-spacing:34.020000px;}
.ws62{word-spacing:35.460000px;}
.ws12b{word-spacing:38.760000px;}
.ws30{word-spacing:41.040000px;}
.ws147{word-spacing:41.940000px;}
.ws125{word-spacing:42.480000px;}
.ws2d{word-spacing:42.600000px;}
.ws2e{word-spacing:42.720000px;}
.ws28{word-spacing:45.060000px;}
.ws14b{word-spacing:50.040000px;}
.ws2b{word-spacing:50.160000px;}
.ws137{word-spacing:51.840000px;}
.ws142{word-spacing:53.220000px;}
.ws14a{word-spacing:66.480000px;}
.wsdf{word-spacing:71.674200px;}
.wsde{word-spacing:71.769600px;}
.wsf8{word-spacing:82.178400px;}
.wscf{word-spacing:82.273200px;}
.wsce{word-spacing:98.035800px;}
.wsca{word-spacing:170.468250px;}
.wsc9{word-spacing:170.469000px;}
.wsb4{word-spacing:181.099500px;}
.wscb{word-spacing:190.485000px;}
.wse1{word-spacing:235.215000px;}
.wsf6{word-spacing:511.710000px;}
.wsf5{word-spacing:519.502200px;}
.wsf7{word-spacing:644.360400px;}
.wsfa{word-spacing:757.845000px;}
.wsf9{word-spacing:815.818200px;}
.ws38{word-spacing:1454.867053px;}
._22{margin-left:-1452.736800px;}
._23{margin-left:-534.039000px;}
._33{margin-left:-50.987242px;}
._34{margin-left:-47.041934px;}
._31{margin-left:-44.400000px;}
._29{margin-left:-38.880000px;}
._2f{margin-left:-37.152758px;}
._2c{margin-left:-33.768000px;}
._2e{margin-left:-32.568000px;}
._27{margin-left:-30.298066px;}
._2d{margin-left:-28.571400px;}
._32{margin-left:-27.240000px;}
._26{margin-left:-25.980000px;}
._2a{margin-left:-23.922000px;}
._28{margin-left:-22.380000px;}
._2b{margin-left:-19.667242px;}
._25{margin-left:-17.532000px;}
._30{margin-left:-16.260000px;}
._f{margin-left:-14.934000px;}
._18{margin-left:-13.441934px;}
._1b{margin-left:-11.808600px;}
._10{margin-left:-8.400000px;}
._6{margin-left:-7.218000px;}
._3{margin-left:-6.000000px;}
._1{margin-left:-4.512758px;}
._9{margin-left:-3.444000px;}
._5{margin-left:-2.328000px;}
._0{margin-left:-1.127621px;}
._2{width:1.128000px;}
._4{width:2.614800px;}
._d{width:3.699979px;}
._e{width:5.705400px;}
._c{width:13.554821px;}
._b{width:18.882600px;}
._8{width:23.079600px;}
._a{width:29.431200px;}
._7{width:45.325200px;}
._11{width:95.178600px;}
._16{width:180.369000px;}
._19{width:190.999500px;}
._1c{width:195.069750px;}
._20{width:199.622667px;}
._15{width:201.628500px;}
._1d{width:205.699500px;}
._1e{width:211.015500px;}
._14{width:226.960500px;}
._1f{width:228.732000px;}
._21{width:269.116800px;}
._17{width:325.456500px;}
._1a{width:389.235750px;}
._13{width:550.229655px;}
._12{width:679.646400px;}
._24{width:867.544200px;}
.fc4{color:rgb(211,210,210);}
.fc3{color:rgb(145,143,143);}
.fc5{color:rgb(101,98,99);}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:26.235000px;}
.fse{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fs5{font-size:34.980000px;}
.fsd{font-size:36.000000px;}
.fs11{font-size:39.000000px;}
.fsf{font-size:42.000000px;}
.fsb{font-size:45.000000px;}
.fs10{font-size:46.800000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:49.072408px;}
.fsa{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.925628px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:42.100950px;}
.y271{bottom:42.102300px;}
.y7c{bottom:42.366750px;}
.y24b{bottom:42.368100px;}
.y2{bottom:47.652300px;}
.y272{bottom:47.653650px;}
.yfb{bottom:91.344150px;}
.y13d{bottom:96.791700px;}
.y2d8{bottom:97.035300px;}
.yda{bottom:97.143150px;}
.y2ad{bottom:97.290450px;}
.y269{bottom:97.479000px;}
.y19f{bottom:97.485750px;}
.y16a{bottom:97.801500px;}
.y39{bottom:97.803000px;}
.y249{bottom:97.816350px;}
.y1c1{bottom:97.881150px;}
.y215{bottom:97.940550px;}
.y7b{bottom:97.984950px;}
.y209{bottom:98.109300px;}
.y179{bottom:98.386200px;}
.yaa{bottom:98.412900px;}
.y284{bottom:98.418300px;}
.yfc{bottom:101.902800px;}
.yfa{bottom:109.344150px;}
.y2d7{bottom:115.515450px;}
.yd9{bottom:115.683150px;}
.y2ac{bottom:115.770450px;}
.y268{bottom:116.019000px;}
.y19e{bottom:116.025750px;}
.y38{bottom:116.283000px;}
.y169{bottom:116.341500px;}
.y248{bottom:116.356350px;}
.y1c0{bottom:116.421150px;}
.y214{bottom:116.480550px;}
.y7a{bottom:116.524950px;}
.y208{bottom:116.649150px;}
.y48{bottom:116.832000px;}
.y283{bottom:116.898300px;}
.ya9{bottom:116.953050px;}
.y17b{bottom:123.927900px;}
.y136{bottom:128.499750px;}
.yf9{bottom:129.031350px;}
.y2d6{bottom:133.995450px;}
.y47{bottom:134.082000px;}
.yd8{bottom:134.223150px;}
.y2ab{bottom:134.250450px;}
.y267{bottom:134.559000px;}
.y19d{bottom:134.565750px;}
.y37{bottom:134.763000px;}
.y168{bottom:134.881650px;}
.y247{bottom:134.896200px;}
.y1bf{bottom:134.961150px;}
.y213{bottom:135.020550px;}
.y79{bottom:135.064950px;}
.y207{bottom:135.189300px;}
.ya8{bottom:135.493050px;}
.y17c{bottom:142.192950px;}
.y2f2{bottom:142.985250px;}
.y17a{bottom:144.452700px;}
.y282{bottom:147.283800px;}
.yf8{bottom:147.571350px;}
.y13c{bottom:147.614250px;}
.y46{bottom:151.332000px;}
.yd7{bottom:152.763150px;}
.y266{bottom:153.099000px;}
.y19c{bottom:153.105750px;}
.y36{bottom:153.243000px;}
.y167{bottom:153.421500px;}
.y246{bottom:153.436350px;}
.y1be{bottom:153.501150px;}
.y212{bottom:153.560550px;}
.y78{bottom:153.604950px;}
.y206{bottom:153.729300px;}
.ya7{bottom:154.033050px;}
.y18f{bottom:154.097700px;}
.y13b{bottom:156.544050px;}
.y2d5{bottom:164.635950px;}
.y281{bottom:165.763800px;}
.y2aa{bottom:166.081650px;}
.yf7{bottom:166.111500px;}
.y2f1{bottom:169.489200px;}
.y45{bottom:170.707950px;}
.yd6{bottom:171.303150px;}
.y265{bottom:171.639000px;}
.y19b{bottom:171.645750px;}
.y35{bottom:171.723000px;}
.y166{bottom:171.961650px;}
.y245{bottom:171.976350px;}
.y1bd{bottom:172.041150px;}
.y211{bottom:172.100550px;}
.y77{bottom:172.144950px;}
.y205{bottom:172.269300px;}
.ya6{bottom:172.572900px;}
.y186{bottom:173.231550px;}
.y135{bottom:182.834700px;}
.y2d4{bottom:183.115950px;}
.y2a9{bottom:184.561650px;}
.yf6{bottom:184.651500px;}
.y188{bottom:187.263300px;}
.yd5{bottom:189.843150px;}
.y264{bottom:190.179000px;}
.y19a{bottom:190.185750px;}
.y34{bottom:190.203000px;}
.y165{bottom:190.501500px;}
.y1bc{bottom:190.581150px;}
.y210{bottom:190.640550px;}
.y76{bottom:190.684950px;}
.y204{bottom:190.809300px;}
.ya5{bottom:191.113050px;}
.y185{bottom:192.365250px;}
.y280{bottom:196.149300px;}
.y2d3{bottom:201.595950px;}
.y2a8{bottom:203.041650px;}
.yf5{bottom:203.191350px;}
.yd4{bottom:208.383150px;}
.y33{bottom:208.683000px;}
.y199{bottom:208.725750px;}
.y164{bottom:209.041650px;}
.y1bb{bottom:209.121150px;}
.y20f{bottom:209.180550px;}
.y75{bottom:209.224950px;}
.y203{bottom:209.349300px;}
.y13a{bottom:211.819950px;}
.y184{bottom:212.562600px;}
.y187{bottom:213.838500px;}
.y27f{bottom:214.629300px;}
.y2d2{bottom:220.075950px;}
.y2a7{bottom:221.521650px;}
.yf4{bottom:221.731350px;}
.y198{bottom:227.265750px;}
.y263{bottom:227.427600px;}
.y163{bottom:227.581500px;}
.y1ba{bottom:227.661150px;}
.y20e{bottom:227.720550px;}
.y74{bottom:227.764950px;}
.y202{bottom:227.889300px;}
.ya4{bottom:228.361650px;}
.y183{bottom:231.696300px;}
.y27e{bottom:233.109300px;}
.yd3{bottom:235.427100px;}
.y1d{bottom:236.602950px;}
.y2a6{bottom:240.001650px;}
.yf3{bottom:240.271500px;}
.y197{bottom:245.805750px;}
.y32{bottom:245.871750px;}
.y262{bottom:245.967750px;}
.y162{bottom:246.121650px;}
.y1b9{bottom:246.201150px;}
.y20d{bottom:246.260550px;}
.y73{bottom:246.304950px;}
.y201{bottom:246.429300px;}
.ya3{bottom:246.901650px;}
.y2d1{bottom:250.716600px;}
.y182{bottom:250.830150px;}
.y27d{bottom:251.589300px;}
.y1c{bottom:255.082950px;}
.yf2{bottom:258.811500px;}
.y189{bottom:260.184600px;}
.y196{bottom:264.345750px;}
.y31{bottom:264.351750px;}
.y261{bottom:264.507600px;}
.y161{bottom:264.661500px;}
.y1b8{bottom:264.741150px;}
.y20c{bottom:264.800550px;}
.y72{bottom:264.844950px;}
.y200{bottom:264.969300px;}
.ya2{bottom:265.441650px;}
.y139{bottom:268.157850px;}
.y2d0{bottom:269.196600px;}
.y181{bottom:269.964000px;}
.y27c{bottom:270.069300px;}
.y2a5{bottom:271.832850px;}
.y1b{bottom:273.562950px;}
.y18b{bottom:275.278350px;}
.yf1{bottom:277.351350px;}
.y30{bottom:282.831750px;}
.yd2{bottom:282.880500px;}
.y195{bottom:282.885750px;}
.y260{bottom:283.047600px;}
.y160{bottom:283.201650px;}
.y1b7{bottom:283.281150px;}
.y20b{bottom:283.340550px;}
.y71{bottom:283.384950px;}
.y1ff{bottom:283.509300px;}
.ya1{bottom:283.981650px;}
.y18a{bottom:286.972200px;}
.y2cf{bottom:287.676600px;}
.y180{bottom:289.097700px;}
.y2a4{bottom:290.312850px;}
.y1a{bottom:292.042950px;}
.yf0{bottom:295.891350px;}
.y18c{bottom:296.964000px;}
.y27b{bottom:300.454800px;}
.yd1{bottom:301.420500px;}
.y194{bottom:301.425750px;}
.y25f{bottom:301.587600px;}
.y1b6{bottom:301.821150px;}
.y20a{bottom:301.880550px;}
.y70{bottom:301.924950px;}
.y1fe{bottom:302.049150px;}
.ya0{bottom:302.521650px;}
.y2ce{bottom:306.156600px;}
.y17f{bottom:308.231550px;}
.y2a3{bottom:308.792850px;}
.y19{bottom:310.522950px;}
.y27a{bottom:318.934800px;}
.yd0{bottom:319.960350px;}
.y193{bottom:319.965750px;}
.y2f{bottom:320.020350px;}
.y25e{bottom:320.127600px;}
.y1b5{bottom:320.361150px;}
.y15f{bottom:320.450250px;}
.y6f{bottom:320.464950px;}
.y1fd{bottom:320.589300px;}
.y138{bottom:324.497100px;}
.y2a2{bottom:327.272850px;}
.y17e{bottom:327.365250px;}
.y18{bottom:329.002950px;}
.y191{bottom:332.804400px;}
.yef{bottom:333.565350px;}
.y2cd{bottom:336.797250px;}
.y18d{bottom:337.358400px;}
.y279{bottom:337.414800px;}
.y2e{bottom:338.500350px;}
.y192{bottom:338.505750px;}
.y25d{bottom:338.667600px;}
.y1b4{bottom:338.901150px;}
.y15e{bottom:338.990250px;}
.y6e{bottom:339.004950px;}
.y1fc{bottom:339.129300px;}
.y9f{bottom:339.770250px;}
.y2a1{bottom:345.752850px;}
.y190{bottom:346.304400px;}
.y17d{bottom:346.499100px;}
.y17{bottom:347.482950px;}
.y18e{bottom:351.176400px;}
.yee{bottom:352.105200px;}
.y2cc{bottom:355.277250px;}
.y278{bottom:355.894800px;}
.y2d{bottom:356.980350px;}
.ycf{bottom:357.209100px;}
.y1b3{bottom:357.441150px;}
.y15d{bottom:357.530250px;}
.y6d{bottom:357.544950px;}
.y1fb{bottom:357.669300px;}
.y9e{bottom:358.310250px;}
.y16{bottom:365.962950px;}
.yed{bottom:370.645350px;}
.y2cb{bottom:373.757250px;}
.y2c{bottom:375.460350px;}
.yce{bottom:375.749100px;}
.y25c{bottom:375.916350px;}
.y1b2{bottom:375.981150px;}
.y15c{bottom:376.070250px;}
.y6c{bottom:376.084950px;}
.y1fa{bottom:376.209300px;}
.y9d{bottom:376.850400px;}
.y2a0{bottom:377.584050px;}
.y137{bottom:379.771500px;}
.y15{bottom:384.442950px;}
.y1dc{bottom:385.500150px;}
.yec{bottom:389.185200px;}
.y1db{bottom:389.496150px;}
.y2ca{bottom:392.237250px;}
.y277{bottom:392.658300px;}
.ycd{bottom:394.289100px;}
.y1b1{bottom:394.521150px;}
.y15b{bottom:394.610250px;}
.y6b{bottom:394.624950px;}
.y1f9{bottom:394.749300px;}
.y9c{bottom:395.390250px;}
.y29f{bottom:396.064050px;}
.y14{bottom:402.922950px;}
.yeb{bottom:407.725350px;}
.y2b{bottom:410.097900px;}
.y134{bottom:410.346000px;}
.y2c9{bottom:410.717250px;}
.ycc{bottom:412.829100px;}
.y1b0{bottom:413.061150px;}
.y15a{bottom:413.150250px;}
.y6a{bottom:413.164950px;}
.y1f8{bottom:413.289300px;}
.y9b{bottom:413.930400px;}
.y29e{bottom:414.544050px;}
.y1d3{bottom:417.618750px;}
.y13{bottom:421.402950px;}
.yea{bottom:426.265200px;}
.ycb{bottom:431.369100px;}
.y1af{bottom:431.601150px;}
.y14b{bottom:431.688750px;}
.y159{bottom:431.690250px;}
.y69{bottom:431.704950px;}
.y1f7{bottom:431.829300px;}
.y25b{bottom:431.873550px;}
.y9a{bottom:432.470250px;}
.y1da{bottom:433.563600px;}
.y12{bottom:439.882950px;}
.y2c8{bottom:441.357900px;}
.ye9{bottom:444.805200px;}
.y29d{bottom:446.375250px;}
.yca{bottom:449.909100px;}
.y1ae{bottom:450.141150px;}
.y14a{bottom:450.228750px;}
.y158{bottom:450.230250px;}
.y68{bottom:450.244950px;}
.y1f6{bottom:450.369300px;}
.y25a{bottom:450.413700px;}
.y99{bottom:451.010400px;}
.y11{bottom:458.362950px;}
.y2c7{bottom:459.837900px;}
.y1d4{bottom:460.623600px;}
.y1d9{bottom:461.200800px;}
.y133{bottom:461.644500px;}
.y118{bottom:462.013800px;}
.ye8{bottom:463.345350px;}
.y29c{bottom:464.855250px;}
.yc9{bottom:468.449100px;}
.y1ad{bottom:468.681150px;}
.y149{bottom:468.768750px;}
.y157{bottom:468.770250px;}
.y67{bottom:468.784950px;}
.y1f5{bottom:468.909150px;}
.y259{bottom:468.953550px;}
.y98{bottom:469.550250px;}
.y2a{bottom:469.821900px;}
.y10{bottom:476.842950px;}
.y2c6{bottom:478.317900px;}
.y132{bottom:480.184500px;}
.y117{bottom:480.553800px;}
.ye7{bottom:481.885200px;}
.y29b{bottom:483.335100px;}
.y1c5{bottom:484.149150px;}
.yc8{bottom:486.989100px;}
.y1ac{bottom:487.221150px;}
.y156{bottom:487.310250px;}
.y66{bottom:487.324950px;}
.y1f4{bottom:487.449300px;}
.y258{bottom:487.493700px;}
.y1d8{bottom:487.776000px;}
.y29{bottom:487.821900px;}
.y116{bottom:499.093800px;}
.yc7{bottom:505.529100px;}
.y1ab{bottom:505.761150px;}
.y28{bottom:505.821900px;}
.y155{bottom:505.850250px;}
.y65{bottom:505.864950px;}
.y97{bottom:505.948500px;}
.y1f3{bottom:505.989300px;}
.y148{bottom:506.017350px;}
.y257{bottom:506.033550px;}
.y2c5{bottom:508.958550px;}
.yf{bottom:514.031550px;}
.y29a{bottom:515.166300px;}
.y1d7{bottom:515.413200px;}
.y115{bottom:517.633800px;}
.y131{bottom:519.133950px;}
.ye6{bottom:519.559050px;}
.yc6{bottom:524.069100px;}
.y1aa{bottom:524.301150px;}
.y154{bottom:524.390250px;}
.y64{bottom:524.404950px;}
.y1f2{bottom:524.529300px;}
.y147{bottom:524.557500px;}
.y256{bottom:524.573700px;}
.y2c4{bottom:527.438550px;}
.y1d5{bottom:528.441450px;}
.ye{bottom:532.511700px;}
.y299{bottom:533.646450px;}
.y114{bottom:536.173800px;}
.y130{bottom:537.673950px;}
.ye5{bottom:538.099200px;}
.y1d6{bottom:541.988400px;}
.yc5{bottom:542.609100px;}
.y153{bottom:542.930250px;}
.y63{bottom:542.944950px;}
.y146{bottom:543.097350px;}
.y244{bottom:543.113550px;}
.y2c3{bottom:545.918550px;}
.yd{bottom:550.991700px;}
.y298{bottom:552.126450px;}
.y12f{bottom:556.213950px;}
.ye4{bottom:556.639050px;}
.y1a9{bottom:560.699400px;}
.yc4{bottom:561.149100px;}
.y152{bottom:561.470250px;}
.y62{bottom:561.484950px;}
.y145{bottom:561.637500px;}
.y243{bottom:561.653700px;}
.y1c3{bottom:564.737400px;}
.yc{bottom:569.471700px;}
.y297{bottom:570.606450px;}
.y236{bottom:572.493750px;}
.y113{bottom:572.572050px;}
.y12e{bottom:574.753950px;}
.ye3{bottom:575.179200px;}
.y2c2{bottom:576.559050px;}
.yc3{bottom:579.689100px;}
.y61{bottom:580.024950px;}
.y144{bottom:580.177350px;}
.y242{bottom:580.193550px;}
.y96{bottom:581.464950px;}
.y276{bottom:586.363650px;}
.y27{bottom:587.601450px;}
.yb{bottom:587.951700px;}
.y12d{bottom:593.293950px;}
.ye2{bottom:593.719050px;}
.y2c1{bottom:595.039050px;}
.y1c8{bottom:595.776000px;}
.yc2{bottom:598.229100px;}
.y60{bottom:598.564950px;}
.y143{bottom:598.717500px;}
.y151{bottom:598.718850px;}
.y241{bottom:598.733700px;}
.y95{bottom:599.944950px;}
.y233{bottom:601.949850px;}
.y235{bottom:601.951350px;}
.y296{bottom:602.437500px;}
.y26{bottom:606.081450px;}
.ya{bottom:606.431700px;}
.y275{bottom:607.363650px;}
.y12c{bottom:611.833950px;}
.y2c0{bottom:613.519200px;}
.y1cf{bottom:613.846350px;}
.y232{bottom:615.989850px;}
.y234{bottom:615.991350px;}
.y5f{bottom:617.104950px;}
.y142{bottom:617.257350px;}
.y150{bottom:617.258850px;}
.y240{bottom:617.273550px;}
.y1a8{bottom:617.507100px;}
.y94{bottom:618.424950px;}
.y295{bottom:620.917500px;}
.y25{bottom:624.561450px;}
.y112{bottom:627.253800px;}
.y274{bottom:628.363650px;}
.y12b{bottom:630.373950px;}
.y1ce{bottom:630.854700px;}
.ye1{bottom:631.392900px;}
.y2bf{bottom:631.999200px;}
.yc1{bottom:635.477850px;}
.y5e{bottom:635.644950px;}
.y141{bottom:635.797350px;}
.y14f{bottom:635.798850px;}
.y23f{bottom:635.813550px;}
.y1a7{bottom:636.047100px;}
.y294{bottom:639.397500px;}
.y230{bottom:640.860600px;}
.y231{bottom:640.862100px;}
.y9{bottom:643.620300px;}
.y111{bottom:645.793800px;}
.y1cd{bottom:647.861550px;}
.y12a{bottom:648.913950px;}
.y273{bottom:649.363650px;}
.ye0{bottom:649.933050px;}
.y1d1{bottom:651.324300px;}
.yc0{bottom:654.017700px;}
.y1d0{bottom:654.088500px;}
.y5d{bottom:654.184950px;}
.y140{bottom:654.337350px;}
.y14e{bottom:654.338850px;}
.y23e{bottom:654.353550px;}
.y1a6{bottom:654.587100px;}
.y93{bottom:655.613550px;}
.y293{bottom:657.877650px;}
.y24{bottom:661.750050px;}
.y8{bottom:662.100300px;}
.y2be{bottom:662.639850px;}
.y1cc{bottom:663.807750px;}
.y110{bottom:664.333800px;}
.y22f{bottom:665.730600px;}
.y129{bottom:667.453950px;}
.ydf{bottom:668.473050px;}
.ybf{bottom:672.557850px;}
.y13f{bottom:672.877500px;}
.y14d{bottom:672.878850px;}
.y23d{bottom:672.893550px;}
.y1a5{bottom:673.127100px;}
.y92{bottom:674.093700px;}
.y292{bottom:676.357500px;}
.y22e{bottom:679.770750px;}
.y23{bottom:680.230200px;}
.y1cb{bottom:680.814600px;}
.y2bd{bottom:681.119700px;}
.y2e9{bottom:682.140300px;}
.y10f{bottom:682.873800px;}
.y128{bottom:685.993950px;}
.yde{bottom:687.013050px;}
.ybe{bottom:691.097700px;}
.y13e{bottom:691.417350px;}
.y14c{bottom:691.418850px;}
.y5c{bottom:691.433550px;}
.y1a4{bottom:691.667100px;}
.y91{bottom:692.573700px;}
.y1ca{bottom:697.822950px;}
.y22{bottom:698.710200px;}
.y7{bottom:699.288900px;}
.y2e8{bottom:700.620150px;}
.y10e{bottom:701.413800px;}
.y1d2{bottom:704.048400px;}
.y127{bottom:704.533950px;}
.y22c{bottom:704.639850px;}
.y22d{bottom:704.641350px;}
.ydd{bottom:705.553050px;}
.y291{bottom:708.188700px;}
.y270{bottom:709.467600px;}
.ybd{bottom:709.637850px;}
.y5b{bottom:709.973550px;}
.y255{bottom:710.142300px;}
.y1a3{bottom:710.207100px;}
.y90{bottom:711.053700px;}
.y2bc{bottom:711.760350px;}
.y1c7{bottom:713.526150px;}
.y1c9{bottom:713.767800px;}
.y21{bottom:717.190200px;}
.y6{bottom:717.768900px;}
.y2e7{bottom:719.100150px;}
.y10d{bottom:719.953800px;}
.y1c4{bottom:720.205650px;}
.y126{bottom:723.073950px;}
.y290{bottom:726.668700px;}
.y1c6{bottom:727.026150px;}
.ybc{bottom:728.177700px;}
.y5a{bottom:728.513700px;}
.y254{bottom:728.682300px;}
.y1a2{bottom:728.747100px;}
.y22b{bottom:729.510000px;}
.y8f{bottom:729.533550px;}
.y2bb{bottom:730.240350px;}
.y178{bottom:733.555050px;}
.y20{bottom:735.670200px;}
.y5{bottom:736.248900px;}
.y177{bottom:737.551050px;}
.y2e6{bottom:737.580300px;}
.y10c{bottom:738.493800px;}
.ydc{bottom:742.801650px;}
.y22a{bottom:743.550000px;}
.y28f{bottom:745.148700px;}
.ybb{bottom:746.717700px;}
.y59{bottom:747.053700px;}
.y253{bottom:747.222300px;}
.y1a1{bottom:747.287100px;}
.y2ba{bottom:748.720350px;}
.y1c2{bottom:752.036700px;}
.y4{bottom:754.728900px;}
.y10b{bottom:757.033800px;}
.y2f0{bottom:761.391300px;}
.y125{bottom:762.023400px;}
.y28e{bottom:763.628700px;}
.yba{bottom:765.257700px;}
.y26f{bottom:765.424950px;}
.y58{bottom:765.593700px;}
.y252{bottom:765.762300px;}
.y1a0{bottom:765.827100px;}
.y8e{bottom:766.722300px;}
.y2b9{bottom:767.200350px;}
.y2e5{bottom:767.965800px;}
.y228{bottom:768.419100px;}
.y229{bottom:768.420600px;}
.y16d{bottom:769.259100px;}
.y1f{bottom:772.858800px;}
.y10a{bottom:775.573800px;}
.y2ef{bottom:779.871300px;}
.y124{bottom:780.563400px;}
.y28d{bottom:782.108700px;}
.yb9{bottom:783.797850px;}
.y26e{bottom:783.964950px;}
.y57{bottom:784.133550px;}
.y251{bottom:784.302300px;}
.y8d{bottom:785.202300px;}
.y2b8{bottom:785.680350px;}
.y2e4{bottom:786.445800px;}
.y227{bottom:787.553400px;}
.y3{bottom:790.216800px;}
.y1e{bottom:791.338800px;}
.y109{bottom:794.113800px;}
.y176{bottom:796.876950px;}
.y2ee{bottom:798.351300px;}
.y123{bottom:799.103400px;}
.yb8{bottom:802.337700px;}
.y26d{bottom:802.504950px;}
.y56{bottom:802.673550px;}
.y250{bottom:802.842300px;}
.y8c{bottom:803.682300px;}
.y2e3{bottom:804.925800px;}
.y172{bottom:805.806750px;}
.y226{bottom:807.626550px;}
.y108{bottom:812.653800px;}
.y28c{bottom:813.939900px;}
.y2b7{bottom:816.321000px;}
.y2ed{bottom:816.831300px;}
.y122{bottom:817.643400px;}
.yb7{bottom:820.877700px;}
.y26c{bottom:821.044950px;}
.y55{bottom:821.213700px;}
.y24f{bottom:821.382300px;}
.y8b{bottom:822.162300px;}
.y2e2{bottom:823.405650px;}
.y1f0{bottom:823.996800px;}
.y16c{bottom:824.402100px;}
.y107{bottom:831.193800px;}
.y28b{bottom:832.419900px;}
.y21f{bottom:832.619850px;}
.y2b6{bottom:834.801000px;}
.y2ec{bottom:835.311150px;}
.y121{bottom:836.183400px;}
.y26b{bottom:839.584950px;}
.y54{bottom:839.753700px;}
.y24e{bottom:839.922300px;}
.y8a{bottom:840.642300px;}
.y21e{bottom:846.659850px;}
.y43{bottom:847.105650px;}
.y1eb{bottom:848.990550px;}
.y106{bottom:849.733800px;}
.y28a{bottom:850.899900px;}
.y2b5{bottom:853.281000px;}
.y2e1{bottom:853.791300px;}
.y1ef{bottom:855.898200px;}
.y1ed{bottom:856.010400px;}
.y171{bottom:857.893650px;}
.y26a{bottom:858.124950px;}
.yb6{bottom:858.126450px;}
.y53{bottom:858.293550px;}
.y24d{bottom:858.462300px;}
.y89{bottom:859.122300px;}
.y1ea{bottom:863.030400px;}
.y42{bottom:865.105650px;}
.y221{bottom:865.152150px;}
.y224{bottom:866.639250px;}
.y105{bottom:868.273800px;}
.y289{bottom:869.379900px;}
.y2b4{bottom:871.761000px;}
.y2e0{bottom:872.271300px;}
.y120{bottom:875.132850px;}
.y52{bottom:876.833550px;}
.y24c{bottom:877.002300px;}
.y88{bottom:877.602300px;}
.y41{bottom:883.105650px;}
.y21d{bottom:883.643250px;}
.y1e9{bottom:887.258100px;}
.y288{bottom:887.859900px;}
.y2df{bottom:890.751300px;}
.y225{bottom:892.668150px;}
.y11f{bottom:893.672850px;}
.y1ee{bottom:894.165750px;}
.y1ec{bottom:894.278100px;}
.y104{bottom:895.317750px;}
.ydb{bottom:895.373700px;}
.y24a{bottom:895.542300px;}
.y87{bottom:896.082300px;}
.y21c{bottom:897.683250px;}
.y40{bottom:901.105650px;}
.y1e8{bottom:901.298100px;}
.y2b3{bottom:902.401650px;}
.y2eb{bottom:902.656800px;}
.y170{bottom:908.917050px;}
.y2de{bottom:909.231300px;}
.y175{bottom:912.106050px;}
.y11e{bottom:912.212850px;}
.y23c{bottom:913.913700px;}
.y51{bottom:914.082300px;}
.yb5{bottom:914.083800px;}
.y86{bottom:914.562300px;}
.y220{bottom:916.175550px;}
.y3f{bottom:919.105650px;}
.y287{bottom:919.691100px;}
.y2b2{bottom:920.881650px;}
.y2ea{bottom:921.136800px;}
.y1de{bottom:921.908850px;}
.y11d{bottom:930.752850px;}
.y23b{bottom:932.453550px;}
.y50{bottom:932.622300px;}
.yb4{bottom:932.623650px;}
.y85{bottom:933.042300px;}
.y219{bottom:934.666650px;}
.y286{bottom:938.171100px;}
.y2b1{bottom:939.361650px;}
.y2dd{bottom:939.616800px;}
.y1e2{bottom:942.534000px;}
.y218{bottom:948.706650px;}
.y3e{bottom:949.118550px;}
.y11c{bottom:949.292850px;}
.y1e6{bottom:949.441650px;}
.y1e4{bottom:949.553850px;}
.y23a{bottom:950.993550px;}
.y4f{bottom:951.162300px;}
.yb3{bottom:951.163650px;}
.y103{bottom:951.274950px;}
.y84{bottom:951.522300px;}
.y1e1{bottom:956.573850px;}
.y285{bottom:956.651100px;}
.y2b0{bottom:957.841650px;}
.y2dc{bottom:958.096800px;}
.y16f{bottom:961.003950px;}
.y174{bottom:962.065950px;}
.y3d{bottom:967.118550px;}
.y21b{bottom:967.200450px;}
.y223{bottom:967.624050px;}
.y11b{bottom:967.832850px;}
.y239{bottom:969.533700px;}
.y4e{bottom:969.702300px;}
.yb2{bottom:969.703800px;}
.y102{bottom:969.815100px;}
.y83{bottom:970.002300px;}
.y2af{bottom:976.321650px;}
.y2db{bottom:976.576650px;}
.y1e0{bottom:980.801550px;}
.y3c{bottom:985.118550px;}
.y217{bottom:985.690200px;}
.y11a{bottom:986.372850px;}
.y1e5{bottom:987.709200px;}
.y1e3{bottom:987.821550px;}
.y238{bottom:988.073700px;}
.y4d{bottom:988.242300px;}
.yb1{bottom:988.243800px;}
.y101{bottom:988.355100px;}
.y82{bottom:988.482300px;}
.y2ae{bottom:994.801650px;}
.y1df{bottom:994.841550px;}
.y2da{bottom:995.056800px;}
.y216{bottom:999.730200px;}
.y119{bottom:1004.912850px;}
.y237{bottom:1006.613550px;}
.y4c{bottom:1006.782300px;}
.yb0{bottom:1006.783650px;}
.y100{bottom:1006.895100px;}
.y81{bottom:1006.962300px;}
.y173{bottom:1013.089350px;}
.y2d9{bottom:1013.536800px;}
.y16e{bottom:1014.152850px;}
.y1dd{bottom:1015.452300px;}
.y21a{bottom:1018.223850px;}
.y4b{bottom:1025.322300px;}
.yaf{bottom:1025.323800px;}
.yff{bottom:1025.435100px;}
.y80{bottom:1025.442300px;}
.y3b{bottom:1026.678150px;}
.y1e7{bottom:1035.012750px;}
.y222{bottom:1041.610050px;}
.y4a{bottom:1043.862300px;}
.yae{bottom:1043.863800px;}
.y7f{bottom:1043.922300px;}
.yfe{bottom:1043.975100px;}
.y16b{bottom:1051.105200px;}
.y3a{bottom:1055.478150px;}
.y49{bottom:1062.402300px;}
.yad{bottom:1062.403800px;}
.yfd{bottom:1062.515100px;}
.y1f1{bottom:1065.071100px;}
.y7e{bottom:1114.180350px;}
.yac{bottom:1114.181700px;}
.y44{bottom:1129.430550px;}
.y7d{bottom:1133.680350px;}
.yab{bottom:1133.681700px;}
.h16{height:25.382812px;}
.h12{height:25.913184px;}
.h10{height:33.336000px;}
.h8{height:35.580000px;}
.h1f{height:36.114000px;}
.h17{height:38.892000px;}
.h18{height:39.564000px;}
.hc{height:41.472000px;}
.hf{height:41.670000px;}
.h1c{height:43.336800px;}
.h1e{height:44.085600px;}
.h13{height:44.448000px;}
.h11{height:45.216000px;}
.h9{height:45.441050px;}
.h15{height:46.091400px;}
.ha{height:46.656000px;}
.h1b{height:46.941600px;}
.he{height:48.042000px;}
.h2{height:50.004000px;}
.h19{height:51.648000px;}
.h3{height:52.226400px;}
.h6{height:55.560000px;}
.hd{height:56.417132px;}
.h5{height:56.520000px;}
.h1a{height:59.697000px;}
.h4{height:62.172000px;}
.h1d{height:71.416800px;}
.hb{height:73.368600px;}
.h7{height:88.512000px;}
.h14{height:92.861400px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:68.031450px;}
.xc{left:70.091250px;}
.x42{left:84.126300px;}
.x45{left:87.527850px;}
.x51{left:89.291250px;}
.x6f{left:91.806600px;}
.x6e{left:93.006300px;}
.x43{left:97.828500px;}
.x44{left:100.922100px;}
.x3{left:106.299150px;}
.x5{left:107.587200px;}
.x5a{left:108.659100px;}
.x60{left:110.739450px;}
.x2{left:119.587350px;}
.x64{left:123.307050px;}
.x72{left:129.774300px;}
.x73{left:131.274150px;}
.x3d{left:135.150000px;}
.x30{left:142.801050px;}
.x18{left:145.115550px;}
.xe{left:153.335550px;}
.x1b{left:156.192000px;}
.x32{left:158.106300px;}
.x1c{left:160.195050px;}
.x33{left:162.109500px;}
.x40{left:163.142100px;}
.x39{left:166.112700px;}
.x1d{left:168.201450px;}
.x9{left:170.561700px;}
.x4d{left:175.356900px;}
.x4e{left:180.027300px;}
.x24{left:183.170700px;}
.x21{left:186.059700px;}
.x11{left:191.603250px;}
.x59{left:193.104900px;}
.x26{left:194.684550px;}
.x28{left:196.290300px;}
.x27{left:198.687750px;}
.x48{left:205.480350px;}
.x19{left:206.858250px;}
.x3a{left:208.679700px;}
.xa{left:210.108450px;}
.x3b{left:211.773450px;}
.x8{left:215.616150px;}
.x4a{left:217.000350px;}
.x2e{left:224.552400px;}
.x7{left:229.006500px;}
.x17{left:233.858100px;}
.x34{left:242.170950px;}
.x4b{left:244.500000px;}
.x3e{left:249.102750px;}
.x52{left:260.481750px;}
.x31{left:263.644350px;}
.x23{left:272.350950px;}
.x46{left:280.167900px;}
.x56{left:283.032750px;}
.x47{left:284.838300px;}
.x35{left:295.520700px;}
.x3f{left:296.724750px;}
.x36{left:310.190100px;}
.x5b{left:322.086600px;}
.x41{left:323.086800px;}
.xd{left:336.752250px;}
.x37{left:347.832300px;}
.x4c{left:350.708850px;}
.x4f{left:358.571850px;}
.x50{left:363.321150px;}
.x53{left:366.051000px;}
.x67{left:367.127400px;}
.x65{left:370.380000px;}
.x10{left:375.019950px;}
.x25{left:381.311400px;}
.x38{left:414.163050px;}
.x62{left:417.755850px;}
.x57{left:429.884400px;}
.x49{left:431.071050px;}
.x54{left:436.430700px;}
.x1a{left:439.351350px;}
.xb{left:442.204650px;}
.x1e{left:445.325850px;}
.x5d{left:447.592800px;}
.x1f{left:449.329050px;}
.x5f{left:450.792900px;}
.x5c{left:452.120700px;}
.x20{left:457.335450px;}
.x70{left:465.979800px;}
.x71{left:467.179500px;}
.x4{left:480.472500px;}
.x2d{left:492.051000px;}
.x29{left:494.448450px;}
.x2c{left:496.054050px;}
.x2a{left:498.451650px;}
.x6d{left:505.447350px;}
.x2b{left:506.458050px;}
.x58{left:511.040550px;}
.x16{left:517.613250px;}
.x5e{left:521.016000px;}
.x2f{left:522.661500px;}
.x3c{left:526.331100px;}
.x6{left:531.491400px;}
.x12{left:538.672050px;}
.x22{left:547.890900px;}
.x6b{left:556.122750px;}
.x6a{left:560.937750px;}
.x6c{left:565.572900px;}
.x55{left:577.189800px;}
.x68{left:604.432650px;}
.x69{left:607.685250px;}
.x66{left:633.963450px;}
.x63{left:637.795200px;}
.x13{left:670.305150px;}
.x14{left:684.657600px;}
.x15{left:686.668650px;}
.x1{left:801.429900px;}
.x61{left:818.739900px;}
@media print{
.v7{vertical-align:-26.458133pt;}
.vb{vertical-align:-22.682667pt;}
.v2{vertical-align:-17.760000pt;}
.v5{vertical-align:-13.320000pt;}
.vd{vertical-align:-10.583467pt;}
.v6{vertical-align:-3.780800pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:11.338133pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:17.760000pt;}
.v4{vertical-align:18.793067pt;}
.vc{vertical-align:23.432000pt;}
.ve{vertical-align:24.960000pt;}
.v8{vertical-align:34.015467pt;}
.v9{vertical-align:52.911467pt;}
.ls10{letter-spacing:-4.160000pt;}
.lsb{letter-spacing:-3.200000pt;}
.ls16{letter-spacing:-2.400000pt;}
.ls17{letter-spacing:-2.133333pt;}
.ls3{letter-spacing:-1.066667pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.373120pt;}
.lsf{letter-spacing:-0.310933pt;}
.lsa{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.155467pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000107pt;}
.ls7{letter-spacing:0.123840pt;}
.ls8{letter-spacing:0.124373pt;}
.ls6{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.872398pt;}
.ls9{letter-spacing:1.034933pt;}
.ls19{letter-spacing:5.386667pt;}
.ls14{letter-spacing:81.987200pt;}
.ls13{letter-spacing:84.254933pt;}
.ws145{word-spacing:-20.053333pt;}
.wsb1{word-spacing:-16.133333pt;}
.ws36{word-spacing:-14.880000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws1{word-spacing:-14.133333pt;}
.ws7f{word-spacing:-14.026667pt;}
.ws0{word-spacing:-13.786667pt;}
.wse0{word-spacing:-11.733333pt;}
.ws39{word-spacing:-11.466667pt;}
.wsb2{word-spacing:-11.000000pt;}
.wsd0{word-spacing:-10.266667pt;}
.wsdd{word-spacing:-8.800000pt;}
.ws13b{word-spacing:-8.746667pt;}
.ws37{word-spacing:-8.675040pt;}
.ws3{word-spacing:-8.550667pt;}
.wsdc{word-spacing:-8.395200pt;}
.ws81{word-spacing:-8.239733pt;}
.ws80{word-spacing:-8.177547pt;}
.wsb3{word-spacing:-6.413000pt;}
.wseb{word-spacing:-6.240000pt;}
.wsc0{word-spacing:-4.853333pt;}
.ws32{word-spacing:-4.608000pt;}
.ws68{word-spacing:-4.480000pt;}
.ws34{word-spacing:-4.266667pt;}
.ws107{word-spacing:-4.160000pt;}
.wsec{word-spacing:-4.106667pt;}
.ws133{word-spacing:-4.053333pt;}
.ws12d{word-spacing:-3.680000pt;}
.ws33{word-spacing:-3.200000pt;}
.wsaf{word-spacing:-2.880000pt;}
.wsad{word-spacing:-2.826667pt;}
.wsb0{word-spacing:-2.773333pt;}
.ws58{word-spacing:-2.720000pt;}
.wsa0{word-spacing:-2.666667pt;}
.ws4e{word-spacing:-2.613333pt;}
.wsb7{word-spacing:-2.560000pt;}
.wsa{word-spacing:-2.506667pt;}
.ws4f{word-spacing:-2.453333pt;}
.ws1e{word-spacing:-2.400000pt;}
.wsfc{word-spacing:-2.346667pt;}
.ws95{word-spacing:-2.293333pt;}
.ws124{word-spacing:-2.240000pt;}
.ws24{word-spacing:-2.186667pt;}
.ws1d{word-spacing:-2.133333pt;}
.ws1f{word-spacing:-2.080000pt;}
.wsac{word-spacing:-2.026667pt;}
.ws9{word-spacing:-1.973333pt;}
.ws115{word-spacing:-1.920000pt;}
.ws54{word-spacing:-1.866667pt;}
.wsfb{word-spacing:-1.813333pt;}
.ws49{word-spacing:-1.760000pt;}
.ws53{word-spacing:-1.706667pt;}
.ws26{word-spacing:-1.653333pt;}
.ws4b{word-spacing:-1.600000pt;}
.ws102{word-spacing:-1.546667pt;}
.ws9f{word-spacing:-1.493333pt;}
.ws116{word-spacing:-1.440000pt;}
.ws9a{word-spacing:-1.386667pt;}
.ws52{word-spacing:-1.333333pt;}
.wse{word-spacing:-1.280000pt;}
.wsb6{word-spacing:-1.226667pt;}
.ws7e{word-spacing:-1.173333pt;}
.wsf4{word-spacing:-1.157333pt;}
.ws7b{word-spacing:-1.013333pt;}
.ws4d{word-spacing:-0.960000pt;}
.ws3f{word-spacing:-0.906667pt;}
.ws35{word-spacing:-0.872398pt;}
.wsc2{word-spacing:-0.853333pt;}
.wsb{word-spacing:-0.800000pt;}
.ws10d{word-spacing:-0.746667pt;}
.ws77{word-spacing:-0.693333pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.586667pt;}
.ws122{word-spacing:-0.533333pt;}
.ws8d{word-spacing:-0.480000pt;}
.wsf0{word-spacing:-0.426667pt;}
.ws79{word-spacing:-0.373333pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws27{word-spacing:-0.266667pt;}
.wsf2{word-spacing:-0.213333pt;}
.wsa1{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.124373pt;}
.ws1c{word-spacing:-0.106667pt;}
.wsd2{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws21{word-spacing:0.053333pt;}
.ws22{word-spacing:0.106667pt;}
.ws7d{word-spacing:0.160000pt;}
.wsa8{word-spacing:0.213333pt;}
.ws8e{word-spacing:0.266667pt;}
.ws11e{word-spacing:0.320000pt;}
.wsb5{word-spacing:0.373333pt;}
.wsaa{word-spacing:0.379093pt;}
.ws29{word-spacing:0.426667pt;}
.ws3d{word-spacing:0.480000pt;}
.wsef{word-spacing:0.533333pt;}
.wsa2{word-spacing:0.586667pt;}
.ws7{word-spacing:0.640000pt;}
.ws46{word-spacing:0.693333pt;}
.ws11c{word-spacing:0.746667pt;}
.ws70{word-spacing:0.800000pt;}
.ws11b{word-spacing:0.853333pt;}
.ws4c{word-spacing:0.906667pt;}
.ws90{word-spacing:0.960000pt;}
.ws8f{word-spacing:1.013333pt;}
.ws5{word-spacing:1.066667pt;}
.ws96{word-spacing:1.120000pt;}
.ws8c{word-spacing:1.173333pt;}
.wsee{word-spacing:1.226667pt;}
.wsd9{word-spacing:1.280000pt;}
.wse6{word-spacing:1.386667pt;}
.ws98{word-spacing:1.440000pt;}
.ws89{word-spacing:1.493333pt;}
.ws5c{word-spacing:1.546667pt;}
.ws19{word-spacing:1.600000pt;}
.ws110{word-spacing:1.653333pt;}
.ws123{word-spacing:1.706667pt;}
.ws57{word-spacing:1.760000pt;}
.ws31{word-spacing:1.813333pt;}
.ws51{word-spacing:1.866667pt;}
.ws3e{word-spacing:1.920000pt;}
.ws10{word-spacing:1.973333pt;}
.ws41{word-spacing:2.026667pt;}
.wsfe{word-spacing:2.080000pt;}
.wsb8{word-spacing:2.133333pt;}
.ws5a{word-spacing:2.186667pt;}
.wsf3{word-spacing:2.240000pt;}
.ws3b{word-spacing:2.293333pt;}
.wsea{word-spacing:2.346667pt;}
.ws10f{word-spacing:2.400000pt;}
.ws114{word-spacing:2.453333pt;}
.wsd3{word-spacing:2.506667pt;}
.ws11{word-spacing:2.560000pt;}
.ws8b{word-spacing:2.613333pt;}
.wsed{word-spacing:2.666667pt;}
.wsb9{word-spacing:2.720000pt;}
.wsd6{word-spacing:2.773333pt;}
.ws25{word-spacing:2.826667pt;}
.ws40{word-spacing:2.880000pt;}
.wsda{word-spacing:2.933333pt;}
.ws13{word-spacing:2.986667pt;}
.ws111{word-spacing:3.040000pt;}
.ws97{word-spacing:3.093333pt;}
.wsbe{word-spacing:3.146667pt;}
.ws67{word-spacing:3.200000pt;}
.wse5{word-spacing:3.253333pt;}
.wsd8{word-spacing:3.306667pt;}
.wsc1{word-spacing:3.360000pt;}
.ws6{word-spacing:3.413333pt;}
.wsbb{word-spacing:3.466667pt;}
.ws11f{word-spacing:3.520000pt;}
.ws45{word-spacing:3.573333pt;}
.ws8{word-spacing:3.626667pt;}
.ws9e{word-spacing:3.733333pt;}
.ws20{word-spacing:3.840000pt;}
.ws7c{word-spacing:3.893333pt;}
.wsc7{word-spacing:3.946667pt;}
.ws63{word-spacing:4.000000pt;}
.ws5e{word-spacing:4.053333pt;}
.wsae{word-spacing:4.106667pt;}
.ws108{word-spacing:4.160000pt;}
.ws88{word-spacing:4.213333pt;}
.ws6f{word-spacing:4.266667pt;}
.ws85{word-spacing:4.373333pt;}
.wse8{word-spacing:4.426667pt;}
.ws78{word-spacing:4.533333pt;}
.ws83{word-spacing:4.586667pt;}
.ws104{word-spacing:4.640000pt;}
.ws4a{word-spacing:4.693333pt;}
.ws113{word-spacing:4.746667pt;}
.ws101{word-spacing:4.800000pt;}
.ws6a{word-spacing:4.960000pt;}
.ws99{word-spacing:5.013333pt;}
.ws91{word-spacing:5.066667pt;}
.ws59{word-spacing:5.120000pt;}
.ws18{word-spacing:5.226667pt;}
.ws1a{word-spacing:5.280000pt;}
.ws11a{word-spacing:5.386667pt;}
.ws112{word-spacing:5.440000pt;}
.ws10b{word-spacing:5.493333pt;}
.wsdb{word-spacing:5.600000pt;}
.wsbc{word-spacing:5.653333pt;}
.ws82{word-spacing:5.706667pt;}
.wsfd{word-spacing:5.760000pt;}
.ws66{word-spacing:5.866667pt;}
.wsd{word-spacing:5.920000pt;}
.wsc6{word-spacing:6.026667pt;}
.wsbf{word-spacing:6.080000pt;}
.wsba{word-spacing:6.133333pt;}
.wse9{word-spacing:6.186667pt;}
.ws1b{word-spacing:6.240000pt;}
.ws74{word-spacing:6.293333pt;}
.ws11d{word-spacing:6.346667pt;}
.ws10e{word-spacing:6.400000pt;}
.wsd4{word-spacing:6.453333pt;}
.ws47{word-spacing:6.506667pt;}
.ws131{word-spacing:6.560000pt;}
.ws50{word-spacing:6.613333pt;}
.ws10a{word-spacing:6.666667pt;}
.ws64{word-spacing:6.720000pt;}
.wsa7{word-spacing:6.826667pt;}
.ws14{word-spacing:6.880000pt;}
.ws119{word-spacing:6.933333pt;}
.wse2{word-spacing:6.986667pt;}
.wsa3{word-spacing:7.040000pt;}
.ws55{word-spacing:7.093333pt;}
.wsa5{word-spacing:7.146667pt;}
.ws8a{word-spacing:7.306667pt;}
.wsd7{word-spacing:7.360000pt;}
.ws3a{word-spacing:7.413333pt;}
.ws69{word-spacing:7.466667pt;}
.wsa4{word-spacing:7.520000pt;}
.wse4{word-spacing:7.573333pt;}
.wsf{word-spacing:7.626667pt;}
.ws9b{word-spacing:7.680000pt;}
.ws9d{word-spacing:7.733333pt;}
.wscd{word-spacing:7.773867pt;}
.ws84{word-spacing:7.786667pt;}
.ws7a{word-spacing:7.840000pt;}
.wsc3{word-spacing:7.893333pt;}
.ws106{word-spacing:7.946667pt;}
.ws42{word-spacing:8.000000pt;}
.ws5d{word-spacing:8.053333pt;}
.ws48{word-spacing:8.106667pt;}
.ws6c{word-spacing:8.160000pt;}
.wsff{word-spacing:8.266667pt;}
.wsd1{word-spacing:8.373333pt;}
.ws87{word-spacing:8.426667pt;}
.ws17{word-spacing:8.533333pt;}
.wsf1{word-spacing:8.586667pt;}
.ws61{word-spacing:8.693333pt;}
.ws103{word-spacing:8.746667pt;}
.wsc5{word-spacing:8.800000pt;}
.ws120{word-spacing:8.853333pt;}
.ws14f{word-spacing:9.013333pt;}
.ws121{word-spacing:9.173333pt;}
.wsd5{word-spacing:9.226667pt;}
.wsc{word-spacing:9.280000pt;}
.ws105{word-spacing:9.546667pt;}
.ws10c{word-spacing:9.653333pt;}
.ws132{word-spacing:9.866667pt;}
.ws12f{word-spacing:9.920000pt;}
.ws92{word-spacing:9.973333pt;}
.ws16{word-spacing:10.293333pt;}
.wsa6{word-spacing:10.346667pt;}
.ws86{word-spacing:10.613333pt;}
.ws15{word-spacing:10.666667pt;}
.wsab{word-spacing:10.720000pt;}
.ws44{word-spacing:10.933333pt;}
.ws109{word-spacing:10.986667pt;}
.ws73{word-spacing:11.040000pt;}
.ws151{word-spacing:11.146667pt;}
.ws94{word-spacing:11.200000pt;}
.ws134{word-spacing:11.253333pt;}
.ws13d{word-spacing:11.306667pt;}
.ws65{word-spacing:11.413333pt;}
.wscc{word-spacing:11.553067pt;}
.ws100{word-spacing:11.786667pt;}
.ws14c{word-spacing:11.840000pt;}
.ws71{word-spacing:12.106667pt;}
.ws72{word-spacing:12.373333pt;}
.ws141{word-spacing:12.426667pt;}
.wsc4{word-spacing:12.533333pt;}
.ws76{word-spacing:12.640000pt;}
.ws117{word-spacing:12.746667pt;}
.ws93{word-spacing:13.333333pt;}
.ws12{word-spacing:13.440000pt;}
.ws43{word-spacing:13.546667pt;}
.ws6d{word-spacing:13.653333pt;}
.ws75{word-spacing:13.813333pt;}
.ws12a{word-spacing:14.026667pt;}
.ws13c{word-spacing:14.133333pt;}
.ws23{word-spacing:14.346667pt;}
.ws13a{word-spacing:14.453333pt;}
.ws14d{word-spacing:14.613333pt;}
.wsbd{word-spacing:14.666667pt;}
.ws130{word-spacing:14.933333pt;}
.ws9c{word-spacing:15.413333pt;}
.ws118{word-spacing:15.466667pt;}
.wse7{word-spacing:15.786667pt;}
.ws129{word-spacing:15.840000pt;}
.wsa9{word-spacing:16.213333pt;}
.ws126{word-spacing:16.426667pt;}
.ws144{word-spacing:16.693333pt;}
.ws6e{word-spacing:16.800000pt;}
.ws143{word-spacing:16.960000pt;}
.ws152{word-spacing:17.546667pt;}
.ws6b{word-spacing:17.813333pt;}
.ws13e{word-spacing:17.920000pt;}
.ws12c{word-spacing:18.080000pt;}
.ws153{word-spacing:18.186667pt;}
.ws12e{word-spacing:18.240000pt;}
.ws128{word-spacing:18.293333pt;}
.ws148{word-spacing:18.560000pt;}
.ws146{word-spacing:18.880000pt;}
.ws136{word-spacing:19.573333pt;}
.ws127{word-spacing:19.893333pt;}
.ws2c{word-spacing:19.946667pt;}
.ws2f{word-spacing:20.160000pt;}
.ws2a{word-spacing:20.533333pt;}
.wsc8{word-spacing:20.640000pt;}
.ws139{word-spacing:20.853333pt;}
.wse3{word-spacing:21.600000pt;}
.ws13f{word-spacing:23.093333pt;}
.ws140{word-spacing:23.946667pt;}
.ws138{word-spacing:24.160000pt;}
.ws135{word-spacing:24.266667pt;}
.ws150{word-spacing:25.546667pt;}
.ws60{word-spacing:26.186667pt;}
.ws14e{word-spacing:27.040000pt;}
.ws149{word-spacing:30.240000pt;}
.ws62{word-spacing:31.520000pt;}
.ws12b{word-spacing:34.453333pt;}
.ws30{word-spacing:36.480000pt;}
.ws147{word-spacing:37.280000pt;}
.ws125{word-spacing:37.760000pt;}
.ws2d{word-spacing:37.866667pt;}
.ws2e{word-spacing:37.973333pt;}
.ws28{word-spacing:40.053333pt;}
.ws14b{word-spacing:44.480000pt;}
.ws2b{word-spacing:44.586667pt;}
.ws137{word-spacing:46.080000pt;}
.ws142{word-spacing:47.306667pt;}
.ws14a{word-spacing:59.093333pt;}
.wsdf{word-spacing:63.710400pt;}
.wsde{word-spacing:63.795200pt;}
.wsf8{word-spacing:73.047467pt;}
.wscf{word-spacing:73.131733pt;}
.wsce{word-spacing:87.142933pt;}
.wsca{word-spacing:151.527333pt;}
.wsc9{word-spacing:151.528000pt;}
.wsb4{word-spacing:160.977333pt;}
.wscb{word-spacing:169.320000pt;}
.wse1{word-spacing:209.080000pt;}
.wsf6{word-spacing:454.853333pt;}
.wsf5{word-spacing:461.779733pt;}
.wsf7{word-spacing:572.764800pt;}
.wsfa{word-spacing:673.640000pt;}
.wsf9{word-spacing:725.171733pt;}
.ws38{word-spacing:1293.215158pt;}
._22{margin-left:-1291.321600pt;}
._23{margin-left:-474.701333pt;}
._33{margin-left:-45.321993pt;}
._34{margin-left:-41.815052pt;}
._31{margin-left:-39.466667pt;}
._29{margin-left:-34.560000pt;}
._2f{margin-left:-33.024674pt;}
._2c{margin-left:-30.016000pt;}
._2e{margin-left:-28.949333pt;}
._27{margin-left:-26.931614pt;}
._2d{margin-left:-25.396800pt;}
._32{margin-left:-24.213333pt;}
._26{margin-left:-23.093333pt;}
._2a{margin-left:-21.264000pt;}
._28{margin-left:-19.893333pt;}
._2b{margin-left:-17.481993pt;}
._25{margin-left:-15.584000pt;}
._30{margin-left:-14.453333pt;}
._f{margin-left:-13.274667pt;}
._18{margin-left:-11.948386pt;}
._1b{margin-left:-10.496533pt;}
._10{margin-left:-7.466667pt;}
._6{margin-left:-6.416000pt;}
._3{margin-left:-5.333333pt;}
._1{margin-left:-4.011340pt;}
._9{margin-left:-3.061333pt;}
._5{margin-left:-2.069333pt;}
._0{margin-left:-1.002330pt;}
._2{width:1.002667pt;}
._4{width:2.324267pt;}
._d{width:3.288870pt;}
._e{width:5.071467pt;}
._c{width:12.048730pt;}
._b{width:16.784533pt;}
._8{width:20.515200pt;}
._a{width:26.161067pt;}
._7{width:40.289067pt;}
._11{width:84.603200pt;}
._16{width:160.328000pt;}
._19{width:169.777333pt;}
._1c{width:173.395333pt;}
._20{width:177.442370pt;}
._15{width:179.225333pt;}
._1d{width:182.844000pt;}
._1e{width:187.569333pt;}
._14{width:201.742667pt;}
._1f{width:203.317333pt;}
._21{width:239.214933pt;}
._17{width:289.294667pt;}
._1a{width:345.987333pt;}
._13{width:489.093027pt;}
._12{width:604.130133pt;}
._24{width:771.150400pt;}
.fsc{font-size:23.320000pt;}
.fse{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fs5{font-size:31.093333pt;}
.fsd{font-size:32.000000pt;}
.fs11{font-size:34.666667pt;}
.fsf{font-size:37.333333pt;}
.fsb{font-size:40.000000pt;}
.fs10{font-size:41.600000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:43.619918pt;}
.fsa{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:54.156114pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:37.423067pt;}
.y271{bottom:37.424267pt;}
.y7c{bottom:37.659333pt;}
.y24b{bottom:37.660533pt;}
.y2{bottom:42.357600pt;}
.y272{bottom:42.358800pt;}
.yfb{bottom:81.194800pt;}
.y13d{bottom:86.037067pt;}
.y2d8{bottom:86.253600pt;}
.yda{bottom:86.349467pt;}
.y2ad{bottom:86.480400pt;}
.y269{bottom:86.648000pt;}
.y19f{bottom:86.654000pt;}
.y16a{bottom:86.934667pt;}
.y39{bottom:86.936000pt;}
.y249{bottom:86.947867pt;}
.y1c1{bottom:87.005467pt;}
.y215{bottom:87.058267pt;}
.y7b{bottom:87.097733pt;}
.y209{bottom:87.208267pt;}
.y179{bottom:87.454400pt;}
.yaa{bottom:87.478133pt;}
.y284{bottom:87.482933pt;}
.yfc{bottom:90.580267pt;}
.yfa{bottom:97.194800pt;}
.y2d7{bottom:102.680400pt;}
.yd9{bottom:102.829467pt;}
.y2ac{bottom:102.907067pt;}
.y268{bottom:103.128000pt;}
.y19e{bottom:103.134000pt;}
.y38{bottom:103.362667pt;}
.y169{bottom:103.414667pt;}
.y248{bottom:103.427867pt;}
.y1c0{bottom:103.485467pt;}
.y214{bottom:103.538267pt;}
.y7a{bottom:103.577733pt;}
.y208{bottom:103.688133pt;}
.y48{bottom:103.850667pt;}
.y283{bottom:103.909600pt;}
.ya9{bottom:103.958267pt;}
.y17b{bottom:110.158133pt;}
.y136{bottom:114.222000pt;}
.yf9{bottom:114.694533pt;}
.y2d6{bottom:119.107067pt;}
.y47{bottom:119.184000pt;}
.yd8{bottom:119.309467pt;}
.y2ab{bottom:119.333733pt;}
.y267{bottom:119.608000pt;}
.y19d{bottom:119.614000pt;}
.y37{bottom:119.789333pt;}
.y168{bottom:119.894800pt;}
.y247{bottom:119.907733pt;}
.y1bf{bottom:119.965467pt;}
.y213{bottom:120.018267pt;}
.y79{bottom:120.057733pt;}
.y207{bottom:120.168267pt;}
.ya8{bottom:120.438267pt;}
.y17c{bottom:126.393733pt;}
.y2f2{bottom:127.098000pt;}
.y17a{bottom:128.402400pt;}
.y282{bottom:130.918933pt;}
.yf8{bottom:131.174533pt;}
.y13c{bottom:131.212667pt;}
.y46{bottom:134.517333pt;}
.yd7{bottom:135.789467pt;}
.y266{bottom:136.088000pt;}
.y19c{bottom:136.094000pt;}
.y36{bottom:136.216000pt;}
.y167{bottom:136.374667pt;}
.y246{bottom:136.387867pt;}
.y1be{bottom:136.445467pt;}
.y212{bottom:136.498267pt;}
.y78{bottom:136.537733pt;}
.y206{bottom:136.648267pt;}
.ya7{bottom:136.918267pt;}
.y18f{bottom:136.975733pt;}
.y13b{bottom:139.150267pt;}
.y2d5{bottom:146.343067pt;}
.y281{bottom:147.345600pt;}
.y2aa{bottom:147.628133pt;}
.yf7{bottom:147.654667pt;}
.y2f1{bottom:150.657067pt;}
.y45{bottom:151.740400pt;}
.yd6{bottom:152.269467pt;}
.y265{bottom:152.568000pt;}
.y19b{bottom:152.574000pt;}
.y35{bottom:152.642667pt;}
.y166{bottom:152.854800pt;}
.y245{bottom:152.867867pt;}
.y1bd{bottom:152.925467pt;}
.y211{bottom:152.978267pt;}
.y77{bottom:153.017733pt;}
.y205{bottom:153.128267pt;}
.ya6{bottom:153.398133pt;}
.y186{bottom:153.983600pt;}
.y135{bottom:162.519733pt;}
.y2d4{bottom:162.769733pt;}
.y2a9{bottom:164.054800pt;}
.yf6{bottom:164.134667pt;}
.y188{bottom:166.456267pt;}
.yd5{bottom:168.749467pt;}
.y264{bottom:169.048000pt;}
.y19a{bottom:169.054000pt;}
.y34{bottom:169.069333pt;}
.y165{bottom:169.334667pt;}
.y1bc{bottom:169.405467pt;}
.y210{bottom:169.458267pt;}
.y76{bottom:169.497733pt;}
.y204{bottom:169.608267pt;}
.ya5{bottom:169.878267pt;}
.y185{bottom:170.991333pt;}
.y280{bottom:174.354933pt;}
.y2d3{bottom:179.196400pt;}
.y2a8{bottom:180.481467pt;}
.yf5{bottom:180.614533pt;}
.yd4{bottom:185.229467pt;}
.y33{bottom:185.496000pt;}
.y199{bottom:185.534000pt;}
.y164{bottom:185.814800pt;}
.y1bb{bottom:185.885467pt;}
.y20f{bottom:185.938267pt;}
.y75{bottom:185.977733pt;}
.y203{bottom:186.088267pt;}
.y13a{bottom:188.284400pt;}
.y184{bottom:188.944533pt;}
.y187{bottom:190.078667pt;}
.y27f{bottom:190.781600pt;}
.y2d2{bottom:195.623067pt;}
.y2a7{bottom:196.908133pt;}
.yf4{bottom:197.094533pt;}
.y198{bottom:202.014000pt;}
.y263{bottom:202.157867pt;}
.y163{bottom:202.294667pt;}
.y1ba{bottom:202.365467pt;}
.y20e{bottom:202.418267pt;}
.y74{bottom:202.457733pt;}
.y202{bottom:202.568267pt;}
.ya4{bottom:202.988133pt;}
.y183{bottom:205.952267pt;}
.y27e{bottom:207.208267pt;}
.yd3{bottom:209.268533pt;}
.y1d{bottom:210.313733pt;}
.y2a6{bottom:213.334800pt;}
.yf3{bottom:213.574667pt;}
.y197{bottom:218.494000pt;}
.y32{bottom:218.552667pt;}
.y262{bottom:218.638000pt;}
.y162{bottom:218.774800pt;}
.y1b9{bottom:218.845467pt;}
.y20d{bottom:218.898267pt;}
.y73{bottom:218.937733pt;}
.y201{bottom:219.048267pt;}
.ya3{bottom:219.468133pt;}
.y2d1{bottom:222.859200pt;}
.y182{bottom:222.960133pt;}
.y27d{bottom:223.634933pt;}
.y1c{bottom:226.740400pt;}
.yf2{bottom:230.054667pt;}
.y189{bottom:231.275200pt;}
.y196{bottom:234.974000pt;}
.y31{bottom:234.979333pt;}
.y261{bottom:235.117867pt;}
.y161{bottom:235.254667pt;}
.y1b8{bottom:235.325467pt;}
.y20c{bottom:235.378267pt;}
.y72{bottom:235.417733pt;}
.y200{bottom:235.528267pt;}
.ya2{bottom:235.948133pt;}
.y139{bottom:238.362533pt;}
.y2d0{bottom:239.285867pt;}
.y181{bottom:239.968000pt;}
.y27c{bottom:240.061600pt;}
.y2a5{bottom:241.629200pt;}
.y1b{bottom:243.167067pt;}
.y18b{bottom:244.691867pt;}
.yf1{bottom:246.534533pt;}
.y30{bottom:251.406000pt;}
.yd2{bottom:251.449333pt;}
.y195{bottom:251.454000pt;}
.y260{bottom:251.597867pt;}
.y160{bottom:251.734800pt;}
.y1b7{bottom:251.805467pt;}
.y20b{bottom:251.858267pt;}
.y71{bottom:251.897733pt;}
.y1ff{bottom:252.008267pt;}
.ya1{bottom:252.428133pt;}
.y18a{bottom:255.086400pt;}
.y2cf{bottom:255.712533pt;}
.y180{bottom:256.975733pt;}
.y2a4{bottom:258.055867pt;}
.y1a{bottom:259.593733pt;}
.yf0{bottom:263.014533pt;}
.y18c{bottom:263.968000pt;}
.y27b{bottom:267.070933pt;}
.yd1{bottom:267.929333pt;}
.y194{bottom:267.934000pt;}
.y25f{bottom:268.077867pt;}
.y1b6{bottom:268.285467pt;}
.y20a{bottom:268.338267pt;}
.y70{bottom:268.377733pt;}
.y1fe{bottom:268.488133pt;}
.ya0{bottom:268.908133pt;}
.y2ce{bottom:272.139200pt;}
.y17f{bottom:273.983600pt;}
.y2a3{bottom:274.482533pt;}
.y19{bottom:276.020400pt;}
.y27a{bottom:283.497600pt;}
.yd0{bottom:284.409200pt;}
.y193{bottom:284.414000pt;}
.y2f{bottom:284.462533pt;}
.y25e{bottom:284.557867pt;}
.y1b5{bottom:284.765467pt;}
.y15f{bottom:284.844667pt;}
.y6f{bottom:284.857733pt;}
.y1fd{bottom:284.968267pt;}
.y138{bottom:288.441867pt;}
.y2a2{bottom:290.909200pt;}
.y17e{bottom:290.991333pt;}
.y18{bottom:292.447067pt;}
.y191{bottom:295.826133pt;}
.yef{bottom:296.502533pt;}
.y2cd{bottom:299.375333pt;}
.y18d{bottom:299.874133pt;}
.y279{bottom:299.924267pt;}
.y2e{bottom:300.889200pt;}
.y192{bottom:300.894000pt;}
.y25d{bottom:301.037867pt;}
.y1b4{bottom:301.245467pt;}
.y15e{bottom:301.324667pt;}
.y6e{bottom:301.337733pt;}
.y1fc{bottom:301.448267pt;}
.y9f{bottom:302.018000pt;}
.y2a1{bottom:307.335867pt;}
.y190{bottom:307.826133pt;}
.y17d{bottom:307.999200pt;}
.y17{bottom:308.873733pt;}
.y18e{bottom:312.156800pt;}
.yee{bottom:312.982400pt;}
.y2cc{bottom:315.802000pt;}
.y278{bottom:316.350933pt;}
.y2d{bottom:317.315867pt;}
.ycf{bottom:317.519200pt;}
.y1b3{bottom:317.725467pt;}
.y15d{bottom:317.804667pt;}
.y6d{bottom:317.817733pt;}
.y1fb{bottom:317.928267pt;}
.y9e{bottom:318.498000pt;}
.y16{bottom:325.300400pt;}
.yed{bottom:329.462533pt;}
.y2cb{bottom:332.228667pt;}
.y2c{bottom:333.742533pt;}
.yce{bottom:333.999200pt;}
.y25c{bottom:334.147867pt;}
.y1b2{bottom:334.205467pt;}
.y15c{bottom:334.284667pt;}
.y6c{bottom:334.297733pt;}
.y1fa{bottom:334.408267pt;}
.y9d{bottom:334.978133pt;}
.y2a0{bottom:335.630267pt;}
.y137{bottom:337.574667pt;}
.y15{bottom:341.727067pt;}
.y1dc{bottom:342.666800pt;}
.yec{bottom:345.942400pt;}
.y1db{bottom:346.218800pt;}
.y2ca{bottom:348.655333pt;}
.y277{bottom:349.029600pt;}
.ycd{bottom:350.479200pt;}
.y1b1{bottom:350.685467pt;}
.y15b{bottom:350.764667pt;}
.y6b{bottom:350.777733pt;}
.y1f9{bottom:350.888267pt;}
.y9c{bottom:351.458000pt;}
.y29f{bottom:352.056933pt;}
.y14{bottom:358.153733pt;}
.yeb{bottom:362.422533pt;}
.y2b{bottom:364.531467pt;}
.y134{bottom:364.752000pt;}
.y2c9{bottom:365.082000pt;}
.ycc{bottom:366.959200pt;}
.y1b0{bottom:367.165467pt;}
.y15a{bottom:367.244667pt;}
.y6a{bottom:367.257733pt;}
.y1f8{bottom:367.368267pt;}
.y9b{bottom:367.938133pt;}
.y29e{bottom:368.483600pt;}
.y1d3{bottom:371.216667pt;}
.y13{bottom:374.580400pt;}
.yea{bottom:378.902400pt;}
.ycb{bottom:383.439200pt;}
.y1af{bottom:383.645467pt;}
.y14b{bottom:383.723333pt;}
.y159{bottom:383.724667pt;}
.y69{bottom:383.737733pt;}
.y1f7{bottom:383.848267pt;}
.y25b{bottom:383.887600pt;}
.y9a{bottom:384.418000pt;}
.y1da{bottom:385.389867pt;}
.y12{bottom:391.007067pt;}
.y2c8{bottom:392.318133pt;}
.ye9{bottom:395.382400pt;}
.y29d{bottom:396.778000pt;}
.yca{bottom:399.919200pt;}
.y1ae{bottom:400.125467pt;}
.y14a{bottom:400.203333pt;}
.y158{bottom:400.204667pt;}
.y68{bottom:400.217733pt;}
.y1f6{bottom:400.328267pt;}
.y25a{bottom:400.367733pt;}
.y99{bottom:400.898133pt;}
.y11{bottom:407.433733pt;}
.y2c7{bottom:408.744800pt;}
.y1d4{bottom:409.443200pt;}
.y1d9{bottom:409.956267pt;}
.y133{bottom:410.350667pt;}
.y118{bottom:410.678933pt;}
.ye8{bottom:411.862533pt;}
.y29c{bottom:413.204667pt;}
.yc9{bottom:416.399200pt;}
.y1ad{bottom:416.605467pt;}
.y149{bottom:416.683333pt;}
.y157{bottom:416.684667pt;}
.y67{bottom:416.697733pt;}
.y1f5{bottom:416.808133pt;}
.y259{bottom:416.847600pt;}
.y98{bottom:417.378000pt;}
.y2a{bottom:417.619467pt;}
.y10{bottom:423.860400pt;}
.y2c6{bottom:425.171467pt;}
.y132{bottom:426.830667pt;}
.y117{bottom:427.158933pt;}
.ye7{bottom:428.342400pt;}
.y29b{bottom:429.631200pt;}
.y1c5{bottom:430.354800pt;}
.yc8{bottom:432.879200pt;}
.y1ac{bottom:433.085467pt;}
.y156{bottom:433.164667pt;}
.y66{bottom:433.177733pt;}
.y1f4{bottom:433.288267pt;}
.y258{bottom:433.327733pt;}
.y1d8{bottom:433.578667pt;}
.y29{bottom:433.619467pt;}
.y116{bottom:443.638933pt;}
.yc7{bottom:449.359200pt;}
.y1ab{bottom:449.565467pt;}
.y28{bottom:449.619467pt;}
.y155{bottom:449.644667pt;}
.y65{bottom:449.657733pt;}
.y97{bottom:449.732000pt;}
.y1f3{bottom:449.768267pt;}
.y148{bottom:449.793200pt;}
.y257{bottom:449.807600pt;}
.y2c5{bottom:452.407600pt;}
.yf{bottom:456.916933pt;}
.y29a{bottom:457.925600pt;}
.y1d7{bottom:458.145067pt;}
.y115{bottom:460.118933pt;}
.y131{bottom:461.452400pt;}
.ye6{bottom:461.830267pt;}
.yc6{bottom:465.839200pt;}
.y1aa{bottom:466.045467pt;}
.y154{bottom:466.124667pt;}
.y64{bottom:466.137733pt;}
.y1f2{bottom:466.248267pt;}
.y147{bottom:466.273333pt;}
.y256{bottom:466.287733pt;}
.y2c4{bottom:468.834267pt;}
.y1d5{bottom:469.725733pt;}
.ye{bottom:473.343733pt;}
.y299{bottom:474.352400pt;}
.y114{bottom:476.598933pt;}
.y130{bottom:477.932400pt;}
.ye5{bottom:478.310400pt;}
.y1d6{bottom:481.767467pt;}
.yc5{bottom:482.319200pt;}
.y153{bottom:482.604667pt;}
.y63{bottom:482.617733pt;}
.y146{bottom:482.753200pt;}
.y244{bottom:482.767600pt;}
.y2c3{bottom:485.260933pt;}
.yd{bottom:489.770400pt;}
.y298{bottom:490.779067pt;}
.y12f{bottom:494.412400pt;}
.ye4{bottom:494.790267pt;}
.y1a9{bottom:498.399467pt;}
.yc4{bottom:498.799200pt;}
.y152{bottom:499.084667pt;}
.y62{bottom:499.097733pt;}
.y145{bottom:499.233333pt;}
.y243{bottom:499.247733pt;}
.y1c3{bottom:501.988800pt;}
.yc{bottom:506.197067pt;}
.y297{bottom:507.205733pt;}
.y236{bottom:508.883333pt;}
.y113{bottom:508.952933pt;}
.y12e{bottom:510.892400pt;}
.ye3{bottom:511.270400pt;}
.y2c2{bottom:512.496933pt;}
.yc3{bottom:515.279200pt;}
.y61{bottom:515.577733pt;}
.y144{bottom:515.713200pt;}
.y242{bottom:515.727600pt;}
.y96{bottom:516.857733pt;}
.y276{bottom:521.212133pt;}
.y27{bottom:522.312400pt;}
.yb{bottom:522.623733pt;}
.y12d{bottom:527.372400pt;}
.ye2{bottom:527.750267pt;}
.y2c1{bottom:528.923600pt;}
.y1c8{bottom:529.578667pt;}
.yc2{bottom:531.759200pt;}
.y60{bottom:532.057733pt;}
.y143{bottom:532.193333pt;}
.y151{bottom:532.194533pt;}
.y241{bottom:532.207733pt;}
.y95{bottom:533.284400pt;}
.y233{bottom:535.066533pt;}
.y235{bottom:535.067867pt;}
.y296{bottom:535.500000pt;}
.y26{bottom:538.739067pt;}
.ya{bottom:539.050400pt;}
.y275{bottom:539.878800pt;}
.y12c{bottom:543.852400pt;}
.y2c0{bottom:545.350400pt;}
.y1cf{bottom:545.641200pt;}
.y232{bottom:547.546533pt;}
.y234{bottom:547.547867pt;}
.y5f{bottom:548.537733pt;}
.y142{bottom:548.673200pt;}
.y150{bottom:548.674533pt;}
.y240{bottom:548.687600pt;}
.y1a8{bottom:548.895200pt;}
.y94{bottom:549.711067pt;}
.y295{bottom:551.926667pt;}
.y25{bottom:555.165733pt;}
.y112{bottom:557.558933pt;}
.y274{bottom:558.545467pt;}
.y12b{bottom:560.332400pt;}
.y1ce{bottom:560.759733pt;}
.ye1{bottom:561.238133pt;}
.y2bf{bottom:561.777067pt;}
.yc1{bottom:564.869200pt;}
.y5e{bottom:565.017733pt;}
.y141{bottom:565.153200pt;}
.y14f{bottom:565.154533pt;}
.y23f{bottom:565.167600pt;}
.y1a7{bottom:565.375200pt;}
.y294{bottom:568.353333pt;}
.y230{bottom:569.653867pt;}
.y231{bottom:569.655200pt;}
.y9{bottom:572.106933pt;}
.y111{bottom:574.038933pt;}
.y1cd{bottom:575.876933pt;}
.y12a{bottom:576.812400pt;}
.y273{bottom:577.212133pt;}
.ye0{bottom:577.718267pt;}
.y1d1{bottom:578.954933pt;}
.yc0{bottom:581.349067pt;}
.y1d0{bottom:581.412000pt;}
.y5d{bottom:581.497733pt;}
.y140{bottom:581.633200pt;}
.y14e{bottom:581.634533pt;}
.y23e{bottom:581.647600pt;}
.y1a6{bottom:581.855200pt;}
.y93{bottom:582.767600pt;}
.y293{bottom:584.780133pt;}
.y24{bottom:588.222267pt;}
.y8{bottom:588.533600pt;}
.y2be{bottom:589.013200pt;}
.y1cc{bottom:590.051333pt;}
.y110{bottom:590.518933pt;}
.y22f{bottom:591.760533pt;}
.y129{bottom:593.292400pt;}
.ydf{bottom:594.198267pt;}
.ybf{bottom:597.829200pt;}
.y13f{bottom:598.113333pt;}
.y14d{bottom:598.114533pt;}
.y23d{bottom:598.127600pt;}
.y1a5{bottom:598.335200pt;}
.y92{bottom:599.194400pt;}
.y292{bottom:601.206667pt;}
.y22e{bottom:604.240667pt;}
.y23{bottom:604.649067pt;}
.y1cb{bottom:605.168533pt;}
.y2bd{bottom:605.439733pt;}
.y2e9{bottom:606.346933pt;}
.y10f{bottom:606.998933pt;}
.y128{bottom:609.772400pt;}
.yde{bottom:610.678267pt;}
.ybe{bottom:614.309067pt;}
.y13e{bottom:614.593200pt;}
.y14c{bottom:614.594533pt;}
.y5c{bottom:614.607600pt;}
.y1a4{bottom:614.815200pt;}
.y91{bottom:615.621067pt;}
.y1ca{bottom:620.287067pt;}
.y22{bottom:621.075733pt;}
.y7{bottom:621.590133pt;}
.y2e8{bottom:622.773467pt;}
.y10e{bottom:623.478933pt;}
.y1d2{bottom:625.820800pt;}
.y127{bottom:626.252400pt;}
.y22c{bottom:626.346533pt;}
.y22d{bottom:626.347867pt;}
.ydd{bottom:627.158267pt;}
.y291{bottom:629.501067pt;}
.y270{bottom:630.637867pt;}
.ybd{bottom:630.789200pt;}
.y5b{bottom:631.087600pt;}
.y255{bottom:631.237600pt;}
.y1a3{bottom:631.295200pt;}
.y90{bottom:632.047733pt;}
.y2bc{bottom:632.675867pt;}
.y1c7{bottom:634.245467pt;}
.y1c9{bottom:634.460267pt;}
.y21{bottom:637.502400pt;}
.y6{bottom:638.016800pt;}
.y2e7{bottom:639.200133pt;}
.y10d{bottom:639.958933pt;}
.y1c4{bottom:640.182800pt;}
.y126{bottom:642.732400pt;}
.y290{bottom:645.927733pt;}
.y1c6{bottom:646.245467pt;}
.ybc{bottom:647.269067pt;}
.y5a{bottom:647.567733pt;}
.y254{bottom:647.717600pt;}
.y1a2{bottom:647.775200pt;}
.y22b{bottom:648.453333pt;}
.y8f{bottom:648.474267pt;}
.y2bb{bottom:649.102533pt;}
.y178{bottom:652.048933pt;}
.y20{bottom:653.929067pt;}
.y5{bottom:654.443467pt;}
.y177{bottom:655.600933pt;}
.y2e6{bottom:655.626933pt;}
.y10c{bottom:656.438933pt;}
.ydc{bottom:660.268133pt;}
.y22a{bottom:660.933333pt;}
.y28f{bottom:662.354400pt;}
.ybb{bottom:663.749067pt;}
.y59{bottom:664.047733pt;}
.y253{bottom:664.197600pt;}
.y1a1{bottom:664.255200pt;}
.y2ba{bottom:665.529200pt;}
.y1c2{bottom:668.477067pt;}
.y4{bottom:670.870133pt;}
.y10b{bottom:672.918933pt;}
.y2f0{bottom:676.792267pt;}
.y125{bottom:677.354133pt;}
.y28e{bottom:678.781067pt;}
.yba{bottom:680.229067pt;}
.y26f{bottom:680.377733pt;}
.y58{bottom:680.527733pt;}
.y252{bottom:680.677600pt;}
.y1a0{bottom:680.735200pt;}
.y8e{bottom:681.530933pt;}
.y2b9{bottom:681.955867pt;}
.y2e5{bottom:682.636267pt;}
.y228{bottom:683.039200pt;}
.y229{bottom:683.040533pt;}
.y16d{bottom:683.785867pt;}
.y1f{bottom:686.985600pt;}
.y10a{bottom:689.398933pt;}
.y2ef{bottom:693.218933pt;}
.y124{bottom:693.834133pt;}
.y28d{bottom:695.207733pt;}
.yb9{bottom:696.709200pt;}
.y26e{bottom:696.857733pt;}
.y57{bottom:697.007600pt;}
.y251{bottom:697.157600pt;}
.y8d{bottom:697.957600pt;}
.y2b8{bottom:698.382533pt;}
.y2e4{bottom:699.062933pt;}
.y227{bottom:700.047467pt;}
.y3{bottom:702.414933pt;}
.y1e{bottom:703.412267pt;}
.y109{bottom:705.878933pt;}
.y176{bottom:708.335067pt;}
.y2ee{bottom:709.645600pt;}
.y123{bottom:710.314133pt;}
.yb8{bottom:713.189067pt;}
.y26d{bottom:713.337733pt;}
.y56{bottom:713.487600pt;}
.y250{bottom:713.637600pt;}
.y8c{bottom:714.384267pt;}
.y2e3{bottom:715.489600pt;}
.y172{bottom:716.272667pt;}
.y226{bottom:717.890267pt;}
.y108{bottom:722.358933pt;}
.y28c{bottom:723.502133pt;}
.y2b7{bottom:725.618667pt;}
.y2ed{bottom:726.072267pt;}
.y122{bottom:726.794133pt;}
.yb7{bottom:729.669067pt;}
.y26c{bottom:729.817733pt;}
.y55{bottom:729.967733pt;}
.y24f{bottom:730.117600pt;}
.y8b{bottom:730.810933pt;}
.y2e2{bottom:731.916133pt;}
.y1f0{bottom:732.441600pt;}
.y16c{bottom:732.801867pt;}
.y107{bottom:738.838933pt;}
.y28b{bottom:739.928800pt;}
.y21f{bottom:740.106533pt;}
.y2b6{bottom:742.045333pt;}
.y2ec{bottom:742.498800pt;}
.y121{bottom:743.274133pt;}
.y26b{bottom:746.297733pt;}
.y54{bottom:746.447733pt;}
.y24e{bottom:746.597600pt;}
.y8a{bottom:747.237600pt;}
.y21e{bottom:752.586533pt;}
.y43{bottom:752.982800pt;}
.y1eb{bottom:754.658267pt;}
.y106{bottom:755.318933pt;}
.y28a{bottom:756.355467pt;}
.y2b5{bottom:758.472000pt;}
.y2e1{bottom:758.925600pt;}
.y1ef{bottom:760.798400pt;}
.y1ed{bottom:760.898133pt;}
.y171{bottom:762.572133pt;}
.y26a{bottom:762.777733pt;}
.yb6{bottom:762.779067pt;}
.y53{bottom:762.927600pt;}
.y24d{bottom:763.077600pt;}
.y89{bottom:763.664267pt;}
.y1ea{bottom:767.138133pt;}
.y42{bottom:768.982800pt;}
.y221{bottom:769.024133pt;}
.y224{bottom:770.346000pt;}
.y105{bottom:771.798933pt;}
.y289{bottom:772.782133pt;}
.y2b4{bottom:774.898667pt;}
.y2e0{bottom:775.352267pt;}
.y120{bottom:777.895867pt;}
.y52{bottom:779.407600pt;}
.y24c{bottom:779.557600pt;}
.y88{bottom:780.090933pt;}
.y41{bottom:784.982800pt;}
.y21d{bottom:785.460667pt;}
.y1e9{bottom:788.673867pt;}
.y288{bottom:789.208800pt;}
.y2df{bottom:791.778933pt;}
.y225{bottom:793.482800pt;}
.y11f{bottom:794.375867pt;}
.y1ee{bottom:794.814000pt;}
.y1ec{bottom:794.913867pt;}
.y104{bottom:795.838000pt;}
.ydb{bottom:795.887733pt;}
.y24a{bottom:796.037600pt;}
.y87{bottom:796.517600pt;}
.y21c{bottom:797.940667pt;}
.y40{bottom:800.982800pt;}
.y1e8{bottom:801.153867pt;}
.y2b3{bottom:802.134800pt;}
.y2eb{bottom:802.361600pt;}
.y170{bottom:807.926267pt;}
.y2de{bottom:808.205600pt;}
.y175{bottom:810.760933pt;}
.y11e{bottom:810.855867pt;}
.y23c{bottom:812.367733pt;}
.y51{bottom:812.517600pt;}
.yb5{bottom:812.518933pt;}
.y86{bottom:812.944267pt;}
.y220{bottom:814.378267pt;}
.y3f{bottom:816.982800pt;}
.y287{bottom:817.503200pt;}
.y2b2{bottom:818.561467pt;}
.y2ea{bottom:818.788267pt;}
.y1de{bottom:819.474533pt;}
.y11d{bottom:827.335867pt;}
.y23b{bottom:828.847600pt;}
.y50{bottom:828.997600pt;}
.yb4{bottom:828.998800pt;}
.y85{bottom:829.370933pt;}
.y219{bottom:830.814800pt;}
.y286{bottom:833.929867pt;}
.y2b1{bottom:834.988133pt;}
.y2dd{bottom:835.214933pt;}
.y1e2{bottom:837.808000pt;}
.y218{bottom:843.294800pt;}
.y3e{bottom:843.660933pt;}
.y11c{bottom:843.815867pt;}
.y1e6{bottom:843.948133pt;}
.y1e4{bottom:844.047867pt;}
.y23a{bottom:845.327600pt;}
.y4f{bottom:845.477600pt;}
.yb3{bottom:845.478800pt;}
.y103{bottom:845.577733pt;}
.y84{bottom:845.797600pt;}
.y1e1{bottom:850.287867pt;}
.y285{bottom:850.356533pt;}
.y2b0{bottom:851.414800pt;}
.y2dc{bottom:851.641600pt;}
.y16f{bottom:854.225733pt;}
.y174{bottom:855.169733pt;}
.y3d{bottom:859.660933pt;}
.y21b{bottom:859.733733pt;}
.y223{bottom:860.110267pt;}
.y11b{bottom:860.295867pt;}
.y239{bottom:861.807733pt;}
.y4e{bottom:861.957600pt;}
.yb2{bottom:861.958933pt;}
.y102{bottom:862.057867pt;}
.y83{bottom:862.224267pt;}
.y2af{bottom:867.841467pt;}
.y2db{bottom:868.068133pt;}
.y1e0{bottom:871.823600pt;}
.y3c{bottom:875.660933pt;}
.y217{bottom:876.169067pt;}
.y11a{bottom:876.775867pt;}
.y1e5{bottom:877.963733pt;}
.y1e3{bottom:878.063600pt;}
.y238{bottom:878.287733pt;}
.y4d{bottom:878.437600pt;}
.yb1{bottom:878.438933pt;}
.y101{bottom:878.537867pt;}
.y82{bottom:878.650933pt;}
.y2ae{bottom:884.268133pt;}
.y1df{bottom:884.303600pt;}
.y2da{bottom:884.494933pt;}
.y216{bottom:888.649067pt;}
.y119{bottom:893.255867pt;}
.y237{bottom:894.767600pt;}
.y4c{bottom:894.917600pt;}
.yb0{bottom:894.918800pt;}
.y100{bottom:895.017867pt;}
.y81{bottom:895.077600pt;}
.y173{bottom:900.523867pt;}
.y2d9{bottom:900.921600pt;}
.y16e{bottom:901.469200pt;}
.y1dd{bottom:902.624267pt;}
.y21a{bottom:905.087867pt;}
.y4b{bottom:911.397600pt;}
.yaf{bottom:911.398933pt;}
.yff{bottom:911.497867pt;}
.y80{bottom:911.504267pt;}
.y3b{bottom:912.602800pt;}
.y1e7{bottom:920.011333pt;}
.y222{bottom:925.875600pt;}
.y4a{bottom:927.877600pt;}
.yae{bottom:927.878933pt;}
.y7f{bottom:927.930933pt;}
.yfe{bottom:927.977867pt;}
.y16b{bottom:934.315733pt;}
.y3a{bottom:938.202800pt;}
.y49{bottom:944.357600pt;}
.yad{bottom:944.358933pt;}
.yfd{bottom:944.457867pt;}
.y1f1{bottom:946.729867pt;}
.y7e{bottom:990.382533pt;}
.yac{bottom:990.383733pt;}
.y44{bottom:1003.938267pt;}
.y7d{bottom:1007.715867pt;}
.yab{bottom:1007.717067pt;}
.h16{height:22.562500pt;}
.h12{height:23.033941pt;}
.h10{height:29.632000pt;}
.h8{height:31.626667pt;}
.h1f{height:32.101333pt;}
.h17{height:34.570667pt;}
.h18{height:35.168000pt;}
.hc{height:36.864000pt;}
.hf{height:37.040000pt;}
.h1c{height:38.521600pt;}
.h1e{height:39.187200pt;}
.h13{height:39.509333pt;}
.h11{height:40.192000pt;}
.h9{height:40.392044pt;}
.h15{height:40.970133pt;}
.ha{height:41.472000pt;}
.h1b{height:41.725867pt;}
.he{height:42.704000pt;}
.h2{height:44.448000pt;}
.h19{height:45.909333pt;}
.h3{height:46.423467pt;}
.h6{height:49.386667pt;}
.hd{height:50.148561pt;}
.h5{height:50.240000pt;}
.h1a{height:53.064000pt;}
.h4{height:55.264000pt;}
.h1d{height:63.481600pt;}
.hb{height:65.216533pt;}
.h7{height:78.677333pt;}
.h14{height:82.543467pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:60.472400pt;}
.xc{left:62.303333pt;}
.x42{left:74.778933pt;}
.x45{left:77.802533pt;}
.x51{left:79.370000pt;}
.x6f{left:81.605867pt;}
.x6e{left:82.672267pt;}
.x43{left:86.958667pt;}
.x44{left:89.708533pt;}
.x3{left:94.488133pt;}
.x5{left:95.633067pt;}
.x5a{left:96.585867pt;}
.x60{left:98.435067pt;}
.x2{left:106.299867pt;}
.x64{left:109.606267pt;}
.x72{left:115.354933pt;}
.x73{left:116.688133pt;}
.x3d{left:120.133333pt;}
.x30{left:126.934267pt;}
.x18{left:128.991600pt;}
.xe{left:136.298267pt;}
.x1b{left:138.837333pt;}
.x32{left:140.538933pt;}
.x1c{left:142.395600pt;}
.x33{left:144.097333pt;}
.x40{left:145.015200pt;}
.x39{left:147.655733pt;}
.x1d{left:149.512400pt;}
.x9{left:151.610400pt;}
.x4d{left:155.872800pt;}
.x4e{left:160.024267pt;}
.x24{left:162.818400pt;}
.x21{left:165.386400pt;}
.x11{left:170.314000pt;}
.x59{left:171.648800pt;}
.x26{left:173.052933pt;}
.x28{left:174.480267pt;}
.x27{left:176.611333pt;}
.x48{left:182.649200pt;}
.x19{left:183.874000pt;}
.x3a{left:185.493067pt;}
.xa{left:186.763067pt;}
.x3b{left:188.243067pt;}
.x8{left:191.658800pt;}
.x4a{left:192.889200pt;}
.x2e{left:199.602133pt;}
.x7{left:203.561333pt;}
.x17{left:207.873867pt;}
.x34{left:215.263067pt;}
.x4b{left:217.333333pt;}
.x3e{left:221.424667pt;}
.x52{left:231.539333pt;}
.x31{left:234.350533pt;}
.x23{left:242.089733pt;}
.x46{left:249.038133pt;}
.x56{left:251.584667pt;}
.x47{left:253.189600pt;}
.x35{left:262.685067pt;}
.x3f{left:263.755333pt;}
.x36{left:275.724533pt;}
.x5b{left:286.299200pt;}
.x41{left:287.188267pt;}
.xd{left:299.335333pt;}
.x37{left:309.184267pt;}
.x4c{left:311.741200pt;}
.x4f{left:318.730533pt;}
.x50{left:322.952133pt;}
.x53{left:325.378667pt;}
.x67{left:326.335467pt;}
.x65{left:329.226667pt;}
.x10{left:333.351067pt;}
.x25{left:338.943467pt;}
.x38{left:368.144933pt;}
.x62{left:371.338533pt;}
.x57{left:382.119467pt;}
.x49{left:383.174267pt;}
.x54{left:387.938400pt;}
.x1a{left:390.534533pt;}
.xb{left:393.070800pt;}
.x1e{left:395.845200pt;}
.x5d{left:397.860267pt;}
.x1f{left:399.403600pt;}
.x5f{left:400.704800pt;}
.x5c{left:401.885067pt;}
.x20{left:406.520400pt;}
.x70{left:414.204267pt;}
.x71{left:415.270667pt;}
.x4{left:427.086667pt;}
.x2d{left:437.378667pt;}
.x29{left:439.509733pt;}
.x2c{left:440.936933pt;}
.x2a{left:443.068133pt;}
.x6d{left:449.286533pt;}
.x2b{left:450.184933pt;}
.x58{left:454.258267pt;}
.x16{left:460.100667pt;}
.x5e{left:463.125333pt;}
.x2f{left:464.588000pt;}
.x3c{left:467.849867pt;}
.x6{left:472.436800pt;}
.x12{left:478.819600pt;}
.x22{left:487.014133pt;}
.x6b{left:494.331333pt;}
.x6a{left:498.611333pt;}
.x6c{left:502.731467pt;}
.x55{left:513.057600pt;}
.x68{left:537.273467pt;}
.x69{left:540.164667pt;}
.x66{left:563.523067pt;}
.x63{left:566.929067pt;}
.x13{left:595.826800pt;}
.x14{left:608.584533pt;}
.x15{left:610.372133pt;}
.x1{left:712.382133pt;}
.x61{left:727.768800pt;}
}




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