
    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_f9524985fb9ad9ca9e3da274.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_5ccebe9d5b26ee972ea2587b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_27ecb649bf9beb584b25b551.woff2')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_c5a650121623a2216b7c4c85.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_7fa21d1b31ec5fda906529b3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_322045e5cc224faf4ff0c406.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_6ba6a6abb19328000f9eb113.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls19{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.206400px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls2{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.206400px;}
.lsf{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.900000px;}
.ls16{letter-spacing:6.660000px;}
.ls13{letter-spacing:10.980000px;}
.ls18{letter-spacing:16.506720px;}
.ls3{letter-spacing:26.586720px;}
.lsa{letter-spacing:26.730720px;}
.ls14{letter-spacing:46.026720px;}
.ls7{letter-spacing:51.300000px;}
.ls8{letter-spacing:51.480000px;}
.ls17{letter-spacing:52.200000px;}
.lsb{letter-spacing:64.026720px;}
.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;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.wsc{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.093600px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.680200px;}
.wsf{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1.347840px;}
._0{width:1.254960px;}
._5{width:2.501520px;}
._8{width:4.362480px;}
._9{width:5.444640px;}
._6{width:6.513840px;}
._c{width:8.061840px;}
._b{width:9.116640px;}
._a{width:10.218960px;}
._12{width:11.354400px;}
._e{width:12.522960px;}
._d{width:13.685040px;}
._7{width:16.254720px;}
._17{width:17.270640px;}
._f{width:19.003680px;}
._16{width:20.198880px;}
._18{width:21.931920px;}
._1c{width:23.664960px;}
._13{width:24.680880px;}
._1a{width:25.995600px;}
._1f{width:27.549360px;}
._27{width:28.744560px;}
._2b{width:29.915280px;}
._19{width:31.099680px;}
._20{width:32.868000px;}
._14{width:34.302240px;}
._15{width:35.437680px;}
._24{width:36.692640px;}
._2d{width:37.711440px;}
._4{width:38.782800px;}
._2a{width:40.397760px;}
._23{width:42.011280px;}
._26{width:43.418880px;}
._25{width:44.700480px;}
._22{width:46.406880px;}
._21{width:47.748240px;}
._10{width:49.062960px;}
._1d{width:50.138640px;}
._1e{width:51.393600px;}
._2c{width:52.947360px;}
._11{width:54.321840px;}
._1b{width:56.318400px;}
._30{width:57.847680px;}
._38{width:59.401440px;}
._3c{width:60.596640px;}
._37{width:63.444960px;}
._2{width:64.800000px;}
._45{width:66.834720px;}
._33{width:68.365440px;}
._34{width:69.381360px;}
._48{width:70.994880px;}
._39{width:72.429120px;}
._3a{width:73.474320px;}
._2e{width:74.939040px;}
._2f{width:77.807520px;}
._59{width:79.182000px;}
._28{width:81.333360px;}
._29{width:82.409040px;}
._36{width:83.424960px;}
._51{width:85.839840px;}
._3e{width:87.344640px;}
._3d{width:88.708320px;}
._4f{width:95.376960px;}
._50{width:100.217520px;}
._3f{width:102.607920px;}
._40{width:103.805040px;}
._43{width:107.508240px;}
._54{width:114.320880px;}
._4a{width:116.233200px;}
._35{width:120.356640px;}
._4e{width:125.609760px;}
._44{width:127.348560px;}
._56{width:136.910160px;}
._57{width:138.421440px;}
._42{width:146.531520px;}
._32{width:151.850160px;}
._4c{width:163.860720px;}
._31{width:193.084560px;}
._3b{width:211.072320px;}
._41{width:264.154080px;}
._4d{width:295.865280px;}
._49{width:328.434240px;}
._55{width:334.490880px;}
._53{width:376.248960px;}
._52{width:377.320800px;}
._3{width:674.100000px;}
._4b{width:870.225120px;}
._58{width:901.121040px;}
._47{width:925.144560px;}
._46{width:930.702240px;}
.fc3{color:rgb(24,23,23);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:5.040000px;}
.ye{bottom:5.760000px;}
.y2f{bottom:5.940000px;}
.ydb{bottom:5.970000px;}
.y11{bottom:6.480000px;}
.y103{bottom:6.660000px;}
.ydf{bottom:7.020000px;}
.ye1{bottom:7.200000px;}
.yf1{bottom:7.560000px;}
.yf8{bottom:7.590000px;}
.y8{bottom:7.920000px;}
.yde{bottom:8.460000px;}
.y13d{bottom:8.640000px;}
.y1b{bottom:8.820000px;}
.y157{bottom:9.000000px;}
.y159{bottom:9.030000px;}
.y15c{bottom:12.060000px;}
.y8b{bottom:15.660000px;}
.y11d{bottom:15.690000px;}
.y89{bottom:15.840000px;}
.yd9{bottom:15.870000px;}
.yb6{bottom:15.885000px;}
.yd{bottom:25.560000px;}
.y11c{bottom:25.590000px;}
.y2e{bottom:25.740000px;}
.yda{bottom:25.770000px;}
.y92{bottom:25.785000px;}
.y8f{bottom:26.505000px;}
.y2{bottom:26.820000px;}
.y7{bottom:27.720000px;}
.ybd{bottom:27.900000px;}
.ya2{bottom:35.460000px;}
.y10b{bottom:35.640000px;}
.y87{bottom:36.360000px;}
.y151{bottom:39.600000px;}
.y106{bottom:45.360000px;}
.y10d{bottom:45.390000px;}
.y13{bottom:45.540000px;}
.y95{bottom:46.260000px;}
.y8e{bottom:46.305000px;}
.y6{bottom:47.520000px;}
.yb4{bottom:47.700000px;}
.yad{bottom:48.420000px;}
.ya1{bottom:49.500000px;}
.yc{bottom:54.360000px;}
.y152{bottom:55.440000px;}
.y86{bottom:56.160000px;}
.y10{bottom:59.580000px;}
.y105{bottom:65.205000px;}
.y2d{bottom:65.340000px;}
.y94{bottom:66.060000px;}
.y8d{bottom:66.105000px;}
.yb3{bottom:67.500000px;}
.yac{bottom:68.400000px;}
.yc4{bottom:68.445000px;}
.y5{bottom:69.660000px;}
.yb{bottom:74.340000px;}
.y1d1{bottom:75.780000px;}
.y85{bottom:75.960000px;}
.y1d0{bottom:80.280000px;}
.y134{bottom:80.820000px;}
.y10a{bottom:83.340000px;}
.y1a8{bottom:83.700000px;}
.y189{bottom:84.780000px;}
.y2c{bottom:85.140000px;}
.y8c{bottom:86.085000px;}
.ya0{bottom:87.300000px;}
.ydd{bottom:87.480000px;}
.yc3{bottom:88.245000px;}
.y79{bottom:95.580000px;}
.y41{bottom:97.020000px;}
.y4{bottom:97.590000px;}
.yd7{bottom:98.100000px;}
.y1cf{bottom:100.080000px;}
.y133{bottom:100.620000px;}
.ya{bottom:103.170000px;}
.y1a7{bottom:103.500000px;}
.y188{bottom:104.580000px;}
.y2b{bottom:105.120000px;}
.y15a{bottom:105.300000px;}
.y83{bottom:106.965000px;}
.y9f{bottom:107.100000px;}
.yc2{bottom:108.045000px;}
.ydc{bottom:110.700000px;}
.y78{bottom:115.380000px;}
.y40{bottom:116.820000px;}
.yd6{bottom:117.900000px;}
.y1ce{bottom:120.060000px;}
.y132{bottom:120.420000px;}
.y9{bottom:122.970000px;}
.y1a6{bottom:123.300000px;}
.y187{bottom:124.380000px;}
.y2a{bottom:124.920000px;}
.y82{bottom:126.765000px;}
.y9e{bottom:126.900000px;}
.y3{bottom:131.970000px;}
.y77{bottom:135.180000px;}
.y3f{bottom:136.620000px;}
.yd5{bottom:137.880000px;}
.y1cd{bottom:139.860000px;}
.y131{bottom:140.220000px;}
.y1a5{bottom:143.280000px;}
.y186{bottom:144.360000px;}
.y29{bottom:144.720000px;}
.y158{bottom:145.800000px;}
.y9d{bottom:146.880000px;}
.yd8{bottom:151.020000px;}
.y76{bottom:155.010000px;}
.y3e{bottom:156.450000px;}
.yd4{bottom:157.710000px;}
.y1cc{bottom:159.690000px;}
.y130{bottom:160.230000px;}
.y1a4{bottom:163.110000px;}
.y109{bottom:163.470000px;}
.y185{bottom:164.190000px;}
.y28{bottom:164.520000px;}
.y9c{bottom:166.710000px;}
.y156{bottom:172.650000px;}
.y75{bottom:174.990000px;}
.y3d{bottom:176.250000px;}
.yd3{bottom:177.510000px;}
.y1cb{bottom:179.490000px;}
.y12f{bottom:180.030000px;}
.y1a3{bottom:182.910000px;}
.y184{bottom:183.990000px;}
.y27{bottom:184.350000px;}
.y9b{bottom:186.510000px;}
.y74{bottom:194.790000px;}
.y3c{bottom:196.230000px;}
.yd2{bottom:197.310000px;}
.y1ca{bottom:199.290000px;}
.y155{bottom:199.470000px;}
.y12e{bottom:199.830000px;}
.y1a2{bottom:202.710000px;}
.y183{bottom:203.790000px;}
.y26{bottom:204.330000px;}
.y9a{bottom:206.310000px;}
.y73{bottom:214.590000px;}
.y3b{bottom:216.030000px;}
.yd1{bottom:217.110000px;}
.y1c9{bottom:219.270000px;}
.y12d{bottom:219.630000px;}
.y1a1{bottom:222.510000px;}
.y182{bottom:223.590000px;}
.y108{bottom:223.770000px;}
.y25{bottom:224.130000px;}
.y99{bottom:226.110000px;}
.y72{bottom:234.390000px;}
.y3a{bottom:235.830000px;}
.yd0{bottom:237.090000px;}
.y1c8{bottom:239.070000px;}
.y12c{bottom:239.430000px;}
.y154{bottom:239.970000px;}
.y1a0{bottom:242.490000px;}
.y181{bottom:243.570000px;}
.y24{bottom:243.930000px;}
.yaa{bottom:245.910000px;}
.y98{bottom:246.090000px;}
.y71{bottom:254.190000px;}
.y39{bottom:255.630000px;}
.ycf{bottom:256.890000px;}
.y1c7{bottom:258.870000px;}
.y12b{bottom:259.410000px;}
.y93{bottom:260.850000px;}
.y19f{bottom:262.290000px;}
.y180{bottom:263.370000px;}
.y23{bottom:263.730000px;}
.y70{bottom:274.170000px;}
.y38{bottom:275.430000px;}
.yce{bottom:276.690000px;}
.y1c6{bottom:278.670000px;}
.y12a{bottom:279.210000px;}
.y153{bottom:280.290000px;}
.y19e{bottom:282.090000px;}
.y17f{bottom:283.170000px;}
.y22{bottom:283.530000px;}
.y107{bottom:284.070000px;}
.y6f{bottom:293.970000px;}
.y37{bottom:295.410000px;}
.ycd{bottom:296.490000px;}
.y1c5{bottom:298.470000px;}
.y129{bottom:299.010000px;}
.y97{bottom:301.170000px;}
.y17e{bottom:302.970000px;}
.y21{bottom:303.510000px;}
.y19d{bottom:310.890000px;}
.y6e{bottom:313.770000px;}
.y36{bottom:315.210000px;}
.ycc{bottom:316.290000px;}
.y1c4{bottom:318.450000px;}
.y128{bottom:318.810000px;}
.y150{bottom:320.790000px;}
.y17d{bottom:322.770000px;}
.y20{bottom:323.310000px;}
.y19c{bottom:330.690000px;}
.y6d{bottom:333.570000px;}
.y35{bottom:335.010000px;}
.ycb{bottom:336.270000px;}
.y1c3{bottom:338.250000px;}
.y127{bottom:338.610000px;}
.y96{bottom:341.670000px;}
.y17c{bottom:342.750000px;}
.y1f{bottom:343.110000px;}
.y104{bottom:344.370000px;}
.y19b{bottom:350.670000px;}
.y6c{bottom:353.370000px;}
.y34{bottom:354.810000px;}
.yca{bottom:356.070000px;}
.y1c2{bottom:358.050000px;}
.y126{bottom:358.590000px;}
.y17b{bottom:362.550000px;}
.y1e{bottom:362.910000px;}
.y6b{bottom:373.350000px;}
.y33{bottom:374.610000px;}
.yc9{bottom:375.870000px;}
.y1c1{bottom:377.850000px;}
.y125{bottom:378.390000px;}
.y19a{bottom:379.470000px;}
.y81{bottom:381.990000px;}
.y17a{bottom:382.350000px;}
.y1d{bottom:382.710000px;}
.yc1{bottom:391.350000px;}
.y6a{bottom:393.150000px;}
.y32{bottom:394.590000px;}
.y1c0{bottom:397.650000px;}
.y124{bottom:398.190000px;}
.y199{bottom:399.270000px;}
.y179{bottom:402.195000px;}
.y14f{bottom:406.695000px;}
.y69{bottom:412.995000px;}
.y31{bottom:414.435000px;}
.y1bf{bottom:417.675000px;}
.y123{bottom:418.035000px;}
.y198{bottom:419.115000px;}
.y178{bottom:421.995000px;}
.y91{bottom:422.535000px;}
.y101{bottom:424.335000px;}
.y14e{bottom:426.495000px;}
.yc8{bottom:432.615000px;}
.y68{bottom:432.795000px;}
.y1be{bottom:437.475000px;}
.y177{bottom:441.975000px;}
.y102{bottom:446.475000px;}
.y197{bottom:447.915000px;}
.y30{bottom:448.995000px;}
.y67{bottom:452.595000px;}
.y1bd{bottom:457.275000px;}
.y176{bottom:461.775000px;}
.y90{bottom:463.035000px;}
.y14c{bottom:466.275000px;}
.y196{bottom:467.895000px;}
.y1c{bottom:469.515000px;}
.y66{bottom:472.575000px;}
.y122{bottom:473.295000px;}
.yc7{bottom:473.835000px;}
.y14d{bottom:475.275000px;}
.y1bc{bottom:477.075000px;}
.y175{bottom:481.575000px;}
.y14b{bottom:486.075000px;}
.y65{bottom:492.375000px;}
.y100{bottom:492.555000px;}
.yc6{bottom:495.075000px;}
.y121{bottom:495.255000px;}
.y195{bottom:496.695000px;}
.y1bb{bottom:496.875000px;}
.y174{bottom:501.375000px;}
.y84{bottom:503.355000px;}
.y1ba{bottom:511.635000px;}
.y64{bottom:512.175000px;}
.yff{bottom:512.535000px;}
.y14a{bottom:514.875000px;}
.y173{bottom:516.135000px;}
.y194{bottom:516.495000px;}
.y63{bottom:531.975000px;}
.yfe{bottom:532.335000px;}
.y1b9{bottom:533.775000px;}
.y149{bottom:534.675000px;}
.y120{bottom:535.755000px;}
.yc5{bottom:536.295000px;}
.y172{bottom:538.095000px;}
.y8a{bottom:543.855000px;}
.y62{bottom:551.775000px;}
.yfd{bottom:552.135000px;}
.y148{bottom:554.655000px;}
.y1b8{bottom:555.735000px;}
.y193{bottom:556.095000px;}
.y171{bottom:560.055000px;}
.y61{bottom:571.755000px;}
.yfc{bottom:571.935000px;}
.y147{bottom:574.455000px;}
.y11f{bottom:576.075000px;}
.ya9{bottom:577.515000px;}
.y1b7{bottom:577.695000px;}
.y170{bottom:582.195000px;}
.y88{bottom:584.175000px;}
.y60{bottom:591.555000px;}
.yfb{bottom:591.735000px;}
.y146{bottom:594.255000px;}
.y192{bottom:595.875000px;}
.yc0{bottom:598.755000px;}
.y1b6{bottom:599.655000px;}
.y16f{bottom:604.155000px;}
.y5f{bottom:611.355000px;}
.yfa{bottom:611.715000px;}
.y145{bottom:614.055000px;}
.y191{bottom:615.675000px;}
.y11e{bottom:616.575000px;}
.ybf{bottom:620.175000px;}
.y80{bottom:624.675000px;}
.y16e{bottom:626.115000px;}
.y5e{bottom:631.155000px;}
.yf9{bottom:631.515000px;}
.y144{bottom:633.855000px;}
.y190{bottom:635.475000px;}
.y11b{bottom:638.535000px;}
.y1b5{bottom:639.975000px;}
.yf7{bottom:646.275000px;}
.y5d{bottom:650.985000px;}
.y143{bottom:653.865000px;}
.y18f{bottom:655.305000px;}
.ybe{bottom:661.425000px;}
.y16d{bottom:666.465000px;}
.yf6{bottom:670.425000px;}
.y5c{bottom:670.965000px;}
.y142{bottom:673.665000px;}
.y18e{bottom:675.285000px;}
.y11a{bottom:678.885000px;}
.y1b4{bottom:680.505000px;}
.yb9{bottom:682.665000px;}
.y141{bottom:688.425000px;}
.y5b{bottom:690.765000px;}
.yf5{bottom:694.365000px;}
.y18d{bottom:695.085000px;}
.y1b3{bottom:702.465000px;}
.y7f{bottom:708.405000px;}
.y5a{bottom:710.565000px;}
.y140{bottom:714.705000px;}
.y18c{bottom:714.885000px;}
.yf4{bottom:718.485000px;}
.y119{bottom:719.385000px;}
.ybc{bottom:723.885000px;}
.y1b2{bottom:724.425000px;}
.y7e{bottom:728.205000px;}
.y59{bottom:730.365000px;}
.y18b{bottom:734.685000px;}
.y13f{bottom:740.985000px;}
.yf3{bottom:742.605000px;}
.y1b1{bottom:746.385000px;}
.y7d{bottom:749.085000px;}
.y58{bottom:750.165000px;}
.y18a{bottom:754.485000px;}
.y118{bottom:759.705000px;}
.ybb{bottom:765.105000px;}
.yf2{bottom:766.725000px;}
.y13e{bottom:767.445000px;}
.y1b0{bottom:768.345000px;}
.y7c{bottom:769.065000px;}
.y57{bottom:770.145000px;}
.y16c{bottom:774.465000px;}
.yba{bottom:786.345000px;}
.y7b{bottom:788.865000px;}
.y56{bottom:789.945000px;}
.y1af{bottom:790.305000px;}
.yf0{bottom:790.665000px;}
.y13c{bottom:793.725000px;}
.y16b{bottom:794.265000px;}
.y117{bottom:805.965000px;}
.yb2{bottom:807.765000px;}
.y7a{bottom:808.665000px;}
.y55{bottom:809.745000px;}
.y1ae{bottom:812.265000px;}
.y16a{bottom:814.065000px;}
.yef{bottom:814.785000px;}
.y13b{bottom:820.005000px;}
.y116{bottom:825.765000px;}
.yb8{bottom:829.005000px;}
.y54{bottom:829.545000px;}
.y169{bottom:833.865000px;}
.y1ad{bottom:834.405000px;}
.y115{bottom:845.745000px;}
.y53{bottom:849.345000px;}
.yb7{bottom:850.425000px;}
.y168{bottom:853.665000px;}
.y1ac{bottom:856.365000px;}
.yee{bottom:861.045000px;}
.y114{bottom:865.545000px;}
.y13a{bottom:866.265000px;}
.y1a{bottom:867.165000px;}
.y52{bottom:869.325000px;}
.y167{bottom:873.645000px;}
.y1ab{bottom:878.325000px;}
.yed{bottom:880.845000px;}
.y113{bottom:885.345000px;}
.y139{bottom:886.065000px;}
.y51{bottom:889.125000px;}
.yb5{bottom:891.465000px;}
.y166{bottom:893.445000px;}
.y19{bottom:896.505000px;}
.y1aa{bottom:900.330000px;}
.yec{bottom:900.690000px;}
.y112{bottom:905.190000px;}
.y138{bottom:905.910000px;}
.y50{bottom:908.970000px;}
.y165{bottom:913.290000px;}
.yeb{bottom:920.490000px;}
.y137{bottom:920.850000px;}
.y18{bottom:921.570000px;}
.y1a9{bottom:922.290000px;}
.y111{bottom:924.990000px;}
.y4f{bottom:928.770000px;}
.yab{bottom:932.730000px;}
.y164{bottom:933.090000px;}
.y17{bottom:936.690000px;}
.y110{bottom:939.930000px;}
.yea{bottom:940.470000px;}
.y4e{bottom:948.570000px;}
.y163{bottom:952.890000px;}
.yb1{bottom:954.150000px;}
.y16{bottom:958.110000px;}
.ye9{bottom:960.270000px;}
.y136{bottom:961.170000px;}
.y4d{bottom:968.550000px;}
.y162{bottom:972.870000px;}
.yb0{bottom:975.390000px;}
.ye8{bottom:980.070000px;}
.y15{bottom:981.510000px;}
.y4c{bottom:988.350000px;}
.y161{bottom:992.670000px;}
.ye7{bottom:994.830000px;}
.yaf{bottom:996.810000px;}
.y10f{bottom:1000.050000px;}
.y135{bottom:1001.670000px;}
.y4b{bottom:1008.150000px;}
.y160{bottom:1012.470000px;}
.y14{bottom:1013.190000px;}
.yae{bottom:1018.050000px;}
.y4a{bottom:1027.950000px;}
.y15f{bottom:1032.270000px;}
.yf{bottom:1040.010000px;}
.y10e{bottom:1040.550000px;}
.ye6{bottom:1041.450000px;}
.y49{bottom:1047.750000px;}
.y15e{bottom:1052.070000px;}
.ya8{bottom:1059.270000px;}
.y1{bottom:1062.510000px;}
.ye5{bottom:1064.670000px;}
.y15d{bottom:1066.830000px;}
.y48{bottom:1067.730000px;}
.ya7{bottom:1086.450000px;}
.y47{bottom:1087.530000px;}
.ye4{bottom:1087.890000px;}
.y15b{bottom:1093.830000px;}
.ya6{bottom:1106.250000px;}
.y46{bottom:1107.330000px;}
.ye3{bottom:1111.110000px;}
.y10c{bottom:1120.650000px;}
.ya5{bottom:1126.050000px;}
.y45{bottom:1127.130000px;}
.ye2{bottom:1134.330000px;}
.ya4{bottom:1145.850000px;}
.y44{bottom:1146.960000px;}
.ye0{bottom:1157.580000px;}
.ya3{bottom:1165.860000px;}
.y43{bottom:1166.940000px;}
.y42{bottom:1193.400000px;}
.h3{height:2.521406px;}
.h11{height:19.800000px;}
.h20{height:19.980000px;}
.h34{height:21.060000px;}
.h28{height:21.240000px;}
.h35{height:21.276000px;}
.ha{height:21.960000px;}
.h22{height:22.500000px;}
.h23{height:22.536000px;}
.hf{height:22.860000px;}
.h25{height:23.220000px;}
.h26{height:23.256000px;}
.h24{height:23.400000px;}
.h2f{height:25.560000px;}
.h30{height:25.740000px;}
.h32{height:26.100000px;}
.h33{height:26.136000px;}
.hd{height:34.038984px;}
.h16{height:39.600000px;}
.h1f{height:39.636000px;}
.h15{height:39.780000px;}
.h18{height:39.816000px;}
.h4{height:43.273477px;}
.h12{height:43.506914px;}
.h6{height:47.965781px;}
.he{height:49.255313px;}
.h7{height:52.319180px;}
.hb{height:53.999297px;}
.h31{height:54.918984px;}
.h8{height:57.992344px;}
.h2a{height:59.400000px;}
.h2d{height:59.436000px;}
.h2b{height:59.580000px;}
.h5{height:60.999961px;}
.h27{height:61.740000px;}
.h9{height:65.884219px;}
.hc{height:69.341836px;}
.h29{height:79.236000px;}
.h2e{height:79.380000px;}
.h2c{height:79.416000px;}
.h1e{height:103.716000px;}
.h19{height:120.420000px;}
.h14{height:120.600000px;}
.h17{height:120.636000px;}
.h1d{height:123.480000px;}
.h1c{height:123.516000px;}
.h1b{height:125.100000px;}
.h2{height:146.016000px;}
.h21{height:184.710000px;}
.h13{height:241.950000px;}
.h10{height:396.750000px;}
.h1a{height:480.315000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:38.340000px;}
.w27{width:40.860000px;}
.w25{width:40.896000px;}
.w23{width:48.060000px;}
.w32{width:52.380000px;}
.w2f{width:53.460000px;}
.w6{width:55.476000px;}
.w28{width:55.836000px;}
.w26{width:55.980000px;}
.w2b{width:58.176000px;}
.w2a{width:60.660000px;}
.w2e{width:61.200000px;}
.w34{width:61.380000px;}
.w2d{width:63.036000px;}
.w24{width:63.720000px;}
.w1e{width:63.756000px;}
.w33{width:64.656000px;}
.w11{width:73.620000px;}
.w3c{width:77.040000px;}
.w37{width:77.796000px;}
.w3e{width:77.940000px;}
.w40{width:78.660000px;}
.w3d{width:78.840000px;}
.w38{width:82.980000px;}
.w30{width:83.736000px;}
.w35{width:84.420000px;}
.wd{width:92.880000px;}
.w18{width:94.860000px;}
.w16{width:95.076000px;}
.w3b{width:97.056000px;}
.w20{width:97.416000px;}
.wc{width:97.596000px;}
.w1c{width:99.180000px;}
.w46{width:99.540000px;}
.w21{width:99.720000px;}
.w22{width:99.756000px;}
.w45{width:102.096000px;}
.w31{width:103.176000px;}
.wb{width:105.480000px;}
.w15{width:105.696000px;}
.wf{width:106.020000px;}
.w3f{width:109.656000px;}
.w3a{width:109.800000px;}
.w42{width:111.276000px;}
.w1f{width:112.500000px;}
.w13{width:126.216000px;}
.w10{width:126.936000px;}
.w14{width:134.820000px;}
.w17{width:135.036000px;}
.w39{width:138.816000px;}
.w4{width:141.876000px;}
.w2{width:155.730000px;}
.w1a{width:168.690000px;}
.w8{width:192.270000px;}
.w1b{width:200.910000px;}
.w1d{width:209.550000px;}
.w19{width:220.350000px;}
.w43{width:246.630000px;}
.w36{width:253.110000px;}
.we{width:356.475000px;}
.w41{width:369.975000px;}
.w12{width:379.515000px;}
.w44{width:420.735000px;}
.w2c{width:459.825000px;}
.w3{width:499.065000px;}
.w9{width:585.510000px;}
.w7{width:745.170000px;}
.wa{width:777.780000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.560000px;}
.x5{left:8.640000px;}
.xb{left:45.900000px;}
.x1{left:48.240000px;}
.x31{left:52.200000px;}
.xa{left:53.999987px;}
.xd{left:57.600000px;}
.x10{left:64.079987px;}
.x20{left:68.220000px;}
.x25{left:75.599987px;}
.x19{left:80.999987px;}
.x3d{left:87.336000px;}
.xc{left:102.096000px;}
.x13{left:108.035987px;}
.x14{left:119.196000px;}
.x4{left:127.665000px;}
.x38{left:133.416000px;}
.x8{left:135.585000px;}
.x2{left:147.450000px;}
.x7{left:154.305000px;}
.x36{left:156.090000px;}
.x45{left:169.230000px;}
.x3e{left:197.850000px;}
.x3{left:203.970000px;}
.x6{left:206.325000px;}
.x1a{left:209.190000px;}
.x15{left:225.570000px;}
.xe{left:249.870000px;}
.x26{left:264.450000px;}
.x37{left:274.755000px;}
.x3f{left:295.815000px;}
.x21{left:310.395000px;}
.x22{left:322.455000px;}
.x17{left:323.895000px;}
.x27{left:329.115000px;}
.x1b{left:336.855000px;}
.x40{left:373.575000px;}
.x2c{left:377.895000px;}
.x39{left:386.535000px;}
.x1c{left:411.195000px;}
.x18{left:417.495000px;}
.x28{left:442.335000px;}
.x41{left:458.205000px;}
.x3a{left:464.325000px;}
.xf{left:473.504987px;}
.x2d{left:483.945000px;}
.x1d{left:487.905000px;}
.x23{left:491.145000px;}
.x11{left:500.504987px;}
.x32{left:512.745000px;}
.x12{left:527.504987px;}
.x42{left:537.765000px;}
.x29{left:540.645000px;}
.x3b{left:547.305000px;}
.x46{left:556.125000px;}
.x33{left:577.185000px;}
.x2e{left:582.225000px;}
.x43{left:616.425000px;}
.x3c{left:620.925000px;}
.x1e{left:623.445000px;}
.x2a{left:638.790000px;}
.x34{left:640.950000px;}
.x47{left:658.950000px;}
.x2f{left:677.850000px;}
.x24{left:692.070000px;}
.x9{left:703.050000px;}
.x44{left:726.990000px;}
.x1f{left:729.870000px;}
.x2b{left:739.230000px;}
.x35{left:757.230000px;}
.x30{left:780.810000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls19{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls2{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.183467pt;}
.lsf{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls16{letter-spacing:5.920000pt;}
.ls13{letter-spacing:9.760000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls3{letter-spacing:23.632640pt;}
.lsa{letter-spacing:23.760640pt;}
.ls14{letter-spacing:40.912640pt;}
.ls7{letter-spacing:45.600000pt;}
.ls8{letter-spacing:45.760000pt;}
.ls17{letter-spacing:46.400000pt;}
.lsb{letter-spacing:56.912640pt;}
.ws8{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.wsc{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.096533pt;}
.ws9{word-spacing:-13.049067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1.198080pt;}
._0{width:1.115520pt;}
._5{width:2.223573pt;}
._8{width:3.877760pt;}
._9{width:4.839680pt;}
._6{width:5.790080pt;}
._c{width:7.166080pt;}
._b{width:8.103680pt;}
._a{width:9.083520pt;}
._12{width:10.092800pt;}
._e{width:11.131520pt;}
._d{width:12.164480pt;}
._7{width:14.448640pt;}
._17{width:15.351680pt;}
._f{width:16.892160pt;}
._16{width:17.954560pt;}
._18{width:19.495040pt;}
._1c{width:21.035520pt;}
._13{width:21.938560pt;}
._1a{width:23.107200pt;}
._1f{width:24.488320pt;}
._27{width:25.550720pt;}
._2b{width:26.591360pt;}
._19{width:27.644160pt;}
._20{width:29.216000pt;}
._14{width:30.490880pt;}
._15{width:31.500160pt;}
._24{width:32.615680pt;}
._2d{width:33.521280pt;}
._4{width:34.473600pt;}
._2a{width:35.909120pt;}
._23{width:37.343360pt;}
._26{width:38.594560pt;}
._25{width:39.733760pt;}
._22{width:41.250560pt;}
._21{width:42.442880pt;}
._10{width:43.611520pt;}
._1d{width:44.567680pt;}
._1e{width:45.683200pt;}
._2c{width:47.064320pt;}
._11{width:48.286080pt;}
._1b{width:50.060800pt;}
._30{width:51.420160pt;}
._38{width:52.801280pt;}
._3c{width:53.863680pt;}
._37{width:56.395520pt;}
._2{width:57.600000pt;}
._45{width:59.408640pt;}
._33{width:60.769280pt;}
._34{width:61.672320pt;}
._48{width:63.106560pt;}
._39{width:64.381440pt;}
._3a{width:65.310507pt;}
._2e{width:66.612480pt;}
._2f{width:69.162240pt;}
._59{width:70.384000pt;}
._28{width:72.296320pt;}
._29{width:73.252480pt;}
._36{width:74.155520pt;}
._51{width:76.302080pt;}
._3e{width:77.639680pt;}
._3d{width:78.851840pt;}
._4f{width:84.779520pt;}
._50{width:89.082240pt;}
._3f{width:91.207040pt;}
._40{width:92.271147pt;}
._43{width:95.562880pt;}
._54{width:101.618560pt;}
._4a{width:103.318400pt;}
._35{width:106.983680pt;}
._4e{width:111.653120pt;}
._44{width:113.198720pt;}
._56{width:121.697920pt;}
._57{width:123.041280pt;}
._42{width:130.250240pt;}
._32{width:134.977920pt;}
._4c{width:145.653973pt;}
._31{width:171.630720pt;}
._3b{width:187.619840pt;}
._41{width:234.803627pt;}
._4d{width:262.991360pt;}
._49{width:291.941547pt;}
._55{width:297.325227pt;}
._53{width:334.443520pt;}
._52{width:335.396267pt;}
._3{width:599.200000pt;}
._4b{width:773.533440pt;}
._58{width:800.996480pt;}
._47{width:822.350720pt;}
._46{width:827.290880pt;}
.fs0{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:4.480000pt;}
.ye{bottom:5.120000pt;}
.y2f{bottom:5.280000pt;}
.ydb{bottom:5.306667pt;}
.y11{bottom:5.760000pt;}
.y103{bottom:5.920000pt;}
.ydf{bottom:6.240000pt;}
.ye1{bottom:6.400000pt;}
.yf1{bottom:6.720000pt;}
.yf8{bottom:6.746667pt;}
.y8{bottom:7.040000pt;}
.yde{bottom:7.520000pt;}
.y13d{bottom:7.680000pt;}
.y1b{bottom:7.840000pt;}
.y157{bottom:8.000000pt;}
.y159{bottom:8.026667pt;}
.y15c{bottom:10.720000pt;}
.y8b{bottom:13.920000pt;}
.y11d{bottom:13.946667pt;}
.y89{bottom:14.080000pt;}
.yd9{bottom:14.106667pt;}
.yb6{bottom:14.120000pt;}
.yd{bottom:22.720000pt;}
.y11c{bottom:22.746667pt;}
.y2e{bottom:22.880000pt;}
.yda{bottom:22.906667pt;}
.y92{bottom:22.920000pt;}
.y8f{bottom:23.560000pt;}
.y2{bottom:23.840000pt;}
.y7{bottom:24.640000pt;}
.ybd{bottom:24.800000pt;}
.ya2{bottom:31.520000pt;}
.y10b{bottom:31.680000pt;}
.y87{bottom:32.320000pt;}
.y151{bottom:35.200000pt;}
.y106{bottom:40.320000pt;}
.y10d{bottom:40.346667pt;}
.y13{bottom:40.480000pt;}
.y95{bottom:41.120000pt;}
.y8e{bottom:41.160000pt;}
.y6{bottom:42.240000pt;}
.yb4{bottom:42.400000pt;}
.yad{bottom:43.040000pt;}
.ya1{bottom:44.000000pt;}
.yc{bottom:48.320000pt;}
.y152{bottom:49.280000pt;}
.y86{bottom:49.920000pt;}
.y10{bottom:52.960000pt;}
.y105{bottom:57.960000pt;}
.y2d{bottom:58.080000pt;}
.y94{bottom:58.720000pt;}
.y8d{bottom:58.760000pt;}
.yb3{bottom:60.000000pt;}
.yac{bottom:60.800000pt;}
.yc4{bottom:60.840000pt;}
.y5{bottom:61.920000pt;}
.yb{bottom:66.080000pt;}
.y1d1{bottom:67.360000pt;}
.y85{bottom:67.520000pt;}
.y1d0{bottom:71.360000pt;}
.y134{bottom:71.840000pt;}
.y10a{bottom:74.080000pt;}
.y1a8{bottom:74.400000pt;}
.y189{bottom:75.360000pt;}
.y2c{bottom:75.680000pt;}
.y8c{bottom:76.520000pt;}
.ya0{bottom:77.600000pt;}
.ydd{bottom:77.760000pt;}
.yc3{bottom:78.440000pt;}
.y79{bottom:84.960000pt;}
.y41{bottom:86.240000pt;}
.y4{bottom:86.746667pt;}
.yd7{bottom:87.200000pt;}
.y1cf{bottom:88.960000pt;}
.y133{bottom:89.440000pt;}
.ya{bottom:91.706667pt;}
.y1a7{bottom:92.000000pt;}
.y188{bottom:92.960000pt;}
.y2b{bottom:93.440000pt;}
.y15a{bottom:93.600000pt;}
.y83{bottom:95.080000pt;}
.y9f{bottom:95.200000pt;}
.yc2{bottom:96.040000pt;}
.ydc{bottom:98.400000pt;}
.y78{bottom:102.560000pt;}
.y40{bottom:103.840000pt;}
.yd6{bottom:104.800000pt;}
.y1ce{bottom:106.720000pt;}
.y132{bottom:107.040000pt;}
.y9{bottom:109.306667pt;}
.y1a6{bottom:109.600000pt;}
.y187{bottom:110.560000pt;}
.y2a{bottom:111.040000pt;}
.y82{bottom:112.680000pt;}
.y9e{bottom:112.800000pt;}
.y3{bottom:117.306667pt;}
.y77{bottom:120.160000pt;}
.y3f{bottom:121.440000pt;}
.yd5{bottom:122.560000pt;}
.y1cd{bottom:124.320000pt;}
.y131{bottom:124.640000pt;}
.y1a5{bottom:127.360000pt;}
.y186{bottom:128.320000pt;}
.y29{bottom:128.640000pt;}
.y158{bottom:129.600000pt;}
.y9d{bottom:130.560000pt;}
.yd8{bottom:134.240000pt;}
.y76{bottom:137.786667pt;}
.y3e{bottom:139.066667pt;}
.yd4{bottom:140.186667pt;}
.y1cc{bottom:141.946667pt;}
.y130{bottom:142.426667pt;}
.y1a4{bottom:144.986667pt;}
.y109{bottom:145.306667pt;}
.y185{bottom:145.946667pt;}
.y28{bottom:146.240000pt;}
.y9c{bottom:148.186667pt;}
.y156{bottom:153.466667pt;}
.y75{bottom:155.546667pt;}
.y3d{bottom:156.666667pt;}
.yd3{bottom:157.786667pt;}
.y1cb{bottom:159.546667pt;}
.y12f{bottom:160.026667pt;}
.y1a3{bottom:162.586667pt;}
.y184{bottom:163.546667pt;}
.y27{bottom:163.866667pt;}
.y9b{bottom:165.786667pt;}
.y74{bottom:173.146667pt;}
.y3c{bottom:174.426667pt;}
.yd2{bottom:175.386667pt;}
.y1ca{bottom:177.146667pt;}
.y155{bottom:177.306667pt;}
.y12e{bottom:177.626667pt;}
.y1a2{bottom:180.186667pt;}
.y183{bottom:181.146667pt;}
.y26{bottom:181.626667pt;}
.y9a{bottom:183.386667pt;}
.y73{bottom:190.746667pt;}
.y3b{bottom:192.026667pt;}
.yd1{bottom:192.986667pt;}
.y1c9{bottom:194.906667pt;}
.y12d{bottom:195.226667pt;}
.y1a1{bottom:197.786667pt;}
.y182{bottom:198.746667pt;}
.y108{bottom:198.906667pt;}
.y25{bottom:199.226667pt;}
.y99{bottom:200.986667pt;}
.y72{bottom:208.346667pt;}
.y3a{bottom:209.626667pt;}
.yd0{bottom:210.746667pt;}
.y1c8{bottom:212.506667pt;}
.y12c{bottom:212.826667pt;}
.y154{bottom:213.306667pt;}
.y1a0{bottom:215.546667pt;}
.y181{bottom:216.506667pt;}
.y24{bottom:216.826667pt;}
.yaa{bottom:218.586667pt;}
.y98{bottom:218.746667pt;}
.y71{bottom:225.946667pt;}
.y39{bottom:227.226667pt;}
.ycf{bottom:228.346667pt;}
.y1c7{bottom:230.106667pt;}
.y12b{bottom:230.586667pt;}
.y93{bottom:231.866667pt;}
.y19f{bottom:233.146667pt;}
.y180{bottom:234.106667pt;}
.y23{bottom:234.426667pt;}
.y70{bottom:243.706667pt;}
.y38{bottom:244.826667pt;}
.yce{bottom:245.946667pt;}
.y1c6{bottom:247.706667pt;}
.y12a{bottom:248.186667pt;}
.y153{bottom:249.146667pt;}
.y19e{bottom:250.746667pt;}
.y17f{bottom:251.706667pt;}
.y22{bottom:252.026667pt;}
.y107{bottom:252.506667pt;}
.y6f{bottom:261.306667pt;}
.y37{bottom:262.586667pt;}
.ycd{bottom:263.546667pt;}
.y1c5{bottom:265.306667pt;}
.y129{bottom:265.786667pt;}
.y97{bottom:267.706667pt;}
.y17e{bottom:269.306667pt;}
.y21{bottom:269.786667pt;}
.y19d{bottom:276.346667pt;}
.y6e{bottom:278.906667pt;}
.y36{bottom:280.186667pt;}
.ycc{bottom:281.146667pt;}
.y1c4{bottom:283.066667pt;}
.y128{bottom:283.386667pt;}
.y150{bottom:285.146667pt;}
.y17d{bottom:286.906667pt;}
.y20{bottom:287.386667pt;}
.y19c{bottom:293.946667pt;}
.y6d{bottom:296.506667pt;}
.y35{bottom:297.786667pt;}
.ycb{bottom:298.906667pt;}
.y1c3{bottom:300.666667pt;}
.y127{bottom:300.986667pt;}
.y96{bottom:303.706667pt;}
.y17c{bottom:304.666667pt;}
.y1f{bottom:304.986667pt;}
.y104{bottom:306.106667pt;}
.y19b{bottom:311.706667pt;}
.y6c{bottom:314.106667pt;}
.y34{bottom:315.386667pt;}
.yca{bottom:316.506667pt;}
.y1c2{bottom:318.266667pt;}
.y126{bottom:318.746667pt;}
.y17b{bottom:322.266667pt;}
.y1e{bottom:322.586667pt;}
.y6b{bottom:331.866667pt;}
.y33{bottom:332.986667pt;}
.yc9{bottom:334.106667pt;}
.y1c1{bottom:335.866667pt;}
.y125{bottom:336.346667pt;}
.y19a{bottom:337.306667pt;}
.y81{bottom:339.546667pt;}
.y17a{bottom:339.866667pt;}
.y1d{bottom:340.186667pt;}
.yc1{bottom:347.866667pt;}
.y6a{bottom:349.466667pt;}
.y32{bottom:350.746667pt;}
.y1c0{bottom:353.466667pt;}
.y124{bottom:353.946667pt;}
.y199{bottom:354.906667pt;}
.y179{bottom:357.506667pt;}
.y14f{bottom:361.506667pt;}
.y69{bottom:367.106667pt;}
.y31{bottom:368.386667pt;}
.y1bf{bottom:371.266667pt;}
.y123{bottom:371.586667pt;}
.y198{bottom:372.546667pt;}
.y178{bottom:375.106667pt;}
.y91{bottom:375.586667pt;}
.y101{bottom:377.186667pt;}
.y14e{bottom:379.106667pt;}
.yc8{bottom:384.546667pt;}
.y68{bottom:384.706667pt;}
.y1be{bottom:388.866667pt;}
.y177{bottom:392.866667pt;}
.y102{bottom:396.866667pt;}
.y197{bottom:398.146667pt;}
.y30{bottom:399.106667pt;}
.y67{bottom:402.306667pt;}
.y1bd{bottom:406.466667pt;}
.y176{bottom:410.466667pt;}
.y90{bottom:411.586667pt;}
.y14c{bottom:414.466667pt;}
.y196{bottom:415.906667pt;}
.y1c{bottom:417.346667pt;}
.y66{bottom:420.066667pt;}
.y122{bottom:420.706667pt;}
.yc7{bottom:421.186667pt;}
.y14d{bottom:422.466667pt;}
.y1bc{bottom:424.066667pt;}
.y175{bottom:428.066667pt;}
.y14b{bottom:432.066667pt;}
.y65{bottom:437.666667pt;}
.y100{bottom:437.826667pt;}
.yc6{bottom:440.066667pt;}
.y121{bottom:440.226667pt;}
.y195{bottom:441.506667pt;}
.y1bb{bottom:441.666667pt;}
.y174{bottom:445.666667pt;}
.y84{bottom:447.426667pt;}
.y1ba{bottom:454.786667pt;}
.y64{bottom:455.266667pt;}
.yff{bottom:455.586667pt;}
.y14a{bottom:457.666667pt;}
.y173{bottom:458.786667pt;}
.y194{bottom:459.106667pt;}
.y63{bottom:472.866667pt;}
.yfe{bottom:473.186667pt;}
.y1b9{bottom:474.466667pt;}
.y149{bottom:475.266667pt;}
.y120{bottom:476.226667pt;}
.yc5{bottom:476.706667pt;}
.y172{bottom:478.306667pt;}
.y8a{bottom:483.426667pt;}
.y62{bottom:490.466667pt;}
.yfd{bottom:490.786667pt;}
.y148{bottom:493.026667pt;}
.y1b8{bottom:493.986667pt;}
.y193{bottom:494.306667pt;}
.y171{bottom:497.826667pt;}
.y61{bottom:508.226667pt;}
.yfc{bottom:508.386667pt;}
.y147{bottom:510.626667pt;}
.y11f{bottom:512.066667pt;}
.ya9{bottom:513.346667pt;}
.y1b7{bottom:513.506667pt;}
.y170{bottom:517.506667pt;}
.y88{bottom:519.266667pt;}
.y60{bottom:525.826667pt;}
.yfb{bottom:525.986667pt;}
.y146{bottom:528.226667pt;}
.y192{bottom:529.666667pt;}
.yc0{bottom:532.226667pt;}
.y1b6{bottom:533.026667pt;}
.y16f{bottom:537.026667pt;}
.y5f{bottom:543.426667pt;}
.yfa{bottom:543.746667pt;}
.y145{bottom:545.826667pt;}
.y191{bottom:547.266667pt;}
.y11e{bottom:548.066667pt;}
.ybf{bottom:551.266667pt;}
.y80{bottom:555.266667pt;}
.y16e{bottom:556.546667pt;}
.y5e{bottom:561.026667pt;}
.yf9{bottom:561.346667pt;}
.y144{bottom:563.426667pt;}
.y190{bottom:564.866667pt;}
.y11b{bottom:567.586667pt;}
.y1b5{bottom:568.866667pt;}
.yf7{bottom:574.466667pt;}
.y5d{bottom:578.653333pt;}
.y143{bottom:581.213333pt;}
.y18f{bottom:582.493333pt;}
.ybe{bottom:587.933333pt;}
.y16d{bottom:592.413333pt;}
.yf6{bottom:595.933333pt;}
.y5c{bottom:596.413333pt;}
.y142{bottom:598.813333pt;}
.y18e{bottom:600.253333pt;}
.y11a{bottom:603.453333pt;}
.y1b4{bottom:604.893333pt;}
.yb9{bottom:606.813333pt;}
.y141{bottom:611.933333pt;}
.y5b{bottom:614.013333pt;}
.yf5{bottom:617.213333pt;}
.y18d{bottom:617.853333pt;}
.y1b3{bottom:624.413333pt;}
.y7f{bottom:629.693333pt;}
.y5a{bottom:631.613333pt;}
.y140{bottom:635.293333pt;}
.y18c{bottom:635.453333pt;}
.yf4{bottom:638.653333pt;}
.y119{bottom:639.453333pt;}
.ybc{bottom:643.453333pt;}
.y1b2{bottom:643.933333pt;}
.y7e{bottom:647.293333pt;}
.y59{bottom:649.213333pt;}
.y18b{bottom:653.053333pt;}
.y13f{bottom:658.653333pt;}
.yf3{bottom:660.093333pt;}
.y1b1{bottom:663.453333pt;}
.y7d{bottom:665.853333pt;}
.y58{bottom:666.813333pt;}
.y18a{bottom:670.653333pt;}
.y118{bottom:675.293333pt;}
.ybb{bottom:680.093333pt;}
.yf2{bottom:681.533333pt;}
.y13e{bottom:682.173333pt;}
.y1b0{bottom:682.973333pt;}
.y7c{bottom:683.613333pt;}
.y57{bottom:684.573333pt;}
.y16c{bottom:688.413333pt;}
.yba{bottom:698.973333pt;}
.y7b{bottom:701.213333pt;}
.y56{bottom:702.173333pt;}
.y1af{bottom:702.493333pt;}
.yf0{bottom:702.813333pt;}
.y13c{bottom:705.533333pt;}
.y16b{bottom:706.013333pt;}
.y117{bottom:716.413333pt;}
.yb2{bottom:718.013333pt;}
.y7a{bottom:718.813333pt;}
.y55{bottom:719.773333pt;}
.y1ae{bottom:722.013333pt;}
.y16a{bottom:723.613333pt;}
.yef{bottom:724.253333pt;}
.y13b{bottom:728.893333pt;}
.y116{bottom:734.013333pt;}
.yb8{bottom:736.893333pt;}
.y54{bottom:737.373333pt;}
.y169{bottom:741.213333pt;}
.y1ad{bottom:741.693333pt;}
.y115{bottom:751.773333pt;}
.y53{bottom:754.973333pt;}
.yb7{bottom:755.933333pt;}
.y168{bottom:758.813333pt;}
.y1ac{bottom:761.213333pt;}
.yee{bottom:765.373333pt;}
.y114{bottom:769.373333pt;}
.y13a{bottom:770.013333pt;}
.y1a{bottom:770.813333pt;}
.y52{bottom:772.733333pt;}
.y167{bottom:776.573333pt;}
.y1ab{bottom:780.733333pt;}
.yed{bottom:782.973333pt;}
.y113{bottom:786.973333pt;}
.y139{bottom:787.613333pt;}
.y51{bottom:790.333333pt;}
.yb5{bottom:792.413333pt;}
.y166{bottom:794.173333pt;}
.y19{bottom:796.893333pt;}
.y1aa{bottom:800.293333pt;}
.yec{bottom:800.613333pt;}
.y112{bottom:804.613333pt;}
.y138{bottom:805.253333pt;}
.y50{bottom:807.973333pt;}
.y165{bottom:811.813333pt;}
.yeb{bottom:818.213333pt;}
.y137{bottom:818.533333pt;}
.y18{bottom:819.173333pt;}
.y1a9{bottom:819.813333pt;}
.y111{bottom:822.213333pt;}
.y4f{bottom:825.573333pt;}
.yab{bottom:829.093333pt;}
.y164{bottom:829.413333pt;}
.y17{bottom:832.613333pt;}
.y110{bottom:835.493333pt;}
.yea{bottom:835.973333pt;}
.y4e{bottom:843.173333pt;}
.y163{bottom:847.013333pt;}
.yb1{bottom:848.133333pt;}
.y16{bottom:851.653333pt;}
.ye9{bottom:853.573333pt;}
.y136{bottom:854.373333pt;}
.y4d{bottom:860.933333pt;}
.y162{bottom:864.773333pt;}
.yb0{bottom:867.013333pt;}
.ye8{bottom:871.173333pt;}
.y15{bottom:872.453333pt;}
.y4c{bottom:878.533333pt;}
.y161{bottom:882.373333pt;}
.ye7{bottom:884.293333pt;}
.yaf{bottom:886.053333pt;}
.y10f{bottom:888.933333pt;}
.y135{bottom:890.373333pt;}
.y4b{bottom:896.133333pt;}
.y160{bottom:899.973333pt;}
.y14{bottom:900.613333pt;}
.yae{bottom:904.933333pt;}
.y4a{bottom:913.733333pt;}
.y15f{bottom:917.573333pt;}
.yf{bottom:924.453333pt;}
.y10e{bottom:924.933333pt;}
.ye6{bottom:925.733333pt;}
.y49{bottom:931.333333pt;}
.y15e{bottom:935.173333pt;}
.ya8{bottom:941.573333pt;}
.y1{bottom:944.453333pt;}
.ye5{bottom:946.373333pt;}
.y15d{bottom:948.293333pt;}
.y48{bottom:949.093333pt;}
.ya7{bottom:965.733333pt;}
.y47{bottom:966.693333pt;}
.ye4{bottom:967.013333pt;}
.y15b{bottom:972.293333pt;}
.ya6{bottom:983.333333pt;}
.y46{bottom:984.293333pt;}
.ye3{bottom:987.653333pt;}
.y10c{bottom:996.133333pt;}
.ya5{bottom:1000.933333pt;}
.y45{bottom:1001.893333pt;}
.ye2{bottom:1008.293333pt;}
.ya4{bottom:1018.533333pt;}
.y44{bottom:1019.520000pt;}
.ye0{bottom:1028.960000pt;}
.ya3{bottom:1036.320000pt;}
.y43{bottom:1037.280000pt;}
.y42{bottom:1060.800000pt;}
.h3{height:2.241250pt;}
.h11{height:17.600000pt;}
.h20{height:17.760000pt;}
.h34{height:18.720000pt;}
.h28{height:18.880000pt;}
.h35{height:18.912000pt;}
.ha{height:19.520000pt;}
.h22{height:20.000000pt;}
.h23{height:20.032000pt;}
.hf{height:20.320000pt;}
.h25{height:20.640000pt;}
.h26{height:20.672000pt;}
.h24{height:20.800000pt;}
.h2f{height:22.720000pt;}
.h30{height:22.880000pt;}
.h32{height:23.200000pt;}
.h33{height:23.232000pt;}
.hd{height:30.256875pt;}
.h16{height:35.200000pt;}
.h1f{height:35.232000pt;}
.h15{height:35.360000pt;}
.h18{height:35.392000pt;}
.h4{height:38.465312pt;}
.h12{height:38.672812pt;}
.h6{height:42.636250pt;}
.he{height:43.782500pt;}
.h7{height:46.505938pt;}
.hb{height:47.999375pt;}
.h31{height:48.816875pt;}
.h8{height:51.548750pt;}
.h2a{height:52.800000pt;}
.h2d{height:52.832000pt;}
.h2b{height:52.960000pt;}
.h5{height:54.222187pt;}
.h27{height:54.880000pt;}
.h9{height:58.563750pt;}
.hc{height:61.637188pt;}
.h29{height:70.432000pt;}
.h2e{height:70.560000pt;}
.h2c{height:70.592000pt;}
.h1e{height:92.192000pt;}
.h19{height:107.040000pt;}
.h14{height:107.200000pt;}
.h17{height:107.232000pt;}
.h1d{height:109.760000pt;}
.h1c{height:109.792000pt;}
.h1b{height:111.200000pt;}
.h2{height:129.792000pt;}
.h21{height:164.186667pt;}
.h13{height:215.066667pt;}
.h10{height:352.666667pt;}
.h1a{height:426.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:34.080000pt;}
.w27{width:36.320000pt;}
.w25{width:36.352000pt;}
.w23{width:42.720000pt;}
.w32{width:46.560000pt;}
.w2f{width:47.520000pt;}
.w6{width:49.312000pt;}
.w28{width:49.632000pt;}
.w26{width:49.760000pt;}
.w2b{width:51.712000pt;}
.w2a{width:53.920000pt;}
.w2e{width:54.400000pt;}
.w34{width:54.560000pt;}
.w2d{width:56.032000pt;}
.w24{width:56.640000pt;}
.w1e{width:56.672000pt;}
.w33{width:57.472000pt;}
.w11{width:65.440000pt;}
.w3c{width:68.480000pt;}
.w37{width:69.152000pt;}
.w3e{width:69.280000pt;}
.w40{width:69.920000pt;}
.w3d{width:70.080000pt;}
.w38{width:73.760000pt;}
.w30{width:74.432000pt;}
.w35{width:75.040000pt;}
.wd{width:82.560000pt;}
.w18{width:84.320000pt;}
.w16{width:84.512000pt;}
.w3b{width:86.272000pt;}
.w20{width:86.592000pt;}
.wc{width:86.752000pt;}
.w1c{width:88.160000pt;}
.w46{width:88.480000pt;}
.w21{width:88.640000pt;}
.w22{width:88.672000pt;}
.w45{width:90.752000pt;}
.w31{width:91.712000pt;}
.wb{width:93.760000pt;}
.w15{width:93.952000pt;}
.wf{width:94.240000pt;}
.w3f{width:97.472000pt;}
.w3a{width:97.600000pt;}
.w42{width:98.912000pt;}
.w1f{width:100.000000pt;}
.w13{width:112.192000pt;}
.w10{width:112.832000pt;}
.w14{width:119.840000pt;}
.w17{width:120.032000pt;}
.w39{width:123.392000pt;}
.w4{width:126.112000pt;}
.w2{width:138.426667pt;}
.w1a{width:149.946667pt;}
.w8{width:170.906667pt;}
.w1b{width:178.586667pt;}
.w1d{width:186.266667pt;}
.w19{width:195.866667pt;}
.w43{width:219.226667pt;}
.w36{width:224.986667pt;}
.we{width:316.866667pt;}
.w41{width:328.866667pt;}
.w12{width:337.346667pt;}
.w44{width:373.986667pt;}
.w2c{width:408.733333pt;}
.w3{width:443.613333pt;}
.w9{width:520.453333pt;}
.w7{width:662.373333pt;}
.wa{width:691.360000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.720000pt;}
.x5{left:7.680000pt;}
.xb{left:40.800000pt;}
.x1{left:42.880000pt;}
.x31{left:46.400000pt;}
.xa{left:47.999988pt;}
.xd{left:51.200000pt;}
.x10{left:56.959988pt;}
.x20{left:60.640000pt;}
.x25{left:67.199988pt;}
.x19{left:71.999988pt;}
.x3d{left:77.632000pt;}
.xc{left:90.752000pt;}
.x13{left:96.031988pt;}
.x14{left:105.952000pt;}
.x4{left:113.480000pt;}
.x38{left:118.592000pt;}
.x8{left:120.520000pt;}
.x2{left:131.066667pt;}
.x7{left:137.160000pt;}
.x36{left:138.746667pt;}
.x45{left:150.426667pt;}
.x3e{left:175.866667pt;}
.x3{left:181.306667pt;}
.x6{left:183.400000pt;}
.x1a{left:185.946667pt;}
.x15{left:200.506667pt;}
.xe{left:222.106667pt;}
.x26{left:235.066667pt;}
.x37{left:244.226667pt;}
.x3f{left:262.946667pt;}
.x21{left:275.906667pt;}
.x22{left:286.626667pt;}
.x17{left:287.906667pt;}
.x27{left:292.546667pt;}
.x1b{left:299.426667pt;}
.x40{left:332.066667pt;}
.x2c{left:335.906667pt;}
.x39{left:343.586667pt;}
.x1c{left:365.506667pt;}
.x18{left:371.106667pt;}
.x28{left:393.186667pt;}
.x41{left:407.293333pt;}
.x3a{left:412.733333pt;}
.xf{left:420.893322pt;}
.x2d{left:430.173333pt;}
.x1d{left:433.693333pt;}
.x23{left:436.573333pt;}
.x11{left:444.893322pt;}
.x32{left:455.773333pt;}
.x12{left:468.893322pt;}
.x42{left:478.013333pt;}
.x29{left:480.573333pt;}
.x3b{left:486.493333pt;}
.x46{left:494.333333pt;}
.x33{left:513.053333pt;}
.x2e{left:517.533333pt;}
.x43{left:547.933333pt;}
.x3c{left:551.933333pt;}
.x1e{left:554.173333pt;}
.x2a{left:567.813333pt;}
.x34{left:569.733333pt;}
.x47{left:585.733333pt;}
.x2f{left:602.533333pt;}
.x24{left:615.173333pt;}
.x9{left:624.933333pt;}
.x44{left:646.213333pt;}
.x1f{left:648.773333pt;}
.x2b{left:657.093333pt;}
.x35{left:673.093333pt;}
.x30{left:694.053333pt;}
}




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