
    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_5851fca8ac151b845cfd365a.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_1966f2cb5841d337649dcb3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_bab2e3bf4acc32333a013b30.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.978027;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_529c08b29386011e185d9e19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b66b3d203b6732fb9377f9d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_23b9012785c8cdaf0f539277.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.332000px;}
.ls8{letter-spacing:-0.942000px;}
.lsa{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.269400px;}
.lse{letter-spacing:-0.259800px;}
.ls7{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.053400px;}
.lsf{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.223800px;}
.ls14{letter-spacing:0.259920px;}
.ls9{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.450720px;}
.ls17{letter-spacing:0.480000px;}
.ls15{letter-spacing:19.386720px;}
.ls10{letter-spacing:26.586720px;}
.ls13{letter-spacing:26.730720px;}
.ls19{letter-spacing:32.069280px;}
.ls1b{letter-spacing:32.093280px;}
.ls18{letter-spacing:40.986720px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws0{word-spacing:-15.300000px;}
.ws11{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.ws7{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.329400px;}
.ws9{word-spacing:-12.283800px;}
.ws16{word-spacing:-12.241200px;}
.ws1{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.790600px;}
.ws2{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.118000px;}
.wse{word-spacing:0.000000px;}
.wsb{word-spacing:28.453080px;}
.ws4{word-spacing:28.852560px;}
.wsc{word-spacing:29.079480px;}
.wsd{word-spacing:41.812320px;}
._1f{margin-left:-8.961000px;}
._1e{margin-left:-4.866600px;}
._1c{margin-left:-3.737882px;}
._11{margin-left:-2.271000px;}
._1{margin-left:-1.257120px;}
._0{width:1.314600px;}
._7{width:2.400596px;}
._4{width:3.402000px;}
._d{width:4.563838px;}
._e{width:6.210600px;}
._6{width:7.398000px;}
._3{width:9.163871px;}
._2{width:11.047249px;}
._19{width:12.438550px;}
._10{width:13.924200px;}
._15{width:15.377640px;}
._c{width:16.463400px;}
._b{width:17.694000px;}
._a{width:18.756000px;}
._21{width:20.063281px;}
._f{width:21.147000px;}
._14{width:22.677791px;}
._13{width:24.023424px;}
._8{width:25.704000px;}
._9{width:26.838000px;}
._18{width:27.848399px;}
._12{width:28.899479px;}
._5{width:30.618000px;}
._20{width:32.282401px;}
._1a{width:34.455599px;}
._1b{width:36.095399px;}
._2d{width:38.007360px;}
._26{width:39.501480px;}
._16{width:40.816200px;}
._1d{width:42.011400px;}
._2c{width:43.804080px;}
._2b{width:45.238440px;}
._30{width:47.516400px;}
._28{width:54.142560px;}
._2a{width:55.517040px;}
._27{width:59.162400px;}
._17{width:60.716339px;}
._29{width:69.202200px;}
._24{width:81.094320px;}
._25{width:82.349280px;}
._2f{width:89.351280px;}
._2e{width:90.944640px;}
._23{width:110.436600px;}
._22{width:124.181280px;}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.340000px;}
.y77{bottom:3.600000px;}
.y4{bottom:5.400000px;}
.y75{bottom:7.740000px;}
.yb{bottom:9.720000px;}
.y3{bottom:13.680000px;}
.y7{bottom:16.200000px;}
.ya{bottom:23.400000px;}
.y6{bottom:29.880000px;}
.y9{bottom:37.080000px;}
.y5{bottom:43.740000px;}
.y74{bottom:49.170000px;}
.y160{bottom:79.596000px;}
.yca{bottom:82.116000px;}
.y141{bottom:84.456000px;}
.y1a3{bottom:85.536000px;}
.y175{bottom:86.256000px;}
.y72{bottom:88.596000px;}
.y41{bottom:91.656000px;}
.yc5{bottom:92.196000px;}
.yec{bottom:93.276000px;}
.y11b{bottom:95.256000px;}
.y1ef{bottom:95.616000px;}
.y15f{bottom:97.776000px;}
.y215{bottom:98.316000px;}
.yc9{bottom:100.116000px;}
.y140{bottom:101.736000px;}
.y174{bottom:103.536000px;}
.y1a2{bottom:103.716000px;}
.y40{bottom:105.516000px;}
.y71{bottom:106.596000px;}
.yc4{bottom:110.196000px;}
.yeb{bottom:111.456000px;}
.y11a{bottom:113.256000px;}
.y1ee{bottom:113.616000px;}
.y15e{bottom:115.776000px;}
.y214{bottom:116.496000px;}
.yc8{bottom:118.296000px;}
.y13f{bottom:118.836000px;}
.y3f{bottom:119.376000px;}
.y1ca{bottom:120.996000px;}
.y1a1{bottom:121.716000px;}
.y70{bottom:124.776000px;}
.y173{bottom:127.476000px;}
.yea{bottom:129.456000px;}
.y119{bottom:131.436000px;}
.y1ed{bottom:131.796000px;}
.y15d{bottom:133.956000px;}
.y213{bottom:134.496000px;}
.y13e{bottom:136.116000px;}
.yc7{bottom:136.296000px;}
.yc3{bottom:136.476000px;}
.y1c9{bottom:138.276000px;}
.y1a0{bottom:139.896000px;}
.y172{bottom:142.416000px;}
.y6f{bottom:142.776000px;}
.y3e{bottom:146.916000px;}
.ye9{bottom:147.636000px;}
.y118{bottom:149.436000px;}
.y1ec{bottom:149.796000px;}
.y15c{bottom:151.950000px;}
.y212{bottom:152.670000px;}
.y13d{bottom:153.390000px;}
.yc6{bottom:154.470000px;}
.y1c8{bottom:155.550000px;}
.y19f{bottom:157.890000px;}
.y3d{bottom:160.590000px;}
.y6e{bottom:160.950000px;}
.y117{bottom:167.610000px;}
.y1eb{bottom:167.970000px;}
.y13c{bottom:170.670000px;}
.ye8{bottom:170.850000px;}
.y1c7{bottom:172.830000px;}
.y3c{bottom:175.170000px;}
.y19e{bottom:176.070000px;}
.yc2{bottom:177.690000px;}
.y244{bottom:178.230000px;}
.y6d{bottom:178.950000px;}
.y13b{bottom:187.770000px;}
.y211{bottom:188.850000px;}
.y1c6{bottom:190.110000px;}
.y116{bottom:190.830000px;}
.y3b{bottom:191.730000px;}
.ye7{bottom:191.910000px;}
.y15b{bottom:192.630000px;}
.y1ea{bottom:194.250000px;}
.y19d{bottom:197.670000px;}
.yc1{bottom:198.750000px;}
.y6c{bottom:200.730000px;}
.y13a{bottom:205.050000px;}
.y3a{bottom:205.410000px;}
.y210{bottom:207.030000px;}
.y1c5{bottom:207.210000px;}
.y115{bottom:211.710000px;}
.y15a{bottom:216.570000px;}
.y39{bottom:219.270000px;}
.y243{bottom:221.610000px;}
.y1e9{bottom:221.790000px;}
.y139{bottom:222.330000px;}
.y1c4{bottom:224.490000px;}
.y19c{bottom:224.850000px;}
.y20f{bottom:225.030000px;}
.y6b{bottom:227.910000px;}
.y159{bottom:231.510000px;}
.y38{bottom:233.130000px;}
.y242{bottom:236.010000px;}
.y138{bottom:239.610000px;}
.y1c3{bottom:241.770000px;}
.y19b{bottom:243.030000px;}
.y20e{bottom:243.210000px;}
.y6a{bottom:245.910000px;}
.y37{bottom:246.810000px;}
.y241{bottom:250.590000px;}
.y137{bottom:256.710000px;}
.y1c2{bottom:259.050000px;}
.y36{bottom:261.030000px;}
.y20d{bottom:261.210000px;}
.y69{bottom:264.090000px;}
.y240{bottom:264.990000px;}
.y1c1{bottom:276.150000px;}
.y35{bottom:276.510000px;}
.y19a{bottom:279.210000px;}
.y20c{bottom:279.390000px;}
.y23f{bottom:279.570000px;}
.y136{bottom:279.930000px;}
.y68{bottom:282.090000px;}
.y34{bottom:291.990000px;}
.y1c0{bottom:293.430000px;}
.y23e{bottom:293.970000px;}
.y135{bottom:297.210000px;}
.y20b{bottom:297.390000px;}
.y67{bottom:300.270000px;}
.y33{bottom:307.470000px;}
.y23d{bottom:308.370000px;}
.y1bf{bottom:310.710000px;}
.y199{bottom:315.390000px;}
.y20a{bottom:315.570000px;}
.y66{bottom:318.270000px;}
.y134{bottom:321.330000px;}
.y23c{bottom:322.950000px;}
.y1be{bottom:332.310000px;}
.y198{bottom:333.390000px;}
.y209{bottom:333.570000px;}
.y171{bottom:334.830000px;}
.y133{bottom:336.270000px;}
.y65{bottom:336.495000px;}
.y23b{bottom:337.395000px;}
.y170{bottom:349.995000px;}
.y197{bottom:351.615000px;}
.y208{bottom:351.795000px;}
.y23a{bottom:351.975000px;}
.y64{bottom:354.675000px;}
.y1bd{bottom:363.135000px;}
.y239{bottom:366.375000px;}
.y32{bottom:369.435000px;}
.y196{bottom:369.615000px;}
.y207{bottom:369.795000px;}
.y63{bottom:372.675000px;}
.y238{bottom:380.955000px;}
.ye6{bottom:385.275000px;}
.y31{bottom:386.715000px;}
.y1bc{bottom:387.255000px;}
.y195{bottom:387.795000px;}
.y206{bottom:387.975000px;}
.y1e8{bottom:391.035000px;}
.y237{bottom:395.355000px;}
.y62{bottom:398.955000px;}
.y158{bottom:399.855000px;}
.ye5{bottom:403.275000px;}
.y30{bottom:403.815000px;}
.y194{bottom:405.795000px;}
.y205{bottom:405.975000px;}
.y1e7{bottom:408.315000px;}
.y236{bottom:409.755000px;}
.ya4{bottom:412.995000px;}
.y157{bottom:414.795000px;}
.y114{bottom:415.875000px;}
.y2f{bottom:421.095000px;}
.ye4{bottom:421.455000px;}
.y193{bottom:423.975000px;}
.y204{bottom:424.155000px;}
.y1e6{bottom:425.595000px;}
.ya3{bottom:431.175000px;}
.y235{bottom:433.155000px;}
.y113{bottom:433.875000px;}
.y61{bottom:434.955000px;}
.y2e{bottom:438.375000px;}
.ye3{bottom:439.455000px;}
.y192{bottom:441.975000px;}
.y1e5{bottom:442.695000px;}
.yc0{bottom:446.295000px;}
.y272{bottom:449.175000px;}
.ya2{bottom:449.355000px;}
.y203{bottom:450.435000px;}
.y112{bottom:452.055000px;}
.y60{bottom:453.135000px;}
.y2d{bottom:455.655000px;}
.ye2{bottom:457.635000px;}
.y1e4{bottom:459.975000px;}
.y191{bottom:460.155000px;}
.y271{bottom:463.035000px;}
.ybf{bottom:464.295000px;}
.ya1{bottom:467.355000px;}
.y234{bottom:469.335000px;}
.y111{bottom:470.055000px;}
.y5f{bottom:471.135000px;}
.y2c{bottom:472.755000px;}
.ye1{bottom:475.635000px;}
.y1e3{bottom:477.255000px;}
.y270{bottom:477.435000px;}
.ybe{bottom:482.475000px;}
.y190{bottom:483.375000px;}
.ya0{bottom:485.535000px;}
.y202{bottom:486.435000px;}
.y233{bottom:487.335000px;}
.y110{bottom:488.235000px;}
.y5e{bottom:489.315000px;}
.y2b{bottom:490.035000px;}
.ye0{bottom:493.815000px;}
.y1e2{bottom:494.535000px;}
.y26f{bottom:494.715000px;}
.ybd{bottom:500.475000px;}
.y18f{bottom:500.655000px;}
.y9f{bottom:503.535000px;}
.y201{bottom:504.615000px;}
.y232{bottom:505.515000px;}
.y10f{bottom:506.415000px;}
.y2a{bottom:507.315000px;}
.y5d{bottom:507.495000px;}
.y132{bottom:507.855000px;}
.y1e1{bottom:511.635000px;}
.ydf{bottom:511.815000px;}
.y26e{bottom:511.995000px;}
.ybc{bottom:518.655000px;}
.y9e{bottom:521.715000px;}
.y200{bottom:522.615000px;}
.y131{bottom:522.795000px;}
.y231{bottom:523.515000px;}
.y10e{bottom:524.415000px;}
.y29{bottom:524.595000px;}
.y5c{bottom:525.495000px;}
.y1e0{bottom:528.915000px;}
.y26d{bottom:529.095000px;}
.yde{bottom:533.595000px;}
.ybb{bottom:536.655000px;}
.y1bb{bottom:537.015000px;}
.y9d{bottom:539.715000px;}
.y1ff{bottom:540.795000px;}
.y28{bottom:541.695000px;}
.y10d{bottom:542.595000px;}
.y5b{bottom:543.675000px;}
.y26c{bottom:546.375000px;}
.y1df{bottom:550.695000px;}
.y16f{bottom:551.775000px;}
.yba{bottom:554.835000px;}
.y1ba{bottom:555.195000px;}
.y9c{bottom:557.895000px;}
.y1fe{bottom:558.795000px;}
.y27{bottom:558.975000px;}
.y230{bottom:559.695000px;}
.ydd{bottom:559.875000px;}
.y10c{bottom:560.595000px;}
.y5a{bottom:561.675000px;}
.y26b{bottom:563.655000px;}
.y16e{bottom:569.955000px;}
.y1de{bottom:572.475000px;}
.y1b9{bottom:573.195000px;}
.y9b{bottom:575.895000px;}
.yb9{bottom:576.435000px;}
.y1fd{bottom:576.975000px;}
.ydc{bottom:577.155000px;}
.y22f{bottom:577.875000px;}
.y10b{bottom:578.775000px;}
.y26{bottom:579.495000px;}
.y59{bottom:579.855000px;}
.y26a{bottom:580.935000px;}
.y16d{bottom:587.955000px;}
.y1dd{bottom:589.575000px;}
.y1b8{bottom:591.375000px;}
.y9a{bottom:594.075000px;}
.ydb{bottom:594.435000px;}
.y1fc{bottom:594.975000px;}
.y22e{bottom:595.875000px;}
.y10a{bottom:596.775000px;}
.y58{bottom:597.855000px;}
.y269{bottom:598.035000px;}
.yb8{bottom:603.645000px;}
.y156{bottom:604.545000px;}
.y16c{bottom:606.165000px;}
.y1dc{bottom:606.885000px;}
.y1b7{bottom:609.405000px;}
.yda{bottom:611.565000px;}
.y99{bottom:612.105000px;}
.y1fb{bottom:613.185000px;}
.y22d{bottom:614.085000px;}
.y109{bottom:614.985000px;}
.y268{bottom:615.345000px;}
.y57{bottom:616.065000px;}
.y25{bottom:619.665000px;}
.yb7{bottom:621.825000px;}
.y155{bottom:622.545000px;}
.y16b{bottom:624.165000px;}
.y1b6{bottom:627.585000px;}
.yd9{bottom:628.845000px;}
.y267{bottom:629.385000px;}
.y98{bottom:630.285000px;}
.y1fa{bottom:631.365000px;}
.y22c{bottom:632.265000px;}
.y108{bottom:632.985000px;}
.y56{bottom:634.065000px;}
.yb6{bottom:639.825000px;}
.y154{bottom:640.725000px;}
.y1db{bottom:641.445000px;}
.y16a{bottom:642.345000px;}
.y266{bottom:645.585000px;}
.y1b5{bottom:645.765000px;}
.yd8{bottom:646.125000px;}
.y97{bottom:648.285000px;}
.y1f9{bottom:649.365000px;}
.y22b{bottom:650.265000px;}
.y55{bottom:652.245000px;}
.y24{bottom:654.585000px;}
.y107{bottom:654.765000px;}
.yb5{bottom:658.005000px;}
.y1da{bottom:658.545000px;}
.y153{bottom:658.725000px;}
.y265{bottom:659.445000px;}
.y169{bottom:660.345000px;}
.yd7{bottom:663.405000px;}
.y1b4{bottom:663.765000px;}
.y96{bottom:666.465000px;}
.y22a{bottom:668.445000px;}
.y23{bottom:670.245000px;}
.y1f8{bottom:672.225000px;}
.y264{bottom:673.305000px;}
.y1d9{bottom:675.825000px;}
.yb4{bottom:676.005000px;}
.y152{bottom:676.905000px;}
.y168{bottom:678.525000px;}
.yd6{bottom:680.505000px;}
.y106{bottom:681.945000px;}
.y95{bottom:684.465000px;}
.y1b3{bottom:685.545000px;}
.y22{bottom:685.725000px;}
.y229{bottom:686.445000px;}
.y263{bottom:686.985000px;}
.y54{bottom:688.425000px;}
.y1f7{bottom:691.845000px;}
.y130{bottom:692.205000px;}
.y1d8{bottom:693.105000px;}
.yb3{bottom:694.185000px;}
.y151{bottom:694.905000px;}
.y167{bottom:696.705000px;}
.yd5{bottom:697.785000px;}
.y105{bottom:699.945000px;}
.y262{bottom:700.845000px;}
.y21{bottom:701.205000px;}
.y94{bottom:702.645000px;}
.y228{bottom:704.625000px;}
.y53{bottom:706.425000px;}
.y1b2{bottom:708.045000px;}
.y12f{bottom:710.385000px;}
.yb2{bottom:712.185000px;}
.y150{bottom:713.085000px;}
.y261{bottom:714.525000px;}
.y166{bottom:714.705000px;}
.yd4{bottom:715.065000px;}
.y20{bottom:716.685000px;}
.y18e{bottom:717.045000px;}
.y104{bottom:718.125000px;}
.y93{bottom:720.825000px;}
.y227{bottom:722.625000px;}
.y52{bottom:724.605000px;}
.y1b1{bottom:726.225000px;}
.y1d7{bottom:727.485000px;}
.y12e{bottom:728.385000px;}
.yb1{bottom:730.365000px;}
.y14f{bottom:731.085000px;}
.y1f{bottom:732.165000px;}
.yd3{bottom:732.345000px;}
.y165{bottom:732.885000px;}
.y18d{bottom:735.225000px;}
.y103{bottom:736.125000px;}
.y92{bottom:738.825000px;}
.y226{bottom:740.805000px;}
.y260{bottom:742.245000px;}
.y51{bottom:742.605000px;}
.y1b0{bottom:744.225000px;}
.y1d6{bottom:744.765000px;}
.y12d{bottom:746.565000px;}
.y1e{bottom:747.645000px;}
.yb0{bottom:748.365000px;}
.y14e{bottom:749.265000px;}
.yd2{bottom:749.445000px;}
.y164{bottom:750.885000px;}
.y18c{bottom:753.225000px;}
.y102{bottom:754.305000px;}
.y25f{bottom:755.925000px;}
.y91{bottom:757.005000px;}
.y225{bottom:758.805000px;}
.y1d5{bottom:762.045000px;}
.y1af{bottom:762.405000px;}
.y1d{bottom:763.305000px;}
.y50{bottom:764.385000px;}
.y12c{bottom:764.565000px;}
.yaf{bottom:766.545000px;}
.yd1{bottom:766.725000px;}
.y25e{bottom:769.785000px;}
.y14d{bottom:771.045000px;}
.y18b{bottom:771.405000px;}
.y101{bottom:772.305000px;}
.y163{bottom:774.105000px;}
.y90{bottom:775.005000px;}
.y224{bottom:776.985000px;}
.y1c{bottom:778.785000px;}
.y1d4{bottom:779.325000px;}
.y1ae{bottom:780.585000px;}
.y12b{bottom:782.745000px;}
.y25d{bottom:783.465000px;}
.yd0{bottom:784.005000px;}
.yae{bottom:784.545000px;}
.y18a{bottom:789.585000px;}
.y100{bottom:790.485000px;}
.y162{bottom:791.385000px;}
.y4f{bottom:791.565000px;}
.y8f{bottom:793.185000px;}
.y223{bottom:794.985000px;}
.y1d3{bottom:796.425000px;}
.y25c{bottom:797.325000px;}
.y1ad{bottom:798.585000px;}
.y14c{bottom:798.765000px;}
.y1b{bottom:800.205000px;}
.y12a{bottom:800.745000px;}
.ycf{bottom:801.285000px;}
.yad{bottom:802.725000px;}
.y189{bottom:807.585000px;}
.yff{bottom:808.485000px;}
.y4e{bottom:809.565000px;}
.y8e{bottom:811.185000px;}
.y161{bottom:812.445000px;}
.y222{bottom:813.165000px;}
.y1d2{bottom:813.705000px;}
.y1a{bottom:815.685000px;}
.y14b{bottom:816.045000px;}
.y1ac{bottom:816.765000px;}
.yce{bottom:818.385000px;}
.yac{bottom:820.725000px;}
.y129{bottom:822.525000px;}
.y25b{bottom:824.865000px;}
.y188{bottom:825.765000px;}
.yfe{bottom:826.665000px;}
.y4d{bottom:827.745000px;}
.y8d{bottom:829.365000px;}
.y1d1{bottom:830.985000px;}
.y221{bottom:831.165000px;}
.y1ab{bottom:834.765000px;}
.ycd{bottom:835.665000px;}
.y14a{bottom:836.745000px;}
.y19{bottom:837.285000px;}
.y25a{bottom:838.725000px;}
.yab{bottom:838.905000px;}
.y187{bottom:843.765000px;}
.y128{bottom:844.305000px;}
.yfd{bottom:844.665000px;}
.y4c{bottom:845.745000px;}
.y8c{bottom:847.365000px;}
.y1d0{bottom:848.265000px;}
.y220{bottom:849.345000px;}
.y259{bottom:852.405000px;}
.y18{bottom:852.765000px;}
.ycc{bottom:852.945000px;}
.yaa{bottom:857.085000px;}
.y127{bottom:861.585000px;}
.y186{bottom:861.945000px;}
.yfc{bottom:862.845000px;}
.y4b{bottom:863.925000px;}
.y1cf{bottom:865.365000px;}
.y8b{bottom:865.545000px;}
.y258{bottom:866.265000px;}
.y21f{bottom:867.525000px;}
.y17{bottom:868.245000px;}
.y1aa{bottom:870.990000px;}
.ycb{bottom:874.590000px;}
.ya9{bottom:878.730000px;}
.y126{bottom:878.910000px;}
.y185{bottom:879.990000px;}
.y257{bottom:880.170000px;}
.yfb{bottom:881.070000px;}
.y4a{bottom:881.970000px;}
.y1ce{bottom:882.690000px;}
.y8a{bottom:883.590000px;}
.y16{bottom:883.770000px;}
.y21e{bottom:885.570000px;}
.y1a9{bottom:889.170000px;}
.y256{bottom:893.850000px;}
.y125{bottom:896.010000px;}
.y184{bottom:898.170000px;}
.yfa{bottom:899.070000px;}
.y15{bottom:899.430000px;}
.y1cd{bottom:899.970000px;}
.y49{bottom:900.150000px;}
.y89{bottom:901.770000px;}
.y21d{bottom:903.750000px;}
.y1a8{bottom:907.170000px;}
.y255{bottom:907.710000px;}
.ya8{bottom:911.130000px;}
.y1f6{bottom:911.670000px;}
.y124{bottom:913.290000px;}
.y14{bottom:914.910000px;}
.y183{bottom:916.170000px;}
.yf9{bottom:917.250000px;}
.y48{bottom:918.330000px;}
.y88{bottom:919.770000px;}
.y254{bottom:921.390000px;}
.y21c{bottom:921.750000px;}
.y1a7{bottom:925.350000px;}
.y1f5{bottom:929.850000px;}
.y13{bottom:930.390000px;}
.y123{bottom:930.570000px;}
.ya7{bottom:931.110000px;}
.y182{bottom:934.350000px;}
.yf8{bottom:935.250000px;}
.y47{bottom:936.330000px;}
.y87{bottom:937.950000px;}
.y21b{bottom:939.930000px;}
.y1a6{bottom:943.350000px;}
.y12{bottom:945.870000px;}
.y122{bottom:947.850000px;}
.y253{bottom:949.110000px;}
.y181{bottom:952.350000px;}
.yf7{bottom:953.430000px;}
.y46{bottom:954.510000px;}
.y86{bottom:956.130000px;}
.y21a{bottom:957.930000px;}
.y1cc{bottom:960.630000px;}
.y11{bottom:961.350000px;}
.y1a5{bottom:961.530000px;}
.y252{bottom:962.790000px;}
.y121{bottom:964.950000px;}
.y1f4{bottom:966.030000px;}
.y180{bottom:970.530000px;}
.yf6{bottom:971.430000px;}
.y45{bottom:972.510000px;}
.y85{bottom:974.130000px;}
.y219{bottom:976.110000px;}
.y251{bottom:976.650000px;}
.y10{bottom:977.010000px;}
.y120{bottom:982.230000px;}
.y1a4{bottom:983.310000px;}
.y1f3{bottom:984.030000px;}
.y1cb{bottom:984.750000px;}
.y17f{bottom:988.530000px;}
.yf5{bottom:989.610000px;}
.y250{bottom:990.330000px;}
.y44{bottom:990.690000px;}
.y84{bottom:992.310000px;}
.yf{bottom:992.490000px;}
.y218{bottom:994.110000px;}
.y11f{bottom:999.510000px;}
.y1f2{bottom:1002.210000px;}
.y24f{bottom:1004.190000px;}
.y17e{bottom:1006.710000px;}
.ye{bottom:1007.970000px;}
.y43{bottom:1008.690000px;}
.y83{bottom:1010.310000px;}
.yf4{bottom:1011.210000px;}
.y217{bottom:1012.290000px;}
.y11e{bottom:1016.790000px;}
.y24e{bottom:1018.050000px;}
.y1f1{bottom:1020.210000px;}
.yd{bottom:1023.450000px;}
.ya6{bottom:1024.170000px;}
.y17d{bottom:1024.710000px;}
.y82{bottom:1028.490000px;}
.y216{bottom:1030.290000px;}
.y42{bottom:1030.470000px;}
.y24d{bottom:1031.730000px;}
.y11d{bottom:1033.890000px;}
.y149{bottom:1035.330000px;}
.yf3{bottom:1038.390000px;}
.yc{bottom:1038.930000px;}
.y1f0{bottom:1041.990000px;}
.y17c{bottom:1042.890000px;}
.ya5{bottom:1045.230000px;}
.y24c{bottom:1045.590000px;}
.y81{bottom:1046.490000px;}
.y148{bottom:1052.610000px;}
.y11c{bottom:1055.670000px;}
.yf2{bottom:1056.570000px;}
.y24b{bottom:1059.270000px;}
.y17b{bottom:1061.070000px;}
.y80{bottom:1064.670000px;}
.y76{bottom:1067.550000px;}
.y147{bottom:1069.890000px;}
.yf1{bottom:1074.570000px;}
.y17a{bottom:1079.070000px;}
.y7f{bottom:1082.670000px;}
.y24a{bottom:1082.850000px;}
.y146{bottom:1087.170000px;}
.yf0{bottom:1092.750000px;}
.y179{bottom:1097.250000px;}
.y7e{bottom:1100.850000px;}
.y73{bottom:1102.470000px;}
.y145{bottom:1104.270000px;}
.yef{bottom:1110.750000px;}
.y178{bottom:1115.250000px;}
.y249{bottom:1118.130000px;}
.y7d{bottom:1118.850000px;}
.y144{bottom:1121.550000px;}
.yee{bottom:1128.930000px;}
.y248{bottom:1132.710000px;}
.y177{bottom:1133.430000px;}
.y7c{bottom:1137.030000px;}
.y143{bottom:1138.860000px;}
.yed{bottom:1146.960000px;}
.y247{bottom:1147.140000px;}
.y176{bottom:1151.460000px;}
.y7b{bottom:1155.060000px;}
.y142{bottom:1156.140000px;}
.y246{bottom:1161.720000px;}
.y7a{bottom:1173.240000px;}
.y245{bottom:1176.120000px;}
.y79{bottom:1214.640000px;}
.y2{bottom:1217.700000px;}
.y78{bottom:1233.540000px;}
.y1{bottom:1234.800000px;}
.hf{height:18.900000px;}
.hc{height:33.683203px;}
.hb{height:34.036523px;}
.h17{height:35.120039px;}
.h5{height:36.768867px;}
.h8{height:37.705078px;}
.ha{height:38.100586px;}
.h3{height:41.726953px;}
.h2{height:42.164648px;}
.h13{height:43.506914px;}
.h7{height:43.822266px;}
.h16{height:44.265586px;}
.h14{height:45.549492px;}
.h10{height:46.736719px;}
.h11{height:48.419955px;}
.h6{height:48.420000px;}
.h12{height:50.273438px;}
.h15{height:50.800781px;}
.h4{height:54.900000px;}
.hd{height:82.836000px;}
.h9{height:83.956641px;}
.he{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:202.575000px;}
.w3{width:243.075000px;}
.w5{width:708.585000px;}
.w4{width:730.230000px;}
.w6{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.830000px;}
.x6{left:11.910000px;}
.x7{left:70.740000px;}
.x3d{left:76.859987px;}
.xe{left:79.590000px;}
.xa{left:80.820000px;}
.x1f{left:83.519987px;}
.x8{left:85.500000px;}
.xf{left:90.390000px;}
.x10{left:92.376000px;}
.x33{left:93.815987px;}
.x2e{left:99.035987px;}
.x23{left:106.955987px;}
.x32{left:113.795987px;}
.x1b{left:119.555987px;}
.x31{left:120.995987px;}
.x19{left:138.635987px;}
.x44{left:144.035987px;}
.x2f{left:147.455987px;}
.x13{left:170.309987px;}
.x43{left:178.409987px;}
.x9{left:182.730000px;}
.x21{left:187.949987px;}
.x3f{left:189.389987px;}
.x11{left:197.679000px;}
.x22{left:201.629987px;}
.x18{left:337.034987px;}
.x1{left:350.895000px;}
.x20{left:371.234987px;}
.x1a{left:380.234987px;}
.x2d{left:403.274987px;}
.x30{left:405.074987px;}
.x3e{left:426.674987px;}
.x38{left:434.234987px;}
.x2{left:435.495000px;}
.x3{left:439.095000px;}
.x12{left:446.474987px;}
.x4{left:455.655000px;}
.xb{left:457.275000px;}
.x34{left:462.314987px;}
.x26{left:466.484987px;}
.xc{left:468.105000px;}
.x24{left:478.544987px;}
.x36{left:481.244987px;}
.x2b{left:496.724987px;}
.x42{left:499.784987px;}
.x1e{left:510.404987px;}
.x1c{left:515.984987px;}
.x3c{left:525.704987px;}
.x28{left:528.584987px;}
.x41{left:534.704987px;}
.x2a{left:536.504987px;}
.x37{left:541.004987px;}
.x16{left:547.124987px;}
.xd{left:550.545000px;}
.x3a{left:555.404987px;}
.x40{left:560.804987px;}
.x2c{left:589.064987px;}
.x25{left:592.124987px;}
.x27{left:773.069987px;}
.x35{left:775.229987px;}
.x39{left:777.209987px;}
.x1d{left:779.189987px;}
.x29{left:783.689987px;}
.x17{left:785.129987px;}
.x3b{left:789.989987px;}
.x15{left:802.229987px;}
.x14{left:812.489987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.184000pt;}
.ls8{letter-spacing:-0.837333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.239467pt;}
.lse{letter-spacing:-0.230933pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.047467pt;}
.lsf{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.198933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls9{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.400640pt;}
.ls17{letter-spacing:0.426667pt;}
.ls15{letter-spacing:17.232640pt;}
.ls10{letter-spacing:23.632640pt;}
.ls13{letter-spacing:23.760640pt;}
.ls19{letter-spacing:28.506027pt;}
.ls1b{letter-spacing:28.527360pt;}
.ls18{letter-spacing:36.432640pt;}
.ws13{word-spacing:-53.120000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.959467pt;}
.ws9{word-spacing:-10.918933pt;}
.ws16{word-spacing:-10.881067pt;}
.ws1{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.480533pt;}
.ws2{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.882667pt;}
.wse{word-spacing:0.000000pt;}
.wsb{word-spacing:25.291627pt;}
.ws4{word-spacing:25.646720pt;}
.wsc{word-spacing:25.848427pt;}
.wsd{word-spacing:37.166507pt;}
._1f{margin-left:-7.965334pt;}
._1e{margin-left:-4.325867pt;}
._1c{margin-left:-3.322562pt;}
._11{margin-left:-2.018666pt;}
._1{margin-left:-1.117440pt;}
._0{width:1.168534pt;}
._7{width:2.133863pt;}
._4{width:3.024000pt;}
._d{width:4.056745pt;}
._e{width:5.520533pt;}
._6{width:6.576000pt;}
._3{width:8.145663pt;}
._2{width:9.819777pt;}
._19{width:11.056489pt;}
._10{width:12.377066pt;}
._15{width:13.669014pt;}
._c{width:14.634133pt;}
._b{width:15.728000pt;}
._a{width:16.672000pt;}
._21{width:17.834028pt;}
._f{width:18.797333pt;}
._14{width:20.158036pt;}
._13{width:21.354154pt;}
._8{width:22.848000pt;}
._9{width:23.856000pt;}
._18{width:24.754132pt;}
._12{width:25.688425pt;}
._5{width:27.216000pt;}
._20{width:28.695468pt;}
._1a{width:30.627199pt;}
._1b{width:32.084799pt;}
._2d{width:33.784320pt;}
._26{width:35.112426pt;}
._16{width:36.281066pt;}
._1d{width:37.343466pt;}
._2c{width:38.936960pt;}
._2b{width:40.211946pt;}
._30{width:42.236800pt;}
._28{width:48.126720pt;}
._2a{width:49.348480pt;}
._27{width:52.588800pt;}
._17{width:53.970079pt;}
._29{width:61.513066pt;}
._24{width:72.083840pt;}
._25{width:73.199360pt;}
._2f{width:79.423360pt;}
._2e{width:80.839680pt;}
._23{width:98.165866pt;}
._22{width:110.383360pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.080000pt;}
.y77{bottom:3.200000pt;}
.y4{bottom:4.800000pt;}
.y75{bottom:6.880000pt;}
.yb{bottom:8.640000pt;}
.y3{bottom:12.160000pt;}
.y7{bottom:14.400000pt;}
.ya{bottom:20.800000pt;}
.y6{bottom:26.560000pt;}
.y9{bottom:32.960000pt;}
.y5{bottom:38.880000pt;}
.y74{bottom:43.706667pt;}
.y160{bottom:70.752000pt;}
.yca{bottom:72.992000pt;}
.y141{bottom:75.072000pt;}
.y1a3{bottom:76.032000pt;}
.y175{bottom:76.672000pt;}
.y72{bottom:78.752000pt;}
.y41{bottom:81.472000pt;}
.yc5{bottom:81.952000pt;}
.yec{bottom:82.912000pt;}
.y11b{bottom:84.672000pt;}
.y1ef{bottom:84.992000pt;}
.y15f{bottom:86.912000pt;}
.y215{bottom:87.392000pt;}
.yc9{bottom:88.992000pt;}
.y140{bottom:90.432000pt;}
.y174{bottom:92.032000pt;}
.y1a2{bottom:92.192000pt;}
.y40{bottom:93.792000pt;}
.y71{bottom:94.752000pt;}
.yc4{bottom:97.952000pt;}
.yeb{bottom:99.072000pt;}
.y11a{bottom:100.672000pt;}
.y1ee{bottom:100.992000pt;}
.y15e{bottom:102.912000pt;}
.y214{bottom:103.552000pt;}
.yc8{bottom:105.152000pt;}
.y13f{bottom:105.632000pt;}
.y3f{bottom:106.112000pt;}
.y1ca{bottom:107.552000pt;}
.y1a1{bottom:108.192000pt;}
.y70{bottom:110.912000pt;}
.y173{bottom:113.312000pt;}
.yea{bottom:115.072000pt;}
.y119{bottom:116.832000pt;}
.y1ed{bottom:117.152000pt;}
.y15d{bottom:119.072000pt;}
.y213{bottom:119.552000pt;}
.y13e{bottom:120.992000pt;}
.yc7{bottom:121.152000pt;}
.yc3{bottom:121.312000pt;}
.y1c9{bottom:122.912000pt;}
.y1a0{bottom:124.352000pt;}
.y172{bottom:126.592000pt;}
.y6f{bottom:126.912000pt;}
.y3e{bottom:130.592000pt;}
.ye9{bottom:131.232000pt;}
.y118{bottom:132.832000pt;}
.y1ec{bottom:133.152000pt;}
.y15c{bottom:135.066667pt;}
.y212{bottom:135.706667pt;}
.y13d{bottom:136.346667pt;}
.yc6{bottom:137.306667pt;}
.y1c8{bottom:138.266667pt;}
.y19f{bottom:140.346667pt;}
.y3d{bottom:142.746667pt;}
.y6e{bottom:143.066667pt;}
.y117{bottom:148.986667pt;}
.y1eb{bottom:149.306667pt;}
.y13c{bottom:151.706667pt;}
.ye8{bottom:151.866667pt;}
.y1c7{bottom:153.626667pt;}
.y3c{bottom:155.706667pt;}
.y19e{bottom:156.506667pt;}
.yc2{bottom:157.946667pt;}
.y244{bottom:158.426667pt;}
.y6d{bottom:159.066667pt;}
.y13b{bottom:166.906667pt;}
.y211{bottom:167.866667pt;}
.y1c6{bottom:168.986667pt;}
.y116{bottom:169.626667pt;}
.y3b{bottom:170.426667pt;}
.ye7{bottom:170.586667pt;}
.y15b{bottom:171.226667pt;}
.y1ea{bottom:172.666667pt;}
.y19d{bottom:175.706667pt;}
.yc1{bottom:176.666667pt;}
.y6c{bottom:178.426667pt;}
.y13a{bottom:182.266667pt;}
.y3a{bottom:182.586667pt;}
.y210{bottom:184.026667pt;}
.y1c5{bottom:184.186667pt;}
.y115{bottom:188.186667pt;}
.y15a{bottom:192.506667pt;}
.y39{bottom:194.906667pt;}
.y243{bottom:196.986667pt;}
.y1e9{bottom:197.146667pt;}
.y139{bottom:197.626667pt;}
.y1c4{bottom:199.546667pt;}
.y19c{bottom:199.866667pt;}
.y20f{bottom:200.026667pt;}
.y6b{bottom:202.586667pt;}
.y159{bottom:205.786667pt;}
.y38{bottom:207.226667pt;}
.y242{bottom:209.786667pt;}
.y138{bottom:212.986667pt;}
.y1c3{bottom:214.906667pt;}
.y19b{bottom:216.026667pt;}
.y20e{bottom:216.186667pt;}
.y6a{bottom:218.586667pt;}
.y37{bottom:219.386667pt;}
.y241{bottom:222.746667pt;}
.y137{bottom:228.186667pt;}
.y1c2{bottom:230.266667pt;}
.y36{bottom:232.026667pt;}
.y20d{bottom:232.186667pt;}
.y69{bottom:234.746667pt;}
.y240{bottom:235.546667pt;}
.y1c1{bottom:245.466667pt;}
.y35{bottom:245.786667pt;}
.y19a{bottom:248.186667pt;}
.y20c{bottom:248.346667pt;}
.y23f{bottom:248.506667pt;}
.y136{bottom:248.826667pt;}
.y68{bottom:250.746667pt;}
.y34{bottom:259.546667pt;}
.y1c0{bottom:260.826667pt;}
.y23e{bottom:261.306667pt;}
.y135{bottom:264.186667pt;}
.y20b{bottom:264.346667pt;}
.y67{bottom:266.906667pt;}
.y33{bottom:273.306667pt;}
.y23d{bottom:274.106667pt;}
.y1bf{bottom:276.186667pt;}
.y199{bottom:280.346667pt;}
.y20a{bottom:280.506667pt;}
.y66{bottom:282.906667pt;}
.y134{bottom:285.626667pt;}
.y23c{bottom:287.066667pt;}
.y1be{bottom:295.386667pt;}
.y198{bottom:296.346667pt;}
.y209{bottom:296.506667pt;}
.y171{bottom:297.626667pt;}
.y133{bottom:298.906667pt;}
.y65{bottom:299.106667pt;}
.y23b{bottom:299.906667pt;}
.y170{bottom:311.106667pt;}
.y197{bottom:312.546667pt;}
.y208{bottom:312.706667pt;}
.y23a{bottom:312.866667pt;}
.y64{bottom:315.266667pt;}
.y1bd{bottom:322.786667pt;}
.y239{bottom:325.666667pt;}
.y32{bottom:328.386667pt;}
.y196{bottom:328.546667pt;}
.y207{bottom:328.706667pt;}
.y63{bottom:331.266667pt;}
.y238{bottom:338.626667pt;}
.ye6{bottom:342.466667pt;}
.y31{bottom:343.746667pt;}
.y1bc{bottom:344.226667pt;}
.y195{bottom:344.706667pt;}
.y206{bottom:344.866667pt;}
.y1e8{bottom:347.586667pt;}
.y237{bottom:351.426667pt;}
.y62{bottom:354.626667pt;}
.y158{bottom:355.426667pt;}
.ye5{bottom:358.466667pt;}
.y30{bottom:358.946667pt;}
.y194{bottom:360.706667pt;}
.y205{bottom:360.866667pt;}
.y1e7{bottom:362.946667pt;}
.y236{bottom:364.226667pt;}
.ya4{bottom:367.106667pt;}
.y157{bottom:368.706667pt;}
.y114{bottom:369.666667pt;}
.y2f{bottom:374.306667pt;}
.ye4{bottom:374.626667pt;}
.y193{bottom:376.866667pt;}
.y204{bottom:377.026667pt;}
.y1e6{bottom:378.306667pt;}
.ya3{bottom:383.266667pt;}
.y235{bottom:385.026667pt;}
.y113{bottom:385.666667pt;}
.y61{bottom:386.626667pt;}
.y2e{bottom:389.666667pt;}
.ye3{bottom:390.626667pt;}
.y192{bottom:392.866667pt;}
.y1e5{bottom:393.506667pt;}
.yc0{bottom:396.706667pt;}
.y272{bottom:399.266667pt;}
.ya2{bottom:399.426667pt;}
.y203{bottom:400.386667pt;}
.y112{bottom:401.826667pt;}
.y60{bottom:402.786667pt;}
.y2d{bottom:405.026667pt;}
.ye2{bottom:406.786667pt;}
.y1e4{bottom:408.866667pt;}
.y191{bottom:409.026667pt;}
.y271{bottom:411.586667pt;}
.ybf{bottom:412.706667pt;}
.ya1{bottom:415.426667pt;}
.y234{bottom:417.186667pt;}
.y111{bottom:417.826667pt;}
.y5f{bottom:418.786667pt;}
.y2c{bottom:420.226667pt;}
.ye1{bottom:422.786667pt;}
.y1e3{bottom:424.226667pt;}
.y270{bottom:424.386667pt;}
.ybe{bottom:428.866667pt;}
.y190{bottom:429.666667pt;}
.ya0{bottom:431.586667pt;}
.y202{bottom:432.386667pt;}
.y233{bottom:433.186667pt;}
.y110{bottom:433.986667pt;}
.y5e{bottom:434.946667pt;}
.y2b{bottom:435.586667pt;}
.ye0{bottom:438.946667pt;}
.y1e2{bottom:439.586667pt;}
.y26f{bottom:439.746667pt;}
.ybd{bottom:444.866667pt;}
.y18f{bottom:445.026667pt;}
.y9f{bottom:447.586667pt;}
.y201{bottom:448.546667pt;}
.y232{bottom:449.346667pt;}
.y10f{bottom:450.146667pt;}
.y2a{bottom:450.946667pt;}
.y5d{bottom:451.106667pt;}
.y132{bottom:451.426667pt;}
.y1e1{bottom:454.786667pt;}
.ydf{bottom:454.946667pt;}
.y26e{bottom:455.106667pt;}
.ybc{bottom:461.026667pt;}
.y9e{bottom:463.746667pt;}
.y200{bottom:464.546667pt;}
.y131{bottom:464.706667pt;}
.y231{bottom:465.346667pt;}
.y10e{bottom:466.146667pt;}
.y29{bottom:466.306667pt;}
.y5c{bottom:467.106667pt;}
.y1e0{bottom:470.146667pt;}
.y26d{bottom:470.306667pt;}
.yde{bottom:474.306667pt;}
.ybb{bottom:477.026667pt;}
.y1bb{bottom:477.346667pt;}
.y9d{bottom:479.746667pt;}
.y1ff{bottom:480.706667pt;}
.y28{bottom:481.506667pt;}
.y10d{bottom:482.306667pt;}
.y5b{bottom:483.266667pt;}
.y26c{bottom:485.666667pt;}
.y1df{bottom:489.506667pt;}
.y16f{bottom:490.466667pt;}
.yba{bottom:493.186667pt;}
.y1ba{bottom:493.506667pt;}
.y9c{bottom:495.906667pt;}
.y1fe{bottom:496.706667pt;}
.y27{bottom:496.866667pt;}
.y230{bottom:497.506667pt;}
.ydd{bottom:497.666667pt;}
.y10c{bottom:498.306667pt;}
.y5a{bottom:499.266667pt;}
.y26b{bottom:501.026667pt;}
.y16e{bottom:506.626667pt;}
.y1de{bottom:508.866667pt;}
.y1b9{bottom:509.506667pt;}
.y9b{bottom:511.906667pt;}
.yb9{bottom:512.386667pt;}
.y1fd{bottom:512.866667pt;}
.ydc{bottom:513.026667pt;}
.y22f{bottom:513.666667pt;}
.y10b{bottom:514.466667pt;}
.y26{bottom:515.106667pt;}
.y59{bottom:515.426667pt;}
.y26a{bottom:516.386667pt;}
.y16d{bottom:522.626667pt;}
.y1dd{bottom:524.066667pt;}
.y1b8{bottom:525.666667pt;}
.y9a{bottom:528.066667pt;}
.ydb{bottom:528.386667pt;}
.y1fc{bottom:528.866667pt;}
.y22e{bottom:529.666667pt;}
.y10a{bottom:530.466667pt;}
.y58{bottom:531.426667pt;}
.y269{bottom:531.586667pt;}
.yb8{bottom:536.573333pt;}
.y156{bottom:537.373333pt;}
.y16c{bottom:538.813333pt;}
.y1dc{bottom:539.453333pt;}
.y1b7{bottom:541.693333pt;}
.yda{bottom:543.613333pt;}
.y99{bottom:544.093333pt;}
.y1fb{bottom:545.053333pt;}
.y22d{bottom:545.853333pt;}
.y109{bottom:546.653333pt;}
.y268{bottom:546.973333pt;}
.y57{bottom:547.613333pt;}
.y25{bottom:550.813333pt;}
.yb7{bottom:552.733333pt;}
.y155{bottom:553.373333pt;}
.y16b{bottom:554.813333pt;}
.y1b6{bottom:557.853333pt;}
.yd9{bottom:558.973333pt;}
.y267{bottom:559.453333pt;}
.y98{bottom:560.253333pt;}
.y1fa{bottom:561.213333pt;}
.y22c{bottom:562.013333pt;}
.y108{bottom:562.653333pt;}
.y56{bottom:563.613333pt;}
.yb6{bottom:568.733333pt;}
.y154{bottom:569.533333pt;}
.y1db{bottom:570.173333pt;}
.y16a{bottom:570.973333pt;}
.y266{bottom:573.853333pt;}
.y1b5{bottom:574.013333pt;}
.yd8{bottom:574.333333pt;}
.y97{bottom:576.253333pt;}
.y1f9{bottom:577.213333pt;}
.y22b{bottom:578.013333pt;}
.y55{bottom:579.773333pt;}
.y24{bottom:581.853333pt;}
.y107{bottom:582.013333pt;}
.yb5{bottom:584.893333pt;}
.y1da{bottom:585.373333pt;}
.y153{bottom:585.533333pt;}
.y265{bottom:586.173333pt;}
.y169{bottom:586.973333pt;}
.yd7{bottom:589.693333pt;}
.y1b4{bottom:590.013333pt;}
.y96{bottom:592.413333pt;}
.y22a{bottom:594.173333pt;}
.y23{bottom:595.773333pt;}
.y1f8{bottom:597.533333pt;}
.y264{bottom:598.493333pt;}
.y1d9{bottom:600.733333pt;}
.yb4{bottom:600.893333pt;}
.y152{bottom:601.693333pt;}
.y168{bottom:603.133333pt;}
.yd6{bottom:604.893333pt;}
.y106{bottom:606.173333pt;}
.y95{bottom:608.413333pt;}
.y1b3{bottom:609.373333pt;}
.y22{bottom:609.533333pt;}
.y229{bottom:610.173333pt;}
.y263{bottom:610.653333pt;}
.y54{bottom:611.933333pt;}
.y1f7{bottom:614.973333pt;}
.y130{bottom:615.293333pt;}
.y1d8{bottom:616.093333pt;}
.yb3{bottom:617.053333pt;}
.y151{bottom:617.693333pt;}
.y167{bottom:619.293333pt;}
.yd5{bottom:620.253333pt;}
.y105{bottom:622.173333pt;}
.y262{bottom:622.973333pt;}
.y21{bottom:623.293333pt;}
.y94{bottom:624.573333pt;}
.y228{bottom:626.333333pt;}
.y53{bottom:627.933333pt;}
.y1b2{bottom:629.373333pt;}
.y12f{bottom:631.453333pt;}
.yb2{bottom:633.053333pt;}
.y150{bottom:633.853333pt;}
.y261{bottom:635.133333pt;}
.y166{bottom:635.293333pt;}
.yd4{bottom:635.613333pt;}
.y20{bottom:637.053333pt;}
.y18e{bottom:637.373333pt;}
.y104{bottom:638.333333pt;}
.y93{bottom:640.733333pt;}
.y227{bottom:642.333333pt;}
.y52{bottom:644.093333pt;}
.y1b1{bottom:645.533333pt;}
.y1d7{bottom:646.653333pt;}
.y12e{bottom:647.453333pt;}
.yb1{bottom:649.213333pt;}
.y14f{bottom:649.853333pt;}
.y1f{bottom:650.813333pt;}
.yd3{bottom:650.973333pt;}
.y165{bottom:651.453333pt;}
.y18d{bottom:653.533333pt;}
.y103{bottom:654.333333pt;}
.y92{bottom:656.733333pt;}
.y226{bottom:658.493333pt;}
.y260{bottom:659.773333pt;}
.y51{bottom:660.093333pt;}
.y1b0{bottom:661.533333pt;}
.y1d6{bottom:662.013333pt;}
.y12d{bottom:663.613333pt;}
.y1e{bottom:664.573333pt;}
.yb0{bottom:665.213333pt;}
.y14e{bottom:666.013333pt;}
.yd2{bottom:666.173333pt;}
.y164{bottom:667.453333pt;}
.y18c{bottom:669.533333pt;}
.y102{bottom:670.493333pt;}
.y25f{bottom:671.933333pt;}
.y91{bottom:672.893333pt;}
.y225{bottom:674.493333pt;}
.y1d5{bottom:677.373333pt;}
.y1af{bottom:677.693333pt;}
.y1d{bottom:678.493333pt;}
.y50{bottom:679.453333pt;}
.y12c{bottom:679.613333pt;}
.yaf{bottom:681.373333pt;}
.yd1{bottom:681.533333pt;}
.y25e{bottom:684.253333pt;}
.y14d{bottom:685.373333pt;}
.y18b{bottom:685.693333pt;}
.y101{bottom:686.493333pt;}
.y163{bottom:688.093333pt;}
.y90{bottom:688.893333pt;}
.y224{bottom:690.653333pt;}
.y1c{bottom:692.253333pt;}
.y1d4{bottom:692.733333pt;}
.y1ae{bottom:693.853333pt;}
.y12b{bottom:695.773333pt;}
.y25d{bottom:696.413333pt;}
.yd0{bottom:696.893333pt;}
.yae{bottom:697.373333pt;}
.y18a{bottom:701.853333pt;}
.y100{bottom:702.653333pt;}
.y162{bottom:703.453333pt;}
.y4f{bottom:703.613333pt;}
.y8f{bottom:705.053333pt;}
.y223{bottom:706.653333pt;}
.y1d3{bottom:707.933333pt;}
.y25c{bottom:708.733333pt;}
.y1ad{bottom:709.853333pt;}
.y14c{bottom:710.013333pt;}
.y1b{bottom:711.293333pt;}
.y12a{bottom:711.773333pt;}
.ycf{bottom:712.253333pt;}
.yad{bottom:713.533333pt;}
.y189{bottom:717.853333pt;}
.yff{bottom:718.653333pt;}
.y4e{bottom:719.613333pt;}
.y8e{bottom:721.053333pt;}
.y161{bottom:722.173333pt;}
.y222{bottom:722.813333pt;}
.y1d2{bottom:723.293333pt;}
.y1a{bottom:725.053333pt;}
.y14b{bottom:725.373333pt;}
.y1ac{bottom:726.013333pt;}
.yce{bottom:727.453333pt;}
.yac{bottom:729.533333pt;}
.y129{bottom:731.133333pt;}
.y25b{bottom:733.213333pt;}
.y188{bottom:734.013333pt;}
.yfe{bottom:734.813333pt;}
.y4d{bottom:735.773333pt;}
.y8d{bottom:737.213333pt;}
.y1d1{bottom:738.653333pt;}
.y221{bottom:738.813333pt;}
.y1ab{bottom:742.013333pt;}
.ycd{bottom:742.813333pt;}
.y14a{bottom:743.773333pt;}
.y19{bottom:744.253333pt;}
.y25a{bottom:745.533333pt;}
.yab{bottom:745.693333pt;}
.y187{bottom:750.013333pt;}
.y128{bottom:750.493333pt;}
.yfd{bottom:750.813333pt;}
.y4c{bottom:751.773333pt;}
.y8c{bottom:753.213333pt;}
.y1d0{bottom:754.013333pt;}
.y220{bottom:754.973333pt;}
.y259{bottom:757.693333pt;}
.y18{bottom:758.013333pt;}
.ycc{bottom:758.173333pt;}
.yaa{bottom:761.853333pt;}
.y127{bottom:765.853333pt;}
.y186{bottom:766.173333pt;}
.yfc{bottom:766.973333pt;}
.y4b{bottom:767.933333pt;}
.y1cf{bottom:769.213333pt;}
.y8b{bottom:769.373333pt;}
.y258{bottom:770.013333pt;}
.y21f{bottom:771.133333pt;}
.y17{bottom:771.773333pt;}
.y1aa{bottom:774.213333pt;}
.ycb{bottom:777.413333pt;}
.ya9{bottom:781.093333pt;}
.y126{bottom:781.253333pt;}
.y185{bottom:782.213333pt;}
.y257{bottom:782.373333pt;}
.yfb{bottom:783.173333pt;}
.y4a{bottom:783.973333pt;}
.y1ce{bottom:784.613333pt;}
.y8a{bottom:785.413333pt;}
.y16{bottom:785.573333pt;}
.y21e{bottom:787.173333pt;}
.y1a9{bottom:790.373333pt;}
.y256{bottom:794.533333pt;}
.y125{bottom:796.453333pt;}
.y184{bottom:798.373333pt;}
.yfa{bottom:799.173333pt;}
.y15{bottom:799.493333pt;}
.y1cd{bottom:799.973333pt;}
.y49{bottom:800.133333pt;}
.y89{bottom:801.573333pt;}
.y21d{bottom:803.333333pt;}
.y1a8{bottom:806.373333pt;}
.y255{bottom:806.853333pt;}
.ya8{bottom:809.893333pt;}
.y1f6{bottom:810.373333pt;}
.y124{bottom:811.813333pt;}
.y14{bottom:813.253333pt;}
.y183{bottom:814.373333pt;}
.yf9{bottom:815.333333pt;}
.y48{bottom:816.293333pt;}
.y88{bottom:817.573333pt;}
.y254{bottom:819.013333pt;}
.y21c{bottom:819.333333pt;}
.y1a7{bottom:822.533333pt;}
.y1f5{bottom:826.533333pt;}
.y13{bottom:827.013333pt;}
.y123{bottom:827.173333pt;}
.ya7{bottom:827.653333pt;}
.y182{bottom:830.533333pt;}
.yf8{bottom:831.333333pt;}
.y47{bottom:832.293333pt;}
.y87{bottom:833.733333pt;}
.y21b{bottom:835.493333pt;}
.y1a6{bottom:838.533333pt;}
.y12{bottom:840.773333pt;}
.y122{bottom:842.533333pt;}
.y253{bottom:843.653333pt;}
.y181{bottom:846.533333pt;}
.yf7{bottom:847.493333pt;}
.y46{bottom:848.453333pt;}
.y86{bottom:849.893333pt;}
.y21a{bottom:851.493333pt;}
.y1cc{bottom:853.893333pt;}
.y11{bottom:854.533333pt;}
.y1a5{bottom:854.693333pt;}
.y252{bottom:855.813333pt;}
.y121{bottom:857.733333pt;}
.y1f4{bottom:858.693333pt;}
.y180{bottom:862.693333pt;}
.yf6{bottom:863.493333pt;}
.y45{bottom:864.453333pt;}
.y85{bottom:865.893333pt;}
.y219{bottom:867.653333pt;}
.y251{bottom:868.133333pt;}
.y10{bottom:868.453333pt;}
.y120{bottom:873.093333pt;}
.y1a4{bottom:874.053333pt;}
.y1f3{bottom:874.693333pt;}
.y1cb{bottom:875.333333pt;}
.y17f{bottom:878.693333pt;}
.yf5{bottom:879.653333pt;}
.y250{bottom:880.293333pt;}
.y44{bottom:880.613333pt;}
.y84{bottom:882.053333pt;}
.yf{bottom:882.213333pt;}
.y218{bottom:883.653333pt;}
.y11f{bottom:888.453333pt;}
.y1f2{bottom:890.853333pt;}
.y24f{bottom:892.613333pt;}
.y17e{bottom:894.853333pt;}
.ye{bottom:895.973333pt;}
.y43{bottom:896.613333pt;}
.y83{bottom:898.053333pt;}
.yf4{bottom:898.853333pt;}
.y217{bottom:899.813333pt;}
.y11e{bottom:903.813333pt;}
.y24e{bottom:904.933333pt;}
.y1f1{bottom:906.853333pt;}
.yd{bottom:909.733333pt;}
.ya6{bottom:910.373333pt;}
.y17d{bottom:910.853333pt;}
.y82{bottom:914.213333pt;}
.y216{bottom:915.813333pt;}
.y42{bottom:915.973333pt;}
.y24d{bottom:917.093333pt;}
.y11d{bottom:919.013333pt;}
.y149{bottom:920.293333pt;}
.yf3{bottom:923.013333pt;}
.yc{bottom:923.493333pt;}
.y1f0{bottom:926.213333pt;}
.y17c{bottom:927.013333pt;}
.ya5{bottom:929.093333pt;}
.y24c{bottom:929.413333pt;}
.y81{bottom:930.213333pt;}
.y148{bottom:935.653333pt;}
.y11c{bottom:938.373333pt;}
.yf2{bottom:939.173333pt;}
.y24b{bottom:941.573333pt;}
.y17b{bottom:943.173333pt;}
.y80{bottom:946.373333pt;}
.y76{bottom:948.933333pt;}
.y147{bottom:951.013333pt;}
.yf1{bottom:955.173333pt;}
.y17a{bottom:959.173333pt;}
.y7f{bottom:962.373333pt;}
.y24a{bottom:962.533333pt;}
.y146{bottom:966.373333pt;}
.yf0{bottom:971.333333pt;}
.y179{bottom:975.333333pt;}
.y7e{bottom:978.533333pt;}
.y73{bottom:979.973333pt;}
.y145{bottom:981.573333pt;}
.yef{bottom:987.333333pt;}
.y178{bottom:991.333333pt;}
.y249{bottom:993.893333pt;}
.y7d{bottom:994.533333pt;}
.y144{bottom:996.933333pt;}
.yee{bottom:1003.493333pt;}
.y248{bottom:1006.853333pt;}
.y177{bottom:1007.493333pt;}
.y7c{bottom:1010.693333pt;}
.y143{bottom:1012.320000pt;}
.yed{bottom:1019.520000pt;}
.y247{bottom:1019.680000pt;}
.y176{bottom:1023.520000pt;}
.y7b{bottom:1026.720000pt;}
.y142{bottom:1027.680000pt;}
.y246{bottom:1032.640000pt;}
.y7a{bottom:1042.880000pt;}
.y245{bottom:1045.440000pt;}
.y79{bottom:1079.680000pt;}
.y2{bottom:1082.400000pt;}
.y78{bottom:1096.480000pt;}
.y1{bottom:1097.600000pt;}
.hf{height:16.800000pt;}
.hc{height:29.940625pt;}
.hb{height:30.254687pt;}
.h17{height:31.217812pt;}
.h5{height:32.683437pt;}
.h8{height:33.515625pt;}
.ha{height:33.867188pt;}
.h3{height:37.090625pt;}
.h2{height:37.479688pt;}
.h13{height:38.672812pt;}
.h7{height:38.953125pt;}
.h16{height:39.347188pt;}
.h14{height:40.488438pt;}
.h10{height:41.543750pt;}
.h11{height:43.039960pt;}
.h6{height:43.040000pt;}
.h12{height:44.687500pt;}
.h15{height:45.156250pt;}
.h4{height:48.800000pt;}
.hd{height:73.632000pt;}
.h9{height:74.628125pt;}
.he{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:180.066667pt;}
.w3{width:216.066667pt;}
.w5{width:629.853333pt;}
.w4{width:649.093333pt;}
.w6{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.626667pt;}
.x6{left:10.586667pt;}
.x7{left:62.880000pt;}
.x3d{left:68.319988pt;}
.xe{left:70.746667pt;}
.xa{left:71.840000pt;}
.x1f{left:74.239988pt;}
.x8{left:76.000000pt;}
.xf{left:80.346667pt;}
.x10{left:82.112000pt;}
.x33{left:83.391988pt;}
.x2e{left:88.031988pt;}
.x23{left:95.071988pt;}
.x32{left:101.151988pt;}
.x1b{left:106.271988pt;}
.x31{left:107.551988pt;}
.x19{left:123.231988pt;}
.x44{left:128.031988pt;}
.x2f{left:131.071988pt;}
.x13{left:151.386655pt;}
.x43{left:158.586655pt;}
.x9{left:162.426667pt;}
.x21{left:167.066655pt;}
.x3f{left:168.346655pt;}
.x11{left:175.714667pt;}
.x22{left:179.226655pt;}
.x18{left:299.586655pt;}
.x1{left:311.906667pt;}
.x20{left:329.986655pt;}
.x1a{left:337.986655pt;}
.x2d{left:358.466655pt;}
.x30{left:360.066655pt;}
.x3e{left:379.266655pt;}
.x38{left:385.986655pt;}
.x2{left:387.106667pt;}
.x3{left:390.306667pt;}
.x12{left:396.866655pt;}
.x4{left:405.026667pt;}
.xb{left:406.466667pt;}
.x34{left:410.946655pt;}
.x26{left:414.653322pt;}
.xc{left:416.093333pt;}
.x24{left:425.373322pt;}
.x36{left:427.773322pt;}
.x2b{left:441.533322pt;}
.x42{left:444.253322pt;}
.x1e{left:453.693322pt;}
.x1c{left:458.653322pt;}
.x3c{left:467.293322pt;}
.x28{left:469.853322pt;}
.x41{left:475.293322pt;}
.x2a{left:476.893322pt;}
.x37{left:480.893322pt;}
.x16{left:486.333322pt;}
.xd{left:489.373333pt;}
.x3a{left:493.693322pt;}
.x40{left:498.493322pt;}
.x2c{left:523.613322pt;}
.x25{left:526.333322pt;}
.x27{left:687.173322pt;}
.x35{left:689.093322pt;}
.x39{left:690.853322pt;}
.x1d{left:692.613322pt;}
.x29{left:696.613322pt;}
.x17{left:697.893322pt;}
.x3b{left:702.213322pt;}
.x15{left:713.093322pt;}
.x14{left:722.213322pt;}
}




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