
    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_e64e557e8ac6e2367c13d2df.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.940000;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_45a6d98eacda5ba44e38dc8e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_c756d9b26e261aec2d82981f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7d3b08270729af6db88f3f19.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690400;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_c5754dd7f750cb7691c1d0bb.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_4c8354267356cea82d72e18e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921439;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:21.005400px;}
.ls5{letter-spacing:-1.350000px;}
.ls4{letter-spacing:-0.300000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.600000px;}
.ls2{letter-spacing:0.900000px;}
.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;}
}
.wsd3{word-spacing:-15.000000px;}
.ws4{word-spacing:-11.676000px;}
.ws84{word-spacing:-9.750000px;}
.wsde{word-spacing:-6.858000px;}
.wse5{word-spacing:-5.832000px;}
.ws68{word-spacing:-5.340000px;}
.wsea{word-spacing:-3.834000px;}
.wsb4{word-spacing:-3.720000px;}
.wse8{word-spacing:-2.970000px;}
.ws7b{word-spacing:-2.940000px;}
.ws22{word-spacing:-2.880000px;}
.ws75{word-spacing:-2.820000px;}
.ws5c{word-spacing:-2.760000px;}
.ws72{word-spacing:-2.700000px;}
.ws98{word-spacing:-2.646000px;}
.wsae{word-spacing:-2.640000px;}
.ws44{word-spacing:-2.580000px;}
.wsaf{word-spacing:-2.520000px;}
.ws48{word-spacing:-2.460000px;}
.ws5b{word-spacing:-2.400000px;}
.ws59{word-spacing:-2.340000px;}
.ws5a{word-spacing:-2.280000px;}
.wsc7{word-spacing:-2.220000px;}
.ws10{word-spacing:-2.160000px;}
.ws87{word-spacing:-2.100000px;}
.wsdf{word-spacing:-2.052000px;}
.ws65{word-spacing:-2.040000px;}
.wsda{word-spacing:-1.998000px;}
.ws4e{word-spacing:-1.980000px;}
.ws2b{word-spacing:-1.920000px;}
.ws1c{word-spacing:-1.860000px;}
.wsd8{word-spacing:-1.836000px;}
.ws86{word-spacing:-1.800000px;}
.ws2a{word-spacing:-1.740000px;}
.ws8f{word-spacing:-1.728000px;}
.wsad{word-spacing:-1.680000px;}
.wsd4{word-spacing:-1.674000px;}
.ws1{word-spacing:-1.668000px;}
.ws28{word-spacing:-1.620000px;}
.wsac{word-spacing:-1.560000px;}
.ws2{word-spacing:-1.500000px;}
.ws0{word-spacing:-1.482000px;}
.ws50{word-spacing:-1.440000px;}
.wsa2{word-spacing:-1.380000px;}
.ws25{word-spacing:-1.320000px;}
.ws9{word-spacing:-1.260000px;}
.ws1b{word-spacing:-1.200000px;}
.ws99{word-spacing:-1.188000px;}
.ws42{word-spacing:-1.140000px;}
.ws49{word-spacing:-1.080000px;}
.wsb{word-spacing:-1.020000px;}
.ws6f{word-spacing:-0.960000px;}
.ws26{word-spacing:-0.900000px;}
.ws41{word-spacing:-0.840000px;}
.wsdb{word-spacing:-0.810000px;}
.ws54{word-spacing:-0.780000px;}
.wsd6{word-spacing:-0.756000px;}
.ws74{word-spacing:-0.720000px;}
.ws92{word-spacing:-0.660000px;}
.ws29{word-spacing:-0.540000px;}
.wsd5{word-spacing:-0.486000px;}
.ws13{word-spacing:-0.480000px;}
.ws5f{word-spacing:-0.420000px;}
.ws12{word-spacing:-0.360000px;}
.ws5{word-spacing:-0.300000px;}
.wsab{word-spacing:-0.216000px;}
.ws6{word-spacing:-0.180000px;}
.ws88{word-spacing:-0.120000px;}
.ws57{word-spacing:-0.060000px;}
.wsa5{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.060000px;}
.ws3a{word-spacing:0.120000px;}
.ws21{word-spacing:0.180000px;}
.ws7d{word-spacing:0.240000px;}
.ws94{word-spacing:0.270000px;}
.ws23{word-spacing:0.300000px;}
.wsec{word-spacing:0.324000px;}
.wsa7{word-spacing:0.360000px;}
.wse6{word-spacing:0.378000px;}
.ws45{word-spacing:0.420000px;}
.ws37{word-spacing:0.480000px;}
.wsd{word-spacing:0.540000px;}
.ws9c{word-spacing:0.594000px;}
.ws17{word-spacing:0.600000px;}
.ws55{word-spacing:0.660000px;}
.ws7e{word-spacing:0.720000px;}
.ws9a{word-spacing:0.756000px;}
.wsa{word-spacing:0.780000px;}
.ws14{word-spacing:0.840000px;}
.ws7{word-spacing:0.900000px;}
.ws36{word-spacing:0.960000px;}
.wsaa{word-spacing:0.972000px;}
.ws7a{word-spacing:1.020000px;}
.ws79{word-spacing:1.080000px;}
.wsa9{word-spacing:1.134000px;}
.ws39{word-spacing:1.140000px;}
.ws7f{word-spacing:1.200000px;}
.wscf{word-spacing:1.260000px;}
.ws90{word-spacing:1.296000px;}
.ws82{word-spacing:1.320000px;}
.ws60{word-spacing:1.380000px;}
.ws97{word-spacing:1.404000px;}
.ws63{word-spacing:1.440000px;}
.ws3b{word-spacing:1.500000px;}
.ws8e{word-spacing:1.512000px;}
.ws5e{word-spacing:1.560000px;}
.ws46{word-spacing:1.620000px;}
.wsbf{word-spacing:1.680000px;}
.ws69{word-spacing:1.740000px;}
.ws6e{word-spacing:1.800000px;}
.wsbd{word-spacing:1.860000px;}
.ws73{word-spacing:1.920000px;}
.wsb2{word-spacing:1.944000px;}
.ws85{word-spacing:1.980000px;}
.ws1e{word-spacing:2.040000px;}
.ws77{word-spacing:2.100000px;}
.ws4d{word-spacing:2.160000px;}
.ws70{word-spacing:2.220000px;}
.ws31{word-spacing:2.280000px;}
.wsd7{word-spacing:2.322000px;}
.ws9e{word-spacing:2.340000px;}
.wsed{word-spacing:2.376000px;}
.wsca{word-spacing:2.400000px;}
.ws8b{word-spacing:2.460000px;}
.ws18{word-spacing:2.520000px;}
.ws35{word-spacing:2.580000px;}
.ws4c{word-spacing:2.640000px;}
.ws8d{word-spacing:2.646000px;}
.ws4b{word-spacing:2.700000px;}
.wsc{word-spacing:2.760000px;}
.ws56{word-spacing:2.820000px;}
.ws9f{word-spacing:2.880000px;}
.ws40{word-spacing:2.940000px;}
.wsd1{word-spacing:3.060000px;}
.ws71{word-spacing:3.120000px;}
.wsd2{word-spacing:3.180000px;}
.wsa8{word-spacing:3.186000px;}
.wsb5{word-spacing:3.300000px;}
.wsa4{word-spacing:3.348000px;}
.ws6a{word-spacing:3.360000px;}
.ws1f{word-spacing:3.420000px;}
.ws62{word-spacing:3.480000px;}
.ws27{word-spacing:3.540000px;}
.ws2f{word-spacing:3.600000px;}
.wsef{word-spacing:3.618000px;}
.ws89{word-spacing:3.660000px;}
.wscc{word-spacing:3.720000px;}
.wse4{word-spacing:3.834000px;}
.ws78{word-spacing:3.840000px;}
.ws76{word-spacing:3.960000px;}
.wsee{word-spacing:3.996000px;}
.ws3f{word-spacing:4.020000px;}
.wsa3{word-spacing:4.050000px;}
.wsb7{word-spacing:4.140000px;}
.wsbe{word-spacing:4.200000px;}
.wsc3{word-spacing:4.266000px;}
.ws2c{word-spacing:4.320000px;}
.ws38{word-spacing:4.380000px;}
.ws24{word-spacing:4.440000px;}
.ws1a{word-spacing:4.500000px;}
.ws95{word-spacing:4.536000px;}
.ws58{word-spacing:4.620000px;}
.ws7c{word-spacing:4.680000px;}
.ws64{word-spacing:4.800000px;}
.wsb6{word-spacing:4.920000px;}
.ws16{word-spacing:5.040000px;}
.ws34{word-spacing:5.100000px;}
.wsc8{word-spacing:5.160000px;}
.ws33{word-spacing:5.220000px;}
.ws81{word-spacing:5.280000px;}
.ws53{word-spacing:5.400000px;}
.ws51{word-spacing:5.520000px;}
.wsb3{word-spacing:5.562000px;}
.ws6c{word-spacing:5.580000px;}
.ws2e{word-spacing:5.640000px;}
.ws8c{word-spacing:5.820000px;}
.wse9{word-spacing:5.886000px;}
.ws4f{word-spacing:5.940000px;}
.wseb{word-spacing:6.048000px;}
.ws20{word-spacing:6.120000px;}
.wsa1{word-spacing:6.180000px;}
.wsbb{word-spacing:6.240000px;}
.wsc4{word-spacing:6.264000px;}
.wsba{word-spacing:6.360000px;}
.wse0{word-spacing:6.372000px;}
.ws52{word-spacing:6.420000px;}
.ws3d{word-spacing:6.480000px;}
.ws83{word-spacing:6.540000px;}
.ws1d{word-spacing:6.600000px;}
.ws15{word-spacing:6.660000px;}
.ws30{word-spacing:6.720000px;}
.wsbc{word-spacing:6.780000px;}
.wsdc{word-spacing:6.804000px;}
.ws61{word-spacing:6.840000px;}
.wsc0{word-spacing:6.900000px;}
.wsb1{word-spacing:6.960000px;}
.wsf{word-spacing:7.020000px;}
.ws3e{word-spacing:7.080000px;}
.ws80{word-spacing:7.140000px;}
.wse7{word-spacing:7.398000px;}
.ws67{word-spacing:7.500000px;}
.ws9b{word-spacing:7.506000px;}
.ws6d{word-spacing:7.560000px;}
.wsc5{word-spacing:7.668000px;}
.ws4a{word-spacing:7.740000px;}
.wse2{word-spacing:7.776000px;}
.wscd{word-spacing:7.800000px;}
.ws93{word-spacing:7.860000px;}
.ws6b{word-spacing:7.920000px;}
.wsb0{word-spacing:7.980000px;}
.wsc6{word-spacing:8.046000px;}
.ws19{word-spacing:8.160000px;}
.wsb9{word-spacing:8.340000px;}
.ws47{word-spacing:8.400000px;}
.wsd9{word-spacing:8.424000px;}
.ws66{word-spacing:8.760000px;}
.ws96{word-spacing:8.856000px;}
.ws5d{word-spacing:8.880000px;}
.wsa0{word-spacing:9.060000px;}
.ws43{word-spacing:9.180000px;}
.wsb8{word-spacing:9.240000px;}
.wsc1{word-spacing:9.540000px;}
.ws9d{word-spacing:9.900000px;}
.wsce{word-spacing:10.080000px;}
.wsd0{word-spacing:10.320000px;}
.ws91{word-spacing:10.500000px;}
.wse1{word-spacing:10.530000px;}
.ws32{word-spacing:10.680000px;}
.wsc2{word-spacing:10.740000px;}
.ws8a{word-spacing:10.980000px;}
.wsa6{word-spacing:11.460000px;}
.wscb{word-spacing:11.880000px;}
.wsc9{word-spacing:12.780000px;}
.ws8{word-spacing:13.020000px;}
.ws2d{word-spacing:13.260000px;}
.wsdd{word-spacing:14.256000px;}
.ws3c{word-spacing:14.880000px;}
.wse3{word-spacing:15.390000px;}
.ws11{word-spacing:16.260000px;}
._0{margin-left:-11.676000px;}
._6{margin-left:-6.000000px;}
._2{margin-left:-4.440000px;}
._4{margin-left:-3.300000px;}
._5{margin-left:-2.220000px;}
._3{margin-left:-1.140000px;}
._a{width:1.200000px;}
._9{width:2.220000px;}
._b{width:4.152000px;}
._f{width:52.596000px;}
._e{width:54.756000px;}
._1{width:71.994000px;}
._c{width:1416.900000px;}
._7{width:1446.900000px;}
._d{width:1833.840000px;}
._8{width:1863.840000px;}
.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;}
.ye3{bottom:93.648450px;}
.yc3{bottom:98.148450px;}
.y26{bottom:101.043300px;}
.y76{bottom:101.147100px;}
.y57{bottom:101.148450px;}
.y102{bottom:104.151450px;}
.y12e{bottom:105.187800px;}
.y161{bottom:105.711450px;}
.yff{bottom:108.648450px;}
.ye2{bottom:111.648450px;}
.y25{bottom:116.043300px;}
.y6b{bottom:116.148450px;}
.y75{bottom:119.147100px;}
.y56{bottom:119.148450px;}
.y101{bottom:120.648450px;}
.y9f{bottom:121.779450px;}
.y160{bottom:122.208450px;}
.y12d{bottom:123.187800px;}
.yfe{bottom:126.648450px;}
.ye1{bottom:129.648450px;}
.y24{bottom:131.043300px;}
.y6a{bottom:134.148450px;}
.y74{bottom:137.147100px;}
.y55{bottom:137.148450px;}
.y9e{bottom:138.276450px;}
.y15f{bottom:138.705450px;}
.y12c{bottom:141.187800px;}
.y18e{bottom:142.677450px;}
.yfd{bottom:144.648450px;}
.ye0{bottom:147.648450px;}
.y69{bottom:152.148450px;}
.y9d{bottom:154.773450px;}
.y73{bottom:155.147100px;}
.y54{bottom:155.148450px;}
.y15e{bottom:155.202450px;}
.y18d{bottom:159.174450px;}
.y12b{bottom:159.187800px;}
.yfc{bottom:162.648450px;}
.ydf{bottom:165.648450px;}
.y68{bottom:170.148450px;}
.y9c{bottom:171.270450px;}
.y15d{bottom:171.699450px;}
.y72{bottom:173.147100px;}
.y53{bottom:173.148450px;}
.y12a{bottom:177.187800px;}
.yfb{bottom:180.648450px;}
.y18c{bottom:181.674450px;}
.yde{bottom:183.648450px;}
.y23{bottom:187.185450px;}
.y9b{bottom:187.767450px;}
.y67{bottom:188.148450px;}
.yc2{bottom:188.157450px;}
.y15c{bottom:188.196450px;}
.y71{bottom:191.147100px;}
.y52{bottom:191.148450px;}
.y129{bottom:195.187800px;}
.yfa{bottom:198.648450px;}
.y100{bottom:200.148450px;}
.ydd{bottom:201.648450px;}
.yc1{bottom:204.654450px;}
.y15b{bottom:204.693450px;}
.y22{bottom:205.185450px;}
.y66{bottom:206.148450px;}
.y70{bottom:209.147100px;}
.y51{bottom:209.148450px;}
.y128{bottom:213.187800px;}
.yf9{bottom:216.648450px;}
.y18b{bottom:217.797450px;}
.ydc{bottom:219.648450px;}
.yc0{bottom:221.151450px;}
.y15a{bottom:221.190450px;}
.y21{bottom:223.185450px;}
.y9a{bottom:225.267450px;}
.y6f{bottom:227.147100px;}
.y50{bottom:227.148450px;}
.y127{bottom:231.187800px;}
.y65{bottom:233.142450px;}
.y18a{bottom:234.294450px;}
.yf8{bottom:234.648450px;}
.y77{bottom:236.148450px;}
.ybf{bottom:237.648450px;}
.y159{bottom:237.687450px;}
.y20{bottom:241.185450px;}
.y99{bottom:243.267450px;}
.y6e{bottom:245.147100px;}
.y4f{bottom:245.148450px;}
.y126{bottom:249.187800px;}
.y189{bottom:250.791450px;}
.yf7{bottom:252.648450px;}
.y64{bottom:254.148450px;}
.y158{bottom:254.184450px;}
.ydb{bottom:255.648450px;}
.y1f{bottom:259.185450px;}
.y98{bottom:261.267450px;}
.y6d{bottom:263.147100px;}
.y4e{bottom:263.148450px;}
.y125{bottom:267.187800px;}
.y188{bottom:267.288450px;}
.yf6{bottom:270.648450px;}
.y157{bottom:270.681450px;}
.ybe{bottom:272.148450px;}
.y1e{bottom:277.185450px;}
.y97{bottom:279.267450px;}
.y6c{bottom:281.147100px;}
.y4d{bottom:281.148450px;}
.y187{bottom:283.785450px;}
.y124{bottom:285.187800px;}
.y156{bottom:287.178450px;}
.yf5{bottom:288.648450px;}
.ybd{bottom:290.148450px;}
.yda{bottom:291.654450px;}
.y1d{bottom:295.185450px;}
.y96{bottom:297.267450px;}
.y63{bottom:299.147100px;}
.y4c{bottom:299.148450px;}
.y186{bottom:300.282450px;}
.y123{bottom:303.187800px;}
.y155{bottom:303.675450px;}
.yf4{bottom:306.648450px;}
.ybc{bottom:308.148450px;}
.yd9{bottom:308.151450px;}
.y95{bottom:315.267450px;}
.y185{bottom:316.779450px;}
.y62{bottom:317.147100px;}
.y4b{bottom:317.148450px;}
.y154{bottom:320.172450px;}
.y122{bottom:321.187800px;}
.y1c{bottom:322.185450px;}
.yd8{bottom:324.648450px;}
.ybb{bottom:326.148450px;}
.y94{bottom:333.267450px;}
.y184{bottom:333.276450px;}
.y61{bottom:335.147100px;}
.y4a{bottom:335.148450px;}
.y153{bottom:336.669450px;}
.y121{bottom:339.187800px;}
.yf3{bottom:342.648450px;}
.yba{bottom:344.148450px;}
.y183{bottom:349.773450px;}
.y93{bottom:351.267450px;}
.y60{bottom:353.147100px;}
.y49{bottom:353.148450px;}
.y152{bottom:353.166450px;}
.y120{bottom:357.187800px;}
.yd7{bottom:359.148450px;}
.yf2{bottom:360.648450px;}
.yb9{bottom:362.148450px;}
.y182{bottom:366.270450px;}
.y1b{bottom:367.182300px;}
.y92{bottom:369.267450px;}
.y151{bottom:369.663450px;}
.y5f{bottom:371.147100px;}
.y48{bottom:371.148450px;}
.y11f{bottom:375.187800px;}
.yd6{bottom:377.148450px;}
.yf1{bottom:378.648450px;}
.yb8{bottom:380.148450px;}
.y181{bottom:382.767450px;}
.y1a{bottom:385.182300px;}
.y150{bottom:386.160450px;}
.y5e{bottom:389.147100px;}
.y47{bottom:389.148450px;}
.y11e{bottom:393.187800px;}
.yd5{bottom:395.148450px;}
.yf0{bottom:396.648450px;}
.yb7{bottom:398.148450px;}
.y180{bottom:399.264450px;}
.y14f{bottom:402.657450px;}
.y19{bottom:403.182300px;}
.y5d{bottom:407.147100px;}
.y46{bottom:407.148450px;}
.y91{bottom:408.282450px;}
.y11d{bottom:411.187800px;}
.yd4{bottom:413.148450px;}
.yef{bottom:414.648450px;}
.y17f{bottom:415.761450px;}
.yb6{bottom:416.148450px;}
.y14e{bottom:419.154450px;}
.y90{bottom:424.779450px;}
.y5c{bottom:425.147100px;}
.y45{bottom:425.148450px;}
.y11c{bottom:429.187800px;}
.yd3{bottom:431.148450px;}
.y17e{bottom:432.258450px;}
.yee{bottom:432.648450px;}
.yb5{bottom:434.148450px;}
.y14d{bottom:435.651450px;}
.y8f{bottom:441.276450px;}
.y5b{bottom:443.147100px;}
.y44{bottom:443.148450px;}
.y18{bottom:446.697300px;}
.y11b{bottom:447.187800px;}
.y17d{bottom:448.755450px;}
.yd2{bottom:449.148450px;}
.yed{bottom:450.648450px;}
.yb4{bottom:452.148450px;}
.y8e{bottom:457.773450px;}
.y5a{bottom:461.147100px;}
.y43{bottom:461.148450px;}
.y17{bottom:464.697300px;}
.y11a{bottom:465.187800px;}
.y17c{bottom:465.252450px;}
.yd1{bottom:467.148450px;}
.yec{bottom:468.648450px;}
.yb3{bottom:470.148450px;}
.y8d{bottom:474.270450px;}
.y14c{bottom:474.648450px;}
.y59{bottom:479.147100px;}
.y42{bottom:479.148450px;}
.y17b{bottom:481.749450px;}
.y16{bottom:482.697300px;}
.y119{bottom:483.187800px;}
.yd0{bottom:485.148450px;}
.yeb{bottom:486.648450px;}
.yb2{bottom:488.148450px;}
.y8c{bottom:490.767450px;}
.y58{bottom:497.147100px;}
.y41{bottom:497.148450px;}
.y17a{bottom:498.246450px;}
.y15{bottom:500.697300px;}
.y118{bottom:501.187800px;}
.ycf{bottom:503.148450px;}
.yea{bottom:504.648450px;}
.yb1{bottom:506.148450px;}
.y14b{bottom:510.660450px;}
.y179{bottom:514.743450px;}
.y40{bottom:515.147100px;}
.y140{bottom:515.148450px;}
.y14{bottom:518.697300px;}
.y117{bottom:519.187800px;}
.yce{bottom:521.148450px;}
.ye9{bottom:522.648450px;}
.yb0{bottom:524.148450px;}
.y14a{bottom:527.157450px;}
.y8b{bottom:528.267450px;}
.y178{bottom:531.240450px;}
.y3f{bottom:533.147100px;}
.y13f{bottom:533.148450px;}
.y13{bottom:536.697300px;}
.y116{bottom:537.187800px;}
.ycd{bottom:539.148450px;}
.yaf{bottom:542.148450px;}
.y149{bottom:543.654450px;}
.y8a{bottom:546.267450px;}
.y177{bottom:547.737450px;}
.y3e{bottom:551.147100px;}
.y13e{bottom:551.148450px;}
.y12{bottom:554.697300px;}
.y115{bottom:555.187800px;}
.ycc{bottom:557.148450px;}
.ye8{bottom:558.660450px;}
.yae{bottom:560.148450px;}
.y148{bottom:560.151450px;}
.y176{bottom:564.234450px;}
.y89{bottom:564.267450px;}
.y3d{bottom:569.147100px;}
.y13d{bottom:569.148450px;}
.y11{bottom:572.697300px;}
.y114{bottom:573.187800px;}
.ycb{bottom:575.148450px;}
.ye7{bottom:575.157450px;}
.y147{bottom:576.648450px;}
.yad{bottom:578.148450px;}
.y175{bottom:580.731450px;}
.y88{bottom:582.267450px;}
.y3c{bottom:587.147100px;}
.y13c{bottom:587.148450px;}
.y10{bottom:590.697300px;}
.y113{bottom:591.187800px;}
.ye6{bottom:591.654450px;}
.yca{bottom:593.148450px;}
.yac{bottom:596.148450px;}
.y174{bottom:597.228450px;}
.y146{bottom:599.148450px;}
.y87{bottom:600.267450px;}
.y3b{bottom:605.147100px;}
.y13b{bottom:605.148450px;}
.ye5{bottom:608.151450px;}
.yf{bottom:608.697300px;}
.y112{bottom:609.187800px;}
.yc9{bottom:611.148450px;}
.y173{bottom:613.725450px;}
.yab{bottom:614.148450px;}
.y86{bottom:618.267450px;}
.y3a{bottom:623.147100px;}
.y13a{bottom:623.148450px;}
.ye4{bottom:624.648450px;}
.ye{bottom:626.697300px;}
.y111{bottom:627.187800px;}
.y172{bottom:630.222450px;}
.yaa{bottom:632.148450px;}
.y145{bottom:635.148450px;}
.y85{bottom:636.267450px;}
.yc8{bottom:638.148450px;}
.y39{bottom:641.147100px;}
.y139{bottom:641.148450px;}
.y110{bottom:645.187800px;}
.y171{bottom:646.719450px;}
.ya9{bottom:650.148450px;}
.y84{bottom:654.267450px;}
.y144{bottom:657.648450px;}
.y38{bottom:659.147100px;}
.y138{bottom:659.148450px;}
.y10f{bottom:663.187800px;}
.y170{bottom:663.216450px;}
.ya8{bottom:668.148450px;}
.yd{bottom:671.697300px;}
.y83{bottom:672.267450px;}
.y37{bottom:677.147100px;}
.y137{bottom:677.148450px;}
.y16f{bottom:679.713450px;}
.y10e{bottom:681.187800px;}
.yc7{bottom:683.148450px;}
.ya7{bottom:686.148450px;}
.yc{bottom:686.697300px;}
.y82{bottom:690.267450px;}
.y143{bottom:693.654450px;}
.y36{bottom:695.147100px;}
.y136{bottom:695.148450px;}
.y16e{bottom:696.210450px;}
.y10d{bottom:699.187800px;}
.yc6{bottom:701.148450px;}
.ya6{bottom:704.148450px;}
.y81{bottom:708.267450px;}
.y142{bottom:710.151450px;}
.y16d{bottom:712.707450px;}
.y35{bottom:713.147100px;}
.y135{bottom:713.148450px;}
.y10c{bottom:717.187800px;}
.yc5{bottom:719.148450px;}
.y80{bottom:726.267450px;}
.y141{bottom:726.648450px;}
.y16c{bottom:729.204450px;}
.y34{bottom:731.147100px;}
.y134{bottom:731.148450px;}
.y10b{bottom:735.187800px;}
.yc4{bottom:737.148450px;}
.ya5{bottom:740.163450px;}
.y7f{bottom:744.267450px;}
.y8{bottom:744.572400px;}
.y16b{bottom:745.701450px;}
.y33{bottom:749.147100px;}
.y133{bottom:749.148450px;}
.y10a{bottom:753.187800px;}
.ya4{bottom:756.660450px;}
.y7{bottom:757.319400px;}
.y1{bottom:758.751000px;}
.yb{bottom:761.697300px;}
.y16a{bottom:762.198450px;}
.y7e{bottom:762.267450px;}
.y32{bottom:767.147100px;}
.y132{bottom:767.148450px;}
.y6{bottom:770.066400px;}
.y109{bottom:771.187800px;}
.ya3{bottom:773.157450px;}
.y169{bottom:778.695450px;}
.y7d{bottom:780.267450px;}
.y5{bottom:782.813400px;}
.y31{bottom:785.147100px;}
.y131{bottom:785.148450px;}
.ya{bottom:788.697300px;}
.y108{bottom:789.187800px;}
.ya2{bottom:789.654450px;}
.y168{bottom:795.192450px;}
.y7c{bottom:798.267450px;}
.y30{bottom:803.147100px;}
.y130{bottom:803.148450px;}
.ya1{bottom:806.151450px;}
.y107{bottom:807.187800px;}
.y167{bottom:811.689450px;}
.y4{bottom:815.527800px;}
.y9{bottom:815.697300px;}
.y7b{bottom:816.267450px;}
.y2f{bottom:821.147100px;}
.ya0{bottom:822.648450px;}
.y106{bottom:825.187800px;}
.y166{bottom:828.186450px;}
.y3{bottom:828.274800px;}
.y12f{bottom:830.148450px;}
.y7a{bottom:834.267450px;}
.y2e{bottom:839.147100px;}
.y2{bottom:841.021800px;}
.y165{bottom:844.683450px;}
.y2d{bottom:857.147100px;}
.y164{bottom:861.180450px;}
.y105{bottom:861.193800px;}
.y79{bottom:861.261450px;}
.y29{bottom:872.377650px;}
.y2c{bottom:875.147100px;}
.y163{bottom:877.677450px;}
.y104{bottom:877.690800px;}
.y78{bottom:891.267450px;}
.y2b{bottom:893.147100px;}
.y162{bottom:894.174450px;}
.y103{bottom:894.187800px;}
.y2a{bottom:933.707100px;}
.y28{bottom:985.582500px;}
.y27{bottom:987.082650px;}
.hc{height:4.170000px;}
.h2{height:25.488000px;}
.h3{height:29.736000px;}
.ha{height:33.216000px;}
.h6{height:33.984000px;}
.h11{height:37.530000px;}
.h12{height:38.232000px;}
.hb{height:38.538256px;}
.hd{height:41.486316px;}
.h7{height:41.520000px;}
.h9{height:41.700000px;}
.h8{height:42.480000px;}
.h10{height:48.105000px;}
.he{height:48.110400px;}
.hf{height:49.783579px;}
.h5{height:49.824000px;}
.h4{height:66.432000px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x9{left:6.378000px;}
.xa{left:63.779550px;}
.x8{left:72.283500px;}
.xb{left:81.779550px;}
.xc{left:90.283500px;}
.xd{left:99.283500px;}
.x1{left:441.975900px;}
.x6{left:454.944450px;}
.x7{left:461.727450px;}
.x5{left:497.731950px;}
.x4{left:503.558700px;}
.x2{left:511.129200px;}
.x3{left:578.528700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.671467pt;}
.ls5{letter-spacing:-1.200000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.266667pt;}
.wsd3{word-spacing:-13.333333pt;}
.ws4{word-spacing:-10.378667pt;}
.ws84{word-spacing:-8.666667pt;}
.wsde{word-spacing:-6.096000pt;}
.wse5{word-spacing:-5.184000pt;}
.ws68{word-spacing:-4.746667pt;}
.wsea{word-spacing:-3.408000pt;}
.wsb4{word-spacing:-3.306667pt;}
.wse8{word-spacing:-2.640000pt;}
.ws7b{word-spacing:-2.613333pt;}
.ws22{word-spacing:-2.560000pt;}
.ws75{word-spacing:-2.506667pt;}
.ws5c{word-spacing:-2.453333pt;}
.ws72{word-spacing:-2.400000pt;}
.ws98{word-spacing:-2.352000pt;}
.wsae{word-spacing:-2.346667pt;}
.ws44{word-spacing:-2.293333pt;}
.wsaf{word-spacing:-2.240000pt;}
.ws48{word-spacing:-2.186667pt;}
.ws5b{word-spacing:-2.133333pt;}
.ws59{word-spacing:-2.080000pt;}
.ws5a{word-spacing:-2.026667pt;}
.wsc7{word-spacing:-1.973333pt;}
.ws10{word-spacing:-1.920000pt;}
.ws87{word-spacing:-1.866667pt;}
.wsdf{word-spacing:-1.824000pt;}
.ws65{word-spacing:-1.813333pt;}
.wsda{word-spacing:-1.776000pt;}
.ws4e{word-spacing:-1.760000pt;}
.ws2b{word-spacing:-1.706667pt;}
.ws1c{word-spacing:-1.653333pt;}
.wsd8{word-spacing:-1.632000pt;}
.ws86{word-spacing:-1.600000pt;}
.ws2a{word-spacing:-1.546667pt;}
.ws8f{word-spacing:-1.536000pt;}
.wsad{word-spacing:-1.493333pt;}
.wsd4{word-spacing:-1.488000pt;}
.ws1{word-spacing:-1.482667pt;}
.ws28{word-spacing:-1.440000pt;}
.wsac{word-spacing:-1.386667pt;}
.ws2{word-spacing:-1.333333pt;}
.ws0{word-spacing:-1.317333pt;}
.ws50{word-spacing:-1.280000pt;}
.wsa2{word-spacing:-1.226667pt;}
.ws25{word-spacing:-1.173333pt;}
.ws9{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-1.066667pt;}
.ws99{word-spacing:-1.056000pt;}
.ws42{word-spacing:-1.013333pt;}
.ws49{word-spacing:-0.960000pt;}
.wsb{word-spacing:-0.906667pt;}
.ws6f{word-spacing:-0.853333pt;}
.ws26{word-spacing:-0.800000pt;}
.ws41{word-spacing:-0.746667pt;}
.wsdb{word-spacing:-0.720000pt;}
.ws54{word-spacing:-0.693333pt;}
.wsd6{word-spacing:-0.672000pt;}
.ws74{word-spacing:-0.640000pt;}
.ws92{word-spacing:-0.586667pt;}
.ws29{word-spacing:-0.480000pt;}
.wsd5{word-spacing:-0.432000pt;}
.ws13{word-spacing:-0.426667pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws12{word-spacing:-0.320000pt;}
.ws5{word-spacing:-0.266667pt;}
.wsab{word-spacing:-0.192000pt;}
.ws6{word-spacing:-0.160000pt;}
.ws88{word-spacing:-0.106667pt;}
.ws57{word-spacing:-0.053333pt;}
.wsa5{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.053333pt;}
.ws3a{word-spacing:0.106667pt;}
.ws21{word-spacing:0.160000pt;}
.ws7d{word-spacing:0.213333pt;}
.ws94{word-spacing:0.240000pt;}
.ws23{word-spacing:0.266667pt;}
.wsec{word-spacing:0.288000pt;}
.wsa7{word-spacing:0.320000pt;}
.wse6{word-spacing:0.336000pt;}
.ws45{word-spacing:0.373333pt;}
.ws37{word-spacing:0.426667pt;}
.wsd{word-spacing:0.480000pt;}
.ws9c{word-spacing:0.528000pt;}
.ws17{word-spacing:0.533333pt;}
.ws55{word-spacing:0.586667pt;}
.ws7e{word-spacing:0.640000pt;}
.ws9a{word-spacing:0.672000pt;}
.wsa{word-spacing:0.693333pt;}
.ws14{word-spacing:0.746667pt;}
.ws7{word-spacing:0.800000pt;}
.ws36{word-spacing:0.853333pt;}
.wsaa{word-spacing:0.864000pt;}
.ws7a{word-spacing:0.906667pt;}
.ws79{word-spacing:0.960000pt;}
.wsa9{word-spacing:1.008000pt;}
.ws39{word-spacing:1.013333pt;}
.ws7f{word-spacing:1.066667pt;}
.wscf{word-spacing:1.120000pt;}
.ws90{word-spacing:1.152000pt;}
.ws82{word-spacing:1.173333pt;}
.ws60{word-spacing:1.226667pt;}
.ws97{word-spacing:1.248000pt;}
.ws63{word-spacing:1.280000pt;}
.ws3b{word-spacing:1.333333pt;}
.ws8e{word-spacing:1.344000pt;}
.ws5e{word-spacing:1.386667pt;}
.ws46{word-spacing:1.440000pt;}
.wsbf{word-spacing:1.493333pt;}
.ws69{word-spacing:1.546667pt;}
.ws6e{word-spacing:1.600000pt;}
.wsbd{word-spacing:1.653333pt;}
.ws73{word-spacing:1.706667pt;}
.wsb2{word-spacing:1.728000pt;}
.ws85{word-spacing:1.760000pt;}
.ws1e{word-spacing:1.813333pt;}
.ws77{word-spacing:1.866667pt;}
.ws4d{word-spacing:1.920000pt;}
.ws70{word-spacing:1.973333pt;}
.ws31{word-spacing:2.026667pt;}
.wsd7{word-spacing:2.064000pt;}
.ws9e{word-spacing:2.080000pt;}
.wsed{word-spacing:2.112000pt;}
.wsca{word-spacing:2.133333pt;}
.ws8b{word-spacing:2.186667pt;}
.ws18{word-spacing:2.240000pt;}
.ws35{word-spacing:2.293333pt;}
.ws4c{word-spacing:2.346667pt;}
.ws8d{word-spacing:2.352000pt;}
.ws4b{word-spacing:2.400000pt;}
.wsc{word-spacing:2.453333pt;}
.ws56{word-spacing:2.506667pt;}
.ws9f{word-spacing:2.560000pt;}
.ws40{word-spacing:2.613333pt;}
.wsd1{word-spacing:2.720000pt;}
.ws71{word-spacing:2.773333pt;}
.wsd2{word-spacing:2.826667pt;}
.wsa8{word-spacing:2.832000pt;}
.wsb5{word-spacing:2.933333pt;}
.wsa4{word-spacing:2.976000pt;}
.ws6a{word-spacing:2.986667pt;}
.ws1f{word-spacing:3.040000pt;}
.ws62{word-spacing:3.093333pt;}
.ws27{word-spacing:3.146667pt;}
.ws2f{word-spacing:3.200000pt;}
.wsef{word-spacing:3.216000pt;}
.ws89{word-spacing:3.253333pt;}
.wscc{word-spacing:3.306667pt;}
.wse4{word-spacing:3.408000pt;}
.ws78{word-spacing:3.413333pt;}
.ws76{word-spacing:3.520000pt;}
.wsee{word-spacing:3.552000pt;}
.ws3f{word-spacing:3.573333pt;}
.wsa3{word-spacing:3.600000pt;}
.wsb7{word-spacing:3.680000pt;}
.wsbe{word-spacing:3.733333pt;}
.wsc3{word-spacing:3.792000pt;}
.ws2c{word-spacing:3.840000pt;}
.ws38{word-spacing:3.893333pt;}
.ws24{word-spacing:3.946667pt;}
.ws1a{word-spacing:4.000000pt;}
.ws95{word-spacing:4.032000pt;}
.ws58{word-spacing:4.106667pt;}
.ws7c{word-spacing:4.160000pt;}
.ws64{word-spacing:4.266667pt;}
.wsb6{word-spacing:4.373333pt;}
.ws16{word-spacing:4.480000pt;}
.ws34{word-spacing:4.533333pt;}
.wsc8{word-spacing:4.586667pt;}
.ws33{word-spacing:4.640000pt;}
.ws81{word-spacing:4.693333pt;}
.ws53{word-spacing:4.800000pt;}
.ws51{word-spacing:4.906667pt;}
.wsb3{word-spacing:4.944000pt;}
.ws6c{word-spacing:4.960000pt;}
.ws2e{word-spacing:5.013333pt;}
.ws8c{word-spacing:5.173333pt;}
.wse9{word-spacing:5.232000pt;}
.ws4f{word-spacing:5.280000pt;}
.wseb{word-spacing:5.376000pt;}
.ws20{word-spacing:5.440000pt;}
.wsa1{word-spacing:5.493333pt;}
.wsbb{word-spacing:5.546667pt;}
.wsc4{word-spacing:5.568000pt;}
.wsba{word-spacing:5.653333pt;}
.wse0{word-spacing:5.664000pt;}
.ws52{word-spacing:5.706667pt;}
.ws3d{word-spacing:5.760000pt;}
.ws83{word-spacing:5.813333pt;}
.ws1d{word-spacing:5.866667pt;}
.ws15{word-spacing:5.920000pt;}
.ws30{word-spacing:5.973333pt;}
.wsbc{word-spacing:6.026667pt;}
.wsdc{word-spacing:6.048000pt;}
.ws61{word-spacing:6.080000pt;}
.wsc0{word-spacing:6.133333pt;}
.wsb1{word-spacing:6.186667pt;}
.wsf{word-spacing:6.240000pt;}
.ws3e{word-spacing:6.293333pt;}
.ws80{word-spacing:6.346667pt;}
.wse7{word-spacing:6.576000pt;}
.ws67{word-spacing:6.666667pt;}
.ws9b{word-spacing:6.672000pt;}
.ws6d{word-spacing:6.720000pt;}
.wsc5{word-spacing:6.816000pt;}
.ws4a{word-spacing:6.880000pt;}
.wse2{word-spacing:6.912000pt;}
.wscd{word-spacing:6.933333pt;}
.ws93{word-spacing:6.986667pt;}
.ws6b{word-spacing:7.040000pt;}
.wsb0{word-spacing:7.093333pt;}
.wsc6{word-spacing:7.152000pt;}
.ws19{word-spacing:7.253333pt;}
.wsb9{word-spacing:7.413333pt;}
.ws47{word-spacing:7.466667pt;}
.wsd9{word-spacing:7.488000pt;}
.ws66{word-spacing:7.786667pt;}
.ws96{word-spacing:7.872000pt;}
.ws5d{word-spacing:7.893333pt;}
.wsa0{word-spacing:8.053333pt;}
.ws43{word-spacing:8.160000pt;}
.wsb8{word-spacing:8.213333pt;}
.wsc1{word-spacing:8.480000pt;}
.ws9d{word-spacing:8.800000pt;}
.wsce{word-spacing:8.960000pt;}
.wsd0{word-spacing:9.173333pt;}
.ws91{word-spacing:9.333333pt;}
.wse1{word-spacing:9.360000pt;}
.ws32{word-spacing:9.493333pt;}
.wsc2{word-spacing:9.546667pt;}
.ws8a{word-spacing:9.760000pt;}
.wsa6{word-spacing:10.186667pt;}
.wscb{word-spacing:10.560000pt;}
.wsc9{word-spacing:11.360000pt;}
.ws8{word-spacing:11.573333pt;}
.ws2d{word-spacing:11.786667pt;}
.wsdd{word-spacing:12.672000pt;}
.ws3c{word-spacing:13.226667pt;}
.wse3{word-spacing:13.680000pt;}
.ws11{word-spacing:14.453333pt;}
._0{margin-left:-10.378667pt;}
._6{margin-left:-5.333333pt;}
._2{margin-left:-3.946667pt;}
._4{margin-left:-2.933333pt;}
._5{margin-left:-1.973333pt;}
._3{margin-left:-1.013333pt;}
._a{width:1.066667pt;}
._9{width:1.973333pt;}
._b{width:3.690667pt;}
._f{width:46.752000pt;}
._e{width:48.672000pt;}
._1{width:63.994667pt;}
._c{width:1259.466667pt;}
._7{width:1286.133333pt;}
._d{width:1630.080000pt;}
._8{width:1656.746667pt;}
.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;}
.ye3{bottom:83.243067pt;}
.yc3{bottom:87.243067pt;}
.y26{bottom:89.816267pt;}
.y76{bottom:89.908533pt;}
.y57{bottom:89.909733pt;}
.y102{bottom:92.579067pt;}
.y12e{bottom:93.500267pt;}
.y161{bottom:93.965733pt;}
.yff{bottom:96.576400pt;}
.ye2{bottom:99.243067pt;}
.y25{bottom:103.149600pt;}
.y6b{bottom:103.243067pt;}
.y75{bottom:105.908533pt;}
.y56{bottom:105.909733pt;}
.y101{bottom:107.243067pt;}
.y9f{bottom:108.248400pt;}
.y160{bottom:108.629733pt;}
.y12d{bottom:109.500267pt;}
.yfe{bottom:112.576400pt;}
.ye1{bottom:115.243067pt;}
.y24{bottom:116.482933pt;}
.y6a{bottom:119.243067pt;}
.y74{bottom:121.908533pt;}
.y55{bottom:121.909733pt;}
.y9e{bottom:122.912400pt;}
.y15f{bottom:123.293733pt;}
.y12c{bottom:125.500267pt;}
.y18e{bottom:126.824400pt;}
.yfd{bottom:128.576400pt;}
.ye0{bottom:131.243067pt;}
.y69{bottom:135.243067pt;}
.y9d{bottom:137.576400pt;}
.y73{bottom:137.908533pt;}
.y54{bottom:137.909733pt;}
.y15e{bottom:137.957733pt;}
.y18d{bottom:141.488400pt;}
.y12b{bottom:141.500267pt;}
.yfc{bottom:144.576400pt;}
.ydf{bottom:147.243067pt;}
.y68{bottom:151.243067pt;}
.y9c{bottom:152.240400pt;}
.y15d{bottom:152.621733pt;}
.y72{bottom:153.908533pt;}
.y53{bottom:153.909733pt;}
.y12a{bottom:157.500267pt;}
.yfb{bottom:160.576400pt;}
.y18c{bottom:161.488400pt;}
.yde{bottom:163.243067pt;}
.y23{bottom:166.387067pt;}
.y9b{bottom:166.904400pt;}
.y67{bottom:167.243067pt;}
.yc2{bottom:167.251067pt;}
.y15c{bottom:167.285733pt;}
.y71{bottom:169.908533pt;}
.y52{bottom:169.909733pt;}
.y129{bottom:173.500267pt;}
.yfa{bottom:176.576400pt;}
.y100{bottom:177.909733pt;}
.ydd{bottom:179.243067pt;}
.yc1{bottom:181.915067pt;}
.y15b{bottom:181.949733pt;}
.y22{bottom:182.387067pt;}
.y66{bottom:183.243067pt;}
.y70{bottom:185.908533pt;}
.y51{bottom:185.909733pt;}
.y128{bottom:189.500267pt;}
.yf9{bottom:192.576400pt;}
.y18b{bottom:193.597733pt;}
.ydc{bottom:195.243067pt;}
.yc0{bottom:196.579067pt;}
.y15a{bottom:196.613733pt;}
.y21{bottom:198.387067pt;}
.y9a{bottom:200.237733pt;}
.y6f{bottom:201.908533pt;}
.y50{bottom:201.909733pt;}
.y127{bottom:205.500267pt;}
.y65{bottom:207.237733pt;}
.y18a{bottom:208.261733pt;}
.yf8{bottom:208.576400pt;}
.y77{bottom:209.909733pt;}
.ybf{bottom:211.243067pt;}
.y159{bottom:211.277733pt;}
.y20{bottom:214.387067pt;}
.y99{bottom:216.237733pt;}
.y6e{bottom:217.908533pt;}
.y4f{bottom:217.909733pt;}
.y126{bottom:221.500267pt;}
.y189{bottom:222.925733pt;}
.yf7{bottom:224.576400pt;}
.y64{bottom:225.909733pt;}
.y158{bottom:225.941733pt;}
.ydb{bottom:227.243067pt;}
.y1f{bottom:230.387067pt;}
.y98{bottom:232.237733pt;}
.y6d{bottom:233.908533pt;}
.y4e{bottom:233.909733pt;}
.y125{bottom:237.500267pt;}
.y188{bottom:237.589733pt;}
.yf6{bottom:240.576400pt;}
.y157{bottom:240.605733pt;}
.ybe{bottom:241.909733pt;}
.y1e{bottom:246.387067pt;}
.y97{bottom:248.237733pt;}
.y6c{bottom:249.908533pt;}
.y4d{bottom:249.909733pt;}
.y187{bottom:252.253733pt;}
.y124{bottom:253.500267pt;}
.y156{bottom:255.269733pt;}
.yf5{bottom:256.576400pt;}
.ybd{bottom:257.909733pt;}
.yda{bottom:259.248400pt;}
.y1d{bottom:262.387067pt;}
.y96{bottom:264.237733pt;}
.y63{bottom:265.908533pt;}
.y4c{bottom:265.909733pt;}
.y186{bottom:266.917733pt;}
.y123{bottom:269.500267pt;}
.y155{bottom:269.933733pt;}
.yf4{bottom:272.576400pt;}
.ybc{bottom:273.909733pt;}
.yd9{bottom:273.912400pt;}
.y95{bottom:280.237733pt;}
.y185{bottom:281.581733pt;}
.y62{bottom:281.908533pt;}
.y4b{bottom:281.909733pt;}
.y154{bottom:284.597733pt;}
.y122{bottom:285.500267pt;}
.y1c{bottom:286.387067pt;}
.yd8{bottom:288.576400pt;}
.ybb{bottom:289.909733pt;}
.y94{bottom:296.237733pt;}
.y184{bottom:296.245733pt;}
.y61{bottom:297.908533pt;}
.y4a{bottom:297.909733pt;}
.y153{bottom:299.261733pt;}
.y121{bottom:301.500267pt;}
.yf3{bottom:304.576400pt;}
.yba{bottom:305.909733pt;}
.y183{bottom:310.909733pt;}
.y93{bottom:312.237733pt;}
.y60{bottom:313.908533pt;}
.y49{bottom:313.909733pt;}
.y152{bottom:313.925733pt;}
.y120{bottom:317.500267pt;}
.yd7{bottom:319.243067pt;}
.yf2{bottom:320.576400pt;}
.yb9{bottom:321.909733pt;}
.y182{bottom:325.573733pt;}
.y1b{bottom:326.384267pt;}
.y92{bottom:328.237733pt;}
.y151{bottom:328.589733pt;}
.y5f{bottom:329.908533pt;}
.y48{bottom:329.909733pt;}
.y11f{bottom:333.500267pt;}
.yd6{bottom:335.243067pt;}
.yf1{bottom:336.576400pt;}
.yb8{bottom:337.909733pt;}
.y181{bottom:340.237733pt;}
.y1a{bottom:342.384267pt;}
.y150{bottom:343.253733pt;}
.y5e{bottom:345.908533pt;}
.y47{bottom:345.909733pt;}
.y11e{bottom:349.500267pt;}
.yd5{bottom:351.243067pt;}
.yf0{bottom:352.576400pt;}
.yb7{bottom:353.909733pt;}
.y180{bottom:354.901733pt;}
.y14f{bottom:357.917733pt;}
.y19{bottom:358.384267pt;}
.y5d{bottom:361.908533pt;}
.y46{bottom:361.909733pt;}
.y91{bottom:362.917733pt;}
.y11d{bottom:365.500267pt;}
.yd4{bottom:367.243067pt;}
.yef{bottom:368.576400pt;}
.y17f{bottom:369.565733pt;}
.yb6{bottom:369.909733pt;}
.y14e{bottom:372.581733pt;}
.y90{bottom:377.581733pt;}
.y5c{bottom:377.908533pt;}
.y45{bottom:377.909733pt;}
.y11c{bottom:381.500267pt;}
.yd3{bottom:383.243067pt;}
.y17e{bottom:384.229733pt;}
.yee{bottom:384.576400pt;}
.yb5{bottom:385.909733pt;}
.y14d{bottom:387.245733pt;}
.y8f{bottom:392.245733pt;}
.y5b{bottom:393.908533pt;}
.y44{bottom:393.909733pt;}
.y18{bottom:397.064267pt;}
.y11b{bottom:397.500267pt;}
.y17d{bottom:398.893733pt;}
.yd2{bottom:399.243067pt;}
.yed{bottom:400.576400pt;}
.yb4{bottom:401.909733pt;}
.y8e{bottom:406.909733pt;}
.y5a{bottom:409.908533pt;}
.y43{bottom:409.909733pt;}
.y17{bottom:413.064267pt;}
.y11a{bottom:413.500267pt;}
.y17c{bottom:413.557733pt;}
.yd1{bottom:415.243067pt;}
.yec{bottom:416.576400pt;}
.yb3{bottom:417.909733pt;}
.y8d{bottom:421.573733pt;}
.y14c{bottom:421.909733pt;}
.y59{bottom:425.908533pt;}
.y42{bottom:425.909733pt;}
.y17b{bottom:428.221733pt;}
.y16{bottom:429.064267pt;}
.y119{bottom:429.500267pt;}
.yd0{bottom:431.243067pt;}
.yeb{bottom:432.576400pt;}
.yb2{bottom:433.909733pt;}
.y8c{bottom:436.237733pt;}
.y58{bottom:441.908533pt;}
.y41{bottom:441.909733pt;}
.y17a{bottom:442.885733pt;}
.y15{bottom:445.064267pt;}
.y118{bottom:445.500267pt;}
.ycf{bottom:447.243067pt;}
.yea{bottom:448.576400pt;}
.yb1{bottom:449.909733pt;}
.y14b{bottom:453.920400pt;}
.y179{bottom:457.549733pt;}
.y40{bottom:457.908533pt;}
.y140{bottom:457.909733pt;}
.y14{bottom:461.064267pt;}
.y117{bottom:461.500267pt;}
.yce{bottom:463.243067pt;}
.ye9{bottom:464.576400pt;}
.yb0{bottom:465.909733pt;}
.y14a{bottom:468.584400pt;}
.y8b{bottom:469.571067pt;}
.y178{bottom:472.213733pt;}
.y3f{bottom:473.908533pt;}
.y13f{bottom:473.909733pt;}
.y13{bottom:477.064267pt;}
.y116{bottom:477.500267pt;}
.ycd{bottom:479.243067pt;}
.yaf{bottom:481.909733pt;}
.y149{bottom:483.248400pt;}
.y8a{bottom:485.571067pt;}
.y177{bottom:486.877733pt;}
.y3e{bottom:489.908533pt;}
.y13e{bottom:489.909733pt;}
.y12{bottom:493.064267pt;}
.y115{bottom:493.500267pt;}
.ycc{bottom:495.243067pt;}
.ye8{bottom:496.587067pt;}
.yae{bottom:497.909733pt;}
.y148{bottom:497.912400pt;}
.y176{bottom:501.541733pt;}
.y89{bottom:501.571067pt;}
.y3d{bottom:505.908533pt;}
.y13d{bottom:505.909733pt;}
.y11{bottom:509.064267pt;}
.y114{bottom:509.500267pt;}
.ycb{bottom:511.243067pt;}
.ye7{bottom:511.251067pt;}
.y147{bottom:512.576400pt;}
.yad{bottom:513.909733pt;}
.y175{bottom:516.205733pt;}
.y88{bottom:517.571067pt;}
.y3c{bottom:521.908533pt;}
.y13c{bottom:521.909733pt;}
.y10{bottom:525.064267pt;}
.y113{bottom:525.500267pt;}
.ye6{bottom:525.915067pt;}
.yca{bottom:527.243067pt;}
.yac{bottom:529.909733pt;}
.y174{bottom:530.869733pt;}
.y146{bottom:532.576400pt;}
.y87{bottom:533.571067pt;}
.y3b{bottom:537.908533pt;}
.y13b{bottom:537.909733pt;}
.ye5{bottom:540.579067pt;}
.yf{bottom:541.064267pt;}
.y112{bottom:541.500267pt;}
.yc9{bottom:543.243067pt;}
.y173{bottom:545.533733pt;}
.yab{bottom:545.909733pt;}
.y86{bottom:549.571067pt;}
.y3a{bottom:553.908533pt;}
.y13a{bottom:553.909733pt;}
.ye4{bottom:555.243067pt;}
.ye{bottom:557.064267pt;}
.y111{bottom:557.500267pt;}
.y172{bottom:560.197733pt;}
.yaa{bottom:561.909733pt;}
.y145{bottom:564.576400pt;}
.y85{bottom:565.571067pt;}
.yc8{bottom:567.243067pt;}
.y39{bottom:569.908533pt;}
.y139{bottom:569.909733pt;}
.y110{bottom:573.500267pt;}
.y171{bottom:574.861733pt;}
.ya9{bottom:577.909733pt;}
.y84{bottom:581.571067pt;}
.y144{bottom:584.576400pt;}
.y38{bottom:585.908533pt;}
.y138{bottom:585.909733pt;}
.y10f{bottom:589.500267pt;}
.y170{bottom:589.525733pt;}
.ya8{bottom:593.909733pt;}
.yd{bottom:597.064267pt;}
.y83{bottom:597.571067pt;}
.y37{bottom:601.908533pt;}
.y137{bottom:601.909733pt;}
.y16f{bottom:604.189733pt;}
.y10e{bottom:605.500267pt;}
.yc7{bottom:607.243067pt;}
.ya7{bottom:609.909733pt;}
.yc{bottom:610.397600pt;}
.y82{bottom:613.571067pt;}
.y143{bottom:616.581733pt;}
.y36{bottom:617.908533pt;}
.y136{bottom:617.909733pt;}
.y16e{bottom:618.853733pt;}
.y10d{bottom:621.500267pt;}
.yc6{bottom:623.243067pt;}
.ya6{bottom:625.909733pt;}
.y81{bottom:629.571067pt;}
.y142{bottom:631.245733pt;}
.y16d{bottom:633.517733pt;}
.y35{bottom:633.908533pt;}
.y135{bottom:633.909733pt;}
.y10c{bottom:637.500267pt;}
.yc5{bottom:639.243067pt;}
.y80{bottom:645.571067pt;}
.y141{bottom:645.909733pt;}
.y16c{bottom:648.181733pt;}
.y34{bottom:649.908533pt;}
.y134{bottom:649.909733pt;}
.y10b{bottom:653.500267pt;}
.yc4{bottom:655.243067pt;}
.ya5{bottom:657.923067pt;}
.y7f{bottom:661.571067pt;}
.y8{bottom:661.842133pt;}
.y16b{bottom:662.845733pt;}
.y33{bottom:665.908533pt;}
.y133{bottom:665.909733pt;}
.y10a{bottom:669.500267pt;}
.ya4{bottom:672.587067pt;}
.y7{bottom:673.172800pt;}
.y1{bottom:674.445333pt;}
.yb{bottom:677.064267pt;}
.y16a{bottom:677.509733pt;}
.y7e{bottom:677.571067pt;}
.y32{bottom:681.908533pt;}
.y132{bottom:681.909733pt;}
.y6{bottom:684.503467pt;}
.y109{bottom:685.500267pt;}
.ya3{bottom:687.251067pt;}
.y169{bottom:692.173733pt;}
.y7d{bottom:693.571067pt;}
.y5{bottom:695.834133pt;}
.y31{bottom:697.908533pt;}
.y131{bottom:697.909733pt;}
.ya{bottom:701.064267pt;}
.y108{bottom:701.500267pt;}
.ya2{bottom:701.915067pt;}
.y168{bottom:706.837733pt;}
.y7c{bottom:709.571067pt;}
.y30{bottom:713.908533pt;}
.y130{bottom:713.909733pt;}
.ya1{bottom:716.579067pt;}
.y107{bottom:717.500267pt;}
.y167{bottom:721.501733pt;}
.y4{bottom:724.913600pt;}
.y9{bottom:725.064267pt;}
.y7b{bottom:725.571067pt;}
.y2f{bottom:729.908533pt;}
.ya0{bottom:731.243067pt;}
.y106{bottom:733.500267pt;}
.y166{bottom:736.165733pt;}
.y3{bottom:736.244267pt;}
.y12f{bottom:737.909733pt;}
.y7a{bottom:741.571067pt;}
.y2e{bottom:745.908533pt;}
.y2{bottom:747.574933pt;}
.y165{bottom:750.829733pt;}
.y2d{bottom:761.908533pt;}
.y164{bottom:765.493733pt;}
.y105{bottom:765.505600pt;}
.y79{bottom:765.565733pt;}
.y29{bottom:775.446800pt;}
.y2c{bottom:777.908533pt;}
.y163{bottom:780.157733pt;}
.y104{bottom:780.169600pt;}
.y78{bottom:792.237733pt;}
.y2b{bottom:793.908533pt;}
.y162{bottom:794.821733pt;}
.y103{bottom:794.833600pt;}
.y2a{bottom:829.961867pt;}
.y28{bottom:876.073333pt;}
.y27{bottom:877.406800pt;}
.hc{height:3.706667pt;}
.h2{height:22.656000pt;}
.h3{height:26.432000pt;}
.ha{height:29.525333pt;}
.h6{height:30.208000pt;}
.h11{height:33.360000pt;}
.h12{height:33.984000pt;}
.hb{height:34.256228pt;}
.hd{height:36.876725pt;}
.h7{height:36.906667pt;}
.h9{height:37.066667pt;}
.h8{height:37.760000pt;}
.h10{height:42.760000pt;}
.he{height:42.764800pt;}
.hf{height:44.252070pt;}
.h5{height:44.288000pt;}
.h4{height:59.050667pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x9{left:5.669333pt;}
.xa{left:56.692933pt;}
.x8{left:64.252000pt;}
.xb{left:72.692933pt;}
.xc{left:80.252000pt;}
.xd{left:88.252000pt;}
.x1{left:392.867467pt;}
.x6{left:404.395067pt;}
.x7{left:410.424400pt;}
.x5{left:442.428400pt;}
.x4{left:447.607733pt;}
.x2{left:454.337067pt;}
.x3{left:514.247733pt;}
}




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