
    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_5441feda9b51a5a92e2f7e55.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ab31ee1e9583f7030fb172ce.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fdb518749e7813aed6927b25.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_aa0420b63964d2214fd69583.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_ee9479e84592294ab0f95492.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_da96974c70ca467c72c61d93.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_8da7a7b0d5236253e118805e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_93dc5ecd127a9fec4d9bf320.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926270;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);}
.v9{vertical-align:-26.640000px;}
.vb{vertical-align:-25.200000px;}
.v2{vertical-align:-23.760000px;}
.va{vertical-align:-14.400000px;}
.v7{vertical-align:-12.960000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.960000px;}
.v8{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:44.640000px;}
.v4{vertical-align:50.400000px;}
.ls7{letter-spacing:-2.724000px;}
.ls3e{letter-spacing:-1.572000px;}
.lsa{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.852000px;}
.ls39{letter-spacing:-0.834000px;}
.ls19{letter-spacing:-0.768000px;}
.lse{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.590400px;}
.ls13{letter-spacing:-0.587400px;}
.ls1c{letter-spacing:-0.561600px;}
.ls3d{letter-spacing:-0.535800px;}
.ls43{letter-spacing:-0.472200px;}
.ls30{letter-spacing:-0.463800px;}
.ls26{letter-spacing:-0.366000px;}
.ls1e{letter-spacing:-0.348600px;}
.ls20{letter-spacing:-0.322800px;}
.ls14{letter-spacing:-0.310800px;}
.ls5{letter-spacing:-0.309600px;}
.ls21{letter-spacing:-0.291000px;}
.ls2d{letter-spacing:-0.285000px;}
.ls38{letter-spacing:-0.244800px;}
.ls45{letter-spacing:-0.227400px;}
.ls9{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.198000px;}
.lsc{letter-spacing:-0.193200px;}
.ls15{letter-spacing:-0.164400px;}
.ls27{letter-spacing:-0.135600px;}
.ls11{letter-spacing:-0.132600px;}
.ls12{letter-spacing:-0.115200px;}
.lsd{letter-spacing:-0.048960px;}
.ls44{letter-spacing:-0.040320px;}
.ls25{letter-spacing:-0.025920px;}
.ls6{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.020160px;}
.ls29{letter-spacing:0.089280px;}
.ls2c{letter-spacing:0.089400px;}
.ls16{letter-spacing:0.115200px;}
.ls24{letter-spacing:0.118200px;}
.ls1f{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.132480px;}
.ls3a{letter-spacing:0.132600px;}
.ls46{letter-spacing:0.141000px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls3f{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.158400px;}
.ls2{letter-spacing:0.216000px;}
.ls42{letter-spacing:0.244800px;}
.ls8{letter-spacing:0.247800px;}
.ls3{letter-spacing:0.252480px;}
.ls4{letter-spacing:0.256200px;}
.ls22{letter-spacing:0.269760px;}
.ls2f{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.291000px;}
.lsb{letter-spacing:0.371400px;}
.ls1b{letter-spacing:0.391800px;}
.ls37{letter-spacing:0.869760px;}
.ls41{letter-spacing:1.745280px;}
.ls36{letter-spacing:3.029040px;}
.ls32{letter-spacing:4.306320px;}
.ls28{letter-spacing:4.469760px;}
.ls31{letter-spacing:5.040000px;}
.ls10{letter-spacing:5.909760px;}
.ls2b{letter-spacing:7.349760px;}
.ls2a{letter-spacing:9.360000px;}
.ls35{letter-spacing:16.709040px;}
.ls34{letter-spacing:18.198720px;}
.ls33{letter-spacing:23.026320px;}
.ls40{letter-spacing:34.865280px;}
.ls3b{letter-spacing:36.305280px;}
.ls23{letter-spacing:69.401280px;}
.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;}
}
.ws22{word-spacing:-66.240000px;}
.ws23{word-spacing:-65.955000px;}
.ws2b{word-spacing:-51.799680px;}
.ws2d{word-spacing:-51.696960px;}
.ws2c{word-spacing:-51.641280px;}
.ws21{word-spacing:-46.235520px;}
.ws3{word-spacing:-29.777760px;}
.ws2{word-spacing:-27.053760px;}
.ws27{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.488000px;}
.ws28{word-spacing:-16.056000px;}
.ws15{word-spacing:-15.362040px;}
.ws7{word-spacing:-15.341640px;}
.ws11{word-spacing:-15.261240px;}
.ws0{word-spacing:-15.226440px;}
.ws30{word-spacing:-15.215040px;}
.ws20{word-spacing:-15.128640px;}
.ws34{word-spacing:-15.111240px;}
.ws1a{word-spacing:-15.099840px;}
.ws1c{word-spacing:-15.088440px;}
.ws10{word-spacing:-15.085440px;}
.ws24{word-spacing:-15.059640px;}
.ws2f{word-spacing:-14.990400px;}
.ws5{word-spacing:-14.970240px;}
.ws1d{word-spacing:-14.944320px;}
.ws32{word-spacing:-14.929920px;}
.ws9{word-spacing:-14.921280px;}
.wsb{word-spacing:-14.855040px;}
.wsd{word-spacing:-14.837640px;}
.ws1f{word-spacing:-14.834640px;}
.wsf{word-spacing:-14.805840px;}
.ws8{word-spacing:-14.777040px;}
.ws6{word-spacing:-14.754240px;}
.ws33{word-spacing:-14.742840px;}
.wse{word-spacing:-14.659440px;}
.ws1b{word-spacing:-14.647440px;}
.ws18{word-spacing:-14.621640px;}
.ws1e{word-spacing:-14.604240px;}
.ws29{word-spacing:-14.506440px;}
.ws16{word-spacing:-14.408640px;}
.wsc{word-spacing:-14.382840px;}
.ws17{word-spacing:-14.379840px;}
.ws13{word-spacing:-14.202240px;}
.ws2e{word-spacing:-14.136240px;}
.ws31{word-spacing:-14.118240px;}
.ws14{word-spacing:-14.034240px;}
.ws19{word-spacing:-12.204000px;}
.ws25{word-spacing:-12.006000px;}
.ws4{word-spacing:-9.437760px;}
.ws2a{word-spacing:-9.192960px;}
.ws1{word-spacing:-9.128160px;}
.ws26{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._7{margin-left:-12.318000px;}
._6{margin-left:-8.863200px;}
._18{margin-left:-7.660320px;}
._5{margin-left:-6.324480px;}
._4{margin-left:-4.875120px;}
._3{margin-left:-3.689280px;}
._2{margin-left:-2.635200px;}
._1{margin-left:-1.192320px;}
._0{width:1.301520px;}
._c{width:2.427120px;}
._d{width:4.415040px;}
._b{width:5.571840px;}
._a{width:6.690240px;}
._e{width:8.280000px;}
._8{width:9.724800px;}
._9{width:11.044320px;}
._f{width:12.753600px;}
._16{width:13.872960px;}
._15{width:16.073760px;}
._1a{width:17.091360px;}
._14{width:18.660960px;}
._12{width:19.724160px;}
._13{width:21.779040px;}
._1b{width:23.058240px;}
._17{width:35.478720px;}
._19{width:165.635760px;}
._11{width:455.189760px;}
._10{width:1035.638880px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:131.760000px;}
.y81{bottom:-17.640000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:0.540000px;}
.y9c{bottom:3.060000px;}
.ye3{bottom:3.240000px;}
.y7f{bottom:4.140000px;}
.y9a{bottom:4.320000px;}
.ye6{bottom:4.680000px;}
.yb8{bottom:5.145000px;}
.yd6{bottom:5.220000px;}
.yd3{bottom:5.400000px;}
.y7b{bottom:5.580000px;}
.y78{bottom:5.760000px;}
.y37{bottom:5.940000px;}
.yeb{bottom:5.985000px;}
.y3a{bottom:6.300000px;}
.y5a{bottom:6.480000px;}
.yd0{bottom:6.660000px;}
.yde{bottom:6.840000px;}
.y84{bottom:7.020000px;}
.yec{bottom:7.065000px;}
.y7a{bottom:7.380000px;}
.y57{bottom:9.180000px;}
.ye0{bottom:10.725000px;}
.yba{bottom:11.700000px;}
.ybc{bottom:15.120000px;}
.ye5{bottom:17.100000px;}
.y58{bottom:19.260000px;}
.yda{bottom:24.120000px;}
.yd8{bottom:25.380000px;}
.ydd{bottom:26.640000px;}
.y109{bottom:27.000000px;}
.y56{bottom:29.340000px;}
.y107{bottom:38.160000px;}
.y106{bottom:39.600000px;}
.y108{bottom:57.060000px;}
.y7{bottom:57.600000px;}
.y6{bottom:77.760000px;}
.y10e{bottom:117.900000px;}
.y7d{bottom:120.780000px;}
.yce{bottom:123.300000px;}
.yb6{bottom:128.340000px;}
.y158{bottom:128.700000px;}
.y10d{bottom:139.680000px;}
.y139{bottom:143.820000px;}
.y7c{bottom:144.900000px;}
.ycd{bottom:145.080000px;}
.y98{bottom:146.700000px;}
.y157{bottom:148.680000px;}
.yb5{bottom:150.120000px;}
.y2c{bottom:153.930000px;}
.y10c{bottom:161.490000px;}
.y138{bottom:165.630000px;}
.ycc{bottom:166.710000px;}
.y79{bottom:169.230000px;}
.y5c{bottom:172.650000px;}
.y97{bottom:173.370000px;}
.y2b{bottom:175.710000px;}
.y156{bottom:180.930000px;}
.y99{bottom:181.470000px;}
.y10b{bottom:183.090000px;}
.y9b{bottom:183.990000px;}
.y137{bottom:187.410000px;}
.ycb{bottom:188.490000px;}
.y5b{bottom:189.210000px;}
.y77{bottom:197.130000px;}
.y2a{bottom:197.490000px;}
.y155{bottom:201.090000px;}
.y10a{bottom:204.870000px;}
.yb4{bottom:205.590000px;}
.y136{bottom:209.010000px;}
.y59{bottom:213.150000px;}
.y29{bottom:219.090000px;}
.y105{bottom:220.350000px;}
.y154{bottom:221.250000px;}
.yca{bottom:222.330000px;}
.yb3{bottom:227.370000px;}
.y135{bottom:230.790000px;}
.y55{bottom:237.630000px;}
.y76{bottom:238.350000px;}
.y28{bottom:240.870000px;}
.yc9{bottom:243.930000px;}
.yb2{bottom:249.150000px;}
.y134{bottom:252.570000px;}
.y153{bottom:253.290000px;}
.y75{bottom:264.990000px;}
.yc8{bottom:265.710000px;}
.yb1{bottom:270.930000px;}
.y152{bottom:273.450000px;}
.y133{bottom:274.350000px;}
.y27{bottom:274.710000px;}
.yc7{bottom:287.490000px;}
.yb0{bottom:292.530000px;}
.y132{bottom:295.950000px;}
.y26{bottom:296.310000px;}
.y151{bottom:305.670000px;}
.y54{bottom:307.650000px;}
.yc6{bottom:309.270000px;}
.yaf{bottom:314.310000px;}
.y25{bottom:318.090000px;}
.y150{bottom:325.830000px;}
.y104{bottom:328.890000px;}
.y53{bottom:329.250000px;}
.y131{bottom:329.790000px;}
.yc5{bottom:330.870000px;}
.y24{bottom:339.870000px;}
.y14f{bottom:345.990000px;}
.yae{bottom:348.150000px;}
.y52{bottom:351.030000px;}
.y103{bottom:351.750000px;}
.yc4{bottom:360.210000px;}
.y130{bottom:360.930000px;}
.y23{bottom:361.650000px;}
.yad{bottom:369.750000px;}
.y51{bottom:372.810000px;}
.y102{bottom:373.350000px;}
.y14e{bottom:378.030000px;}
.y22{bottom:383.250000px;}
.yac{bottom:391.530000px;}
.yc3{bottom:393.150000px;}
.y50{bottom:394.590000px;}
.y101{bottom:395.130000px;}
.y12f{bottom:402.195000px;}
.y21{bottom:405.075000px;}
.y14d{bottom:410.295000px;}
.yab{bottom:413.355000px;}
.y4f{bottom:416.235000px;}
.y96{bottom:416.415000px;}
.y100{bottom:416.955000px;}
.y12e{bottom:423.975000px;}
.y20{bottom:426.855000px;}
.y14c{bottom:430.455000px;}
.yc2{bottom:431.895000px;}
.yaa{bottom:435.135000px;}
.y4e{bottom:438.015000px;}
.y95{bottom:438.195000px;}
.yf6{bottom:441.795000px;}
.y12d{bottom:445.755000px;}
.yff{bottom:446.295000px;}
.yc1{bottom:448.275000px;}
.y14b{bottom:450.615000px;}
.y1f{bottom:458.175000px;}
.y4d{bottom:459.795000px;}
.y94{bottom:459.975000px;}
.ya9{bottom:464.475000px;}
.y12c{bottom:467.355000px;}
.yf5{bottom:468.255000px;}
.yc0{bottom:474.915000px;}
.y93{bottom:481.575000px;}
.y14a{bottom:482.655000px;}
.ydb{bottom:483.375000px;}
.ye1{bottom:487.515000px;}
.y12b{bottom:489.135000px;}
.y4c{bottom:493.455000px;}
.y1e{bottom:497.775000px;}
.ya8{bottom:499.755000px;}
.y149{bottom:502.815000px;}
.y12a{bottom:510.915000px;}
.y7e{bottom:513.615000px;}
.y80{bottom:514.875000px;}
.y4b{bottom:515.235000px;}
.y92{bottom:515.415000px;}
.y1d{bottom:517.755000px;}
.ya7{bottom:521.535000px;}
.y148{bottom:522.975000px;}
.y129{bottom:532.695000px;}
.y4a{bottom:537.015000px;}
.yfe{bottom:537.195000px;}
.yd9{bottom:537.375000px;}
.y1c{bottom:537.915000px;}
.y128{bottom:554.475000px;}
.ya6{bottom:555.195000px;}
.ydf{bottom:557.100000px;}
.y1b{bottom:558.075000px;}
.y49{bottom:558.795000px;}
.y74{bottom:559.875000px;}
.y91{bottom:570.855000px;}
.y147{bottom:575.175000px;}
.y127{bottom:576.075000px;}
.y1a{bottom:578.235000px;}
.y48{bottom:580.395000px;}
.yfd{bottom:580.575000px;}
.y73{bottom:581.655000px;}
.ydc{bottom:584.355000px;}
.ya5{bottom:589.035000px;}
.y90{bottom:592.635000px;}
.y126{bottom:597.855000px;}
.y19{bottom:598.395000px;}
.y47{bottom:602.175000px;}
.yfc{bottom:602.355000px;}
.y72{bottom:603.435000px;}
.y146{bottom:607.395000px;}
.ya4{bottom:610.635000px;}
.y8f{bottom:614.235000px;}
.y18{bottom:618.555000px;}
.y125{bottom:619.635000px;}
.y46{bottom:623.955000px;}
.yfb{bottom:624.135000px;}
.y71{bottom:625.035000px;}
.y145{bottom:627.555000px;}
.ya3{bottom:632.415000px;}
.y8e{bottom:636.015000px;}
.y17{bottom:638.715000px;}
.y124{bottom:641.415000px;}
.y45{bottom:645.735000px;}
.y70{bottom:646.815000px;}
.ya2{bottom:654.225000px;}
.y16{bottom:658.905000px;}
.y144{bottom:659.625000px;}
.y123{bottom:663.045000px;}
.y44{bottom:667.365000px;}
.yfa{bottom:667.545000px;}
.y6f{bottom:668.625000px;}
.y8d{bottom:669.885000px;}
.y169{bottom:673.665000px;}
.ya1{bottom:676.005000px;}
.y15{bottom:679.065000px;}
.y143{bottom:679.785000px;}
.y122{bottom:684.825000px;}
.y43{bottom:689.145000px;}
.yf9{bottom:689.325000px;}
.y6e{bottom:690.405000px;}
.y8c{bottom:691.485000px;}
.yf4{bottom:691.665000px;}
.ya0{bottom:697.605000px;}
.y14{bottom:699.225000px;}
.y168{bottom:707.325000px;}
.y42{bottom:710.925000px;}
.y6d{bottom:712.005000px;}
.y8b{bottom:713.265000px;}
.yf3{bottom:715.605000px;}
.y121{bottom:718.485000px;}
.yf8{bottom:723.525000px;}
.y167{bottom:729.105000px;}
.y9f{bottom:731.805000px;}
.y41{bottom:732.705000px;}
.y6c{bottom:733.785000px;}
.y13{bottom:737.205000px;}
.yf2{bottom:738.105000px;}
.y120{bottom:740.265000px;}
.y8a{bottom:742.605000px;}
.yf7{bottom:750.165000px;}
.y166{bottom:750.705000px;}
.yd7{bottom:751.065000px;}
.y142{bottom:752.325000px;}
.y40{bottom:754.305000px;}
.y12{bottom:757.365000px;}
.yb7{bottom:757.800000px;}
.y9e{bottom:758.445000px;}
.yf1{bottom:760.605000px;}
.y11f{bottom:762.045000px;}
.y6b{bottom:763.125000px;}
.yd5{bottom:769.965000px;}
.y141{bottom:774.105000px;}
.y89{bottom:778.065000px;}
.y3f{bottom:783.645000px;}
.y11e{bottom:783.825000px;}
.yef{bottom:784.545000px;}
.y140{bottom:795.705000px;}
.y6a{bottom:795.885000px;}
.y88{bottom:799.665000px;}
.y11d{bottom:805.425000px;}
.y165{bottom:806.325000px;}
.yd1{bottom:806.865000px;}
.yf0{bottom:807.045000px;}
.y11{bottom:810.465000px;}
.y13f{bottom:817.485000px;}
.y3e{bottom:819.105000px;}
.y87{bottom:821.445000px;}
.y11c{bottom:827.205000px;}
.y164{bottom:827.925000px;}
.y10{bottom:830.625000px;}
.y69{bottom:837.285000px;}
.y13e{bottom:839.265000px;}
.y3d{bottom:840.885000px;}
.ye2{bottom:845.205000px;}
.y11b{bottom:848.985000px;}
.y163{bottom:849.705000px;}
.yee{bottom:850.605000px;}
.yf{bottom:850.785000px;}
.y86{bottom:855.645000px;}
.y68{bottom:859.065000px;}
.y3c{bottom:862.485000px;}
.ye{bottom:865.005000px;}
.y11a{bottom:870.765000px;}
.y162{bottom:871.485000px;}
.y13d{bottom:872.925000px;}
.yed{bottom:874.545000px;}
.ycf{bottom:878.865000px;}
.y85{bottom:879.585000px;}
.y67{bottom:880.665000px;}
.yd{bottom:885.165000px;}
.y119{bottom:892.545000px;}
.y161{bottom:893.265000px;}
.y13c{bottom:894.705000px;}
.y3b{bottom:896.685000px;}
.yea{bottom:897.045000px;}
.y66{bottom:902.490000px;}
.y83{bottom:903.030000px;}
.yc{bottom:911.310000px;}
.y118{bottom:914.190000px;}
.yd2{bottom:915.090000px;}
.ye9{bottom:919.590000px;}
.y39{bottom:920.850000px;}
.y65{bottom:924.270000px;}
.y160{bottom:924.450000px;}
.y13b{bottom:925.890000px;}
.ye8{bottom:942.090000px;}
.yb{bottom:943.530000px;}
.y38{bottom:945.150000px;}
.y64{bottom:946.050000px;}
.y117{bottom:948.390000px;}
.yd4{bottom:949.470000px;}
.y15f{bottom:964.050000px;}
.ye7{bottom:964.590000px;}
.y13a{bottom:967.290000px;}
.y36{bottom:967.650000px;}
.y116{bottom:972.510000px;}
.y15e{bottom:984.210000px;}
.ye4{bottom:988.710000px;}
.y9d{bottom:988.890000px;}
.y63{bottom:989.430000px;}
.ya{bottom:994.830000px;}
.y115{bottom:996.090000px;}
.ybf{bottom:999.870000px;}
.y35{bottom:1010.670000px;}
.y62{bottom:1011.210000px;}
.y15d{bottom:1016.430000px;}
.y114{bottom:1018.590000px;}
.ybe{bottom:1021.650000px;}
.y34{bottom:1032.450000px;}
.y61{bottom:1032.990000px;}
.y9{bottom:1035.150000px;}
.y15c{bottom:1036.590000px;}
.y113{bottom:1041.090000px;}
.ybd{bottom:1044.510000px;}
.y33{bottom:1054.230000px;}
.y60{bottom:1054.590000px;}
.yb9{bottom:1059.990000px;}
.y82{bottom:1062.330000px;}
.y112{bottom:1063.590000px;}
.y15b{bottom:1068.630000px;}
.y8{bottom:1075.470000px;}
.y32{bottom:1075.830000px;}
.y111{bottom:1086.090000px;}
.y5f{bottom:1088.430000px;}
.y15a{bottom:1088.790000px;}
.y31{bottom:1097.610000px;}
.y10f{bottom:1109.310000px;}
.y5e{bottom:1110.210000px;}
.y5{bottom:1111.470000px;}
.y30{bottom:1119.390000px;}
.y159{bottom:1121.010000px;}
.y4{bottom:1131.630000px;}
.y110{bottom:1131.810000px;}
.y5d{bottom:1139.550000px;}
.y2f{bottom:1141.170000px;}
.y3{bottom:1153.800000px;}
.y2e{bottom:1171.980000px;}
.y2{bottom:1174.140000px;}
.y2d{bottom:1194.120000px;}
.y1{bottom:1194.300000px;}
.h23{height:17.460000px;}
.h13{height:18.540000px;}
.h1d{height:19.440000px;}
.hf{height:19.620000px;}
.h12{height:19.800000px;}
.h14{height:20.700000px;}
.h1c{height:20.880000px;}
.h1a{height:20.916000px;}
.h8{height:22.500000px;}
.h10{height:22.536000px;}
.h9{height:23.580000px;}
.he{height:23.616000px;}
.hd{height:25.560000px;}
.h6{height:31.034531px;}
.h29{height:34.036523px;}
.h1f{height:38.340000px;}
.ha{height:39.208008px;}
.h1e{height:39.600000px;}
.h25{height:40.130859px;}
.h20{height:40.860000px;}
.h15{height:41.040000px;}
.h19{height:41.258672px;}
.h1b{height:43.390195px;}
.h24{height:45.000000px;}
.h2a{height:45.036000px;}
.h2c{height:45.281250px;}
.hc{height:48.095156px;}
.h3{height:49.227187px;}
.hb{height:49.500000px;}
.h2b{height:52.277344px;}
.h22{height:53.507791px;}
.h5{height:54.080859px;}
.h2{height:54.794531px;}
.h26{height:54.914531px;}
.h18{height:59.696719px;}
.h11{height:68.084282px;}
.h7{height:74.953125px;}
.h27{height:90.180000px;}
.h17{height:93.867187px;}
.h4{height:95.667539px;}
.h28{height:97.136719px;}
.h16{height:110.096719px;}
.h21{height:142.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2f{width:19.980000px;}
.w3f{width:20.700000px;}
.w14{width:28.980000px;}
.w1a{width:31.500000px;}
.w1b{width:34.920000px;}
.w16{width:35.820000px;}
.w22{width:36.000000px;}
.w21{width:36.180000px;}
.w19{width:36.540000px;}
.w18{width:36.576000px;}
.w17{width:36.720000px;}
.w10{width:39.816000px;}
.w15{width:43.920000px;}
.wf{width:44.460000px;}
.w42{width:45.000000px;}
.w11{width:46.080000px;}
.w13{width:55.296000px;}
.w41{width:62.100000px;}
.w24{width:64.800000px;}
.w3b{width:70.560000px;}
.w1d{width:72.000000px;}
.w1e{width:72.036000px;}
.w29{width:74.196000px;}
.w38{width:74.376000px;}
.w4{width:74.520000px;}
.w12{width:75.240000px;}
.w47{width:82.980000px;}
.w45{width:84.240000px;}
.w31{width:84.456000px;}
.w3e{width:84.960000px;}
.w33{width:84.996000px;}
.w32{width:85.140000px;}
.w46{width:87.156000px;}
.we{width:87.840000px;}
.wb{width:88.740000px;}
.w36{width:94.500000px;}
.w35{width:94.716000px;}
.w44{width:94.896000px;}
.w34{width:95.760000px;}
.w3a{width:106.416000px;}
.w30{width:107.100000px;}
.w2a{width:108.180000px;}
.w25{width:113.796000px;}
.w2b{width:117.036000px;}
.w2c{width:117.216000px;}
.w2d{width:117.360000px;}
.w8{width:127.656000px;}
.w26{width:129.456000px;}
.w1f{width:129.960000px;}
.w2e{width:133.956000px;}
.w1c{width:145.476000px;}
.w20{width:146.376000px;}
.w37{width:148.860000px;}
.w28{width:153.390000px;}
.wa{width:159.300000px;}
.w3d{width:159.690000px;}
.w27{width:160.950000px;}
.w3c{width:170.130000px;}
.w9{width:170.310000px;}
.w6{width:184.530000px;}
.w5{width:194.070000px;}
.w43{width:199.830000px;}
.w7{width:223.230000px;}
.w3{width:227.370000px;}
.w39{width:244.650000px;}
.wd{width:251.130000px;}
.wc{width:335.235000px;}
.w40{width:562.605000px;}
.w23{width:587.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:5.400000px;}
.xf{left:7.740000px;}
.x36{left:9.180000px;}
.x15{left:10.440000px;}
.x13{left:12.060000px;}
.x28{left:13.320000px;}
.x2e{left:15.300000px;}
.x53{left:17.100000px;}
.x35{left:18.180000px;}
.x67{left:20.700000px;}
.x11{left:22.500000px;}
.x5f{left:23.580000px;}
.x16{left:24.660000px;}
.x5e{left:25.920000px;}
.x14{left:27.540000px;}
.x3c{left:28.800000px;}
.x76{left:29.880000px;}
.x5a{left:32.085000px;}
.x56{left:34.020000px;}
.x60{left:36.180000px;}
.x1b{left:37.980000px;}
.x77{left:39.285000px;}
.x66{left:40.320000px;}
.x3f{left:42.120000px;}
.x5c{left:43.920000px;}
.x78{left:47.880000px;}
.x1f{left:49.140000px;}
.x1e{left:65.160000px;}
.x71{left:67.320000px;}
.x20{left:70.380000px;}
.x17{left:73.290000px;}
.x55{left:75.954000px;}
.x18{left:84.825000px;}
.x62{left:86.574000px;}
.x38{left:99.576000px;}
.x1{left:106.235987px;}
.x27{left:111.465000px;}
.x4e{left:116.135987px;}
.x23{left:118.475987px;}
.x47{left:121.535987px;}
.x3a{left:127.656000px;}
.x21{left:133.955987px;}
.x25{left:135.945000px;}
.x43{left:137.375987px;}
.x4{left:149.975987px;}
.x70{left:151.230000px;}
.x6b{left:158.970000px;}
.x19{left:171.569987px;}
.x7{left:173.189987px;}
.x48{left:180.570000px;}
.x24{left:194.970000px;}
.x5{left:200.909987px;}
.x44{left:218.730000px;}
.x61{left:234.209987px;}
.x29{left:240.150000px;}
.x69{left:246.269987px;}
.x41{left:248.969987px;}
.x5d{left:255.090000px;}
.x4f{left:265.169987px;}
.x4a{left:266.619000px;}
.x3b{left:273.135000px;}
.x6{left:274.394987px;}
.x6e{left:276.525000px;}
.x2a{left:279.975000px;}
.x37{left:285.914987px;}
.x4b{left:300.099000px;}
.x9{left:308.234987px;}
.x6c{left:315.975000px;}
.x2b{left:326.055000px;}
.x1a{left:329.475000px;}
.xe{left:333.615000px;}
.x8{left:345.494987px;}
.x63{left:350.895000px;}
.x6d{left:353.955000px;}
.xc{left:364.394987px;}
.xa{left:365.654987px;}
.xb{left:369.074987px;}
.x52{left:381.780000px;}
.x49{left:396.540000px;}
.x2c{left:401.295000px;}
.x22{left:402.374987px;}
.x10{left:408.135000px;}
.x39{left:412.095000px;}
.x57{left:414.615000px;}
.x3d{left:417.135000px;}
.x3{left:433.874987px;}
.x72{left:436.035000px;}
.x45{left:449.565000px;}
.x1c{left:457.125000px;}
.x2d{left:485.565000px;}
.x3e{left:489.165000px;}
.x58{left:499.605000px;}
.x26{left:530.205000px;}
.x73{left:532.365000px;}
.x64{left:542.445000px;}
.x2f{left:566.745000px;}
.x54{left:584.565000px;}
.x50{left:585.645000px;}
.x59{left:595.365000px;}
.x12{left:602.205000px;}
.x30{left:603.465000px;}
.x74{left:616.605000px;}
.x40{left:619.125000px;}
.x51{left:620.745000px;}
.x1d{left:627.450000px;}
.x31{left:640.050000px;}
.x6a{left:653.729987px;}
.x42{left:673.529987px;}
.x32{left:676.590000px;}
.x5b{left:692.250000px;}
.x46{left:696.209987px;}
.x75{left:703.770000px;}
.x33{left:713.310000px;}
.x65{left:716.190000px;}
.x6f{left:721.590000px;}
.x68{left:723.569987px;}
.x4c{left:725.370000px;}
.x34{left:749.850000px;}
.x4d{left:764.789987px;}
.x2{left:786.749987px;}
@media print{
.v9{vertical-align:-23.680000pt;}
.vb{vertical-align:-22.400000pt;}
.v2{vertical-align:-21.120000pt;}
.va{vertical-align:-12.800000pt;}
.v7{vertical-align:-11.520000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.520000pt;}
.v8{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:39.680000pt;}
.v4{vertical-align:44.800000pt;}
.ls7{letter-spacing:-2.421333pt;}
.ls3e{letter-spacing:-1.397333pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.757333pt;}
.ls39{letter-spacing:-0.741333pt;}
.ls19{letter-spacing:-0.682667pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.524800pt;}
.ls13{letter-spacing:-0.522133pt;}
.ls1c{letter-spacing:-0.499200pt;}
.ls3d{letter-spacing:-0.476267pt;}
.ls43{letter-spacing:-0.419733pt;}
.ls30{letter-spacing:-0.412267pt;}
.ls26{letter-spacing:-0.325333pt;}
.ls1e{letter-spacing:-0.309867pt;}
.ls20{letter-spacing:-0.286933pt;}
.ls14{letter-spacing:-0.276267pt;}
.ls5{letter-spacing:-0.275200pt;}
.ls21{letter-spacing:-0.258667pt;}
.ls2d{letter-spacing:-0.253333pt;}
.ls38{letter-spacing:-0.217600pt;}
.ls45{letter-spacing:-0.202133pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.176000pt;}
.lsc{letter-spacing:-0.171733pt;}
.ls15{letter-spacing:-0.146133pt;}
.ls27{letter-spacing:-0.120533pt;}
.ls11{letter-spacing:-0.117867pt;}
.ls12{letter-spacing:-0.102400pt;}
.lsd{letter-spacing:-0.043520pt;}
.ls44{letter-spacing:-0.035840pt;}
.ls25{letter-spacing:-0.023040pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.017920pt;}
.ls29{letter-spacing:0.079360pt;}
.ls2c{letter-spacing:0.079467pt;}
.ls16{letter-spacing:0.102400pt;}
.ls24{letter-spacing:0.105067pt;}
.ls1f{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.117760pt;}
.ls3a{letter-spacing:0.117867pt;}
.ls46{letter-spacing:0.125333pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3f{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.140800pt;}
.ls2{letter-spacing:0.192000pt;}
.ls42{letter-spacing:0.217600pt;}
.ls8{letter-spacing:0.220267pt;}
.ls3{letter-spacing:0.224427pt;}
.ls4{letter-spacing:0.227733pt;}
.ls22{letter-spacing:0.239787pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.258667pt;}
.lsb{letter-spacing:0.330133pt;}
.ls1b{letter-spacing:0.348267pt;}
.ls37{letter-spacing:0.773120pt;}
.ls41{letter-spacing:1.551360pt;}
.ls36{letter-spacing:2.692480pt;}
.ls32{letter-spacing:3.827840pt;}
.ls28{letter-spacing:3.973120pt;}
.ls31{letter-spacing:4.480000pt;}
.ls10{letter-spacing:5.253120pt;}
.ls2b{letter-spacing:6.533120pt;}
.ls2a{letter-spacing:8.320000pt;}
.ls35{letter-spacing:14.852480pt;}
.ls34{letter-spacing:16.176640pt;}
.ls33{letter-spacing:20.467840pt;}
.ls40{letter-spacing:30.991360pt;}
.ls3b{letter-spacing:32.271360pt;}
.ls23{letter-spacing:61.690027pt;}
.ws22{word-spacing:-58.880000pt;}
.ws23{word-spacing:-58.626667pt;}
.ws2b{word-spacing:-46.044160pt;}
.ws2d{word-spacing:-45.952853pt;}
.ws2c{word-spacing:-45.903360pt;}
.ws21{word-spacing:-41.098240pt;}
.ws3{word-spacing:-26.469120pt;}
.ws2{word-spacing:-24.047787pt;}
.ws27{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.656000pt;}
.ws28{word-spacing:-14.272000pt;}
.ws15{word-spacing:-13.655147pt;}
.ws7{word-spacing:-13.637013pt;}
.ws11{word-spacing:-13.565547pt;}
.ws0{word-spacing:-13.534613pt;}
.ws30{word-spacing:-13.524480pt;}
.ws20{word-spacing:-13.447680pt;}
.ws34{word-spacing:-13.432213pt;}
.ws1a{word-spacing:-13.422080pt;}
.ws1c{word-spacing:-13.411947pt;}
.ws10{word-spacing:-13.409280pt;}
.ws24{word-spacing:-13.386347pt;}
.ws2f{word-spacing:-13.324800pt;}
.ws5{word-spacing:-13.306880pt;}
.ws1d{word-spacing:-13.283840pt;}
.ws32{word-spacing:-13.271040pt;}
.ws9{word-spacing:-13.263360pt;}
.wsb{word-spacing:-13.204480pt;}
.wsd{word-spacing:-13.189013pt;}
.ws1f{word-spacing:-13.186347pt;}
.wsf{word-spacing:-13.160747pt;}
.ws8{word-spacing:-13.135147pt;}
.ws6{word-spacing:-13.114880pt;}
.ws33{word-spacing:-13.104747pt;}
.wse{word-spacing:-13.030613pt;}
.ws1b{word-spacing:-13.019947pt;}
.ws18{word-spacing:-12.997013pt;}
.ws1e{word-spacing:-12.981547pt;}
.ws29{word-spacing:-12.894613pt;}
.ws16{word-spacing:-12.807680pt;}
.wsc{word-spacing:-12.784747pt;}
.ws17{word-spacing:-12.782080pt;}
.ws13{word-spacing:-12.624213pt;}
.ws2e{word-spacing:-12.565547pt;}
.ws31{word-spacing:-12.549547pt;}
.ws14{word-spacing:-12.474880pt;}
.ws19{word-spacing:-10.848000pt;}
.ws25{word-spacing:-10.672000pt;}
.ws4{word-spacing:-8.389120pt;}
.ws2a{word-spacing:-8.171520pt;}
.ws1{word-spacing:-8.113920pt;}
.ws26{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._7{margin-left:-10.949333pt;}
._6{margin-left:-7.878400pt;}
._18{margin-left:-6.809173pt;}
._5{margin-left:-5.621760pt;}
._4{margin-left:-4.333440pt;}
._3{margin-left:-3.279360pt;}
._2{margin-left:-2.342400pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.156907pt;}
._c{width:2.157440pt;}
._d{width:3.924480pt;}
._b{width:4.952747pt;}
._a{width:5.946880pt;}
._e{width:7.360000pt;}
._8{width:8.644267pt;}
._9{width:9.817173pt;}
._f{width:11.336533pt;}
._16{width:12.331520pt;}
._15{width:14.287787pt;}
._1a{width:15.192320pt;}
._14{width:16.587520pt;}
._12{width:17.532587pt;}
._13{width:19.359147pt;}
._1b{width:20.496213pt;}
._17{width:31.536640pt;}
._19{width:147.231787pt;}
._11{width:404.613120pt;}
._10{width:920.567893pt;}
.fs5{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:117.120000pt;}
.y81{bottom:-15.680000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:0.480000pt;}
.y9c{bottom:2.720000pt;}
.ye3{bottom:2.880000pt;}
.y7f{bottom:3.680000pt;}
.y9a{bottom:3.840000pt;}
.ye6{bottom:4.160000pt;}
.yb8{bottom:4.573333pt;}
.yd6{bottom:4.640000pt;}
.yd3{bottom:4.800000pt;}
.y7b{bottom:4.960000pt;}
.y78{bottom:5.120000pt;}
.y37{bottom:5.280000pt;}
.yeb{bottom:5.320000pt;}
.y3a{bottom:5.600000pt;}
.y5a{bottom:5.760000pt;}
.yd0{bottom:5.920000pt;}
.yde{bottom:6.080000pt;}
.y84{bottom:6.240000pt;}
.yec{bottom:6.280000pt;}
.y7a{bottom:6.560000pt;}
.y57{bottom:8.160000pt;}
.ye0{bottom:9.533333pt;}
.yba{bottom:10.400000pt;}
.ybc{bottom:13.440000pt;}
.ye5{bottom:15.200000pt;}
.y58{bottom:17.120000pt;}
.yda{bottom:21.440000pt;}
.yd8{bottom:22.560000pt;}
.ydd{bottom:23.680000pt;}
.y109{bottom:24.000000pt;}
.y56{bottom:26.080000pt;}
.y107{bottom:33.920000pt;}
.y106{bottom:35.200000pt;}
.y108{bottom:50.720000pt;}
.y7{bottom:51.200000pt;}
.y6{bottom:69.120000pt;}
.y10e{bottom:104.800000pt;}
.y7d{bottom:107.360000pt;}
.yce{bottom:109.600000pt;}
.yb6{bottom:114.080000pt;}
.y158{bottom:114.400000pt;}
.y10d{bottom:124.160000pt;}
.y139{bottom:127.840000pt;}
.y7c{bottom:128.800000pt;}
.ycd{bottom:128.960000pt;}
.y98{bottom:130.400000pt;}
.y157{bottom:132.160000pt;}
.yb5{bottom:133.440000pt;}
.y2c{bottom:136.826667pt;}
.y10c{bottom:143.546667pt;}
.y138{bottom:147.226667pt;}
.ycc{bottom:148.186667pt;}
.y79{bottom:150.426667pt;}
.y5c{bottom:153.466667pt;}
.y97{bottom:154.106667pt;}
.y2b{bottom:156.186667pt;}
.y156{bottom:160.826667pt;}
.y99{bottom:161.306667pt;}
.y10b{bottom:162.746667pt;}
.y9b{bottom:163.546667pt;}
.y137{bottom:166.586667pt;}
.ycb{bottom:167.546667pt;}
.y5b{bottom:168.186667pt;}
.y77{bottom:175.226667pt;}
.y2a{bottom:175.546667pt;}
.y155{bottom:178.746667pt;}
.y10a{bottom:182.106667pt;}
.yb4{bottom:182.746667pt;}
.y136{bottom:185.786667pt;}
.y59{bottom:189.466667pt;}
.y29{bottom:194.746667pt;}
.y105{bottom:195.866667pt;}
.y154{bottom:196.666667pt;}
.yca{bottom:197.626667pt;}
.yb3{bottom:202.106667pt;}
.y135{bottom:205.146667pt;}
.y55{bottom:211.226667pt;}
.y76{bottom:211.866667pt;}
.y28{bottom:214.106667pt;}
.yc9{bottom:216.826667pt;}
.yb2{bottom:221.466667pt;}
.y134{bottom:224.506667pt;}
.y153{bottom:225.146667pt;}
.y75{bottom:235.546667pt;}
.yc8{bottom:236.186667pt;}
.yb1{bottom:240.826667pt;}
.y152{bottom:243.066667pt;}
.y133{bottom:243.866667pt;}
.y27{bottom:244.186667pt;}
.yc7{bottom:255.546667pt;}
.yb0{bottom:260.026667pt;}
.y132{bottom:263.066667pt;}
.y26{bottom:263.386667pt;}
.y151{bottom:271.706667pt;}
.y54{bottom:273.466667pt;}
.yc6{bottom:274.906667pt;}
.yaf{bottom:279.386667pt;}
.y25{bottom:282.746667pt;}
.y150{bottom:289.626667pt;}
.y104{bottom:292.346667pt;}
.y53{bottom:292.666667pt;}
.y131{bottom:293.146667pt;}
.yc5{bottom:294.106667pt;}
.y24{bottom:302.106667pt;}
.y14f{bottom:307.546667pt;}
.yae{bottom:309.466667pt;}
.y52{bottom:312.026667pt;}
.y103{bottom:312.666667pt;}
.yc4{bottom:320.186667pt;}
.y130{bottom:320.826667pt;}
.y23{bottom:321.466667pt;}
.yad{bottom:328.666667pt;}
.y51{bottom:331.386667pt;}
.y102{bottom:331.866667pt;}
.y14e{bottom:336.026667pt;}
.y22{bottom:340.666667pt;}
.yac{bottom:348.026667pt;}
.yc3{bottom:349.466667pt;}
.y50{bottom:350.746667pt;}
.y101{bottom:351.226667pt;}
.y12f{bottom:357.506667pt;}
.y21{bottom:360.066667pt;}
.y14d{bottom:364.706667pt;}
.yab{bottom:367.426667pt;}
.y4f{bottom:369.986667pt;}
.y96{bottom:370.146667pt;}
.y100{bottom:370.626667pt;}
.y12e{bottom:376.866667pt;}
.y20{bottom:379.426667pt;}
.y14c{bottom:382.626667pt;}
.yc2{bottom:383.906667pt;}
.yaa{bottom:386.786667pt;}
.y4e{bottom:389.346667pt;}
.y95{bottom:389.506667pt;}
.yf6{bottom:392.706667pt;}
.y12d{bottom:396.226667pt;}
.yff{bottom:396.706667pt;}
.yc1{bottom:398.466667pt;}
.y14b{bottom:400.546667pt;}
.y1f{bottom:407.266667pt;}
.y4d{bottom:408.706667pt;}
.y94{bottom:408.866667pt;}
.ya9{bottom:412.866667pt;}
.y12c{bottom:415.426667pt;}
.yf5{bottom:416.226667pt;}
.yc0{bottom:422.146667pt;}
.y93{bottom:428.066667pt;}
.y14a{bottom:429.026667pt;}
.ydb{bottom:429.666667pt;}
.ye1{bottom:433.346667pt;}
.y12b{bottom:434.786667pt;}
.y4c{bottom:438.626667pt;}
.y1e{bottom:442.466667pt;}
.ya8{bottom:444.226667pt;}
.y149{bottom:446.946667pt;}
.y12a{bottom:454.146667pt;}
.y7e{bottom:456.546667pt;}
.y80{bottom:457.666667pt;}
.y4b{bottom:457.986667pt;}
.y92{bottom:458.146667pt;}
.y1d{bottom:460.226667pt;}
.ya7{bottom:463.586667pt;}
.y148{bottom:464.866667pt;}
.y129{bottom:473.506667pt;}
.y4a{bottom:477.346667pt;}
.yfe{bottom:477.506667pt;}
.yd9{bottom:477.666667pt;}
.y1c{bottom:478.146667pt;}
.y128{bottom:492.866667pt;}
.ya6{bottom:493.506667pt;}
.ydf{bottom:495.200000pt;}
.y1b{bottom:496.066667pt;}
.y49{bottom:496.706667pt;}
.y74{bottom:497.666667pt;}
.y91{bottom:507.426667pt;}
.y147{bottom:511.266667pt;}
.y127{bottom:512.066667pt;}
.y1a{bottom:513.986667pt;}
.y48{bottom:515.906667pt;}
.yfd{bottom:516.066667pt;}
.y73{bottom:517.026667pt;}
.ydc{bottom:519.426667pt;}
.ya5{bottom:523.586667pt;}
.y90{bottom:526.786667pt;}
.y126{bottom:531.426667pt;}
.y19{bottom:531.906667pt;}
.y47{bottom:535.266667pt;}
.yfc{bottom:535.426667pt;}
.y72{bottom:536.386667pt;}
.y146{bottom:539.906667pt;}
.ya4{bottom:542.786667pt;}
.y8f{bottom:545.986667pt;}
.y18{bottom:549.826667pt;}
.y125{bottom:550.786667pt;}
.y46{bottom:554.626667pt;}
.yfb{bottom:554.786667pt;}
.y71{bottom:555.586667pt;}
.y145{bottom:557.826667pt;}
.ya3{bottom:562.146667pt;}
.y8e{bottom:565.346667pt;}
.y17{bottom:567.746667pt;}
.y124{bottom:570.146667pt;}
.y45{bottom:573.986667pt;}
.y70{bottom:574.946667pt;}
.ya2{bottom:581.533333pt;}
.y16{bottom:585.693333pt;}
.y144{bottom:586.333333pt;}
.y123{bottom:589.373333pt;}
.y44{bottom:593.213333pt;}
.yfa{bottom:593.373333pt;}
.y6f{bottom:594.333333pt;}
.y8d{bottom:595.453333pt;}
.y169{bottom:598.813333pt;}
.ya1{bottom:600.893333pt;}
.y15{bottom:603.613333pt;}
.y143{bottom:604.253333pt;}
.y122{bottom:608.733333pt;}
.y43{bottom:612.573333pt;}
.yf9{bottom:612.733333pt;}
.y6e{bottom:613.693333pt;}
.y8c{bottom:614.653333pt;}
.yf4{bottom:614.813333pt;}
.ya0{bottom:620.093333pt;}
.y14{bottom:621.533333pt;}
.y168{bottom:628.733333pt;}
.y42{bottom:631.933333pt;}
.y6d{bottom:632.893333pt;}
.y8b{bottom:634.013333pt;}
.yf3{bottom:636.093333pt;}
.y121{bottom:638.653333pt;}
.yf8{bottom:643.133333pt;}
.y167{bottom:648.093333pt;}
.y9f{bottom:650.493333pt;}
.y41{bottom:651.293333pt;}
.y6c{bottom:652.253333pt;}
.y13{bottom:655.293333pt;}
.yf2{bottom:656.093333pt;}
.y120{bottom:658.013333pt;}
.y8a{bottom:660.093333pt;}
.yf7{bottom:666.813333pt;}
.y166{bottom:667.293333pt;}
.yd7{bottom:667.613333pt;}
.y142{bottom:668.733333pt;}
.y40{bottom:670.493333pt;}
.y12{bottom:673.213333pt;}
.yb7{bottom:673.600000pt;}
.y9e{bottom:674.173333pt;}
.yf1{bottom:676.093333pt;}
.y11f{bottom:677.373333pt;}
.y6b{bottom:678.333333pt;}
.yd5{bottom:684.413333pt;}
.y141{bottom:688.093333pt;}
.y89{bottom:691.613333pt;}
.y3f{bottom:696.573333pt;}
.y11e{bottom:696.733333pt;}
.yef{bottom:697.373333pt;}
.y140{bottom:707.293333pt;}
.y6a{bottom:707.453333pt;}
.y88{bottom:710.813333pt;}
.y11d{bottom:715.933333pt;}
.y165{bottom:716.733333pt;}
.yd1{bottom:717.213333pt;}
.yf0{bottom:717.373333pt;}
.y11{bottom:720.413333pt;}
.y13f{bottom:726.653333pt;}
.y3e{bottom:728.093333pt;}
.y87{bottom:730.173333pt;}
.y11c{bottom:735.293333pt;}
.y164{bottom:735.933333pt;}
.y10{bottom:738.333333pt;}
.y69{bottom:744.253333pt;}
.y13e{bottom:746.013333pt;}
.y3d{bottom:747.453333pt;}
.ye2{bottom:751.293333pt;}
.y11b{bottom:754.653333pt;}
.y163{bottom:755.293333pt;}
.yee{bottom:756.093333pt;}
.yf{bottom:756.253333pt;}
.y86{bottom:760.573333pt;}
.y68{bottom:763.613333pt;}
.y3c{bottom:766.653333pt;}
.ye{bottom:768.893333pt;}
.y11a{bottom:774.013333pt;}
.y162{bottom:774.653333pt;}
.y13d{bottom:775.933333pt;}
.yed{bottom:777.373333pt;}
.ycf{bottom:781.213333pt;}
.y85{bottom:781.853333pt;}
.y67{bottom:782.813333pt;}
.yd{bottom:786.813333pt;}
.y119{bottom:793.373333pt;}
.y161{bottom:794.013333pt;}
.y13c{bottom:795.293333pt;}
.y3b{bottom:797.053333pt;}
.yea{bottom:797.373333pt;}
.y66{bottom:802.213333pt;}
.y83{bottom:802.693333pt;}
.yc{bottom:810.053333pt;}
.y118{bottom:812.613333pt;}
.yd2{bottom:813.413333pt;}
.ye9{bottom:817.413333pt;}
.y39{bottom:818.533333pt;}
.y65{bottom:821.573333pt;}
.y160{bottom:821.733333pt;}
.y13b{bottom:823.013333pt;}
.ye8{bottom:837.413333pt;}
.yb{bottom:838.693333pt;}
.y38{bottom:840.133333pt;}
.y64{bottom:840.933333pt;}
.y117{bottom:843.013333pt;}
.yd4{bottom:843.973333pt;}
.y15f{bottom:856.933333pt;}
.ye7{bottom:857.413333pt;}
.y13a{bottom:859.813333pt;}
.y36{bottom:860.133333pt;}
.y116{bottom:864.453333pt;}
.y15e{bottom:874.853333pt;}
.ye4{bottom:878.853333pt;}
.y9d{bottom:879.013333pt;}
.y63{bottom:879.493333pt;}
.ya{bottom:884.293333pt;}
.y115{bottom:885.413333pt;}
.ybf{bottom:888.773333pt;}
.y35{bottom:898.373333pt;}
.y62{bottom:898.853333pt;}
.y15d{bottom:903.493333pt;}
.y114{bottom:905.413333pt;}
.ybe{bottom:908.133333pt;}
.y34{bottom:917.733333pt;}
.y61{bottom:918.213333pt;}
.y9{bottom:920.133333pt;}
.y15c{bottom:921.413333pt;}
.y113{bottom:925.413333pt;}
.ybd{bottom:928.453333pt;}
.y33{bottom:937.093333pt;}
.y60{bottom:937.413333pt;}
.yb9{bottom:942.213333pt;}
.y82{bottom:944.293333pt;}
.y112{bottom:945.413333pt;}
.y15b{bottom:949.893333pt;}
.y8{bottom:955.973333pt;}
.y32{bottom:956.293333pt;}
.y111{bottom:965.413333pt;}
.y5f{bottom:967.493333pt;}
.y15a{bottom:967.813333pt;}
.y31{bottom:975.653333pt;}
.y10f{bottom:986.053333pt;}
.y5e{bottom:986.853333pt;}
.y5{bottom:987.973333pt;}
.y30{bottom:995.013333pt;}
.y159{bottom:996.453333pt;}
.y4{bottom:1005.893333pt;}
.y110{bottom:1006.053333pt;}
.y5d{bottom:1012.933333pt;}
.y2f{bottom:1014.373333pt;}
.y3{bottom:1025.600000pt;}
.y2e{bottom:1041.760000pt;}
.y2{bottom:1043.680000pt;}
.y2d{bottom:1061.440000pt;}
.y1{bottom:1061.600000pt;}
.h23{height:15.520000pt;}
.h13{height:16.480000pt;}
.h1d{height:17.280000pt;}
.hf{height:17.440000pt;}
.h12{height:17.600000pt;}
.h14{height:18.400000pt;}
.h1c{height:18.560000pt;}
.h1a{height:18.592000pt;}
.h8{height:20.000000pt;}
.h10{height:20.032000pt;}
.h9{height:20.960000pt;}
.he{height:20.992000pt;}
.hd{height:22.720000pt;}
.h6{height:27.586250pt;}
.h29{height:30.254687pt;}
.h1f{height:34.080000pt;}
.ha{height:34.851562pt;}
.h1e{height:35.200000pt;}
.h25{height:35.671875pt;}
.h20{height:36.320000pt;}
.h15{height:36.480000pt;}
.h19{height:36.674375pt;}
.h1b{height:38.569063pt;}
.h24{height:40.000000pt;}
.h2a{height:40.032000pt;}
.h2c{height:40.250000pt;}
.hc{height:42.751250pt;}
.h3{height:43.757500pt;}
.hb{height:44.000000pt;}
.h2b{height:46.468750pt;}
.h22{height:47.562481pt;}
.h5{height:48.071875pt;}
.h2{height:48.706250pt;}
.h26{height:48.812917pt;}
.h18{height:53.063750pt;}
.h11{height:60.519362pt;}
.h7{height:66.625000pt;}
.h27{height:80.160000pt;}
.h17{height:83.437500pt;}
.h4{height:85.037812pt;}
.h28{height:86.343750pt;}
.h16{height:97.863750pt;}
.h21{height:126.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2f{width:17.760000pt;}
.w3f{width:18.400000pt;}
.w14{width:25.760000pt;}
.w1a{width:28.000000pt;}
.w1b{width:31.040000pt;}
.w16{width:31.840000pt;}
.w22{width:32.000000pt;}
.w21{width:32.160000pt;}
.w19{width:32.480000pt;}
.w18{width:32.512000pt;}
.w17{width:32.640000pt;}
.w10{width:35.392000pt;}
.w15{width:39.040000pt;}
.wf{width:39.520000pt;}
.w42{width:40.000000pt;}
.w11{width:40.960000pt;}
.w13{width:49.152000pt;}
.w41{width:55.200000pt;}
.w24{width:57.600000pt;}
.w3b{width:62.720000pt;}
.w1d{width:64.000000pt;}
.w1e{width:64.032000pt;}
.w29{width:65.952000pt;}
.w38{width:66.112000pt;}
.w4{width:66.240000pt;}
.w12{width:66.880000pt;}
.w47{width:73.760000pt;}
.w45{width:74.880000pt;}
.w31{width:75.072000pt;}
.w3e{width:75.520000pt;}
.w33{width:75.552000pt;}
.w32{width:75.680000pt;}
.w46{width:77.472000pt;}
.we{width:78.080000pt;}
.wb{width:78.880000pt;}
.w36{width:84.000000pt;}
.w35{width:84.192000pt;}
.w44{width:84.352000pt;}
.w34{width:85.120000pt;}
.w3a{width:94.592000pt;}
.w30{width:95.200000pt;}
.w2a{width:96.160000pt;}
.w25{width:101.152000pt;}
.w2b{width:104.032000pt;}
.w2c{width:104.192000pt;}
.w2d{width:104.320000pt;}
.w8{width:113.472000pt;}
.w26{width:115.072000pt;}
.w1f{width:115.520000pt;}
.w2e{width:119.072000pt;}
.w1c{width:129.312000pt;}
.w20{width:130.112000pt;}
.w37{width:132.320000pt;}
.w28{width:136.346667pt;}
.wa{width:141.600000pt;}
.w3d{width:141.946667pt;}
.w27{width:143.066667pt;}
.w3c{width:151.226667pt;}
.w9{width:151.386667pt;}
.w6{width:164.026667pt;}
.w5{width:172.506667pt;}
.w43{width:177.626667pt;}
.w7{width:198.426667pt;}
.w3{width:202.106667pt;}
.w39{width:217.466667pt;}
.wd{width:223.226667pt;}
.wc{width:297.986667pt;}
.w40{width:500.093333pt;}
.w23{width:521.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.800000pt;}
.xf{left:6.880000pt;}
.x36{left:8.160000pt;}
.x15{left:9.280000pt;}
.x13{left:10.720000pt;}
.x28{left:11.840000pt;}
.x2e{left:13.600000pt;}
.x53{left:15.200000pt;}
.x35{left:16.160000pt;}
.x67{left:18.400000pt;}
.x11{left:20.000000pt;}
.x5f{left:20.960000pt;}
.x16{left:21.920000pt;}
.x5e{left:23.040000pt;}
.x14{left:24.480000pt;}
.x3c{left:25.600000pt;}
.x76{left:26.560000pt;}
.x5a{left:28.520000pt;}
.x56{left:30.240000pt;}
.x60{left:32.160000pt;}
.x1b{left:33.760000pt;}
.x77{left:34.920000pt;}
.x66{left:35.840000pt;}
.x3f{left:37.440000pt;}
.x5c{left:39.040000pt;}
.x78{left:42.560000pt;}
.x1f{left:43.680000pt;}
.x1e{left:57.920000pt;}
.x71{left:59.840000pt;}
.x20{left:62.560000pt;}
.x17{left:65.146667pt;}
.x55{left:67.514667pt;}
.x18{left:75.400000pt;}
.x62{left:76.954667pt;}
.x38{left:88.512000pt;}
.x1{left:94.431988pt;}
.x27{left:99.080000pt;}
.x4e{left:103.231988pt;}
.x23{left:105.311988pt;}
.x47{left:108.031988pt;}
.x3a{left:113.472000pt;}
.x21{left:119.071988pt;}
.x25{left:120.840000pt;}
.x43{left:122.111988pt;}
.x4{left:133.311988pt;}
.x70{left:134.426667pt;}
.x6b{left:141.306667pt;}
.x19{left:152.506655pt;}
.x7{left:153.946655pt;}
.x48{left:160.506667pt;}
.x24{left:173.306667pt;}
.x5{left:178.586655pt;}
.x44{left:194.426667pt;}
.x61{left:208.186655pt;}
.x29{left:213.466667pt;}
.x69{left:218.906655pt;}
.x41{left:221.306655pt;}
.x5d{left:226.746667pt;}
.x4f{left:235.706655pt;}
.x4a{left:236.994667pt;}
.x3b{left:242.786667pt;}
.x6{left:243.906655pt;}
.x6e{left:245.800000pt;}
.x2a{left:248.866667pt;}
.x37{left:254.146655pt;}
.x4b{left:266.754667pt;}
.x9{left:273.986655pt;}
.x6c{left:280.866667pt;}
.x2b{left:289.826667pt;}
.x1a{left:292.866667pt;}
.xe{left:296.546667pt;}
.x8{left:307.106655pt;}
.x63{left:311.906667pt;}
.x6d{left:314.626667pt;}
.xc{left:323.906655pt;}
.xa{left:325.026655pt;}
.xb{left:328.066655pt;}
.x52{left:339.360000pt;}
.x49{left:352.480000pt;}
.x2c{left:356.706667pt;}
.x22{left:357.666655pt;}
.x10{left:362.786667pt;}
.x39{left:366.306667pt;}
.x57{left:368.546667pt;}
.x3d{left:370.786667pt;}
.x3{left:385.666655pt;}
.x72{left:387.586667pt;}
.x45{left:399.613333pt;}
.x1c{left:406.333333pt;}
.x2d{left:431.613333pt;}
.x3e{left:434.813333pt;}
.x58{left:444.093333pt;}
.x26{left:471.293333pt;}
.x73{left:473.213333pt;}
.x64{left:482.173333pt;}
.x2f{left:503.773333pt;}
.x54{left:519.613333pt;}
.x50{left:520.573333pt;}
.x59{left:529.213333pt;}
.x12{left:535.293333pt;}
.x30{left:536.413333pt;}
.x74{left:548.093333pt;}
.x40{left:550.333333pt;}
.x51{left:551.773333pt;}
.x1d{left:557.733333pt;}
.x31{left:568.933333pt;}
.x6a{left:581.093322pt;}
.x42{left:598.693322pt;}
.x32{left:601.413333pt;}
.x5b{left:615.333333pt;}
.x46{left:618.853322pt;}
.x75{left:625.573333pt;}
.x33{left:634.053333pt;}
.x65{left:636.613333pt;}
.x6f{left:641.413333pt;}
.x68{left:643.173322pt;}
.x4c{left:644.773333pt;}
.x34{left:666.533333pt;}
.x4d{left:679.813322pt;}
.x2{left:699.333322pt;}
}




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