
    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_31b1b84ef681907cdf6856b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_f57f0c64a720d42904397d0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.930000;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_52ee4a2e5372a21040ac4e30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.690000;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_65ae9febc578f40d9ab4d7d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_f18d3bbb65529455514e694c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910023;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_56df8bc108720a46aea43028.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.930000;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_9118fff22f3a8a57ffdfd547.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.709000;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_8d49bb8408d488c3e46317fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.800000px;}
.ls6{letter-spacing:-1.200000px;}
.ls4{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.300000px;}
.ls7{letter-spacing:-0.270000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.600000px;}
.ls0{letter-spacing:1.425000px;}
.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;}
}
.wsa6{word-spacing:-15.000000px;}
.wsbe{word-spacing:-13.800000px;}
.wsf{word-spacing:-9.750000px;}
.wsf0{word-spacing:-4.590000px;}
.ws48{word-spacing:-4.140000px;}
.wsee{word-spacing:-3.888000px;}
.ws52{word-spacing:-3.840000px;}
.ws6f{word-spacing:-3.600000px;}
.ws63{word-spacing:-3.360000px;}
.wse2{word-spacing:-3.132000px;}
.wsbd{word-spacing:-3.000000px;}
.wse9{word-spacing:-2.970000px;}
.ws2f{word-spacing:-2.940000px;}
.ws36{word-spacing:-2.880000px;}
.wsbb{word-spacing:-2.820000px;}
.ws75{word-spacing:-2.760000px;}
.wsb0{word-spacing:-2.700000px;}
.ws6d{word-spacing:-2.640000px;}
.ws3b{word-spacing:-2.580000px;}
.wseb{word-spacing:-2.538000px;}
.ws5d{word-spacing:-2.520000px;}
.ws3a{word-spacing:-2.460000px;}
.ws3c{word-spacing:-2.400000px;}
.wsef{word-spacing:-2.376000px;}
.ws5e{word-spacing:-2.340000px;}
.wsd8{word-spacing:-2.322000px;}
.ws58{word-spacing:-2.280000px;}
.ws104{word-spacing:-2.268000px;}
.ws2e{word-spacing:-2.220000px;}
.wsb3{word-spacing:-2.160000px;}
.ws49{word-spacing:-2.100000px;}
.ws64{word-spacing:-2.040000px;}
.ws87{word-spacing:-1.980000px;}
.wsa4{word-spacing:-1.920000px;}
.ws12{word-spacing:-1.860000px;}
.wsd1{word-spacing:-1.836000px;}
.ws4d{word-spacing:-1.800000px;}
.wsf8{word-spacing:-1.782000px;}
.wsba{word-spacing:-1.740000px;}
.ws69{word-spacing:-1.680000px;}
.wsc9{word-spacing:-1.674000px;}
.ws1{word-spacing:-1.668000px;}
.ws40{word-spacing:-1.620000px;}
.wsc2{word-spacing:-1.560000px;}
.ws2{word-spacing:-1.500000px;}
.ws0{word-spacing:-1.482000px;}
.wsd4{word-spacing:-1.458000px;}
.ws41{word-spacing:-1.440000px;}
.wsc{word-spacing:-1.380000px;}
.ws24{word-spacing:-1.320000px;}
.ws61{word-spacing:-1.260000px;}
.ws109{word-spacing:-1.242000px;}
.ws54{word-spacing:-1.200000px;}
.wsd7{word-spacing:-1.188000px;}
.ws20{word-spacing:-1.140000px;}
.ws1b{word-spacing:-1.080000px;}
.wsd6{word-spacing:-1.026000px;}
.ws60{word-spacing:-0.960000px;}
.wsc5{word-spacing:-0.900000px;}
.ws83{word-spacing:-0.840000px;}
.ws59{word-spacing:-0.780000px;}
.wse{word-spacing:-0.720000px;}
.ws47{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.600000px;}
.ws7c{word-spacing:-0.594000px;}
.ws72{word-spacing:-0.540000px;}
.ws26{word-spacing:-0.480000px;}
.ws3e{word-spacing:-0.420000px;}
.ws42{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.300000px;}
.ws79{word-spacing:-0.240000px;}
.ws103{word-spacing:-0.216000px;}
.wsb1{word-spacing:-0.180000px;}
.ws45{word-spacing:-0.120000px;}
.ws6b{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsaa{word-spacing:0.060000px;}
.wsd3{word-spacing:0.108000px;}
.ws23{word-spacing:0.120000px;}
.wsfc{word-spacing:0.162000px;}
.ws17{word-spacing:0.180000px;}
.ws95{word-spacing:0.240000px;}
.ws73{word-spacing:0.300000px;}
.wse3{word-spacing:0.324000px;}
.ws62{word-spacing:0.420000px;}
.ws1a{word-spacing:0.480000px;}
.wsf6{word-spacing:0.540000px;}
.ws10{word-spacing:0.600000px;}
.wsec{word-spacing:0.648000px;}
.ws6a{word-spacing:0.660000px;}
.wsdb{word-spacing:0.702000px;}
.wsb5{word-spacing:0.720000px;}
.ws15{word-spacing:0.780000px;}
.wsf5{word-spacing:0.810000px;}
.ws35{word-spacing:0.840000px;}
.ws102{word-spacing:0.864000px;}
.ws16{word-spacing:0.900000px;}
.wsb{word-spacing:0.960000px;}
.ws57{word-spacing:1.020000px;}
.ws34{word-spacing:1.080000px;}
.ws105{word-spacing:1.134000px;}
.ws90{word-spacing:1.140000px;}
.wsbf{word-spacing:1.200000px;}
.ws68{word-spacing:1.260000px;}
.wsca{word-spacing:1.296000px;}
.wsb7{word-spacing:1.320000px;}
.ws74{word-spacing:1.380000px;}
.ws88{word-spacing:1.440000px;}
.ws27{word-spacing:1.500000px;}
.wsc1{word-spacing:1.560000px;}
.wsfe{word-spacing:1.566000px;}
.ws1e{word-spacing:1.620000px;}
.ws78{word-spacing:1.680000px;}
.ws1c{word-spacing:1.740000px;}
.ws7f{word-spacing:1.800000px;}
.ws9c{word-spacing:1.860000px;}
.ws7b{word-spacing:1.890000px;}
.wsa5{word-spacing:1.920000px;}
.wse4{word-spacing:1.944000px;}
.ws9b{word-spacing:1.980000px;}
.ws93{word-spacing:2.040000px;}
.wsfd{word-spacing:2.052000px;}
.ws8d{word-spacing:2.100000px;}
.wscf{word-spacing:2.106000px;}
.ws7a{word-spacing:2.160000px;}
.wsd5{word-spacing:2.214000px;}
.ws28{word-spacing:2.220000px;}
.wsce{word-spacing:2.268000px;}
.ws19{word-spacing:2.280000px;}
.ws108{word-spacing:2.322000px;}
.ws7e{word-spacing:2.340000px;}
.ws9f{word-spacing:2.400000px;}
.ws10b{word-spacing:2.430000px;}
.ws1d{word-spacing:2.460000px;}
.ws98{word-spacing:2.580000px;}
.ws107{word-spacing:2.592000px;}
.ws6c{word-spacing:2.640000px;}
.ws8b{word-spacing:2.700000px;}
.ws4f{word-spacing:2.760000px;}
.ws96{word-spacing:2.820000px;}
.ws14{word-spacing:2.880000px;}
.ws97{word-spacing:2.940000px;}
.ws84{word-spacing:3.000000px;}
.wsa8{word-spacing:3.060000px;}
.ws8a{word-spacing:3.120000px;}
.wsea{word-spacing:3.132000px;}
.ws81{word-spacing:3.180000px;}
.wsf4{word-spacing:3.240000px;}
.wse5{word-spacing:3.294000px;}
.ws50{word-spacing:3.300000px;}
.ws4b{word-spacing:3.360000px;}
.ws80{word-spacing:3.420000px;}
.wsa9{word-spacing:3.480000px;}
.wsdf{word-spacing:3.510000px;}
.ws1f{word-spacing:3.540000px;}
.wsda{word-spacing:3.618000px;}
.wse0{word-spacing:3.672000px;}
.ws11{word-spacing:3.720000px;}
.ws37{word-spacing:3.780000px;}
.wse8{word-spacing:3.834000px;}
.ws9{word-spacing:3.840000px;}
.ws2a{word-spacing:3.900000px;}
.ws39{word-spacing:3.960000px;}
.wse6{word-spacing:4.050000px;}
.wse1{word-spacing:4.158000px;}
.wsc7{word-spacing:4.200000px;}
.ws66{word-spacing:4.260000px;}
.ws5a{word-spacing:4.380000px;}
.ws29{word-spacing:4.440000px;}
.ws10a{word-spacing:4.482000px;}
.ws71{word-spacing:4.500000px;}
.wsf2{word-spacing:4.536000px;}
.wsb9{word-spacing:4.560000px;}
.ws94{word-spacing:4.620000px;}
.wsff{word-spacing:4.644000px;}
.ws5{word-spacing:4.680000px;}
.wscd{word-spacing:4.698000px;}
.ws5f{word-spacing:4.740000px;}
.ws33{word-spacing:4.860000px;}
.wsfb{word-spacing:4.968000px;}
.ws9d{word-spacing:4.980000px;}
.ws4c{word-spacing:5.040000px;}
.ws5b{word-spacing:5.160000px;}
.wsc4{word-spacing:5.220000px;}
.ws5c{word-spacing:5.280000px;}
.ws82{word-spacing:5.340000px;}
.ws38{word-spacing:5.400000px;}
.wsa{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.ws6{word-spacing:5.580000px;}
.wsb4{word-spacing:5.700000px;}
.wsab{word-spacing:5.760000px;}
.wsc6{word-spacing:5.880000px;}
.ws21{word-spacing:6.000000px;}
.ws43{word-spacing:6.060000px;}
.ws7d{word-spacing:6.120000px;}
.ws44{word-spacing:6.180000px;}
.wsfa{word-spacing:6.210000px;}
.wsa2{word-spacing:6.240000px;}
.ws3d{word-spacing:6.300000px;}
.ws86{word-spacing:6.360000px;}
.wsf3{word-spacing:6.372000px;}
.ws2b{word-spacing:6.480000px;}
.wse7{word-spacing:6.534000px;}
.ws55{word-spacing:6.600000px;}
.wsdc{word-spacing:6.642000px;}
.ws8f{word-spacing:6.660000px;}
.ws56{word-spacing:6.780000px;}
.ws67{word-spacing:6.840000px;}
.ws53{word-spacing:6.900000px;}
.ws7{word-spacing:7.020000px;}
.wsf7{word-spacing:7.128000px;}
.wsc3{word-spacing:7.200000px;}
.wsc8{word-spacing:7.260000px;}
.wsc0{word-spacing:7.320000px;}
.ws8e{word-spacing:7.440000px;}
.wsa0{word-spacing:7.500000px;}
.ws22{word-spacing:7.560000px;}
.ws77{word-spacing:7.740000px;}
.wsa1{word-spacing:7.800000px;}
.ws99{word-spacing:7.860000px;}
.ws25{word-spacing:7.980000px;}
.ws3f{word-spacing:8.100000px;}
.ws4a{word-spacing:8.160000px;}
.ws85{word-spacing:8.220000px;}
.ws9a{word-spacing:8.340000px;}
.wsa3{word-spacing:8.400000px;}
.wsb6{word-spacing:8.460000px;}
.ws46{word-spacing:8.520000px;}
.ws2d{word-spacing:8.580000px;}
.ws91{word-spacing:8.640000px;}
.ws8{word-spacing:8.700000px;}
.ws9e{word-spacing:8.820000px;}
.ws92{word-spacing:8.940000px;}
.wsb8{word-spacing:9.000000px;}
.ws8c{word-spacing:9.060000px;}
.wscc{word-spacing:9.234000px;}
.ws31{word-spacing:9.240000px;}
.wsde{word-spacing:9.396000px;}
.wsed{word-spacing:9.882000px;}
.ws70{word-spacing:9.960000px;}
.ws6e{word-spacing:10.140000px;}
.wsdd{word-spacing:10.260000px;}
.ws32{word-spacing:10.380000px;}
.ws51{word-spacing:10.620000px;}
.ws100{word-spacing:10.746000px;}
.wsbc{word-spacing:10.920000px;}
.ws89{word-spacing:11.160000px;}
.wsf9{word-spacing:11.178000px;}
.ws101{word-spacing:11.880000px;}
.wsd2{word-spacing:12.042000px;}
.wsd0{word-spacing:12.474000px;}
.ws76{word-spacing:13.080000px;}
.ws4e{word-spacing:13.620000px;}
.ws65{word-spacing:14.280000px;}
.wsf1{word-spacing:14.580000px;}
.ws106{word-spacing:16.092000px;}
.wscb{word-spacing:18.252000px;}
.ws13{word-spacing:20.760000px;}
.ws4{word-spacing:20.820000px;}
.ws18{word-spacing:22.020000px;}
.wsd9{word-spacing:25.110000px;}
.wsad{word-spacing:142.884000px;}
.wsac{word-spacing:204.984000px;}
.wsb2{word-spacing:321.894000px;}
.wsaf{word-spacing:398.790000px;}
.wsae{word-spacing:400.302000px;}
.wsa7{word-spacing:736.884000px;}
._0{margin-left:-11.676000px;}
._37{margin-left:-9.720000px;}
._5{margin-left:-7.740000px;}
._9{margin-left:-6.600000px;}
._8{margin-left:-5.340000px;}
._3{margin-left:-3.900000px;}
._4{margin-left:-2.400000px;}
._2{margin-left:-1.080000px;}
._b{width:1.140000px;}
._a{width:2.220000px;}
._45{width:6.534000px;}
._7{width:10.380000px;}
._c{width:11.988000px;}
._43{width:41.526000px;}
._41{width:44.766000px;}
._42{width:49.302000px;}
._40{width:54.000000px;}
._44{width:71.996400px;}
._17{width:157.896000px;}
._28{width:175.716000px;}
._25{width:180.036000px;}
._38{width:329.832000px;}
._3b{width:336.906000px;}
._3d{width:340.470000px;}
._2a{width:354.564000px;}
._2c{width:359.532000px;}
._29{width:364.068000px;}
._39{width:404.082000px;}
._31{width:413.802000px;}
._27{width:416.124000px;}
._2b{width:418.284000px;}
._16{width:422.118000px;}
._34{width:427.410000px;}
._3c{width:429.408000px;}
._2d{width:438.480000px;}
._35{width:440.802000px;}
._2e{width:443.610000px;}
._2f{width:477.414000px;}
._32{width:482.544000px;}
._19{width:487.944000px;}
._30{width:491.022000px;}
._1f{width:514.944000px;}
._33{width:516.348000px;}
._3f{width:527.634000px;}
._12{width:564.732000px;}
._d{width:572.238000px;}
._e{width:577.746000px;}
._3a{width:580.878000px;}
._15{width:613.332000px;}
._36{width:614.574000px;}
._3e{width:619.704000px;}
._f{width:628.344000px;}
._11{width:653.670000px;}
._1a{width:709.074000px;}
._14{width:716.094000px;}
._1e{width:860.490000px;}
._18{width:871.776000px;}
._1d{width:908.334000px;}
._1c{width:920.646000px;}
._22{width:965.736000px;}
._23{width:967.950000px;}
._24{width:978.102000px;}
._1b{width:981.504000px;}
._20{width:982.584000px;}
._21{width:993.762000px;}
._13{width:995.274000px;}
._26{width:1007.910000px;}
._10{width:1022.274000px;}
._6{width:1594.140000px;}
._1{width:1684.440000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:6.000000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y13b{bottom:89.148450px;}
.y1ea{bottom:92.367450px;}
.y138{bottom:92.644500px;}
.y24{bottom:93.543300px;}
.y117{bottom:93.618450px;}
.y21b{bottom:98.443950px;}
.ya5{bottom:101.147100px;}
.y1bf{bottom:101.148450px;}
.y167{bottom:101.702100px;}
.y24c{bottom:102.318450px;}
.y159{bottom:104.410200px;}
.y1a4{bottom:104.425050px;}
.yf1{bottom:107.148450px;}
.yd1{bottom:108.267450px;}
.y23{bottom:108.543300px;}
.y1e9{bottom:108.864450px;}
.y137{bottom:110.644500px;}
.y116{bottom:111.618450px;}
.y50{bottom:111.801600px;}
.y21a{bottom:114.940950px;}
.y7a{bottom:116.148450px;}
.y24b{bottom:118.815450px;}
.ya4{bottom:119.147100px;}
.y1be{bottom:119.148450px;}
.y166{bottom:119.702100px;}
.y158{bottom:122.410200px;}
.y1a3{bottom:122.425050px;}
.y22{bottom:123.543300px;}
.yf0{bottom:125.148450px;}
.y1e8{bottom:125.361450px;}
.yd0{bottom:126.267450px;}
.y136{bottom:128.644500px;}
.y115{bottom:129.618450px;}
.y4f{bottom:129.801600px;}
.y219{bottom:131.437950px;}
.y79{bottom:134.148450px;}
.y24a{bottom:135.312450px;}
.ya3{bottom:137.147100px;}
.y1bd{bottom:137.148450px;}
.y165{bottom:137.702100px;}
.y21{bottom:138.543300px;}
.y1a2{bottom:140.425050px;}
.y1e7{bottom:141.858450px;}
.yef{bottom:143.148450px;}
.ycf{bottom:144.267450px;}
.y135{bottom:146.644500px;}
.y114{bottom:147.618450px;}
.y4e{bottom:147.801600px;}
.y218{bottom:147.934950px;}
.y157{bottom:149.410200px;}
.y249{bottom:151.809450px;}
.y78{bottom:152.148450px;}
.ya2{bottom:155.147100px;}
.y1bc{bottom:155.148450px;}
.y164{bottom:155.702100px;}
.y1e6{bottom:158.355450px;}
.yee{bottom:161.148450px;}
.yce{bottom:162.267450px;}
.y217{bottom:164.431950px;}
.y134{bottom:164.644500px;}
.y113{bottom:165.618450px;}
.y4d{bottom:165.801600px;}
.y1a1{bottom:167.425050px;}
.y248{bottom:168.306450px;}
.y77{bottom:170.148450px;}
.ya1{bottom:173.147100px;}
.y1bb{bottom:173.148450px;}
.y163{bottom:173.702100px;}
.y1e5{bottom:174.852450px;}
.yed{bottom:179.148450px;}
.ycd{bottom:180.267450px;}
.y216{bottom:180.928950px;}
.y133{bottom:182.644500px;}
.y112{bottom:183.618450px;}
.y4c{bottom:183.801600px;}
.y247{bottom:184.803450px;}
.y13a{bottom:188.142450px;}
.y76{bottom:188.148450px;}
.ya0{bottom:191.147100px;}
.y1ba{bottom:191.148450px;}
.y1e4{bottom:191.349450px;}
.y162{bottom:191.702100px;}
.y156{bottom:194.410200px;}
.yec{bottom:197.148450px;}
.y215{bottom:197.425950px;}
.ycc{bottom:198.267450px;}
.y20{bottom:199.947300px;}
.y132{bottom:200.644500px;}
.y246{bottom:201.300450px;}
.y4b{bottom:201.801600px;}
.y75{bottom:206.148450px;}
.y1e3{bottom:207.846450px;}
.y9f{bottom:209.147100px;}
.y1b9{bottom:209.148450px;}
.y161{bottom:209.702100px;}
.y155{bottom:212.410200px;}
.y1a0{bottom:212.425050px;}
.y214{bottom:213.922950px;}
.yeb{bottom:215.148450px;}
.ycb{bottom:216.267450px;}
.y245{bottom:217.797450px;}
.y1f{bottom:217.947300px;}
.y139{bottom:218.148450px;}
.y131{bottom:218.644500px;}
.y111{bottom:219.618450px;}
.y4a{bottom:219.801600px;}
.y74{bottom:224.148450px;}
.y1e2{bottom:224.343450px;}
.y9e{bottom:227.147100px;}
.y1b8{bottom:227.148450px;}
.y160{bottom:227.702100px;}
.y154{bottom:230.410200px;}
.y213{bottom:230.419950px;}
.y19f{bottom:230.425050px;}
.yea{bottom:233.148450px;}
.yca{bottom:234.267450px;}
.y244{bottom:234.294450px;}
.y1e{bottom:235.947300px;}
.y130{bottom:236.644500px;}
.y110{bottom:237.618450px;}
.y49{bottom:237.801600px;}
.y1e1{bottom:240.840450px;}
.y73{bottom:242.148450px;}
.y9d{bottom:245.147100px;}
.y1b7{bottom:245.148450px;}
.y212{bottom:246.916950px;}
.y153{bottom:248.410200px;}
.y19e{bottom:248.425050px;}
.y243{bottom:250.791450px;}
.ye9{bottom:251.148450px;}
.yc9{bottom:252.267450px;}
.y1d{bottom:253.947300px;}
.y12f{bottom:254.644500px;}
.y48{bottom:255.801600px;}
.y1e0{bottom:257.337450px;}
.y72{bottom:260.148450px;}
.y9c{bottom:263.147100px;}
.y1b6{bottom:263.148450px;}
.y211{bottom:263.413950px;}
.y152{bottom:266.410200px;}
.y19d{bottom:266.425050px;}
.y242{bottom:267.288450px;}
.ye8{bottom:269.148450px;}
.yc8{bottom:270.267450px;}
.y1c{bottom:271.947300px;}
.y12e{bottom:272.644500px;}
.y10f{bottom:273.618450px;}
.y47{bottom:273.801600px;}
.y1df{bottom:273.834450px;}
.y71{bottom:278.148450px;}
.y210{bottom:279.910950px;}
.y9b{bottom:281.147100px;}
.y1b5{bottom:281.148450px;}
.y184{bottom:281.477100px;}
.y241{bottom:283.785450px;}
.y151{bottom:284.410200px;}
.y19c{bottom:284.425050px;}
.ye7{bottom:287.148450px;}
.yc7{bottom:288.267450px;}
.y1b{bottom:289.947300px;}
.y1de{bottom:290.331450px;}
.y12d{bottom:290.644500px;}
.y46{bottom:291.801600px;}
.y70{bottom:296.148450px;}
.y20f{bottom:296.407950px;}
.y183{bottom:298.730100px;}
.y9a{bottom:299.147100px;}
.y1b4{bottom:299.148450px;}
.y240{bottom:300.282450px;}
.y150{bottom:302.410200px;}
.y19b{bottom:302.425050px;}
.ye6{bottom:305.148450px;}
.yc6{bottom:306.267450px;}
.y1dd{bottom:306.828450px;}
.y1a{bottom:307.947300px;}
.y12c{bottom:308.644500px;}
.y10e{bottom:309.618450px;}
.y45{bottom:309.801600px;}
.y20e{bottom:312.904950px;}
.y6f{bottom:314.148450px;}
.y182{bottom:315.983100px;}
.y23f{bottom:316.779450px;}
.y99{bottom:317.147100px;}
.y1b3{bottom:317.148450px;}
.y14f{bottom:320.410200px;}
.y19a{bottom:320.425050px;}
.ye5{bottom:323.148450px;}
.y1dc{bottom:323.325450px;}
.yc5{bottom:324.267450px;}
.y19{bottom:325.947300px;}
.y12b{bottom:326.644500px;}
.y44{bottom:327.801600px;}
.y20d{bottom:329.401950px;}
.y6e{bottom:332.148450px;}
.y181{bottom:333.236100px;}
.y23e{bottom:333.276450px;}
.y98{bottom:335.147100px;}
.y1b2{bottom:335.148450px;}
.y10d{bottom:336.123450px;}
.y14e{bottom:338.410200px;}
.y199{bottom:338.425050px;}
.y1db{bottom:339.822450px;}
.ye4{bottom:341.148450px;}
.yc4{bottom:342.267450px;}
.y18{bottom:343.947300px;}
.y12a{bottom:344.644500px;}
.y43{bottom:345.801600px;}
.y20c{bottom:345.898950px;}
.y23d{bottom:349.773450px;}
.y6d{bottom:350.148450px;}
.y97{bottom:353.147100px;}
.y1b1{bottom:353.148450px;}
.y1da{bottom:356.319450px;}
.y14d{bottom:356.410200px;}
.y198{bottom:356.425050px;}
.ye3{bottom:359.148450px;}
.y180{bottom:359.858100px;}
.yc3{bottom:360.267450px;}
.y17{bottom:361.947300px;}
.y20b{bottom:362.395950px;}
.y10c{bottom:362.628450px;}
.y42{bottom:363.801600px;}
.y23c{bottom:366.270450px;}
.y6c{bottom:368.148450px;}
.y96{bottom:371.147100px;}
.y1b0{bottom:371.148450px;}
.y129{bottom:371.644500px;}
.y1d9{bottom:372.816450px;}
.y197{bottom:374.425050px;}
.yc2{bottom:378.267450px;}
.y20a{bottom:378.892950px;}
.y16{bottom:379.947300px;}
.y10b{bottom:380.628450px;}
.y41{bottom:381.801600px;}
.y23b{bottom:382.767450px;}
.y14c{bottom:383.410200px;}
.y6b{bottom:386.148450px;}
.y17f{bottom:387.608100px;}
.y95{bottom:389.147100px;}
.y1af{bottom:389.148450px;}
.y1d8{bottom:389.313450px;}
.y196{bottom:392.425050px;}
.ye2{bottom:395.157450px;}
.y209{bottom:395.389950px;}
.yc1{bottom:396.267450px;}
.y15{bottom:397.947300px;}
.y23a{bottom:399.264450px;}
.y40{bottom:399.801600px;}
.y6a{bottom:404.148450px;}
.y10a{bottom:407.133450px;}
.y94{bottom:407.147100px;}
.y1ae{bottom:407.148450px;}
.y195{bottom:410.425050px;}
.ye1{bottom:411.654450px;}
.y1d7{bottom:411.813450px;}
.y208{bottom:411.886950px;}
.yc0{bottom:414.267450px;}
.y239{bottom:415.761450px;}
.y128{bottom:416.642100px;}
.y3f{bottom:417.801600px;}
.y69{bottom:422.148450px;}
.y109{bottom:425.133450px;}
.y93{bottom:425.147100px;}
.y1ad{bottom:425.148450px;}
.ye0{bottom:428.151450px;}
.y207{bottom:428.383950px;}
.y14b{bottom:428.410200px;}
.y194{bottom:428.425050px;}
.y238{bottom:432.258450px;}
.ybf{bottom:432.267450px;}
.y127{bottom:434.642100px;}
.y3e{bottom:435.801600px;}
.y68{bottom:440.148450px;}
.y17e{bottom:440.855100px;}
.y92{bottom:443.147100px;}
.y1ac{bottom:443.148450px;}
.ydf{bottom:444.648450px;}
.y206{bottom:444.880950px;}
.y14a{bottom:446.410200px;}
.y193{bottom:446.425050px;}
.y1d6{bottom:447.813450px;}
.y237{bottom:448.755450px;}
.ybe{bottom:450.267450px;}
.y126{bottom:452.642100px;}
.y3d{bottom:453.801600px;}
.y17d{bottom:458.108100px;}
.y67{bottom:458.148450px;}
.y108{bottom:461.133450px;}
.y91{bottom:461.147100px;}
.y1ab{bottom:461.148450px;}
.y205{bottom:461.377950px;}
.y149{bottom:464.410200px;}
.y192{bottom:464.425050px;}
.y236{bottom:465.252450px;}
.ybd{bottom:468.267450px;}
.y1d5{bottom:470.313450px;}
.y125{bottom:470.642100px;}
.y14{bottom:471.447300px;}
.y3c{bottom:471.801600px;}
.y17c{bottom:475.361100px;}
.y66{bottom:476.148450px;}
.y204{bottom:477.874950px;}
.y107{bottom:479.133450px;}
.y90{bottom:479.147100px;}
.yde{bottom:479.148450px;}
.y235{bottom:481.749450px;}
.y148{bottom:482.410200px;}
.y191{bottom:482.425050px;}
.ybc{bottom:486.267450px;}
.y13{bottom:486.447300px;}
.y124{bottom:488.642100px;}
.y3b{bottom:489.801600px;}
.y65{bottom:494.148450px;}
.y203{bottom:494.371950px;}
.y106{bottom:497.133450px;}
.y8f{bottom:497.147100px;}
.ydd{bottom:497.148450px;}
.y234{bottom:498.246450px;}
.y147{bottom:500.410200px;}
.y190{bottom:500.425050px;}
.y17b{bottom:501.983100px;}
.ybb{bottom:504.267450px;}
.y1d4{bottom:506.349450px;}
.y123{bottom:506.642100px;}
.y3a{bottom:507.801600px;}
.y202{bottom:510.868950px;}
.y64{bottom:512.148450px;}
.y233{bottom:514.743450px;}
.y8e{bottom:515.147100px;}
.ydc{bottom:515.148450px;}
.y146{bottom:518.410200px;}
.y18f{bottom:518.425050px;}
.yba{bottom:522.267450px;}
.y1d3{bottom:522.846450px;}
.y105{bottom:524.133450px;}
.y122{bottom:524.642100px;}
.y39{bottom:525.801600px;}
.y201{bottom:527.365950px;}
.y17a{bottom:529.733100px;}
.y63{bottom:530.148450px;}
.y232{bottom:531.240450px;}
.y8d{bottom:533.147100px;}
.ydb{bottom:533.148450px;}
.y12{bottom:534.447300px;}
.y145{bottom:536.410200px;}
.y18e{bottom:536.425050px;}
.y1d2{bottom:539.343450px;}
.yb9{bottom:540.267450px;}
.y121{bottom:542.642100px;}
.y38{bottom:543.801600px;}
.y200{bottom:543.862950px;}
.y231{bottom:547.737450px;}
.y62{bottom:548.148450px;}
.y11{bottom:549.447300px;}
.y8c{bottom:551.147100px;}
.yda{bottom:551.148450px;}
.y144{bottom:554.410200px;}
.y18d{bottom:554.425050px;}
.y1d1{bottom:555.840450px;}
.yb8{bottom:558.267450px;}
.y1ff{bottom:560.359950px;}
.y120{bottom:560.642100px;}
.y37{bottom:561.801600px;}
.y230{bottom:564.234450px;}
.y61{bottom:566.148450px;}
.y104{bottom:569.133450px;}
.y8b{bottom:569.147100px;}
.yd9{bottom:569.148450px;}
.y1d0{bottom:572.337450px;}
.y143{bottom:572.410200px;}
.y18c{bottom:572.425050px;}
.yb7{bottom:576.267450px;}
.y1fe{bottom:576.856950px;}
.y1c0{bottom:578.148450px;}
.y11f{bottom:578.642100px;}
.y36{bottom:579.801600px;}
.y22f{bottom:580.731450px;}
.y179{bottom:582.667950px;}
.y60{bottom:584.148450px;}
.y103{bottom:587.133450px;}
.y8a{bottom:587.147100px;}
.yd8{bottom:587.148450px;}
.y1cf{bottom:588.834450px;}
.y142{bottom:590.410200px;}
.y18b{bottom:590.425050px;}
.y1fd{bottom:593.353950px;}
.yb6{bottom:594.267450px;}
.y11e{bottom:596.642100px;}
.y22e{bottom:597.228450px;}
.y10{bottom:597.447300px;}
.y35{bottom:597.801600px;}
.y178{bottom:599.920950px;}
.y5f{bottom:602.148450px;}
.y102{bottom:605.133450px;}
.y89{bottom:605.147100px;}
.yd7{bottom:605.148450px;}
.y1ce{bottom:605.331450px;}
.y141{bottom:608.410200px;}
.y18a{bottom:608.425050px;}
.y1fc{bottom:609.850950px;}
.yb5{bottom:612.267450px;}
.yf{bottom:612.447300px;}
.y22d{bottom:613.725450px;}
.y34{bottom:615.801600px;}
.y177{bottom:617.173950px;}
.y5e{bottom:620.148450px;}
.y1cd{bottom:621.828450px;}
.y101{bottom:623.133450px;}
.y88{bottom:623.147100px;}
.yd6{bottom:623.148450px;}
.y1fb{bottom:626.347950px;}
.y259{bottom:629.338800px;}
.y22c{bottom:630.222450px;}
.yb4{bottom:630.267450px;}
.y11d{bottom:632.642100px;}
.y33{bottom:633.801600px;}
.y176{bottom:634.426950px;}
.y140{bottom:635.410200px;}
.y189{bottom:635.425050px;}
.y5d{bottom:638.148450px;}
.y1cc{bottom:638.325450px;}
.y100{bottom:641.133450px;}
.y87{bottom:641.147100px;}
.yd5{bottom:641.148450px;}
.y1fa{bottom:642.844950px;}
.y258{bottom:645.835800px;}
.y22b{bottom:646.719450px;}
.yb3{bottom:648.267450px;}
.y175{bottom:651.679950px;}
.y32{bottom:651.801600px;}
.y1cb{bottom:654.822450px;}
.y5c{bottom:656.148450px;}
.yff{bottom:659.133450px;}
.y86{bottom:659.147100px;}
.yd4{bottom:659.148450px;}
.y1f9{bottom:659.341950px;}
.ye{bottom:660.447300px;}
.y22a{bottom:663.216450px;}
.yb2{bottom:666.267450px;}
.y11c{bottom:668.642100px;}
.y174{bottom:668.932950px;}
.y31{bottom:669.801600px;}
.y1ca{bottom:671.319450px;}
.y257{bottom:671.337300px;}
.y5b{bottom:674.148450px;}
.yd{bottom:675.447300px;}
.y1f8{bottom:675.838950px;}
.yfe{bottom:677.133450px;}
.y85{bottom:677.147100px;}
.yd3{bottom:677.148450px;}
.y229{bottom:679.713450px;}
.y13f{bottom:680.410200px;}
.y188{bottom:680.432100px;}
.yb1{bottom:684.267450px;}
.y173{bottom:686.185950px;}
.y11b{bottom:686.642100px;}
.y30{bottom:687.801600px;}
.y1c9{bottom:687.816450px;}
.y256{bottom:687.834300px;}
.y5a{bottom:692.148450px;}
.y1f7{bottom:692.335950px;}
.yfd{bottom:695.132100px;}
.y84{bottom:695.147100px;}
.y228{bottom:696.210450px;}
.y13e{bottom:698.410200px;}
.y187{bottom:698.432100px;}
.yb0{bottom:702.267450px;}
.y172{bottom:703.438950px;}
.yd2{bottom:704.148450px;}
.y1c8{bottom:704.313450px;}
.y255{bottom:704.331300px;}
.y11a{bottom:704.642100px;}
.y2f{bottom:705.801600px;}
.y1f6{bottom:708.832950px;}
.y59{bottom:710.148450px;}
.y227{bottom:712.707450px;}
.yfc{bottom:713.132100px;}
.y83{bottom:713.147100px;}
.y13d{bottom:716.410200px;}
.y186{bottom:716.432100px;}
.yaf{bottom:720.267450px;}
.y171{bottom:720.691950px;}
.y254{bottom:720.828300px;}
.y119{bottom:722.642100px;}
.y2e{bottom:723.801600px;}
.y1f5{bottom:725.329950px;}
.y1c7{bottom:726.813450px;}
.y58{bottom:728.148450px;}
.y226{bottom:729.204450px;}
.yfb{bottom:731.132100px;}
.y82{bottom:731.147100px;}
.y13c{bottom:734.417100px;}
.y185{bottom:734.432100px;}
.y170{bottom:737.944950px;}
.yae{bottom:738.267450px;}
.y1f4{bottom:741.826950px;}
.y225{bottom:745.701450px;}
.y57{bottom:746.148450px;}
.y253{bottom:746.329800px;}
.yfa{bottom:749.132100px;}
.y81{bottom:749.147100px;}
.yc{bottom:750.447300px;}
.y2d{bottom:750.801600px;}
.y16f{bottom:755.197950px;}
.yad{bottom:756.267450px;}
.y1f3{bottom:758.323950px;}
.y118{bottom:758.642100px;}
.y224{bottom:762.198450px;}
.y1c6{bottom:762.822300px;}
.y252{bottom:762.826800px;}
.y56{bottom:764.148450px;}
.yf9{bottom:767.132100px;}
.y80{bottom:767.147100px;}
.y16e{bottom:772.450950px;}
.yac{bottom:774.267450px;}
.y1f2{bottom:774.820950px;}
.yb{bottom:777.447300px;}
.y223{bottom:778.695450px;}
.y1c5{bottom:779.319300px;}
.y251{bottom:779.323800px;}
.y8{bottom:779.979300px;}
.y55{bottom:782.148450px;}
.yf8{bottom:785.132100px;}
.y7f{bottom:785.147100px;}
.y15f{bottom:788.205300px;}
.y1aa{bottom:788.205600px;}
.y16d{bottom:789.703950px;}
.y1f1{bottom:791.317950px;}
.yab{bottom:792.267450px;}
.y7{bottom:792.726300px;}
.y1{bottom:793.881750px;}
.y222{bottom:795.192450px;}
.y1c4{bottom:795.816300px;}
.y250{bottom:795.820800px;}
.yf7{bottom:803.132100px;}
.y7e{bottom:803.147100px;}
.ya{bottom:804.447300px;}
.y15e{bottom:805.458300px;}
.y1a9{bottom:805.458600px;}
.y6{bottom:805.473300px;}
.y16c{bottom:806.956950px;}
.y1f0{bottom:807.814950px;}
.y54{bottom:809.142450px;}
.yaa{bottom:810.267450px;}
.y221{bottom:811.689450px;}
.y1c3{bottom:812.313300px;}
.y2c{bottom:813.797100px;}
.y5{bottom:818.220300px;}
.yf6{bottom:821.132100px;}
.y7d{bottom:821.147100px;}
.y24f{bottom:821.322300px;}
.y15d{bottom:822.711300px;}
.y1a8{bottom:822.711600px;}
.y16b{bottom:824.209950px;}
.y1ef{bottom:824.311950px;}
.y220{bottom:828.186450px;}
.ya9{bottom:828.267450px;}
.y53{bottom:830.148450px;}
.y4{bottom:830.967300px;}
.y9{bottom:831.447300px;}
.y2b{bottom:831.797100px;}
.y1c2{bottom:834.813300px;}
.y24e{bottom:837.819300px;}
.yf5{bottom:839.132100px;}
.y7c{bottom:839.147100px;}
.y15c{bottom:839.964300px;}
.y1a7{bottom:839.964600px;}
.y1ee{bottom:840.808950px;}
.y3{bottom:843.714300px;}
.y21f{bottom:844.683450px;}
.ya8{bottom:846.267450px;}
.y16a{bottom:850.831950px;}
.y24d{bottom:854.316300px;}
.y2{bottom:856.461300px;}
.yf4{bottom:857.132100px;}
.y7b{bottom:857.147100px;}
.y1ed{bottom:857.305950px;}
.y21e{bottom:861.180450px;}
.ya7{bottom:864.267450px;}
.y15b{bottom:866.586300px;}
.y169{bottom:866.586450px;}
.y1a6{bottom:866.586600px;}
.y1c1{bottom:870.813300px;}
.y1ec{bottom:873.802950px;}
.yf3{bottom:875.132100px;}
.y52{bottom:875.147100px;}
.y2a{bottom:875.312100px;}
.y21d{bottom:877.677450px;}
.y1eb{bottom:890.299950px;}
.y27{bottom:890.677800px;}
.ya6{bottom:891.267450px;}
.yf2{bottom:893.132100px;}
.y51{bottom:893.147100px;}
.y29{bottom:893.312100px;}
.y21c{bottom:894.174450px;}
.y15a{bottom:894.336300px;}
.y168{bottom:894.336450px;}
.y1a5{bottom:894.336600px;}
.y28{bottom:933.707100px;}
.y26{bottom:985.582500px;}
.y25{bottom:987.082650px;}
.hb{height:4.170000px;}
.h2{height:26.244000px;}
.h3{height:30.618000px;}
.h9{height:33.600000px;}
.h6{height:34.992000px;}
.hf{height:37.530000px;}
.h14{height:37.800000px;}
.ha{height:38.532000px;}
.h12{height:39.366000px;}
.he{height:41.640000px;}
.hc{height:41.700000px;}
.h7{height:42.000000px;}
.h8{height:43.740000px;}
.h11{height:43.877400px;}
.hd{height:43.905000px;}
.h13{height:43.909800px;}
.h10{height:43.910400px;}
.h5{height:50.400000px;}
.h4{height:67.200000px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x9{left:6.377850px;}
.x8{left:63.779550px;}
.xa{left:72.283500px;}
.xc{left:81.779550px;}
.xb{left:90.283500px;}
.x12{left:99.283500px;}
.xf{left:228.057000px;}
.x11{left:233.007750px;}
.x10{left:246.244050px;}
.xd{left:344.579550px;}
.x1{left:433.632750px;}
.x6{left:446.218650px;}
.x7{left:457.149150px;}
.x3{left:472.447650px;}
.xe{left:478.567050px;}
.x5{left:489.153150px;}
.x4{left:495.096150px;}
.x2{left:546.724650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.933333pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls4{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls7{letter-spacing:-0.240000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.533333pt;}
.ls0{letter-spacing:1.266667pt;}
.wsa6{word-spacing:-13.333333pt;}
.wsbe{word-spacing:-12.266667pt;}
.wsf{word-spacing:-8.666667pt;}
.wsf0{word-spacing:-4.080000pt;}
.ws48{word-spacing:-3.680000pt;}
.wsee{word-spacing:-3.456000pt;}
.ws52{word-spacing:-3.413333pt;}
.ws6f{word-spacing:-3.200000pt;}
.ws63{word-spacing:-2.986667pt;}
.wse2{word-spacing:-2.784000pt;}
.wsbd{word-spacing:-2.666667pt;}
.wse9{word-spacing:-2.640000pt;}
.ws2f{word-spacing:-2.613333pt;}
.ws36{word-spacing:-2.560000pt;}
.wsbb{word-spacing:-2.506667pt;}
.ws75{word-spacing:-2.453333pt;}
.wsb0{word-spacing:-2.400000pt;}
.ws6d{word-spacing:-2.346667pt;}
.ws3b{word-spacing:-2.293333pt;}
.wseb{word-spacing:-2.256000pt;}
.ws5d{word-spacing:-2.240000pt;}
.ws3a{word-spacing:-2.186667pt;}
.ws3c{word-spacing:-2.133333pt;}
.wsef{word-spacing:-2.112000pt;}
.ws5e{word-spacing:-2.080000pt;}
.wsd8{word-spacing:-2.064000pt;}
.ws58{word-spacing:-2.026667pt;}
.ws104{word-spacing:-2.016000pt;}
.ws2e{word-spacing:-1.973333pt;}
.wsb3{word-spacing:-1.920000pt;}
.ws49{word-spacing:-1.866667pt;}
.ws64{word-spacing:-1.813333pt;}
.ws87{word-spacing:-1.760000pt;}
.wsa4{word-spacing:-1.706667pt;}
.ws12{word-spacing:-1.653333pt;}
.wsd1{word-spacing:-1.632000pt;}
.ws4d{word-spacing:-1.600000pt;}
.wsf8{word-spacing:-1.584000pt;}
.wsba{word-spacing:-1.546667pt;}
.ws69{word-spacing:-1.493333pt;}
.wsc9{word-spacing:-1.488000pt;}
.ws1{word-spacing:-1.482667pt;}
.ws40{word-spacing:-1.440000pt;}
.wsc2{word-spacing:-1.386667pt;}
.ws2{word-spacing:-1.333333pt;}
.ws0{word-spacing:-1.317333pt;}
.wsd4{word-spacing:-1.296000pt;}
.ws41{word-spacing:-1.280000pt;}
.wsc{word-spacing:-1.226667pt;}
.ws24{word-spacing:-1.173333pt;}
.ws61{word-spacing:-1.120000pt;}
.ws109{word-spacing:-1.104000pt;}
.ws54{word-spacing:-1.066667pt;}
.wsd7{word-spacing:-1.056000pt;}
.ws20{word-spacing:-1.013333pt;}
.ws1b{word-spacing:-0.960000pt;}
.wsd6{word-spacing:-0.912000pt;}
.ws60{word-spacing:-0.853333pt;}
.wsc5{word-spacing:-0.800000pt;}
.ws83{word-spacing:-0.746667pt;}
.ws59{word-spacing:-0.693333pt;}
.wse{word-spacing:-0.640000pt;}
.ws47{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.533333pt;}
.ws7c{word-spacing:-0.528000pt;}
.ws72{word-spacing:-0.480000pt;}
.ws26{word-spacing:-0.426667pt;}
.ws3e{word-spacing:-0.373333pt;}
.ws42{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.266667pt;}
.ws79{word-spacing:-0.213333pt;}
.ws103{word-spacing:-0.192000pt;}
.wsb1{word-spacing:-0.160000pt;}
.ws45{word-spacing:-0.106667pt;}
.ws6b{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.053333pt;}
.wsd3{word-spacing:0.096000pt;}
.ws23{word-spacing:0.106667pt;}
.wsfc{word-spacing:0.144000pt;}
.ws17{word-spacing:0.160000pt;}
.ws95{word-spacing:0.213333pt;}
.ws73{word-spacing:0.266667pt;}
.wse3{word-spacing:0.288000pt;}
.ws62{word-spacing:0.373333pt;}
.ws1a{word-spacing:0.426667pt;}
.wsf6{word-spacing:0.480000pt;}
.ws10{word-spacing:0.533333pt;}
.wsec{word-spacing:0.576000pt;}
.ws6a{word-spacing:0.586667pt;}
.wsdb{word-spacing:0.624000pt;}
.wsb5{word-spacing:0.640000pt;}
.ws15{word-spacing:0.693333pt;}
.wsf5{word-spacing:0.720000pt;}
.ws35{word-spacing:0.746667pt;}
.ws102{word-spacing:0.768000pt;}
.ws16{word-spacing:0.800000pt;}
.wsb{word-spacing:0.853333pt;}
.ws57{word-spacing:0.906667pt;}
.ws34{word-spacing:0.960000pt;}
.ws105{word-spacing:1.008000pt;}
.ws90{word-spacing:1.013333pt;}
.wsbf{word-spacing:1.066667pt;}
.ws68{word-spacing:1.120000pt;}
.wsca{word-spacing:1.152000pt;}
.wsb7{word-spacing:1.173333pt;}
.ws74{word-spacing:1.226667pt;}
.ws88{word-spacing:1.280000pt;}
.ws27{word-spacing:1.333333pt;}
.wsc1{word-spacing:1.386667pt;}
.wsfe{word-spacing:1.392000pt;}
.ws1e{word-spacing:1.440000pt;}
.ws78{word-spacing:1.493333pt;}
.ws1c{word-spacing:1.546667pt;}
.ws7f{word-spacing:1.600000pt;}
.ws9c{word-spacing:1.653333pt;}
.ws7b{word-spacing:1.680000pt;}
.wsa5{word-spacing:1.706667pt;}
.wse4{word-spacing:1.728000pt;}
.ws9b{word-spacing:1.760000pt;}
.ws93{word-spacing:1.813333pt;}
.wsfd{word-spacing:1.824000pt;}
.ws8d{word-spacing:1.866667pt;}
.wscf{word-spacing:1.872000pt;}
.ws7a{word-spacing:1.920000pt;}
.wsd5{word-spacing:1.968000pt;}
.ws28{word-spacing:1.973333pt;}
.wsce{word-spacing:2.016000pt;}
.ws19{word-spacing:2.026667pt;}
.ws108{word-spacing:2.064000pt;}
.ws7e{word-spacing:2.080000pt;}
.ws9f{word-spacing:2.133333pt;}
.ws10b{word-spacing:2.160000pt;}
.ws1d{word-spacing:2.186667pt;}
.ws98{word-spacing:2.293333pt;}
.ws107{word-spacing:2.304000pt;}
.ws6c{word-spacing:2.346667pt;}
.ws8b{word-spacing:2.400000pt;}
.ws4f{word-spacing:2.453333pt;}
.ws96{word-spacing:2.506667pt;}
.ws14{word-spacing:2.560000pt;}
.ws97{word-spacing:2.613333pt;}
.ws84{word-spacing:2.666667pt;}
.wsa8{word-spacing:2.720000pt;}
.ws8a{word-spacing:2.773333pt;}
.wsea{word-spacing:2.784000pt;}
.ws81{word-spacing:2.826667pt;}
.wsf4{word-spacing:2.880000pt;}
.wse5{word-spacing:2.928000pt;}
.ws50{word-spacing:2.933333pt;}
.ws4b{word-spacing:2.986667pt;}
.ws80{word-spacing:3.040000pt;}
.wsa9{word-spacing:3.093333pt;}
.wsdf{word-spacing:3.120000pt;}
.ws1f{word-spacing:3.146667pt;}
.wsda{word-spacing:3.216000pt;}
.wse0{word-spacing:3.264000pt;}
.ws11{word-spacing:3.306667pt;}
.ws37{word-spacing:3.360000pt;}
.wse8{word-spacing:3.408000pt;}
.ws9{word-spacing:3.413333pt;}
.ws2a{word-spacing:3.466667pt;}
.ws39{word-spacing:3.520000pt;}
.wse6{word-spacing:3.600000pt;}
.wse1{word-spacing:3.696000pt;}
.wsc7{word-spacing:3.733333pt;}
.ws66{word-spacing:3.786667pt;}
.ws5a{word-spacing:3.893333pt;}
.ws29{word-spacing:3.946667pt;}
.ws10a{word-spacing:3.984000pt;}
.ws71{word-spacing:4.000000pt;}
.wsf2{word-spacing:4.032000pt;}
.wsb9{word-spacing:4.053333pt;}
.ws94{word-spacing:4.106667pt;}
.wsff{word-spacing:4.128000pt;}
.ws5{word-spacing:4.160000pt;}
.wscd{word-spacing:4.176000pt;}
.ws5f{word-spacing:4.213333pt;}
.ws33{word-spacing:4.320000pt;}
.wsfb{word-spacing:4.416000pt;}
.ws9d{word-spacing:4.426667pt;}
.ws4c{word-spacing:4.480000pt;}
.ws5b{word-spacing:4.586667pt;}
.wsc4{word-spacing:4.640000pt;}
.ws5c{word-spacing:4.693333pt;}
.ws82{word-spacing:4.746667pt;}
.ws38{word-spacing:4.800000pt;}
.wsa{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.ws6{word-spacing:4.960000pt;}
.wsb4{word-spacing:5.066667pt;}
.wsab{word-spacing:5.120000pt;}
.wsc6{word-spacing:5.226667pt;}
.ws21{word-spacing:5.333333pt;}
.ws43{word-spacing:5.386667pt;}
.ws7d{word-spacing:5.440000pt;}
.ws44{word-spacing:5.493333pt;}
.wsfa{word-spacing:5.520000pt;}
.wsa2{word-spacing:5.546667pt;}
.ws3d{word-spacing:5.600000pt;}
.ws86{word-spacing:5.653333pt;}
.wsf3{word-spacing:5.664000pt;}
.ws2b{word-spacing:5.760000pt;}
.wse7{word-spacing:5.808000pt;}
.ws55{word-spacing:5.866667pt;}
.wsdc{word-spacing:5.904000pt;}
.ws8f{word-spacing:5.920000pt;}
.ws56{word-spacing:6.026667pt;}
.ws67{word-spacing:6.080000pt;}
.ws53{word-spacing:6.133333pt;}
.ws7{word-spacing:6.240000pt;}
.wsf7{word-spacing:6.336000pt;}
.wsc3{word-spacing:6.400000pt;}
.wsc8{word-spacing:6.453333pt;}
.wsc0{word-spacing:6.506667pt;}
.ws8e{word-spacing:6.613333pt;}
.wsa0{word-spacing:6.666667pt;}
.ws22{word-spacing:6.720000pt;}
.ws77{word-spacing:6.880000pt;}
.wsa1{word-spacing:6.933333pt;}
.ws99{word-spacing:6.986667pt;}
.ws25{word-spacing:7.093333pt;}
.ws3f{word-spacing:7.200000pt;}
.ws4a{word-spacing:7.253333pt;}
.ws85{word-spacing:7.306667pt;}
.ws9a{word-spacing:7.413333pt;}
.wsa3{word-spacing:7.466667pt;}
.wsb6{word-spacing:7.520000pt;}
.ws46{word-spacing:7.573333pt;}
.ws2d{word-spacing:7.626667pt;}
.ws91{word-spacing:7.680000pt;}
.ws8{word-spacing:7.733333pt;}
.ws9e{word-spacing:7.840000pt;}
.ws92{word-spacing:7.946667pt;}
.wsb8{word-spacing:8.000000pt;}
.ws8c{word-spacing:8.053333pt;}
.wscc{word-spacing:8.208000pt;}
.ws31{word-spacing:8.213333pt;}
.wsde{word-spacing:8.352000pt;}
.wsed{word-spacing:8.784000pt;}
.ws70{word-spacing:8.853333pt;}
.ws6e{word-spacing:9.013333pt;}
.wsdd{word-spacing:9.120000pt;}
.ws32{word-spacing:9.226667pt;}
.ws51{word-spacing:9.440000pt;}
.ws100{word-spacing:9.552000pt;}
.wsbc{word-spacing:9.706667pt;}
.ws89{word-spacing:9.920000pt;}
.wsf9{word-spacing:9.936000pt;}
.ws101{word-spacing:10.560000pt;}
.wsd2{word-spacing:10.704000pt;}
.wsd0{word-spacing:11.088000pt;}
.ws76{word-spacing:11.626667pt;}
.ws4e{word-spacing:12.106667pt;}
.ws65{word-spacing:12.693333pt;}
.wsf1{word-spacing:12.960000pt;}
.ws106{word-spacing:14.304000pt;}
.wscb{word-spacing:16.224000pt;}
.ws13{word-spacing:18.453333pt;}
.ws4{word-spacing:18.506667pt;}
.ws18{word-spacing:19.573333pt;}
.wsd9{word-spacing:22.320000pt;}
.wsad{word-spacing:127.008000pt;}
.wsac{word-spacing:182.208000pt;}
.wsb2{word-spacing:286.128000pt;}
.wsaf{word-spacing:354.480000pt;}
.wsae{word-spacing:355.824000pt;}
.wsa7{word-spacing:655.008000pt;}
._0{margin-left:-10.378667pt;}
._37{margin-left:-8.640000pt;}
._5{margin-left:-6.880000pt;}
._9{margin-left:-5.866667pt;}
._8{margin-left:-4.746667pt;}
._3{margin-left:-3.466667pt;}
._4{margin-left:-2.133333pt;}
._2{margin-left:-0.960000pt;}
._b{width:1.013333pt;}
._a{width:1.973333pt;}
._45{width:5.808000pt;}
._7{width:9.226667pt;}
._c{width:10.656000pt;}
._43{width:36.912000pt;}
._41{width:39.792000pt;}
._42{width:43.824000pt;}
._40{width:48.000000pt;}
._44{width:63.996800pt;}
._17{width:140.352000pt;}
._28{width:156.192000pt;}
._25{width:160.032000pt;}
._38{width:293.184000pt;}
._3b{width:299.472000pt;}
._3d{width:302.640000pt;}
._2a{width:315.168000pt;}
._2c{width:319.584000pt;}
._29{width:323.616000pt;}
._39{width:359.184000pt;}
._31{width:367.824000pt;}
._27{width:369.888000pt;}
._2b{width:371.808000pt;}
._16{width:375.216000pt;}
._34{width:379.920000pt;}
._3c{width:381.696000pt;}
._2d{width:389.760000pt;}
._35{width:391.824000pt;}
._2e{width:394.320000pt;}
._2f{width:424.368000pt;}
._32{width:428.928000pt;}
._19{width:433.728000pt;}
._30{width:436.464000pt;}
._1f{width:457.728000pt;}
._33{width:458.976000pt;}
._3f{width:469.008000pt;}
._12{width:501.984000pt;}
._d{width:508.656000pt;}
._e{width:513.552000pt;}
._3a{width:516.336000pt;}
._15{width:545.184000pt;}
._36{width:546.288000pt;}
._3e{width:550.848000pt;}
._f{width:558.528000pt;}
._11{width:581.040000pt;}
._1a{width:630.288000pt;}
._14{width:636.528000pt;}
._1e{width:764.880000pt;}
._18{width:774.912000pt;}
._1d{width:807.408000pt;}
._1c{width:818.352000pt;}
._22{width:858.432000pt;}
._23{width:860.400000pt;}
._24{width:869.424000pt;}
._1b{width:872.448000pt;}
._20{width:873.408000pt;}
._21{width:883.344000pt;}
._13{width:884.688000pt;}
._26{width:895.920000pt;}
._10{width:908.688000pt;}
._6{width:1417.013333pt;}
._1{width:1497.280000pt;}
.fs7{font-size:5.333333pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y13b{bottom:79.243067pt;}
.y1ea{bottom:82.104400pt;}
.y138{bottom:82.350667pt;}
.y24{bottom:83.149600pt;}
.y117{bottom:83.216400pt;}
.y21b{bottom:87.505733pt;}
.ya5{bottom:89.908533pt;}
.y1bf{bottom:89.909733pt;}
.y167{bottom:90.401867pt;}
.y24c{bottom:90.949733pt;}
.y159{bottom:92.809067pt;}
.y1a4{bottom:92.822267pt;}
.yf1{bottom:95.243067pt;}
.yd1{bottom:96.237733pt;}
.y23{bottom:96.482933pt;}
.y1e9{bottom:96.768400pt;}
.y137{bottom:98.350667pt;}
.y116{bottom:99.216400pt;}
.y50{bottom:99.379200pt;}
.y21a{bottom:102.169733pt;}
.y7a{bottom:103.243067pt;}
.y24b{bottom:105.613733pt;}
.ya4{bottom:105.908533pt;}
.y1be{bottom:105.909733pt;}
.y166{bottom:106.401867pt;}
.y158{bottom:108.809067pt;}
.y1a3{bottom:108.822267pt;}
.y22{bottom:109.816267pt;}
.yf0{bottom:111.243067pt;}
.y1e8{bottom:111.432400pt;}
.yd0{bottom:112.237733pt;}
.y136{bottom:114.350667pt;}
.y115{bottom:115.216400pt;}
.y4f{bottom:115.379200pt;}
.y219{bottom:116.833733pt;}
.y79{bottom:119.243067pt;}
.y24a{bottom:120.277733pt;}
.ya3{bottom:121.908533pt;}
.y1bd{bottom:121.909733pt;}
.y165{bottom:122.401867pt;}
.y21{bottom:123.149600pt;}
.y1a2{bottom:124.822267pt;}
.y1e7{bottom:126.096400pt;}
.yef{bottom:127.243067pt;}
.ycf{bottom:128.237733pt;}
.y135{bottom:130.350667pt;}
.y114{bottom:131.216400pt;}
.y4e{bottom:131.379200pt;}
.y218{bottom:131.497733pt;}
.y157{bottom:132.809067pt;}
.y249{bottom:134.941733pt;}
.y78{bottom:135.243067pt;}
.ya2{bottom:137.908533pt;}
.y1bc{bottom:137.909733pt;}
.y164{bottom:138.401867pt;}
.y1e6{bottom:140.760400pt;}
.yee{bottom:143.243067pt;}
.yce{bottom:144.237733pt;}
.y217{bottom:146.161733pt;}
.y134{bottom:146.350667pt;}
.y113{bottom:147.216400pt;}
.y4d{bottom:147.379200pt;}
.y1a1{bottom:148.822267pt;}
.y248{bottom:149.605733pt;}
.y77{bottom:151.243067pt;}
.ya1{bottom:153.908533pt;}
.y1bb{bottom:153.909733pt;}
.y163{bottom:154.401867pt;}
.y1e5{bottom:155.424400pt;}
.yed{bottom:159.243067pt;}
.ycd{bottom:160.237733pt;}
.y216{bottom:160.825733pt;}
.y133{bottom:162.350667pt;}
.y112{bottom:163.216400pt;}
.y4c{bottom:163.379200pt;}
.y247{bottom:164.269733pt;}
.y13a{bottom:167.237733pt;}
.y76{bottom:167.243067pt;}
.ya0{bottom:169.908533pt;}
.y1ba{bottom:169.909733pt;}
.y1e4{bottom:170.088400pt;}
.y162{bottom:170.401867pt;}
.y156{bottom:172.809067pt;}
.yec{bottom:175.243067pt;}
.y215{bottom:175.489733pt;}
.ycc{bottom:176.237733pt;}
.y20{bottom:177.730933pt;}
.y132{bottom:178.350667pt;}
.y246{bottom:178.933733pt;}
.y4b{bottom:179.379200pt;}
.y75{bottom:183.243067pt;}
.y1e3{bottom:184.752400pt;}
.y9f{bottom:185.908533pt;}
.y1b9{bottom:185.909733pt;}
.y161{bottom:186.401867pt;}
.y155{bottom:188.809067pt;}
.y1a0{bottom:188.822267pt;}
.y214{bottom:190.153733pt;}
.yeb{bottom:191.243067pt;}
.ycb{bottom:192.237733pt;}
.y245{bottom:193.597733pt;}
.y1f{bottom:193.730933pt;}
.y139{bottom:193.909733pt;}
.y131{bottom:194.350667pt;}
.y111{bottom:195.216400pt;}
.y4a{bottom:195.379200pt;}
.y74{bottom:199.243067pt;}
.y1e2{bottom:199.416400pt;}
.y9e{bottom:201.908533pt;}
.y1b8{bottom:201.909733pt;}
.y160{bottom:202.401867pt;}
.y154{bottom:204.809067pt;}
.y213{bottom:204.817733pt;}
.y19f{bottom:204.822267pt;}
.yea{bottom:207.243067pt;}
.yca{bottom:208.237733pt;}
.y244{bottom:208.261733pt;}
.y1e{bottom:209.730933pt;}
.y130{bottom:210.350667pt;}
.y110{bottom:211.216400pt;}
.y49{bottom:211.379200pt;}
.y1e1{bottom:214.080400pt;}
.y73{bottom:215.243067pt;}
.y9d{bottom:217.908533pt;}
.y1b7{bottom:217.909733pt;}
.y212{bottom:219.481733pt;}
.y153{bottom:220.809067pt;}
.y19e{bottom:220.822267pt;}
.y243{bottom:222.925733pt;}
.ye9{bottom:223.243067pt;}
.yc9{bottom:224.237733pt;}
.y1d{bottom:225.730933pt;}
.y12f{bottom:226.350667pt;}
.y48{bottom:227.379200pt;}
.y1e0{bottom:228.744400pt;}
.y72{bottom:231.243067pt;}
.y9c{bottom:233.908533pt;}
.y1b6{bottom:233.909733pt;}
.y211{bottom:234.145733pt;}
.y152{bottom:236.809067pt;}
.y19d{bottom:236.822267pt;}
.y242{bottom:237.589733pt;}
.ye8{bottom:239.243067pt;}
.yc8{bottom:240.237733pt;}
.y1c{bottom:241.730933pt;}
.y12e{bottom:242.350667pt;}
.y10f{bottom:243.216400pt;}
.y47{bottom:243.379200pt;}
.y1df{bottom:243.408400pt;}
.y71{bottom:247.243067pt;}
.y210{bottom:248.809733pt;}
.y9b{bottom:249.908533pt;}
.y1b5{bottom:249.909733pt;}
.y184{bottom:250.201867pt;}
.y241{bottom:252.253733pt;}
.y151{bottom:252.809067pt;}
.y19c{bottom:252.822267pt;}
.ye7{bottom:255.243067pt;}
.yc7{bottom:256.237733pt;}
.y1b{bottom:257.730933pt;}
.y1de{bottom:258.072400pt;}
.y12d{bottom:258.350667pt;}
.y46{bottom:259.379200pt;}
.y70{bottom:263.243067pt;}
.y20f{bottom:263.473733pt;}
.y183{bottom:265.537867pt;}
.y9a{bottom:265.908533pt;}
.y1b4{bottom:265.909733pt;}
.y240{bottom:266.917733pt;}
.y150{bottom:268.809067pt;}
.y19b{bottom:268.822267pt;}
.ye6{bottom:271.243067pt;}
.yc6{bottom:272.237733pt;}
.y1dd{bottom:272.736400pt;}
.y1a{bottom:273.730933pt;}
.y12c{bottom:274.350667pt;}
.y10e{bottom:275.216400pt;}
.y45{bottom:275.379200pt;}
.y20e{bottom:278.137733pt;}
.y6f{bottom:279.243067pt;}
.y182{bottom:280.873867pt;}
.y23f{bottom:281.581733pt;}
.y99{bottom:281.908533pt;}
.y1b3{bottom:281.909733pt;}
.y14f{bottom:284.809067pt;}
.y19a{bottom:284.822267pt;}
.ye5{bottom:287.243067pt;}
.y1dc{bottom:287.400400pt;}
.yc5{bottom:288.237733pt;}
.y19{bottom:289.730933pt;}
.y12b{bottom:290.350667pt;}
.y44{bottom:291.379200pt;}
.y20d{bottom:292.801733pt;}
.y6e{bottom:295.243067pt;}
.y181{bottom:296.209867pt;}
.y23e{bottom:296.245733pt;}
.y98{bottom:297.908533pt;}
.y1b2{bottom:297.909733pt;}
.y10d{bottom:298.776400pt;}
.y14e{bottom:300.809067pt;}
.y199{bottom:300.822267pt;}
.y1db{bottom:302.064400pt;}
.ye4{bottom:303.243067pt;}
.yc4{bottom:304.237733pt;}
.y18{bottom:305.730933pt;}
.y12a{bottom:306.350667pt;}
.y43{bottom:307.379200pt;}
.y20c{bottom:307.465733pt;}
.y23d{bottom:310.909733pt;}
.y6d{bottom:311.243067pt;}
.y97{bottom:313.908533pt;}
.y1b1{bottom:313.909733pt;}
.y1da{bottom:316.728400pt;}
.y14d{bottom:316.809067pt;}
.y198{bottom:316.822267pt;}
.ye3{bottom:319.243067pt;}
.y180{bottom:319.873867pt;}
.yc3{bottom:320.237733pt;}
.y17{bottom:321.730933pt;}
.y20b{bottom:322.129733pt;}
.y10c{bottom:322.336400pt;}
.y42{bottom:323.379200pt;}
.y23c{bottom:325.573733pt;}
.y6c{bottom:327.243067pt;}
.y96{bottom:329.908533pt;}
.y1b0{bottom:329.909733pt;}
.y129{bottom:330.350667pt;}
.y1d9{bottom:331.392400pt;}
.y197{bottom:332.822267pt;}
.yc2{bottom:336.237733pt;}
.y20a{bottom:336.793733pt;}
.y16{bottom:337.730933pt;}
.y10b{bottom:338.336400pt;}
.y41{bottom:339.379200pt;}
.y23b{bottom:340.237733pt;}
.y14c{bottom:340.809067pt;}
.y6b{bottom:343.243067pt;}
.y17f{bottom:344.540533pt;}
.y95{bottom:345.908533pt;}
.y1af{bottom:345.909733pt;}
.y1d8{bottom:346.056400pt;}
.y196{bottom:348.822267pt;}
.ye2{bottom:351.251067pt;}
.y209{bottom:351.457733pt;}
.yc1{bottom:352.237733pt;}
.y15{bottom:353.730933pt;}
.y23a{bottom:354.901733pt;}
.y40{bottom:355.379200pt;}
.y6a{bottom:359.243067pt;}
.y10a{bottom:361.896400pt;}
.y94{bottom:361.908533pt;}
.y1ae{bottom:361.909733pt;}
.y195{bottom:364.822267pt;}
.ye1{bottom:365.915067pt;}
.y1d7{bottom:366.056400pt;}
.y208{bottom:366.121733pt;}
.yc0{bottom:368.237733pt;}
.y239{bottom:369.565733pt;}
.y128{bottom:370.348533pt;}
.y3f{bottom:371.379200pt;}
.y69{bottom:375.243067pt;}
.y109{bottom:377.896400pt;}
.y93{bottom:377.908533pt;}
.y1ad{bottom:377.909733pt;}
.ye0{bottom:380.579067pt;}
.y207{bottom:380.785733pt;}
.y14b{bottom:380.809067pt;}
.y194{bottom:380.822267pt;}
.y238{bottom:384.229733pt;}
.ybf{bottom:384.237733pt;}
.y127{bottom:386.348533pt;}
.y3e{bottom:387.379200pt;}
.y68{bottom:391.243067pt;}
.y17e{bottom:391.871200pt;}
.y92{bottom:393.908533pt;}
.y1ac{bottom:393.909733pt;}
.ydf{bottom:395.243067pt;}
.y206{bottom:395.449733pt;}
.y14a{bottom:396.809067pt;}
.y193{bottom:396.822267pt;}
.y1d6{bottom:398.056400pt;}
.y237{bottom:398.893733pt;}
.ybe{bottom:400.237733pt;}
.y126{bottom:402.348533pt;}
.y3d{bottom:403.379200pt;}
.y17d{bottom:407.207200pt;}
.y67{bottom:407.243067pt;}
.y108{bottom:409.896400pt;}
.y91{bottom:409.908533pt;}
.y1ab{bottom:409.909733pt;}
.y205{bottom:410.113733pt;}
.y149{bottom:412.809067pt;}
.y192{bottom:412.822267pt;}
.y236{bottom:413.557733pt;}
.ybd{bottom:416.237733pt;}
.y1d5{bottom:418.056400pt;}
.y125{bottom:418.348533pt;}
.y14{bottom:419.064267pt;}
.y3c{bottom:419.379200pt;}
.y17c{bottom:422.543200pt;}
.y66{bottom:423.243067pt;}
.y204{bottom:424.777733pt;}
.y107{bottom:425.896400pt;}
.y90{bottom:425.908533pt;}
.yde{bottom:425.909733pt;}
.y235{bottom:428.221733pt;}
.y148{bottom:428.809067pt;}
.y191{bottom:428.822267pt;}
.ybc{bottom:432.237733pt;}
.y13{bottom:432.397600pt;}
.y124{bottom:434.348533pt;}
.y3b{bottom:435.379200pt;}
.y65{bottom:439.243067pt;}
.y203{bottom:439.441733pt;}
.y106{bottom:441.896400pt;}
.y8f{bottom:441.908533pt;}
.ydd{bottom:441.909733pt;}
.y234{bottom:442.885733pt;}
.y147{bottom:444.809067pt;}
.y190{bottom:444.822267pt;}
.y17b{bottom:446.207200pt;}
.ybb{bottom:448.237733pt;}
.y1d4{bottom:450.088400pt;}
.y123{bottom:450.348533pt;}
.y3a{bottom:451.379200pt;}
.y202{bottom:454.105733pt;}
.y64{bottom:455.243067pt;}
.y233{bottom:457.549733pt;}
.y8e{bottom:457.908533pt;}
.ydc{bottom:457.909733pt;}
.y146{bottom:460.809067pt;}
.y18f{bottom:460.822267pt;}
.yba{bottom:464.237733pt;}
.y1d3{bottom:464.752400pt;}
.y105{bottom:465.896400pt;}
.y122{bottom:466.348533pt;}
.y39{bottom:467.379200pt;}
.y201{bottom:468.769733pt;}
.y17a{bottom:470.873867pt;}
.y63{bottom:471.243067pt;}
.y232{bottom:472.213733pt;}
.y8d{bottom:473.908533pt;}
.ydb{bottom:473.909733pt;}
.y12{bottom:475.064267pt;}
.y145{bottom:476.809067pt;}
.y18e{bottom:476.822267pt;}
.y1d2{bottom:479.416400pt;}
.yb9{bottom:480.237733pt;}
.y121{bottom:482.348533pt;}
.y38{bottom:483.379200pt;}
.y200{bottom:483.433733pt;}
.y231{bottom:486.877733pt;}
.y62{bottom:487.243067pt;}
.y11{bottom:488.397600pt;}
.y8c{bottom:489.908533pt;}
.yda{bottom:489.909733pt;}
.y144{bottom:492.809067pt;}
.y18d{bottom:492.822267pt;}
.y1d1{bottom:494.080400pt;}
.yb8{bottom:496.237733pt;}
.y1ff{bottom:498.097733pt;}
.y120{bottom:498.348533pt;}
.y37{bottom:499.379200pt;}
.y230{bottom:501.541733pt;}
.y61{bottom:503.243067pt;}
.y104{bottom:505.896400pt;}
.y8b{bottom:505.908533pt;}
.yd9{bottom:505.909733pt;}
.y1d0{bottom:508.744400pt;}
.y143{bottom:508.809067pt;}
.y18c{bottom:508.822267pt;}
.yb7{bottom:512.237733pt;}
.y1fe{bottom:512.761733pt;}
.y1c0{bottom:513.909733pt;}
.y11f{bottom:514.348533pt;}
.y36{bottom:515.379200pt;}
.y22f{bottom:516.205733pt;}
.y179{bottom:517.927067pt;}
.y60{bottom:519.243067pt;}
.y103{bottom:521.896400pt;}
.y8a{bottom:521.908533pt;}
.yd8{bottom:521.909733pt;}
.y1cf{bottom:523.408400pt;}
.y142{bottom:524.809067pt;}
.y18b{bottom:524.822267pt;}
.y1fd{bottom:527.425733pt;}
.yb6{bottom:528.237733pt;}
.y11e{bottom:530.348533pt;}
.y22e{bottom:530.869733pt;}
.y10{bottom:531.064267pt;}
.y35{bottom:531.379200pt;}
.y178{bottom:533.263067pt;}
.y5f{bottom:535.243067pt;}
.y102{bottom:537.896400pt;}
.y89{bottom:537.908533pt;}
.yd7{bottom:537.909733pt;}
.y1ce{bottom:538.072400pt;}
.y141{bottom:540.809067pt;}
.y18a{bottom:540.822267pt;}
.y1fc{bottom:542.089733pt;}
.yb5{bottom:544.237733pt;}
.yf{bottom:544.397600pt;}
.y22d{bottom:545.533733pt;}
.y34{bottom:547.379200pt;}
.y177{bottom:548.599067pt;}
.y5e{bottom:551.243067pt;}
.y1cd{bottom:552.736400pt;}
.y101{bottom:553.896400pt;}
.y88{bottom:553.908533pt;}
.yd6{bottom:553.909733pt;}
.y1fb{bottom:556.753733pt;}
.y259{bottom:559.412267pt;}
.y22c{bottom:560.197733pt;}
.yb4{bottom:560.237733pt;}
.y11d{bottom:562.348533pt;}
.y33{bottom:563.379200pt;}
.y176{bottom:563.935067pt;}
.y140{bottom:564.809067pt;}
.y189{bottom:564.822267pt;}
.y5d{bottom:567.243067pt;}
.y1cc{bottom:567.400400pt;}
.y100{bottom:569.896400pt;}
.y87{bottom:569.908533pt;}
.yd5{bottom:569.909733pt;}
.y1fa{bottom:571.417733pt;}
.y258{bottom:574.076267pt;}
.y22b{bottom:574.861733pt;}
.yb3{bottom:576.237733pt;}
.y175{bottom:579.271067pt;}
.y32{bottom:579.379200pt;}
.y1cb{bottom:582.064400pt;}
.y5c{bottom:583.243067pt;}
.yff{bottom:585.896400pt;}
.y86{bottom:585.908533pt;}
.yd4{bottom:585.909733pt;}
.y1f9{bottom:586.081733pt;}
.ye{bottom:587.064267pt;}
.y22a{bottom:589.525733pt;}
.yb2{bottom:592.237733pt;}
.y11c{bottom:594.348533pt;}
.y174{bottom:594.607067pt;}
.y31{bottom:595.379200pt;}
.y1ca{bottom:596.728400pt;}
.y257{bottom:596.744267pt;}
.y5b{bottom:599.243067pt;}
.yd{bottom:600.397600pt;}
.y1f8{bottom:600.745733pt;}
.yfe{bottom:601.896400pt;}
.y85{bottom:601.908533pt;}
.yd3{bottom:601.909733pt;}
.y229{bottom:604.189733pt;}
.y13f{bottom:604.809067pt;}
.y188{bottom:604.828533pt;}
.yb1{bottom:608.237733pt;}
.y173{bottom:609.943067pt;}
.y11b{bottom:610.348533pt;}
.y30{bottom:611.379200pt;}
.y1c9{bottom:611.392400pt;}
.y256{bottom:611.408267pt;}
.y5a{bottom:615.243067pt;}
.y1f7{bottom:615.409733pt;}
.yfd{bottom:617.895200pt;}
.y84{bottom:617.908533pt;}
.y228{bottom:618.853733pt;}
.y13e{bottom:620.809067pt;}
.y187{bottom:620.828533pt;}
.yb0{bottom:624.237733pt;}
.y172{bottom:625.279067pt;}
.yd2{bottom:625.909733pt;}
.y1c8{bottom:626.056400pt;}
.y255{bottom:626.072267pt;}
.y11a{bottom:626.348533pt;}
.y2f{bottom:627.379200pt;}
.y1f6{bottom:630.073733pt;}
.y59{bottom:631.243067pt;}
.y227{bottom:633.517733pt;}
.yfc{bottom:633.895200pt;}
.y83{bottom:633.908533pt;}
.y13d{bottom:636.809067pt;}
.y186{bottom:636.828533pt;}
.yaf{bottom:640.237733pt;}
.y171{bottom:640.615067pt;}
.y254{bottom:640.736267pt;}
.y119{bottom:642.348533pt;}
.y2e{bottom:643.379200pt;}
.y1f5{bottom:644.737733pt;}
.y1c7{bottom:646.056400pt;}
.y58{bottom:647.243067pt;}
.y226{bottom:648.181733pt;}
.yfb{bottom:649.895200pt;}
.y82{bottom:649.908533pt;}
.y13c{bottom:652.815200pt;}
.y185{bottom:652.828533pt;}
.y170{bottom:655.951067pt;}
.yae{bottom:656.237733pt;}
.y1f4{bottom:659.401733pt;}
.y225{bottom:662.845733pt;}
.y57{bottom:663.243067pt;}
.y253{bottom:663.404267pt;}
.yfa{bottom:665.895200pt;}
.y81{bottom:665.908533pt;}
.yc{bottom:667.064267pt;}
.y2d{bottom:667.379200pt;}
.y16f{bottom:671.287067pt;}
.yad{bottom:672.237733pt;}
.y1f3{bottom:674.065733pt;}
.y118{bottom:674.348533pt;}
.y224{bottom:677.509733pt;}
.y1c6{bottom:678.064267pt;}
.y252{bottom:678.068267pt;}
.y56{bottom:679.243067pt;}
.yf9{bottom:681.895200pt;}
.y80{bottom:681.908533pt;}
.y16e{bottom:686.623067pt;}
.yac{bottom:688.237733pt;}
.y1f2{bottom:688.729733pt;}
.yb{bottom:691.064267pt;}
.y223{bottom:692.173733pt;}
.y1c5{bottom:692.728267pt;}
.y251{bottom:692.732267pt;}
.y8{bottom:693.314933pt;}
.y55{bottom:695.243067pt;}
.yf8{bottom:697.895200pt;}
.y7f{bottom:697.908533pt;}
.y15f{bottom:700.626933pt;}
.y1aa{bottom:700.627200pt;}
.y16d{bottom:701.959067pt;}
.y1f1{bottom:703.393733pt;}
.yab{bottom:704.237733pt;}
.y7{bottom:704.645600pt;}
.y1{bottom:705.672667pt;}
.y222{bottom:706.837733pt;}
.y1c4{bottom:707.392267pt;}
.y250{bottom:707.396267pt;}
.yf7{bottom:713.895200pt;}
.y7e{bottom:713.908533pt;}
.ya{bottom:715.064267pt;}
.y15e{bottom:715.962933pt;}
.y1a9{bottom:715.963200pt;}
.y6{bottom:715.976267pt;}
.y16c{bottom:717.295067pt;}
.y1f0{bottom:718.057733pt;}
.y54{bottom:719.237733pt;}
.yaa{bottom:720.237733pt;}
.y221{bottom:721.501733pt;}
.y1c3{bottom:722.056267pt;}
.y2c{bottom:723.375200pt;}
.y5{bottom:727.306933pt;}
.yf6{bottom:729.895200pt;}
.y7d{bottom:729.908533pt;}
.y24f{bottom:730.064267pt;}
.y15d{bottom:731.298933pt;}
.y1a8{bottom:731.299200pt;}
.y16b{bottom:732.631067pt;}
.y1ef{bottom:732.721733pt;}
.y220{bottom:736.165733pt;}
.ya9{bottom:736.237733pt;}
.y53{bottom:737.909733pt;}
.y4{bottom:738.637600pt;}
.y9{bottom:739.064267pt;}
.y2b{bottom:739.375200pt;}
.y1c2{bottom:742.056267pt;}
.y24e{bottom:744.728267pt;}
.yf5{bottom:745.895200pt;}
.y7c{bottom:745.908533pt;}
.y15c{bottom:746.634933pt;}
.y1a7{bottom:746.635200pt;}
.y1ee{bottom:747.385733pt;}
.y3{bottom:749.968267pt;}
.y21f{bottom:750.829733pt;}
.ya8{bottom:752.237733pt;}
.y16a{bottom:756.295067pt;}
.y24d{bottom:759.392267pt;}
.y2{bottom:761.298933pt;}
.yf4{bottom:761.895200pt;}
.y7b{bottom:761.908533pt;}
.y1ed{bottom:762.049733pt;}
.y21e{bottom:765.493733pt;}
.ya7{bottom:768.237733pt;}
.y15b{bottom:770.298933pt;}
.y169{bottom:770.299067pt;}
.y1a6{bottom:770.299200pt;}
.y1c1{bottom:774.056267pt;}
.y1ec{bottom:776.713733pt;}
.yf3{bottom:777.895200pt;}
.y52{bottom:777.908533pt;}
.y2a{bottom:778.055200pt;}
.y21d{bottom:780.157733pt;}
.y1eb{bottom:791.377733pt;}
.y27{bottom:791.713600pt;}
.ya6{bottom:792.237733pt;}
.yf2{bottom:793.895200pt;}
.y51{bottom:793.908533pt;}
.y29{bottom:794.055200pt;}
.y21c{bottom:794.821733pt;}
.y15a{bottom:794.965600pt;}
.y168{bottom:794.965733pt;}
.y1a5{bottom:794.965867pt;}
.y28{bottom:829.961867pt;}
.y26{bottom:876.073333pt;}
.y25{bottom:877.406800pt;}
.hb{height:3.706667pt;}
.h2{height:23.328000pt;}
.h3{height:27.216000pt;}
.h9{height:29.866667pt;}
.h6{height:31.104000pt;}
.hf{height:33.360000pt;}
.h14{height:33.600000pt;}
.ha{height:34.250667pt;}
.h12{height:34.992000pt;}
.he{height:37.013333pt;}
.hc{height:37.066667pt;}
.h7{height:37.333333pt;}
.h8{height:38.880000pt;}
.h11{height:39.002133pt;}
.hd{height:39.026667pt;}
.h13{height:39.030933pt;}
.h10{height:39.031467pt;}
.h5{height:44.800000pt;}
.h4{height:59.733333pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x9{left:5.669200pt;}
.x8{left:56.692933pt;}
.xa{left:64.252000pt;}
.xc{left:72.692933pt;}
.xb{left:80.252000pt;}
.x12{left:88.252000pt;}
.xf{left:202.717333pt;}
.x11{left:207.118000pt;}
.x10{left:218.883600pt;}
.xd{left:306.292933pt;}
.x1{left:385.451333pt;}
.x6{left:396.638800pt;}
.x7{left:406.354800pt;}
.x3{left:419.953467pt;}
.xe{left:425.392933pt;}
.x5{left:434.802800pt;}
.x4{left:440.085467pt;}
.x2{left:485.977467pt;}
}




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