
    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_c27e70434e3b454f3ff57ffd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d848a0669ce8b69cfb751f11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_82e698efe36ce89f3d1b0fb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_4cf5a583644d83ec2ddb5599.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850000;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_bb6f1f228a3603ff5a8be8d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_5cce153ebedb2d5ab0cc51f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1fac11b87c0aed4979696424.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_94b3e874e374ad5406b1b181.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:168.000000px;}
.ls2{letter-spacing:-6.240000px;}
.lsd{letter-spacing:-1.320000px;}
.ls1{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.660000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.007200px;}
.lsc{letter-spacing:0.010800px;}
.ls7{letter-spacing:0.093178px;}
.ls9{letter-spacing:0.135384px;}
.ls10{letter-spacing:0.528000px;}
.lse{letter-spacing:1.320000px;}
.lsf{letter-spacing:1.386000px;}
.ls4{letter-spacing:1.920000px;}
.ls6{letter-spacing:2.850000px;}
.ls3{letter-spacing:3.300000px;}
.ls8{letter-spacing:4.200000px;}
.ls5{letter-spacing:10.680000px;}
.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;}
}
.ws58{word-spacing:-74.730245px;}
.ws3{word-spacing:-37.800000px;}
.ws9b{word-spacing:-23.184000px;}
.ws1{word-spacing:-18.216000px;}
.wscb{word-spacing:-16.302000px;}
.wsc8{word-spacing:-16.236000px;}
.wscc{word-spacing:-15.444000px;}
.ws19{word-spacing:-14.916000px;}
.wsd0{word-spacing:-10.848000px;}
.wsa2{word-spacing:-8.696028px;}
.wsa4{word-spacing:-3.960000px;}
.wsb1{word-spacing:-3.696000px;}
.wsc2{word-spacing:-3.630000px;}
.wsc3{word-spacing:-3.300000px;}
.wscd{word-spacing:-3.102000px;}
.ws82{word-spacing:-3.036000px;}
.wsa6{word-spacing:-2.970000px;}
.ws66{word-spacing:-2.904000px;}
.ws43{word-spacing:-2.838000px;}
.wsa9{word-spacing:-2.772000px;}
.ws20{word-spacing:-2.706000px;}
.wsac{word-spacing:-2.640000px;}
.ws6b{word-spacing:-2.574000px;}
.ws4e{word-spacing:-2.508000px;}
.ws91{word-spacing:-2.442000px;}
.ws36{word-spacing:-2.376000px;}
.ws4b{word-spacing:-2.310000px;}
.ws24{word-spacing:-2.280000px;}
.ws76{word-spacing:-2.244000px;}
.ws95{word-spacing:-2.178000px;}
.wsad{word-spacing:-2.112000px;}
.ws74{word-spacing:-2.046000px;}
.ws2{word-spacing:-2.016000px;}
.wsa0{word-spacing:-1.980000px;}
.ws26{word-spacing:-1.914000px;}
.ws3f{word-spacing:-1.848000px;}
.ws73{word-spacing:-1.782000px;}
.ws8a{word-spacing:-1.716000px;}
.wsaa{word-spacing:-1.650000px;}
.ws71{word-spacing:-1.584000px;}
.ws90{word-spacing:-1.518000px;}
.ws1a{word-spacing:-1.452000px;}
.ws79{word-spacing:-1.386000px;}
.ws29{word-spacing:-1.320000px;}
.ws56{word-spacing:-1.254000px;}
.ws50{word-spacing:-1.188000px;}
.ws8b{word-spacing:-1.122000px;}
.ws96{word-spacing:-1.056000px;}
.ws89{word-spacing:-0.990000px;}
.ws5e{word-spacing:-0.924000px;}
.ws93{word-spacing:-0.858000px;}
.ws18{word-spacing:-0.792000px;}
.ws77{word-spacing:-0.726000px;}
.ws4a{word-spacing:-0.660000px;}
.ws7c{word-spacing:-0.594000px;}
.ws1b{word-spacing:-0.528000px;}
.ws88{word-spacing:-0.462000px;}
.ws59{word-spacing:-0.396000px;}
.ws22{word-spacing:-0.330000px;}
.ws8c{word-spacing:-0.264000px;}
.ws6f{word-spacing:-0.198000px;}
.ws75{word-spacing:-0.132000px;}
.ws63{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.wsab{word-spacing:0.066000px;}
.ws13{word-spacing:0.132000px;}
.ws9f{word-spacing:0.198000px;}
.wsbd{word-spacing:0.264000px;}
.ws16{word-spacing:0.330000px;}
.ws78{word-spacing:0.396000px;}
.wsb0{word-spacing:0.462000px;}
.ws6c{word-spacing:0.528000px;}
.wsa3{word-spacing:0.594000px;}
.ws92{word-spacing:0.660000px;}
.ws17{word-spacing:0.726000px;}
.ws9c{word-spacing:0.792000px;}
.wsb{word-spacing:0.858000px;}
.wsa{word-spacing:0.924000px;}
.ws6{word-spacing:0.990000px;}
.ws53{word-spacing:1.056000px;}
.ws40{word-spacing:1.122000px;}
.ws28{word-spacing:1.188000px;}
.ws2d{word-spacing:1.254000px;}
.ws42{word-spacing:1.320000px;}
.ws48{word-spacing:1.386000px;}
.ws44{word-spacing:1.452000px;}
.ws9a{word-spacing:1.518000px;}
.ws8e{word-spacing:1.584000px;}
.ws2f{word-spacing:1.650000px;}
.ws30{word-spacing:1.716000px;}
.ws9d{word-spacing:1.782000px;}
.ws41{word-spacing:1.848000px;}
.ws1f{word-spacing:1.914000px;}
.ws3d{word-spacing:1.980000px;}
.ws55{word-spacing:2.046000px;}
.ws1c{word-spacing:2.112000px;}
.ws45{word-spacing:2.178000px;}
.ws62{word-spacing:2.244000px;}
.wsa7{word-spacing:2.310000px;}
.ws4d{word-spacing:2.376000px;}
.ws6a{word-spacing:2.442000px;}
.wsbe{word-spacing:2.508000px;}
.ws6d{word-spacing:2.574000px;}
.ws72{word-spacing:2.640000px;}
.wsa1{word-spacing:2.706000px;}
.ws8d{word-spacing:2.772000px;}
.ws57{word-spacing:2.838000px;}
.wsb7{word-spacing:2.904000px;}
.ws4f{word-spacing:2.970000px;}
.wsbf{word-spacing:3.036000px;}
.ws97{word-spacing:3.102000px;}
.ws3c{word-spacing:3.168000px;}
.ws3b{word-spacing:3.234000px;}
.ws32{word-spacing:3.300000px;}
.ws5a{word-spacing:3.366000px;}
.ws9e{word-spacing:3.432000px;}
.ws4{word-spacing:3.498000px;}
.ws31{word-spacing:3.564000px;}
.ws35{word-spacing:3.630000px;}
.ws68{word-spacing:3.696000px;}
.wsc{word-spacing:3.762000px;}
.ws10{word-spacing:3.828000px;}
.ws60{word-spacing:3.894000px;}
.ws87{word-spacing:3.960000px;}
.ws5f{word-spacing:4.026000px;}
.ws51{word-spacing:4.092000px;}
.ws7{word-spacing:4.158000px;}
.ws6e{word-spacing:4.224000px;}
.ws2b{word-spacing:4.290000px;}
.ws5d{word-spacing:4.356000px;}
.wsa8{word-spacing:4.422000px;}
.ws12{word-spacing:4.488000px;}
.ws8{word-spacing:4.554000px;}
.wsaf{word-spacing:4.620000px;}
.ws21{word-spacing:4.686000px;}
.ws15{word-spacing:4.752000px;}
.ws98{word-spacing:4.818000px;}
.ws9{word-spacing:4.884000px;}
.wsb4{word-spacing:4.950000px;}
.ws7e{word-spacing:5.016000px;}
.wsc6{word-spacing:5.082000px;}
.ws34{word-spacing:5.148000px;}
.ws3e{word-spacing:5.214000px;}
.ws38{word-spacing:5.280000px;}
.ws46{word-spacing:5.346000px;}
.ws8f{word-spacing:5.412000px;}
.ws2a{word-spacing:5.478000px;}
.ws4c{word-spacing:5.544000px;}
.ws64{word-spacing:5.610000px;}
.wsae{word-spacing:5.676000px;}
.ws7a{word-spacing:5.742000px;}
.ws94{word-spacing:5.808000px;}
.ws11{word-spacing:5.874000px;}
.ws14{word-spacing:5.940000px;}
.ws86{word-spacing:6.006000px;}
.ws2e{word-spacing:6.072000px;}
.ws84{word-spacing:6.138000px;}
.ws54{word-spacing:6.204000px;}
.ws67{word-spacing:6.270000px;}
.wsa5{word-spacing:6.336000px;}
.ws27{word-spacing:6.402000px;}
.ws7b{word-spacing:6.468000px;}
.wsd2{word-spacing:6.534000px;}
.ws47{word-spacing:6.600000px;}
.ws5b{word-spacing:6.666000px;}
.wsc7{word-spacing:6.732000px;}
.ws1d{word-spacing:6.798000px;}
.wsb3{word-spacing:6.864000px;}
.ws83{word-spacing:6.930000px;}
.ws3a{word-spacing:6.996000px;}
.wsb2{word-spacing:7.062000px;}
.ws1e{word-spacing:7.194000px;}
.wsb8{word-spacing:7.260000px;}
.ws99{word-spacing:7.326000px;}
.ws2c{word-spacing:7.392000px;}
.ws5c{word-spacing:7.458000px;}
.ws52{word-spacing:7.524000px;}
.ws23{word-spacing:7.590000px;}
.ws81{word-spacing:7.656000px;}
.ws5{word-spacing:7.722000px;}
.ws33{word-spacing:7.788000px;}
.wsba{word-spacing:7.854000px;}
.ws37{word-spacing:7.920000px;}
.wsc4{word-spacing:7.986000px;}
.ws49{word-spacing:8.316000px;}
.ws61{word-spacing:8.382000px;}
.ws65{word-spacing:8.448000px;}
.ws69{word-spacing:8.514000px;}
.wsb6{word-spacing:8.580000px;}
.ws39{word-spacing:8.712000px;}
.ws7d{word-spacing:8.778000px;}
.wse{word-spacing:8.844000px;}
.wsf{word-spacing:8.910000px;}
.wsc1{word-spacing:8.976000px;}
.wsd1{word-spacing:9.174000px;}
.wsb9{word-spacing:9.240000px;}
.ws70{word-spacing:9.438000px;}
.wsbb{word-spacing:9.834000px;}
.wsbc{word-spacing:10.428000px;}
.wsb5{word-spacing:10.560000px;}
.wsd{word-spacing:10.692000px;}
.ws25{word-spacing:11.220000px;}
.ws7f{word-spacing:11.748000px;}
.wsc9{word-spacing:12.012000px;}
.wsc0{word-spacing:12.936000px;}
.wsca{word-spacing:13.266000px;}
.ws85{word-spacing:13.530000px;}
.wsc5{word-spacing:14.058000px;}
.ws80{word-spacing:15.378000px;}
.wsce{word-spacing:18.414000px;}
.wscf{word-spacing:55.176000px;}
._e{margin-left:-17.555400px;}
._d{margin-left:-13.432800px;}
._a{margin-left:-8.916000px;}
._c{margin-left:-7.296000px;}
._1{margin-left:-5.724000px;}
._2{margin-left:-4.428000px;}
._4{margin-left:-3.156000px;}
._0{margin-left:-1.680000px;}
._3{width:1.836000px;}
._8{width:2.873400px;}
._6{width:4.455000px;}
._5{width:6.240000px;}
._7{width:7.613400px;}
._9{width:8.989200px;}
._b{width:20.029200px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:38.478000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs2{font-size:156.000000px;}
.fs7{font-size:330.664800px;}
.y0{bottom:0.000000px;}
.y81{bottom:35.052150px;}
.y25d{bottom:85.585650px;}
.y18d{bottom:90.262800px;}
.y1db{bottom:90.782550px;}
.y40{bottom:91.162200px;}
.y29e{bottom:92.893650px;}
.ye6{bottom:93.215550px;}
.y13a{bottom:94.774650px;}
.yb7{bottom:95.294250px;}
.y123{bottom:95.365200px;}
.y80{bottom:96.626100px;}
.y108{bottom:96.947850px;}
.y171{bottom:99.381000px;}
.y137{bottom:99.900600px;}
.y1f0{bottom:100.420200px;}
.yd1{bottom:101.108250px;}
.y146{bottom:101.199900px;}
.yac{bottom:101.368050px;}
.y1d7{bottom:101.436000px;}
.y1a9{bottom:101.459700px;}
.y208{bottom:103.278600px;}
.y25c{bottom:106.585650px;}
.y15c{bottom:107.270700px;}
.y3f{bottom:110.962200px;}
.y18c{bottom:111.262800px;}
.y1da{bottom:111.782550px;}
.y18f{bottom:111.877050px;}
.y29d{bottom:113.893650px;}
.ye5{bottom:114.215550px;}
.y139{bottom:115.774650px;}
.yb6{bottom:116.294250px;}
.y122{bottom:116.365200px;}
.y7f{bottom:117.626100px;}
.y107{bottom:117.947850px;}
.yfb{bottom:119.247000px;}
.y170{bottom:120.381000px;}
.y136{bottom:120.900600px;}
.y1ef{bottom:121.420200px;}
.yd0{bottom:122.108250px;}
.y145{bottom:122.199900px;}
.yab{bottom:122.368050px;}
.y1d6{bottom:122.436000px;}
.y1a8{bottom:122.459700px;}
.y23d{bottom:122.979300px;}
.y207{bottom:124.278600px;}
.y25b{bottom:127.585650px;}
.y15b{bottom:128.270700px;}
.y3e{bottom:130.762200px;}
.y18b{bottom:132.262800px;}
.y1c4{bottom:132.782550px;}
.y18e{bottom:132.877050px;}
.y29c{bottom:134.893650px;}
.ye4{bottom:135.215550px;}
.y24e{bottom:136.774650px;}
.yb5{bottom:137.294250px;}
.y121{bottom:137.365200px;}
.y7e{bottom:138.625950px;}
.y106{bottom:138.947850px;}
.yfa{bottom:140.247000px;}
.y135{bottom:141.900600px;}
.y1ee{bottom:142.420350px;}
.ycf{bottom:143.108250px;}
.yaa{bottom:143.368200px;}
.y1d5{bottom:143.436000px;}
.y1a7{bottom:143.459700px;}
.y23c{bottom:143.979300px;}
.y206{bottom:145.278600px;}
.y25a{bottom:148.585650px;}
.y15a{bottom:149.270700px;}
.y3d{bottom:150.562200px;}
.y144{bottom:151.703700px;}
.y18a{bottom:153.262800px;}
.y1c3{bottom:153.782550px;}
.y16f{bottom:154.136850px;}
.y29b{bottom:155.893650px;}
.ye3{bottom:156.215550px;}
.y24d{bottom:157.774650px;}
.y138{bottom:158.034450px;}
.y16{bottom:158.294250px;}
.y120{bottom:158.365200px;}
.y7d{bottom:159.625950px;}
.y105{bottom:159.947850px;}
.yf9{bottom:161.247000px;}
.y134{bottom:162.900600px;}
.y1ed{bottom:163.420350px;}
.yce{bottom:164.108250px;}
.ya9{bottom:164.368200px;}
.y1d4{bottom:164.436000px;}
.y1a6{bottom:164.459700px;}
.y23b{bottom:164.979300px;}
.y205{bottom:166.278600px;}
.y259{bottom:169.585650px;}
.y220{bottom:170.078700px;}
.y3c{bottom:170.362200px;}
.y143{bottom:172.703700px;}
.y189{bottom:174.262800px;}
.y1c2{bottom:174.782550px;}
.y29a{bottom:176.893650px;}
.ye2{bottom:177.215550px;}
.y24c{bottom:178.774650px;}
.y15{bottom:179.294250px;}
.y11f{bottom:179.365200px;}
.y7c{bottom:180.625950px;}
.y104{bottom:180.947850px;}
.yf8{bottom:182.247000px;}
.y133{bottom:183.900600px;}
.y1ec{bottom:184.420350px;}
.ycd{bottom:185.108250px;}
.ya8{bottom:185.368200px;}
.y1d3{bottom:185.436000px;}
.y1a5{bottom:185.459700px;}
.y23a{bottom:185.979300px;}
.y204{bottom:187.278600px;}
.y16e{bottom:187.892700px;}
.y3b{bottom:190.162200px;}
.y258{bottom:190.585650px;}
.y21f{bottom:191.078700px;}
.y159{bottom:191.530500px;}
.y142{bottom:193.703700px;}
.y188{bottom:195.262800px;}
.y1c1{bottom:195.782550px;}
.y299{bottom:197.893650px;}
.ye1{bottom:198.215550px;}
.y24b{bottom:199.774650px;}
.y14{bottom:200.294250px;}
.y11e{bottom:200.365200px;}
.y7b{bottom:201.625950px;}
.y103{bottom:201.947850px;}
.yf7{bottom:203.247000px;}
.y132{bottom:204.900600px;}
.y1eb{bottom:205.420350px;}
.ycc{bottom:206.108250px;}
.ya7{bottom:206.368200px;}
.y1d2{bottom:206.436000px;}
.y1a4{bottom:206.459700px;}
.y239{bottom:206.979300px;}
.y203{bottom:208.278600px;}
.y16d{bottom:208.892700px;}
.y3a{bottom:209.962200px;}
.y21e{bottom:212.078700px;}
.y141{bottom:214.703700px;}
.y187{bottom:216.262800px;}
.y1c0{bottom:216.782550px;}
.y298{bottom:218.893650px;}
.ye0{bottom:219.215550px;}
.y257{bottom:220.089600px;}
.y24a{bottom:220.774650px;}
.y13{bottom:221.294250px;}
.y7a{bottom:222.625950px;}
.y102{bottom:222.947850px;}
.yf6{bottom:224.247000px;}
.y1ea{bottom:226.420350px;}
.ycb{bottom:227.108250px;}
.ya6{bottom:227.368200px;}
.y1d1{bottom:227.436000px;}
.y1a3{bottom:227.459700px;}
.y238{bottom:227.979300px;}
.y202{bottom:229.278600px;}
.y39{bottom:229.762200px;}
.y11d{bottom:229.869000px;}
.y16c{bottom:229.892700px;}
.y2b8{bottom:230.870100px;}
.y21d{bottom:233.078700px;}
.y158{bottom:233.790450px;}
.y140{bottom:235.703700px;}
.y186{bottom:237.262800px;}
.y1bf{bottom:237.782550px;}
.y297{bottom:239.893650px;}
.ydf{bottom:240.215550px;}
.y256{bottom:241.089600px;}
.y249{bottom:241.774650px;}
.y12{bottom:242.294250px;}
.y79{bottom:243.625950px;}
.y101{bottom:243.947850px;}
.y131{bottom:247.160400px;}
.y1e9{bottom:247.420350px;}
.yca{bottom:248.108250px;}
.ya5{bottom:248.368200px;}
.y1d0{bottom:248.436000px;}
.y1a2{bottom:248.459700px;}
.y237{bottom:248.979300px;}
.y38{bottom:249.562200px;}
.y201{bottom:250.278600px;}
.y27b{bottom:250.538400px;}
.y11c{bottom:250.869000px;}
.y16b{bottom:250.892700px;}
.y2b7{bottom:251.870100px;}
.y21c{bottom:254.078700px;}
.y157{bottom:254.790450px;}
.y13f{bottom:256.703700px;}
.y185{bottom:258.262800px;}
.y1be{bottom:258.782550px;}
.y296{bottom:260.893650px;}
.yde{bottom:261.215550px;}
.y255{bottom:262.089600px;}
.y248{bottom:262.774650px;}
.yb4{bottom:263.294250px;}
.y78{bottom:264.625950px;}
.y100{bottom:264.947850px;}
.yf5{bottom:266.506950px;}
.y130{bottom:268.160400px;}
.y1e8{bottom:268.420350px;}
.yc9{bottom:269.108250px;}
.y37{bottom:269.362200px;}
.ya4{bottom:269.368200px;}
.y1a1{bottom:269.459700px;}
.y236{bottom:269.979300px;}
.y200{bottom:271.278600px;}
.y27a{bottom:271.538400px;}
.y11b{bottom:271.869000px;}
.y16a{bottom:271.892700px;}
.y2b6{bottom:272.870100px;}
.y21b{bottom:275.078700px;}
.y156{bottom:275.790450px;}
.y184{bottom:279.262800px;}
.y1bd{bottom:279.782550px;}
.y295{bottom:281.893650px;}
.ydd{bottom:282.215550px;}
.y254{bottom:283.089600px;}
.y247{bottom:283.774650px;}
.yb3{bottom:284.294250px;}
.y77{bottom:285.625950px;}
.yff{bottom:285.947850px;}
.y36{bottom:289.162200px;}
.y1e7{bottom:289.420350px;}
.yc8{bottom:290.108250px;}
.ya3{bottom:290.368200px;}
.y1a0{bottom:290.459700px;}
.y235{bottom:290.979300px;}
.y1ff{bottom:292.278600px;}
.y11a{bottom:292.869000px;}
.y169{bottom:292.892700px;}
.y21a{bottom:296.078700px;}
.y155{bottom:296.790450px;}
.y183{bottom:300.262800px;}
.y1bc{bottom:300.782550px;}
.y2b5{bottom:302.374050px;}
.y294{bottom:302.893650px;}
.ydc{bottom:303.215550px;}
.y246{bottom:304.774650px;}
.yb2{bottom:305.294250px;}
.y76{bottom:306.625950px;}
.yfe{bottom:306.947850px;}
.yf4{bottom:308.766750px;}
.y35{bottom:308.962200px;}
.y1e6{bottom:310.420350px;}
.yc7{bottom:311.108250px;}
.ya2{bottom:311.368200px;}
.y19f{bottom:311.459700px;}
.y234{bottom:311.979300px;}
.y253{bottom:312.593550px;}
.y1fe{bottom:313.278600px;}
.y119{bottom:313.869000px;}
.y168{bottom:313.892700px;}
.y219{bottom:317.078700px;}
.y154{bottom:317.790450px;}
.y182{bottom:321.262800px;}
.y1bb{bottom:321.782550px;}
.y2b4{bottom:323.374050px;}
.y293{bottom:323.893650px;}
.ydb{bottom:324.215550px;}
.y245{bottom:325.774650px;}
.y11{bottom:326.294250px;}
.y75{bottom:327.625950px;}
.y34{bottom:328.762200px;}
.yf3{bottom:329.766750px;}
.y1e5{bottom:331.420350px;}
.yc6{bottom:332.108250px;}
.ya1{bottom:332.368200px;}
.y233{bottom:332.979300px;}
.y252{bottom:333.593550px;}
.y279{bottom:334.018650px;}
.y1fd{bottom:334.278600px;}
.y118{bottom:334.869000px;}
.yfd{bottom:336.451800px;}
.y218{bottom:338.078700px;}
.y153{bottom:338.790450px;}
.y181{bottom:342.262800px;}
.y1ba{bottom:342.782550px;}
.y2b3{bottom:344.374050px;}
.y292{bottom:344.893650px;}
.yda{bottom:345.215550px;}
.y244{bottom:346.774650px;}
.y10{bottom:347.294250px;}
.y167{bottom:347.648550px;}
.y33{bottom:348.562200px;}
.yf2{bottom:350.766750px;}
.y1e4{bottom:352.420350px;}
.yc5{bottom:353.108250px;}
.ya0{bottom:353.368200px;}
.y232{bottom:353.979300px;}
.y278{bottom:355.018650px;}
.y1fc{bottom:355.278600px;}
.y117{bottom:355.869000px;}
.y74{bottom:357.129900px;}
.yfc{bottom:357.451800px;}
.y217{bottom:359.078700px;}
.y152{bottom:359.790450px;}
.y13d{bottom:361.352400px;}
.y180{bottom:363.262800px;}
.y1b9{bottom:363.782550px;}
.y2b2{bottom:365.374050px;}
.y291{bottom:365.893650px;}
.y19e{bottom:366.215550px;}
.y251{bottom:367.349400px;}
.y243{bottom:367.774650px;}
.yf{bottom:368.294250px;}
.yf1{bottom:371.766750px;}
.y1e3{bottom:373.420350px;}
.yc4{bottom:374.108250px;}
.y9f{bottom:374.368200px;}
.y231{bottom:374.979300px;}
.y277{bottom:376.018650px;}
.y1fb{bottom:376.278600px;}
.y116{bottom:376.869000px;}
.y73{bottom:378.129900px;}
.y151{bottom:380.790450px;}
.y166{bottom:381.404550px;}
.y17f{bottom:384.262800px;}
.y1b8{bottom:384.782550px;}
.y32{bottom:385.370100px;}
.y2b1{bottom:386.374050px;}
.y290{bottom:386.893650px;}
.y265{bottom:387.215550px;}
.yd9{bottom:387.475500px;}
.y250{bottom:388.349400px;}
.y242{bottom:388.774650px;}
.yb1{bottom:389.294250px;}
.y1cf{bottom:392.743050px;}
.yf0{bottom:392.766750px;}
.y1e2{bottom:394.420350px;}
.yc3{bottom:395.108250px;}
.y9e{bottom:395.368200px;}
.y230{bottom:395.979300px;}
.y276{bottom:397.018650px;}
.y1fa{bottom:397.278600px;}
.y115{bottom:397.869000px;}
.y72{bottom:399.129900px;}
.y19d{bottom:399.971400px;}
.y216{bottom:401.338650px;}
.y150{bottom:401.790450px;}
.y165{bottom:402.404550px;}
.y58{bottom:403.503600px;}
.y31{bottom:405.170100px;}
.y17e{bottom:405.262800px;}
.y1b7{bottom:405.782550px;}
.y28f{bottom:407.893650px;}
.y264{bottom:408.215550px;}
.y241{bottom:409.774650px;}
.yb0{bottom:410.294250px;}
.y1e1{bottom:415.420350px;}
.y2b0{bottom:415.878000px;}
.yc2{bottom:416.108250px;}
.y9d{bottom:416.368200px;}
.y22f{bottom:416.979300px;}
.y275{bottom:418.018650px;}
.y1f9{bottom:418.278600px;}
.y24f{bottom:418.538400px;}
.y114{bottom:418.869000px;}
.y71{bottom:420.129900px;}
.y19c{bottom:420.971400px;}
.yef{bottom:422.270700px;}
.y14f{bottom:422.790450px;}
.y164{bottom:423.404550px;}
.y30{bottom:424.970100px;}
.y17d{bottom:426.262800px;}
.y1ce{bottom:426.499050px;}
.y1b6{bottom:426.782550px;}
.y28e{bottom:428.893650px;}
.y263{bottom:429.215550px;}
.yd8{bottom:429.735300px;}
.y240{bottom:430.774650px;}
.ye{bottom:431.294250px;}
.y1e0{bottom:436.420350px;}
.y2af{bottom:436.878000px;}
.yc1{bottom:437.108250px;}
.y9c{bottom:437.368200px;}
.y22e{bottom:437.979300px;}
.y274{bottom:439.018650px;}
.y1f8{bottom:439.278600px;}
.y113{bottom:439.869000px;}
.y57{bottom:440.311500px;}
.y19b{bottom:441.971400px;}
.y13e{bottom:443.270700px;}
.y215{bottom:443.598450px;}
.y14e{bottom:443.790450px;}
.y163{bottom:444.404550px;}
.y2f{bottom:444.770100px;}
.y17c{bottom:447.262800px;}
.y1cd{bottom:447.499050px;}
.y1b5{bottom:447.782550px;}
.y70{bottom:449.633850px;}
.y28d{bottom:449.893650px;}
.y262{bottom:450.215550px;}
.yd7{bottom:450.735300px;}
.yee{bottom:451.774650px;}
.yd{bottom:452.294250px;}
.y1df{bottom:457.420350px;}
.y2ae{bottom:457.878000px;}
.yc0{bottom:458.108250px;}
.y9b{bottom:458.368200px;}
.y22d{bottom:458.979300px;}
.y273{bottom:460.018650px;}
.y56{bottom:460.111500px;}
.y1f7{bottom:460.278600px;}
.y112{bottom:460.869000px;}
.y19a{bottom:462.971400px;}
.y2e{bottom:464.570100px;}
.y214{bottom:464.598450px;}
.y14d{bottom:464.790450px;}
.y162{bottom:465.404550px;}
.y17b{bottom:468.262800px;}
.y1cc{bottom:468.499050px;}
.y1b4{bottom:468.782550px;}
.y6f{bottom:470.633850px;}
.y28c{bottom:470.893650px;}
.y261{bottom:471.215550px;}
.yd6{bottom:471.735300px;}
.yed{bottom:472.774650px;}
.yaf{bottom:473.294250px;}
.y1de{bottom:478.420350px;}
.y2ad{bottom:478.878000px;}
.ybf{bottom:479.108250px;}
.y9a{bottom:479.368200px;}
.y55{bottom:479.911350px;}
.y22c{bottom:479.979300px;}
.y272{bottom:481.018650px;}
.y1f6{bottom:481.278600px;}
.y111{bottom:481.869000px;}
.y199{bottom:483.971400px;}
.y2d{bottom:484.370100px;}
.y213{bottom:485.598450px;}
.y14c{bottom:485.790450px;}
.y161{bottom:486.404550px;}
.y17a{bottom:489.262800px;}
.y1cb{bottom:489.499050px;}
.y1b3{bottom:489.782550px;}
.y6e{bottom:491.633850px;}
.y28b{bottom:491.893650px;}
.y260{bottom:492.215550px;}
.yd5{bottom:492.735300px;}
.yec{bottom:493.774650px;}
.y23f{bottom:494.034450px;}
.yae{bottom:494.294250px;}
.y54{bottom:499.711500px;}
.y2ac{bottom:499.878000px;}
.ybe{bottom:500.108250px;}
.y99{bottom:500.368200px;}
.y22b{bottom:500.979300px;}
.y271{bottom:502.018650px;}
.y1f5{bottom:502.278600px;}
.y2c{bottom:504.170100px;}
.y198{bottom:504.971400px;}
.y212{bottom:506.598450px;}
.y14b{bottom:506.790450px;}
.y160{bottom:507.404550px;}
.y1ca{bottom:510.499050px;}
.y1b2{bottom:510.782550px;}
.y6d{bottom:512.633850px;}
.y28a{bottom:512.893650px;}
.yd4{bottom:513.735300px;}
.yeb{bottom:514.774650px;}
.y23e{bottom:515.034450px;}
.yad{bottom:515.294250px;}
.y53{bottom:519.511500px;}
.y2ab{bottom:520.878000px;}
.ybd{bottom:521.108250px;}
.y98{bottom:521.368200px;}
.y22a{bottom:521.979300px;}
.y270{bottom:523.018650px;}
.y1f4{bottom:523.278600px;}
.y1d9{bottom:523.538400px;}
.y2b{bottom:523.970100px;}
.y110{bottom:524.128950px;}
.y197{bottom:525.971400px;}
.y211{bottom:527.598450px;}
.y14a{bottom:527.790300px;}
.y1c9{bottom:531.499050px;}
.y179{bottom:531.522600px;}
.y1b1{bottom:531.782550px;}
.y6c{bottom:533.633850px;}
.y289{bottom:533.893650px;}
.yea{bottom:535.774650px;}
.yc{bottom:536.294250px;}
.y52{bottom:539.311500px;}
.y2aa{bottom:541.878000px;}
.ybc{bottom:542.108250px;}
.y97{bottom:542.368050px;}
.y229{bottom:542.979300px;}
.y2a{bottom:543.770100px;}
.y26f{bottom:544.018650px;}
.y1f3{bottom:544.278600px;}
.y1d8{bottom:544.538400px;}
.y3{bottom:545.439600px;}
.y196{bottom:546.971400px;}
.y210{bottom:548.598450px;}
.y149{bottom:548.790300px;}
.y1c8{bottom:552.499050px;}
.y178{bottom:552.522600px;}
.y1b0{bottom:552.782550px;}
.y6b{bottom:554.633850px;}
.y288{bottom:554.893650px;}
.ye9{bottom:556.774650px;}
.y12f{bottom:557.034450px;}
.yb{bottom:557.294250px;}
.y2a9{bottom:562.878000px;}
.ybb{bottom:563.108250px;}
.y96{bottom:563.368050px;}
.y29{bottom:563.570100px;}
.y228{bottom:563.979300px;}
.y26e{bottom:565.018650px;}
.y1f2{bottom:565.278600px;}
.y10f{bottom:566.388750px;}
.y60{bottom:567.878700px;}
.y195{bottom:567.971400px;}
.y20f{bottom:569.598450px;}
.y148{bottom:569.790300px;}
.y1c7{bottom:573.499050px;}
.y1af{bottom:573.782550px;}
.y6a{bottom:575.633850px;}
.y287{bottom:575.893650px;}
.y51{bottom:576.119250px;}
.ye8{bottom:577.774650px;}
.y2{bottom:577.839600px;}
.y12e{bottom:578.034450px;}
.ya{bottom:578.294250px;}
.y28{bottom:583.370100px;}
.y2a8{bottom:583.878000px;}
.yb9{bottom:584.108250px;}
.y95{bottom:584.368050px;}
.y227{bottom:584.979300px;}
.y26d{bottom:586.018650px;}
.y1f1{bottom:586.278600px;}
.y10e{bottom:587.388750px;}
.y20e{bottom:590.598450px;}
.y147{bottom:590.790300px;}
.y1c6{bottom:594.499050px;}
.y177{bottom:594.782550px;}
.y50{bottom:595.919250px;}
.y69{bottom:596.633850px;}
.y286{bottom:596.893650px;}
.y9{bottom:599.294250px;}
.y194{bottom:601.727400px;}
.y5f{bottom:601.986600px;}
.y27{bottom:603.170100px;}
.y2a7{bottom:604.878000px;}
.yba{bottom:605.108250px;}
.y94{bottom:605.368050px;}
.y226{bottom:605.979300px;}
.y26c{bottom:607.018650px;}
.y10d{bottom:608.388750px;}
.y20d{bottom:611.598450px;}
.y12d{bottom:611.790300px;}
.y4f{bottom:615.719400px;}
.y176{bottom:615.782550px;}
.y68{bottom:617.633850px;}
.y285{bottom:617.893650px;}
.ye7{bottom:620.034450px;}
.y8{bottom:620.294250px;}
.y2a6{bottom:625.878000px;}
.y13c{bottom:626.108250px;}
.y92{bottom:626.368050px;}
.y225{bottom:626.979300px;}
.y26b{bottom:628.018650px;}
.y1c5{bottom:628.254900px;}
.y10c{bottom:629.388750px;}
.y20c{bottom:632.598450px;}
.y12c{bottom:632.790300px;}
.y4e{bottom:635.519250px;}
.y5e{bottom:636.094500px;}
.y175{bottom:636.782550px;}
.y67{bottom:638.633850px;}
.y284{bottom:638.893650px;}
.y26{bottom:639.978000px;}
.yd3{bottom:641.034450px;}
.y8e{bottom:641.294250px;}
.y193{bottom:643.987200px;}
.y2a5{bottom:646.878000px;}
.y93{bottom:647.368050px;}
.y224{bottom:647.979300px;}
.y26a{bottom:649.018650px;}
.y10b{bottom:650.388750px;}
.y20b{bottom:653.598450px;}
.y12b{bottom:653.790300px;}
.y4d{bottom:655.319250px;}
.y174{bottom:657.782550px;}
.y66{bottom:659.633850px;}
.y25{bottom:659.778000px;}
.y283{bottom:659.893650px;}
.y7{bottom:661.375950px;}
.yd2{bottom:662.034450px;}
.y8d{bottom:662.294250px;}
.y192{bottom:664.987200px;}
.y2a4{bottom:667.878000px;}
.yb8{bottom:668.368050px;}
.y223{bottom:668.979300px;}
.y5d{bottom:670.202400px;}
.y25f{bottom:670.538400px;}
.y10a{bottom:671.388750px;}
.y12a{bottom:674.790300px;}
.y4c{bottom:675.119250px;}
.y173{bottom:678.782550px;}
.y24{bottom:679.578000px;}
.y65{bottom:680.633850px;}
.y282{bottom:680.893650px;}
.y269{bottom:682.774650px;}
.y8c{bottom:683.294250px;}
.y2a3{bottom:688.878000px;}
.y222{bottom:689.979300px;}
.y25e{bottom:691.538400px;}
.y4b{bottom:694.919250px;}
.y129{bottom:695.790300px;}
.y1e{bottom:698.045700px;}
.y23{bottom:699.378000px;}
.y1ae{bottom:699.782550px;}
.y64{bottom:701.633850px;}
.y6{bottom:701.875950px;}
.y281{bottom:701.893650px;}
.y268{bottom:703.774650px;}
.y8b{bottom:704.294250px;}
.y5c{bottom:704.310300px;}
.y109{bottom:705.144600px;}
.y2a2{bottom:709.878000px;}
.y221{bottom:710.979300px;}
.y172{bottom:712.538400px;}
.y4a{bottom:714.719400px;}
.y128{bottom:716.790450px;}
.y1d{bottom:717.845700px;}
.y22{bottom:719.178000px;}
.y1ad{bottom:720.782550px;}
.y63{bottom:722.633850px;}
.y280{bottom:722.893650px;}
.y8a{bottom:725.294250px;}
.y2a1{bottom:730.878000px;}
.y49{bottom:734.519250px;}
.y1c{bottom:737.645700px;}
.y127{bottom:737.790450px;}
.y20a{bottom:738.378000px;}
.y5b{bottom:738.418050px;}
.y21{bottom:738.978000px;}
.y1ac{bottom:741.782550px;}
.y5{bottom:742.375950px;}
.y61{bottom:743.633850px;}
.y27f{bottom:743.893650px;}
.y91{bottom:744.643650px;}
.y267{bottom:746.034450px;}
.y89{bottom:746.294250px;}
.y2a0{bottom:751.878000px;}
.y48{bottom:754.319250px;}
.y1dd{bottom:754.538400px;}
.y1b{bottom:757.445700px;}
.y20{bottom:758.778000px;}
.y126{bottom:758.790450px;}
.y1ab{bottom:762.782550px;}
.y62{bottom:764.633850px;}
.y27e{bottom:764.893650px;}
.y209{bottom:766.128000px;}
.y266{bottom:767.034450px;}
.y88{bottom:767.294250px;}
.y90{bottom:772.393650px;}
.y5a{bottom:772.525950px;}
.y29f{bottom:772.878000px;}
.y47{bottom:774.119250px;}
.y1dc{bottom:775.538400px;}
.y1a{bottom:777.245700px;}
.y1f{bottom:778.578000px;}
.y125{bottom:779.790300px;}
.y4{bottom:782.875950px;}
.y1aa{bottom:783.782550px;}
.y27d{bottom:785.893650px;}
.y87{bottom:788.294250px;}
.y46{bottom:793.919250px;}
.y191{bottom:796.538400px;}
.y19{bottom:797.045700px;}
.y8f{bottom:800.143650px;}
.y124{bottom:800.790300px;}
.y15f{bottom:804.782550px;}
.y27c{bottom:806.893650px;}
.y86{bottom:809.294250px;}
.y45{bottom:813.719400px;}
.y18{bottom:816.845700px;}
.y190{bottom:817.538400px;}
.y13b{bottom:821.790300px;}
.y85{bottom:830.294250px;}
.y44{bottom:833.519400px;}
.y15e{bottom:838.538400px;}
.y84{bottom:851.294250px;}
.y43{bottom:853.319250px;}
.y15d{bottom:859.538400px;}
.y1{bottom:871.848450px;}
.y83{bottom:872.294250px;}
.y42{bottom:873.119250px;}
.y59{bottom:883.169250px;}
.y17{bottom:887.669250px;}
.y41{bottom:892.919250px;}
.y82{bottom:893.294250px;}
.hb{height:38.340000px;}
.h8{height:47.008301px;}
.h5{height:54.430664px;}
.ha{height:55.880859px;}
.h2{height:59.640000px;}
.hc{height:69.275391px;}
.h3{height:76.680000px;}
.h6{height:80.544000px;}
.h7{height:98.964844px;}
.h4{height:110.760000px;}
.h9{height:279.967170px;}
.h0{height:969.448500px;}
.h1{height:969.750000px;}
.w0{width:646.299000px;}
.w1{width:646.500000px;}
.x0{left:0.000000px;}
.xe{left:56.836800px;}
.x1c{left:61.702800px;}
.x8{left:63.779550px;}
.x11{left:65.165550px;}
.x4{left:67.332900px;}
.x2c{left:70.839750px;}
.x18{left:72.445650px;}
.x7{left:74.488500px;}
.x2f{left:76.221600px;}
.x17{left:79.816200px;}
.x19{left:81.849600px;}
.x20{left:85.039350px;}
.x25{left:86.616600px;}
.x10{left:89.291400px;}
.x14{left:91.590600px;}
.x29{left:93.203250px;}
.x2d{left:95.380650px;}
.xf{left:97.201200px;}
.x31{left:99.826800px;}
.x1a{left:106.869300px;}
.x6{left:109.763850px;}
.x22{left:117.141300px;}
.x28{left:120.903750px;}
.x3{left:127.969800px;}
.x21{left:131.240400px;}
.x23{left:146.173350px;}
.x1d{left:154.834350px;}
.x2{left:170.993850px;}
.x32{left:172.948950px;}
.x5{left:185.052000px;}
.x16{left:203.605200px;}
.x12{left:206.827800px;}
.x24{left:209.347350px;}
.xd{left:213.444600px;}
.x2b{left:214.554150px;}
.x9{left:217.408650px;}
.x1b{left:221.349900px;}
.x1f{left:224.020650px;}
.xc{left:236.385450px;}
.x13{left:241.451700px;}
.x1{left:249.660900px;}
.x30{left:258.253350px;}
.x27{left:259.880850px;}
.x2e{left:261.173850px;}
.x26{left:264.977100px;}
.xa{left:269.151300px;}
.x2a{left:299.382450px;}
.xb{left:403.912050px;}
.x1e{left:571.808700px;}
.x15{left:575.271450px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:149.333333pt;}
.ls2{letter-spacing:-5.546667pt;}
.lsd{letter-spacing:-1.173333pt;}
.ls1{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.006400pt;}
.lsc{letter-spacing:0.009600pt;}
.ls7{letter-spacing:0.082825pt;}
.ls9{letter-spacing:0.120341pt;}
.ls10{letter-spacing:0.469333pt;}
.lse{letter-spacing:1.173333pt;}
.lsf{letter-spacing:1.232000pt;}
.ls4{letter-spacing:1.706667pt;}
.ls6{letter-spacing:2.533333pt;}
.ls3{letter-spacing:2.933333pt;}
.ls8{letter-spacing:3.733333pt;}
.ls5{letter-spacing:9.493333pt;}
.ws58{word-spacing:-66.426884pt;}
.ws3{word-spacing:-33.600000pt;}
.ws9b{word-spacing:-20.608000pt;}
.ws1{word-spacing:-16.192000pt;}
.wscb{word-spacing:-14.490667pt;}
.wsc8{word-spacing:-14.432000pt;}
.wscc{word-spacing:-13.728000pt;}
.ws19{word-spacing:-13.258667pt;}
.wsd0{word-spacing:-9.642667pt;}
.wsa2{word-spacing:-7.729803pt;}
.wsa4{word-spacing:-3.520000pt;}
.wsb1{word-spacing:-3.285333pt;}
.wsc2{word-spacing:-3.226667pt;}
.wsc3{word-spacing:-2.933333pt;}
.wscd{word-spacing:-2.757333pt;}
.ws82{word-spacing:-2.698667pt;}
.wsa6{word-spacing:-2.640000pt;}
.ws66{word-spacing:-2.581333pt;}
.ws43{word-spacing:-2.522667pt;}
.wsa9{word-spacing:-2.464000pt;}
.ws20{word-spacing:-2.405333pt;}
.wsac{word-spacing:-2.346667pt;}
.ws6b{word-spacing:-2.288000pt;}
.ws4e{word-spacing:-2.229333pt;}
.ws91{word-spacing:-2.170667pt;}
.ws36{word-spacing:-2.112000pt;}
.ws4b{word-spacing:-2.053333pt;}
.ws24{word-spacing:-2.026667pt;}
.ws76{word-spacing:-1.994667pt;}
.ws95{word-spacing:-1.936000pt;}
.wsad{word-spacing:-1.877333pt;}
.ws74{word-spacing:-1.818667pt;}
.ws2{word-spacing:-1.792000pt;}
.wsa0{word-spacing:-1.760000pt;}
.ws26{word-spacing:-1.701333pt;}
.ws3f{word-spacing:-1.642667pt;}
.ws73{word-spacing:-1.584000pt;}
.ws8a{word-spacing:-1.525333pt;}
.wsaa{word-spacing:-1.466667pt;}
.ws71{word-spacing:-1.408000pt;}
.ws90{word-spacing:-1.349333pt;}
.ws1a{word-spacing:-1.290667pt;}
.ws79{word-spacing:-1.232000pt;}
.ws29{word-spacing:-1.173333pt;}
.ws56{word-spacing:-1.114667pt;}
.ws50{word-spacing:-1.056000pt;}
.ws8b{word-spacing:-0.997333pt;}
.ws96{word-spacing:-0.938667pt;}
.ws89{word-spacing:-0.880000pt;}
.ws5e{word-spacing:-0.821333pt;}
.ws93{word-spacing:-0.762667pt;}
.ws18{word-spacing:-0.704000pt;}
.ws77{word-spacing:-0.645333pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws7c{word-spacing:-0.528000pt;}
.ws1b{word-spacing:-0.469333pt;}
.ws88{word-spacing:-0.410667pt;}
.ws59{word-spacing:-0.352000pt;}
.ws22{word-spacing:-0.293333pt;}
.ws8c{word-spacing:-0.234667pt;}
.ws6f{word-spacing:-0.176000pt;}
.ws75{word-spacing:-0.117333pt;}
.ws63{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.wsab{word-spacing:0.058667pt;}
.ws13{word-spacing:0.117333pt;}
.ws9f{word-spacing:0.176000pt;}
.wsbd{word-spacing:0.234667pt;}
.ws16{word-spacing:0.293333pt;}
.ws78{word-spacing:0.352000pt;}
.wsb0{word-spacing:0.410667pt;}
.ws6c{word-spacing:0.469333pt;}
.wsa3{word-spacing:0.528000pt;}
.ws92{word-spacing:0.586667pt;}
.ws17{word-spacing:0.645333pt;}
.ws9c{word-spacing:0.704000pt;}
.wsb{word-spacing:0.762667pt;}
.wsa{word-spacing:0.821333pt;}
.ws6{word-spacing:0.880000pt;}
.ws53{word-spacing:0.938667pt;}
.ws40{word-spacing:0.997333pt;}
.ws28{word-spacing:1.056000pt;}
.ws2d{word-spacing:1.114667pt;}
.ws42{word-spacing:1.173333pt;}
.ws48{word-spacing:1.232000pt;}
.ws44{word-spacing:1.290667pt;}
.ws9a{word-spacing:1.349333pt;}
.ws8e{word-spacing:1.408000pt;}
.ws2f{word-spacing:1.466667pt;}
.ws30{word-spacing:1.525333pt;}
.ws9d{word-spacing:1.584000pt;}
.ws41{word-spacing:1.642667pt;}
.ws1f{word-spacing:1.701333pt;}
.ws3d{word-spacing:1.760000pt;}
.ws55{word-spacing:1.818667pt;}
.ws1c{word-spacing:1.877333pt;}
.ws45{word-spacing:1.936000pt;}
.ws62{word-spacing:1.994667pt;}
.wsa7{word-spacing:2.053333pt;}
.ws4d{word-spacing:2.112000pt;}
.ws6a{word-spacing:2.170667pt;}
.wsbe{word-spacing:2.229333pt;}
.ws6d{word-spacing:2.288000pt;}
.ws72{word-spacing:2.346667pt;}
.wsa1{word-spacing:2.405333pt;}
.ws8d{word-spacing:2.464000pt;}
.ws57{word-spacing:2.522667pt;}
.wsb7{word-spacing:2.581333pt;}
.ws4f{word-spacing:2.640000pt;}
.wsbf{word-spacing:2.698667pt;}
.ws97{word-spacing:2.757333pt;}
.ws3c{word-spacing:2.816000pt;}
.ws3b{word-spacing:2.874667pt;}
.ws32{word-spacing:2.933333pt;}
.ws5a{word-spacing:2.992000pt;}
.ws9e{word-spacing:3.050667pt;}
.ws4{word-spacing:3.109333pt;}
.ws31{word-spacing:3.168000pt;}
.ws35{word-spacing:3.226667pt;}
.ws68{word-spacing:3.285333pt;}
.wsc{word-spacing:3.344000pt;}
.ws10{word-spacing:3.402667pt;}
.ws60{word-spacing:3.461333pt;}
.ws87{word-spacing:3.520000pt;}
.ws5f{word-spacing:3.578667pt;}
.ws51{word-spacing:3.637333pt;}
.ws7{word-spacing:3.696000pt;}
.ws6e{word-spacing:3.754667pt;}
.ws2b{word-spacing:3.813333pt;}
.ws5d{word-spacing:3.872000pt;}
.wsa8{word-spacing:3.930667pt;}
.ws12{word-spacing:3.989333pt;}
.ws8{word-spacing:4.048000pt;}
.wsaf{word-spacing:4.106667pt;}
.ws21{word-spacing:4.165333pt;}
.ws15{word-spacing:4.224000pt;}
.ws98{word-spacing:4.282667pt;}
.ws9{word-spacing:4.341333pt;}
.wsb4{word-spacing:4.400000pt;}
.ws7e{word-spacing:4.458667pt;}
.wsc6{word-spacing:4.517333pt;}
.ws34{word-spacing:4.576000pt;}
.ws3e{word-spacing:4.634667pt;}
.ws38{word-spacing:4.693333pt;}
.ws46{word-spacing:4.752000pt;}
.ws8f{word-spacing:4.810667pt;}
.ws2a{word-spacing:4.869333pt;}
.ws4c{word-spacing:4.928000pt;}
.ws64{word-spacing:4.986667pt;}
.wsae{word-spacing:5.045333pt;}
.ws7a{word-spacing:5.104000pt;}
.ws94{word-spacing:5.162667pt;}
.ws11{word-spacing:5.221333pt;}
.ws14{word-spacing:5.280000pt;}
.ws86{word-spacing:5.338667pt;}
.ws2e{word-spacing:5.397333pt;}
.ws84{word-spacing:5.456000pt;}
.ws54{word-spacing:5.514667pt;}
.ws67{word-spacing:5.573333pt;}
.wsa5{word-spacing:5.632000pt;}
.ws27{word-spacing:5.690667pt;}
.ws7b{word-spacing:5.749333pt;}
.wsd2{word-spacing:5.808000pt;}
.ws47{word-spacing:5.866667pt;}
.ws5b{word-spacing:5.925333pt;}
.wsc7{word-spacing:5.984000pt;}
.ws1d{word-spacing:6.042667pt;}
.wsb3{word-spacing:6.101333pt;}
.ws83{word-spacing:6.160000pt;}
.ws3a{word-spacing:6.218667pt;}
.wsb2{word-spacing:6.277333pt;}
.ws1e{word-spacing:6.394667pt;}
.wsb8{word-spacing:6.453333pt;}
.ws99{word-spacing:6.512000pt;}
.ws2c{word-spacing:6.570667pt;}
.ws5c{word-spacing:6.629333pt;}
.ws52{word-spacing:6.688000pt;}
.ws23{word-spacing:6.746667pt;}
.ws81{word-spacing:6.805333pt;}
.ws5{word-spacing:6.864000pt;}
.ws33{word-spacing:6.922667pt;}
.wsba{word-spacing:6.981333pt;}
.ws37{word-spacing:7.040000pt;}
.wsc4{word-spacing:7.098667pt;}
.ws49{word-spacing:7.392000pt;}
.ws61{word-spacing:7.450667pt;}
.ws65{word-spacing:7.509333pt;}
.ws69{word-spacing:7.568000pt;}
.wsb6{word-spacing:7.626667pt;}
.ws39{word-spacing:7.744000pt;}
.ws7d{word-spacing:7.802667pt;}
.wse{word-spacing:7.861333pt;}
.wsf{word-spacing:7.920000pt;}
.wsc1{word-spacing:7.978667pt;}
.wsd1{word-spacing:8.154667pt;}
.wsb9{word-spacing:8.213333pt;}
.ws70{word-spacing:8.389333pt;}
.wsbb{word-spacing:8.741333pt;}
.wsbc{word-spacing:9.269333pt;}
.wsb5{word-spacing:9.386667pt;}
.wsd{word-spacing:9.504000pt;}
.ws25{word-spacing:9.973333pt;}
.ws7f{word-spacing:10.442667pt;}
.wsc9{word-spacing:10.677333pt;}
.wsc0{word-spacing:11.498667pt;}
.wsca{word-spacing:11.792000pt;}
.ws85{word-spacing:12.026667pt;}
.wsc5{word-spacing:12.496000pt;}
.ws80{word-spacing:13.669333pt;}
.wsce{word-spacing:16.368000pt;}
.wscf{word-spacing:49.045333pt;}
._e{margin-left:-15.604800pt;}
._d{margin-left:-11.940267pt;}
._a{margin-left:-7.925333pt;}
._c{margin-left:-6.485333pt;}
._1{margin-left:-5.088000pt;}
._2{margin-left:-3.936000pt;}
._4{margin-left:-2.805333pt;}
._0{margin-left:-1.493333pt;}
._3{width:1.632000pt;}
._8{width:2.554133pt;}
._6{width:3.960000pt;}
._5{width:5.546667pt;}
._7{width:6.767467pt;}
._9{width:7.990400pt;}
._b{width:17.803733pt;}
.fs9{font-size:34.202667pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs2{font-size:138.666667pt;}
.fs7{font-size:293.924267pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:31.157467pt;}
.y25d{bottom:76.076133pt;}
.y18d{bottom:80.233600pt;}
.y1db{bottom:80.695600pt;}
.y40{bottom:81.033067pt;}
.y29e{bottom:82.572133pt;}
.ye6{bottom:82.858267pt;}
.y13a{bottom:84.244133pt;}
.yb7{bottom:84.706000pt;}
.y123{bottom:84.769067pt;}
.y80{bottom:85.889867pt;}
.y108{bottom:86.175867pt;}
.y171{bottom:88.338667pt;}
.y137{bottom:88.800533pt;}
.y1f0{bottom:89.262400pt;}
.yd1{bottom:89.874000pt;}
.y146{bottom:89.955467pt;}
.yac{bottom:90.104933pt;}
.y1d7{bottom:90.165333pt;}
.y1a9{bottom:90.186400pt;}
.y208{bottom:91.803200pt;}
.y25c{bottom:94.742800pt;}
.y15c{bottom:95.351733pt;}
.y3f{bottom:98.633067pt;}
.y18c{bottom:98.900267pt;}
.y1da{bottom:99.362267pt;}
.y18f{bottom:99.446267pt;}
.y29d{bottom:101.238800pt;}
.ye5{bottom:101.524933pt;}
.y139{bottom:102.910800pt;}
.yb6{bottom:103.372667pt;}
.y122{bottom:103.435733pt;}
.y7f{bottom:104.556533pt;}
.y107{bottom:104.842533pt;}
.yfb{bottom:105.997333pt;}
.y170{bottom:107.005333pt;}
.y136{bottom:107.467200pt;}
.y1ef{bottom:107.929067pt;}
.yd0{bottom:108.540667pt;}
.y145{bottom:108.622133pt;}
.yab{bottom:108.771600pt;}
.y1d6{bottom:108.832000pt;}
.y1a8{bottom:108.853067pt;}
.y23d{bottom:109.314933pt;}
.y207{bottom:110.469867pt;}
.y25b{bottom:113.409467pt;}
.y15b{bottom:114.018400pt;}
.y3e{bottom:116.233067pt;}
.y18b{bottom:117.566933pt;}
.y1c4{bottom:118.028933pt;}
.y18e{bottom:118.112933pt;}
.y29c{bottom:119.905467pt;}
.ye4{bottom:120.191600pt;}
.y24e{bottom:121.577467pt;}
.yb5{bottom:122.039333pt;}
.y121{bottom:122.102400pt;}
.y7e{bottom:123.223067pt;}
.y106{bottom:123.509200pt;}
.yfa{bottom:124.664000pt;}
.y135{bottom:126.133867pt;}
.y1ee{bottom:126.595867pt;}
.ycf{bottom:127.207333pt;}
.yaa{bottom:127.438400pt;}
.y1d5{bottom:127.498667pt;}
.y1a7{bottom:127.519733pt;}
.y23c{bottom:127.981600pt;}
.y206{bottom:129.136533pt;}
.y25a{bottom:132.076133pt;}
.y15a{bottom:132.685067pt;}
.y3d{bottom:133.833067pt;}
.y144{bottom:134.847733pt;}
.y18a{bottom:136.233600pt;}
.y1c3{bottom:136.695600pt;}
.y16f{bottom:137.010533pt;}
.y29b{bottom:138.572133pt;}
.ye3{bottom:138.858267pt;}
.y24d{bottom:140.244133pt;}
.y138{bottom:140.475067pt;}
.y16{bottom:140.706000pt;}
.y120{bottom:140.769067pt;}
.y7d{bottom:141.889733pt;}
.y105{bottom:142.175867pt;}
.yf9{bottom:143.330667pt;}
.y134{bottom:144.800533pt;}
.y1ed{bottom:145.262533pt;}
.yce{bottom:145.874000pt;}
.ya9{bottom:146.105067pt;}
.y1d4{bottom:146.165333pt;}
.y1a6{bottom:146.186400pt;}
.y23b{bottom:146.648267pt;}
.y205{bottom:147.803200pt;}
.y259{bottom:150.742800pt;}
.y220{bottom:151.181067pt;}
.y3c{bottom:151.433067pt;}
.y143{bottom:153.514400pt;}
.y189{bottom:154.900267pt;}
.y1c2{bottom:155.362267pt;}
.y29a{bottom:157.238800pt;}
.ye2{bottom:157.524933pt;}
.y24c{bottom:158.910800pt;}
.y15{bottom:159.372667pt;}
.y11f{bottom:159.435733pt;}
.y7c{bottom:160.556400pt;}
.y104{bottom:160.842533pt;}
.yf8{bottom:161.997333pt;}
.y133{bottom:163.467200pt;}
.y1ec{bottom:163.929200pt;}
.ycd{bottom:164.540667pt;}
.ya8{bottom:164.771733pt;}
.y1d3{bottom:164.832000pt;}
.y1a5{bottom:164.853067pt;}
.y23a{bottom:165.314933pt;}
.y204{bottom:166.469867pt;}
.y16e{bottom:167.015733pt;}
.y3b{bottom:169.033067pt;}
.y258{bottom:169.409467pt;}
.y21f{bottom:169.847733pt;}
.y159{bottom:170.249333pt;}
.y142{bottom:172.181067pt;}
.y188{bottom:173.566933pt;}
.y1c1{bottom:174.028933pt;}
.y299{bottom:175.905467pt;}
.ye1{bottom:176.191600pt;}
.y24b{bottom:177.577467pt;}
.y14{bottom:178.039333pt;}
.y11e{bottom:178.102400pt;}
.y7b{bottom:179.223067pt;}
.y103{bottom:179.509200pt;}
.yf7{bottom:180.664000pt;}
.y132{bottom:182.133867pt;}
.y1eb{bottom:182.595867pt;}
.ycc{bottom:183.207333pt;}
.ya7{bottom:183.438400pt;}
.y1d2{bottom:183.498667pt;}
.y1a4{bottom:183.519733pt;}
.y239{bottom:183.981600pt;}
.y203{bottom:185.136533pt;}
.y16d{bottom:185.682400pt;}
.y3a{bottom:186.633067pt;}
.y21e{bottom:188.514400pt;}
.y141{bottom:190.847733pt;}
.y187{bottom:192.233600pt;}
.y1c0{bottom:192.695600pt;}
.y298{bottom:194.572133pt;}
.ye0{bottom:194.858267pt;}
.y257{bottom:195.635200pt;}
.y24a{bottom:196.244133pt;}
.y13{bottom:196.706000pt;}
.y7a{bottom:197.889733pt;}
.y102{bottom:198.175867pt;}
.yf6{bottom:199.330667pt;}
.y1ea{bottom:201.262533pt;}
.ycb{bottom:201.874000pt;}
.ya6{bottom:202.105067pt;}
.y1d1{bottom:202.165333pt;}
.y1a3{bottom:202.186400pt;}
.y238{bottom:202.648267pt;}
.y202{bottom:203.803200pt;}
.y39{bottom:204.233067pt;}
.y11d{bottom:204.328000pt;}
.y16c{bottom:204.349067pt;}
.y2b8{bottom:205.217867pt;}
.y21d{bottom:207.181067pt;}
.y158{bottom:207.813733pt;}
.y140{bottom:209.514400pt;}
.y186{bottom:210.900267pt;}
.y1bf{bottom:211.362267pt;}
.y297{bottom:213.238800pt;}
.ydf{bottom:213.524933pt;}
.y256{bottom:214.301867pt;}
.y249{bottom:214.910800pt;}
.y12{bottom:215.372667pt;}
.y79{bottom:216.556400pt;}
.y101{bottom:216.842533pt;}
.y131{bottom:219.698133pt;}
.y1e9{bottom:219.929200pt;}
.yca{bottom:220.540667pt;}
.ya5{bottom:220.771733pt;}
.y1d0{bottom:220.832000pt;}
.y1a2{bottom:220.853067pt;}
.y237{bottom:221.314933pt;}
.y38{bottom:221.833067pt;}
.y201{bottom:222.469867pt;}
.y27b{bottom:222.700800pt;}
.y11c{bottom:222.994667pt;}
.y16b{bottom:223.015733pt;}
.y2b7{bottom:223.884533pt;}
.y21c{bottom:225.847733pt;}
.y157{bottom:226.480400pt;}
.y13f{bottom:228.181067pt;}
.y185{bottom:229.566933pt;}
.y1be{bottom:230.028933pt;}
.y296{bottom:231.905467pt;}
.yde{bottom:232.191600pt;}
.y255{bottom:232.968533pt;}
.y248{bottom:233.577467pt;}
.yb4{bottom:234.039333pt;}
.y78{bottom:235.223067pt;}
.y100{bottom:235.509200pt;}
.yf5{bottom:236.895067pt;}
.y130{bottom:238.364800pt;}
.y1e8{bottom:238.595867pt;}
.yc9{bottom:239.207333pt;}
.y37{bottom:239.433067pt;}
.ya4{bottom:239.438400pt;}
.y1a1{bottom:239.519733pt;}
.y236{bottom:239.981600pt;}
.y200{bottom:241.136533pt;}
.y27a{bottom:241.367467pt;}
.y11b{bottom:241.661333pt;}
.y16a{bottom:241.682400pt;}
.y2b6{bottom:242.551200pt;}
.y21b{bottom:244.514400pt;}
.y156{bottom:245.147067pt;}
.y184{bottom:248.233600pt;}
.y1bd{bottom:248.695600pt;}
.y295{bottom:250.572133pt;}
.ydd{bottom:250.858267pt;}
.y254{bottom:251.635200pt;}
.y247{bottom:252.244133pt;}
.yb3{bottom:252.706000pt;}
.y77{bottom:253.889733pt;}
.yff{bottom:254.175867pt;}
.y36{bottom:257.033067pt;}
.y1e7{bottom:257.262533pt;}
.yc8{bottom:257.874000pt;}
.ya3{bottom:258.105067pt;}
.y1a0{bottom:258.186400pt;}
.y235{bottom:258.648267pt;}
.y1ff{bottom:259.803200pt;}
.y11a{bottom:260.328000pt;}
.y169{bottom:260.349067pt;}
.y21a{bottom:263.181067pt;}
.y155{bottom:263.813733pt;}
.y183{bottom:266.900267pt;}
.y1bc{bottom:267.362267pt;}
.y2b5{bottom:268.776933pt;}
.y294{bottom:269.238800pt;}
.ydc{bottom:269.524933pt;}
.y246{bottom:270.910800pt;}
.yb2{bottom:271.372667pt;}
.y76{bottom:272.556400pt;}
.yfe{bottom:272.842533pt;}
.yf4{bottom:274.459333pt;}
.y35{bottom:274.633067pt;}
.y1e6{bottom:275.929200pt;}
.yc7{bottom:276.540667pt;}
.ya2{bottom:276.771733pt;}
.y19f{bottom:276.853067pt;}
.y234{bottom:277.314933pt;}
.y253{bottom:277.860933pt;}
.y1fe{bottom:278.469867pt;}
.y119{bottom:278.994667pt;}
.y168{bottom:279.015733pt;}
.y219{bottom:281.847733pt;}
.y154{bottom:282.480400pt;}
.y182{bottom:285.566933pt;}
.y1bb{bottom:286.028933pt;}
.y2b4{bottom:287.443600pt;}
.y293{bottom:287.905467pt;}
.ydb{bottom:288.191600pt;}
.y245{bottom:289.577467pt;}
.y11{bottom:290.039333pt;}
.y75{bottom:291.223067pt;}
.y34{bottom:292.233067pt;}
.yf3{bottom:293.126000pt;}
.y1e5{bottom:294.595867pt;}
.yc6{bottom:295.207333pt;}
.ya1{bottom:295.438400pt;}
.y233{bottom:295.981600pt;}
.y252{bottom:296.527600pt;}
.y279{bottom:296.905467pt;}
.y1fd{bottom:297.136533pt;}
.y118{bottom:297.661333pt;}
.yfd{bottom:299.068267pt;}
.y218{bottom:300.514400pt;}
.y153{bottom:301.147067pt;}
.y181{bottom:304.233600pt;}
.y1ba{bottom:304.695600pt;}
.y2b3{bottom:306.110267pt;}
.y292{bottom:306.572133pt;}
.yda{bottom:306.858267pt;}
.y244{bottom:308.244133pt;}
.y10{bottom:308.706000pt;}
.y167{bottom:309.020933pt;}
.y33{bottom:309.833067pt;}
.yf2{bottom:311.792667pt;}
.y1e4{bottom:313.262533pt;}
.yc5{bottom:313.874000pt;}
.ya0{bottom:314.105067pt;}
.y232{bottom:314.648267pt;}
.y278{bottom:315.572133pt;}
.y1fc{bottom:315.803200pt;}
.y117{bottom:316.328000pt;}
.y74{bottom:317.448800pt;}
.yfc{bottom:317.734933pt;}
.y217{bottom:319.181067pt;}
.y152{bottom:319.813733pt;}
.y13d{bottom:321.202133pt;}
.y180{bottom:322.900267pt;}
.y1b9{bottom:323.362267pt;}
.y2b2{bottom:324.776933pt;}
.y291{bottom:325.238800pt;}
.y19e{bottom:325.524933pt;}
.y251{bottom:326.532800pt;}
.y243{bottom:326.910800pt;}
.yf{bottom:327.372667pt;}
.yf1{bottom:330.459333pt;}
.y1e3{bottom:331.929200pt;}
.yc4{bottom:332.540667pt;}
.y9f{bottom:332.771733pt;}
.y231{bottom:333.314933pt;}
.y277{bottom:334.238800pt;}
.y1fb{bottom:334.469867pt;}
.y116{bottom:334.994667pt;}
.y73{bottom:336.115467pt;}
.y151{bottom:338.480400pt;}
.y166{bottom:339.026267pt;}
.y17f{bottom:341.566933pt;}
.y1b8{bottom:342.028933pt;}
.y32{bottom:342.551200pt;}
.y2b1{bottom:343.443600pt;}
.y290{bottom:343.905467pt;}
.y265{bottom:344.191600pt;}
.yd9{bottom:344.422667pt;}
.y250{bottom:345.199467pt;}
.y242{bottom:345.577467pt;}
.yb1{bottom:346.039333pt;}
.y1cf{bottom:349.104933pt;}
.yf0{bottom:349.126000pt;}
.y1e2{bottom:350.595867pt;}
.yc3{bottom:351.207333pt;}
.y9e{bottom:351.438400pt;}
.y230{bottom:351.981600pt;}
.y276{bottom:352.905467pt;}
.y1fa{bottom:353.136533pt;}
.y115{bottom:353.661333pt;}
.y72{bottom:354.782133pt;}
.y19d{bottom:355.530133pt;}
.y216{bottom:356.745467pt;}
.y150{bottom:357.147067pt;}
.y165{bottom:357.692933pt;}
.y58{bottom:358.669867pt;}
.y31{bottom:360.151200pt;}
.y17e{bottom:360.233600pt;}
.y1b7{bottom:360.695600pt;}
.y28f{bottom:362.572133pt;}
.y264{bottom:362.858267pt;}
.y241{bottom:364.244133pt;}
.yb0{bottom:364.706000pt;}
.y1e1{bottom:369.262533pt;}
.y2b0{bottom:369.669333pt;}
.yc2{bottom:369.874000pt;}
.y9d{bottom:370.105067pt;}
.y22f{bottom:370.648267pt;}
.y275{bottom:371.572133pt;}
.y1f9{bottom:371.803200pt;}
.y24f{bottom:372.034133pt;}
.y114{bottom:372.328000pt;}
.y71{bottom:373.448800pt;}
.y19c{bottom:374.196800pt;}
.yef{bottom:375.351733pt;}
.y14f{bottom:375.813733pt;}
.y164{bottom:376.359600pt;}
.y30{bottom:377.751200pt;}
.y17d{bottom:378.900267pt;}
.y1ce{bottom:379.110267pt;}
.y1b6{bottom:379.362267pt;}
.y28e{bottom:381.238800pt;}
.y263{bottom:381.524933pt;}
.yd8{bottom:381.986933pt;}
.y240{bottom:382.910800pt;}
.ye{bottom:383.372667pt;}
.y1e0{bottom:387.929200pt;}
.y2af{bottom:388.336000pt;}
.yc1{bottom:388.540667pt;}
.y9c{bottom:388.771733pt;}
.y22e{bottom:389.314933pt;}
.y274{bottom:390.238800pt;}
.y1f8{bottom:390.469867pt;}
.y113{bottom:390.994667pt;}
.y57{bottom:391.388000pt;}
.y19b{bottom:392.863467pt;}
.y13e{bottom:394.018400pt;}
.y215{bottom:394.309733pt;}
.y14e{bottom:394.480400pt;}
.y163{bottom:395.026267pt;}
.y2f{bottom:395.351200pt;}
.y17c{bottom:397.566933pt;}
.y1cd{bottom:397.776933pt;}
.y1b5{bottom:398.028933pt;}
.y70{bottom:399.674533pt;}
.y28d{bottom:399.905467pt;}
.y262{bottom:400.191600pt;}
.yd7{bottom:400.653600pt;}
.yee{bottom:401.577467pt;}
.yd{bottom:402.039333pt;}
.y1df{bottom:406.595867pt;}
.y2ae{bottom:407.002667pt;}
.yc0{bottom:407.207333pt;}
.y9b{bottom:407.438400pt;}
.y22d{bottom:407.981600pt;}
.y273{bottom:408.905467pt;}
.y56{bottom:408.988000pt;}
.y1f7{bottom:409.136533pt;}
.y112{bottom:409.661333pt;}
.y19a{bottom:411.530133pt;}
.y2e{bottom:412.951200pt;}
.y214{bottom:412.976400pt;}
.y14d{bottom:413.147067pt;}
.y162{bottom:413.692933pt;}
.y17b{bottom:416.233600pt;}
.y1cc{bottom:416.443600pt;}
.y1b4{bottom:416.695600pt;}
.y6f{bottom:418.341200pt;}
.y28c{bottom:418.572133pt;}
.y261{bottom:418.858267pt;}
.yd6{bottom:419.320267pt;}
.yed{bottom:420.244133pt;}
.yaf{bottom:420.706000pt;}
.y1de{bottom:425.262533pt;}
.y2ad{bottom:425.669333pt;}
.ybf{bottom:425.874000pt;}
.y9a{bottom:426.105067pt;}
.y55{bottom:426.587867pt;}
.y22c{bottom:426.648267pt;}
.y272{bottom:427.572133pt;}
.y1f6{bottom:427.803200pt;}
.y111{bottom:428.328000pt;}
.y199{bottom:430.196800pt;}
.y2d{bottom:430.551200pt;}
.y213{bottom:431.643067pt;}
.y14c{bottom:431.813733pt;}
.y161{bottom:432.359600pt;}
.y17a{bottom:434.900267pt;}
.y1cb{bottom:435.110267pt;}
.y1b3{bottom:435.362267pt;}
.y6e{bottom:437.007867pt;}
.y28b{bottom:437.238800pt;}
.y260{bottom:437.524933pt;}
.yd5{bottom:437.986933pt;}
.yec{bottom:438.910800pt;}
.y23f{bottom:439.141733pt;}
.yae{bottom:439.372667pt;}
.y54{bottom:444.188000pt;}
.y2ac{bottom:444.336000pt;}
.ybe{bottom:444.540667pt;}
.y99{bottom:444.771733pt;}
.y22b{bottom:445.314933pt;}
.y271{bottom:446.238800pt;}
.y1f5{bottom:446.469867pt;}
.y2c{bottom:448.151200pt;}
.y198{bottom:448.863467pt;}
.y212{bottom:450.309733pt;}
.y14b{bottom:450.480400pt;}
.y160{bottom:451.026267pt;}
.y1ca{bottom:453.776933pt;}
.y1b2{bottom:454.028933pt;}
.y6d{bottom:455.674533pt;}
.y28a{bottom:455.905467pt;}
.yd4{bottom:456.653600pt;}
.yeb{bottom:457.577467pt;}
.y23e{bottom:457.808400pt;}
.yad{bottom:458.039333pt;}
.y53{bottom:461.788000pt;}
.y2ab{bottom:463.002667pt;}
.ybd{bottom:463.207333pt;}
.y98{bottom:463.438400pt;}
.y22a{bottom:463.981600pt;}
.y270{bottom:464.905467pt;}
.y1f4{bottom:465.136533pt;}
.y1d9{bottom:465.367467pt;}
.y2b{bottom:465.751200pt;}
.y110{bottom:465.892400pt;}
.y197{bottom:467.530133pt;}
.y211{bottom:468.976400pt;}
.y14a{bottom:469.146933pt;}
.y1c9{bottom:472.443600pt;}
.y179{bottom:472.464533pt;}
.y1b1{bottom:472.695600pt;}
.y6c{bottom:474.341200pt;}
.y289{bottom:474.572133pt;}
.yea{bottom:476.244133pt;}
.yc{bottom:476.706000pt;}
.y52{bottom:479.388000pt;}
.y2aa{bottom:481.669333pt;}
.ybc{bottom:481.874000pt;}
.y97{bottom:482.104933pt;}
.y229{bottom:482.648267pt;}
.y2a{bottom:483.351200pt;}
.y26f{bottom:483.572133pt;}
.y1f3{bottom:483.803200pt;}
.y1d8{bottom:484.034133pt;}
.y3{bottom:484.835200pt;}
.y196{bottom:486.196800pt;}
.y210{bottom:487.643067pt;}
.y149{bottom:487.813600pt;}
.y1c8{bottom:491.110267pt;}
.y178{bottom:491.131200pt;}
.y1b0{bottom:491.362267pt;}
.y6b{bottom:493.007867pt;}
.y288{bottom:493.238800pt;}
.ye9{bottom:494.910800pt;}
.y12f{bottom:495.141733pt;}
.yb{bottom:495.372667pt;}
.y2a9{bottom:500.336000pt;}
.ybb{bottom:500.540667pt;}
.y96{bottom:500.771600pt;}
.y29{bottom:500.951200pt;}
.y228{bottom:501.314933pt;}
.y26e{bottom:502.238800pt;}
.y1f2{bottom:502.469867pt;}
.y10f{bottom:503.456667pt;}
.y60{bottom:504.781067pt;}
.y195{bottom:504.863467pt;}
.y20f{bottom:506.309733pt;}
.y148{bottom:506.480267pt;}
.y1c7{bottom:509.776933pt;}
.y1af{bottom:510.028933pt;}
.y6a{bottom:511.674533pt;}
.y287{bottom:511.905467pt;}
.y51{bottom:512.106000pt;}
.ye8{bottom:513.577467pt;}
.y2{bottom:513.635200pt;}
.y12e{bottom:513.808400pt;}
.ya{bottom:514.039333pt;}
.y28{bottom:518.551200pt;}
.y2a8{bottom:519.002667pt;}
.yb9{bottom:519.207333pt;}
.y95{bottom:519.438267pt;}
.y227{bottom:519.981600pt;}
.y26d{bottom:520.905467pt;}
.y1f1{bottom:521.136533pt;}
.y10e{bottom:522.123333pt;}
.y20e{bottom:524.976400pt;}
.y147{bottom:525.146933pt;}
.y1c6{bottom:528.443600pt;}
.y177{bottom:528.695600pt;}
.y50{bottom:529.706000pt;}
.y69{bottom:530.341200pt;}
.y286{bottom:530.572133pt;}
.y9{bottom:532.706000pt;}
.y194{bottom:534.868800pt;}
.y5f{bottom:535.099200pt;}
.y27{bottom:536.151200pt;}
.y2a7{bottom:537.669333pt;}
.yba{bottom:537.874000pt;}
.y94{bottom:538.104933pt;}
.y226{bottom:538.648267pt;}
.y26c{bottom:539.572133pt;}
.y10d{bottom:540.790000pt;}
.y20d{bottom:543.643067pt;}
.y12d{bottom:543.813600pt;}
.y4f{bottom:547.306133pt;}
.y176{bottom:547.362267pt;}
.y68{bottom:549.007867pt;}
.y285{bottom:549.238800pt;}
.ye7{bottom:551.141733pt;}
.y8{bottom:551.372667pt;}
.y2a6{bottom:556.336000pt;}
.y13c{bottom:556.540667pt;}
.y92{bottom:556.771600pt;}
.y225{bottom:557.314933pt;}
.y26b{bottom:558.238800pt;}
.y1c5{bottom:558.448800pt;}
.y10c{bottom:559.456667pt;}
.y20c{bottom:562.309733pt;}
.y12c{bottom:562.480267pt;}
.y4e{bottom:564.906000pt;}
.y5e{bottom:565.417333pt;}
.y175{bottom:566.028933pt;}
.y67{bottom:567.674533pt;}
.y284{bottom:567.905467pt;}
.y26{bottom:568.869333pt;}
.yd3{bottom:569.808400pt;}
.y8e{bottom:570.039333pt;}
.y193{bottom:572.433067pt;}
.y2a5{bottom:575.002667pt;}
.y93{bottom:575.438267pt;}
.y224{bottom:575.981600pt;}
.y26a{bottom:576.905467pt;}
.y10b{bottom:578.123333pt;}
.y20b{bottom:580.976400pt;}
.y12b{bottom:581.146933pt;}
.y4d{bottom:582.506000pt;}
.y174{bottom:584.695600pt;}
.y66{bottom:586.341200pt;}
.y25{bottom:586.469333pt;}
.y283{bottom:586.572133pt;}
.y7{bottom:587.889733pt;}
.yd2{bottom:588.475067pt;}
.y8d{bottom:588.706000pt;}
.y192{bottom:591.099733pt;}
.y2a4{bottom:593.669333pt;}
.yb8{bottom:594.104933pt;}
.y223{bottom:594.648267pt;}
.y5d{bottom:595.735467pt;}
.y25f{bottom:596.034133pt;}
.y10a{bottom:596.790000pt;}
.y12a{bottom:599.813600pt;}
.y4c{bottom:600.106000pt;}
.y173{bottom:603.362267pt;}
.y24{bottom:604.069333pt;}
.y65{bottom:605.007867pt;}
.y282{bottom:605.238800pt;}
.y269{bottom:606.910800pt;}
.y8c{bottom:607.372667pt;}
.y2a3{bottom:612.336000pt;}
.y222{bottom:613.314933pt;}
.y25e{bottom:614.700800pt;}
.y4b{bottom:617.706000pt;}
.y129{bottom:618.480267pt;}
.y1e{bottom:620.485067pt;}
.y23{bottom:621.669333pt;}
.y1ae{bottom:622.028933pt;}
.y64{bottom:623.674533pt;}
.y6{bottom:623.889733pt;}
.y281{bottom:623.905467pt;}
.y268{bottom:625.577467pt;}
.y8b{bottom:626.039333pt;}
.y5c{bottom:626.053600pt;}
.y109{bottom:626.795200pt;}
.y2a2{bottom:631.002667pt;}
.y221{bottom:631.981600pt;}
.y172{bottom:633.367467pt;}
.y4a{bottom:635.306133pt;}
.y128{bottom:637.147067pt;}
.y1d{bottom:638.085067pt;}
.y22{bottom:639.269333pt;}
.y1ad{bottom:640.695600pt;}
.y63{bottom:642.341200pt;}
.y280{bottom:642.572133pt;}
.y8a{bottom:644.706000pt;}
.y2a1{bottom:649.669333pt;}
.y49{bottom:652.906000pt;}
.y1c{bottom:655.685067pt;}
.y127{bottom:655.813733pt;}
.y20a{bottom:656.336000pt;}
.y5b{bottom:656.371600pt;}
.y21{bottom:656.869333pt;}
.y1ac{bottom:659.362267pt;}
.y5{bottom:659.889733pt;}
.y61{bottom:661.007867pt;}
.y27f{bottom:661.238800pt;}
.y91{bottom:661.905467pt;}
.y267{bottom:663.141733pt;}
.y89{bottom:663.372667pt;}
.y2a0{bottom:668.336000pt;}
.y48{bottom:670.506000pt;}
.y1dd{bottom:670.700800pt;}
.y1b{bottom:673.285067pt;}
.y20{bottom:674.469333pt;}
.y126{bottom:674.480400pt;}
.y1ab{bottom:678.028933pt;}
.y62{bottom:679.674533pt;}
.y27e{bottom:679.905467pt;}
.y209{bottom:681.002667pt;}
.y266{bottom:681.808400pt;}
.y88{bottom:682.039333pt;}
.y90{bottom:686.572133pt;}
.y5a{bottom:686.689733pt;}
.y29f{bottom:687.002667pt;}
.y47{bottom:688.106000pt;}
.y1dc{bottom:689.367467pt;}
.y1a{bottom:690.885067pt;}
.y1f{bottom:692.069333pt;}
.y125{bottom:693.146933pt;}
.y4{bottom:695.889733pt;}
.y1aa{bottom:696.695600pt;}
.y27d{bottom:698.572133pt;}
.y87{bottom:700.706000pt;}
.y46{bottom:705.706000pt;}
.y191{bottom:708.034133pt;}
.y19{bottom:708.485067pt;}
.y8f{bottom:711.238800pt;}
.y124{bottom:711.813600pt;}
.y15f{bottom:715.362267pt;}
.y27c{bottom:717.238800pt;}
.y86{bottom:719.372667pt;}
.y45{bottom:723.306133pt;}
.y18{bottom:726.085067pt;}
.y190{bottom:726.700800pt;}
.y13b{bottom:730.480267pt;}
.y85{bottom:738.039333pt;}
.y44{bottom:740.906133pt;}
.y15e{bottom:745.367467pt;}
.y84{bottom:756.706000pt;}
.y43{bottom:758.506000pt;}
.y15d{bottom:764.034133pt;}
.y1{bottom:774.976400pt;}
.y83{bottom:775.372667pt;}
.y42{bottom:776.106000pt;}
.y59{bottom:785.039333pt;}
.y17{bottom:789.039333pt;}
.y41{bottom:793.706000pt;}
.y82{bottom:794.039333pt;}
.hb{height:34.080000pt;}
.h8{height:41.785156pt;}
.h5{height:48.382812pt;}
.ha{height:49.671875pt;}
.h2{height:53.013333pt;}
.hc{height:61.578125pt;}
.h3{height:68.160000pt;}
.h6{height:71.594667pt;}
.h7{height:87.968750pt;}
.h4{height:98.453333pt;}
.h9{height:248.859706pt;}
.h0{height:861.732000pt;}
.h1{height:862.000000pt;}
.w0{width:574.488000pt;}
.w1{width:574.666667pt;}
.x0{left:0.000000pt;}
.xe{left:50.521600pt;}
.x1c{left:54.846933pt;}
.x8{left:56.692933pt;}
.x11{left:57.924933pt;}
.x4{left:59.851467pt;}
.x2c{left:62.968667pt;}
.x18{left:64.396133pt;}
.x7{left:66.212000pt;}
.x2f{left:67.752533pt;}
.x17{left:70.947733pt;}
.x19{left:72.755200pt;}
.x20{left:75.590533pt;}
.x25{left:76.992533pt;}
.x10{left:79.370133pt;}
.x14{left:81.413867pt;}
.x29{left:82.847333pt;}
.x2d{left:84.782800pt;}
.xf{left:86.401067pt;}
.x31{left:88.734933pt;}
.x1a{left:94.994933pt;}
.x6{left:97.567867pt;}
.x22{left:104.125600pt;}
.x28{left:107.470000pt;}
.x3{left:113.750933pt;}
.x21{left:116.658133pt;}
.x23{left:129.931867pt;}
.x1d{left:137.630533pt;}
.x2{left:151.994533pt;}
.x32{left:153.732400pt;}
.x5{left:164.490667pt;}
.x16{left:180.982400pt;}
.x12{left:183.846933pt;}
.x24{left:186.086533pt;}
.xd{left:189.728533pt;}
.x2b{left:190.714800pt;}
.x9{left:193.252133pt;}
.x1b{left:196.755467pt;}
.x1f{left:199.129467pt;}
.xc{left:210.120400pt;}
.x13{left:214.623733pt;}
.x1{left:221.920800pt;}
.x30{left:229.558533pt;}
.x27{left:231.005200pt;}
.x2e{left:232.154533pt;}
.x26{left:235.535200pt;}
.xa{left:239.245600pt;}
.x2a{left:266.117733pt;}
.xb{left:359.032933pt;}
.x1e{left:508.274400pt;}
.x15{left:511.352400pt;}
}




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