
    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_d1d88b0541512324088b9ce2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.085449;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_855fd0f515a1515b231fa748.woff')format("woff");}.ff2{font-family:ff2;line-height:1.085449;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_ba4af96f3be00626c81b2bb3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_f962c9dbe9e80bcb73c87489.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_b8c327195112a0643c21cae7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_baeeeb3caea1b9f75c342853.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_0c196c257b30c3d9b4f1d1e3.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_76b5059d7d25c55e26dad18c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.774902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8b926d65aa0c29c73d582586.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4987fc66de9a694d2dfda0b0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.vc{vertical-align:-19.560000px;}
.v2{vertical-align:-18.000000px;}
.v4{vertical-align:-5.880000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.880000px;}
.v7{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.v6{vertical-align:29.520000px;}
.v9{vertical-align:33.960000px;}
.vb{vertical-align:40.200000px;}
.va{vertical-align:42.360000px;}
.ls15{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.262200px;}
.ls2a{letter-spacing:-0.222600px;}
.ls2c{letter-spacing:-0.219000px;}
.ls1e{letter-spacing:-0.181200px;}
.ls28{letter-spacing:-0.152400px;}
.ls27{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.108000px;}
.ls29{letter-spacing:-0.091200px;}
.ls35{letter-spacing:-0.053280px;}
.ls2e{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls2d{letter-spacing:0.022320px;}
.ls1c{letter-spacing:0.043200px;}
.ls2f{letter-spacing:0.053280px;}
.ls31{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.109200px;}
.ls7{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.207360px;}
.ls2b{letter-spacing:0.208800px;}
.ls26{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.223800px;}
.ls9{letter-spacing:0.226200px;}
.ls33{letter-spacing:0.259800px;}
.ls32{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.262200px;}
.ls1b{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.305400px;}
.ls22{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.666720px;}
.ls2{letter-spacing:0.720000px;}
.ls34{letter-spacing:1.620000px;}
.ls23{letter-spacing:2.160000px;}
.lsf{letter-spacing:3.600000px;}
.lse{letter-spacing:15.840000px;}
.ls21{letter-spacing:16.560000px;}
.ls25{letter-spacing:18.720000px;}
.ls24{letter-spacing:18.900000px;}
.ls16{letter-spacing:19.560000px;}
.ls10{letter-spacing:28.800000px;}
.ls18{letter-spacing:195.840000px;}
.ls1a{letter-spacing:202.500000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws1f{word-spacing:-66.240000px;}
.ws5{word-spacing:-36.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws10{word-spacing:-16.822200px;}
.wsb{word-spacing:-16.669200px;}
.wsc{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.450800px;}
.ws1e{word-spacing:-16.407600px;}
.wse{word-spacing:-16.297800px;}
.wsd{word-spacing:-15.948000px;}
.ws20{word-spacing:-15.300000px;}
.ws2e{word-spacing:-15.199800px;}
.ws2d{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws31{word-spacing:-14.886720px;}
.ws2f{word-spacing:-14.580000px;}
.ws1{word-spacing:-13.860000px;}
.ws1c{word-spacing:-13.824000px;}
.ws18{word-spacing:-13.716000px;}
.ws1a{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.500000px;}
.wsa{word-spacing:-13.392000px;}
.ws1d{word-spacing:-13.374000px;}
.ws2{word-spacing:-13.140000px;}
.ws1b{word-spacing:-12.960000px;}
.ws17{word-spacing:-12.420000px;}
.ws14{word-spacing:-12.329400px;}
.ws15{word-spacing:-12.283800px;}
.ws12{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.878800px;}
.ws16{word-spacing:-11.790600px;}
.ws22{word-spacing:-10.934784px;}
.ws21{word-spacing:-10.902240px;}
.ws8{word-spacing:-10.666200px;}
.ws7{word-spacing:-10.440000px;}
.ws30{word-spacing:-9.720000px;}
.ws28{word-spacing:-9.646560px;}
.ws26{word-spacing:-9.470304px;}
.ws27{word-spacing:-9.437760px;}
.ws19{word-spacing:-9.000000px;}
.ws13{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
.ws25{word-spacing:0.245520px;}
.ws24{word-spacing:0.749880px;}
.ws2a{word-spacing:5.552160px;}
.ws29{word-spacing:9.234000px;}
.ws23{word-spacing:20.135424px;}
.ws2c{word-spacing:20.514000px;}
.ws2b{word-spacing:42.114000px;}
._e{margin-left:-4.362960px;}
._3{margin-left:-3.028080px;}
._1{margin-left:-1.038000px;}
._0{width:1.056000px;}
._4{width:2.593920px;}
._6{width:3.705120px;}
._7{width:4.740720px;}
._d{width:5.895360px;}
._5{width:7.310400px;}
._b{width:8.605440px;}
._a{width:9.903840px;}
._c{width:11.558400px;}
._9{width:12.609360px;}
._8{width:13.804560px;}
._11{width:15.500160px;}
._1f{width:17.030400px;}
._2{width:18.317040px;}
._12{width:20.269440px;}
._1c{width:21.322800px;}
._10{width:22.322880px;}
._19{width:23.336640px;}
._f{width:24.442560px;}
._14{width:26.283360px;}
._13{width:27.555840px;}
._15{width:28.921920px;}
._16{width:30.139200px;}
._1d{width:31.598400px;}
._1e{width:32.653920px;}
._17{width:34.643520px;}
._1b{width:38.166480px;}
._1a{width:39.757680px;}
._18{width:195.840000px;}
.fc1{color:transparent;}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:23.760000px;}
.fs9{font-size:30.240000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsc{font-size:41.904000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:48.384000px;}
.fs0{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:2.880000px;}
.y78{bottom:3.240000px;}
.y12b{bottom:3.960000px;}
.y108{bottom:4.500000px;}
.ycc{bottom:4.860000px;}
.yb1{bottom:5.040000px;}
.yc6{bottom:5.220000px;}
.yc3{bottom:5.580000px;}
.yaa{bottom:5.760000px;}
.yff{bottom:6.300000px;}
.yd9{bottom:6.660000px;}
.yf0{bottom:7.020000px;}
.y128{bottom:7.200000px;}
.yf9{bottom:7.380000px;}
.yb6{bottom:7.560000px;}
.yc8{bottom:8.100000px;}
.yd2{bottom:8.460000px;}
.yc1{bottom:8.640000px;}
.yf6{bottom:9.000000px;}
.ybc{bottom:9.180000px;}
.y13c{bottom:9.360000px;}
.ydf{bottom:9.540000px;}
.yad{bottom:9.900000px;}
.ycf{bottom:11.160000px;}
.yef{bottom:11.340000px;}
.y106{bottom:11.520000px;}
.ybf{bottom:11.700000px;}
.yfb{bottom:11.880000px;}
.yba{bottom:12.105000px;}
.yd6{bottom:12.780000px;}
.yb8{bottom:12.960000px;}
.y103{bottom:13.320000px;}
.yed{bottom:14.040000px;}
.yd4{bottom:14.400000px;}
.y155{bottom:14.475000px;}
.yd5{bottom:14.580000px;}
.yf4{bottom:15.300000px;}
.yf2{bottom:15.840000px;}
.yae{bottom:16.020000px;}
.ye6{bottom:16.965000px;}
.ycb{bottom:17.280000px;}
.yb0{bottom:17.460000px;}
.yc5{bottom:17.640000px;}
.yc2{bottom:18.000000px;}
.ybd{bottom:18.225000px;}
.y107{bottom:18.540000px;}
.ye4{bottom:18.585000px;}
.yd8{bottom:19.080000px;}
.yb5{bottom:19.980000px;}
.yfe{bottom:20.340000px;}
.yc7{bottom:20.520000px;}
.yd1{bottom:20.880000px;}
.yc0{bottom:21.060000px;}
.yf8{bottom:21.240000px;}
.ye1{bottom:21.285000px;}
.y105{bottom:21.420000px;}
.ybb{bottom:21.645000px;}
.yac{bottom:22.320000px;}
.yf5{bottom:22.860000px;}
.yeb{bottom:23.040000px;}
.yd7{bottom:23.220000px;}
.yce{bottom:23.580000px;}
.y101{bottom:23.940000px;}
.y163{bottom:23.970000px;}
.y144{bottom:24.510000px;}
.yee{bottom:25.200000px;}
.yb7{bottom:25.380000px;}
.yfa{bottom:25.920000px;}
.ye3{bottom:25.965000px;}
.y136{bottom:26.670000px;}
.yd3{bottom:26.820000px;}
.y102{bottom:27.360000px;}
.y140{bottom:29.130000px;}
.yf3{bottom:29.160000px;}
.yca{bottom:29.700000px;}
.yaf{bottom:29.880000px;}
.ye5{bottom:31.005000px;}
.y131{bottom:31.605000px;}
.y150{bottom:31.830000px;}
.ycd{bottom:32.400000px;}
.yfd{bottom:34.200000px;}
.yea{bottom:37.080000px;}
.y14c{bottom:37.440000px;}
.y141{bottom:37.590000px;}
.y100{bottom:37.980000px;}
.ye2{bottom:40.005000px;}
.y132{bottom:40.785000px;}
.y159{bottom:42.945000px;}
.y15d{bottom:45.615000px;}
.y142{bottom:46.050000px;}
.y14d{bottom:48.030000px;}
.y133{bottom:49.935000px;}
.y137{bottom:51.045000px;}
.y145{bottom:54.975000px;}
.y15a{bottom:55.440000px;}
.y151{bottom:58.470000px;}
.y14e{bottom:58.605000px;}
.y134{bottom:59.115000px;}
.y143{bottom:63.000000px;}
.y15b{bottom:66.630000px;}
.y15e{bottom:67.350000px;}
.y135{bottom:68.295000px;}
.y138{bottom:75.390000px;}
.y14f{bottom:79.770000px;}
.y152{bottom:85.110000px;}
.y146{bottom:85.425000px;}
.y15c{bottom:85.755000px;}
.y15f{bottom:89.535000px;}
.yb3{bottom:96.840000px;}
.y139{bottom:99.750000px;}
.y153{bottom:111.750000px;}
.y160{bottom:112.215000px;}
.ye8{bottom:113.070000px;}
.y147{bottom:115.890000px;}
.y13a{bottom:124.095000px;}
.y161{bottom:135.390000px;}
.y154{bottom:138.390000px;}
.y148{bottom:146.340000px;}
.y13b{bottom:148.425000px;}
.y162{bottom:159.045000px;}
.y7{bottom:184.500000px;}
.ydc{bottom:212.940000px;}
.y14a{bottom:213.195000px;}
.y32{bottom:213.480000px;}
.y60{bottom:214.740000px;}
.y7b{bottom:215.820000px;}
.y165{bottom:217.050000px;}
.ya1{bottom:218.340000px;}
.y12f{bottom:219.060000px;}
.y13e{bottom:220.110000px;}
.y157{bottom:220.830000px;}
.ya5{bottom:223.560000px;}
.y149{bottom:227.955000px;}
.y11d{bottom:228.630000px;}
.y31{bottom:230.070000px;}
.y164{bottom:231.810000px;}
.ydb{bottom:231.870000px;}
.y5f{bottom:233.850000px;}
.y7a{bottom:234.390000px;}
.y13d{bottom:234.870000px;}
.y156{bottom:235.590000px;}
.y12e{bottom:236.370000px;}
.ya0{bottom:237.270000px;}
.ya4{bottom:241.050000px;}
.y30{bottom:243.210000px;}
.y11c{bottom:247.530000px;}
.y79{bottom:250.410000px;}
.yda{bottom:250.950000px;}
.y5e{bottom:252.750000px;}
.y12d{bottom:253.650000px;}
.y9f{bottom:256.170000px;}
.y77{bottom:258.690000px;}
.ya3{bottom:262.470000px;}
.y2f{bottom:264.090000px;}
.y12c{bottom:267.510000px;}
.y11b{bottom:267.690000px;}
.yb2{bottom:268.410000px;}
.y5d{bottom:271.830000px;}
.y18e{bottom:274.710000px;}
.y9e{bottom:275.250000px;}
.y76{bottom:275.970000px;}
.ya2{bottom:279.570000px;}
.y2e{bottom:282.990000px;}
.y12a{bottom:284.790000px;}
.y14b{bottom:285.120000px;}
.y11a{bottom:286.770000px;}
.y158{bottom:288.900000px;}
.y5c{bottom:290.730000px;}
.y18d{bottom:291.990000px;}
.y9d{bottom:294.150000px;}
.y2d{bottom:302.070000px;}
.yd0{bottom:302.430000px;}
.y119{bottom:305.670000px;}
.y18c{bottom:309.270000px;}
.y5b{bottom:309.810000px;}
.y9c{bottom:313.230000px;}
.y2c{bottom:320.970000px;}
.y118{bottom:324.750000px;}
.y18b{bottom:326.550000px;}
.y5a{bottom:328.710000px;}
.y9b{bottom:332.130000px;}
.y2b{bottom:339.510000px;}
.yc9{bottom:340.230000px;}
.y117{bottom:343.650000px;}
.y18a{bottom:343.830000px;}
.y59{bottom:347.610000px;}
.y9a{bottom:351.030000px;}
.y2a{bottom:356.790000px;}
.y189{bottom:361.110000px;}
.y116{bottom:363.810000px;}
.y58{bottom:366.690000px;}
.y99{bottom:370.110000px;}
.y29{bottom:372.090000px;}
.y188{bottom:378.210000px;}
.y28{bottom:380.910000px;}
.y115{bottom:382.710000px;}
.yc4{bottom:383.430000px;}
.y57{bottom:385.590000px;}
.y98{bottom:389.010000px;}
.y187{bottom:395.490000px;}
.y27{bottom:398.190000px;}
.y114{bottom:401.610000px;}
.y56{bottom:404.670000px;}
.y97{bottom:408.090000px;}
.y186{bottom:412.770000px;}
.ybe{bottom:414.750000px;}
.y26{bottom:415.470000px;}
.y113{bottom:420.690000px;}
.y55{bottom:423.570000px;}
.y96{bottom:426.990000px;}
.y185{bottom:430.050000px;}
.y25{bottom:432.570000px;}
.y112{bottom:439.590000px;}
.y54{bottom:442.470000px;}
.y95{bottom:446.070000px;}
.yb9{bottom:446.610000px;}
.y184{bottom:447.330000px;}
.y75{bottom:449.490000px;}
.y24{bottom:449.850000px;}
.y111{bottom:459.795000px;}
.y53{bottom:461.595000px;}
.y183{bottom:464.655000px;}
.y94{bottom:465.015000px;}
.y23{bottom:467.175000px;}
.y74{bottom:468.435000px;}
.y110{bottom:478.695000px;}
.yb4{bottom:479.235000px;}
.y52{bottom:480.495000px;}
.y182{bottom:481.755000px;}
.y93{bottom:483.915000px;}
.y22{bottom:484.455000px;}
.y73{bottom:487.515000px;}
.y10f{bottom:497.595000px;}
.y181{bottom:499.035000px;}
.y51{bottom:499.575000px;}
.y21{bottom:501.735000px;}
.y92{bottom:502.995000px;}
.y72{bottom:506.415000px;}
.yab{bottom:515.415000px;}
.y180{bottom:516.315000px;}
.y10e{bottom:517.755000px;}
.y50{bottom:518.475000px;}
.y20{bottom:519.015000px;}
.y91{bottom:521.895000px;}
.y71{bottom:525.315000px;}
.y17f{bottom:533.595000px;}
.y1f{bottom:536.115000px;}
.y10d{bottom:536.655000px;}
.y4f{bottom:537.375000px;}
.y90{bottom:540.975000px;}
.y129{bottom:541.875000px;}
.y70{bottom:544.395000px;}
.y17e{bottom:550.875000px;}
.y1e{bottom:553.395000px;}
.y10c{bottom:555.735000px;}
.y4e{bottom:556.455000px;}
.ya9{bottom:557.535000px;}
.y127{bottom:559.155000px;}
.y130{bottom:559.260000px;}
.y8f{bottom:559.875000px;}
.y6f{bottom:563.295000px;}
.y13f{bottom:567.000000px;}
.y17d{bottom:567.975000px;}
.y1d{bottom:570.675000px;}
.y10b{bottom:574.635000px;}
.y4d{bottom:575.355000px;}
.y8e{bottom:578.775000px;}
.ya8{bottom:580.215000px;}
.y6e{bottom:582.375000px;}
.y17c{bottom:585.255000px;}
.y1c{bottom:587.955000px;}
.y10a{bottom:593.715000px;}
.y4c{bottom:594.435000px;}
.ya7{bottom:597.315000px;}
.y8d{bottom:597.855000px;}
.y6d{bottom:601.275000px;}
.y17b{bottom:602.535000px;}
.y1b{bottom:605.595000px;}
.y109{bottom:612.615000px;}
.y4b{bottom:613.335000px;}
.ya6{bottom:614.595000px;}
.y8c{bottom:616.755000px;}
.y17a{bottom:619.815000px;}
.y6c{bottom:620.175000px;}
.y1a{bottom:623.775000px;}
.ye7{bottom:630.255000px;}
.y4a{bottom:632.235000px;}
.y8b{bottom:635.835000px;}
.y179{bottom:637.095000px;}
.y6b{bottom:639.255000px;}
.y19{bottom:639.435000px;}
.y49{bottom:651.315000px;}
.y178{bottom:654.375000px;}
.y8a{bottom:654.735000px;}
.y18{bottom:655.635000px;}
.y6a{bottom:658.155000px;}
.y104{bottom:662.655000px;}
.y1a0{bottom:665.355000px;}
.y48{bottom:670.215000px;}
.y177{bottom:671.475000px;}
.y89{bottom:673.635000px;}
.y17{bottom:674.535000px;}
.y69{bottom:677.235000px;}
.y19f{bottom:685.335000px;}
.y176{bottom:688.755000px;}
.y47{bottom:689.325000px;}
.y88{bottom:692.745000px;}
.y16{bottom:692.925000px;}
.y68{bottom:696.165000px;}
.yfc{bottom:700.665000px;}
.y19e{bottom:702.645000px;}
.y175{bottom:706.065000px;}
.y46{bottom:708.225000px;}
.y15{bottom:708.405000px;}
.y87{bottom:711.645000px;}
.y67{bottom:715.065000px;}
.y19d{bottom:719.925000px;}
.y174{bottom:723.345000px;}
.y14{bottom:724.605000px;}
.y45{bottom:727.125000px;}
.y86{bottom:730.725000px;}
.y66{bottom:734.145000px;}
.y19c{bottom:737.205000px;}
.y173{bottom:740.625000px;}
.y13{bottom:743.145000px;}
.y44{bottom:746.205000px;}
.y85{bottom:749.625000px;}
.yf7{bottom:750.525000px;}
.y65{bottom:753.045000px;}
.y19b{bottom:754.305000px;}
.y172{bottom:757.905000px;}
.y12{bottom:762.045000px;}
.y43{bottom:765.105000px;}
.y84{bottom:768.525000px;}
.y19a{bottom:771.585000px;}
.y64{bottom:772.125000px;}
.y171{bottom:775.005000px;}
.y11{bottom:780.225000px;}
.y42{bottom:784.185000px;}
.y83{bottom:787.605000px;}
.yf1{bottom:788.505000px;}
.y199{bottom:788.865000px;}
.y63{bottom:791.025000px;}
.y170{bottom:792.285000px;}
.y10{bottom:796.425000px;}
.y41{bottom:803.085000px;}
.y198{bottom:806.145000px;}
.y82{bottom:806.505000px;}
.y62{bottom:809.565000px;}
.yf{bottom:815.685000px;}
.y126{bottom:819.825000px;}
.y40{bottom:822.165000px;}
.y197{bottom:823.425000px;}
.y81{bottom:825.585000px;}
.y61{bottom:826.125000px;}
.y16f{bottom:826.845000px;}
.yec{bottom:829.725000px;}
.ye{bottom:836.385000px;}
.y125{bottom:838.905000px;}
.y196{bottom:840.705000px;}
.y3f{bottom:841.065000px;}
.y16e{bottom:844.125000px;}
.y80{bottom:844.485000px;}
.yd{bottom:856.905000px;}
.y124{bottom:857.805000px;}
.y3e{bottom:859.965000px;}
.y16d{bottom:861.405000px;}
.y7f{bottom:863.385000px;}
.ye9{bottom:866.985000px;}
.y195{bottom:875.085000px;}
.yc{bottom:875.805000px;}
.y123{bottom:876.705000px;}
.y16c{bottom:878.505000px;}
.y3d{bottom:879.045000px;}
.y7e{bottom:882.465000px;}
.y194{bottom:892.365000px;}
.yb{bottom:894.885000px;}
.y122{bottom:895.605000px;}
.y16b{bottom:895.785000px;}
.y3c{bottom:897.945000px;}
.y7d{bottom:901.005000px;}
.y193{bottom:909.645000px;}
.y16a{bottom:913.065000px;}
.ya{bottom:913.785000px;}
.y121{bottom:915.765000px;}
.ye0{bottom:916.125000px;}
.y3b{bottom:917.025000px;}
.y7c{bottom:918.285000px;}
.y192{bottom:926.970000px;}
.y169{bottom:930.390000px;}
.y9{bottom:932.730000px;}
.y120{bottom:934.890000px;}
.y3a{bottom:935.970000px;}
.y191{bottom:944.070000px;}
.y168{bottom:947.670000px;}
.y8{bottom:951.090000px;}
.y11f{bottom:953.790000px;}
.y39{bottom:954.870000px;}
.y190{bottom:961.350000px;}
.y167{bottom:964.770000px;}
.y6{bottom:966.570000px;}
.yde{bottom:968.190000px;}
.y11e{bottom:972.690000px;}
.y38{bottom:973.950000px;}
.y18f{bottom:978.630000px;}
.y166{bottom:981.330000px;}
.y5{bottom:982.050000px;}
.y37{bottom:992.850000px;}
.ydd{bottom:995.910000px;}
.y4{bottom:997.530000px;}
.y36{bottom:1011.930000px;}
.y3{bottom:1013.190000px;}
.y2{bottom:1028.670000px;}
.y33{bottom:1029.210000px;}
.y34{bottom:1041.270000px;}
.y1{bottom:1044.150000px;}
.hc{height:15.480000px;}
.h13{height:17.100000px;}
.h11{height:17.280000px;}
.h9{height:20.407148px;}
.h21{height:22.140000px;}
.ha{height:28.379883px;}
.h1d{height:30.600000px;}
.hb{height:30.919922px;}
.h1c{height:31.140000px;}
.h2e{height:31.680000px;}
.h1b{height:31.716000px;}
.h20{height:33.300000px;}
.he{height:34.036523px;}
.h19{height:35.460000px;}
.h29{height:36.540000px;}
.h1f{height:36.900000px;}
.h2b{height:37.260000px;}
.h2d{height:37.296000px;}
.h23{height:38.100586px;}
.h1a{height:39.147891px;}
.h17{height:39.760312px;}
.h16{height:39.960000px;}
.h2a{height:40.500000px;}
.h15{height:41.432695px;}
.h27{height:42.164638px;}
.hf{height:42.164648px;}
.h1e{height:42.480000px;}
.h32{height:42.759141px;}
.h37{height:42.906586px;}
.h25{height:43.400391px;}
.h24{height:43.822266px;}
.h2f{height:44.507812px;}
.h2{height:46.379883px;}
.h4{height:46.736719px;}
.h7{height:47.875781px;}
.h28{height:48.240000px;}
.h2c{height:49.140000px;}
.h14{height:49.255313px;}
.h33{height:49.394180px;}
.h34{height:49.541625px;}
.h5{height:50.800781px;}
.h8{height:51.327070px;}
.h22{height:51.336000px;}
.h39{height:55.291992px;}
.h35{height:55.439437px;}
.h6{height:56.892656px;}
.hd{height:59.627109px;}
.h3{height:61.839844px;}
.h38{height:76.719141px;}
.h3d{height:82.959141px;}
.h3b{height:85.119141px;}
.h10{height:169.740000px;}
.h12{height:178.230000px;}
.h18{height:246.270000px;}
.h36{height:249.300000px;}
.h3c{height:253.080000px;}
.h3a{height:256.860000px;}
.h31{height:257.040000px;}
.h30{height:257.070000px;}
.h26{height:284.970000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:6.120000px;}
.w16{width:27.180000px;}
.wf{width:29.340000px;}
.w13{width:41.760000px;}
.w14{width:52.200000px;}
.wb{width:52.380000px;}
.wa{width:52.416000px;}
.wd{width:63.180000px;}
.we{width:72.936000px;}
.wc{width:73.620000px;}
.w10{width:73.800000px;}
.w15{width:82.476000px;}
.w17{width:86.436000px;}
.w9{width:103.860000px;}
.w12{width:114.336000px;}
.w1b{width:228.060000px;}
.w19{width:236.055000px;}
.w1a{width:255.240000px;}
.w18{width:255.270000px;}
.w5{width:257.475000px;}
.w7{width:259.275000px;}
.w6{width:272.370000px;}
.w4{width:274.170000px;}
.w11{width:527.145000px;}
.w8{width:528.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:2.160000px;}
.x44{left:3.600000px;}
.x3b{left:5.220000px;}
.x3a{left:6.480000px;}
.x31{left:8.280000px;}
.x39{left:10.260000px;}
.x30{left:11.340000px;}
.x2e{left:12.780000px;}
.x36{left:13.860000px;}
.x47{left:14.940000px;}
.x2f{left:16.020000px;}
.x2c{left:18.225000px;}
.x3d{left:19.980000px;}
.x29{left:21.240000px;}
.x3f{left:22.500000px;}
.x35{left:24.120000px;}
.x3c{left:25.200000px;}
.x33{left:26.640000px;}
.x42{left:30.240000px;}
.x60{left:31.500000px;}
.x45{left:33.300000px;}
.x52{left:35.205000px;}
.x5c{left:39.450000px;}
.x54{left:45.615000px;}
.x59{left:47.130000px;}
.x61{left:50.145000px;}
.x2a{left:51.480000px;}
.x53{left:56.445000px;}
.x5d{left:63.435000px;}
.x4b{left:109.290000px;}
.x1c{left:119.910000px;}
.x1b{left:128.745000px;}
.x5e{left:136.440000px;}
.x56{left:139.065000px;}
.x4e{left:141.660000px;}
.x5f{left:147.630000px;}
.x57{left:150.270000px;}
.x4f{left:153.750000px;}
.x5a{left:157.830000px;}
.x50{left:165.885000px;}
.x58{left:169.770000px;}
.x5b{left:171.825000px;}
.x51{left:177.990000px;}
.x7{left:180.749987px;}
.x27{left:182.370000px;}
.x1d{left:185.609987px;}
.x14{left:186.869987px;}
.x26{left:193.529987px;}
.x23{left:196.049987px;}
.x48{left:200.910000px;}
.x12{left:201.989987px;}
.x3e{left:204.345000px;}
.x1e{left:207.209987px;}
.x43{left:210.990000px;}
.x38{left:212.430000px;}
.x28{left:216.945000px;}
.xe{left:219.989987px;}
.xa{left:227.369987px;}
.x1f{left:232.589987px;}
.x11{left:233.849987px;}
.xd{left:236.549987px;}
.x24{left:250.589987px;}
.x4a{left:253.875000px;}
.x22{left:257.835000px;}
.xf{left:262.289987px;}
.x1a{left:266.835000px;}
.xb{left:268.229987px;}
.x20{left:271.305000px;}
.x4d{left:280.649987px;}
.x18{left:284.805000px;}
.x2b{left:286.950000px;}
.x4c{left:288.975000px;}
.x1{left:290.369987px;}
.x40{left:298.155000px;}
.x3{left:310.574987px;}
.x17{left:319.754987px;}
.x16{left:327.494987px;}
.x2d{left:340.095000px;}
.x6{left:349.634987px;}
.x4{left:351.794987px;}
.x8{left:358.994987px;}
.x15{left:393.374987px;}
.x62{left:395.714987px;}
.x13{left:396.794987px;}
.x63{left:414.794987px;}
.x2{left:416.414987px;}
.x25{left:422.534987px;}
.x5{left:430.094987px;}
.xc{left:437.114987px;}
.x9{left:446.474987px;}
.x21{left:453.135000px;}
.x19{left:454.935000px;}
.x49{left:456.195000px;}
.x10{left:462.494987px;}
.x55{left:464.040000px;}
.x32{left:499.605000px;}
.x34{left:573.945000px;}
.x41{left:627.765000px;}
.x37{left:637.845000px;}
@media print{
.vc{vertical-align:-17.386667pt;}
.v2{vertical-align:-16.000000pt;}
.v4{vertical-align:-5.226667pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.226667pt;}
.v7{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.v6{vertical-align:26.240000pt;}
.v9{vertical-align:30.186667pt;}
.vb{vertical-align:35.733333pt;}
.va{vertical-align:37.653333pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls2a{letter-spacing:-0.197867pt;}
.ls2c{letter-spacing:-0.194667pt;}
.ls1e{letter-spacing:-0.161067pt;}
.ls28{letter-spacing:-0.135467pt;}
.ls27{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls29{letter-spacing:-0.081067pt;}
.ls35{letter-spacing:-0.047360pt;}
.ls2e{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls2d{letter-spacing:0.019840pt;}
.ls1c{letter-spacing:0.038400pt;}
.ls2f{letter-spacing:0.047360pt;}
.ls31{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.097067pt;}
.ls7{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.184320pt;}
.ls2b{letter-spacing:0.185600pt;}
.ls26{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.198933pt;}
.ls9{letter-spacing:0.201067pt;}
.ls33{letter-spacing:0.230933pt;}
.ls32{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.233067pt;}
.ls1b{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.271467pt;}
.ls22{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.592640pt;}
.ls2{letter-spacing:0.640000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls23{letter-spacing:1.920000pt;}
.lsf{letter-spacing:3.200000pt;}
.lse{letter-spacing:14.080000pt;}
.ls21{letter-spacing:14.720000pt;}
.ls25{letter-spacing:16.640000pt;}
.ls24{letter-spacing:16.800000pt;}
.ls16{letter-spacing:17.386667pt;}
.ls10{letter-spacing:25.600000pt;}
.ls18{letter-spacing:174.080000pt;}
.ls1a{letter-spacing:180.000000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws5{word-spacing:-32.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws10{word-spacing:-14.953067pt;}
.wsb{word-spacing:-14.817067pt;}
.wsc{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.622933pt;}
.ws1e{word-spacing:-14.584533pt;}
.wse{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.176000pt;}
.ws20{word-spacing:-13.600000pt;}
.ws2e{word-spacing:-13.510933pt;}
.ws2d{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws31{word-spacing:-13.232640pt;}
.ws2f{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.320000pt;}
.ws1c{word-spacing:-12.288000pt;}
.ws18{word-spacing:-12.192000pt;}
.ws1a{word-spacing:-12.160000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws1d{word-spacing:-11.888000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-11.520000pt;}
.ws17{word-spacing:-11.040000pt;}
.ws14{word-spacing:-10.959467pt;}
.ws15{word-spacing:-10.918933pt;}
.ws12{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.558933pt;}
.ws16{word-spacing:-10.480533pt;}
.ws22{word-spacing:-9.719808pt;}
.ws21{word-spacing:-9.690880pt;}
.ws8{word-spacing:-9.481067pt;}
.ws7{word-spacing:-9.280000pt;}
.ws30{word-spacing:-8.640000pt;}
.ws28{word-spacing:-8.574720pt;}
.ws26{word-spacing:-8.418048pt;}
.ws27{word-spacing:-8.389120pt;}
.ws19{word-spacing:-8.000000pt;}
.ws13{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
.ws25{word-spacing:0.218240pt;}
.ws24{word-spacing:0.666560pt;}
.ws2a{word-spacing:4.935253pt;}
.ws29{word-spacing:8.208000pt;}
.ws23{word-spacing:17.898155pt;}
.ws2c{word-spacing:18.234667pt;}
.ws2b{word-spacing:37.434667pt;}
._e{margin-left:-3.878187pt;}
._3{margin-left:-2.691627pt;}
._1{margin-left:-0.922667pt;}
._0{width:0.938667pt;}
._4{width:2.305707pt;}
._6{width:3.293440pt;}
._7{width:4.213973pt;}
._d{width:5.240320pt;}
._5{width:6.498133pt;}
._b{width:7.649280pt;}
._a{width:8.803413pt;}
._c{width:10.274133pt;}
._9{width:11.208320pt;}
._8{width:12.270720pt;}
._11{width:13.777920pt;}
._1f{width:15.138133pt;}
._2{width:16.281813pt;}
._12{width:18.017280pt;}
._1c{width:18.953600pt;}
._10{width:19.842560pt;}
._19{width:20.743680pt;}
._f{width:21.726720pt;}
._14{width:23.362987pt;}
._13{width:24.494080pt;}
._15{width:25.708373pt;}
._16{width:26.790400pt;}
._1d{width:28.087467pt;}
._1e{width:29.025707pt;}
._17{width:30.794240pt;}
._1b{width:33.925760pt;}
._1a{width:35.340160pt;}
._18{width:174.080000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsc{font-size:37.248000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:43.008000pt;}
.fs0{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:2.560000pt;}
.y78{bottom:2.880000pt;}
.y12b{bottom:3.520000pt;}
.y108{bottom:4.000000pt;}
.ycc{bottom:4.320000pt;}
.yb1{bottom:4.480000pt;}
.yc6{bottom:4.640000pt;}
.yc3{bottom:4.960000pt;}
.yaa{bottom:5.120000pt;}
.yff{bottom:5.600000pt;}
.yd9{bottom:5.920000pt;}
.yf0{bottom:6.240000pt;}
.y128{bottom:6.400000pt;}
.yf9{bottom:6.560000pt;}
.yb6{bottom:6.720000pt;}
.yc8{bottom:7.200000pt;}
.yd2{bottom:7.520000pt;}
.yc1{bottom:7.680000pt;}
.yf6{bottom:8.000000pt;}
.ybc{bottom:8.160000pt;}
.y13c{bottom:8.320000pt;}
.ydf{bottom:8.480000pt;}
.yad{bottom:8.800000pt;}
.ycf{bottom:9.920000pt;}
.yef{bottom:10.080000pt;}
.y106{bottom:10.240000pt;}
.ybf{bottom:10.400000pt;}
.yfb{bottom:10.560000pt;}
.yba{bottom:10.760000pt;}
.yd6{bottom:11.360000pt;}
.yb8{bottom:11.520000pt;}
.y103{bottom:11.840000pt;}
.yed{bottom:12.480000pt;}
.yd4{bottom:12.800000pt;}
.y155{bottom:12.866667pt;}
.yd5{bottom:12.960000pt;}
.yf4{bottom:13.600000pt;}
.yf2{bottom:14.080000pt;}
.yae{bottom:14.240000pt;}
.ye6{bottom:15.080000pt;}
.ycb{bottom:15.360000pt;}
.yb0{bottom:15.520000pt;}
.yc5{bottom:15.680000pt;}
.yc2{bottom:16.000000pt;}
.ybd{bottom:16.200000pt;}
.y107{bottom:16.480000pt;}
.ye4{bottom:16.520000pt;}
.yd8{bottom:16.960000pt;}
.yb5{bottom:17.760000pt;}
.yfe{bottom:18.080000pt;}
.yc7{bottom:18.240000pt;}
.yd1{bottom:18.560000pt;}
.yc0{bottom:18.720000pt;}
.yf8{bottom:18.880000pt;}
.ye1{bottom:18.920000pt;}
.y105{bottom:19.040000pt;}
.ybb{bottom:19.240000pt;}
.yac{bottom:19.840000pt;}
.yf5{bottom:20.320000pt;}
.yeb{bottom:20.480000pt;}
.yd7{bottom:20.640000pt;}
.yce{bottom:20.960000pt;}
.y101{bottom:21.280000pt;}
.y163{bottom:21.306667pt;}
.y144{bottom:21.786667pt;}
.yee{bottom:22.400000pt;}
.yb7{bottom:22.560000pt;}
.yfa{bottom:23.040000pt;}
.ye3{bottom:23.080000pt;}
.y136{bottom:23.706667pt;}
.yd3{bottom:23.840000pt;}
.y102{bottom:24.320000pt;}
.y140{bottom:25.893333pt;}
.yf3{bottom:25.920000pt;}
.yca{bottom:26.400000pt;}
.yaf{bottom:26.560000pt;}
.ye5{bottom:27.560000pt;}
.y131{bottom:28.093333pt;}
.y150{bottom:28.293333pt;}
.ycd{bottom:28.800000pt;}
.yfd{bottom:30.400000pt;}
.yea{bottom:32.960000pt;}
.y14c{bottom:33.280000pt;}
.y141{bottom:33.413333pt;}
.y100{bottom:33.760000pt;}
.ye2{bottom:35.560000pt;}
.y132{bottom:36.253333pt;}
.y159{bottom:38.173333pt;}
.y15d{bottom:40.546667pt;}
.y142{bottom:40.933333pt;}
.y14d{bottom:42.693333pt;}
.y133{bottom:44.386667pt;}
.y137{bottom:45.373333pt;}
.y145{bottom:48.866667pt;}
.y15a{bottom:49.280000pt;}
.y151{bottom:51.973333pt;}
.y14e{bottom:52.093333pt;}
.y134{bottom:52.546667pt;}
.y143{bottom:56.000000pt;}
.y15b{bottom:59.226667pt;}
.y15e{bottom:59.866667pt;}
.y135{bottom:60.706667pt;}
.y138{bottom:67.013333pt;}
.y14f{bottom:70.906667pt;}
.y152{bottom:75.653333pt;}
.y146{bottom:75.933333pt;}
.y15c{bottom:76.226667pt;}
.y15f{bottom:79.586667pt;}
.yb3{bottom:86.080000pt;}
.y139{bottom:88.666667pt;}
.y153{bottom:99.333333pt;}
.y160{bottom:99.746667pt;}
.ye8{bottom:100.506667pt;}
.y147{bottom:103.013333pt;}
.y13a{bottom:110.306667pt;}
.y161{bottom:120.346667pt;}
.y154{bottom:123.013333pt;}
.y148{bottom:130.080000pt;}
.y13b{bottom:131.933333pt;}
.y162{bottom:141.373333pt;}
.y7{bottom:164.000000pt;}
.ydc{bottom:189.280000pt;}
.y14a{bottom:189.506667pt;}
.y32{bottom:189.760000pt;}
.y60{bottom:190.880000pt;}
.y7b{bottom:191.840000pt;}
.y165{bottom:192.933333pt;}
.ya1{bottom:194.080000pt;}
.y12f{bottom:194.720000pt;}
.y13e{bottom:195.653333pt;}
.y157{bottom:196.293333pt;}
.ya5{bottom:198.720000pt;}
.y149{bottom:202.626667pt;}
.y11d{bottom:203.226667pt;}
.y31{bottom:204.506667pt;}
.y164{bottom:206.053333pt;}
.ydb{bottom:206.106667pt;}
.y5f{bottom:207.866667pt;}
.y7a{bottom:208.346667pt;}
.y13d{bottom:208.773333pt;}
.y156{bottom:209.413333pt;}
.y12e{bottom:210.106667pt;}
.ya0{bottom:210.906667pt;}
.ya4{bottom:214.266667pt;}
.y30{bottom:216.186667pt;}
.y11c{bottom:220.026667pt;}
.y79{bottom:222.586667pt;}
.yda{bottom:223.066667pt;}
.y5e{bottom:224.666667pt;}
.y12d{bottom:225.466667pt;}
.y9f{bottom:227.706667pt;}
.y77{bottom:229.946667pt;}
.ya3{bottom:233.306667pt;}
.y2f{bottom:234.746667pt;}
.y12c{bottom:237.786667pt;}
.y11b{bottom:237.946667pt;}
.yb2{bottom:238.586667pt;}
.y5d{bottom:241.626667pt;}
.y18e{bottom:244.186667pt;}
.y9e{bottom:244.666667pt;}
.y76{bottom:245.306667pt;}
.ya2{bottom:248.506667pt;}
.y2e{bottom:251.546667pt;}
.y12a{bottom:253.146667pt;}
.y14b{bottom:253.440000pt;}
.y11a{bottom:254.906667pt;}
.y158{bottom:256.800000pt;}
.y5c{bottom:258.426667pt;}
.y18d{bottom:259.546667pt;}
.y9d{bottom:261.466667pt;}
.y2d{bottom:268.506667pt;}
.yd0{bottom:268.826667pt;}
.y119{bottom:271.706667pt;}
.y18c{bottom:274.906667pt;}
.y5b{bottom:275.386667pt;}
.y9c{bottom:278.426667pt;}
.y2c{bottom:285.306667pt;}
.y118{bottom:288.666667pt;}
.y18b{bottom:290.266667pt;}
.y5a{bottom:292.186667pt;}
.y9b{bottom:295.226667pt;}
.y2b{bottom:301.786667pt;}
.yc9{bottom:302.426667pt;}
.y117{bottom:305.466667pt;}
.y18a{bottom:305.626667pt;}
.y59{bottom:308.986667pt;}
.y9a{bottom:312.026667pt;}
.y2a{bottom:317.146667pt;}
.y189{bottom:320.986667pt;}
.y116{bottom:323.386667pt;}
.y58{bottom:325.946667pt;}
.y99{bottom:328.986667pt;}
.y29{bottom:330.746667pt;}
.y188{bottom:336.186667pt;}
.y28{bottom:338.586667pt;}
.y115{bottom:340.186667pt;}
.yc4{bottom:340.826667pt;}
.y57{bottom:342.746667pt;}
.y98{bottom:345.786667pt;}
.y187{bottom:351.546667pt;}
.y27{bottom:353.946667pt;}
.y114{bottom:356.986667pt;}
.y56{bottom:359.706667pt;}
.y97{bottom:362.746667pt;}
.y186{bottom:366.906667pt;}
.ybe{bottom:368.666667pt;}
.y26{bottom:369.306667pt;}
.y113{bottom:373.946667pt;}
.y55{bottom:376.506667pt;}
.y96{bottom:379.546667pt;}
.y185{bottom:382.266667pt;}
.y25{bottom:384.506667pt;}
.y112{bottom:390.746667pt;}
.y54{bottom:393.306667pt;}
.y95{bottom:396.506667pt;}
.yb9{bottom:396.986667pt;}
.y184{bottom:397.626667pt;}
.y75{bottom:399.546667pt;}
.y24{bottom:399.866667pt;}
.y111{bottom:408.706667pt;}
.y53{bottom:410.306667pt;}
.y183{bottom:413.026667pt;}
.y94{bottom:413.346667pt;}
.y23{bottom:415.266667pt;}
.y74{bottom:416.386667pt;}
.y110{bottom:425.506667pt;}
.yb4{bottom:425.986667pt;}
.y52{bottom:427.106667pt;}
.y182{bottom:428.226667pt;}
.y93{bottom:430.146667pt;}
.y22{bottom:430.626667pt;}
.y73{bottom:433.346667pt;}
.y10f{bottom:442.306667pt;}
.y181{bottom:443.586667pt;}
.y51{bottom:444.066667pt;}
.y21{bottom:445.986667pt;}
.y92{bottom:447.106667pt;}
.y72{bottom:450.146667pt;}
.yab{bottom:458.146667pt;}
.y180{bottom:458.946667pt;}
.y10e{bottom:460.226667pt;}
.y50{bottom:460.866667pt;}
.y20{bottom:461.346667pt;}
.y91{bottom:463.906667pt;}
.y71{bottom:466.946667pt;}
.y17f{bottom:474.306667pt;}
.y1f{bottom:476.546667pt;}
.y10d{bottom:477.026667pt;}
.y4f{bottom:477.666667pt;}
.y90{bottom:480.866667pt;}
.y129{bottom:481.666667pt;}
.y70{bottom:483.906667pt;}
.y17e{bottom:489.666667pt;}
.y1e{bottom:491.906667pt;}
.y10c{bottom:493.986667pt;}
.y4e{bottom:494.626667pt;}
.ya9{bottom:495.586667pt;}
.y127{bottom:497.026667pt;}
.y130{bottom:497.120000pt;}
.y8f{bottom:497.666667pt;}
.y6f{bottom:500.706667pt;}
.y13f{bottom:504.000000pt;}
.y17d{bottom:504.866667pt;}
.y1d{bottom:507.266667pt;}
.y10b{bottom:510.786667pt;}
.y4d{bottom:511.426667pt;}
.y8e{bottom:514.466667pt;}
.ya8{bottom:515.746667pt;}
.y6e{bottom:517.666667pt;}
.y17c{bottom:520.226667pt;}
.y1c{bottom:522.626667pt;}
.y10a{bottom:527.746667pt;}
.y4c{bottom:528.386667pt;}
.ya7{bottom:530.946667pt;}
.y8d{bottom:531.426667pt;}
.y6d{bottom:534.466667pt;}
.y17b{bottom:535.586667pt;}
.y1b{bottom:538.306667pt;}
.y109{bottom:544.546667pt;}
.y4b{bottom:545.186667pt;}
.ya6{bottom:546.306667pt;}
.y8c{bottom:548.226667pt;}
.y17a{bottom:550.946667pt;}
.y6c{bottom:551.266667pt;}
.y1a{bottom:554.466667pt;}
.ye7{bottom:560.226667pt;}
.y4a{bottom:561.986667pt;}
.y8b{bottom:565.186667pt;}
.y179{bottom:566.306667pt;}
.y6b{bottom:568.226667pt;}
.y19{bottom:568.386667pt;}
.y49{bottom:578.946667pt;}
.y178{bottom:581.666667pt;}
.y8a{bottom:581.986667pt;}
.y18{bottom:582.786667pt;}
.y6a{bottom:585.026667pt;}
.y104{bottom:589.026667pt;}
.y1a0{bottom:591.426667pt;}
.y48{bottom:595.746667pt;}
.y177{bottom:596.866667pt;}
.y89{bottom:598.786667pt;}
.y17{bottom:599.586667pt;}
.y69{bottom:601.986667pt;}
.y19f{bottom:609.186667pt;}
.y176{bottom:612.226667pt;}
.y47{bottom:612.733333pt;}
.y88{bottom:615.773333pt;}
.y16{bottom:615.933333pt;}
.y68{bottom:618.813333pt;}
.yfc{bottom:622.813333pt;}
.y19e{bottom:624.573333pt;}
.y175{bottom:627.613333pt;}
.y46{bottom:629.533333pt;}
.y15{bottom:629.693333pt;}
.y87{bottom:632.573333pt;}
.y67{bottom:635.613333pt;}
.y19d{bottom:639.933333pt;}
.y174{bottom:642.973333pt;}
.y14{bottom:644.093333pt;}
.y45{bottom:646.333333pt;}
.y86{bottom:649.533333pt;}
.y66{bottom:652.573333pt;}
.y19c{bottom:655.293333pt;}
.y173{bottom:658.333333pt;}
.y13{bottom:660.573333pt;}
.y44{bottom:663.293333pt;}
.y85{bottom:666.333333pt;}
.yf7{bottom:667.133333pt;}
.y65{bottom:669.373333pt;}
.y19b{bottom:670.493333pt;}
.y172{bottom:673.693333pt;}
.y12{bottom:677.373333pt;}
.y43{bottom:680.093333pt;}
.y84{bottom:683.133333pt;}
.y19a{bottom:685.853333pt;}
.y64{bottom:686.333333pt;}
.y171{bottom:688.893333pt;}
.y11{bottom:693.533333pt;}
.y42{bottom:697.053333pt;}
.y83{bottom:700.093333pt;}
.yf1{bottom:700.893333pt;}
.y199{bottom:701.213333pt;}
.y63{bottom:703.133333pt;}
.y170{bottom:704.253333pt;}
.y10{bottom:707.933333pt;}
.y41{bottom:713.853333pt;}
.y198{bottom:716.573333pt;}
.y82{bottom:716.893333pt;}
.y62{bottom:719.613333pt;}
.yf{bottom:725.053333pt;}
.y126{bottom:728.733333pt;}
.y40{bottom:730.813333pt;}
.y197{bottom:731.933333pt;}
.y81{bottom:733.853333pt;}
.y61{bottom:734.333333pt;}
.y16f{bottom:734.973333pt;}
.yec{bottom:737.533333pt;}
.ye{bottom:743.453333pt;}
.y125{bottom:745.693333pt;}
.y196{bottom:747.293333pt;}
.y3f{bottom:747.613333pt;}
.y16e{bottom:750.333333pt;}
.y80{bottom:750.653333pt;}
.yd{bottom:761.693333pt;}
.y124{bottom:762.493333pt;}
.y3e{bottom:764.413333pt;}
.y16d{bottom:765.693333pt;}
.y7f{bottom:767.453333pt;}
.ye9{bottom:770.653333pt;}
.y195{bottom:777.853333pt;}
.yc{bottom:778.493333pt;}
.y123{bottom:779.293333pt;}
.y16c{bottom:780.893333pt;}
.y3d{bottom:781.373333pt;}
.y7e{bottom:784.413333pt;}
.y194{bottom:793.213333pt;}
.yb{bottom:795.453333pt;}
.y122{bottom:796.093333pt;}
.y16b{bottom:796.253333pt;}
.y3c{bottom:798.173333pt;}
.y7d{bottom:800.893333pt;}
.y193{bottom:808.573333pt;}
.y16a{bottom:811.613333pt;}
.ya{bottom:812.253333pt;}
.y121{bottom:814.013333pt;}
.ye0{bottom:814.333333pt;}
.y3b{bottom:815.133333pt;}
.y7c{bottom:816.253333pt;}
.y192{bottom:823.973333pt;}
.y169{bottom:827.013333pt;}
.y9{bottom:829.093333pt;}
.y120{bottom:831.013333pt;}
.y3a{bottom:831.973333pt;}
.y191{bottom:839.173333pt;}
.y168{bottom:842.373333pt;}
.y8{bottom:845.413333pt;}
.y11f{bottom:847.813333pt;}
.y39{bottom:848.773333pt;}
.y190{bottom:854.533333pt;}
.y167{bottom:857.573333pt;}
.y6{bottom:859.173333pt;}
.yde{bottom:860.613333pt;}
.y11e{bottom:864.613333pt;}
.y38{bottom:865.733333pt;}
.y18f{bottom:869.893333pt;}
.y166{bottom:872.293333pt;}
.y5{bottom:872.933333pt;}
.y37{bottom:882.533333pt;}
.ydd{bottom:885.253333pt;}
.y4{bottom:886.693333pt;}
.y36{bottom:899.493333pt;}
.y3{bottom:900.613333pt;}
.y2{bottom:914.373333pt;}
.y33{bottom:914.853333pt;}
.y34{bottom:925.573333pt;}
.y1{bottom:928.133333pt;}
.hc{height:13.760000pt;}
.h13{height:15.200000pt;}
.h11{height:15.360000pt;}
.h9{height:18.139687pt;}
.h21{height:19.680000pt;}
.ha{height:25.226562pt;}
.h1d{height:27.200000pt;}
.hb{height:27.484375pt;}
.h1c{height:27.680000pt;}
.h2e{height:28.160000pt;}
.h1b{height:28.192000pt;}
.h20{height:29.600000pt;}
.he{height:30.254687pt;}
.h19{height:31.520000pt;}
.h29{height:32.480000pt;}
.h1f{height:32.800000pt;}
.h2b{height:33.120000pt;}
.h2d{height:33.152000pt;}
.h23{height:33.867188pt;}
.h1a{height:34.798125pt;}
.h17{height:35.342500pt;}
.h16{height:35.520000pt;}
.h2a{height:36.000000pt;}
.h15{height:36.829062pt;}
.h27{height:37.479678pt;}
.hf{height:37.479688pt;}
.h1e{height:37.760000pt;}
.h32{height:38.008125pt;}
.h37{height:38.139187pt;}
.h25{height:38.578125pt;}
.h24{height:38.953125pt;}
.h2f{height:39.562500pt;}
.h2{height:41.226562pt;}
.h4{height:41.543750pt;}
.h7{height:42.556250pt;}
.h28{height:42.880000pt;}
.h2c{height:43.680000pt;}
.h14{height:43.782500pt;}
.h33{height:43.905937pt;}
.h34{height:44.037000pt;}
.h5{height:45.156250pt;}
.h8{height:45.624063pt;}
.h22{height:45.632000pt;}
.h39{height:49.148438pt;}
.h35{height:49.279500pt;}
.h6{height:50.571250pt;}
.hd{height:53.001875pt;}
.h3{height:54.968750pt;}
.h38{height:68.194792pt;}
.h3d{height:73.741458pt;}
.h3b{height:75.661458pt;}
.h10{height:150.880000pt;}
.h12{height:158.426667pt;}
.h18{height:218.906667pt;}
.h36{height:221.600000pt;}
.h3c{height:224.960000pt;}
.h3a{height:228.320000pt;}
.h31{height:228.480000pt;}
.h30{height:228.506667pt;}
.h26{height:253.306667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:5.440000pt;}
.w16{width:24.160000pt;}
.wf{width:26.080000pt;}
.w13{width:37.120000pt;}
.w14{width:46.400000pt;}
.wb{width:46.560000pt;}
.wa{width:46.592000pt;}
.wd{width:56.160000pt;}
.we{width:64.832000pt;}
.wc{width:65.440000pt;}
.w10{width:65.600000pt;}
.w15{width:73.312000pt;}
.w17{width:76.832000pt;}
.w9{width:92.320000pt;}
.w12{width:101.632000pt;}
.w1b{width:202.720000pt;}
.w19{width:209.826667pt;}
.w1a{width:226.880000pt;}
.w18{width:226.906667pt;}
.w5{width:228.866667pt;}
.w7{width:230.466667pt;}
.w6{width:242.106667pt;}
.w4{width:243.706667pt;}
.w11{width:468.573333pt;}
.w8{width:469.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:1.920000pt;}
.x44{left:3.200000pt;}
.x3b{left:4.640000pt;}
.x3a{left:5.760000pt;}
.x31{left:7.360000pt;}
.x39{left:9.120000pt;}
.x30{left:10.080000pt;}
.x2e{left:11.360000pt;}
.x36{left:12.320000pt;}
.x47{left:13.280000pt;}
.x2f{left:14.240000pt;}
.x2c{left:16.200000pt;}
.x3d{left:17.760000pt;}
.x29{left:18.880000pt;}
.x3f{left:20.000000pt;}
.x35{left:21.440000pt;}
.x3c{left:22.400000pt;}
.x33{left:23.680000pt;}
.x42{left:26.880000pt;}
.x60{left:28.000000pt;}
.x45{left:29.600000pt;}
.x52{left:31.293333pt;}
.x5c{left:35.066667pt;}
.x54{left:40.546667pt;}
.x59{left:41.893333pt;}
.x61{left:44.573333pt;}
.x2a{left:45.760000pt;}
.x53{left:50.173333pt;}
.x5d{left:56.386667pt;}
.x4b{left:97.146667pt;}
.x1c{left:106.586667pt;}
.x1b{left:114.440000pt;}
.x5e{left:121.280000pt;}
.x56{left:123.613333pt;}
.x4e{left:125.920000pt;}
.x5f{left:131.226667pt;}
.x57{left:133.573333pt;}
.x4f{left:136.666667pt;}
.x5a{left:140.293333pt;}
.x50{left:147.453333pt;}
.x58{left:150.906667pt;}
.x5b{left:152.733333pt;}
.x51{left:158.213333pt;}
.x7{left:160.666655pt;}
.x27{left:162.106667pt;}
.x1d{left:164.986655pt;}
.x14{left:166.106655pt;}
.x26{left:172.026655pt;}
.x23{left:174.266655pt;}
.x48{left:178.586667pt;}
.x12{left:179.546655pt;}
.x3e{left:181.640000pt;}
.x1e{left:184.186655pt;}
.x43{left:187.546667pt;}
.x38{left:188.826667pt;}
.x28{left:192.840000pt;}
.xe{left:195.546655pt;}
.xa{left:202.106655pt;}
.x1f{left:206.746655pt;}
.x11{left:207.866655pt;}
.xd{left:210.266655pt;}
.x24{left:222.746655pt;}
.x4a{left:225.666667pt;}
.x22{left:229.186667pt;}
.xf{left:233.146655pt;}
.x1a{left:237.186667pt;}
.xb{left:238.426655pt;}
.x20{left:241.160000pt;}
.x4d{left:249.466655pt;}
.x18{left:253.160000pt;}
.x2b{left:255.066667pt;}
.x4c{left:256.866667pt;}
.x1{left:258.106655pt;}
.x40{left:265.026667pt;}
.x3{left:276.066655pt;}
.x17{left:284.226655pt;}
.x16{left:291.106655pt;}
.x2d{left:302.306667pt;}
.x6{left:310.786655pt;}
.x4{left:312.706655pt;}
.x8{left:319.106655pt;}
.x15{left:349.666655pt;}
.x62{left:351.746655pt;}
.x13{left:352.706655pt;}
.x63{left:368.706655pt;}
.x2{left:370.146655pt;}
.x25{left:375.586655pt;}
.x5{left:382.306655pt;}
.xc{left:388.546655pt;}
.x9{left:396.866655pt;}
.x21{left:402.786667pt;}
.x19{left:404.386667pt;}
.x49{left:405.506667pt;}
.x10{left:411.106655pt;}
.x55{left:412.480000pt;}
.x32{left:444.093333pt;}
.x34{left:510.173333pt;}
.x41{left:558.013333pt;}
.x37{left:566.973333pt;}
}




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