
    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_b00371f4d545f7c68df1da94.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_f4d6310be901c07525865258.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_0afa78df53c9e4e0a4552452.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_824dd2ee775d083aa90fd658.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_1909478a88f8a2c63232d12a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690110;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_db280f426208c6644a8d3486.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1e71b83f6dd3d38960741eb4.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.800000px;}
.ls8{letter-spacing:-1.350000px;}
.ls7{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.300000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.594000px;}
.ls3{letter-spacing:1.425000px;}
.ls0{letter-spacing:9.886800px;}
.ls2{letter-spacing:9.898800px;}
.ls1{letter-spacing:9.899400px;}
.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;}
}
.ws0{word-spacing:-21.852600px;}
.ws5{word-spacing:-11.676000px;}
.ws43{word-spacing:-4.980000px;}
.wsdd{word-spacing:-4.260000px;}
.ws99{word-spacing:-3.720000px;}
.wsdf{word-spacing:-3.600000px;}
.ws80{word-spacing:-3.480000px;}
.ws10d{word-spacing:-3.348000px;}
.wse8{word-spacing:-3.240000px;}
.ws71{word-spacing:-3.120000px;}
.ws98{word-spacing:-2.940000px;}
.wsac{word-spacing:-2.916000px;}
.ws45{word-spacing:-2.880000px;}
.wseb{word-spacing:-2.820000px;}
.ws115{word-spacing:-2.808000px;}
.wsbe{word-spacing:-2.760000px;}
.wsc2{word-spacing:-2.700000px;}
.ws61{word-spacing:-2.640000px;}
.ws11c{word-spacing:-2.592000px;}
.ws2a{word-spacing:-2.580000px;}
.wsaa{word-spacing:-2.538000px;}
.ws3b{word-spacing:-2.520000px;}
.ws78{word-spacing:-2.460000px;}
.ws95{word-spacing:-2.400000px;}
.ws62{word-spacing:-2.340000px;}
.wsa{word-spacing:-2.322000px;}
.ws59{word-spacing:-2.280000px;}
.ws70{word-spacing:-2.220000px;}
.ws94{word-spacing:-2.160000px;}
.wsc9{word-spacing:-2.100000px;}
.ws1{word-spacing:-2.079000px;}
.wsf0{word-spacing:-2.052000px;}
.ws41{word-spacing:-2.040000px;}
.ws113{word-spacing:-1.998000px;}
.ws2c{word-spacing:-1.980000px;}
.ws4d{word-spacing:-1.920000px;}
.wsbf{word-spacing:-1.860000px;}
.ws2d{word-spacing:-1.800000px;}
.ws24{word-spacing:-1.740000px;}
.ws54{word-spacing:-1.680000px;}
.ws2{word-spacing:-1.668000px;}
.ws9e{word-spacing:-1.620000px;}
.ws121{word-spacing:-1.566000px;}
.ws6f{word-spacing:-1.560000px;}
.ws3{word-spacing:-1.500000px;}
.ws100{word-spacing:-1.458000px;}
.wsbb{word-spacing:-1.440000px;}
.ws16{word-spacing:-1.425000px;}
.ws107{word-spacing:-1.404000px;}
.ws3a{word-spacing:-1.380000px;}
.wsf5{word-spacing:-1.350000px;}
.ws69{word-spacing:-1.320000px;}
.ws10a{word-spacing:-1.296000px;}
.wsd1{word-spacing:-1.260000px;}
.ws114{word-spacing:-1.242000px;}
.ws28{word-spacing:-1.200000px;}
.ws6d{word-spacing:-1.140000px;}
.ws13{word-spacing:-1.080000px;}
.wsa9{word-spacing:-1.020000px;}
.wsb2{word-spacing:-0.960000px;}
.ws64{word-spacing:-0.900000px;}
.ws106{word-spacing:-0.864000px;}
.ws87{word-spacing:-0.840000px;}
.wsa1{word-spacing:-0.780000px;}
.ws111{word-spacing:-0.756000px;}
.wsa0{word-spacing:-0.720000px;}
.wsbc{word-spacing:-0.660000px;}
.ws12{word-spacing:-0.648000px;}
.wsff{word-spacing:-0.594000px;}
.wsda{word-spacing:-0.540000px;}
.wsec{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.420000px;}
.wsf3{word-spacing:-0.378000px;}
.wsb5{word-spacing:-0.360000px;}
.ws6e{word-spacing:-0.300000px;}
.wsf4{word-spacing:-0.270000px;}
.ws60{word-spacing:-0.240000px;}
.ws10f{word-spacing:-0.216000px;}
.ws7f{word-spacing:-0.180000px;}
.ws73{word-spacing:-0.120000px;}
.ws4e{word-spacing:-0.060000px;}
.ws15{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws1f{word-spacing:0.060000px;}
.ws7b{word-spacing:0.120000px;}
.wsf6{word-spacing:0.162000px;}
.ws57{word-spacing:0.180000px;}
.wsb6{word-spacing:0.240000px;}
.ws11f{word-spacing:0.270000px;}
.wsa2{word-spacing:0.300000px;}
.ws72{word-spacing:0.360000px;}
.ws118{word-spacing:0.378000px;}
.ws1e{word-spacing:0.420000px;}
.ws30{word-spacing:0.480000px;}
.wsb{word-spacing:0.486000px;}
.ws9{word-spacing:0.540000px;}
.ws117{word-spacing:0.594000px;}
.ws2e{word-spacing:0.600000px;}
.ws102{word-spacing:0.648000px;}
.ws93{word-spacing:0.660000px;}
.wsef{word-spacing:0.810000px;}
.ws3c{word-spacing:0.840000px;}
.wse0{word-spacing:0.900000px;}
.ws40{word-spacing:0.960000px;}
.wsd5{word-spacing:1.020000px;}
.ws7a{word-spacing:1.080000px;}
.ws19{word-spacing:1.140000px;}
.ws1a{word-spacing:1.200000px;}
.ws5a{word-spacing:1.260000px;}
.ws10b{word-spacing:1.296000px;}
.ws25{word-spacing:1.320000px;}
.wsf{word-spacing:1.350000px;}
.ws88{word-spacing:1.380000px;}
.ws119{word-spacing:1.404000px;}
.ws9c{word-spacing:1.440000px;}
.ws4f{word-spacing:1.500000px;}
.ws27{word-spacing:1.560000px;}
.ws110{word-spacing:1.566000px;}
.ws17{word-spacing:1.620000px;}
.ws11d{word-spacing:1.674000px;}
.wsc0{word-spacing:1.680000px;}
.wsd{word-spacing:1.728000px;}
.ws55{word-spacing:1.740000px;}
.ws11b{word-spacing:1.782000px;}
.ws90{word-spacing:1.800000px;}
.ws105{word-spacing:1.836000px;}
.ws4b{word-spacing:1.860000px;}
.wsee{word-spacing:1.890000px;}
.wsd2{word-spacing:1.920000px;}
.wsc5{word-spacing:1.980000px;}
.wsd8{word-spacing:1.998000px;}
.ws3e{word-spacing:2.040000px;}
.ws7{word-spacing:2.052000px;}
.ws9b{word-spacing:2.100000px;}
.wse6{word-spacing:2.160000px;}
.wse7{word-spacing:2.220000px;}
.ws122{word-spacing:2.268000px;}
.ws5b{word-spacing:2.280000px;}
.ws8f{word-spacing:2.340000px;}
.ws5d{word-spacing:2.400000px;}
.wsf8{word-spacing:2.430000px;}
.ws4a{word-spacing:2.460000px;}
.wsc1{word-spacing:2.520000px;}
.ws11e{word-spacing:2.538000px;}
.ws7e{word-spacing:2.580000px;}
.ws6{word-spacing:2.592000px;}
.ws5c{word-spacing:2.640000px;}
.ws109{word-spacing:2.646000px;}
.ws10{word-spacing:2.700000px;}
.ws6b{word-spacing:2.760000px;}
.ws76{word-spacing:2.820000px;}
.ws101{word-spacing:2.862000px;}
.ws66{word-spacing:2.880000px;}
.ws104{word-spacing:2.916000px;}
.ws74{word-spacing:2.940000px;}
.ws26{word-spacing:3.000000px;}
.wsfa{word-spacing:3.024000px;}
.ws36{word-spacing:3.060000px;}
.wscd{word-spacing:3.120000px;}
.ws2f{word-spacing:3.240000px;}
.ws58{word-spacing:3.300000px;}
.ws65{word-spacing:3.360000px;}
.ws31{word-spacing:3.420000px;}
.wsc4{word-spacing:3.480000px;}
.ws51{word-spacing:3.540000px;}
.ws11a{word-spacing:3.564000px;}
.ws84{word-spacing:3.600000px;}
.ws67{word-spacing:3.780000px;}
.ws103{word-spacing:3.834000px;}
.ws48{word-spacing:3.840000px;}
.wscf{word-spacing:3.888000px;}
.ws29{word-spacing:3.900000px;}
.ws108{word-spacing:3.942000px;}
.ws7c{word-spacing:3.960000px;}
.wsaf{word-spacing:4.020000px;}
.ws47{word-spacing:4.080000px;}
.ws82{word-spacing:4.140000px;}
.wsfb{word-spacing:4.158000px;}
.ws39{word-spacing:4.200000px;}
.wsfc{word-spacing:4.212000px;}
.wsd3{word-spacing:4.260000px;}
.ws8{word-spacing:4.320000px;}
.ws97{word-spacing:4.380000px;}
.ws10c{word-spacing:4.428000px;}
.ws18{word-spacing:4.440000px;}
.ws50{word-spacing:4.500000px;}
.wsc7{word-spacing:4.560000px;}
.ws1c{word-spacing:4.620000px;}
.wsde{word-spacing:4.740000px;}
.wsa5{word-spacing:4.800000px;}
.wse1{word-spacing:4.860000px;}
.wsad{word-spacing:4.920000px;}
.ws96{word-spacing:4.980000px;}
.ws9f{word-spacing:5.040000px;}
.ws56{word-spacing:5.100000px;}
.ws86{word-spacing:5.160000px;}
.ws81{word-spacing:5.340000px;}
.ws34{word-spacing:5.400000px;}
.ws8b{word-spacing:5.460000px;}
.ws3d{word-spacing:5.520000px;}
.ws89{word-spacing:5.580000px;}
.ws35{word-spacing:5.640000px;}
.wse{word-spacing:5.670000px;}
.wsd6{word-spacing:5.700000px;}
.ws79{word-spacing:5.760000px;}
.ws1d{word-spacing:5.820000px;}
.wsce{word-spacing:5.832000px;}
.wsbd{word-spacing:5.880000px;}
.wsa6{word-spacing:5.940000px;}
.ws22{word-spacing:6.000000px;}
.wsab{word-spacing:6.048000px;}
.ws92{word-spacing:6.060000px;}
.ws6a{word-spacing:6.120000px;}
.ws7d{word-spacing:6.180000px;}
.ws11{word-spacing:6.210000px;}
.wse2{word-spacing:6.240000px;}
.ws21{word-spacing:6.300000px;}
.wsc8{word-spacing:6.360000px;}
.wsf9{word-spacing:6.426000px;}
.wsb9{word-spacing:6.480000px;}
.ws1b{word-spacing:6.540000px;}
.ws38{word-spacing:6.600000px;}
.ws8c{word-spacing:6.660000px;}
.ws8a{word-spacing:6.720000px;}
.ws32{word-spacing:6.780000px;}
.ws3f{word-spacing:6.900000px;}
.ws75{word-spacing:6.960000px;}
.ws5f{word-spacing:7.020000px;}
.wscc{word-spacing:7.080000px;}
.ws49{word-spacing:7.140000px;}
.ws10e{word-spacing:7.182000px;}
.wsea{word-spacing:7.200000px;}
.ws33{word-spacing:7.260000px;}
.ws112{word-spacing:7.290000px;}
.wsa7{word-spacing:7.380000px;}
.wsa8{word-spacing:7.440000px;}
.wsc{word-spacing:7.560000px;}
.ws20{word-spacing:7.620000px;}
.wsae{word-spacing:7.740000px;}
.ws9a{word-spacing:7.860000px;}
.wsa4{word-spacing:7.920000px;}
.wsb0{word-spacing:8.040000px;}
.ws116{word-spacing:8.046000px;}
.ws52{word-spacing:8.100000px;}
.ws23{word-spacing:8.160000px;}
.wsdc{word-spacing:8.280000px;}
.wse4{word-spacing:8.520000px;}
.wse9{word-spacing:8.580000px;}
.ws68{word-spacing:8.640000px;}
.ws6c{word-spacing:8.700000px;}
.wsdb{word-spacing:8.760000px;}
.ws9d{word-spacing:8.820000px;}
.wsd9{word-spacing:8.880000px;}
.ws83{word-spacing:8.940000px;}
.wsfe{word-spacing:8.964000px;}
.wsca{word-spacing:9.000000px;}
.wsd7{word-spacing:9.060000px;}
.wsb3{word-spacing:9.120000px;}
.wsb1{word-spacing:9.180000px;}
.ws120{word-spacing:9.396000px;}
.wsb8{word-spacing:9.420000px;}
.wsf7{word-spacing:9.558000px;}
.wsd4{word-spacing:9.600000px;}
.wsba{word-spacing:9.660000px;}
.wsa3{word-spacing:9.900000px;}
.ws42{word-spacing:10.200000px;}
.ws14{word-spacing:10.206000px;}
.wsc6{word-spacing:10.260000px;}
.ws53{word-spacing:10.380000px;}
.ws63{word-spacing:10.440000px;}
.ws8d{word-spacing:10.800000px;}
.wsed{word-spacing:11.040000px;}
.wsd0{word-spacing:11.070000px;}
.ws37{word-spacing:11.160000px;}
.ws77{word-spacing:11.400000px;}
.wse5{word-spacing:11.580000px;}
.ws85{word-spacing:11.700000px;}
.ws2b{word-spacing:11.880000px;}
.wsc3{word-spacing:12.120000px;}
.ws8e{word-spacing:12.180000px;}
.ws5e{word-spacing:12.600000px;}
.ws46{word-spacing:12.780000px;}
.ws44{word-spacing:13.440000px;}
.wse3{word-spacing:13.860000px;}
.wsb7{word-spacing:13.920000px;}
.wsf2{word-spacing:13.932000px;}
.wsb4{word-spacing:14.820000px;}
.ws91{word-spacing:15.660000px;}
.wsfd{word-spacing:16.524000px;}
.wsf1{word-spacing:23.382000px;}
.wscb{word-spacing:24.360000px;}
._1a{margin-left:-20.940000px;}
._19{margin-left:-19.860000px;}
._f{margin-left:-18.180000px;}
._15{margin-left:-16.680000px;}
._6{margin-left:-15.180000px;}
._4{margin-left:-13.320000px;}
._0{margin-left:-11.676000px;}
._c{margin-left:-10.584000px;}
._7{margin-left:-9.120000px;}
._5{margin-left:-7.800000px;}
._b{margin-left:-6.600000px;}
._d{margin-left:-5.580000px;}
._3{margin-left:-4.440000px;}
._8{margin-left:-3.300000px;}
._2{margin-left:-1.620000px;}
._e{width:1.200000px;}
._9{width:2.220000px;}
._17{width:3.456000px;}
._1c{width:5.520000px;}
._13{width:7.020000px;}
._1e{width:52.110000px;}
._18{width:64.140000px;}
._1b{width:65.520000px;}
._14{width:67.320000px;}
._11{width:69.000000px;}
._12{width:70.860000px;}
._1d{width:71.997000px;}
._10{width:841.980000px;}
._1{width:875.340000px;}
._16{width:1365.420000px;}
._a{width:1398.780000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:6.000000px;}
.fs0{font-size:36.000000px;}
.fsb{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs2{font-size:46.200000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y132{bottom:69.324450px;}
.y139{bottom:76.689450px;}
.y131{bottom:85.821450px;}
.y138{bottom:93.186450px;}
.y28{bottom:93.543300px;}
.ya7{bottom:101.146950px;}
.y83{bottom:101.148450px;}
.y130{bottom:102.318450px;}
.y58{bottom:107.043300px;}
.yaf{bottom:107.148450px;}
.y27{bottom:108.543300px;}
.y137{bottom:109.683450px;}
.yd2{bottom:113.148450px;}
.yff{bottom:116.883300px;}
.y12f{bottom:118.815450px;}
.ya6{bottom:119.146950px;}
.y82{bottom:119.148450px;}
.y26{bottom:123.543300px;}
.y57{bottom:125.043300px;}
.yae{bottom:125.148450px;}
.y136{bottom:126.180450px;}
.yd1{bottom:129.645450px;}
.yfe{bottom:133.380300px;}
.y12e{bottom:135.312450px;}
.ya5{bottom:137.146950px;}
.y81{bottom:137.148450px;}
.y25{bottom:138.543300px;}
.y135{bottom:142.677450px;}
.y56{bottom:143.043300px;}
.yad{bottom:143.148450px;}
.yfd{bottom:149.877300px;}
.y12d{bottom:151.809450px;}
.ya4{bottom:155.146950px;}
.y80{bottom:155.148450px;}
.y134{bottom:159.174450px;}
.y55{bottom:161.043300px;}
.yd0{bottom:164.151450px;}
.yfc{bottom:166.374300px;}
.y12c{bottom:168.306450px;}
.ya3{bottom:173.146950px;}
.y7f{bottom:173.148450px;}
.y54{bottom:179.043300px;}
.yac{bottom:179.157450px;}
.ycf{bottom:180.648450px;}
.y133{bottom:181.674450px;}
.yfb{bottom:182.871300px;}
.y24{bottom:183.603300px;}
.y12b{bottom:184.803450px;}
.ya2{bottom:191.146950px;}
.y7e{bottom:191.148450px;}
.yab{bottom:195.654450px;}
.y53{bottom:197.043300px;}
.yfa{bottom:199.368300px;}
.y23{bottom:200.103300px;}
.y12a{bottom:201.300450px;}
.ya1{bottom:209.146950px;}
.y7d{bottom:209.148450px;}
.yaa{bottom:212.151450px;}
.y52{bottom:215.043300px;}
.yce{bottom:215.148450px;}
.yf9{bottom:215.865300px;}
.y129{bottom:217.797450px;}
.ya0{bottom:227.146950px;}
.y7c{bottom:227.148450px;}
.ya9{bottom:228.648450px;}
.yf8{bottom:232.362300px;}
.y51{bottom:233.043300px;}
.ycd{bottom:233.148450px;}
.y128{bottom:234.294450px;}
.y22{bottom:243.660150px;}
.y9f{bottom:245.146950px;}
.y7b{bottom:245.148450px;}
.yf7{bottom:248.859300px;}
.y127{bottom:250.791450px;}
.y50{bottom:251.043300px;}
.ycc{bottom:251.148450px;}
.y21{bottom:260.157150px;}
.y9e{bottom:263.146950px;}
.y7a{bottom:263.148450px;}
.yf6{bottom:265.356300px;}
.y126{bottom:267.288450px;}
.y4f{bottom:269.043300px;}
.ycb{bottom:269.148450px;}
.y20{bottom:276.654150px;}
.y9d{bottom:281.146950px;}
.y79{bottom:281.148450px;}
.yf5{bottom:281.853300px;}
.y125{bottom:283.785450px;}
.y4e{bottom:287.043300px;}
.yca{bottom:287.148450px;}
.y1f{bottom:293.151150px;}
.yf4{bottom:298.350300px;}
.y9c{bottom:299.146950px;}
.y78{bottom:299.148450px;}
.y124{bottom:300.282450px;}
.y4d{bottom:305.043300px;}
.yc9{bottom:305.148450px;}
.y1e{bottom:309.648150px;}
.yf3{bottom:314.847300px;}
.y123{bottom:316.779450px;}
.y9b{bottom:317.146950px;}
.y77{bottom:317.148450px;}
.y4c{bottom:323.043300px;}
.yc8{bottom:323.148450px;}
.y1d{bottom:326.145150px;}
.yf2{bottom:331.344300px;}
.y122{bottom:333.276450px;}
.y9a{bottom:335.146950px;}
.y76{bottom:335.148450px;}
.y4b{bottom:341.043300px;}
.yc7{bottom:341.148450px;}
.y1c{bottom:342.642150px;}
.yf1{bottom:347.841300px;}
.y121{bottom:349.773450px;}
.y99{bottom:353.146950px;}
.y75{bottom:353.148450px;}
.y4a{bottom:359.043300px;}
.y1b{bottom:359.139150px;}
.yc6{bottom:359.148450px;}
.yf0{bottom:364.338300px;}
.y120{bottom:366.270450px;}
.y98{bottom:371.146950px;}
.y74{bottom:371.148450px;}
.y1a{bottom:375.636150px;}
.y49{bottom:377.043300px;}
.yc5{bottom:377.148450px;}
.yef{bottom:380.835300px;}
.y11f{bottom:382.767450px;}
.y97{bottom:389.146950px;}
.y73{bottom:389.148450px;}
.y19{bottom:392.133150px;}
.y48{bottom:395.043300px;}
.yc4{bottom:395.148450px;}
.yee{bottom:397.332300px;}
.ya8{bottom:398.148450px;}
.y11e{bottom:399.264450px;}
.y96{bottom:407.146950px;}
.y72{bottom:407.148450px;}
.y18{bottom:408.630150px;}
.y47{bottom:413.043300px;}
.yc3{bottom:413.148450px;}
.yed{bottom:413.829300px;}
.y11d{bottom:415.761450px;}
.y17{bottom:425.127150px;}
.y95{bottom:425.146950px;}
.y71{bottom:425.148450px;}
.yec{bottom:430.326300px;}
.y46{bottom:431.043300px;}
.yc2{bottom:431.148450px;}
.y11c{bottom:432.258450px;}
.y16{bottom:441.624150px;}
.y94{bottom:443.146950px;}
.y70{bottom:443.148450px;}
.yeb{bottom:446.823300px;}
.y11b{bottom:448.755450px;}
.y45{bottom:449.043300px;}
.yc1{bottom:449.148450px;}
.yd4{bottom:452.148450px;}
.y15{bottom:458.121150px;}
.y93{bottom:461.146950px;}
.y6f{bottom:461.148450px;}
.yea{bottom:463.320300px;}
.y11a{bottom:465.252450px;}
.y44{bottom:467.043300px;}
.yc0{bottom:467.148450px;}
.y14{bottom:474.618150px;}
.y92{bottom:479.146950px;}
.y6e{bottom:479.148450px;}
.ye9{bottom:479.817300px;}
.y119{bottom:481.749450px;}
.y43{bottom:485.043300px;}
.ybf{bottom:485.148450px;}
.y13{bottom:491.115150px;}
.ye8{bottom:496.314300px;}
.y91{bottom:497.146950px;}
.y6d{bottom:497.148450px;}
.y118{bottom:498.246450px;}
.y42{bottom:503.043300px;}
.ybe{bottom:503.148450px;}
.y12{bottom:507.615150px;}
.ye7{bottom:512.811300px;}
.y117{bottom:514.743450px;}
.y90{bottom:515.146950px;}
.y6c{bottom:515.148450px;}
.y41{bottom:521.043300px;}
.ybd{bottom:521.148450px;}
.ye6{bottom:529.308300px;}
.y116{bottom:531.240450px;}
.y8f{bottom:533.146950px;}
.y6b{bottom:533.148450px;}
.y40{bottom:539.043300px;}
.ybc{bottom:539.148450px;}
.ye5{bottom:545.805300px;}
.y115{bottom:547.737450px;}
.y8e{bottom:551.146950px;}
.y6a{bottom:551.148450px;}
.y3f{bottom:557.043300px;}
.ybb{bottom:557.148450px;}
.ye4{bottom:562.302300px;}
.y114{bottom:564.234450px;}
.y8d{bottom:569.146950px;}
.y69{bottom:569.148450px;}
.y3e{bottom:575.043300px;}
.yba{bottom:575.148450px;}
.ye3{bottom:578.799300px;}
.y113{bottom:580.731450px;}
.y11{bottom:582.615150px;}
.y8c{bottom:587.146950px;}
.y68{bottom:587.148450px;}
.y3d{bottom:593.043300px;}
.yb9{bottom:593.148450px;}
.ye2{bottom:595.296300px;}
.y112{bottom:597.228450px;}
.y10{bottom:597.615150px;}
.y8b{bottom:605.146950px;}
.y67{bottom:605.148450px;}
.y3c{bottom:611.043300px;}
.yb8{bottom:611.148450px;}
.ye1{bottom:611.793300px;}
.y111{bottom:613.725450px;}
.yd3{bottom:614.148450px;}
.y8a{bottom:623.146950px;}
.y66{bottom:623.148450px;}
.y3b{bottom:629.043300px;}
.yb7{bottom:629.148450px;}
.y110{bottom:630.222450px;}
.ye0{bottom:634.293300px;}
.y89{bottom:641.146950px;}
.y65{bottom:641.148450px;}
.yf{bottom:645.615150px;}
.y10f{bottom:646.719450px;}
.y3a{bottom:647.043300px;}
.yb6{bottom:647.148450px;}
.y88{bottom:659.146950px;}
.y64{bottom:659.148450px;}
.ye{bottom:660.615150px;}
.y10e{bottom:663.216450px;}
.y39{bottom:665.043300px;}
.yb5{bottom:665.148450px;}
.ydf{bottom:670.305300px;}
.y87{bottom:677.146950px;}
.y63{bottom:677.148450px;}
.y10d{bottom:679.713450px;}
.y38{bottom:683.043300px;}
.yb4{bottom:683.148450px;}
.yde{bottom:686.802300px;}
.y86{bottom:695.146950px;}
.y10c{bottom:696.210450px;}
.y37{bottom:701.043300px;}
.ydd{bottom:703.299300px;}
.y62{bottom:704.148450px;}
.y10b{bottom:712.707450px;}
.y85{bottom:713.146950px;}
.y36{bottom:719.043300px;}
.yb3{bottom:719.157450px;}
.ydc{bottom:719.796300px;}
.y10a{bottom:729.204450px;}
.y84{bottom:731.146950px;}
.yd{bottom:735.615150px;}
.yb2{bottom:735.654450px;}
.ydb{bottom:736.293300px;}
.y35{bottom:737.043300px;}
.y109{bottom:745.701450px;}
.y8{bottom:747.668850px;}
.y61{bottom:749.146950px;}
.yb1{bottom:752.151450px;}
.y34{bottom:755.043300px;}
.yda{bottom:758.793300px;}
.y7{bottom:760.415850px;}
.y108{bottom:762.198450px;}
.y1{bottom:762.360300px;}
.yc{bottom:762.615150px;}
.y60{bottom:767.146950px;}
.yb0{bottom:768.648450px;}
.y33{bottom:773.043300px;}
.y6{bottom:773.162850px;}
.y107{bottom:778.695450px;}
.y5f{bottom:785.146950px;}
.y5{bottom:785.909850px;}
.yb{bottom:789.615150px;}
.y32{bottom:791.043300px;}
.yd9{bottom:794.793300px;}
.y106{bottom:795.192450px;}
.y5e{bottom:803.146950px;}
.y31{bottom:809.043300px;}
.y105{bottom:811.689450px;}
.ya{bottom:816.615150px;}
.yd8{bottom:817.293300px;}
.y4{bottom:817.415850px;}
.y5d{bottom:821.146950px;}
.y30{bottom:827.043300px;}
.y104{bottom:828.186450px;}
.y3{bottom:830.162850px;}
.y5c{bottom:839.146950px;}
.y2{bottom:842.909850px;}
.y103{bottom:844.683450px;}
.y2f{bottom:845.043300px;}
.yd7{bottom:853.296300px;}
.y5b{bottom:857.146950px;}
.y102{bottom:861.180450px;}
.y2e{bottom:863.043300px;}
.yd6{bottom:869.793300px;}
.y5a{bottom:875.146950px;}
.y2b{bottom:877.640850px;}
.y101{bottom:877.677450px;}
.y2d{bottom:890.043300px;}
.yd5{bottom:892.291950px;}
.y59{bottom:893.146950px;}
.y100{bottom:894.174450px;}
.y9{bottom:897.896550px;}
.y2c{bottom:932.686950px;}
.y2a{bottom:985.582500px;}
.y29{bottom:987.082650px;}
.hb{height:4.170000px;}
.h2{height:27.432000px;}
.h3{height:32.004000px;}
.h7{height:36.576000px;}
.he{height:37.530000px;}
.ha{height:38.538256px;}
.h9{height:41.148000px;}
.hc{height:41.700000px;}
.hd{height:43.905000px;}
.h8{height:45.720000px;}
.h4{height:47.718000px;}
.h6{height:54.864000px;}
.h5{height:73.152000px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.xb{left:6.378000px;}
.xc{left:63.779550px;}
.xa{left:72.283500px;}
.xd{left:81.779550px;}
.xe{left:90.283500px;}
.x11{left:99.283500px;}
.xf{left:117.779550px;}
.x10{left:126.283500px;}
.x9{left:294.150000px;}
.x2{left:419.821800px;}
.x1{left:422.426250px;}
.x6{left:432.673200px;}
.x7{left:440.747700px;}
.x8{left:444.338700px;}
.x5{left:482.243700px;}
.x4{left:494.854800px;}
.x3{left:576.765300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.933333pt;}
.ls8{letter-spacing:-1.200000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.528000pt;}
.ls3{letter-spacing:1.266667pt;}
.ls0{letter-spacing:8.788267pt;}
.ls2{letter-spacing:8.798933pt;}
.ls1{letter-spacing:8.799467pt;}
.ws0{word-spacing:-19.424533pt;}
.ws5{word-spacing:-10.378667pt;}
.ws43{word-spacing:-4.426667pt;}
.wsdd{word-spacing:-3.786667pt;}
.ws99{word-spacing:-3.306667pt;}
.wsdf{word-spacing:-3.200000pt;}
.ws80{word-spacing:-3.093333pt;}
.ws10d{word-spacing:-2.976000pt;}
.wse8{word-spacing:-2.880000pt;}
.ws71{word-spacing:-2.773333pt;}
.ws98{word-spacing:-2.613333pt;}
.wsac{word-spacing:-2.592000pt;}
.ws45{word-spacing:-2.560000pt;}
.wseb{word-spacing:-2.506667pt;}
.ws115{word-spacing:-2.496000pt;}
.wsbe{word-spacing:-2.453333pt;}
.wsc2{word-spacing:-2.400000pt;}
.ws61{word-spacing:-2.346667pt;}
.ws11c{word-spacing:-2.304000pt;}
.ws2a{word-spacing:-2.293333pt;}
.wsaa{word-spacing:-2.256000pt;}
.ws3b{word-spacing:-2.240000pt;}
.ws78{word-spacing:-2.186667pt;}
.ws95{word-spacing:-2.133333pt;}
.ws62{word-spacing:-2.080000pt;}
.wsa{word-spacing:-2.064000pt;}
.ws59{word-spacing:-2.026667pt;}
.ws70{word-spacing:-1.973333pt;}
.ws94{word-spacing:-1.920000pt;}
.wsc9{word-spacing:-1.866667pt;}
.ws1{word-spacing:-1.848000pt;}
.wsf0{word-spacing:-1.824000pt;}
.ws41{word-spacing:-1.813333pt;}
.ws113{word-spacing:-1.776000pt;}
.ws2c{word-spacing:-1.760000pt;}
.ws4d{word-spacing:-1.706667pt;}
.wsbf{word-spacing:-1.653333pt;}
.ws2d{word-spacing:-1.600000pt;}
.ws24{word-spacing:-1.546667pt;}
.ws54{word-spacing:-1.493333pt;}
.ws2{word-spacing:-1.482667pt;}
.ws9e{word-spacing:-1.440000pt;}
.ws121{word-spacing:-1.392000pt;}
.ws6f{word-spacing:-1.386667pt;}
.ws3{word-spacing:-1.333333pt;}
.ws100{word-spacing:-1.296000pt;}
.wsbb{word-spacing:-1.280000pt;}
.ws16{word-spacing:-1.266667pt;}
.ws107{word-spacing:-1.248000pt;}
.ws3a{word-spacing:-1.226667pt;}
.wsf5{word-spacing:-1.200000pt;}
.ws69{word-spacing:-1.173333pt;}
.ws10a{word-spacing:-1.152000pt;}
.wsd1{word-spacing:-1.120000pt;}
.ws114{word-spacing:-1.104000pt;}
.ws28{word-spacing:-1.066667pt;}
.ws6d{word-spacing:-1.013333pt;}
.ws13{word-spacing:-0.960000pt;}
.wsa9{word-spacing:-0.906667pt;}
.wsb2{word-spacing:-0.853333pt;}
.ws64{word-spacing:-0.800000pt;}
.ws106{word-spacing:-0.768000pt;}
.ws87{word-spacing:-0.746667pt;}
.wsa1{word-spacing:-0.693333pt;}
.ws111{word-spacing:-0.672000pt;}
.wsa0{word-spacing:-0.640000pt;}
.wsbc{word-spacing:-0.586667pt;}
.ws12{word-spacing:-0.576000pt;}
.wsff{word-spacing:-0.528000pt;}
.wsda{word-spacing:-0.480000pt;}
.wsec{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.373333pt;}
.wsf3{word-spacing:-0.336000pt;}
.wsb5{word-spacing:-0.320000pt;}
.ws6e{word-spacing:-0.266667pt;}
.wsf4{word-spacing:-0.240000pt;}
.ws60{word-spacing:-0.213333pt;}
.ws10f{word-spacing:-0.192000pt;}
.ws7f{word-spacing:-0.160000pt;}
.ws73{word-spacing:-0.106667pt;}
.ws4e{word-spacing:-0.053333pt;}
.ws15{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.053333pt;}
.ws7b{word-spacing:0.106667pt;}
.wsf6{word-spacing:0.144000pt;}
.ws57{word-spacing:0.160000pt;}
.wsb6{word-spacing:0.213333pt;}
.ws11f{word-spacing:0.240000pt;}
.wsa2{word-spacing:0.266667pt;}
.ws72{word-spacing:0.320000pt;}
.ws118{word-spacing:0.336000pt;}
.ws1e{word-spacing:0.373333pt;}
.ws30{word-spacing:0.426667pt;}
.wsb{word-spacing:0.432000pt;}
.ws9{word-spacing:0.480000pt;}
.ws117{word-spacing:0.528000pt;}
.ws2e{word-spacing:0.533333pt;}
.ws102{word-spacing:0.576000pt;}
.ws93{word-spacing:0.586667pt;}
.wsef{word-spacing:0.720000pt;}
.ws3c{word-spacing:0.746667pt;}
.wse0{word-spacing:0.800000pt;}
.ws40{word-spacing:0.853333pt;}
.wsd5{word-spacing:0.906667pt;}
.ws7a{word-spacing:0.960000pt;}
.ws19{word-spacing:1.013333pt;}
.ws1a{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.120000pt;}
.ws10b{word-spacing:1.152000pt;}
.ws25{word-spacing:1.173333pt;}
.wsf{word-spacing:1.200000pt;}
.ws88{word-spacing:1.226667pt;}
.ws119{word-spacing:1.248000pt;}
.ws9c{word-spacing:1.280000pt;}
.ws4f{word-spacing:1.333333pt;}
.ws27{word-spacing:1.386667pt;}
.ws110{word-spacing:1.392000pt;}
.ws17{word-spacing:1.440000pt;}
.ws11d{word-spacing:1.488000pt;}
.wsc0{word-spacing:1.493333pt;}
.wsd{word-spacing:1.536000pt;}
.ws55{word-spacing:1.546667pt;}
.ws11b{word-spacing:1.584000pt;}
.ws90{word-spacing:1.600000pt;}
.ws105{word-spacing:1.632000pt;}
.ws4b{word-spacing:1.653333pt;}
.wsee{word-spacing:1.680000pt;}
.wsd2{word-spacing:1.706667pt;}
.wsc5{word-spacing:1.760000pt;}
.wsd8{word-spacing:1.776000pt;}
.ws3e{word-spacing:1.813333pt;}
.ws7{word-spacing:1.824000pt;}
.ws9b{word-spacing:1.866667pt;}
.wse6{word-spacing:1.920000pt;}
.wse7{word-spacing:1.973333pt;}
.ws122{word-spacing:2.016000pt;}
.ws5b{word-spacing:2.026667pt;}
.ws8f{word-spacing:2.080000pt;}
.ws5d{word-spacing:2.133333pt;}
.wsf8{word-spacing:2.160000pt;}
.ws4a{word-spacing:2.186667pt;}
.wsc1{word-spacing:2.240000pt;}
.ws11e{word-spacing:2.256000pt;}
.ws7e{word-spacing:2.293333pt;}
.ws6{word-spacing:2.304000pt;}
.ws5c{word-spacing:2.346667pt;}
.ws109{word-spacing:2.352000pt;}
.ws10{word-spacing:2.400000pt;}
.ws6b{word-spacing:2.453333pt;}
.ws76{word-spacing:2.506667pt;}
.ws101{word-spacing:2.544000pt;}
.ws66{word-spacing:2.560000pt;}
.ws104{word-spacing:2.592000pt;}
.ws74{word-spacing:2.613333pt;}
.ws26{word-spacing:2.666667pt;}
.wsfa{word-spacing:2.688000pt;}
.ws36{word-spacing:2.720000pt;}
.wscd{word-spacing:2.773333pt;}
.ws2f{word-spacing:2.880000pt;}
.ws58{word-spacing:2.933333pt;}
.ws65{word-spacing:2.986667pt;}
.ws31{word-spacing:3.040000pt;}
.wsc4{word-spacing:3.093333pt;}
.ws51{word-spacing:3.146667pt;}
.ws11a{word-spacing:3.168000pt;}
.ws84{word-spacing:3.200000pt;}
.ws67{word-spacing:3.360000pt;}
.ws103{word-spacing:3.408000pt;}
.ws48{word-spacing:3.413333pt;}
.wscf{word-spacing:3.456000pt;}
.ws29{word-spacing:3.466667pt;}
.ws108{word-spacing:3.504000pt;}
.ws7c{word-spacing:3.520000pt;}
.wsaf{word-spacing:3.573333pt;}
.ws47{word-spacing:3.626667pt;}
.ws82{word-spacing:3.680000pt;}
.wsfb{word-spacing:3.696000pt;}
.ws39{word-spacing:3.733333pt;}
.wsfc{word-spacing:3.744000pt;}
.wsd3{word-spacing:3.786667pt;}
.ws8{word-spacing:3.840000pt;}
.ws97{word-spacing:3.893333pt;}
.ws10c{word-spacing:3.936000pt;}
.ws18{word-spacing:3.946667pt;}
.ws50{word-spacing:4.000000pt;}
.wsc7{word-spacing:4.053333pt;}
.ws1c{word-spacing:4.106667pt;}
.wsde{word-spacing:4.213333pt;}
.wsa5{word-spacing:4.266667pt;}
.wse1{word-spacing:4.320000pt;}
.wsad{word-spacing:4.373333pt;}
.ws96{word-spacing:4.426667pt;}
.ws9f{word-spacing:4.480000pt;}
.ws56{word-spacing:4.533333pt;}
.ws86{word-spacing:4.586667pt;}
.ws81{word-spacing:4.746667pt;}
.ws34{word-spacing:4.800000pt;}
.ws8b{word-spacing:4.853333pt;}
.ws3d{word-spacing:4.906667pt;}
.ws89{word-spacing:4.960000pt;}
.ws35{word-spacing:5.013333pt;}
.wse{word-spacing:5.040000pt;}
.wsd6{word-spacing:5.066667pt;}
.ws79{word-spacing:5.120000pt;}
.ws1d{word-spacing:5.173333pt;}
.wsce{word-spacing:5.184000pt;}
.wsbd{word-spacing:5.226667pt;}
.wsa6{word-spacing:5.280000pt;}
.ws22{word-spacing:5.333333pt;}
.wsab{word-spacing:5.376000pt;}
.ws92{word-spacing:5.386667pt;}
.ws6a{word-spacing:5.440000pt;}
.ws7d{word-spacing:5.493333pt;}
.ws11{word-spacing:5.520000pt;}
.wse2{word-spacing:5.546667pt;}
.ws21{word-spacing:5.600000pt;}
.wsc8{word-spacing:5.653333pt;}
.wsf9{word-spacing:5.712000pt;}
.wsb9{word-spacing:5.760000pt;}
.ws1b{word-spacing:5.813333pt;}
.ws38{word-spacing:5.866667pt;}
.ws8c{word-spacing:5.920000pt;}
.ws8a{word-spacing:5.973333pt;}
.ws32{word-spacing:6.026667pt;}
.ws3f{word-spacing:6.133333pt;}
.ws75{word-spacing:6.186667pt;}
.ws5f{word-spacing:6.240000pt;}
.wscc{word-spacing:6.293333pt;}
.ws49{word-spacing:6.346667pt;}
.ws10e{word-spacing:6.384000pt;}
.wsea{word-spacing:6.400000pt;}
.ws33{word-spacing:6.453333pt;}
.ws112{word-spacing:6.480000pt;}
.wsa7{word-spacing:6.560000pt;}
.wsa8{word-spacing:6.613333pt;}
.wsc{word-spacing:6.720000pt;}
.ws20{word-spacing:6.773333pt;}
.wsae{word-spacing:6.880000pt;}
.ws9a{word-spacing:6.986667pt;}
.wsa4{word-spacing:7.040000pt;}
.wsb0{word-spacing:7.146667pt;}
.ws116{word-spacing:7.152000pt;}
.ws52{word-spacing:7.200000pt;}
.ws23{word-spacing:7.253333pt;}
.wsdc{word-spacing:7.360000pt;}
.wse4{word-spacing:7.573333pt;}
.wse9{word-spacing:7.626667pt;}
.ws68{word-spacing:7.680000pt;}
.ws6c{word-spacing:7.733333pt;}
.wsdb{word-spacing:7.786667pt;}
.ws9d{word-spacing:7.840000pt;}
.wsd9{word-spacing:7.893333pt;}
.ws83{word-spacing:7.946667pt;}
.wsfe{word-spacing:7.968000pt;}
.wsca{word-spacing:8.000000pt;}
.wsd7{word-spacing:8.053333pt;}
.wsb3{word-spacing:8.106667pt;}
.wsb1{word-spacing:8.160000pt;}
.ws120{word-spacing:8.352000pt;}
.wsb8{word-spacing:8.373333pt;}
.wsf7{word-spacing:8.496000pt;}
.wsd4{word-spacing:8.533333pt;}
.wsba{word-spacing:8.586667pt;}
.wsa3{word-spacing:8.800000pt;}
.ws42{word-spacing:9.066667pt;}
.ws14{word-spacing:9.072000pt;}
.wsc6{word-spacing:9.120000pt;}
.ws53{word-spacing:9.226667pt;}
.ws63{word-spacing:9.280000pt;}
.ws8d{word-spacing:9.600000pt;}
.wsed{word-spacing:9.813333pt;}
.wsd0{word-spacing:9.840000pt;}
.ws37{word-spacing:9.920000pt;}
.ws77{word-spacing:10.133333pt;}
.wse5{word-spacing:10.293333pt;}
.ws85{word-spacing:10.400000pt;}
.ws2b{word-spacing:10.560000pt;}
.wsc3{word-spacing:10.773333pt;}
.ws8e{word-spacing:10.826667pt;}
.ws5e{word-spacing:11.200000pt;}
.ws46{word-spacing:11.360000pt;}
.ws44{word-spacing:11.946667pt;}
.wse3{word-spacing:12.320000pt;}
.wsb7{word-spacing:12.373333pt;}
.wsf2{word-spacing:12.384000pt;}
.wsb4{word-spacing:13.173333pt;}
.ws91{word-spacing:13.920000pt;}
.wsfd{word-spacing:14.688000pt;}
.wsf1{word-spacing:20.784000pt;}
.wscb{word-spacing:21.653333pt;}
._1a{margin-left:-18.613333pt;}
._19{margin-left:-17.653333pt;}
._f{margin-left:-16.160000pt;}
._15{margin-left:-14.826667pt;}
._6{margin-left:-13.493333pt;}
._4{margin-left:-11.840000pt;}
._0{margin-left:-10.378667pt;}
._c{margin-left:-9.408000pt;}
._7{margin-left:-8.106667pt;}
._5{margin-left:-6.933333pt;}
._b{margin-left:-5.866667pt;}
._d{margin-left:-4.960000pt;}
._3{margin-left:-3.946667pt;}
._8{margin-left:-2.933333pt;}
._2{margin-left:-1.440000pt;}
._e{width:1.066667pt;}
._9{width:1.973333pt;}
._17{width:3.072000pt;}
._1c{width:4.906667pt;}
._13{width:6.240000pt;}
._1e{width:46.320000pt;}
._18{width:57.013333pt;}
._1b{width:58.240000pt;}
._14{width:59.840000pt;}
._11{width:61.333333pt;}
._12{width:62.986667pt;}
._1d{width:63.997333pt;}
._10{width:748.426667pt;}
._1{width:778.080000pt;}
._16{width:1213.706667pt;}
._a{width:1243.360000pt;}
.fsa{font-size:5.333333pt;}
.fs0{font-size:32.000000pt;}
.fsb{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs2{font-size:41.066667pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:61.621733pt;}
.y139{bottom:68.168400pt;}
.y131{bottom:76.285733pt;}
.y138{bottom:82.832400pt;}
.y28{bottom:83.149600pt;}
.ya7{bottom:89.908400pt;}
.y83{bottom:89.909733pt;}
.y130{bottom:90.949733pt;}
.y58{bottom:95.149600pt;}
.yaf{bottom:95.243067pt;}
.y27{bottom:96.482933pt;}
.y137{bottom:97.496400pt;}
.yd2{bottom:100.576400pt;}
.yff{bottom:103.896267pt;}
.y12f{bottom:105.613733pt;}
.ya6{bottom:105.908400pt;}
.y82{bottom:105.909733pt;}
.y26{bottom:109.816267pt;}
.y57{bottom:111.149600pt;}
.yae{bottom:111.243067pt;}
.y136{bottom:112.160400pt;}
.yd1{bottom:115.240400pt;}
.yfe{bottom:118.560267pt;}
.y12e{bottom:120.277733pt;}
.ya5{bottom:121.908400pt;}
.y81{bottom:121.909733pt;}
.y25{bottom:123.149600pt;}
.y135{bottom:126.824400pt;}
.y56{bottom:127.149600pt;}
.yad{bottom:127.243067pt;}
.yfd{bottom:133.224267pt;}
.y12d{bottom:134.941733pt;}
.ya4{bottom:137.908400pt;}
.y80{bottom:137.909733pt;}
.y134{bottom:141.488400pt;}
.y55{bottom:143.149600pt;}
.yd0{bottom:145.912400pt;}
.yfc{bottom:147.888267pt;}
.y12c{bottom:149.605733pt;}
.ya3{bottom:153.908400pt;}
.y7f{bottom:153.909733pt;}
.y54{bottom:159.149600pt;}
.yac{bottom:159.251067pt;}
.ycf{bottom:160.576400pt;}
.y133{bottom:161.488400pt;}
.yfb{bottom:162.552267pt;}
.y24{bottom:163.202933pt;}
.y12b{bottom:164.269733pt;}
.ya2{bottom:169.908400pt;}
.y7e{bottom:169.909733pt;}
.yab{bottom:173.915067pt;}
.y53{bottom:175.149600pt;}
.yfa{bottom:177.216267pt;}
.y23{bottom:177.869600pt;}
.y12a{bottom:178.933733pt;}
.ya1{bottom:185.908400pt;}
.y7d{bottom:185.909733pt;}
.yaa{bottom:188.579067pt;}
.y52{bottom:191.149600pt;}
.yce{bottom:191.243067pt;}
.yf9{bottom:191.880267pt;}
.y129{bottom:193.597733pt;}
.ya0{bottom:201.908400pt;}
.y7c{bottom:201.909733pt;}
.ya9{bottom:203.243067pt;}
.yf8{bottom:206.544267pt;}
.y51{bottom:207.149600pt;}
.ycd{bottom:207.243067pt;}
.y128{bottom:208.261733pt;}
.y22{bottom:216.586800pt;}
.y9f{bottom:217.908400pt;}
.y7b{bottom:217.909733pt;}
.yf7{bottom:221.208267pt;}
.y127{bottom:222.925733pt;}
.y50{bottom:223.149600pt;}
.ycc{bottom:223.243067pt;}
.y21{bottom:231.250800pt;}
.y9e{bottom:233.908400pt;}
.y7a{bottom:233.909733pt;}
.yf6{bottom:235.872267pt;}
.y126{bottom:237.589733pt;}
.y4f{bottom:239.149600pt;}
.ycb{bottom:239.243067pt;}
.y20{bottom:245.914800pt;}
.y9d{bottom:249.908400pt;}
.y79{bottom:249.909733pt;}
.yf5{bottom:250.536267pt;}
.y125{bottom:252.253733pt;}
.y4e{bottom:255.149600pt;}
.yca{bottom:255.243067pt;}
.y1f{bottom:260.578800pt;}
.yf4{bottom:265.200267pt;}
.y9c{bottom:265.908400pt;}
.y78{bottom:265.909733pt;}
.y124{bottom:266.917733pt;}
.y4d{bottom:271.149600pt;}
.yc9{bottom:271.243067pt;}
.y1e{bottom:275.242800pt;}
.yf3{bottom:279.864267pt;}
.y123{bottom:281.581733pt;}
.y9b{bottom:281.908400pt;}
.y77{bottom:281.909733pt;}
.y4c{bottom:287.149600pt;}
.yc8{bottom:287.243067pt;}
.y1d{bottom:289.906800pt;}
.yf2{bottom:294.528267pt;}
.y122{bottom:296.245733pt;}
.y9a{bottom:297.908400pt;}
.y76{bottom:297.909733pt;}
.y4b{bottom:303.149600pt;}
.yc7{bottom:303.243067pt;}
.y1c{bottom:304.570800pt;}
.yf1{bottom:309.192267pt;}
.y121{bottom:310.909733pt;}
.y99{bottom:313.908400pt;}
.y75{bottom:313.909733pt;}
.y4a{bottom:319.149600pt;}
.y1b{bottom:319.234800pt;}
.yc6{bottom:319.243067pt;}
.yf0{bottom:323.856267pt;}
.y120{bottom:325.573733pt;}
.y98{bottom:329.908400pt;}
.y74{bottom:329.909733pt;}
.y1a{bottom:333.898800pt;}
.y49{bottom:335.149600pt;}
.yc5{bottom:335.243067pt;}
.yef{bottom:338.520267pt;}
.y11f{bottom:340.237733pt;}
.y97{bottom:345.908400pt;}
.y73{bottom:345.909733pt;}
.y19{bottom:348.562800pt;}
.y48{bottom:351.149600pt;}
.yc4{bottom:351.243067pt;}
.yee{bottom:353.184267pt;}
.ya8{bottom:353.909733pt;}
.y11e{bottom:354.901733pt;}
.y96{bottom:361.908400pt;}
.y72{bottom:361.909733pt;}
.y18{bottom:363.226800pt;}
.y47{bottom:367.149600pt;}
.yc3{bottom:367.243067pt;}
.yed{bottom:367.848267pt;}
.y11d{bottom:369.565733pt;}
.y17{bottom:377.890800pt;}
.y95{bottom:377.908400pt;}
.y71{bottom:377.909733pt;}
.yec{bottom:382.512267pt;}
.y46{bottom:383.149600pt;}
.yc2{bottom:383.243067pt;}
.y11c{bottom:384.229733pt;}
.y16{bottom:392.554800pt;}
.y94{bottom:393.908400pt;}
.y70{bottom:393.909733pt;}
.yeb{bottom:397.176267pt;}
.y11b{bottom:398.893733pt;}
.y45{bottom:399.149600pt;}
.yc1{bottom:399.243067pt;}
.yd4{bottom:401.909733pt;}
.y15{bottom:407.218800pt;}
.y93{bottom:409.908400pt;}
.y6f{bottom:409.909733pt;}
.yea{bottom:411.840267pt;}
.y11a{bottom:413.557733pt;}
.y44{bottom:415.149600pt;}
.yc0{bottom:415.243067pt;}
.y14{bottom:421.882800pt;}
.y92{bottom:425.908400pt;}
.y6e{bottom:425.909733pt;}
.ye9{bottom:426.504267pt;}
.y119{bottom:428.221733pt;}
.y43{bottom:431.149600pt;}
.ybf{bottom:431.243067pt;}
.y13{bottom:436.546800pt;}
.ye8{bottom:441.168267pt;}
.y91{bottom:441.908400pt;}
.y6d{bottom:441.909733pt;}
.y118{bottom:442.885733pt;}
.y42{bottom:447.149600pt;}
.ybe{bottom:447.243067pt;}
.y12{bottom:451.213467pt;}
.ye7{bottom:455.832267pt;}
.y117{bottom:457.549733pt;}
.y90{bottom:457.908400pt;}
.y6c{bottom:457.909733pt;}
.y41{bottom:463.149600pt;}
.ybd{bottom:463.243067pt;}
.ye6{bottom:470.496267pt;}
.y116{bottom:472.213733pt;}
.y8f{bottom:473.908400pt;}
.y6b{bottom:473.909733pt;}
.y40{bottom:479.149600pt;}
.ybc{bottom:479.243067pt;}
.ye5{bottom:485.160267pt;}
.y115{bottom:486.877733pt;}
.y8e{bottom:489.908400pt;}
.y6a{bottom:489.909733pt;}
.y3f{bottom:495.149600pt;}
.ybb{bottom:495.243067pt;}
.ye4{bottom:499.824267pt;}
.y114{bottom:501.541733pt;}
.y8d{bottom:505.908400pt;}
.y69{bottom:505.909733pt;}
.y3e{bottom:511.149600pt;}
.yba{bottom:511.243067pt;}
.ye3{bottom:514.488267pt;}
.y113{bottom:516.205733pt;}
.y11{bottom:517.880133pt;}
.y8c{bottom:521.908400pt;}
.y68{bottom:521.909733pt;}
.y3d{bottom:527.149600pt;}
.yb9{bottom:527.243067pt;}
.ye2{bottom:529.152267pt;}
.y112{bottom:530.869733pt;}
.y10{bottom:531.213467pt;}
.y8b{bottom:537.908400pt;}
.y67{bottom:537.909733pt;}
.y3c{bottom:543.149600pt;}
.yb8{bottom:543.243067pt;}
.ye1{bottom:543.816267pt;}
.y111{bottom:545.533733pt;}
.yd3{bottom:545.909733pt;}
.y8a{bottom:553.908400pt;}
.y66{bottom:553.909733pt;}
.y3b{bottom:559.149600pt;}
.yb7{bottom:559.243067pt;}
.y110{bottom:560.197733pt;}
.ye0{bottom:563.816267pt;}
.y89{bottom:569.908400pt;}
.y65{bottom:569.909733pt;}
.yf{bottom:573.880133pt;}
.y10f{bottom:574.861733pt;}
.y3a{bottom:575.149600pt;}
.yb6{bottom:575.243067pt;}
.y88{bottom:585.908400pt;}
.y64{bottom:585.909733pt;}
.ye{bottom:587.213467pt;}
.y10e{bottom:589.525733pt;}
.y39{bottom:591.149600pt;}
.yb5{bottom:591.243067pt;}
.ydf{bottom:595.826933pt;}
.y87{bottom:601.908400pt;}
.y63{bottom:601.909733pt;}
.y10d{bottom:604.189733pt;}
.y38{bottom:607.149600pt;}
.yb4{bottom:607.243067pt;}
.yde{bottom:610.490933pt;}
.y86{bottom:617.908400pt;}
.y10c{bottom:618.853733pt;}
.y37{bottom:623.149600pt;}
.ydd{bottom:625.154933pt;}
.y62{bottom:625.909733pt;}
.y10b{bottom:633.517733pt;}
.y85{bottom:633.908400pt;}
.y36{bottom:639.149600pt;}
.yb3{bottom:639.251067pt;}
.ydc{bottom:639.818933pt;}
.y10a{bottom:648.181733pt;}
.y84{bottom:649.908400pt;}
.yd{bottom:653.880133pt;}
.yb2{bottom:653.915067pt;}
.ydb{bottom:654.482933pt;}
.y35{bottom:655.149600pt;}
.y109{bottom:662.845733pt;}
.y8{bottom:664.594533pt;}
.y61{bottom:665.908400pt;}
.yb1{bottom:668.579067pt;}
.y34{bottom:671.149600pt;}
.yda{bottom:674.482933pt;}
.y7{bottom:675.925200pt;}
.y108{bottom:677.509733pt;}
.y1{bottom:677.653600pt;}
.yc{bottom:677.880133pt;}
.y60{bottom:681.908400pt;}
.yb0{bottom:683.243067pt;}
.y33{bottom:687.149600pt;}
.y6{bottom:687.255867pt;}
.y107{bottom:692.173733pt;}
.y5f{bottom:697.908400pt;}
.y5{bottom:698.586533pt;}
.yb{bottom:701.880133pt;}
.y32{bottom:703.149600pt;}
.yd9{bottom:706.482933pt;}
.y106{bottom:706.837733pt;}
.y5e{bottom:713.908400pt;}
.y31{bottom:719.149600pt;}
.y105{bottom:721.501733pt;}
.ya{bottom:725.880133pt;}
.yd8{bottom:726.482933pt;}
.y4{bottom:726.591867pt;}
.y5d{bottom:729.908400pt;}
.y30{bottom:735.149600pt;}
.y104{bottom:736.165733pt;}
.y3{bottom:737.922533pt;}
.y5c{bottom:745.908400pt;}
.y2{bottom:749.253200pt;}
.y103{bottom:750.829733pt;}
.y2f{bottom:751.149600pt;}
.yd7{bottom:758.485600pt;}
.y5b{bottom:761.908400pt;}
.y102{bottom:765.493733pt;}
.y2e{bottom:767.149600pt;}
.yd6{bottom:773.149600pt;}
.y5a{bottom:777.908400pt;}
.y2b{bottom:780.125200pt;}
.y101{bottom:780.157733pt;}
.y2d{bottom:791.149600pt;}
.yd5{bottom:793.148400pt;}
.y59{bottom:793.908400pt;}
.y100{bottom:794.821733pt;}
.y9{bottom:798.130267pt;}
.y2c{bottom:829.055067pt;}
.y2a{bottom:876.073333pt;}
.y29{bottom:877.406800pt;}
.hb{height:3.706667pt;}
.h2{height:24.384000pt;}
.h3{height:28.448000pt;}
.h7{height:32.512000pt;}
.he{height:33.360000pt;}
.ha{height:34.256228pt;}
.h9{height:36.576000pt;}
.hc{height:37.066667pt;}
.hd{height:39.026667pt;}
.h8{height:40.640000pt;}
.h4{height:42.416000pt;}
.h6{height:48.768000pt;}
.h5{height:65.024000pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.xb{left:5.669333pt;}
.xc{left:56.692933pt;}
.xa{left:64.252000pt;}
.xd{left:72.692933pt;}
.xe{left:80.252000pt;}
.x11{left:88.252000pt;}
.xf{left:104.692933pt;}
.x10{left:112.252000pt;}
.x9{left:261.466667pt;}
.x2{left:373.174933pt;}
.x1{left:375.490000pt;}
.x6{left:384.598400pt;}
.x7{left:391.775733pt;}
.x8{left:394.967733pt;}
.x5{left:428.661067pt;}
.x4{left:439.870933pt;}
.x3{left:512.680267pt;}
}




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