
    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_a621cedb46a80803b3b3be0a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_5f68222449f2d1d44454b6f7.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_93202629caffab82da1fb0c8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.933594;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_7c5afa0b1c593fad7fb6db71.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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7ef5b5408e9b5b87c08a5323.woff')format("woff");}.ff8{font-family:ff8;line-height:1.118164;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_98a03c7931eba0a1056f03cf.woff')format("woff");}.ff9{font-family:ff9;line-height:1.118164;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_3d847b9e16318977a90a9c36.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5112ca09d5ead26c4e012288.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aa7718bcaff25a65220df9ca.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.lsd{letter-spacing:-0.828000px;}
.ls29{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.366000px;}
.ls2b{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.249000px;}
.ls1b{letter-spacing:-0.242400px;}
.ls17{letter-spacing:-0.177600px;}
.ls1d{letter-spacing:-0.166200px;}
.ls18{letter-spacing:-0.121200px;}
.ls1c{letter-spacing:-0.106800px;}
.ls1a{letter-spacing:-0.100800px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.lsa{letter-spacing:0.053280px;}
.ls19{letter-spacing:0.087000px;}
.ls31{letter-spacing:0.106560px;}
.ls24{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.132600px;}
.ls21{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.153360px;}
.lsc{letter-spacing:0.153600px;}
.ls11{letter-spacing:0.156000px;}
.ls2a{letter-spacing:0.169200px;}
.ls32{letter-spacing:0.177840px;}
.ls1{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.195000px;}
.ls23{letter-spacing:0.226080px;}
.ls12{letter-spacing:0.237600px;}
.ls1e{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.ls2c{letter-spacing:0.298800px;}
.ls2d{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.360000px;}
.ls30{letter-spacing:0.468000px;}
.lse{letter-spacing:0.480000px;}
.ls33{letter-spacing:0.711360px;}
.ls27{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.900000px;}
.ls28{letter-spacing:2.340000px;}
.ls6{letter-spacing:3.060000px;}
.ls34{letter-spacing:4.500000px;}
.ls10{letter-spacing:5.940000px;}
.ls13{letter-spacing:10.069200px;}
.ls2f{letter-spacing:16.506720px;}
.ls20{letter-spacing:46.002720px;}
.ls22{letter-spacing:55.386720px;}
.ls8{letter-spacing:64.002720px;}
.ls5{letter-spacing:90.642720px;}
.ls2{letter-spacing:91.362720px;}
.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;}
}
.ws8{word-spacing:-59.760000px;}
.ws21{word-spacing:-38.880000px;}
.ws1{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.246600px;}
.ws20{word-spacing:-15.238800px;}
.ws17{word-spacing:-15.199800px;}
.ws22{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.093600px;}
.ws19{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.ws1a{word-spacing:-14.680200px;}
.ws1e{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.342200px;}
.ws1c{word-spacing:-13.316400px;}
.wsb{word-spacing:-13.279800px;}
.ws11{word-spacing:-13.147200px;}
.ws13{word-spacing:-13.046400px;}
.ws15{word-spacing:-13.040400px;}
.ws10{word-spacing:-13.026000px;}
.ws16{word-spacing:-12.981000px;}
.wsd{word-spacing:-12.969600px;}
.ws14{word-spacing:-12.904800px;}
.ws18{word-spacing:-12.898200px;}
.wsa{word-spacing:-12.781200px;}
.ws2{word-spacing:-9.720000px;}
.wse{word-spacing:-3.078000px;}
.ws5{word-spacing:0.000000px;}
.ws1b{word-spacing:0.532080px;}
.wsf{word-spacing:1.384920px;}
.ws1d{word-spacing:4.479120px;}
.ws12{word-spacing:5.910120px;}
._10{margin-left:-3.764880px;}
._a{margin-left:-2.450160px;}
._0{margin-left:-1.011120px;}
._2{width:1.126800px;}
._d{width:2.367600px;}
._1{width:3.391920px;}
._5{width:4.500000px;}
._8{width:5.837760px;}
._7{width:7.367760px;}
._6{width:8.545680px;}
._c{width:9.799680px;}
._b{width:11.005200px;}
._17{width:12.080160px;}
._11{width:13.505760px;}
._1c{width:14.603520px;}
._9{width:16.015680px;}
._f{width:17.230080px;}
._e{width:18.346320px;}
._18{width:19.882800px;}
._13{width:21.522240px;}
._12{width:22.708800px;}
._19{width:24.612000px;}
._1b{width:26.432400px;}
._1a{width:27.517440px;}
._16{width:28.847760px;}
._15{width:29.879280px;}
._14{width:33.758640px;}
._24{width:37.116960px;}
._23{width:38.258640px;}
._26{width:39.262320px;}
._1e{width:45.776160px;}
._25{width:49.780080px;}
._27{width:54.808560px;}
._28{width:60.477120px;}
._22{width:67.954560px;}
._21{width:69.194640px;}
._29{width:83.305440px;}
._1f{width:99.389520px;}
._1d{width:108.404640px;}
._4{width:136.056000px;}
._2a{width:156.750480px;}
._20{width:178.443360px;}
._3{width:636.906000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y145{bottom:3.240000px;}
.y18b{bottom:20.340000px;}
.y144{bottom:20.520000px;}
.y178{bottom:33.660000px;}
.y1dd{bottom:34.194000px;}
.y1cc{bottom:34.200000px;}
.y1d3{bottom:34.380000px;}
.y176{bottom:34.560000px;}
.y165{bottom:34.740000px;}
.y167{bottom:34.920000px;}
.y1d0{bottom:35.100000px;}
.y1d8{bottom:35.145000px;}
.y169{bottom:35.634000px;}
.y16c{bottom:35.640000px;}
.yc{bottom:36.720000px;}
.y143{bottom:37.620000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y128{bottom:111.276000px;}
.y18f{bottom:114.516000px;}
.ye3{bottom:115.596000px;}
.yd2{bottom:116.676000px;}
.y76{bottom:118.836000px;}
.y1dc{bottom:120.816000px;}
.ya0{bottom:123.156000px;}
.y109{bottom:124.416000px;}
.y168{bottom:124.956000px;}
.y127{bottom:128.376000px;}
.y1ca{bottom:129.456000px;}
.y18e{bottom:131.796000px;}
.y40{bottom:131.976000px;}
.ye2{bottom:132.696000px;}
.yd1{bottom:133.776000px;}
.y75{bottom:135.936000px;}
.y1b1{bottom:139.176000px;}
.y9f{bottom:140.256000px;}
.y108{bottom:141.696000px;}
.y126{bottom:145.656000px;}
.y140{bottom:146.736000px;}
.y18d{bottom:149.076000px;}
.y3f{bottom:149.256000px;}
.ye1{bottom:149.976000px;}
.yd0{bottom:151.050000px;}
.y74{bottom:153.210000px;}
.y1b0{bottom:156.450000px;}
.y9e{bottom:158.610000px;}
.y107{bottom:158.970000px;}
.y125{bottom:162.930000px;}
.y18c{bottom:163.830000px;}
.y13f{bottom:164.010000px;}
.y3e{bottom:166.350000px;}
.ye0{bottom:167.250000px;}
.ycf{bottom:168.330000px;}
.y1db{bottom:169.770000px;}
.y73{bottom:170.490000px;}
.y1af{bottom:174.810000px;}
.y166{bottom:175.350000px;}
.y9d{bottom:175.890000px;}
.y106{bottom:177.150000px;}
.y124{bottom:180.210000px;}
.y13e{bottom:181.290000px;}
.y3d{bottom:183.630000px;}
.ydf{bottom:184.530000px;}
.yce{bottom:185.610000px;}
.y72{bottom:187.770000px;}
.y1ae{bottom:192.090000px;}
.y9c{bottom:193.170000px;}
.y105{bottom:194.610000px;}
.y123{bottom:197.490000px;}
.y1c9{bottom:198.570000px;}
.y18a{bottom:199.110000px;}
.y13d{bottom:199.650000px;}
.y3c{bottom:200.910000px;}
.yde{bottom:201.810000px;}
.ycd{bottom:202.890000px;}
.y71{bottom:205.050000px;}
.y1ad{bottom:209.370000px;}
.y9b{bottom:210.450000px;}
.y104{bottom:212.070000px;}
.y122{bottom:214.770000px;}
.y1c8{bottom:215.850000px;}
.y13c{bottom:216.930000px;}
.y3b{bottom:218.190000px;}
.y1da{bottom:218.730000px;}
.ydd{bottom:219.090000px;}
.ycc{bottom:220.170000px;}
.y70{bottom:222.150000px;}
.y164{bottom:225.030000px;}
.y1ac{bottom:227.550000px;}
.y9a{bottom:228.630000px;}
.y103{bottom:229.350000px;}
.y121{bottom:231.870000px;}
.y1c7{bottom:232.950000px;}
.y13b{bottom:234.030000px;}
.y189{bottom:234.210000px;}
.y3a{bottom:235.470000px;}
.ydc{bottom:236.190000px;}
.ycb{bottom:237.270000px;}
.y6f{bottom:239.430000px;}
.y99{bottom:245.910000px;}
.y102{bottom:247.710000px;}
.y120{bottom:249.150000px;}
.y1c6{bottom:250.230000px;}
.y13a{bottom:252.390000px;}
.y39{bottom:252.750000px;}
.ydb{bottom:253.470000px;}
.yca{bottom:254.550000px;}
.y6e{bottom:256.710000px;}
.y98{bottom:263.190000px;}
.y1ab{bottom:264.270000px;}
.y101{bottom:264.990000px;}
.y11f{bottom:266.430000px;}
.y1c5{bottom:267.510000px;}
.y1d9{bottom:267.690000px;}
.y188{bottom:269.490000px;}
.y139{bottom:269.670000px;}
.y38{bottom:269.850000px;}
.yda{bottom:270.750000px;}
.yc9{bottom:271.830000px;}
.y6d{bottom:273.990000px;}
.y163{bottom:277.770000px;}
.y97{bottom:281.550000px;}
.y100{bottom:282.630000px;}
.y11e{bottom:283.710000px;}
.y1c4{bottom:284.790000px;}
.y138{bottom:286.950000px;}
.y37{bottom:287.130000px;}
.yd9{bottom:288.030000px;}
.yc8{bottom:289.110000px;}
.y6c{bottom:291.270000px;}
.y162{bottom:295.050000px;}
.y96{bottom:298.830000px;}
.yff{bottom:300.090000px;}
.y11d{bottom:300.990000px;}
.y1c3{bottom:302.070000px;}
.y137{bottom:304.230000px;}
.y36{bottom:304.410000px;}
.yd8{bottom:305.310000px;}
.yc7{bottom:306.390000px;}
.y187{bottom:308.010000px;}
.y6b{bottom:308.550000px;}
.y161{bottom:312.330000px;}
.y1aa{bottom:316.110000px;}
.y1d7{bottom:316.650000px;}
.y95{bottom:317.190000px;}
.yfe{bottom:317.370000px;}
.y11c{bottom:318.270000px;}
.y1c2{bottom:319.350000px;}
.y136{bottom:321.330000px;}
.y35{bottom:321.690000px;}
.yd7{bottom:322.410000px;}
.yc6{bottom:323.490000px;}
.y6a{bottom:325.650000px;}
.y186{bottom:326.370000px;}
.y160{bottom:329.610000px;}
.y1a9{bottom:333.210000px;}
.y94{bottom:334.290000px;}
.yfd{bottom:334.650000px;}
.y11b{bottom:335.370000px;}
.y1c1{bottom:336.495000px;}
.y135{bottom:338.655000px;}
.y34{bottom:339.015000px;}
.yd6{bottom:339.735000px;}
.yc5{bottom:340.815000px;}
.y69{bottom:342.975000px;}
.y185{bottom:343.695000px;}
.y15f{bottom:346.755000px;}
.y1a8{bottom:350.535000px;}
.y93{bottom:351.615000px;}
.yfc{bottom:352.155000px;}
.y11a{bottom:352.695000px;}
.y1c0{bottom:353.775000px;}
.y134{bottom:355.935000px;}
.y33{bottom:356.295000px;}
.yd5{bottom:357.015000px;}
.yc4{bottom:358.095000px;}
.y68{bottom:360.255000px;}
.y184{bottom:361.875000px;}
.y15e{bottom:364.035000px;}
.y1d6{bottom:366.555000px;}
.y1a7{bottom:367.815000px;}
.y92{bottom:368.895000px;}
.y119{bottom:369.975000px;}
.yfb{bottom:370.515000px;}
.y1bf{bottom:371.055000px;}
.y133{bottom:373.215000px;}
.y32{bottom:373.395000px;}
.yc3{bottom:375.375000px;}
.y67{bottom:377.535000px;}
.y183{bottom:379.155000px;}
.y15d{bottom:381.315000px;}
.y1a6{bottom:385.095000px;}
.y91{bottom:387.255000px;}
.yfa{bottom:387.795000px;}
.y1be{bottom:388.335000px;}
.y132{bottom:390.495000px;}
.y31{bottom:390.675000px;}
.yc2{bottom:392.655000px;}
.y66{bottom:394.815000px;}
.y182{bottom:396.435000px;}
.y15c{bottom:398.595000px;}
.y1a5{bottom:402.375000px;}
.y90{bottom:404.535000px;}
.yf9{bottom:405.075000px;}
.y1bd{bottom:405.615000px;}
.y131{bottom:407.775000px;}
.y30{bottom:407.955000px;}
.yc1{bottom:409.935000px;}
.yd4{bottom:411.015000px;}
.y65{bottom:412.095000px;}
.y181{bottom:413.715000px;}
.y1d5{bottom:415.515000px;}
.y15b{bottom:416.955000px;}
.y1a4{bottom:419.655000px;}
.y1f6{bottom:420.555000px;}
.y8f{bottom:421.815000px;}
.yf8{bottom:422.175000px;}
.y1bc{bottom:422.715000px;}
.y130{bottom:424.875000px;}
.y2f{bottom:425.235000px;}
.yc0{bottom:427.035000px;}
.yd3{bottom:428.115000px;}
.y64{bottom:429.195000px;}
.y180{bottom:430.995000px;}
.y15a{bottom:435.135000px;}
.y1a3{bottom:436.755000px;}
.y1f5{bottom:437.835000px;}
.y8e{bottom:438.915000px;}
.yf7{bottom:439.455000px;}
.y118{bottom:439.995000px;}
.y12f{bottom:442.155000px;}
.y2e{bottom:442.515000px;}
.ybf{bottom:444.315000px;}
.y63{bottom:446.475000px;}
.y17f{bottom:448.275000px;}
.y159{bottom:453.495000px;}
.y1a2{bottom:454.035000px;}
.y1f4{bottom:455.115000px;}
.yf6{bottom:456.735000px;}
.y8d{bottom:457.275000px;}
.y12e{bottom:459.435000px;}
.y2d{bottom:459.795000px;}
.ybe{bottom:461.595000px;}
.y62{bottom:463.755000px;}
.y1d4{bottom:464.475000px;}
.y17e{bottom:465.375000px;}
.y1a1{bottom:471.315000px;}
.y158{bottom:471.855000px;}
.y1f3{bottom:472.395000px;}
.yf5{bottom:474.015000px;}
.y8c{bottom:474.555000px;}
.y117{bottom:475.635000px;}
.y12d{bottom:476.715000px;}
.y2c{bottom:476.895000px;}
.ybd{bottom:478.875000px;}
.y61{bottom:481.035000px;}
.y17d{bottom:482.655000px;}
.y1a0{bottom:488.595000px;}
.y157{bottom:489.315000px;}
.y1f2{bottom:489.675000px;}
.yf4{bottom:491.295000px;}
.y8b{bottom:491.835000px;}
.y116{bottom:492.915000px;}
.y12c{bottom:493.995000px;}
.y2b{bottom:494.175000px;}
.ybc{bottom:496.155000px;}
.y60{bottom:498.315000px;}
.y17c{bottom:499.935000px;}
.y156{bottom:506.775000px;}
.y19f{bottom:506.955000px;}
.yf3{bottom:508.755000px;}
.y1bb{bottom:509.115000px;}
.y8a{bottom:510.195000px;}
.y12b{bottom:511.275000px;}
.y2a{bottom:511.455000px;}
.ybb{bottom:513.435000px;}
.y17b{bottom:514.695000px;}
.y5f{bottom:515.415000px;}
.y155{bottom:523.875000px;}
.y19e{bottom:524.055000px;}
.yf2{bottom:526.215000px;}
.y89{bottom:527.295000px;}
.y115{bottom:528.375000px;}
.y29{bottom:528.735000px;}
.yba{bottom:530.535000px;}
.y5e{bottom:532.695000px;}
.y154{bottom:541.155000px;}
.y1f1{bottom:541.335000px;}
.y19d{bottom:542.415000px;}
.y1ba{bottom:543.495000px;}
.yf1{bottom:543.855000px;}
.y88{bottom:544.575000px;}
.y114{bottom:545.655000px;}
.y28{bottom:546.015000px;}
.yb9{bottom:547.815000px;}
.y5d{bottom:549.975000px;}
.y153{bottom:558.435000px;}
.y1f0{bottom:558.615000px;}
.y19c{bottom:560.775000px;}
.yf0{bottom:562.215000px;}
.y1d2{bottom:562.575000px;}
.y87{bottom:562.935000px;}
.y27{bottom:563.115000px;}
.y17a{bottom:564.015000px;}
.yb8{bottom:565.095000px;}
.y5c{bottom:567.255000px;}
.y152{bottom:575.715000px;}
.y1ef{bottom:576.975000px;}
.y19b{bottom:578.055000px;}
.yef{bottom:579.495000px;}
.y86{bottom:580.215000px;}
.y26{bottom:580.395000px;}
.yb7{bottom:582.375000px;}
.y5b{bottom:584.535000px;}
.y151{bottom:592.995000px;}
.y1ee{bottom:594.075000px;}
.y19a{bottom:595.335000px;}
.yee{bottom:596.775000px;}
.y85{bottom:597.495000px;}
.y25{bottom:597.675000px;}
.y113{bottom:598.575000px;}
.yb6{bottom:599.655000px;}
.y5a{bottom:601.815000px;}
.y150{bottom:610.305000px;}
.y1d1{bottom:611.565000px;}
.y179{bottom:612.465000px;}
.y199{bottom:612.645000px;}
.yed{bottom:613.905000px;}
.y12a{bottom:614.805000px;}
.y24{bottom:614.985000px;}
.y84{bottom:615.885000px;}
.yb5{bottom:616.785000px;}
.y59{bottom:618.945000px;}
.y14f{bottom:628.485000px;}
.y198{bottom:629.745000px;}
.yec{bottom:631.365000px;}
.y129{bottom:631.905000px;}
.y23{bottom:632.265000px;}
.y83{bottom:632.985000px;}
.yb4{bottom:634.065000px;}
.y58{bottom:636.225000px;}
.y14e{bottom:645.765000px;}
.y197{bottom:647.025000px;}
.y1ed{bottom:648.105000px;}
.yeb{bottom:648.825000px;}
.y82{bottom:650.265000px;}
.yb3{bottom:651.345000px;}
.y22{bottom:653.145000px;}
.y57{bottom:653.505000px;}
.y1cf{bottom:660.525000px;}
.y177{bottom:660.885000px;}
.y14d{bottom:664.125000px;}
.y196{bottom:664.305000px;}
.y1ec{bottom:666.465000px;}
.yea{bottom:667.185000px;}
.y81{bottom:667.545000px;}
.yb2{bottom:668.625000px;}
.y21{bottom:670.425000px;}
.y56{bottom:670.785000px;}
.y14c{bottom:681.405000px;}
.y195{bottom:681.585000px;}
.y1eb{bottom:683.745000px;}
.ye9{bottom:684.465000px;}
.y80{bottom:684.825000px;}
.yb1{bottom:685.905000px;}
.y20{bottom:687.705000px;}
.y55{bottom:688.065000px;}
.y1ea{bottom:698.505000px;}
.y194{bottom:698.865000px;}
.y14b{bottom:699.765000px;}
.ye8{bottom:701.565000px;}
.y7f{bottom:702.105000px;}
.yb0{bottom:703.185000px;}
.y1f{bottom:704.985000px;}
.y54{bottom:705.345000px;}
.y175{bottom:709.305000px;}
.y1ce{bottom:710.385000px;}
.y1b9{bottom:716.145000px;}
.y1e9{bottom:716.505000px;}
.y14a{bottom:716.865000px;}
.y193{bottom:717.045000px;}
.ye7{bottom:719.025000px;}
.y112{bottom:719.205000px;}
.y7e{bottom:720.285000px;}
.y1e{bottom:722.265000px;}
.y53{bottom:722.445000px;}
.y149{bottom:731.625000px;}
.y1b8{bottom:733.245000px;}
.y1e8{bottom:734.505000px;}
.y192{bottom:735.405000px;}
.ye6{bottom:736.485000px;}
.y7d{bottom:737.565000px;}
.y1d{bottom:739.545000px;}
.y52{bottom:739.725000px;}
.y1b7{bottom:750.525000px;}
.y1e7{bottom:752.505000px;}
.ye5{bottom:753.765000px;}
.y7c{bottom:754.845000px;}
.y1c{bottom:756.645000px;}
.y51{bottom:757.005000px;}
.y1cd{bottom:759.345000px;}
.y174{bottom:761.865000px;}
.y148{bottom:766.905000px;}
.y1b6{bottom:768.885000px;}
.y1e6{bottom:770.325000px;}
.y191{bottom:771.045000px;}
.ye4{bottom:771.945000px;}
.y7b{bottom:772.125000px;}
.y1b{bottom:773.925000px;}
.y50{bottom:774.285000px;}
.y173{bottom:779.145000px;}
.y1b5{bottom:786.165000px;}
.y190{bottom:788.325000px;}
.yaf{bottom:789.405000px;}
.y7a{bottom:790.485000px;}
.y1a{bottom:791.205000px;}
.y4f{bottom:791.565000px;}
.y172{bottom:796.425000px;}
.y147{bottom:802.185000px;}
.y1b4{bottom:804.525000px;}
.yae{bottom:806.685000px;}
.y79{bottom:807.765000px;}
.y1cb{bottom:808.305000px;}
.y19{bottom:808.485000px;}
.y4e{bottom:808.845000px;}
.y171{bottom:813.705000px;}
.y1b3{bottom:822.705000px;}
.yad{bottom:823.785000px;}
.y78{bottom:824.865000px;}
.y18{bottom:825.765000px;}
.y4d{bottom:825.945000px;}
.y1e5{bottom:826.125000px;}
.y170{bottom:830.805000px;}
.y146{bottom:837.465000px;}
.y1b2{bottom:839.985000px;}
.yac{bottom:841.065000px;}
.y77{bottom:842.145000px;}
.y17{bottom:843.045000px;}
.y4c{bottom:843.225000px;}
.y1e4{bottom:843.405000px;}
.y16f{bottom:848.085000px;}
.y1e3{bottom:858.165000px;}
.yab{bottom:858.345000px;}
.y111{bottom:859.425000px;}
.y16{bottom:860.145000px;}
.y4b{bottom:860.505000px;}
.y16e{bottom:865.365000px;}
.y142{bottom:872.790000px;}
.yaa{bottom:875.670000px;}
.y1e2{bottom:876.210000px;}
.y110{bottom:876.750000px;}
.y15{bottom:877.470000px;}
.y4a{bottom:877.830000px;}
.y16d{bottom:882.690000px;}
.ya9{bottom:892.950000px;}
.y10f{bottom:894.030000px;}
.y1e1{bottom:894.210000px;}
.y14{bottom:894.750000px;}
.y49{bottom:895.110000px;}
.y16b{bottom:897.450000px;}
.ya8{bottom:910.230000px;}
.y10e{bottom:911.130000px;}
.y48{bottom:912.210000px;}
.y13{bottom:915.990000px;}
.ya7{bottom:927.330000px;}
.y10d{bottom:928.410000px;}
.y47{bottom:929.490000px;}
.y1e0{bottom:930.210000px;}
.y12{bottom:935.070000px;}
.ya6{bottom:944.610000px;}
.y10c{bottom:945.690000px;}
.y46{bottom:946.770000px;}
.y16a{bottom:947.850000px;}
.y1df{bottom:948.210000px;}
.y11{bottom:954.150000px;}
.ya5{bottom:961.890000px;}
.y10b{bottom:962.970000px;}
.y45{bottom:964.050000px;}
.y10{bottom:973.050000px;}
.ya4{bottom:979.170000px;}
.y10a{bottom:980.250000px;}
.y44{bottom:981.330000px;}
.yf{bottom:991.590000px;}
.ya3{bottom:996.450000px;}
.y141{bottom:997.530000px;}
.y1de{bottom:998.070000px;}
.y43{bottom:998.610000px;}
.ye{bottom:1009.590000px;}
.ya2{bottom:1014.630000px;}
.y42{bottom:1015.710000px;}
.yd{bottom:1030.290000px;}
.ya1{bottom:1031.910000px;}
.y41{bottom:1032.990000px;}
.y9{bottom:1051.530000px;}
.y8{bottom:1070.430000px;}
.y7{bottom:1087.710000px;}
.y6{bottom:1105.710000px;}
.y5{bottom:1122.450000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h1b{height:17.100000px;}
.h19{height:17.280000px;}
.h1a{height:17.316000px;}
.h14{height:34.380000px;}
.he{height:34.560000px;}
.hd{height:34.596000px;}
.h7{height:38.759766px;}
.h5{height:42.164648px;}
.h2{height:42.894141px;}
.h9{height:43.506914px;}
.h8{height:46.736719px;}
.h3{height:47.545312px;}
.h12{height:47.700000px;}
.h13{height:47.736000px;}
.h17{height:48.096000px;}
.h15{height:48.240000px;}
.h11{height:48.600000px;}
.hf{height:48.780000px;}
.h16{height:49.140000px;}
.h18{height:49.176000px;}
.ha{height:49.255313px;}
.h10{height:49.680000px;}
.hb{height:50.364141px;}
.h4{height:50.800781px;}
.hc{height:51.660000px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:62.676000px;}
.w17{width:64.080000px;}
.w16{width:82.296000px;}
.we{width:86.400000px;}
.w15{width:90.360000px;}
.w3{width:97.380000px;}
.w7{width:98.496000px;}
.w11{width:103.140000px;}
.w4{width:106.596000px;}
.w18{width:108.720000px;}
.w5{width:113.580000px;}
.w8{width:122.400000px;}
.w6{width:133.416000px;}
.w1a{width:149.616000px;}
.w12{width:175.170000px;}
.w19{width:176.970000px;}
.wb{width:182.910000px;}
.wd{width:190.650000px;}
.w13{width:212.610000px;}
.wf{width:245.370000px;}
.wc{width:287.310000px;}
.w9{width:287.670000px;}
.wa{width:400.395000px;}
.w14{width:456.015000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.740000px;}
.x8{left:108.035987px;}
.x2{left:110.015987px;}
.xa{left:119.195987px;}
.x11{left:122.975987px;}
.xf{left:127.115987px;}
.x1{left:130.895987px;}
.x12{left:135.035987px;}
.x25{left:146.915987px;}
.x9{left:155.729987px;}
.x5{left:157.169987px;}
.x10{left:162.029987px;}
.x1c{left:189.029987px;}
.x1b{left:196.589987px;}
.x2e{left:199.830000px;}
.x20{left:206.850000px;}
.x1d{left:216.029987px;}
.x2f{left:282.855000px;}
.x1a{left:285.914987px;}
.x19{left:293.114987px;}
.x1e{left:294.194987px;}
.x21{left:314.175000px;}
.x16{left:317.414987px;}
.x17{left:318.674987px;}
.x2d{left:322.095000px;}
.x18{left:323.894987px;}
.x14{left:328.394987px;}
.xc{left:342.254987px;}
.xb{left:344.774987px;}
.x30{left:347.655000px;}
.x13{left:354.314987px;}
.xd{left:366.914987px;}
.xe{left:379.874987px;}
.x7{left:386.354987px;}
.x2b{left:396.074987px;}
.x26{left:397.155000px;}
.x15{left:400.754987px;}
.x6{left:412.274987px;}
.x2c{left:415.334987px;}
.x22{left:428.475000px;}
.x28{left:441.975000px;}
.x3{left:446.474987px;}
.x31{left:457.095000px;}
.x29{left:505.365000px;}
.x4{left:518.324987px;}
.x23{left:562.605000px;}
.x27{left:580.425000px;}
.x2a{left:609.225000px;}
.x32{left:634.785000px;}
.x24{left:662.010000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.lsd{letter-spacing:-0.736000pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.325333pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.221333pt;}
.ls1b{letter-spacing:-0.215467pt;}
.ls17{letter-spacing:-0.157867pt;}
.ls1d{letter-spacing:-0.147733pt;}
.ls18{letter-spacing:-0.107733pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls1a{letter-spacing:-0.089600pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.lsa{letter-spacing:0.047360pt;}
.ls19{letter-spacing:0.077333pt;}
.ls31{letter-spacing:0.094720pt;}
.ls24{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.117867pt;}
.ls21{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.136320pt;}
.lsc{letter-spacing:0.136533pt;}
.ls11{letter-spacing:0.138667pt;}
.ls2a{letter-spacing:0.150400pt;}
.ls32{letter-spacing:0.158080pt;}
.ls1{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.173333pt;}
.ls23{letter-spacing:0.200960pt;}
.ls12{letter-spacing:0.211200pt;}
.ls1e{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls2d{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.320000pt;}
.ls30{letter-spacing:0.416000pt;}
.lse{letter-spacing:0.426667pt;}
.ls33{letter-spacing:0.632320pt;}
.ls27{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.800000pt;}
.ls28{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls34{letter-spacing:4.000000pt;}
.ls10{letter-spacing:5.280000pt;}
.ls13{letter-spacing:8.950400pt;}
.ls2f{letter-spacing:14.672640pt;}
.ls20{letter-spacing:40.891307pt;}
.ls22{letter-spacing:49.232640pt;}
.ls8{letter-spacing:56.891307pt;}
.ls5{letter-spacing:80.571307pt;}
.ls2{letter-spacing:81.211307pt;}
.ws8{word-spacing:-53.120000pt;}
.ws21{word-spacing:-34.560000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.552533pt;}
.ws20{word-spacing:-13.545600pt;}
.ws17{word-spacing:-13.510933pt;}
.ws22{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.416533pt;}
.ws19{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.ws1a{word-spacing:-13.049067pt;}
.ws1e{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.859733pt;}
.ws1c{word-spacing:-11.836800pt;}
.wsb{word-spacing:-11.804267pt;}
.ws11{word-spacing:-11.686400pt;}
.ws13{word-spacing:-11.596800pt;}
.ws15{word-spacing:-11.591467pt;}
.ws10{word-spacing:-11.578667pt;}
.ws16{word-spacing:-11.538667pt;}
.wsd{word-spacing:-11.528533pt;}
.ws14{word-spacing:-11.470933pt;}
.ws18{word-spacing:-11.465067pt;}
.wsa{word-spacing:-11.361067pt;}
.ws2{word-spacing:-8.640000pt;}
.wse{word-spacing:-2.736000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.472960pt;}
.wsf{word-spacing:1.231040pt;}
.ws1d{word-spacing:3.981440pt;}
.ws12{word-spacing:5.253440pt;}
._10{margin-left:-3.346560pt;}
._a{margin-left:-2.177920pt;}
._0{margin-left:-0.898773pt;}
._2{width:1.001600pt;}
._d{width:2.104533pt;}
._1{width:3.015040pt;}
._5{width:4.000000pt;}
._8{width:5.189120pt;}
._7{width:6.549120pt;}
._6{width:7.596160pt;}
._c{width:8.710827pt;}
._b{width:9.782400pt;}
._17{width:10.737920pt;}
._11{width:12.005120pt;}
._1c{width:12.980907pt;}
._9{width:14.236160pt;}
._f{width:15.315627pt;}
._e{width:16.307840pt;}
._18{width:17.673600pt;}
._13{width:19.130880pt;}
._12{width:20.185600pt;}
._19{width:21.877333pt;}
._1b{width:23.495467pt;}
._1a{width:24.459947pt;}
._16{width:25.642453pt;}
._15{width:26.559360pt;}
._14{width:30.007680pt;}
._24{width:32.992853pt;}
._23{width:34.007680pt;}
._26{width:34.899840pt;}
._1e{width:40.689920pt;}
._25{width:44.248960pt;}
._27{width:48.718720pt;}
._28{width:53.757440pt;}
._22{width:60.404053pt;}
._21{width:61.506347pt;}
._29{width:74.049280pt;}
._1f{width:88.346240pt;}
._1d{width:96.359680pt;}
._4{width:120.938667pt;}
._2a{width:139.333760pt;}
._20{width:158.616320pt;}
._3{width:566.138667pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:2.880000pt;}
.y18b{bottom:18.080000pt;}
.y144{bottom:18.240000pt;}
.y178{bottom:29.920000pt;}
.y1dd{bottom:30.394667pt;}
.y1cc{bottom:30.400000pt;}
.y1d3{bottom:30.560000pt;}
.y176{bottom:30.720000pt;}
.y165{bottom:30.880000pt;}
.y167{bottom:31.040000pt;}
.y1d0{bottom:31.200000pt;}
.y1d8{bottom:31.240000pt;}
.y169{bottom:31.674667pt;}
.y16c{bottom:31.680000pt;}
.yc{bottom:32.640000pt;}
.y143{bottom:33.440000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y128{bottom:98.912000pt;}
.y18f{bottom:101.792000pt;}
.ye3{bottom:102.752000pt;}
.yd2{bottom:103.712000pt;}
.y76{bottom:105.632000pt;}
.y1dc{bottom:107.392000pt;}
.ya0{bottom:109.472000pt;}
.y109{bottom:110.592000pt;}
.y168{bottom:111.072000pt;}
.y127{bottom:114.112000pt;}
.y1ca{bottom:115.072000pt;}
.y18e{bottom:117.152000pt;}
.y40{bottom:117.312000pt;}
.ye2{bottom:117.952000pt;}
.yd1{bottom:118.912000pt;}
.y75{bottom:120.832000pt;}
.y1b1{bottom:123.712000pt;}
.y9f{bottom:124.672000pt;}
.y108{bottom:125.952000pt;}
.y126{bottom:129.472000pt;}
.y140{bottom:130.432000pt;}
.y18d{bottom:132.512000pt;}
.y3f{bottom:132.672000pt;}
.ye1{bottom:133.312000pt;}
.yd0{bottom:134.266667pt;}
.y74{bottom:136.186667pt;}
.y1b0{bottom:139.066667pt;}
.y9e{bottom:140.986667pt;}
.y107{bottom:141.306667pt;}
.y125{bottom:144.826667pt;}
.y18c{bottom:145.626667pt;}
.y13f{bottom:145.786667pt;}
.y3e{bottom:147.866667pt;}
.ye0{bottom:148.666667pt;}
.ycf{bottom:149.626667pt;}
.y1db{bottom:150.906667pt;}
.y73{bottom:151.546667pt;}
.y1af{bottom:155.386667pt;}
.y166{bottom:155.866667pt;}
.y9d{bottom:156.346667pt;}
.y106{bottom:157.466667pt;}
.y124{bottom:160.186667pt;}
.y13e{bottom:161.146667pt;}
.y3d{bottom:163.226667pt;}
.ydf{bottom:164.026667pt;}
.yce{bottom:164.986667pt;}
.y72{bottom:166.906667pt;}
.y1ae{bottom:170.746667pt;}
.y9c{bottom:171.706667pt;}
.y105{bottom:172.986667pt;}
.y123{bottom:175.546667pt;}
.y1c9{bottom:176.506667pt;}
.y18a{bottom:176.986667pt;}
.y13d{bottom:177.466667pt;}
.y3c{bottom:178.586667pt;}
.yde{bottom:179.386667pt;}
.ycd{bottom:180.346667pt;}
.y71{bottom:182.266667pt;}
.y1ad{bottom:186.106667pt;}
.y9b{bottom:187.066667pt;}
.y104{bottom:188.506667pt;}
.y122{bottom:190.906667pt;}
.y1c8{bottom:191.866667pt;}
.y13c{bottom:192.826667pt;}
.y3b{bottom:193.946667pt;}
.y1da{bottom:194.426667pt;}
.ydd{bottom:194.746667pt;}
.ycc{bottom:195.706667pt;}
.y70{bottom:197.466667pt;}
.y164{bottom:200.026667pt;}
.y1ac{bottom:202.266667pt;}
.y9a{bottom:203.226667pt;}
.y103{bottom:203.866667pt;}
.y121{bottom:206.106667pt;}
.y1c7{bottom:207.066667pt;}
.y13b{bottom:208.026667pt;}
.y189{bottom:208.186667pt;}
.y3a{bottom:209.306667pt;}
.ydc{bottom:209.946667pt;}
.ycb{bottom:210.906667pt;}
.y6f{bottom:212.826667pt;}
.y99{bottom:218.586667pt;}
.y102{bottom:220.186667pt;}
.y120{bottom:221.466667pt;}
.y1c6{bottom:222.426667pt;}
.y13a{bottom:224.346667pt;}
.y39{bottom:224.666667pt;}
.ydb{bottom:225.306667pt;}
.yca{bottom:226.266667pt;}
.y6e{bottom:228.186667pt;}
.y98{bottom:233.946667pt;}
.y1ab{bottom:234.906667pt;}
.y101{bottom:235.546667pt;}
.y11f{bottom:236.826667pt;}
.y1c5{bottom:237.786667pt;}
.y1d9{bottom:237.946667pt;}
.y188{bottom:239.546667pt;}
.y139{bottom:239.706667pt;}
.y38{bottom:239.866667pt;}
.yda{bottom:240.666667pt;}
.yc9{bottom:241.626667pt;}
.y6d{bottom:243.546667pt;}
.y163{bottom:246.906667pt;}
.y97{bottom:250.266667pt;}
.y100{bottom:251.226667pt;}
.y11e{bottom:252.186667pt;}
.y1c4{bottom:253.146667pt;}
.y138{bottom:255.066667pt;}
.y37{bottom:255.226667pt;}
.yd9{bottom:256.026667pt;}
.yc8{bottom:256.986667pt;}
.y6c{bottom:258.906667pt;}
.y162{bottom:262.266667pt;}
.y96{bottom:265.626667pt;}
.yff{bottom:266.746667pt;}
.y11d{bottom:267.546667pt;}
.y1c3{bottom:268.506667pt;}
.y137{bottom:270.426667pt;}
.y36{bottom:270.586667pt;}
.yd8{bottom:271.386667pt;}
.yc7{bottom:272.346667pt;}
.y187{bottom:273.786667pt;}
.y6b{bottom:274.266667pt;}
.y161{bottom:277.626667pt;}
.y1aa{bottom:280.986667pt;}
.y1d7{bottom:281.466667pt;}
.y95{bottom:281.946667pt;}
.yfe{bottom:282.106667pt;}
.y11c{bottom:282.906667pt;}
.y1c2{bottom:283.866667pt;}
.y136{bottom:285.626667pt;}
.y35{bottom:285.946667pt;}
.yd7{bottom:286.586667pt;}
.yc6{bottom:287.546667pt;}
.y6a{bottom:289.466667pt;}
.y186{bottom:290.106667pt;}
.y160{bottom:292.986667pt;}
.y1a9{bottom:296.186667pt;}
.y94{bottom:297.146667pt;}
.yfd{bottom:297.466667pt;}
.y11b{bottom:298.106667pt;}
.y1c1{bottom:299.106667pt;}
.y135{bottom:301.026667pt;}
.y34{bottom:301.346667pt;}
.yd6{bottom:301.986667pt;}
.yc5{bottom:302.946667pt;}
.y69{bottom:304.866667pt;}
.y185{bottom:305.506667pt;}
.y15f{bottom:308.226667pt;}
.y1a8{bottom:311.586667pt;}
.y93{bottom:312.546667pt;}
.yfc{bottom:313.026667pt;}
.y11a{bottom:313.506667pt;}
.y1c0{bottom:314.466667pt;}
.y134{bottom:316.386667pt;}
.y33{bottom:316.706667pt;}
.yd5{bottom:317.346667pt;}
.yc4{bottom:318.306667pt;}
.y68{bottom:320.226667pt;}
.y184{bottom:321.666667pt;}
.y15e{bottom:323.586667pt;}
.y1d6{bottom:325.826667pt;}
.y1a7{bottom:326.946667pt;}
.y92{bottom:327.906667pt;}
.y119{bottom:328.866667pt;}
.yfb{bottom:329.346667pt;}
.y1bf{bottom:329.826667pt;}
.y133{bottom:331.746667pt;}
.y32{bottom:331.906667pt;}
.yc3{bottom:333.666667pt;}
.y67{bottom:335.586667pt;}
.y183{bottom:337.026667pt;}
.y15d{bottom:338.946667pt;}
.y1a6{bottom:342.306667pt;}
.y91{bottom:344.226667pt;}
.yfa{bottom:344.706667pt;}
.y1be{bottom:345.186667pt;}
.y132{bottom:347.106667pt;}
.y31{bottom:347.266667pt;}
.yc2{bottom:349.026667pt;}
.y66{bottom:350.946667pt;}
.y182{bottom:352.386667pt;}
.y15c{bottom:354.306667pt;}
.y1a5{bottom:357.666667pt;}
.y90{bottom:359.586667pt;}
.yf9{bottom:360.066667pt;}
.y1bd{bottom:360.546667pt;}
.y131{bottom:362.466667pt;}
.y30{bottom:362.626667pt;}
.yc1{bottom:364.386667pt;}
.yd4{bottom:365.346667pt;}
.y65{bottom:366.306667pt;}
.y181{bottom:367.746667pt;}
.y1d5{bottom:369.346667pt;}
.y15b{bottom:370.626667pt;}
.y1a4{bottom:373.026667pt;}
.y1f6{bottom:373.826667pt;}
.y8f{bottom:374.946667pt;}
.yf8{bottom:375.266667pt;}
.y1bc{bottom:375.746667pt;}
.y130{bottom:377.666667pt;}
.y2f{bottom:377.986667pt;}
.yc0{bottom:379.586667pt;}
.yd3{bottom:380.546667pt;}
.y64{bottom:381.506667pt;}
.y180{bottom:383.106667pt;}
.y15a{bottom:386.786667pt;}
.y1a3{bottom:388.226667pt;}
.y1f5{bottom:389.186667pt;}
.y8e{bottom:390.146667pt;}
.yf7{bottom:390.626667pt;}
.y118{bottom:391.106667pt;}
.y12f{bottom:393.026667pt;}
.y2e{bottom:393.346667pt;}
.ybf{bottom:394.946667pt;}
.y63{bottom:396.866667pt;}
.y17f{bottom:398.466667pt;}
.y159{bottom:403.106667pt;}
.y1a2{bottom:403.586667pt;}
.y1f4{bottom:404.546667pt;}
.yf6{bottom:405.986667pt;}
.y8d{bottom:406.466667pt;}
.y12e{bottom:408.386667pt;}
.y2d{bottom:408.706667pt;}
.ybe{bottom:410.306667pt;}
.y62{bottom:412.226667pt;}
.y1d4{bottom:412.866667pt;}
.y17e{bottom:413.666667pt;}
.y1a1{bottom:418.946667pt;}
.y158{bottom:419.426667pt;}
.y1f3{bottom:419.906667pt;}
.yf5{bottom:421.346667pt;}
.y8c{bottom:421.826667pt;}
.y117{bottom:422.786667pt;}
.y12d{bottom:423.746667pt;}
.y2c{bottom:423.906667pt;}
.ybd{bottom:425.666667pt;}
.y61{bottom:427.586667pt;}
.y17d{bottom:429.026667pt;}
.y1a0{bottom:434.306667pt;}
.y157{bottom:434.946667pt;}
.y1f2{bottom:435.266667pt;}
.yf4{bottom:436.706667pt;}
.y8b{bottom:437.186667pt;}
.y116{bottom:438.146667pt;}
.y12c{bottom:439.106667pt;}
.y2b{bottom:439.266667pt;}
.ybc{bottom:441.026667pt;}
.y60{bottom:442.946667pt;}
.y17c{bottom:444.386667pt;}
.y156{bottom:450.466667pt;}
.y19f{bottom:450.626667pt;}
.yf3{bottom:452.226667pt;}
.y1bb{bottom:452.546667pt;}
.y8a{bottom:453.506667pt;}
.y12b{bottom:454.466667pt;}
.y2a{bottom:454.626667pt;}
.ybb{bottom:456.386667pt;}
.y17b{bottom:457.506667pt;}
.y5f{bottom:458.146667pt;}
.y155{bottom:465.666667pt;}
.y19e{bottom:465.826667pt;}
.yf2{bottom:467.746667pt;}
.y89{bottom:468.706667pt;}
.y115{bottom:469.666667pt;}
.y29{bottom:469.986667pt;}
.yba{bottom:471.586667pt;}
.y5e{bottom:473.506667pt;}
.y154{bottom:481.026667pt;}
.y1f1{bottom:481.186667pt;}
.y19d{bottom:482.146667pt;}
.y1ba{bottom:483.106667pt;}
.yf1{bottom:483.426667pt;}
.y88{bottom:484.066667pt;}
.y114{bottom:485.026667pt;}
.y28{bottom:485.346667pt;}
.yb9{bottom:486.946667pt;}
.y5d{bottom:488.866667pt;}
.y153{bottom:496.386667pt;}
.y1f0{bottom:496.546667pt;}
.y19c{bottom:498.466667pt;}
.yf0{bottom:499.746667pt;}
.y1d2{bottom:500.066667pt;}
.y87{bottom:500.386667pt;}
.y27{bottom:500.546667pt;}
.y17a{bottom:501.346667pt;}
.yb8{bottom:502.306667pt;}
.y5c{bottom:504.226667pt;}
.y152{bottom:511.746667pt;}
.y1ef{bottom:512.866667pt;}
.y19b{bottom:513.826667pt;}
.yef{bottom:515.106667pt;}
.y86{bottom:515.746667pt;}
.y26{bottom:515.906667pt;}
.yb7{bottom:517.666667pt;}
.y5b{bottom:519.586667pt;}
.y151{bottom:527.106667pt;}
.y1ee{bottom:528.066667pt;}
.y19a{bottom:529.186667pt;}
.yee{bottom:530.466667pt;}
.y85{bottom:531.106667pt;}
.y25{bottom:531.266667pt;}
.y113{bottom:532.066667pt;}
.yb6{bottom:533.026667pt;}
.y5a{bottom:534.946667pt;}
.y150{bottom:542.493333pt;}
.y1d1{bottom:543.613333pt;}
.y179{bottom:544.413333pt;}
.y199{bottom:544.573333pt;}
.yed{bottom:545.693333pt;}
.y12a{bottom:546.493333pt;}
.y24{bottom:546.653333pt;}
.y84{bottom:547.453333pt;}
.yb5{bottom:548.253333pt;}
.y59{bottom:550.173333pt;}
.y14f{bottom:558.653333pt;}
.y198{bottom:559.773333pt;}
.yec{bottom:561.213333pt;}
.y129{bottom:561.693333pt;}
.y23{bottom:562.013333pt;}
.y83{bottom:562.653333pt;}
.yb4{bottom:563.613333pt;}
.y58{bottom:565.533333pt;}
.y14e{bottom:574.013333pt;}
.y197{bottom:575.133333pt;}
.y1ed{bottom:576.093333pt;}
.yeb{bottom:576.733333pt;}
.y82{bottom:578.013333pt;}
.yb3{bottom:578.973333pt;}
.y22{bottom:580.573333pt;}
.y57{bottom:580.893333pt;}
.y1cf{bottom:587.133333pt;}
.y177{bottom:587.453333pt;}
.y14d{bottom:590.333333pt;}
.y196{bottom:590.493333pt;}
.y1ec{bottom:592.413333pt;}
.yea{bottom:593.053333pt;}
.y81{bottom:593.373333pt;}
.yb2{bottom:594.333333pt;}
.y21{bottom:595.933333pt;}
.y56{bottom:596.253333pt;}
.y14c{bottom:605.693333pt;}
.y195{bottom:605.853333pt;}
.y1eb{bottom:607.773333pt;}
.ye9{bottom:608.413333pt;}
.y80{bottom:608.733333pt;}
.yb1{bottom:609.693333pt;}
.y20{bottom:611.293333pt;}
.y55{bottom:611.613333pt;}
.y1ea{bottom:620.893333pt;}
.y194{bottom:621.213333pt;}
.y14b{bottom:622.013333pt;}
.ye8{bottom:623.613333pt;}
.y7f{bottom:624.093333pt;}
.yb0{bottom:625.053333pt;}
.y1f{bottom:626.653333pt;}
.y54{bottom:626.973333pt;}
.y175{bottom:630.493333pt;}
.y1ce{bottom:631.453333pt;}
.y1b9{bottom:636.573333pt;}
.y1e9{bottom:636.893333pt;}
.y14a{bottom:637.213333pt;}
.y193{bottom:637.373333pt;}
.ye7{bottom:639.133333pt;}
.y112{bottom:639.293333pt;}
.y7e{bottom:640.253333pt;}
.y1e{bottom:642.013333pt;}
.y53{bottom:642.173333pt;}
.y149{bottom:650.333333pt;}
.y1b8{bottom:651.773333pt;}
.y1e8{bottom:652.893333pt;}
.y192{bottom:653.693333pt;}
.ye6{bottom:654.653333pt;}
.y7d{bottom:655.613333pt;}
.y1d{bottom:657.373333pt;}
.y52{bottom:657.533333pt;}
.y1b7{bottom:667.133333pt;}
.y1e7{bottom:668.893333pt;}
.ye5{bottom:670.013333pt;}
.y7c{bottom:670.973333pt;}
.y1c{bottom:672.573333pt;}
.y51{bottom:672.893333pt;}
.y1cd{bottom:674.973333pt;}
.y174{bottom:677.213333pt;}
.y148{bottom:681.693333pt;}
.y1b6{bottom:683.453333pt;}
.y1e6{bottom:684.733333pt;}
.y191{bottom:685.373333pt;}
.ye4{bottom:686.173333pt;}
.y7b{bottom:686.333333pt;}
.y1b{bottom:687.933333pt;}
.y50{bottom:688.253333pt;}
.y173{bottom:692.573333pt;}
.y1b5{bottom:698.813333pt;}
.y190{bottom:700.733333pt;}
.yaf{bottom:701.693333pt;}
.y7a{bottom:702.653333pt;}
.y1a{bottom:703.293333pt;}
.y4f{bottom:703.613333pt;}
.y172{bottom:707.933333pt;}
.y147{bottom:713.053333pt;}
.y1b4{bottom:715.133333pt;}
.yae{bottom:717.053333pt;}
.y79{bottom:718.013333pt;}
.y1cb{bottom:718.493333pt;}
.y19{bottom:718.653333pt;}
.y4e{bottom:718.973333pt;}
.y171{bottom:723.293333pt;}
.y1b3{bottom:731.293333pt;}
.yad{bottom:732.253333pt;}
.y78{bottom:733.213333pt;}
.y18{bottom:734.013333pt;}
.y4d{bottom:734.173333pt;}
.y1e5{bottom:734.333333pt;}
.y170{bottom:738.493333pt;}
.y146{bottom:744.413333pt;}
.y1b2{bottom:746.653333pt;}
.yac{bottom:747.613333pt;}
.y77{bottom:748.573333pt;}
.y17{bottom:749.373333pt;}
.y4c{bottom:749.533333pt;}
.y1e4{bottom:749.693333pt;}
.y16f{bottom:753.853333pt;}
.y1e3{bottom:762.813333pt;}
.yab{bottom:762.973333pt;}
.y111{bottom:763.933333pt;}
.y16{bottom:764.573333pt;}
.y4b{bottom:764.893333pt;}
.y16e{bottom:769.213333pt;}
.y142{bottom:775.813333pt;}
.yaa{bottom:778.373333pt;}
.y1e2{bottom:778.853333pt;}
.y110{bottom:779.333333pt;}
.y15{bottom:779.973333pt;}
.y4a{bottom:780.293333pt;}
.y16d{bottom:784.613333pt;}
.ya9{bottom:793.733333pt;}
.y10f{bottom:794.693333pt;}
.y1e1{bottom:794.853333pt;}
.y14{bottom:795.333333pt;}
.y49{bottom:795.653333pt;}
.y16b{bottom:797.733333pt;}
.ya8{bottom:809.093333pt;}
.y10e{bottom:809.893333pt;}
.y48{bottom:810.853333pt;}
.y13{bottom:814.213333pt;}
.ya7{bottom:824.293333pt;}
.y10d{bottom:825.253333pt;}
.y47{bottom:826.213333pt;}
.y1e0{bottom:826.853333pt;}
.y12{bottom:831.173333pt;}
.ya6{bottom:839.653333pt;}
.y10c{bottom:840.613333pt;}
.y46{bottom:841.573333pt;}
.y16a{bottom:842.533333pt;}
.y1df{bottom:842.853333pt;}
.y11{bottom:848.133333pt;}
.ya5{bottom:855.013333pt;}
.y10b{bottom:855.973333pt;}
.y45{bottom:856.933333pt;}
.y10{bottom:864.933333pt;}
.ya4{bottom:870.373333pt;}
.y10a{bottom:871.333333pt;}
.y44{bottom:872.293333pt;}
.yf{bottom:881.413333pt;}
.ya3{bottom:885.733333pt;}
.y141{bottom:886.693333pt;}
.y1de{bottom:887.173333pt;}
.y43{bottom:887.653333pt;}
.ye{bottom:897.413333pt;}
.ya2{bottom:901.893333pt;}
.y42{bottom:902.853333pt;}
.yd{bottom:915.813333pt;}
.ya1{bottom:917.253333pt;}
.y41{bottom:918.213333pt;}
.y9{bottom:934.693333pt;}
.y8{bottom:951.493333pt;}
.y7{bottom:966.853333pt;}
.y6{bottom:982.853333pt;}
.y5{bottom:997.733333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h1b{height:15.200000pt;}
.h19{height:15.360000pt;}
.h1a{height:15.392000pt;}
.h14{height:30.560000pt;}
.he{height:30.720000pt;}
.hd{height:30.752000pt;}
.h7{height:34.453125pt;}
.h5{height:37.479688pt;}
.h2{height:38.128125pt;}
.h9{height:38.672812pt;}
.h8{height:41.543750pt;}
.h3{height:42.262500pt;}
.h12{height:42.400000pt;}
.h13{height:42.432000pt;}
.h17{height:42.752000pt;}
.h15{height:42.880000pt;}
.h11{height:43.200000pt;}
.hf{height:43.360000pt;}
.h16{height:43.680000pt;}
.h18{height:43.712000pt;}
.ha{height:43.782500pt;}
.h10{height:44.160000pt;}
.hb{height:44.768125pt;}
.h4{height:45.156250pt;}
.hc{height:45.920000pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:55.712000pt;}
.w17{width:56.960000pt;}
.w16{width:73.152000pt;}
.we{width:76.800000pt;}
.w15{width:80.320000pt;}
.w3{width:86.560000pt;}
.w7{width:87.552000pt;}
.w11{width:91.680000pt;}
.w4{width:94.752000pt;}
.w18{width:96.640000pt;}
.w5{width:100.960000pt;}
.w8{width:108.800000pt;}
.w6{width:118.592000pt;}
.w1a{width:132.992000pt;}
.w12{width:155.706667pt;}
.w19{width:157.306667pt;}
.wb{width:162.586667pt;}
.wd{width:169.466667pt;}
.w13{width:188.986667pt;}
.wf{width:218.106667pt;}
.wc{width:255.386667pt;}
.w9{width:255.706667pt;}
.wa{width:355.906667pt;}
.w14{width:405.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.880000pt;}
.x8{left:96.031988pt;}
.x2{left:97.791988pt;}
.xa{left:105.951988pt;}
.x11{left:109.311988pt;}
.xf{left:112.991988pt;}
.x1{left:116.351988pt;}
.x12{left:120.031988pt;}
.x25{left:130.591988pt;}
.x9{left:138.426655pt;}
.x5{left:139.706655pt;}
.x10{left:144.026655pt;}
.x1c{left:168.026655pt;}
.x1b{left:174.746655pt;}
.x2e{left:177.626667pt;}
.x20{left:183.866667pt;}
.x1d{left:192.026655pt;}
.x2f{left:251.426667pt;}
.x1a{left:254.146655pt;}
.x19{left:260.546655pt;}
.x1e{left:261.506655pt;}
.x21{left:279.266667pt;}
.x16{left:282.146655pt;}
.x17{left:283.266655pt;}
.x2d{left:286.306667pt;}
.x18{left:287.906655pt;}
.x14{left:291.906655pt;}
.xc{left:304.226655pt;}
.xb{left:306.466655pt;}
.x30{left:309.026667pt;}
.x13{left:314.946655pt;}
.xd{left:326.146655pt;}
.xe{left:337.666655pt;}
.x7{left:343.426655pt;}
.x2b{left:352.066655pt;}
.x26{left:353.026667pt;}
.x15{left:356.226655pt;}
.x6{left:366.466655pt;}
.x2c{left:369.186655pt;}
.x22{left:380.866667pt;}
.x28{left:392.866667pt;}
.x3{left:396.866655pt;}
.x31{left:406.306667pt;}
.x29{left:449.213333pt;}
.x4{left:460.733322pt;}
.x23{left:500.093333pt;}
.x27{left:515.933333pt;}
.x2a{left:541.533333pt;}
.x32{left:564.253333pt;}
.x24{left:588.453333pt;}
}




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