
    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_b728bfbe96ea22106eb75932.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3a1dc3a78ca249ae846068b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_b6b295953295b27647a5e416.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_744f042cc829ac81ab7436a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.905000;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_98c67956fda4e97e09640274.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_872d195e7b2aba4f0d847487.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2054cddaff34089bc08aaba3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b7e4bcc9b233151a10804a12.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.813000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2054cddaff34089bc08aaba3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2c75edf7fc63c0f21a4b1324.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.909000;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.098000px;}
.v2{vertical-align:21.978000px;}
.v5{vertical-align:24.000000px;}
.v6{vertical-align:27.000000px;}
.v4{vertical-align:30.000000px;}
.ls6{letter-spacing:-4.500000px;}
.ls7{letter-spacing:-1.800000px;}
.ls5{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.225000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.480000px;}
.ls3{letter-spacing:2.400000px;}
.ls2{letter-spacing:3.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-18.000000px;}
.ws47{word-spacing:-15.000000px;}
.ws2{word-spacing:-12.750000px;}
.ws11{word-spacing:-12.000000px;}
.wsd4{word-spacing:-11.025000px;}
.ws2a{word-spacing:-9.619500px;}
.ws2b{word-spacing:-7.870500px;}
.ws4f{word-spacing:-5.820000px;}
.ws119{word-spacing:-5.640000px;}
.ws10e{word-spacing:-3.900000px;}
.ws4b{word-spacing:-3.720000px;}
.wsd{word-spacing:-3.621000px;}
.ws44{word-spacing:-3.300000px;}
.ws46{word-spacing:-3.000000px;}
.ws66{word-spacing:-2.880000px;}
.ws103{word-spacing:-2.820000px;}
.ws35{word-spacing:-2.760000px;}
.ws7f{word-spacing:-2.700000px;}
.wsbe{word-spacing:-2.688000px;}
.wsc9{word-spacing:-2.640000px;}
.wsec{word-spacing:-2.580000px;}
.ws8{word-spacing:-2.520000px;}
.ws3{word-spacing:-2.400000px;}
.ws8a{word-spacing:-2.304000px;}
.ws37{word-spacing:-2.280000px;}
.wsb{word-spacing:-2.220000px;}
.ws100{word-spacing:-2.160000px;}
.wsfb{word-spacing:-2.100000px;}
.wsb4{word-spacing:-2.040000px;}
.ws33{word-spacing:-1.980000px;}
.ws11b{word-spacing:-1.920000px;}
.wsfd{word-spacing:-1.860000px;}
.ws20{word-spacing:-1.800000px;}
.ws54{word-spacing:-1.683000px;}
.ws2c{word-spacing:-1.680000px;}
.wsa3{word-spacing:-1.620000px;}
.wsa7{word-spacing:-1.500000px;}
.wsb2{word-spacing:-1.479000px;}
.ws99{word-spacing:-1.440000px;}
.ws7c{word-spacing:-1.380000px;}
.ws96{word-spacing:-1.320000px;}
.ws76{word-spacing:-1.260000px;}
.ws50{word-spacing:-1.200000px;}
.wsbf{word-spacing:-1.152000px;}
.ws77{word-spacing:-1.140000px;}
.ws69{word-spacing:-1.080000px;}
.wsb6{word-spacing:-1.071000px;}
.ws106{word-spacing:-1.020000px;}
.ws48{word-spacing:-0.960000px;}
.ws95{word-spacing:-0.900000px;}
.wsbd{word-spacing:-0.864000px;}
.ws9e{word-spacing:-0.840000px;}
.wsfc{word-spacing:-0.780000px;}
.ws58{word-spacing:-0.663000px;}
.wsf8{word-spacing:-0.660000px;}
.wse9{word-spacing:-0.600000px;}
.ws60{word-spacing:-0.540000px;}
.wsa9{word-spacing:-0.510000px;}
.ws2e{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.420000px;}
.wsee{word-spacing:-0.360000px;}
.wsf2{word-spacing:-0.300000px;}
.wsaa{word-spacing:-0.255000px;}
.wsf1{word-spacing:-0.240000px;}
.wsed{word-spacing:-0.180000px;}
.ws22{word-spacing:-0.120000px;}
.wsa2{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws64{word-spacing:0.120000px;}
.ws62{word-spacing:0.180000px;}
.ws55{word-spacing:0.204000px;}
.wsd9{word-spacing:0.225000px;}
.ws18{word-spacing:0.240000px;}
.ws7b{word-spacing:0.300000px;}
.ws3e{word-spacing:0.360000px;}
.ws31{word-spacing:0.420000px;}
.ws3c{word-spacing:0.480000px;}
.ws6d{word-spacing:0.540000px;}
.ws1a{word-spacing:0.600000px;}
.ws17{word-spacing:0.660000px;}
.ws53{word-spacing:0.720000px;}
.wsb5{word-spacing:0.765000px;}
.ws45{word-spacing:0.780000px;}
.ws4e{word-spacing:0.900000px;}
.ws32{word-spacing:0.960000px;}
.wsb0{word-spacing:0.969000px;}
.ws1c{word-spacing:1.020000px;}
.ws61{word-spacing:1.080000px;}
.ws5b{word-spacing:1.122000px;}
.ws3d{word-spacing:1.140000px;}
.ws1f{word-spacing:1.200000px;}
.ws102{word-spacing:1.224000px;}
.ws30{word-spacing:1.260000px;}
.ws65{word-spacing:1.320000px;}
.ws73{word-spacing:1.344000px;}
.ws63{word-spacing:1.380000px;}
.ws84{word-spacing:1.440000px;}
.ws9f{word-spacing:1.500000px;}
.ws39{word-spacing:1.560000px;}
.ws9a{word-spacing:1.620000px;}
.ws14{word-spacing:1.680000px;}
.ws72{word-spacing:1.740000px;}
.wsb3{word-spacing:1.785000px;}
.ws26{word-spacing:1.800000px;}
.ws104{word-spacing:1.860000px;}
.wsa4{word-spacing:1.920000px;}
.ws101{word-spacing:1.938000px;}
.ws5c{word-spacing:1.980000px;}
.wsa{word-spacing:2.040000px;}
.ws8d{word-spacing:2.064000px;}
.wsc6{word-spacing:2.100000px;}
.ws42{word-spacing:2.160000px;}
.ws6{word-spacing:2.220000px;}
.wseb{word-spacing:2.280000px;}
.wsf5{word-spacing:2.340000px;}
.ws91{word-spacing:2.352000px;}
.ws7a{word-spacing:2.400000px;}
.ws8c{word-spacing:2.448000px;}
.ws12{word-spacing:2.460000px;}
.ws6c{word-spacing:2.520000px;}
.ws5f{word-spacing:2.640000px;}
.ws25{word-spacing:2.700000px;}
.ws36{word-spacing:2.760000px;}
.ws7d{word-spacing:2.820000px;}
.ws97{word-spacing:2.880000px;}
.ws56{word-spacing:2.958000px;}
.ws3f{word-spacing:3.000000px;}
.ws87{word-spacing:3.060000px;}
.ws75{word-spacing:3.120000px;}
.ws27{word-spacing:3.180000px;}
.wsae{word-spacing:3.213000px;}
.ws8e{word-spacing:3.216000px;}
.ws19{word-spacing:3.240000px;}
.ws4{word-spacing:3.300000px;}
.ws85{word-spacing:3.360000px;}
.ws81{word-spacing:3.420000px;}
.ws34{word-spacing:3.480000px;}
.wsfe{word-spacing:3.540000px;}
.ws88{word-spacing:3.600000px;}
.ws90{word-spacing:3.648000px;}
.ws98{word-spacing:3.660000px;}
.ws5d{word-spacing:3.720000px;}
.wsca{word-spacing:3.780000px;}
.ws1e{word-spacing:3.840000px;}
.ws9c{word-spacing:3.900000px;}
.ws21{word-spacing:3.960000px;}
.wsf0{word-spacing:4.020000px;}
.ws1d{word-spacing:4.080000px;}
.ws57{word-spacing:4.131000px;}
.ws2f{word-spacing:4.140000px;}
.ws4d{word-spacing:4.200000px;}
.ws9{word-spacing:4.260000px;}
.ws4a{word-spacing:4.320000px;}
.ws23{word-spacing:4.380000px;}
.ws9b{word-spacing:4.440000px;}
.wsff{word-spacing:4.500000px;}
.ws2d{word-spacing:4.620000px;}
.wsa8{word-spacing:4.641000px;}
.ws71{word-spacing:4.680000px;}
.wsc5{word-spacing:4.740000px;}
.ws8b{word-spacing:4.848000px;}
.ws82{word-spacing:4.860000px;}
.wsaf{word-spacing:4.896000px;}
.wsb1{word-spacing:4.947000px;}
.wsc7{word-spacing:4.980000px;}
.wscd{word-spacing:5.040000px;}
.ws51{word-spacing:5.100000px;}
.wsad{word-spacing:5.151000px;}
.ws1b{word-spacing:5.220000px;}
.ws15{word-spacing:5.280000px;}
.ws24{word-spacing:5.400000px;}
.ws43{word-spacing:5.460000px;}
.wsea{word-spacing:5.490000px;}
.ws79{word-spacing:5.520000px;}
.wsef{word-spacing:5.580000px;}
.ws105{word-spacing:5.640000px;}
.ws6b{word-spacing:5.700000px;}
.ws10b{word-spacing:5.760000px;}
.ws3b{word-spacing:5.820000px;}
.ws59{word-spacing:5.865000px;}
.ws78{word-spacing:5.880000px;}
.ws52{word-spacing:5.940000px;}
.ws86{word-spacing:6.000000px;}
.ws6a{word-spacing:6.060000px;}
.ws28{word-spacing:6.120000px;}
.ws3a{word-spacing:6.180000px;}
.wscb{word-spacing:6.240000px;}
.ws118{word-spacing:6.360000px;}
.ws38{word-spacing:6.420000px;}
.wsf7{word-spacing:6.480000px;}
.ws5e{word-spacing:6.540000px;}
.wse7{word-spacing:6.600000px;}
.ws13{word-spacing:6.720000px;}
.ws83{word-spacing:6.780000px;}
.ws9d{word-spacing:6.840000px;}
.ws7{word-spacing:6.900000px;}
.wsb7{word-spacing:6.912000px;}
.ws29{word-spacing:7.020000px;}
.ws80{word-spacing:7.080000px;}
.ws5a{word-spacing:7.140000px;}
.ws110{word-spacing:7.260000px;}
.ws67{word-spacing:7.320000px;}
.wsc8{word-spacing:7.425000px;}
.wsf9{word-spacing:7.500000px;}
.ws40{word-spacing:7.620000px;}
.wsc4{word-spacing:7.740000px;}
.wscc{word-spacing:7.800000px;}
.wse8{word-spacing:7.920000px;}
.ws16{word-spacing:7.980000px;}
.ws107{word-spacing:8.100000px;}
.wsce{word-spacing:8.160000px;}
.ws41{word-spacing:8.280000px;}
.ws115{word-spacing:8.340000px;}
.ws10f{word-spacing:8.460000px;}
.wsc0{word-spacing:8.544000px;}
.ws49{word-spacing:8.568000px;}
.ws68{word-spacing:8.580000px;}
.ws6e{word-spacing:8.640000px;}
.ws7e{word-spacing:8.700000px;}
.wsfa{word-spacing:8.820000px;}
.wsf6{word-spacing:8.880000px;}
.ws113{word-spacing:9.000000px;}
.ws10a{word-spacing:9.360000px;}
.wsa5{word-spacing:9.480000px;}
.wsa6{word-spacing:9.780000px;}
.ws74{word-spacing:9.840000px;}
.ws5{word-spacing:9.960000px;}
.ws108{word-spacing:10.500000px;}
.ws10d{word-spacing:10.860000px;}
.ws8f{word-spacing:10.944000px;}
.ws114{word-spacing:12.420000px;}
.ws117{word-spacing:12.960000px;}
.ws11a{word-spacing:13.440000px;}
.wsc{word-spacing:13.515000px;}
.ws111{word-spacing:13.800000px;}
.wsf{word-spacing:14.841000px;}
.ws109{word-spacing:17.880000px;}
.wse{word-spacing:18.309000px;}
.ws10c{word-spacing:18.660000px;}
.ws89{word-spacing:19.008000px;}
.wsbc{word-spacing:24.768000px;}
.wsd0{word-spacing:27.846000px;}
.wsd3{word-spacing:27.846600px;}
.ws116{word-spacing:31.020000px;}
.wsab{word-spacing:32.914800px;}
.ws112{word-spacing:40.500000px;}
.wsd1{word-spacing:49.752600px;}
.wsac{word-spacing:56.914800px;}
.wsb8{word-spacing:59.554800px;}
.wsba{word-spacing:62.242800px;}
.wsbb{word-spacing:64.882800px;}
.wsd5{word-spacing:71.896800px;}
.wsd8{word-spacing:83.146800px;}
.wsd2{word-spacing:87.309600px;}
.wsb9{word-spacing:102.226800px;}
.ws70{word-spacing:150.964800px;}
.wsa0{word-spacing:157.344000px;}
.wsa1{word-spacing:159.984000px;}
.ws92{word-spacing:162.406800px;}
.wsf4{word-spacing:260.101200px;}
.wsf3{word-spacing:286.189200px;}
.ws93{word-spacing:335.951400px;}
.wscf{word-spacing:346.955400px;}
.wse6{word-spacing:397.602000px;}
.wsdb{word-spacing:397.698000px;}
.wsc3{word-spacing:401.722200px;}
.wse5{word-spacing:412.314000px;}
.wse4{word-spacing:419.826000px;}
.wsd7{word-spacing:425.524800px;}
.wsde{word-spacing:430.074000px;}
.wse0{word-spacing:438.978000px;}
.wse1{word-spacing:440.298000px;}
.wse2{word-spacing:441.642000px;}
.wse3{word-spacing:442.962000px;}
.wsda{word-spacing:444.306000px;}
.wsdf{word-spacing:449.658000px;}
.wsdd{word-spacing:461.634000px;}
.wsdc{word-spacing:472.314000px;}
.ws6f{word-spacing:554.562600px;}
.ws94{word-spacing:657.487200px;}
.wsd6{word-spacing:788.989800px;}
.ws10{word-spacing:1084.806000px;}
.wsc1{word-spacing:1305.715800px;}
.wsc2{word-spacing:1423.075800px;}
._46{margin-left:-8.544000px;}
._52{margin-left:-7.425000px;}
._1{margin-left:-6.192000px;}
._4{margin-left:-4.800000px;}
._2{margin-left:-3.564000px;}
._0{margin-left:-2.400000px;}
._5{margin-left:-1.074000px;}
._7{width:1.066800px;}
._3{width:2.400600px;}
._5c{width:4.500000px;}
._53{width:6.615000px;}
._72{width:9.252000px;}
._c{width:14.040000px;}
._8{width:29.682000px;}
._9{width:31.008000px;}
._17{width:33.609000px;}
._18{width:34.935000px;}
._7a{width:36.312000px;}
._4c{width:38.250000px;}
._a{width:39.933000px;}
._b{width:41.259000px;}
._73{width:51.525000px;}
._1c{width:68.914800px;}
._25{width:71.554800px;}
._42{width:72.697800px;}
._3d{width:74.242800px;}
._43{width:76.882800px;}
._d{width:79.200000px;}
._48{width:82.423800px;}
._66{width:83.956200px;}
._56{width:93.588000px;}
._5b{width:101.889000px;}
._47{width:113.947800px;}
._1a{width:116.914800px;}
._11{width:118.245600px;}
._23{width:119.554800px;}
._5a{width:120.631800px;}
._40{width:122.242800px;}
._65{width:124.388400px;}
._68{width:129.214800px;}
._55{width:131.882400px;}
._61{width:143.132400px;}
._64{width:154.382400px;}
._62{width:155.494800px;}
._6{width:159.021000px;}
._6b{width:161.014800px;}
._70{width:186.066000px;}
._4e{width:192.226200px;}
._75{width:195.733200px;}
._77{width:222.157200px;}
._2d{width:227.653800px;}
._74{width:271.501800px;}
._21{width:285.301800px;}
._e{width:292.945200px;}
._76{width:298.189200px;}
._1e{width:301.381800px;}
._28{width:302.437800px;}
._78{width:310.189800px;}
._41{width:325.261800px;}
._16{width:329.551200px;}
._15{width:347.950800px;}
._6d{width:368.104800px;}
._69{width:374.224800px;}
._13{width:392.455800px;}
._71{width:402.306000px;}
._5d{width:424.144200px;}
._63{width:437.848800px;}
._10{width:440.413800px;}
._6c{width:445.504800px;}
._67{width:446.809800px;}
._58{width:451.624800px;}
._4d{width:455.818800px;}
._2a{width:475.879800px;}
._33{width:484.261800px;}
._f{width:510.765000px;}
._14{width:515.023200px;}
._6a{width:526.603800px;}
._29{width:532.261800px;}
._26{width:563.911800px;}
._3b{width:581.413800px;}
._2c{width:601.237800px;}
._6f{width:606.784800px;}
._54{width:623.029800px;}
._6e{width:645.484800px;}
._50{width:658.137600px;}
._12{width:668.286600px;}
._60{width:725.449800px;}
._3f{width:758.773800px;}
._57{width:764.194800px;}
._59{width:765.283800px;}
._5f{width:774.184800px;}
._5e{width:794.209800px;}
._1d{width:801.541800px;}
._24{width:813.133800px;}
._51{width:855.993600px;}
._3a{width:865.525800px;}
._36{width:894.661800px;}
._4a{width:920.101800px;}
._30{width:966.757800px;}
._3e{width:1010.677800px;}
._79{width:1035.496200px;}
._44{width:1045.381800px;}
._45{width:1092.181800px;}
._2f{width:1094.749800px;}
._2b{width:1101.253800px;}
._22{width:1102.693800px;}
._4b{width:1136.101800px;}
._3c{width:1173.325800px;}
._1b{width:1185.325800px;}
._32{width:1194.487800px;}
._34{width:1212.085800px;}
._27{width:1214.293800px;}
._1f{width:1218.805800px;}
._37{width:1220.005800px;}
._31{width:1223.815800px;}
._39{width:1235.815800px;}
._2e{width:1244.101800px;}
._20{width:1264.933800px;}
._19{width:1322.269800px;}
._49{width:1361.389800px;}
._35{width:1410.637800px;}
._4f{width:1412.467800px;}
._38{width:1453.333800px;}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.482000px;}
.fsa{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y87{bottom:85.039350px;}
.y18f{bottom:86.291850px;}
.yc5{bottom:86.922600px;}
.y40{bottom:87.173700px;}
.y15d{bottom:89.534850px;}
.y1b5{bottom:90.916500px;}
.y63{bottom:92.416500px;}
.ya3{bottom:92.575500px;}
.y109{bottom:95.275500px;}
.y4{bottom:97.125005px;}
.y1cd{bottom:97.816350px;}
.y192{bottom:98.416500px;}
.y8f{bottom:100.339350px;}
.y18e{bottom:101.591850px;}
.y14c{bottom:102.867450px;}
.y86{bottom:104.834850px;}
.y1b4{bottom:110.416500px;}
.y62{bottom:111.916500px;}
.ya2{bottom:112.075500px;}
.yc4{bottom:113.099850px;}
.y108{bottom:114.775500px;}
.y8e{bottom:115.639350px;}
.y3f{bottom:116.618550px;}
.y1cc{bottom:117.316350px;}
.y191{bottom:117.916500px;}
.y1c4{bottom:120.134850px;}
.y16c{bottom:121.937550px;}
.y1ab{bottom:124.984800px;}
.y18d{bottom:126.752250px;}
.y1b3{bottom:129.916350px;}
.y3e{bottom:130.118550px;}
.y8d{bottom:130.939350px;}
.y61{bottom:131.416350px;}
.ya1{bottom:131.575500px;}
.yfb{bottom:132.475500px;}
.yc3{bottom:132.599850px;}
.y14b{bottom:132.865500px;}
.y107{bottom:134.275500px;}
.y111{bottom:135.434850px;}
.y1cb{bottom:136.816350px;}
.y16b{bottom:137.237550px;}
.y190{bottom:137.416350px;}
.y21{bottom:139.264499px;}
.y1aa{bottom:140.284800px;}
.ybe{bottom:141.195000px;}
.y39{bottom:143.618550px;}
.y8c{bottom:146.239350px;}
.y1c3{bottom:147.916350px;}
.y1b2{bottom:149.416350px;}
.y18c{bottom:150.138000px;}
.y60{bottom:150.916350px;}
.ya0{bottom:151.075500px;}
.yfa{bottom:151.975500px;}
.yc2{bottom:152.099850px;}
.yd0{bottom:152.575500px;}
.y1ca{bottom:156.316350px;}
.ybd{bottom:156.495000px;}
.y85{bottom:156.916350px;}
.y3d{bottom:157.118550px;}
.y1a9{bottom:157.292700px;}
.y14a{bottom:159.227700px;}
.y8b{bottom:161.539350px;}
.y110{bottom:162.916350px;}
.y16a{bottom:165.605700px;}
.yc1{bottom:167.099850px;}
.y1b1{bottom:168.916350px;}
.y5f{bottom:170.416350px;}
.y9f{bottom:170.575500px;}
.y3c{bottom:170.618550px;}
.yf9{bottom:171.475500px;}
.ybc{bottom:171.795000px;}
.ycf{bottom:172.075500px;}
.y18b{bottom:173.523750px;}
.y1c9{bottom:175.816350px;}
.y84{bottom:176.416350px;}
.y8a{bottom:176.839350px;}
.y10f{bottom:182.416350px;}
.y38{bottom:184.118550px;}
.y149{bottom:185.589900px;}
.y1b0{bottom:188.416350px;}
.yc0{bottom:189.069750px;}
.y5e{bottom:189.916350px;}
.y9e{bottom:190.075500px;}
.yf8{bottom:190.975500px;}
.y169{bottom:191.117550px;}
.yce{bottom:191.575500px;}
.y89{bottom:192.139350px;}
.y1c8{bottom:195.316350px;}
.y83{bottom:195.916350px;}
.y18a{bottom:196.909650px;}
.y18{bottom:196.933500px;}
.y3b{bottom:197.618550px;}
.y10e{bottom:201.916350px;}
.ybf{bottom:204.069750px;}
.y11a{bottom:207.439350px;}
.y1af{bottom:207.916350px;}
.y5d{bottom:209.416350px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y9d{bottom:209.575500px;}
.yf7{bottom:210.475500px;}
.ycd{bottom:211.075500px;}
.y3a{bottom:211.118550px;}
.y88{bottom:211.934850px;}
.y148{bottom:211.952100px;}
.y1c7{bottom:214.816350px;}
.y82{bottom:215.416350px;}
.y168{bottom:216.629400px;}
.y189{bottom:220.295550px;}
.y10a{bottom:220.647000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y119{bottom:222.739350px;}
.ybb{bottom:223.594950px;}
.y37{bottom:224.618550px;}
.y1c1{bottom:227.237550px;}
.y1ae{bottom:227.416350px;}
.y5c{bottom:228.916350px;}
.y9c{bottom:229.075500px;}
.yf6{bottom:229.975500px;}
.ycc{bottom:230.575500px;}
.y147{bottom:231.564300px;}
.y1c6{bottom:234.316350px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ya8{bottom:234.916350px;}
.y118{bottom:238.039350px;}
.y146{bottom:238.314300px;}
.y167{bottom:242.141250px;}
.y1a7{bottom:243.604050px;}
.y188{bottom:243.681300px;}
.yb9{bottom:244.915350px;}
.y1ad{bottom:246.916350px;}
.y5b{bottom:248.416350px;}
.y9b{bottom:248.575500px;}
.yf5{bottom:249.475500px;}
.ycb{bottom:250.075500px;}
.y81{bottom:252.916350px;}
.y117{bottom:253.339350px;}
.ya7{bottom:254.416350px;}
.y1c0{bottom:254.897100px;}
.yb8{bottom:259.915350px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1a6{bottom:264.048000px;}
.y145{bottom:264.676500px;}
.y187{bottom:267.067200px;}
.yb5{bottom:267.415350px;}
.y166{bottom:267.652950px;}
.y5a{bottom:267.916350px;}
.y9a{bottom:268.075500px;}
.y116{bottom:268.639350px;}
.yf4{bottom:268.975500px;}
.yca{bottom:269.575500px;}
.y1c5{bottom:271.816350px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y113{bottom:273.287100px;}
.ya6{bottom:273.916350px;}
.yb7{bottom:274.915350px;}
.y1bf{bottom:280.408950px;}
.y1a5{bottom:284.748000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y59{bottom:287.416350px;}
.y99{bottom:287.575500px;}
.yba{bottom:288.003750px;}
.y115{bottom:288.434850px;}
.yf3{bottom:288.475500px;}
.y112{bottom:288.587100px;}
.yc9{bottom:289.075500px;}
.yb6{bottom:289.915350px;}
.y144{bottom:291.038850px;}
.y186{bottom:291.708000px;}
.y165{bottom:293.164800px;}
.ya5{bottom:293.416350px;}
.y1b7{bottom:294.206100px;}
.y1be{bottom:305.920650px;}
.y58{bottom:306.916350px;}
.y98{bottom:307.075500px;}
.yf2{bottom:307.975500px;}
.yc8{bottom:308.575500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y143{bottom:310.651050px;}
.y1b6{bottom:310.682400px;}
.yb4{bottom:311.235600px;}
.y80{bottom:312.916350px;}
.y185{bottom:316.348950px;}
.y142{bottom:317.401050px;}
.y1a4{bottom:317.844000px;}
.y164{bottom:318.676650px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y57{bottom:326.416350px;}
.y97{bottom:326.575500px;}
.yf1{bottom:327.475500px;}
.yc7{bottom:328.075500px;}
.y1bd{bottom:331.432500px;}
.y7f{bottom:332.416350px;}
.y1a3{bottom:338.544000px;}
.y184{bottom:339.734850px;}
.yb2{bottom:341.575500px;}
.y141{bottom:343.763250px;}
.y163{bottom:344.188500px;}
.y56{bottom:345.916350px;}
.y96{bottom:346.075500px;}
.yf0{bottom:346.975500px;}
.yf{bottom:348.133500px;}
.y12b{bottom:349.078200px;}
.y7e{bottom:351.916350px;}
.y1bc{bottom:354.074250px;}
.y1a2{bottom:359.244000px;}
.yb1{bottom:359.575500px;}
.y1b9{bottom:360.824250px;}
.y183{bottom:363.120600px;}
.y55{bottom:365.416350px;}
.y95{bottom:365.575500px;}
.y1bb{bottom:367.574250px;}
.y162{bottom:369.700200px;}
.y140{bottom:370.125450px;}
.y7d{bottom:371.416350px;}
.y1b8{bottom:374.324250px;}
.y12a{bottom:375.440400px;}
.y36{bottom:376.400700px;}
.yb0{bottom:377.575500px;}
.y1a1{bottom:379.944000px;}
.y1ba{bottom:381.074250px;}
.y54{bottom:384.916350px;}
.y94{bottom:385.075500px;}
.y182{bottom:386.506500px;}
.ye{bottom:386.785499px;}
.yef{bottom:388.075500px;}
.y7c{bottom:390.916350px;}
.ya9{bottom:390.938250px;}
.y161{bottom:395.212050px;}
.y13f{bottom:396.487650px;}
.y1a0{bottom:400.644000px;}
.y129{bottom:401.802600px;}
.y53{bottom:404.416350px;}
.y93{bottom:404.575500px;}
.yd{bottom:408.044999px;}
.ye7{bottom:408.300450px;}
.y181{bottom:409.892250px;}
.y7b{bottom:410.416350px;}
.y35{bottom:412.400700px;}
.yaf{bottom:416.575500px;}
.y160{bottom:420.723900px;}
.y19f{bottom:421.344000px;}
.y13e{bottom:422.849850px;}
.y52{bottom:423.916350px;}
.yee{bottom:424.075500px;}
.y180{bottom:427.527000px;}
.y128{bottom:428.164800px;}
.y7a{bottom:429.916350px;}
.yae{bottom:436.075500px;}
.y17f{bottom:441.027000px;}
.y19e{bottom:442.044000px;}
.ye6{bottom:443.116050px;}
.y51{bottom:443.416350px;}
.y15f{bottom:446.235600px;}
.y34{bottom:448.400700px;}
.y13d{bottom:449.212050px;}
.y79{bottom:449.416350px;}
.ye3{bottom:450.616050px;}
.ya4{bottom:453.654900px;}
.y127{bottom:454.527000px;}
.yad{bottom:455.575500px;}
.ye5{bottom:458.116050px;}
.y17e{bottom:458.661900px;}
.y19d{bottom:462.744000px;}
.y50{bottom:462.916350px;}
.ye2{bottom:465.616050px;}
.y33{bottom:466.400700px;}
.y78{bottom:468.916350px;}
.ye4{bottom:473.116050px;}
.y15e{bottom:473.873400px;}
.y13c{bottom:475.574250px;}
.y126{bottom:480.889200px;}
.y17d{bottom:482.047650px;}
.y4f{bottom:482.416350px;}
.y19c{bottom:483.444000px;}
.yed{bottom:484.075500px;}
.y32{bottom:484.400700px;}
.y77{bottom:488.416350px;}
.yac{bottom:493.075500px;}
.y106{bottom:500.275500px;}
.y4e{bottom:501.916350px;}
.y13b{bottom:501.936450px;}
.y31{bottom:502.400700px;}
.yc{bottom:502.864502px;}
.yec{bottom:503.575500px;}
.y19b{bottom:504.144000px;}
.y17c{bottom:505.433550px;}
.y15c{bottom:505.816350px;}
.y125{bottom:507.251400px;}
.y76{bottom:507.916350px;}
.ye1{bottom:514.149000px;}
.y30{bottom:520.400700px;}
.yb{bottom:520.864502px;}
.yde{bottom:521.649000px;}
.yeb{bottom:523.075500px;}
.y19a{bottom:524.844000px;}
.y15b{bottom:525.316350px;}
.y75{bottom:527.416350px;}
.y13a{bottom:528.298650px;}
.y17b{bottom:528.819300px;}
.ye0{bottom:529.149000px;}
.y124{bottom:533.613600px;}
.ydd{bottom:536.649000px;}
.y2f{bottom:538.400700px;}
.ya{bottom:538.864499px;}
.y4d{bottom:539.416350px;}
.yea{bottom:542.575500px;}
.ydf{bottom:544.149000px;}
.y199{bottom:545.544000px;}
.y74{bottom:546.916350px;}
.y17a{bottom:552.205050px;}
.yab{bottom:553.075500px;}
.y139{bottom:554.660850px;}
.y2e{bottom:556.400700px;}
.y9{bottom:556.864499px;}
.y123{bottom:559.975800px;}
.ye9{bottom:562.075500px;}
.y1a8{bottom:564.316350px;}
.y1c2{bottom:564.916350px;}
.y198{bottom:566.244000px;}
.y73{bottom:566.416350px;}
.yaa{bottom:572.575500px;}
.y2d{bottom:574.400700px;}
.y179{bottom:575.590950px;}
.y138{bottom:581.023050px;}
.ye8{bottom:581.575500px;}
.y15a{bottom:583.816350px;}
.y72{bottom:585.916350px;}
.ydc{bottom:586.314450px;}
.y122{bottom:586.338000px;}
.y197{bottom:586.944000px;}
.y2c{bottom:592.400700px;}
.y178{bottom:598.976700px;}
.ydb{bottom:601.314450px;}
.y159{bottom:603.316350px;}
.y71{bottom:605.416350px;}
.y137{bottom:607.385250px;}
.y196{bottom:607.644000px;}
.y121{bottom:612.700200px;}
.yd8{bottom:616.314450px;}
.y1ac{bottom:617.416350px;}
.y177{bottom:622.362600px;}
.y158{bottom:622.816350px;}
.y4c{bottom:623.416350px;}
.y70{bottom:624.916350px;}
.yb3{bottom:627.985500px;}
.y195{bottom:628.344000px;}
.y2b{bottom:628.400700px;}
.y10d{bottom:630.916350px;}
.yda{bottom:631.314450px;}
.y120{bottom:632.312400px;}
.y136{bottom:633.747450px;}
.y11f{bottom:639.062400px;}
.y157{bottom:642.316350px;}
.y6f{bottom:644.416350px;}
.y8{bottom:645.510000px;}
.y176{bottom:645.748500px;}
.yd9{bottom:646.314450px;}
.y103{bottom:646.410750px;}
.y10c{bottom:648.916350px;}
.y194{bottom:649.044000px;}
.y135{bottom:653.359650px;}
.y134{bottom:660.109650px;}
.y156{bottom:661.816350px;}
.y4b{bottom:662.416350px;}
.y6e{bottom:663.916350px;}
.y11e{bottom:665.424600px;}
.y7{bottom:666.771000px;}
.y10b{bottom:666.916350px;}
.y175{bottom:669.134250px;}
.y193{bottom:669.744000px;}
.y155{bottom:681.316350px;}
.y102{bottom:682.645200px;}
.y6d{bottom:683.416350px;}
.yd7{bottom:685.231650px;}
.y133{bottom:686.471850px;}
.y11d{bottom:691.786800px;}
.y174{bottom:692.520150px;}
.y4a{bottom:698.416350px;}
.yd5{bottom:700.231650px;}
.y154{bottom:700.816350px;}
.y6c{bottom:702.916350px;}
.y2a{bottom:704.191500px;}
.y132{bottom:712.834050px;}
.yd4{bottom:715.231650px;}
.y173{bottom:715.905900px;}
.y49{bottom:716.416350px;}
.y101{bottom:716.660850px;}
.y11c{bottom:718.149150px;}
.y153{bottom:720.316350px;}
.y29{bottom:722.191500px;}
.y6b{bottom:722.416350px;}
.y6{bottom:726.298500px;}
.yd6{bottom:730.231650px;}
.y48{bottom:734.416350px;}
.y131{bottom:739.196250px;}
.y172{bottom:739.291800px;}
.y152{bottom:739.816350px;}
.y28{bottom:740.191500px;}
.y6a{bottom:741.916350px;}
.y11b{bottom:744.511350px;}
.y100{bottom:750.676650px;}
.y47{bottom:752.416350px;}
.y3{bottom:752.599495px;}
.y171{bottom:759.078450px;}
.y151{bottom:759.316350px;}
.y69{bottom:761.416350px;}
.y130{bottom:765.558450px;}
.yd3{bottom:768.263250px;}
.y46{bottom:770.416500px;}
.y170{bottom:772.578450px;}
.yd2{bottom:775.763250px;}
.y150{bottom:778.816350px;}
.y68{bottom:780.916500px;}
.y27{bottom:782.123100px;}
.yff{bottom:784.692300px;}
.y114{bottom:785.116350px;}
.y12f{bottom:785.170650px;}
.y16d{bottom:788.138250px;}
.y45{bottom:788.416500px;}
.y16f{bottom:789.150300px;}
.y12e{bottom:791.920650px;}
.y14f{bottom:798.316350px;}
.y26{bottom:799.943100px;}
.y67{bottom:800.416500px;}
.y44{bottom:806.416500px;}
.y16e{bottom:812.536050px;}
.yfd{bottom:812.708100px;}
.y25{bottom:817.763100px;}
.y14e{bottom:817.816350px;}
.yd1{bottom:818.282850px;}
.yfc{bottom:818.708100px;}
.y66{bottom:819.916500px;}
.y105{bottom:824.275500px;}
.y43{bottom:824.416500px;}
.yfe{bottom:824.708100px;}
.y92{bottom:836.575500px;}
.y24{bottom:837.203100px;}
.y14d{bottom:837.316350px;}
.y65{bottom:839.416500px;}
.y42{bottom:842.416500px;}
.y12d{bottom:844.645050px;}
.y91{bottom:856.075500px;}
.yc6{bottom:857.575500px;}
.y64{bottom:858.916500px;}
.y104{bottom:860.275500px;}
.y12c{bottom:871.007250px;}
.y90{bottom:875.575500px;}
.y41{bottom:878.416500px;}
.y2{bottom:879.369000px;}
.y22{bottom:914.732250px;}
.y23{bottom:915.756750px;}
.y1{bottom:966.726000px;}
.h15{height:22.037400px;}
.h16{height:31.500000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.hd{height:33.600000px;}
.h12{height:35.700000px;}
.hc{height:37.800000px;}
.h10{height:40.560000px;}
.hf{height:41.580000px;}
.h11{height:42.000000px;}
.he{height:45.360000px;}
.h7{height:45.960000px;}
.h13{height:47.640000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h14{height:48.912600px;}
.h2{height:55.152000px;}
.h1c{height:57.168000px;}
.h18{height:57.600000px;}
.h1b{height:58.500000px;}
.h19{height:60.600000px;}
.h17{height:63.600000px;}
.h5{height:78.132000px;}
.h1a{height:85.500000px;}
.h4{height:119.055004px;}
.ha{height:977.953500px;}
.hb{height:978.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:637.500000px;}
.w2{width:637.794021px;}
.w3{width:637.795500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039350px;}
.x45{left:86.539350px;}
.x14{left:89.689350px;}
.x2e{left:98.583600px;}
.x1{left:102.045000px;}
.x2d{left:104.084250px;}
.x44{left:105.180150px;}
.x2{left:106.297500px;}
.x1b{left:108.807600px;}
.x11{left:110.295600px;}
.xd{left:114.803100px;}
.x3a{left:117.573600px;}
.x46{left:122.539350px;}
.x3b{left:125.295600px;}
.xb{left:128.090550px;}
.x30{left:129.735600px;}
.x21{left:132.447600px;}
.x18{left:135.143550px;}
.x10{left:137.781600px;}
.x2c{left:139.611750px;}
.x2a{left:142.424250px;}
.x24{left:152.594250px;}
.x1f{left:155.511600px;}
.x23{left:162.031050px;}
.x3d{left:171.495600px;}
.x2b{left:174.599250px;}
.x15{left:176.054550px;}
.x22{left:180.777600px;}
.x3e{left:183.495600px;}
.x39{left:189.238650px;}
.x1a{left:193.221600px;}
.x3f{left:196.383450px;}
.x17{left:197.955600px;}
.x4{left:203.484001px;}
.x32{left:206.619150px;}
.x12{left:223.335600px;}
.x3c{left:224.361600px;}
.x13{left:227.267700px;}
.x38{left:229.119150px;}
.x33{left:233.643150px;}
.x20{left:234.729600px;}
.x37{left:239.295150px;}
.x35{left:241.737150px;}
.x36{left:243.963150px;}
.x31{left:248.295150px;}
.x19{left:249.448800px;}
.x34{left:252.297150px;}
.x2f{left:262.731600px;}
.x1c{left:266.883000px;}
.xe{left:277.745100px;}
.xf{left:286.190100px;}
.xc{left:289.317600px;}
.xa{left:290.990100px;}
.x28{left:292.417500px;}
.x27{left:300.736800px;}
.x26{left:334.905450px;}
.x16{left:341.030850px;}
.x25{left:351.781200px;}
.x1d{left:369.718950px;}
.x41{left:371.650050px;}
.x1e{left:372.988950px;}
.x40{left:391.966050px;}
.x9{left:406.353000px;}
.x29{left:425.078850px;}
.x8{left:436.347000px;}
.x7{left:451.934850px;}
.x3{left:454.959000px;}
.x42{left:472.699350px;}
.x43{left:477.361350px;}
.x5{left:539.255850px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.642667pt;}
.v2{vertical-align:19.536000pt;}
.v5{vertical-align:21.333333pt;}
.v6{vertical-align:24.000000pt;}
.v4{vertical-align:26.666667pt;}
.ls6{letter-spacing:-4.000000pt;}
.ls7{letter-spacing:-1.600000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.426667pt;}
.ls3{letter-spacing:2.133333pt;}
.ls2{letter-spacing:2.666667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws47{word-spacing:-13.333333pt;}
.ws2{word-spacing:-11.333333pt;}
.ws11{word-spacing:-10.666667pt;}
.wsd4{word-spacing:-9.800000pt;}
.ws2a{word-spacing:-8.550667pt;}
.ws2b{word-spacing:-6.996000pt;}
.ws4f{word-spacing:-5.173333pt;}
.ws119{word-spacing:-5.013333pt;}
.ws10e{word-spacing:-3.466667pt;}
.ws4b{word-spacing:-3.306667pt;}
.wsd{word-spacing:-3.218667pt;}
.ws44{word-spacing:-2.933333pt;}
.ws46{word-spacing:-2.666667pt;}
.ws66{word-spacing:-2.560000pt;}
.ws103{word-spacing:-2.506667pt;}
.ws35{word-spacing:-2.453333pt;}
.ws7f{word-spacing:-2.400000pt;}
.wsbe{word-spacing:-2.389333pt;}
.wsc9{word-spacing:-2.346667pt;}
.wsec{word-spacing:-2.293333pt;}
.ws8{word-spacing:-2.240000pt;}
.ws3{word-spacing:-2.133333pt;}
.ws8a{word-spacing:-2.048000pt;}
.ws37{word-spacing:-2.026667pt;}
.wsb{word-spacing:-1.973333pt;}
.ws100{word-spacing:-1.920000pt;}
.wsfb{word-spacing:-1.866667pt;}
.wsb4{word-spacing:-1.813333pt;}
.ws33{word-spacing:-1.760000pt;}
.ws11b{word-spacing:-1.706667pt;}
.wsfd{word-spacing:-1.653333pt;}
.ws20{word-spacing:-1.600000pt;}
.ws54{word-spacing:-1.496000pt;}
.ws2c{word-spacing:-1.493333pt;}
.wsa3{word-spacing:-1.440000pt;}
.wsa7{word-spacing:-1.333333pt;}
.wsb2{word-spacing:-1.314667pt;}
.ws99{word-spacing:-1.280000pt;}
.ws7c{word-spacing:-1.226667pt;}
.ws96{word-spacing:-1.173333pt;}
.ws76{word-spacing:-1.120000pt;}
.ws50{word-spacing:-1.066667pt;}
.wsbf{word-spacing:-1.024000pt;}
.ws77{word-spacing:-1.013333pt;}
.ws69{word-spacing:-0.960000pt;}
.wsb6{word-spacing:-0.952000pt;}
.ws106{word-spacing:-0.906667pt;}
.ws48{word-spacing:-0.853333pt;}
.ws95{word-spacing:-0.800000pt;}
.wsbd{word-spacing:-0.768000pt;}
.ws9e{word-spacing:-0.746667pt;}
.wsfc{word-spacing:-0.693333pt;}
.ws58{word-spacing:-0.589333pt;}
.wsf8{word-spacing:-0.586667pt;}
.wse9{word-spacing:-0.533333pt;}
.ws60{word-spacing:-0.480000pt;}
.wsa9{word-spacing:-0.453333pt;}
.ws2e{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.373333pt;}
.wsee{word-spacing:-0.320000pt;}
.wsf2{word-spacing:-0.266667pt;}
.wsaa{word-spacing:-0.226667pt;}
.wsf1{word-spacing:-0.213333pt;}
.wsed{word-spacing:-0.160000pt;}
.ws22{word-spacing:-0.106667pt;}
.wsa2{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws64{word-spacing:0.106667pt;}
.ws62{word-spacing:0.160000pt;}
.ws55{word-spacing:0.181333pt;}
.wsd9{word-spacing:0.200000pt;}
.ws18{word-spacing:0.213333pt;}
.ws7b{word-spacing:0.266667pt;}
.ws3e{word-spacing:0.320000pt;}
.ws31{word-spacing:0.373333pt;}
.ws3c{word-spacing:0.426667pt;}
.ws6d{word-spacing:0.480000pt;}
.ws1a{word-spacing:0.533333pt;}
.ws17{word-spacing:0.586667pt;}
.ws53{word-spacing:0.640000pt;}
.wsb5{word-spacing:0.680000pt;}
.ws45{word-spacing:0.693333pt;}
.ws4e{word-spacing:0.800000pt;}
.ws32{word-spacing:0.853333pt;}
.wsb0{word-spacing:0.861333pt;}
.ws1c{word-spacing:0.906667pt;}
.ws61{word-spacing:0.960000pt;}
.ws5b{word-spacing:0.997333pt;}
.ws3d{word-spacing:1.013333pt;}
.ws1f{word-spacing:1.066667pt;}
.ws102{word-spacing:1.088000pt;}
.ws30{word-spacing:1.120000pt;}
.ws65{word-spacing:1.173333pt;}
.ws73{word-spacing:1.194667pt;}
.ws63{word-spacing:1.226667pt;}
.ws84{word-spacing:1.280000pt;}
.ws9f{word-spacing:1.333333pt;}
.ws39{word-spacing:1.386667pt;}
.ws9a{word-spacing:1.440000pt;}
.ws14{word-spacing:1.493333pt;}
.ws72{word-spacing:1.546667pt;}
.wsb3{word-spacing:1.586667pt;}
.ws26{word-spacing:1.600000pt;}
.ws104{word-spacing:1.653333pt;}
.wsa4{word-spacing:1.706667pt;}
.ws101{word-spacing:1.722667pt;}
.ws5c{word-spacing:1.760000pt;}
.wsa{word-spacing:1.813333pt;}
.ws8d{word-spacing:1.834667pt;}
.wsc6{word-spacing:1.866667pt;}
.ws42{word-spacing:1.920000pt;}
.ws6{word-spacing:1.973333pt;}
.wseb{word-spacing:2.026667pt;}
.wsf5{word-spacing:2.080000pt;}
.ws91{word-spacing:2.090667pt;}
.ws7a{word-spacing:2.133333pt;}
.ws8c{word-spacing:2.176000pt;}
.ws12{word-spacing:2.186667pt;}
.ws6c{word-spacing:2.240000pt;}
.ws5f{word-spacing:2.346667pt;}
.ws25{word-spacing:2.400000pt;}
.ws36{word-spacing:2.453333pt;}
.ws7d{word-spacing:2.506667pt;}
.ws97{word-spacing:2.560000pt;}
.ws56{word-spacing:2.629333pt;}
.ws3f{word-spacing:2.666667pt;}
.ws87{word-spacing:2.720000pt;}
.ws75{word-spacing:2.773333pt;}
.ws27{word-spacing:2.826667pt;}
.wsae{word-spacing:2.856000pt;}
.ws8e{word-spacing:2.858667pt;}
.ws19{word-spacing:2.880000pt;}
.ws4{word-spacing:2.933333pt;}
.ws85{word-spacing:2.986667pt;}
.ws81{word-spacing:3.040000pt;}
.ws34{word-spacing:3.093333pt;}
.wsfe{word-spacing:3.146667pt;}
.ws88{word-spacing:3.200000pt;}
.ws90{word-spacing:3.242667pt;}
.ws98{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.306667pt;}
.wsca{word-spacing:3.360000pt;}
.ws1e{word-spacing:3.413333pt;}
.ws9c{word-spacing:3.466667pt;}
.ws21{word-spacing:3.520000pt;}
.wsf0{word-spacing:3.573333pt;}
.ws1d{word-spacing:3.626667pt;}
.ws57{word-spacing:3.672000pt;}
.ws2f{word-spacing:3.680000pt;}
.ws4d{word-spacing:3.733333pt;}
.ws9{word-spacing:3.786667pt;}
.ws4a{word-spacing:3.840000pt;}
.ws23{word-spacing:3.893333pt;}
.ws9b{word-spacing:3.946667pt;}
.wsff{word-spacing:4.000000pt;}
.ws2d{word-spacing:4.106667pt;}
.wsa8{word-spacing:4.125333pt;}
.ws71{word-spacing:4.160000pt;}
.wsc5{word-spacing:4.213333pt;}
.ws8b{word-spacing:4.309333pt;}
.ws82{word-spacing:4.320000pt;}
.wsaf{word-spacing:4.352000pt;}
.wsb1{word-spacing:4.397333pt;}
.wsc7{word-spacing:4.426667pt;}
.wscd{word-spacing:4.480000pt;}
.ws51{word-spacing:4.533333pt;}
.wsad{word-spacing:4.578667pt;}
.ws1b{word-spacing:4.640000pt;}
.ws15{word-spacing:4.693333pt;}
.ws24{word-spacing:4.800000pt;}
.ws43{word-spacing:4.853333pt;}
.wsea{word-spacing:4.880000pt;}
.ws79{word-spacing:4.906667pt;}
.wsef{word-spacing:4.960000pt;}
.ws105{word-spacing:5.013333pt;}
.ws6b{word-spacing:5.066667pt;}
.ws10b{word-spacing:5.120000pt;}
.ws3b{word-spacing:5.173333pt;}
.ws59{word-spacing:5.213333pt;}
.ws78{word-spacing:5.226667pt;}
.ws52{word-spacing:5.280000pt;}
.ws86{word-spacing:5.333333pt;}
.ws6a{word-spacing:5.386667pt;}
.ws28{word-spacing:5.440000pt;}
.ws3a{word-spacing:5.493333pt;}
.wscb{word-spacing:5.546667pt;}
.ws118{word-spacing:5.653333pt;}
.ws38{word-spacing:5.706667pt;}
.wsf7{word-spacing:5.760000pt;}
.ws5e{word-spacing:5.813333pt;}
.wse7{word-spacing:5.866667pt;}
.ws13{word-spacing:5.973333pt;}
.ws83{word-spacing:6.026667pt;}
.ws9d{word-spacing:6.080000pt;}
.ws7{word-spacing:6.133333pt;}
.wsb7{word-spacing:6.144000pt;}
.ws29{word-spacing:6.240000pt;}
.ws80{word-spacing:6.293333pt;}
.ws5a{word-spacing:6.346667pt;}
.ws110{word-spacing:6.453333pt;}
.ws67{word-spacing:6.506667pt;}
.wsc8{word-spacing:6.600000pt;}
.wsf9{word-spacing:6.666667pt;}
.ws40{word-spacing:6.773333pt;}
.wsc4{word-spacing:6.880000pt;}
.wscc{word-spacing:6.933333pt;}
.wse8{word-spacing:7.040000pt;}
.ws16{word-spacing:7.093333pt;}
.ws107{word-spacing:7.200000pt;}
.wsce{word-spacing:7.253333pt;}
.ws41{word-spacing:7.360000pt;}
.ws115{word-spacing:7.413333pt;}
.ws10f{word-spacing:7.520000pt;}
.wsc0{word-spacing:7.594667pt;}
.ws49{word-spacing:7.616000pt;}
.ws68{word-spacing:7.626667pt;}
.ws6e{word-spacing:7.680000pt;}
.ws7e{word-spacing:7.733333pt;}
.wsfa{word-spacing:7.840000pt;}
.wsf6{word-spacing:7.893333pt;}
.ws113{word-spacing:8.000000pt;}
.ws10a{word-spacing:8.320000pt;}
.wsa5{word-spacing:8.426667pt;}
.wsa6{word-spacing:8.693333pt;}
.ws74{word-spacing:8.746667pt;}
.ws5{word-spacing:8.853333pt;}
.ws108{word-spacing:9.333333pt;}
.ws10d{word-spacing:9.653333pt;}
.ws8f{word-spacing:9.728000pt;}
.ws114{word-spacing:11.040000pt;}
.ws117{word-spacing:11.520000pt;}
.ws11a{word-spacing:11.946667pt;}
.wsc{word-spacing:12.013333pt;}
.ws111{word-spacing:12.266667pt;}
.wsf{word-spacing:13.192000pt;}
.ws109{word-spacing:15.893333pt;}
.wse{word-spacing:16.274667pt;}
.ws10c{word-spacing:16.586667pt;}
.ws89{word-spacing:16.896000pt;}
.wsbc{word-spacing:22.016000pt;}
.wsd0{word-spacing:24.752000pt;}
.wsd3{word-spacing:24.752533pt;}
.ws116{word-spacing:27.573333pt;}
.wsab{word-spacing:29.257600pt;}
.ws112{word-spacing:36.000000pt;}
.wsd1{word-spacing:44.224533pt;}
.wsac{word-spacing:50.590933pt;}
.wsb8{word-spacing:52.937600pt;}
.wsba{word-spacing:55.326933pt;}
.wsbb{word-spacing:57.673600pt;}
.wsd5{word-spacing:63.908267pt;}
.wsd8{word-spacing:73.908267pt;}
.wsd2{word-spacing:77.608533pt;}
.wsb9{word-spacing:90.868267pt;}
.ws70{word-spacing:134.190933pt;}
.wsa0{word-spacing:139.861333pt;}
.wsa1{word-spacing:142.208000pt;}
.ws92{word-spacing:144.361600pt;}
.wsf4{word-spacing:231.201067pt;}
.wsf3{word-spacing:254.390400pt;}
.ws93{word-spacing:298.623467pt;}
.wscf{word-spacing:308.404800pt;}
.wse6{word-spacing:353.424000pt;}
.wsdb{word-spacing:353.509333pt;}
.wsc3{word-spacing:357.086400pt;}
.wse5{word-spacing:366.501333pt;}
.wse4{word-spacing:373.178667pt;}
.wsd7{word-spacing:378.244267pt;}
.wsde{word-spacing:382.288000pt;}
.wse0{word-spacing:390.202667pt;}
.wse1{word-spacing:391.376000pt;}
.wse2{word-spacing:392.570667pt;}
.wse3{word-spacing:393.744000pt;}
.wsda{word-spacing:394.938667pt;}
.wsdf{word-spacing:399.696000pt;}
.wsdd{word-spacing:410.341333pt;}
.wsdc{word-spacing:419.834667pt;}
.ws6f{word-spacing:492.944533pt;}
.ws94{word-spacing:584.433067pt;}
.wsd6{word-spacing:701.324267pt;}
.ws10{word-spacing:964.272000pt;}
.wsc1{word-spacing:1160.636267pt;}
.wsc2{word-spacing:1264.956267pt;}
._46{margin-left:-7.594667pt;}
._52{margin-left:-6.600000pt;}
._1{margin-left:-5.504000pt;}
._4{margin-left:-4.266667pt;}
._2{margin-left:-3.168000pt;}
._0{margin-left:-2.133333pt;}
._5{margin-left:-0.954667pt;}
._7{width:0.948267pt;}
._3{width:2.133867pt;}
._5c{width:4.000000pt;}
._53{width:5.880000pt;}
._72{width:8.224000pt;}
._c{width:12.480000pt;}
._8{width:26.384000pt;}
._9{width:27.562667pt;}
._17{width:29.874667pt;}
._18{width:31.053333pt;}
._7a{width:32.277333pt;}
._4c{width:34.000000pt;}
._a{width:35.496000pt;}
._b{width:36.674667pt;}
._73{width:45.800000pt;}
._1c{width:61.257600pt;}
._25{width:63.604267pt;}
._42{width:64.620267pt;}
._3d{width:65.993600pt;}
._43{width:68.340267pt;}
._d{width:70.400000pt;}
._48{width:73.265600pt;}
._66{width:74.627733pt;}
._56{width:83.189333pt;}
._5b{width:90.568000pt;}
._47{width:101.286933pt;}
._1a{width:103.924267pt;}
._11{width:105.107200pt;}
._23{width:106.270933pt;}
._5a{width:107.228267pt;}
._40{width:108.660267pt;}
._65{width:110.567467pt;}
._68{width:114.857600pt;}
._55{width:117.228800pt;}
._61{width:127.228800pt;}
._64{width:137.228800pt;}
._62{width:138.217600pt;}
._6{width:141.352000pt;}
._6b{width:143.124267pt;}
._70{width:165.392000pt;}
._4e{width:170.867733pt;}
._75{width:173.985067pt;}
._77{width:197.473067pt;}
._2d{width:202.358933pt;}
._74{width:241.334933pt;}
._21{width:253.601600pt;}
._e{width:260.395733pt;}
._76{width:265.057067pt;}
._1e{width:267.894933pt;}
._28{width:268.833600pt;}
._78{width:275.724267pt;}
._41{width:289.121600pt;}
._16{width:292.934400pt;}
._15{width:309.289600pt;}
._6d{width:327.204267pt;}
._69{width:332.644267pt;}
._13{width:348.849600pt;}
._71{width:357.605333pt;}
._5d{width:377.017067pt;}
._63{width:389.198933pt;}
._10{width:391.478933pt;}
._6c{width:396.004267pt;}
._67{width:397.164267pt;}
._58{width:401.444267pt;}
._4d{width:405.172267pt;}
._2a{width:423.004267pt;}
._33{width:430.454933pt;}
._f{width:454.013333pt;}
._14{width:457.798400pt;}
._6a{width:468.092267pt;}
._29{width:473.121600pt;}
._26{width:501.254933pt;}
._3b{width:516.812267pt;}
._2c{width:534.433600pt;}
._6f{width:539.364267pt;}
._54{width:553.804267pt;}
._6e{width:573.764267pt;}
._50{width:585.011200pt;}
._12{width:594.032533pt;}
._60{width:644.844267pt;}
._3f{width:674.465600pt;}
._57{width:679.284267pt;}
._59{width:680.252267pt;}
._5f{width:688.164267pt;}
._5e{width:705.964267pt;}
._1d{width:712.481600pt;}
._24{width:722.785600pt;}
._51{width:760.883200pt;}
._3a{width:769.356267pt;}
._36{width:795.254933pt;}
._4a{width:817.868267pt;}
._30{width:859.340267pt;}
._3e{width:898.380267pt;}
._79{width:920.441067pt;}
._44{width:929.228267pt;}
._45{width:970.828267pt;}
._2f{width:973.110933pt;}
._2b{width:978.892267pt;}
._22{width:980.172267pt;}
._4b{width:1009.868267pt;}
._3c{width:1042.956267pt;}
._1b{width:1053.622933pt;}
._32{width:1061.766933pt;}
._34{width:1077.409600pt;}
._27{width:1079.372267pt;}
._1f{width:1083.382933pt;}
._37{width:1084.449600pt;}
._31{width:1087.836267pt;}
._39{width:1098.502933pt;}
._2e{width:1105.868267pt;}
._20{width:1124.385600pt;}
._19{width:1175.350933pt;}
._49{width:1210.124267pt;}
._35{width:1253.900267pt;}
._4f{width:1255.526933pt;}
._38{width:1291.852267pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:52.800000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y87{bottom:75.590533pt;}
.y18f{bottom:76.703867pt;}
.yc5{bottom:77.264533pt;}
.y40{bottom:77.487733pt;}
.y15d{bottom:79.586533pt;}
.y1b5{bottom:80.814667pt;}
.y63{bottom:82.148000pt;}
.ya3{bottom:82.289333pt;}
.y109{bottom:84.689333pt;}
.y4{bottom:86.333337pt;}
.y1cd{bottom:86.947867pt;}
.y192{bottom:87.481333pt;}
.y8f{bottom:89.190533pt;}
.y18e{bottom:90.303867pt;}
.y14c{bottom:91.437733pt;}
.y86{bottom:93.186533pt;}
.y1b4{bottom:98.148000pt;}
.y62{bottom:99.481333pt;}
.ya2{bottom:99.622667pt;}
.yc4{bottom:100.533200pt;}
.y108{bottom:102.022667pt;}
.y8e{bottom:102.790533pt;}
.y3f{bottom:103.660933pt;}
.y1cc{bottom:104.281200pt;}
.y191{bottom:104.814667pt;}
.y1c4{bottom:106.786533pt;}
.y16c{bottom:108.388933pt;}
.y1ab{bottom:111.097600pt;}
.y18d{bottom:112.668667pt;}
.y1b3{bottom:115.481200pt;}
.y3e{bottom:115.660933pt;}
.y8d{bottom:116.390533pt;}
.y61{bottom:116.814533pt;}
.ya1{bottom:116.956000pt;}
.yfb{bottom:117.756000pt;}
.yc3{bottom:117.866533pt;}
.y14b{bottom:118.102667pt;}
.y107{bottom:119.356000pt;}
.y111{bottom:120.386533pt;}
.y1cb{bottom:121.614533pt;}
.y16b{bottom:121.988933pt;}
.y190{bottom:122.147867pt;}
.y21{bottom:123.790666pt;}
.y1aa{bottom:124.697600pt;}
.ybe{bottom:125.506667pt;}
.y39{bottom:127.660933pt;}
.y8c{bottom:129.990533pt;}
.y1c3{bottom:131.481200pt;}
.y1b2{bottom:132.814533pt;}
.y18c{bottom:133.456000pt;}
.y60{bottom:134.147867pt;}
.ya0{bottom:134.289333pt;}
.yfa{bottom:135.089333pt;}
.yc2{bottom:135.199867pt;}
.yd0{bottom:135.622667pt;}
.y1ca{bottom:138.947867pt;}
.ybd{bottom:139.106667pt;}
.y85{bottom:139.481200pt;}
.y3d{bottom:139.660933pt;}
.y1a9{bottom:139.815733pt;}
.y14a{bottom:141.535733pt;}
.y8b{bottom:143.590533pt;}
.y110{bottom:144.814533pt;}
.y16a{bottom:147.205067pt;}
.yc1{bottom:148.533200pt;}
.y1b1{bottom:150.147867pt;}
.y5f{bottom:151.481200pt;}
.y9f{bottom:151.622667pt;}
.y3c{bottom:151.660933pt;}
.yf9{bottom:152.422667pt;}
.ybc{bottom:152.706667pt;}
.ycf{bottom:152.956000pt;}
.y18b{bottom:154.243333pt;}
.y1c9{bottom:156.281200pt;}
.y84{bottom:156.814533pt;}
.y8a{bottom:157.190533pt;}
.y10f{bottom:162.147867pt;}
.y38{bottom:163.660933pt;}
.y149{bottom:164.968800pt;}
.y1b0{bottom:167.481200pt;}
.yc0{bottom:168.062000pt;}
.y5e{bottom:168.814533pt;}
.y9e{bottom:168.956000pt;}
.yf8{bottom:169.756000pt;}
.y169{bottom:169.882267pt;}
.yce{bottom:170.289333pt;}
.y89{bottom:170.790533pt;}
.y1c8{bottom:173.614533pt;}
.y83{bottom:174.147867pt;}
.y18a{bottom:175.030800pt;}
.y18{bottom:175.052000pt;}
.y3b{bottom:175.660933pt;}
.y10e{bottom:179.481200pt;}
.ybf{bottom:181.395333pt;}
.y11a{bottom:184.390533pt;}
.y1af{bottom:184.814533pt;}
.y5d{bottom:186.147867pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y9d{bottom:186.289333pt;}
.yf7{bottom:187.089333pt;}
.ycd{bottom:187.622667pt;}
.y3a{bottom:187.660933pt;}
.y88{bottom:188.386533pt;}
.y148{bottom:188.401867pt;}
.y1c7{bottom:190.947867pt;}
.y82{bottom:191.481200pt;}
.y168{bottom:192.559467pt;}
.y189{bottom:195.818267pt;}
.y10a{bottom:196.130667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y119{bottom:197.990533pt;}
.ybb{bottom:198.751067pt;}
.y37{bottom:199.660933pt;}
.y1c1{bottom:201.988933pt;}
.y1ae{bottom:202.147867pt;}
.y5c{bottom:203.481200pt;}
.y9c{bottom:203.622667pt;}
.yf6{bottom:204.422667pt;}
.ycc{bottom:204.956000pt;}
.y147{bottom:205.834933pt;}
.y1c6{bottom:208.281200pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ya8{bottom:208.814533pt;}
.y118{bottom:211.590533pt;}
.y146{bottom:211.834933pt;}
.y167{bottom:215.236667pt;}
.y1a7{bottom:216.536933pt;}
.y188{bottom:216.605600pt;}
.yb9{bottom:217.702533pt;}
.y1ad{bottom:219.481200pt;}
.y5b{bottom:220.814533pt;}
.y9b{bottom:220.956000pt;}
.yf5{bottom:221.756000pt;}
.ycb{bottom:222.289333pt;}
.y81{bottom:224.814533pt;}
.y117{bottom:225.190533pt;}
.ya7{bottom:226.147867pt;}
.y1c0{bottom:226.575200pt;}
.yb8{bottom:231.035867pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1a6{bottom:234.709333pt;}
.y145{bottom:235.268000pt;}
.y187{bottom:237.393067pt;}
.yb5{bottom:237.702533pt;}
.y166{bottom:237.913733pt;}
.y5a{bottom:238.147867pt;}
.y9a{bottom:238.289333pt;}
.y116{bottom:238.790533pt;}
.yf4{bottom:239.089333pt;}
.yca{bottom:239.622667pt;}
.y1c5{bottom:241.614533pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y113{bottom:242.921867pt;}
.ya6{bottom:243.481200pt;}
.yb7{bottom:244.369200pt;}
.y1bf{bottom:249.252400pt;}
.y1a5{bottom:253.109333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y59{bottom:255.481200pt;}
.y99{bottom:255.622667pt;}
.yba{bottom:256.003333pt;}
.y115{bottom:256.386533pt;}
.yf3{bottom:256.422667pt;}
.y112{bottom:256.521867pt;}
.yc9{bottom:256.956000pt;}
.yb6{bottom:257.702533pt;}
.y144{bottom:258.701200pt;}
.y186{bottom:259.296000pt;}
.y165{bottom:260.590933pt;}
.ya5{bottom:260.814533pt;}
.y1b7{bottom:261.516533pt;}
.y1be{bottom:271.929467pt;}
.y58{bottom:272.814533pt;}
.y98{bottom:272.956000pt;}
.yf2{bottom:273.756000pt;}
.yc8{bottom:274.289333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y143{bottom:276.134267pt;}
.y1b6{bottom:276.162133pt;}
.yb4{bottom:276.653867pt;}
.y80{bottom:278.147867pt;}
.y185{bottom:281.199067pt;}
.y142{bottom:282.134267pt;}
.y1a4{bottom:282.528000pt;}
.y164{bottom:283.268133pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y57{bottom:290.147867pt;}
.y97{bottom:290.289333pt;}
.yf1{bottom:291.089333pt;}
.yc7{bottom:291.622667pt;}
.y1bd{bottom:294.606667pt;}
.y7f{bottom:295.481200pt;}
.y1a3{bottom:300.928000pt;}
.y184{bottom:301.986533pt;}
.yb2{bottom:303.622667pt;}
.y141{bottom:305.567333pt;}
.y163{bottom:305.945333pt;}
.y56{bottom:307.481200pt;}
.y96{bottom:307.622667pt;}
.yf0{bottom:308.422667pt;}
.yf{bottom:309.452000pt;}
.y12b{bottom:310.291733pt;}
.y7e{bottom:312.814533pt;}
.y1bc{bottom:314.732667pt;}
.y1a2{bottom:319.328000pt;}
.yb1{bottom:319.622667pt;}
.y1b9{bottom:320.732667pt;}
.y183{bottom:322.773867pt;}
.y55{bottom:324.814533pt;}
.y95{bottom:324.956000pt;}
.y1bb{bottom:326.732667pt;}
.y162{bottom:328.622400pt;}
.y140{bottom:329.000400pt;}
.y7d{bottom:330.147867pt;}
.y1b8{bottom:332.732667pt;}
.y12a{bottom:333.724800pt;}
.y36{bottom:334.578400pt;}
.yb0{bottom:335.622667pt;}
.y1a1{bottom:337.728000pt;}
.y1ba{bottom:338.732667pt;}
.y54{bottom:342.147867pt;}
.y94{bottom:342.289333pt;}
.y182{bottom:343.561333pt;}
.ye{bottom:343.809333pt;}
.yef{bottom:344.956000pt;}
.y7c{bottom:347.481200pt;}
.ya9{bottom:347.500667pt;}
.y161{bottom:351.299600pt;}
.y13f{bottom:352.433467pt;}
.y1a0{bottom:356.128000pt;}
.y129{bottom:357.157867pt;}
.y53{bottom:359.481200pt;}
.y93{bottom:359.622667pt;}
.yd{bottom:362.706666pt;}
.ye7{bottom:362.933733pt;}
.y181{bottom:364.348667pt;}
.y7b{bottom:364.814533pt;}
.y35{bottom:366.578400pt;}
.yaf{bottom:370.289333pt;}
.y160{bottom:373.976800pt;}
.y19f{bottom:374.528000pt;}
.y13e{bottom:375.866533pt;}
.y52{bottom:376.814533pt;}
.yee{bottom:376.956000pt;}
.y180{bottom:380.024000pt;}
.y128{bottom:380.590933pt;}
.y7a{bottom:382.147867pt;}
.yae{bottom:387.622667pt;}
.y17f{bottom:392.024000pt;}
.y19e{bottom:392.928000pt;}
.ye6{bottom:393.880933pt;}
.y51{bottom:394.147867pt;}
.y15f{bottom:396.653867pt;}
.y34{bottom:398.578400pt;}
.y13d{bottom:399.299600pt;}
.y79{bottom:399.481200pt;}
.ye3{bottom:400.547600pt;}
.ya4{bottom:403.248800pt;}
.y127{bottom:404.024000pt;}
.yad{bottom:404.956000pt;}
.ye5{bottom:407.214267pt;}
.y17e{bottom:407.699467pt;}
.y19d{bottom:411.328000pt;}
.y50{bottom:411.481200pt;}
.ye2{bottom:413.880933pt;}
.y33{bottom:414.578400pt;}
.y78{bottom:416.814533pt;}
.ye4{bottom:420.547600pt;}
.y15e{bottom:421.220800pt;}
.y13c{bottom:422.732667pt;}
.y126{bottom:427.457067pt;}
.y17d{bottom:428.486800pt;}
.y4f{bottom:428.814533pt;}
.y19c{bottom:429.728000pt;}
.yed{bottom:430.289333pt;}
.y32{bottom:430.578400pt;}
.y77{bottom:434.147867pt;}
.yac{bottom:438.289333pt;}
.y106{bottom:444.689333pt;}
.y4e{bottom:446.147867pt;}
.y13b{bottom:446.165733pt;}
.y31{bottom:446.578400pt;}
.yc{bottom:446.990669pt;}
.yec{bottom:447.622667pt;}
.y19b{bottom:448.128000pt;}
.y17c{bottom:449.274267pt;}
.y15c{bottom:449.614533pt;}
.y125{bottom:450.890133pt;}
.y76{bottom:451.481200pt;}
.ye1{bottom:457.021333pt;}
.y30{bottom:462.578400pt;}
.yb{bottom:462.990669pt;}
.yde{bottom:463.688000pt;}
.yeb{bottom:464.956000pt;}
.y19a{bottom:466.528000pt;}
.y15b{bottom:466.947867pt;}
.y75{bottom:468.814533pt;}
.y13a{bottom:469.598800pt;}
.y17b{bottom:470.061600pt;}
.ye0{bottom:470.354667pt;}
.y124{bottom:474.323200pt;}
.ydd{bottom:477.021333pt;}
.y2f{bottom:478.578400pt;}
.ya{bottom:478.990666pt;}
.y4d{bottom:479.481200pt;}
.yea{bottom:482.289333pt;}
.ydf{bottom:483.688000pt;}
.y199{bottom:484.928000pt;}
.y74{bottom:486.147867pt;}
.y17a{bottom:490.848933pt;}
.yab{bottom:491.622667pt;}
.y139{bottom:493.031867pt;}
.y2e{bottom:494.578400pt;}
.y9{bottom:494.990666pt;}
.y123{bottom:497.756267pt;}
.ye9{bottom:499.622667pt;}
.y1a8{bottom:501.614533pt;}
.y1c2{bottom:502.147867pt;}
.y198{bottom:503.328000pt;}
.y73{bottom:503.481200pt;}
.yaa{bottom:508.956000pt;}
.y2d{bottom:510.578400pt;}
.y179{bottom:511.636400pt;}
.y138{bottom:516.464933pt;}
.ye8{bottom:516.956000pt;}
.y15a{bottom:518.947867pt;}
.y72{bottom:520.814533pt;}
.ydc{bottom:521.168400pt;}
.y122{bottom:521.189333pt;}
.y197{bottom:521.728000pt;}
.y2c{bottom:526.578400pt;}
.y178{bottom:532.423733pt;}
.ydb{bottom:534.501733pt;}
.y159{bottom:536.281200pt;}
.y71{bottom:538.147867pt;}
.y137{bottom:539.898000pt;}
.y196{bottom:540.128000pt;}
.y121{bottom:544.622400pt;}
.yd8{bottom:547.835067pt;}
.y1ac{bottom:548.814533pt;}
.y177{bottom:553.211200pt;}
.y158{bottom:553.614533pt;}
.y4c{bottom:554.147867pt;}
.y70{bottom:555.481200pt;}
.yb3{bottom:558.209333pt;}
.y195{bottom:558.528000pt;}
.y2b{bottom:558.578400pt;}
.y10d{bottom:560.814533pt;}
.yda{bottom:561.168400pt;}
.y120{bottom:562.055467pt;}
.y136{bottom:563.331067pt;}
.y11f{bottom:568.055467pt;}
.y157{bottom:570.947867pt;}
.y6f{bottom:572.814533pt;}
.y8{bottom:573.786667pt;}
.y176{bottom:573.998667pt;}
.yd9{bottom:574.501733pt;}
.y103{bottom:574.587333pt;}
.y10c{bottom:576.814533pt;}
.y194{bottom:576.928000pt;}
.y135{bottom:580.764133pt;}
.y134{bottom:586.764133pt;}
.y156{bottom:588.281200pt;}
.y4b{bottom:588.814533pt;}
.y6e{bottom:590.147867pt;}
.y11e{bottom:591.488533pt;}
.y7{bottom:592.685334pt;}
.y10b{bottom:592.814533pt;}
.y175{bottom:594.786000pt;}
.y193{bottom:595.328000pt;}
.y155{bottom:605.614533pt;}
.y102{bottom:606.795733pt;}
.y6d{bottom:607.481200pt;}
.yd7{bottom:609.094800pt;}
.y133{bottom:610.197200pt;}
.y11d{bottom:614.921600pt;}
.y174{bottom:615.573467pt;}
.y4a{bottom:620.814533pt;}
.yd5{bottom:622.428133pt;}
.y154{bottom:622.947867pt;}
.y6c{bottom:624.814533pt;}
.y2a{bottom:625.948000pt;}
.y132{bottom:633.630267pt;}
.yd4{bottom:635.761467pt;}
.y173{bottom:636.360800pt;}
.y49{bottom:636.814533pt;}
.y101{bottom:637.031867pt;}
.y11c{bottom:638.354800pt;}
.y153{bottom:640.281200pt;}
.y29{bottom:641.948000pt;}
.y6b{bottom:642.147867pt;}
.y6{bottom:645.598667pt;}
.yd6{bottom:649.094800pt;}
.y48{bottom:652.814533pt;}
.y131{bottom:657.063333pt;}
.y172{bottom:657.148267pt;}
.y152{bottom:657.614533pt;}
.y28{bottom:657.948000pt;}
.y6a{bottom:659.481200pt;}
.y11b{bottom:661.787867pt;}
.y100{bottom:667.268133pt;}
.y47{bottom:668.814533pt;}
.y3{bottom:668.977329pt;}
.y171{bottom:674.736400pt;}
.y151{bottom:674.947867pt;}
.y69{bottom:676.814533pt;}
.y130{bottom:680.496400pt;}
.yd3{bottom:682.900667pt;}
.y46{bottom:684.814667pt;}
.y170{bottom:686.736400pt;}
.yd2{bottom:689.567333pt;}
.y150{bottom:692.281200pt;}
.y68{bottom:694.148000pt;}
.y27{bottom:695.220533pt;}
.yff{bottom:697.504267pt;}
.y114{bottom:697.881200pt;}
.y12f{bottom:697.929467pt;}
.y16d{bottom:700.567333pt;}
.y45{bottom:700.814667pt;}
.y16f{bottom:701.466933pt;}
.y12e{bottom:703.929467pt;}
.y14f{bottom:709.614533pt;}
.y26{bottom:711.060533pt;}
.y67{bottom:711.481333pt;}
.y44{bottom:716.814667pt;}
.y16e{bottom:722.254267pt;}
.yfd{bottom:722.407200pt;}
.y25{bottom:726.900533pt;}
.y14e{bottom:726.947867pt;}
.yd1{bottom:727.362533pt;}
.yfc{bottom:727.740533pt;}
.y66{bottom:728.814667pt;}
.y105{bottom:732.689333pt;}
.y43{bottom:732.814667pt;}
.yfe{bottom:733.073867pt;}
.y92{bottom:743.622667pt;}
.y24{bottom:744.180533pt;}
.y14d{bottom:744.281200pt;}
.y65{bottom:746.148000pt;}
.y42{bottom:748.814667pt;}
.y12d{bottom:750.795600pt;}
.y91{bottom:760.956000pt;}
.yc6{bottom:762.289333pt;}
.y64{bottom:763.481333pt;}
.y104{bottom:764.689333pt;}
.y12c{bottom:774.228667pt;}
.y90{bottom:778.289333pt;}
.y41{bottom:780.814667pt;}
.y2{bottom:781.661334pt;}
.y22{bottom:813.095333pt;}
.y23{bottom:814.006000pt;}
.y1{bottom:859.312000pt;}
.h15{height:19.588800pt;}
.h16{height:28.000000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.hd{height:29.866667pt;}
.h12{height:31.733333pt;}
.hc{height:33.600000pt;}
.h10{height:36.053333pt;}
.hf{height:36.960000pt;}
.h11{height:37.333333pt;}
.he{height:40.320000pt;}
.h7{height:40.853333pt;}
.h13{height:42.346667pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h14{height:43.477867pt;}
.h2{height:49.024000pt;}
.h1c{height:50.816000pt;}
.h18{height:51.200000pt;}
.h1b{height:52.000000pt;}
.h19{height:53.866667pt;}
.h17{height:56.533333pt;}
.h5{height:69.450667pt;}
.h1a{height:76.000000pt;}
.h4{height:105.826671pt;}
.ha{height:869.292000pt;}
.hb{height:869.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:566.666667pt;}
.w2{width:566.928019pt;}
.w3{width:566.929333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590533pt;}
.x45{left:76.923867pt;}
.x14{left:79.723867pt;}
.x2e{left:87.629867pt;}
.x1{left:90.706667pt;}
.x2d{left:92.519333pt;}
.x44{left:93.493467pt;}
.x2{left:94.486667pt;}
.x1b{left:96.717867pt;}
.x11{left:98.040533pt;}
.xd{left:102.047200pt;}
.x3a{left:104.509867pt;}
.x46{left:108.923867pt;}
.x3b{left:111.373867pt;}
.xb{left:113.858267pt;}
.x30{left:115.320533pt;}
.x21{left:117.731200pt;}
.x18{left:120.127600pt;}
.x10{left:122.472533pt;}
.x2c{left:124.099333pt;}
.x2a{left:126.599333pt;}
.x24{left:135.639333pt;}
.x1f{left:138.232533pt;}
.x23{left:144.027600pt;}
.x3d{left:152.440533pt;}
.x2b{left:155.199333pt;}
.x15{left:156.492933pt;}
.x22{left:160.691200pt;}
.x3e{left:163.107200pt;}
.x39{left:168.212133pt;}
.x1a{left:171.752533pt;}
.x3f{left:174.563067pt;}
.x17{left:175.960533pt;}
.x4{left:180.874667pt;}
.x32{left:183.661467pt;}
.x12{left:198.520533pt;}
.x3c{left:199.432533pt;}
.x13{left:202.015733pt;}
.x38{left:203.661467pt;}
.x33{left:207.682800pt;}
.x20{left:208.648533pt;}
.x37{left:212.706800pt;}
.x35{left:214.877467pt;}
.x36{left:216.856133pt;}
.x31{left:220.706800pt;}
.x19{left:221.732267pt;}
.x34{left:224.264133pt;}
.x2f{left:233.539200pt;}
.x1c{left:237.229333pt;}
.xe{left:246.884533pt;}
.xf{left:254.391200pt;}
.xc{left:257.171200pt;}
.xa{left:258.657867pt;}
.x28{left:259.926667pt;}
.x27{left:267.321600pt;}
.x26{left:297.693733pt;}
.x16{left:303.138533pt;}
.x25{left:312.694400pt;}
.x1d{left:328.639067pt;}
.x41{left:330.355600pt;}
.x1e{left:331.545733pt;}
.x40{left:348.414267pt;}
.x9{left:361.202667pt;}
.x29{left:377.847867pt;}
.x8{left:387.864000pt;}
.x7{left:401.719867pt;}
.x3{left:404.408000pt;}
.x42{left:420.177200pt;}
.x43{left:424.321200pt;}
.x5{left:479.338533pt;}
}




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