
    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_3682247fe76bb4418d18ec06.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_934745dc0d14207c0c735de6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_0e0cd89c7cedc36327dd4f5e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_03d8a5039606727fe7712365.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_1e23ce32f32af9e8223a7761.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c3f61c30b15559eee3fc4de8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_ccea610eae195f10fb7fdd3c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6e83b3f403cd53d992d76664.woff')format("woff");}.ffb{font-family:ffb;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aca66d68ff595e7f991b34e0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.924316;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:ffd;src:url('chunks/assets/font_979ea82cba5c711162beb803.woff')format("woff");}.ffd{font-family:ffd;line-height:0.924316;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:ffe;src:url('chunks/assets/font_81aa846f50995095cc43d6c4.woff')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.083520px;}
.ls7{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.181200px;}
.ls17{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.288000px;}
.ls1c{letter-spacing:5.040000px;}
.ls1b{letter-spacing:23.880000px;}
.lsc{letter-spacing:23.904000px;}
.ls12{letter-spacing:26.784000px;}
.lsd{letter-spacing:29.664000px;}
.ls18{letter-spacing:31.080000px;}
.ls11{letter-spacing:31.104000px;}
.ls20{letter-spacing:33.960000px;}
.lsb{letter-spacing:33.984000px;}
.ls13{letter-spacing:38.304000px;}
.ls6{letter-spacing:41.880000px;}
.ls23{letter-spacing:46.224000px;}
.ls24{letter-spacing:49.824000px;}
.lse{letter-spacing:54.864000px;}
.ls22{letter-spacing:55.044000px;}
.ls1e{letter-spacing:65.640000px;}
.ls1d{letter-spacing:65.664000px;}
.ls14{letter-spacing:93.744000px;}
.ls9{letter-spacing:121.824000px;}
.ls21{letter-spacing:129.924000px;}
.ls15{letter-spacing:149.904000px;}
.ls1f{letter-spacing:150.084000px;}
.ls1a{letter-spacing:194.376000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws4{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.wsa{word-spacing:-12.241200px;}
.ws2{word-spacing:-12.186000px;}
.ws1{word-spacing:-10.902240px;}
.ws5{word-spacing:0.000000px;}
._f{margin-left:-4.968000px;}
._e{margin-left:-3.744000px;}
._5{margin-left:-2.200320px;}
._2{margin-left:-1.177920px;}
._0{width:1.314720px;}
._1{width:3.260400px;}
._d{width:4.443600px;}
._9{width:6.048000px;}
._a{width:7.207200px;}
._3{width:8.280000px;}
._4{width:9.432000px;}
._b{width:10.584000px;}
._c{width:12.024000px;}
._6{width:13.392000px;}
._7{width:14.741280px;}
._8{width:16.476000px;}
._19{width:19.728000px;}
._10{width:20.880000px;}
._11{width:22.354560px;}
._17{width:23.653440px;}
._18{width:25.029120px;}
._1c{width:26.280000px;}
._1d{width:27.458880px;}
._12{width:28.800000px;}
._13{width:29.848320px;}
._16{width:30.985920px;}
._14{width:32.616000px;}
._15{width:33.696000px;}
._1b{width:35.640000px;}
._20{width:40.032000px;}
._23{width:55.728000px;}
._25{width:97.776000px;}
._28{width:103.392000px;}
._26{width:105.264000px;}
._2a{width:107.640000px;}
._1f{width:120.816000px;}
._2b{width:129.756000px;}
._29{width:149.544000px;}
._2c{width:155.557920px;}
._21{width:163.296000px;}
._22{width:164.448000px;}
._1a{width:177.096000px;}
._27{width:185.472000px;}
._24{width:333.360000px;}
._1e{width:1654.656000px;}
.fc2{color:rgb(5,99,193);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y2d{bottom:3.600000px;}
.ybe{bottom:14.220000px;}
.ydb{bottom:14.250000px;}
.ycd{bottom:14.265000px;}
.yb8{bottom:14.400000px;}
.y178{bottom:14.430000px;}
.y13f{bottom:14.445000px;}
.y18d{bottom:14.580000px;}
.y10a{bottom:15.120000px;}
.ya{bottom:17.280000px;}
.y8{bottom:17.820000px;}
.y17c{bottom:18.360000px;}
.y187{bottom:29.160000px;}
.yb{bottom:30.960000px;}
.y7{bottom:32.580000px;}
.yc2{bottom:44.640000px;}
.ybd{bottom:45.360000px;}
.yc4{bottom:45.390000px;}
.y15e{bottom:46.080000px;}
.y6{bottom:57.420000px;}
.ybc{bottom:76.320000px;}
.y105{bottom:76.365000px;}
.yc0{bottom:76.500000px;}
.y165{bottom:76.530000px;}
.y158{bottom:76.545000px;}
.yec{bottom:77.220000px;}
.y2c{bottom:91.800000px;}
.ybb{bottom:107.460000px;}
.y164{bottom:107.490000px;}
.y104{bottom:107.505000px;}
.ye4{bottom:108.945000px;}
.ye0{bottom:109.080000px;}
.y17e{bottom:113.040000px;}
.y5{bottom:119.196000px;}
.yba{bottom:138.465000px;}
.y16e{bottom:138.600000px;}
.y163{bottom:138.630000px;}
.y157{bottom:138.645000px;}
.y1ed{bottom:145.116000px;}
.y109{bottom:147.996000px;}
.y1d8{bottom:152.130000px;}
.y81{bottom:154.110000px;}
.y127{bottom:154.470000px;}
.y7c{bottom:156.810000px;}
.y143{bottom:157.890000px;}
.yb6{bottom:158.790000px;}
.yd1{bottom:160.770000px;}
.y43{bottom:161.130000px;}
.y2a{bottom:161.310000px;}
.y19e{bottom:163.830000px;}
.y197{bottom:165.450000px;}
.y17d{bottom:166.530000px;}
.y9c{bottom:169.410000px;}
.y16d{bottom:169.560000px;}
.y162{bottom:169.590000px;}
.y16a{bottom:169.605000px;}
.y1ec{bottom:176.250000px;}
.y15b{bottom:176.790000px;}
.yf1{bottom:178.230000px;}
.y108{bottom:179.130000px;}
.y1d7{bottom:183.090000px;}
.y1bb{bottom:183.810000px;}
.y80{bottom:185.250000px;}
.y126{bottom:185.610000px;}
.y7b{bottom:187.770000px;}
.yea{bottom:188.850000px;}
.yb5{bottom:189.930000px;}
.y29{bottom:192.270000px;}
.y15a{bottom:194.430000px;}
.y6d{bottom:194.790000px;}
.y196{bottom:196.590000px;}
.y180{bottom:198.390000px;}
.y9b{bottom:200.370000px;}
.y16c{bottom:200.700000px;}
.y161{bottom:200.730000px;}
.y5a{bottom:203.790000px;}
.y1eb{bottom:207.210000px;}
.y107{bottom:210.090000px;}
.y1d6{bottom:214.230000px;}
.y1ba{bottom:214.950000px;}
.y7f{bottom:216.210000px;}
.y125{bottom:216.570000px;}
.y7a{bottom:218.910000px;}
.ye9{bottom:219.990000px;}
.yb4{bottom:220.890000px;}
.y42{bottom:223.230000px;}
.y28{bottom:223.410000px;}
.yd0{bottom:223.590000px;}
.y6c{bottom:225.930000px;}
.y195{bottom:227.550000px;}
.y9a{bottom:231.510000px;}
.y16b{bottom:231.690000px;}
.y59{bottom:234.930000px;}
.y1ea{bottom:238.350000px;}
.yf0{bottom:241.230000px;}
.y169{bottom:242.670000px;}
.y1d5{bottom:245.190000px;}
.y1b9{bottom:245.910000px;}
.y7e{bottom:247.170000px;}
.y124{bottom:247.710000px;}
.y79{bottom:249.870000px;}
.ye8{bottom:250.950000px;}
.yb3{bottom:252.030000px;}
.y27{bottom:254.370000px;}
.ycf{bottom:255.450000px;}
.y6b{bottom:256.890000px;}
.y159{bottom:257.250000px;}
.y106{bottom:258.690000px;}
.y17f{bottom:261.210000px;}
.y99{bottom:262.470000px;}
.y58{bottom:265.890000px;}
.y142{bottom:268.410000px;}
.y1e9{bottom:269.310000px;}
.y194{bottom:270.570000px;}
.y1d4{bottom:276.330000px;}
.y1b8{bottom:276.870000px;}
.y123{bottom:278.670000px;}
.y7d{bottom:279.570000px;}
.y78{bottom:281.010000px;}
.ye7{bottom:282.090000px;}
.yb2{bottom:282.990000px;}
.y41{bottom:285.330000px;}
.y26{bottom:285.510000px;}
.yce{bottom:287.130000px;}
.y6a{bottom:288.030000px;}
.y156{bottom:288.930000px;}
.y103{bottom:290.550000px;}
.y98{bottom:293.610000px;}
.y57{bottom:297.030000px;}
.y141{bottom:300.270000px;}
.y1e8{bottom:300.450000px;}
.y193{bottom:301.710000px;}
.yef{bottom:304.050000px;}
.y1d3{bottom:307.290000px;}
.y1b7{bottom:308.370000px;}
.y122{bottom:309.810000px;}
.y77{bottom:311.970000px;}
.ye6{bottom:313.050000px;}
.yb1{bottom:314.130000px;}
.y25{bottom:316.470000px;}
.y69{bottom:318.990000px;}
.y56{bottom:327.990000px;}
.y1e7{bottom:331.410000px;}
.y140{bottom:332.130000px;}
.y192{bottom:332.670000px;}
.y17b{bottom:332.850000px;}
.y97{bottom:336.630000px;}
.y1d2{bottom:338.430000px;}
.y1b6{bottom:339.330000px;}
.y121{bottom:340.770000px;}
.y76{bottom:343.110000px;}
.ye5{bottom:344.190000px;}
.yb0{bottom:345.090000px;}
.y40{bottom:347.430000px;}
.y24{bottom:347.610000px;}
.y68{bottom:350.130000px;}
.ycc{bottom:350.850000px;}
.y55{bottom:359.130000px;}
.ye3{bottom:361.650000px;}
.y1e6{bottom:362.550000px;}
.y13e{bottom:363.810000px;}
.y17a{bottom:364.575000px;}
.yee{bottom:366.915000px;}
.y96{bottom:367.635000px;}
.y1d1{bottom:369.435000px;}
.y1b5{bottom:370.515000px;}
.y120{bottom:371.955000px;}
.y75{bottom:374.115000px;}
.yaf{bottom:376.275000px;}
.y23{bottom:378.615000px;}
.y67{bottom:381.135000px;}
.ycb{bottom:382.575000px;}
.y54{bottom:390.135000px;}
.ydf{bottom:393.375000px;}
.y1e5{bottom:393.555000px;}
.y191{bottom:394.815000px;}
.y13d{bottom:395.715000px;}
.y179{bottom:396.435000px;}
.y95{bottom:398.775000px;}
.y1d0{bottom:400.575000px;}
.y1b4{bottom:401.835000px;}
.y11f{bottom:402.915000px;}
.y74{bottom:405.255000px;}
.yae{bottom:407.235000px;}
.y3f{bottom:409.575000px;}
.y22{bottom:409.755000px;}
.y66{bottom:412.275000px;}
.yca{bottom:414.435000px;}
.y53{bottom:421.275000px;}
.y1e4{bottom:424.515000px;}
.ye2{bottom:425.235000px;}
.y190{bottom:425.955000px;}
.y13c{bottom:427.575000px;}
.y94{bottom:429.735000px;}
.y1cf{bottom:431.535000px;}
.y1b3{bottom:432.975000px;}
.y11e{bottom:434.055000px;}
.y73{bottom:436.215000px;}
.yad{bottom:438.375000px;}
.y21{bottom:440.715000px;}
.y19d{bottom:443.235000px;}
.y18f{bottom:443.415000px;}
.y155{bottom:445.035000px;}
.yc9{bottom:446.295000px;}
.y102{bottom:446.475000px;}
.y52{bottom:452.235000px;}
.y65{bottom:455.295000px;}
.y1e3{bottom:456.735000px;}
.y13b{bottom:459.255000px;}
.y93{bottom:460.875000px;}
.y168{bottom:461.595000px;}
.y1ce{bottom:463.035000px;}
.y1b2{bottom:463.935000px;}
.y11d{bottom:465.015000px;}
.y72{bottom:467.355000px;}
.yac{bottom:469.335000px;}
.y3e{bottom:471.675000px;}
.y20{bottom:471.855000px;}
.y19c{bottom:474.375000px;}
.y18e{bottom:475.275000px;}
.y154{bottom:476.895000px;}
.yc8{bottom:477.975000px;}
.y51{bottom:483.375000px;}
.y64{bottom:486.255000px;}
.ye1{bottom:488.055000px;}
.y1e2{bottom:489.315000px;}
.y13a{bottom:491.115000px;}
.y92{bottom:491.835000px;}
.yeb{bottom:492.555000px;}
.y1cd{bottom:493.995000px;}
.y1b1{bottom:495.255000px;}
.y11c{bottom:496.155000px;}
.y71{bottom:498.315000px;}
.y101{bottom:501.555000px;}
.y1f{bottom:502.815000px;}
.y167{bottom:507.675000px;}
.yc7{bottom:509.835000px;}
.yab{bottom:512.355000px;}
.y50{bottom:514.335000px;}
.y63{bottom:517.395000px;}
.yde{bottom:519.915000px;}
.y1e1{bottom:520.275000px;}
.y139{bottom:522.795000px;}
.y91{bottom:522.975000px;}
.y1cc{bottom:525.315000px;}
.y1b0{bottom:526.755000px;}
.y11b{bottom:527.115000px;}
.y70{bottom:529.455000px;}
.y153{bottom:531.975000px;}
.y3d{bottom:533.775000px;}
.y1e{bottom:533.955000px;}
.y18c{bottom:538.095000px;}
.y166{bottom:538.635000px;}
.yc6{bottom:541.695000px;}
.yaa{bottom:543.495000px;}
.y4f{bottom:545.475000px;}
.y62{bottom:548.355000px;}
.ydd{bottom:551.595000px;}
.y1e0{bottom:552.495000px;}
.y90{bottom:553.935000px;}
.y138{bottom:554.655000px;}
.yed{bottom:555.375000px;}
.y160{bottom:556.095000px;}
.y1cb{bottom:556.815000px;}
.y1af{bottom:557.715000px;}
.y11a{bottom:558.255000px;}
.y6f{bottom:560.415000px;}
.y1d{bottom:564.915000px;}
.y18b{bottom:570.135000px;}
.y152{bottom:571.935000px;}
.y100{bottom:572.655000px;}
.yc5{bottom:573.375000px;}
.ya9{bottom:574.455000px;}
.y4e{bottom:576.435000px;}
.y61{bottom:579.495000px;}
.ydc{bottom:583.455000px;}
.y8f{bottom:585.075000px;}
.y137{bottom:586.515000px;}
.y1ca{bottom:588.135000px;}
.y1ae{bottom:588.855000px;}
.y119{bottom:589.215000px;}
.y6e{bottom:591.555000px;}
.y3c{bottom:595.875000px;}
.y1c{bottom:596.055000px;}
.y18a{bottom:601.995000px;}
.y151{bottom:603.075000px;}
.yff{bottom:603.795000px;}
.yc3{bottom:605.235000px;}
.ya8{bottom:605.595000px;}
.y60{bottom:610.455000px;}
.yda{bottom:615.315000px;}
.y8e{bottom:616.035000px;}
.y177{bottom:618.195000px;}
.y1c9{bottom:619.095000px;}
.y1ad{bottom:619.815000px;}
.y118{bottom:620.355000px;}
.y4d{bottom:622.515000px;}
.y1b{bottom:627.045000px;}
.y189{bottom:633.885000px;}
.y150{bottom:634.065000px;}
.yfe{bottom:634.785000px;}
.ya7{bottom:636.585000px;}
.y5f{bottom:641.625000px;}
.y1df{bottom:647.025000px;}
.y8d{bottom:647.205000px;}
.y176{bottom:650.085000px;}
.y1c8{bottom:650.625000px;}
.y117{bottom:651.345000px;}
.y4c{bottom:653.685000px;}
.y3b{bottom:658.005000px;}
.y1a{bottom:658.185000px;}
.y14f{bottom:665.205000px;}
.y188{bottom:665.565000px;}
.yfd{bottom:665.925000px;}
.ya6{bottom:667.725000px;}
.ybf{bottom:668.085000px;}
.y5e{bottom:672.585000px;}
.y8c{bottom:678.165000px;}
.y1de{bottom:679.425000px;}
.y1c7{bottom:681.945000px;}
.y1ac{bottom:682.305000px;}
.y116{bottom:682.485000px;}
.y4b{bottom:684.645000px;}
.y19{bottom:689.145000px;}
.y14e{bottom:696.165000px;}
.y186{bottom:697.425000px;}
.ya5{bottom:698.685000px;}
.y5d{bottom:703.725000px;}
.y175{bottom:705.165000px;}
.y8b{bottom:709.305000px;}
.yd9{bottom:710.025000px;}
.y1dd{bottom:711.825000px;}
.yfc{bottom:712.005000px;}
.y136{bottom:712.725000px;}
.y1c6{bottom:713.085000px;}
.y1ab{bottom:713.265000px;}
.y115{bottom:713.445000px;}
.y14d{bottom:713.625000px;}
.y4a{bottom:715.785000px;}
.y3a{bottom:720.105000px;}
.y18{bottom:720.285000px;}
.yc1{bottom:730.185000px;}
.y5c{bottom:734.685000px;}
.y8a{bottom:740.085000px;}
.yd8{bottom:741.705000px;}
.ya4{bottom:741.885000px;}
.y1dc{bottom:742.785000px;}
.yfb{bottom:742.965000px;}
.y135{bottom:743.685000px;}
.y1c5{bottom:744.405000px;}
.y114{bottom:744.585000px;}
.y1aa{bottom:744.765000px;}
.y174{bottom:745.305000px;}
.y49{bottom:746.745000px;}
.y17{bottom:751.245000px;}
.y14c{bottom:759.885000px;}
.yb9{bottom:762.045000px;}
.y5b{bottom:765.825000px;}
.y185{bottom:767.265000px;}
.y89{bottom:772.665000px;}
.yd7{bottom:773.565000px;}
.y1db{bottom:773.745000px;}
.yfa{bottom:774.105000px;}
.y15f{bottom:774.285000px;}
.y134{bottom:774.825000px;}
.y1c4{bottom:775.365000px;}
.y113{bottom:775.545000px;}
.y1a9{bottom:775.725000px;}
.y173{bottom:776.265000px;}
.y48{bottom:777.885000px;}
.y16{bottom:782.385000px;}
.ya3{bottom:784.905000px;}
.y14b{bottom:790.845000px;}
.y39{bottom:791.205000px;}
.y19b{bottom:796.785000px;}
.y88{bottom:803.445000px;}
.yf9{bottom:805.065000px;}
.yd6{bottom:805.245000px;}
.y133{bottom:805.785000px;}
.y1da{bottom:806.145000px;}
.y112{bottom:806.505000px;}
.y1c3{bottom:806.865000px;}
.y1a8{bottom:807.225000px;}
.y172{bottom:807.405000px;}
.y47{bottom:808.845000px;}
.ya2{bottom:815.865000px;}
.y15{bottom:816.045000px;}
.y14a{bottom:821.805000px;}
.y38{bottom:822.345000px;}
.y19a{bottom:827.925000px;}
.y87{bottom:836.025000px;}
.yf8{bottom:836.205000px;}
.y132{bottom:836.925000px;}
.yd5{bottom:837.105000px;}
.y111{bottom:837.645000px;}
.y1a7{bottom:838.185000px;}
.y171{bottom:838.365000px;}
.y1d9{bottom:838.545000px;}
.y46{bottom:839.805000px;}
.y14{bottom:847.005000px;}
.y149{bottom:852.945000px;}
.y37{bottom:856.005000px;}
.y199{bottom:858.885000px;}
.y86{bottom:866.985000px;}
.yf7{bottom:867.165000px;}
.y131{bottom:867.885000px;}
.y110{bottom:868.605000px;}
.yd4{bottom:868.965000px;}
.y1c2{bottom:869.325000px;}
.y170{bottom:869.505000px;}
.y1a6{bottom:869.685000px;}
.y45{bottom:870.945000px;}
.ya1{bottom:877.965000px;}
.y13{bottom:878.145000px;}
.y148{bottom:883.950000px;}
.y36{bottom:887.010000px;}
.y198{bottom:890.070000px;}
.yf6{bottom:898.350000px;}
.y130{bottom:899.070000px;}
.y85{bottom:899.430000px;}
.y10f{bottom:899.790000px;}
.y16f{bottom:900.510000px;}
.y1a5{bottom:900.690000px;}
.y44{bottom:901.950000px;}
.y12{bottom:909.150000px;}
.y147{bottom:915.090000px;}
.yf5{bottom:915.810000px;}
.yb7{bottom:917.970000px;}
.yd3{bottom:924.090000px;}
.y12f{bottom:930.030000px;}
.y15d{bottom:930.390000px;}
.y84{bottom:930.570000px;}
.y10e{bottom:930.750000px;}
.y184{bottom:931.650000px;}
.y1a4{bottom:932.010000px;}
.y35{bottom:933.090000px;}
.ya0{bottom:940.110000px;}
.y11{bottom:940.290000px;}
.y146{bottom:946.050000px;}
.yd2{bottom:955.050000px;}
.y12e{bottom:961.170000px;}
.y83{bottom:961.350000px;}
.y10d{bottom:961.890000px;}
.y15c{bottom:962.070000px;}
.y183{bottom:962.610000px;}
.y1c1{bottom:963.150000px;}
.y1a3{bottom:963.510000px;}
.y34{bottom:964.050000px;}
.y9f{bottom:971.250000px;}
.y145{bottom:977.190000px;}
.yf4{bottom:978.630000px;}
.y10{bottom:980.250000px;}
.y12d{bottom:992.130000px;}
.y10c{bottom:992.850000px;}
.y82{bottom:993.750000px;}
.y1c0{bottom:994.110000px;}
.y1a2{bottom:994.470000px;}
.y33{bottom:995.190000px;}
.y9e{bottom:1002.210000px;}
.yf{bottom:1013.550000px;}
.y144{bottom:1017.150000px;}
.y12c{bottom:1023.270000px;}
.y10b{bottom:1023.990000px;}
.y182{bottom:1024.710000px;}
.y1a1{bottom:1025.610000px;}
.y32{bottom:1026.150000px;}
.y12b{bottom:1040.730000px;}
.yf3{bottom:1041.450000px;}
.y9d{bottom:1045.230000px;}
.ye{bottom:1049.730000px;}
.y181{bottom:1055.850000px;}
.y1bf{bottom:1056.570000px;}
.y1a0{bottom:1056.930000px;}
.y31{bottom:1057.290000px;}
.yd{bottom:1083.750000px;}
.y12a{bottom:1086.810000px;}
.y1be{bottom:1087.710000px;}
.y19f{bottom:1087.890000px;}
.y30{bottom:1088.250000px;}
.yf2{bottom:1104.270000px;}
.yc{bottom:1114.710000px;}
.y129{bottom:1117.950000px;}
.y1bd{bottom:1119.030000px;}
.y2f{bottom:1119.390000px;}
.y128{bottom:1135.410000px;}
.y4{bottom:1137.210000px;}
.y1bc{bottom:1150.020000px;}
.y2e{bottom:1150.380000px;}
.y3{bottom:1156.500000px;}
.y2{bottom:1175.040000px;}
.y1{bottom:1193.040000px;}
.y2b{bottom:1195.560000px;}
.hc{height:16.380000px;}
.h13{height:30.960000px;}
.h14{height:30.996000px;}
.he{height:31.140000px;}
.h1b{height:31.176000px;}
.h25{height:31.320000px;}
.h1a{height:31.860000px;}
.h21{height:35.100000px;}
.h6{height:43.920000px;}
.h24{height:45.900000px;}
.h7{height:47.980898px;}
.h23{height:52.171875px;}
.h8{height:53.709961px;}
.h4{height:58.121719px;}
.h3{height:58.833281px;}
.hb{height:61.189805px;}
.h11{height:61.380000px;}
.h15{height:62.100000px;}
.h12{height:62.136000px;}
.h1d{height:62.820000px;}
.ha{height:63.175781px;}
.hd{height:63.351562px;}
.h2{height:63.949219px;}
.h5{height:65.884219px;}
.h16{height:66.605977px;}
.h26{height:71.613281px;}
.h9{height:74.820586px;}
.h10{height:93.240000px;}
.h19{height:93.960000px;}
.h18{height:125.676000px;}
.h17{height:125.820000px;}
.h22{height:129.780000px;}
.hf{height:155.190000px;}
.h1c{height:155.370000px;}
.h1f{height:186.330000px;}
.h1e{height:217.470000px;}
.h20{height:248.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.600000px;}
.w1d{width:47.916000px;}
.w1b{width:58.320000px;}
.w37{width:61.380000px;}
.w3a{width:62.460000px;}
.w2f{width:63.000000px;}
.w49{width:73.260000px;}
.w48{width:73.296000px;}
.w41{width:73.836000px;}
.w42{width:79.740000px;}
.w25{width:82.836000px;}
.w33{width:84.096000px;}
.w22{width:84.240000px;}
.w2d{width:94.860000px;}
.w2e{width:94.896000px;}
.w30{width:95.076000px;}
.w23{width:97.956000px;}
.w20{width:99.360000px;}
.w16{width:99.936000px;}
.w1a{width:102.636000px;}
.w21{width:102.816000px;}
.we{width:103.536000px;}
.w31{width:105.120000px;}
.w43{width:105.516000px;}
.wa{width:105.696000px;}
.w38{width:105.876000px;}
.w24{width:106.920000px;}
.w4a{width:109.836000px;}
.w54{width:110.520000px;}
.w18{width:111.060000px;}
.w52{width:112.356000px;}
.wb{width:113.940000px;}
.w3b{width:115.416000px;}
.w9{width:116.100000px;}
.w44{width:116.316000px;}
.w4b{width:120.816000px;}
.wd{width:128.916000px;}
.w56{width:134.136000px;}
.w17{width:141.336000px;}
.w19{width:141.516000px;}
.w55{width:142.956000px;}
.w39{width:144.756000px;}
.w45{width:147.276000px;}
.w53{width:154.110000px;}
.w3e{width:154.290000px;}
.w1c{width:157.350000px;}
.w32{width:159.510000px;}
.w15{width:161.850000px;}
.w59{width:175.530000px;}
.w51{width:179.310000px;}
.w3d{width:207.930000px;}
.w8{width:216.255000px;}
.w40{width:222.555000px;}
.w47{width:231.375000px;}
.wc{width:233.175000px;}
.w13{width:244.875000px;}
.w12{width:253.110000px;}
.w11{width:262.515000px;}
.w26{width:265.035000px;}
.w4e{width:265.350000px;}
.w4f{width:277.815000px;}
.w1e{width:287.850000px;}
.w1f{width:289.335000px;}
.w4d{width:292.395000px;}
.w36{width:305.175000px;}
.w6{width:332.850000px;}
.w28{width:338.970000px;}
.w29{width:339.150000px;}
.w5{width:347.475000px;}
.w3f{width:365.295000px;}
.w3c{width:367.275000px;}
.w46{width:401.655000px;}
.w2a{width:498.675000px;}
.w14{width:516.525000px;}
.w58{width:526.245000px;}
.w50{width:558.465000px;}
.wf{width:571.245000px;}
.w34{width:593.025000px;}
.w3{width:640.725000px;}
.w27{width:678.885000px;}
.w57{width:702.510000px;}
.w2b{width:730.410000px;}
.w2c{width:732.570000px;}
.w10{width:762.120000px;}
.w7{width:788.400000px;}
.w35{width:798.660000px;}
.w4c{width:837.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.xf{left:8.640000px;}
.x7{left:10.440000px;}
.x42{left:12.960000px;}
.x40{left:14.400000px;}
.x56{left:16.956000px;}
.x44{left:18.540000px;}
.x49{left:19.620000px;}
.x3f{left:23.040000px;}
.x35{left:24.660000px;}
.x46{left:26.820000px;}
.x5f{left:28.080000px;}
.x2b{left:30.600000px;}
.x58{left:32.625000px;}
.x5a{left:35.640000px;}
.x5e{left:37.980000px;}
.x36{left:41.616000px;}
.x51{left:45.036000px;}
.x34{left:50.940000px;}
.x19{left:52.380000px;}
.x4b{left:53.460000px;}
.x48{left:55.080000px;}
.x5b{left:64.260000px;}
.x25{left:65.520000px;}
.x32{left:67.725000px;}
.x50{left:74.700000px;}
.x55{left:80.145000px;}
.x6b{left:81.360000px;}
.x6a{left:82.440000px;}
.xe{left:83.879987px;}
.x30{left:85.905000px;}
.x69{left:86.940000px;}
.x33{left:91.830000px;}
.x68{left:95.940000px;}
.x15{left:99.035987px;}
.x27{left:103.170000px;}
.x1{left:106.415987px;}
.x13{left:110.735987px;}
.x9{left:112.175987px;}
.x3d{left:115.236000px;}
.x66{left:120.285000px;}
.x12{left:133.415987px;}
.x31{left:136.650000px;}
.x16{left:137.735987px;}
.x5{left:144.354000px;}
.x57{left:149.256000px;}
.x53{left:153.765000px;}
.x65{left:157.710000px;}
.xd{left:159.509987px;}
.x14{left:163.829987px;}
.xc{left:166.709987px;}
.x17{left:172.289987px;}
.x2a{left:192.450000px;}
.x61{left:208.110000px;}
.x3e{left:210.990000px;}
.x5c{left:212.430000px;}
.x6d{left:213.509987px;}
.x2f{left:214.995000px;}
.x2c{left:228.090000px;}
.x52{left:229.710000px;}
.x64{left:235.830000px;}
.x6c{left:239.609987px;}
.x2{left:241.589987px;}
.x23{left:245.190000px;}
.x24{left:249.690000px;}
.x1a{left:250.995000px;}
.xa{left:253.649987px;}
.x22{left:262.470000px;}
.x21{left:267.690000px;}
.x1b{left:269.535000px;}
.x26{left:282.855000px;}
.x37{left:290.595000px;}
.x11{left:303.705000px;}
.x41{left:306.615000px;}
.xb{left:321.734987px;}
.x28{left:328.935000px;}
.x4c{left:359.355000px;}
.x43{left:370.335000px;}
.x1c{left:386.355000px;}
.x39{left:390.675000px;}
.x4d{left:421.455000px;}
.x18{left:433.514987px;}
.x4{left:447.404987px;}
.x10{left:453.885000px;}
.x45{left:466.125000px;}
.x2d{left:470.985000px;}
.x62{left:476.025000px;}
.x1d{left:492.765000px;}
.x3a{left:494.205000px;}
.x4e{left:528.045000px;}
.x8{left:534.344987px;}
.x47{left:571.965000px;}
.x38{left:579.165000px;}
.x29{left:582.765000px;}
.x60{left:587.265000px;}
.x54{left:595.905000px;}
.x1e{left:607.605000px;}
.x5d{left:614.805000px;}
.x67{left:634.110000px;}
.x4f{left:673.530000px;}
.x3b{left:677.850000px;}
.x3{left:696.389987px;}
.x59{left:702.150000px;}
.x2e{left:725.010000px;}
.x63{left:730.950000px;}
.x4a{left:732.210000px;}
.x20{left:737.250000px;}
.x6{left:747.150000px;}
.x3c{left:785.670000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.074240pt;}
.ls7{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.161067pt;}
.ls17{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:21.226667pt;}
.lsc{letter-spacing:21.248000pt;}
.ls12{letter-spacing:23.808000pt;}
.lsd{letter-spacing:26.368000pt;}
.ls18{letter-spacing:27.626667pt;}
.ls11{letter-spacing:27.648000pt;}
.ls20{letter-spacing:30.186667pt;}
.lsb{letter-spacing:30.208000pt;}
.ls13{letter-spacing:34.048000pt;}
.ls6{letter-spacing:37.226667pt;}
.ls23{letter-spacing:41.088000pt;}
.ls24{letter-spacing:44.288000pt;}
.lse{letter-spacing:48.768000pt;}
.ls22{letter-spacing:48.928000pt;}
.ls1e{letter-spacing:58.346667pt;}
.ls1d{letter-spacing:58.368000pt;}
.ls14{letter-spacing:83.328000pt;}
.ls9{letter-spacing:108.288000pt;}
.ls21{letter-spacing:115.488000pt;}
.ls15{letter-spacing:133.248000pt;}
.ls1f{letter-spacing:133.408000pt;}
.ls1a{letter-spacing:172.778667pt;}
.ws9{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.wsa{word-spacing:-10.881067pt;}
.ws2{word-spacing:-10.832000pt;}
.ws1{word-spacing:-9.690880pt;}
.ws5{word-spacing:0.000000pt;}
._f{margin-left:-4.416000pt;}
._e{margin-left:-3.328000pt;}
._5{margin-left:-1.955840pt;}
._2{margin-left:-1.047040pt;}
._0{width:1.168640pt;}
._1{width:2.898133pt;}
._d{width:3.949867pt;}
._9{width:5.376000pt;}
._a{width:6.406400pt;}
._3{width:7.360000pt;}
._4{width:8.384000pt;}
._b{width:9.408000pt;}
._c{width:10.688000pt;}
._6{width:11.904000pt;}
._7{width:13.103360pt;}
._8{width:14.645333pt;}
._19{width:17.536000pt;}
._10{width:18.560000pt;}
._11{width:19.870720pt;}
._17{width:21.025280pt;}
._18{width:22.248107pt;}
._1c{width:23.360000pt;}
._1d{width:24.407893pt;}
._12{width:25.600000pt;}
._13{width:26.531840pt;}
._16{width:27.543040pt;}
._14{width:28.992000pt;}
._15{width:29.952000pt;}
._1b{width:31.680000pt;}
._20{width:35.584000pt;}
._23{width:49.536000pt;}
._25{width:86.912000pt;}
._28{width:91.904000pt;}
._26{width:93.568000pt;}
._2a{width:95.680000pt;}
._1f{width:107.392000pt;}
._2b{width:115.338667pt;}
._29{width:132.928000pt;}
._2c{width:138.273707pt;}
._21{width:145.152000pt;}
._22{width:146.176000pt;}
._1a{width:157.418667pt;}
._27{width:164.864000pt;}
._24{width:296.320000pt;}
._1e{width:1470.805333pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y2d{bottom:3.200000pt;}
.ybe{bottom:12.640000pt;}
.ydb{bottom:12.666667pt;}
.ycd{bottom:12.680000pt;}
.yb8{bottom:12.800000pt;}
.y178{bottom:12.826667pt;}
.y13f{bottom:12.840000pt;}
.y18d{bottom:12.960000pt;}
.y10a{bottom:13.440000pt;}
.ya{bottom:15.360000pt;}
.y8{bottom:15.840000pt;}
.y17c{bottom:16.320000pt;}
.y187{bottom:25.920000pt;}
.yb{bottom:27.520000pt;}
.y7{bottom:28.960000pt;}
.yc2{bottom:39.680000pt;}
.ybd{bottom:40.320000pt;}
.yc4{bottom:40.346667pt;}
.y15e{bottom:40.960000pt;}
.y6{bottom:51.040000pt;}
.ybc{bottom:67.840000pt;}
.y105{bottom:67.880000pt;}
.yc0{bottom:68.000000pt;}
.y165{bottom:68.026667pt;}
.y158{bottom:68.040000pt;}
.yec{bottom:68.640000pt;}
.y2c{bottom:81.600000pt;}
.ybb{bottom:95.520000pt;}
.y164{bottom:95.546667pt;}
.y104{bottom:95.560000pt;}
.ye4{bottom:96.840000pt;}
.ye0{bottom:96.960000pt;}
.y17e{bottom:100.480000pt;}
.y5{bottom:105.952000pt;}
.yba{bottom:123.080000pt;}
.y16e{bottom:123.200000pt;}
.y163{bottom:123.226667pt;}
.y157{bottom:123.240000pt;}
.y1ed{bottom:128.992000pt;}
.y109{bottom:131.552000pt;}
.y1d8{bottom:135.226667pt;}
.y81{bottom:136.986667pt;}
.y127{bottom:137.306667pt;}
.y7c{bottom:139.386667pt;}
.y143{bottom:140.346667pt;}
.yb6{bottom:141.146667pt;}
.yd1{bottom:142.906667pt;}
.y43{bottom:143.226667pt;}
.y2a{bottom:143.386667pt;}
.y19e{bottom:145.626667pt;}
.y197{bottom:147.066667pt;}
.y17d{bottom:148.026667pt;}
.y9c{bottom:150.586667pt;}
.y16d{bottom:150.720000pt;}
.y162{bottom:150.746667pt;}
.y16a{bottom:150.760000pt;}
.y1ec{bottom:156.666667pt;}
.y15b{bottom:157.146667pt;}
.yf1{bottom:158.426667pt;}
.y108{bottom:159.226667pt;}
.y1d7{bottom:162.746667pt;}
.y1bb{bottom:163.386667pt;}
.y80{bottom:164.666667pt;}
.y126{bottom:164.986667pt;}
.y7b{bottom:166.906667pt;}
.yea{bottom:167.866667pt;}
.yb5{bottom:168.826667pt;}
.y29{bottom:170.906667pt;}
.y15a{bottom:172.826667pt;}
.y6d{bottom:173.146667pt;}
.y196{bottom:174.746667pt;}
.y180{bottom:176.346667pt;}
.y9b{bottom:178.106667pt;}
.y16c{bottom:178.400000pt;}
.y161{bottom:178.426667pt;}
.y5a{bottom:181.146667pt;}
.y1eb{bottom:184.186667pt;}
.y107{bottom:186.746667pt;}
.y1d6{bottom:190.426667pt;}
.y1ba{bottom:191.066667pt;}
.y7f{bottom:192.186667pt;}
.y125{bottom:192.506667pt;}
.y7a{bottom:194.586667pt;}
.ye9{bottom:195.546667pt;}
.yb4{bottom:196.346667pt;}
.y42{bottom:198.426667pt;}
.y28{bottom:198.586667pt;}
.yd0{bottom:198.746667pt;}
.y6c{bottom:200.826667pt;}
.y195{bottom:202.266667pt;}
.y9a{bottom:205.786667pt;}
.y16b{bottom:205.946667pt;}
.y59{bottom:208.826667pt;}
.y1ea{bottom:211.866667pt;}
.yf0{bottom:214.426667pt;}
.y169{bottom:215.706667pt;}
.y1d5{bottom:217.946667pt;}
.y1b9{bottom:218.586667pt;}
.y7e{bottom:219.706667pt;}
.y124{bottom:220.186667pt;}
.y79{bottom:222.106667pt;}
.ye8{bottom:223.066667pt;}
.yb3{bottom:224.026667pt;}
.y27{bottom:226.106667pt;}
.ycf{bottom:227.066667pt;}
.y6b{bottom:228.346667pt;}
.y159{bottom:228.666667pt;}
.y106{bottom:229.946667pt;}
.y17f{bottom:232.186667pt;}
.y99{bottom:233.306667pt;}
.y58{bottom:236.346667pt;}
.y142{bottom:238.586667pt;}
.y1e9{bottom:239.386667pt;}
.y194{bottom:240.506667pt;}
.y1d4{bottom:245.626667pt;}
.y1b8{bottom:246.106667pt;}
.y123{bottom:247.706667pt;}
.y7d{bottom:248.506667pt;}
.y78{bottom:249.786667pt;}
.ye7{bottom:250.746667pt;}
.yb2{bottom:251.546667pt;}
.y41{bottom:253.626667pt;}
.y26{bottom:253.786667pt;}
.yce{bottom:255.226667pt;}
.y6a{bottom:256.026667pt;}
.y156{bottom:256.826667pt;}
.y103{bottom:258.266667pt;}
.y98{bottom:260.986667pt;}
.y57{bottom:264.026667pt;}
.y141{bottom:266.906667pt;}
.y1e8{bottom:267.066667pt;}
.y193{bottom:268.186667pt;}
.yef{bottom:270.266667pt;}
.y1d3{bottom:273.146667pt;}
.y1b7{bottom:274.106667pt;}
.y122{bottom:275.386667pt;}
.y77{bottom:277.306667pt;}
.ye6{bottom:278.266667pt;}
.yb1{bottom:279.226667pt;}
.y25{bottom:281.306667pt;}
.y69{bottom:283.546667pt;}
.y56{bottom:291.546667pt;}
.y1e7{bottom:294.586667pt;}
.y140{bottom:295.226667pt;}
.y192{bottom:295.706667pt;}
.y17b{bottom:295.866667pt;}
.y97{bottom:299.226667pt;}
.y1d2{bottom:300.826667pt;}
.y1b6{bottom:301.626667pt;}
.y121{bottom:302.906667pt;}
.y76{bottom:304.986667pt;}
.ye5{bottom:305.946667pt;}
.yb0{bottom:306.746667pt;}
.y40{bottom:308.826667pt;}
.y24{bottom:308.986667pt;}
.y68{bottom:311.226667pt;}
.ycc{bottom:311.866667pt;}
.y55{bottom:319.226667pt;}
.ye3{bottom:321.466667pt;}
.y1e6{bottom:322.266667pt;}
.y13e{bottom:323.386667pt;}
.y17a{bottom:324.066667pt;}
.yee{bottom:326.146667pt;}
.y96{bottom:326.786667pt;}
.y1d1{bottom:328.386667pt;}
.y1b5{bottom:329.346667pt;}
.y120{bottom:330.626667pt;}
.y75{bottom:332.546667pt;}
.yaf{bottom:334.466667pt;}
.y23{bottom:336.546667pt;}
.y67{bottom:338.786667pt;}
.ycb{bottom:340.066667pt;}
.y54{bottom:346.786667pt;}
.ydf{bottom:349.666667pt;}
.y1e5{bottom:349.826667pt;}
.y191{bottom:350.946667pt;}
.y13d{bottom:351.746667pt;}
.y179{bottom:352.386667pt;}
.y95{bottom:354.466667pt;}
.y1d0{bottom:356.066667pt;}
.y1b4{bottom:357.186667pt;}
.y11f{bottom:358.146667pt;}
.y74{bottom:360.226667pt;}
.yae{bottom:361.986667pt;}
.y3f{bottom:364.066667pt;}
.y22{bottom:364.226667pt;}
.y66{bottom:366.466667pt;}
.yca{bottom:368.386667pt;}
.y53{bottom:374.466667pt;}
.y1e4{bottom:377.346667pt;}
.ye2{bottom:377.986667pt;}
.y190{bottom:378.626667pt;}
.y13c{bottom:380.066667pt;}
.y94{bottom:381.986667pt;}
.y1cf{bottom:383.586667pt;}
.y1b3{bottom:384.866667pt;}
.y11e{bottom:385.826667pt;}
.y73{bottom:387.746667pt;}
.yad{bottom:389.666667pt;}
.y21{bottom:391.746667pt;}
.y19d{bottom:393.986667pt;}
.y18f{bottom:394.146667pt;}
.y155{bottom:395.586667pt;}
.yc9{bottom:396.706667pt;}
.y102{bottom:396.866667pt;}
.y52{bottom:401.986667pt;}
.y65{bottom:404.706667pt;}
.y1e3{bottom:405.986667pt;}
.y13b{bottom:408.226667pt;}
.y93{bottom:409.666667pt;}
.y168{bottom:410.306667pt;}
.y1ce{bottom:411.586667pt;}
.y1b2{bottom:412.386667pt;}
.y11d{bottom:413.346667pt;}
.y72{bottom:415.426667pt;}
.yac{bottom:417.186667pt;}
.y3e{bottom:419.266667pt;}
.y20{bottom:419.426667pt;}
.y19c{bottom:421.666667pt;}
.y18e{bottom:422.466667pt;}
.y154{bottom:423.906667pt;}
.yc8{bottom:424.866667pt;}
.y51{bottom:429.666667pt;}
.y64{bottom:432.226667pt;}
.ye1{bottom:433.826667pt;}
.y1e2{bottom:434.946667pt;}
.y13a{bottom:436.546667pt;}
.y92{bottom:437.186667pt;}
.yeb{bottom:437.826667pt;}
.y1cd{bottom:439.106667pt;}
.y1b1{bottom:440.226667pt;}
.y11c{bottom:441.026667pt;}
.y71{bottom:442.946667pt;}
.y101{bottom:445.826667pt;}
.y1f{bottom:446.946667pt;}
.y167{bottom:451.266667pt;}
.yc7{bottom:453.186667pt;}
.yab{bottom:455.426667pt;}
.y50{bottom:457.186667pt;}
.y63{bottom:459.906667pt;}
.yde{bottom:462.146667pt;}
.y1e1{bottom:462.466667pt;}
.y139{bottom:464.706667pt;}
.y91{bottom:464.866667pt;}
.y1cc{bottom:466.946667pt;}
.y1b0{bottom:468.226667pt;}
.y11b{bottom:468.546667pt;}
.y70{bottom:470.626667pt;}
.y153{bottom:472.866667pt;}
.y3d{bottom:474.466667pt;}
.y1e{bottom:474.626667pt;}
.y18c{bottom:478.306667pt;}
.y166{bottom:478.786667pt;}
.yc6{bottom:481.506667pt;}
.yaa{bottom:483.106667pt;}
.y4f{bottom:484.866667pt;}
.y62{bottom:487.426667pt;}
.ydd{bottom:490.306667pt;}
.y1e0{bottom:491.106667pt;}
.y90{bottom:492.386667pt;}
.y138{bottom:493.026667pt;}
.yed{bottom:493.666667pt;}
.y160{bottom:494.306667pt;}
.y1cb{bottom:494.946667pt;}
.y1af{bottom:495.746667pt;}
.y11a{bottom:496.226667pt;}
.y6f{bottom:498.146667pt;}
.y1d{bottom:502.146667pt;}
.y18b{bottom:506.786667pt;}
.y152{bottom:508.386667pt;}
.y100{bottom:509.026667pt;}
.yc5{bottom:509.666667pt;}
.ya9{bottom:510.626667pt;}
.y4e{bottom:512.386667pt;}
.y61{bottom:515.106667pt;}
.ydc{bottom:518.626667pt;}
.y8f{bottom:520.066667pt;}
.y137{bottom:521.346667pt;}
.y1ca{bottom:522.786667pt;}
.y1ae{bottom:523.426667pt;}
.y119{bottom:523.746667pt;}
.y6e{bottom:525.826667pt;}
.y3c{bottom:529.666667pt;}
.y1c{bottom:529.826667pt;}
.y18a{bottom:535.106667pt;}
.y151{bottom:536.066667pt;}
.yff{bottom:536.706667pt;}
.yc3{bottom:537.986667pt;}
.ya8{bottom:538.306667pt;}
.y60{bottom:542.626667pt;}
.yda{bottom:546.946667pt;}
.y8e{bottom:547.586667pt;}
.y177{bottom:549.506667pt;}
.y1c9{bottom:550.306667pt;}
.y1ad{bottom:550.946667pt;}
.y118{bottom:551.426667pt;}
.y4d{bottom:553.346667pt;}
.y1b{bottom:557.373333pt;}
.y189{bottom:563.453333pt;}
.y150{bottom:563.613333pt;}
.yfe{bottom:564.253333pt;}
.ya7{bottom:565.853333pt;}
.y5f{bottom:570.333333pt;}
.y1df{bottom:575.133333pt;}
.y8d{bottom:575.293333pt;}
.y176{bottom:577.853333pt;}
.y1c8{bottom:578.333333pt;}
.y117{bottom:578.973333pt;}
.y4c{bottom:581.053333pt;}
.y3b{bottom:584.893333pt;}
.y1a{bottom:585.053333pt;}
.y14f{bottom:591.293333pt;}
.y188{bottom:591.613333pt;}
.yfd{bottom:591.933333pt;}
.ya6{bottom:593.533333pt;}
.ybf{bottom:593.853333pt;}
.y5e{bottom:597.853333pt;}
.y8c{bottom:602.813333pt;}
.y1de{bottom:603.933333pt;}
.y1c7{bottom:606.173333pt;}
.y1ac{bottom:606.493333pt;}
.y116{bottom:606.653333pt;}
.y4b{bottom:608.573333pt;}
.y19{bottom:612.573333pt;}
.y14e{bottom:618.813333pt;}
.y186{bottom:619.933333pt;}
.ya5{bottom:621.053333pt;}
.y5d{bottom:625.533333pt;}
.y175{bottom:626.813333pt;}
.y8b{bottom:630.493333pt;}
.yd9{bottom:631.133333pt;}
.y1dd{bottom:632.733333pt;}
.yfc{bottom:632.893333pt;}
.y136{bottom:633.533333pt;}
.y1c6{bottom:633.853333pt;}
.y1ab{bottom:634.013333pt;}
.y115{bottom:634.173333pt;}
.y14d{bottom:634.333333pt;}
.y4a{bottom:636.253333pt;}
.y3a{bottom:640.093333pt;}
.y18{bottom:640.253333pt;}
.yc1{bottom:649.053333pt;}
.y5c{bottom:653.053333pt;}
.y8a{bottom:657.853333pt;}
.yd8{bottom:659.293333pt;}
.ya4{bottom:659.453333pt;}
.y1dc{bottom:660.253333pt;}
.yfb{bottom:660.413333pt;}
.y135{bottom:661.053333pt;}
.y1c5{bottom:661.693333pt;}
.y114{bottom:661.853333pt;}
.y1aa{bottom:662.013333pt;}
.y174{bottom:662.493333pt;}
.y49{bottom:663.773333pt;}
.y17{bottom:667.773333pt;}
.y14c{bottom:675.453333pt;}
.yb9{bottom:677.373333pt;}
.y5b{bottom:680.733333pt;}
.y185{bottom:682.013333pt;}
.y89{bottom:686.813333pt;}
.yd7{bottom:687.613333pt;}
.y1db{bottom:687.773333pt;}
.yfa{bottom:688.093333pt;}
.y15f{bottom:688.253333pt;}
.y134{bottom:688.733333pt;}
.y1c4{bottom:689.213333pt;}
.y113{bottom:689.373333pt;}
.y1a9{bottom:689.533333pt;}
.y173{bottom:690.013333pt;}
.y48{bottom:691.453333pt;}
.y16{bottom:695.453333pt;}
.ya3{bottom:697.693333pt;}
.y14b{bottom:702.973333pt;}
.y39{bottom:703.293333pt;}
.y19b{bottom:708.253333pt;}
.y88{bottom:714.173333pt;}
.yf9{bottom:715.613333pt;}
.yd6{bottom:715.773333pt;}
.y133{bottom:716.253333pt;}
.y1da{bottom:716.573333pt;}
.y112{bottom:716.893333pt;}
.y1c3{bottom:717.213333pt;}
.y1a8{bottom:717.533333pt;}
.y172{bottom:717.693333pt;}
.y47{bottom:718.973333pt;}
.ya2{bottom:725.213333pt;}
.y15{bottom:725.373333pt;}
.y14a{bottom:730.493333pt;}
.y38{bottom:730.973333pt;}
.y19a{bottom:735.933333pt;}
.y87{bottom:743.133333pt;}
.yf8{bottom:743.293333pt;}
.y132{bottom:743.933333pt;}
.yd5{bottom:744.093333pt;}
.y111{bottom:744.573333pt;}
.y1a7{bottom:745.053333pt;}
.y171{bottom:745.213333pt;}
.y1d9{bottom:745.373333pt;}
.y46{bottom:746.493333pt;}
.y14{bottom:752.893333pt;}
.y149{bottom:758.173333pt;}
.y37{bottom:760.893333pt;}
.y199{bottom:763.453333pt;}
.y86{bottom:770.653333pt;}
.yf7{bottom:770.813333pt;}
.y131{bottom:771.453333pt;}
.y110{bottom:772.093333pt;}
.yd4{bottom:772.413333pt;}
.y1c2{bottom:772.733333pt;}
.y170{bottom:772.893333pt;}
.y1a6{bottom:773.053333pt;}
.y45{bottom:774.173333pt;}
.ya1{bottom:780.413333pt;}
.y13{bottom:780.573333pt;}
.y148{bottom:785.733333pt;}
.y36{bottom:788.453333pt;}
.y198{bottom:791.173333pt;}
.yf6{bottom:798.533333pt;}
.y130{bottom:799.173333pt;}
.y85{bottom:799.493333pt;}
.y10f{bottom:799.813333pt;}
.y16f{bottom:800.453333pt;}
.y1a5{bottom:800.613333pt;}
.y44{bottom:801.733333pt;}
.y12{bottom:808.133333pt;}
.y147{bottom:813.413333pt;}
.yf5{bottom:814.053333pt;}
.yb7{bottom:815.973333pt;}
.yd3{bottom:821.413333pt;}
.y12f{bottom:826.693333pt;}
.y15d{bottom:827.013333pt;}
.y84{bottom:827.173333pt;}
.y10e{bottom:827.333333pt;}
.y184{bottom:828.133333pt;}
.y1a4{bottom:828.453333pt;}
.y35{bottom:829.413333pt;}
.ya0{bottom:835.653333pt;}
.y11{bottom:835.813333pt;}
.y146{bottom:840.933333pt;}
.yd2{bottom:848.933333pt;}
.y12e{bottom:854.373333pt;}
.y83{bottom:854.533333pt;}
.y10d{bottom:855.013333pt;}
.y15c{bottom:855.173333pt;}
.y183{bottom:855.653333pt;}
.y1c1{bottom:856.133333pt;}
.y1a3{bottom:856.453333pt;}
.y34{bottom:856.933333pt;}
.y9f{bottom:863.333333pt;}
.y145{bottom:868.613333pt;}
.yf4{bottom:869.893333pt;}
.y10{bottom:871.333333pt;}
.y12d{bottom:881.893333pt;}
.y10c{bottom:882.533333pt;}
.y82{bottom:883.333333pt;}
.y1c0{bottom:883.653333pt;}
.y1a2{bottom:883.973333pt;}
.y33{bottom:884.613333pt;}
.y9e{bottom:890.853333pt;}
.yf{bottom:900.933333pt;}
.y144{bottom:904.133333pt;}
.y12c{bottom:909.573333pt;}
.y10b{bottom:910.213333pt;}
.y182{bottom:910.853333pt;}
.y1a1{bottom:911.653333pt;}
.y32{bottom:912.133333pt;}
.y12b{bottom:925.093333pt;}
.yf3{bottom:925.733333pt;}
.y9d{bottom:929.093333pt;}
.ye{bottom:933.093333pt;}
.y181{bottom:938.533333pt;}
.y1bf{bottom:939.173333pt;}
.y1a0{bottom:939.493333pt;}
.y31{bottom:939.813333pt;}
.yd{bottom:963.333333pt;}
.y12a{bottom:966.053333pt;}
.y1be{bottom:966.853333pt;}
.y19f{bottom:967.013333pt;}
.y30{bottom:967.333333pt;}
.yf2{bottom:981.573333pt;}
.yc{bottom:990.853333pt;}
.y129{bottom:993.733333pt;}
.y1bd{bottom:994.693333pt;}
.y2f{bottom:995.013333pt;}
.y128{bottom:1009.253333pt;}
.y4{bottom:1010.853333pt;}
.y1bc{bottom:1022.240000pt;}
.y2e{bottom:1022.560000pt;}
.y3{bottom:1028.000000pt;}
.y2{bottom:1044.480000pt;}
.y1{bottom:1060.480000pt;}
.y2b{bottom:1062.720000pt;}
.hc{height:14.560000pt;}
.h13{height:27.520000pt;}
.h14{height:27.552000pt;}
.he{height:27.680000pt;}
.h1b{height:27.712000pt;}
.h25{height:27.840000pt;}
.h1a{height:28.320000pt;}
.h21{height:31.200000pt;}
.h6{height:39.040000pt;}
.h24{height:40.800000pt;}
.h7{height:42.649687pt;}
.h23{height:46.375000pt;}
.h8{height:47.742188pt;}
.h4{height:51.663750pt;}
.h3{height:52.296250pt;}
.hb{height:54.390938pt;}
.h11{height:54.560000pt;}
.h15{height:55.200000pt;}
.h12{height:55.232000pt;}
.h1d{height:55.840000pt;}
.ha{height:56.156250pt;}
.hd{height:56.312500pt;}
.h2{height:56.843750pt;}
.h5{height:58.563750pt;}
.h16{height:59.205313pt;}
.h26{height:63.656250pt;}
.h9{height:66.507188pt;}
.h10{height:82.880000pt;}
.h19{height:83.520000pt;}
.h18{height:111.712000pt;}
.h17{height:111.840000pt;}
.h22{height:115.360000pt;}
.hf{height:137.946667pt;}
.h1c{height:138.106667pt;}
.h1f{height:165.626667pt;}
.h1e{height:193.306667pt;}
.h20{height:220.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.200000pt;}
.w1d{width:42.592000pt;}
.w1b{width:51.840000pt;}
.w37{width:54.560000pt;}
.w3a{width:55.520000pt;}
.w2f{width:56.000000pt;}
.w49{width:65.120000pt;}
.w48{width:65.152000pt;}
.w41{width:65.632000pt;}
.w42{width:70.880000pt;}
.w25{width:73.632000pt;}
.w33{width:74.752000pt;}
.w22{width:74.880000pt;}
.w2d{width:84.320000pt;}
.w2e{width:84.352000pt;}
.w30{width:84.512000pt;}
.w23{width:87.072000pt;}
.w20{width:88.320000pt;}
.w16{width:88.832000pt;}
.w1a{width:91.232000pt;}
.w21{width:91.392000pt;}
.we{width:92.032000pt;}
.w31{width:93.440000pt;}
.w43{width:93.792000pt;}
.wa{width:93.952000pt;}
.w38{width:94.112000pt;}
.w24{width:95.040000pt;}
.w4a{width:97.632000pt;}
.w54{width:98.240000pt;}
.w18{width:98.720000pt;}
.w52{width:99.872000pt;}
.wb{width:101.280000pt;}
.w3b{width:102.592000pt;}
.w9{width:103.200000pt;}
.w44{width:103.392000pt;}
.w4b{width:107.392000pt;}
.wd{width:114.592000pt;}
.w56{width:119.232000pt;}
.w17{width:125.632000pt;}
.w19{width:125.792000pt;}
.w55{width:127.072000pt;}
.w39{width:128.672000pt;}
.w45{width:130.912000pt;}
.w53{width:136.986667pt;}
.w3e{width:137.146667pt;}
.w1c{width:139.866667pt;}
.w32{width:141.786667pt;}
.w15{width:143.866667pt;}
.w59{width:156.026667pt;}
.w51{width:159.386667pt;}
.w3d{width:184.826667pt;}
.w8{width:192.226667pt;}
.w40{width:197.826667pt;}
.w47{width:205.666667pt;}
.wc{width:207.266667pt;}
.w13{width:217.666667pt;}
.w12{width:224.986667pt;}
.w11{width:233.346667pt;}
.w26{width:235.586667pt;}
.w4e{width:235.866667pt;}
.w4f{width:246.946667pt;}
.w1e{width:255.866667pt;}
.w1f{width:257.186667pt;}
.w4d{width:259.906667pt;}
.w36{width:271.266667pt;}
.w6{width:295.866667pt;}
.w28{width:301.306667pt;}
.w29{width:301.466667pt;}
.w5{width:308.866667pt;}
.w3f{width:324.706667pt;}
.w3c{width:326.466667pt;}
.w46{width:357.026667pt;}
.w2a{width:443.266667pt;}
.w14{width:459.133333pt;}
.w58{width:467.773333pt;}
.w50{width:496.413333pt;}
.wf{width:507.773333pt;}
.w34{width:527.133333pt;}
.w3{width:569.533333pt;}
.w27{width:603.453333pt;}
.w57{width:624.453333pt;}
.w2b{width:649.253333pt;}
.w2c{width:651.173333pt;}
.w10{width:677.440000pt;}
.w7{width:700.800000pt;}
.w35{width:709.920000pt;}
.w4c{width:744.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.xf{left:7.680000pt;}
.x7{left:9.280000pt;}
.x42{left:11.520000pt;}
.x40{left:12.800000pt;}
.x56{left:15.072000pt;}
.x44{left:16.480000pt;}
.x49{left:17.440000pt;}
.x3f{left:20.480000pt;}
.x35{left:21.920000pt;}
.x46{left:23.840000pt;}
.x5f{left:24.960000pt;}
.x2b{left:27.200000pt;}
.x58{left:29.000000pt;}
.x5a{left:31.680000pt;}
.x5e{left:33.760000pt;}
.x36{left:36.992000pt;}
.x51{left:40.032000pt;}
.x34{left:45.280000pt;}
.x19{left:46.560000pt;}
.x4b{left:47.520000pt;}
.x48{left:48.960000pt;}
.x5b{left:57.120000pt;}
.x25{left:58.240000pt;}
.x32{left:60.200000pt;}
.x50{left:66.400000pt;}
.x55{left:71.240000pt;}
.x6b{left:72.320000pt;}
.x6a{left:73.280000pt;}
.xe{left:74.559988pt;}
.x30{left:76.360000pt;}
.x69{left:77.280000pt;}
.x33{left:81.626667pt;}
.x68{left:85.280000pt;}
.x15{left:88.031988pt;}
.x27{left:91.706667pt;}
.x1{left:94.591988pt;}
.x13{left:98.431988pt;}
.x9{left:99.711988pt;}
.x3d{left:102.432000pt;}
.x66{left:106.920000pt;}
.x12{left:118.591988pt;}
.x31{left:121.466667pt;}
.x16{left:122.431988pt;}
.x5{left:128.314667pt;}
.x57{left:132.672000pt;}
.x53{left:136.680000pt;}
.x65{left:140.186667pt;}
.xd{left:141.786655pt;}
.x14{left:145.626655pt;}
.xc{left:148.186655pt;}
.x17{left:153.146655pt;}
.x2a{left:171.066667pt;}
.x61{left:184.986667pt;}
.x3e{left:187.546667pt;}
.x5c{left:188.826667pt;}
.x6d{left:189.786655pt;}
.x2f{left:191.106667pt;}
.x2c{left:202.746667pt;}
.x52{left:204.186667pt;}
.x64{left:209.626667pt;}
.x6c{left:212.986655pt;}
.x2{left:214.746655pt;}
.x23{left:217.946667pt;}
.x24{left:221.946667pt;}
.x1a{left:223.106667pt;}
.xa{left:225.466655pt;}
.x22{left:233.306667pt;}
.x21{left:237.946667pt;}
.x1b{left:239.586667pt;}
.x26{left:251.426667pt;}
.x37{left:258.306667pt;}
.x11{left:269.960000pt;}
.x41{left:272.546667pt;}
.xb{left:285.986655pt;}
.x28{left:292.386667pt;}
.x4c{left:319.426667pt;}
.x43{left:329.186667pt;}
.x1c{left:343.426667pt;}
.x39{left:347.266667pt;}
.x4d{left:374.626667pt;}
.x18{left:385.346655pt;}
.x4{left:397.693322pt;}
.x10{left:403.453333pt;}
.x45{left:414.333333pt;}
.x2d{left:418.653333pt;}
.x62{left:423.133333pt;}
.x1d{left:438.013333pt;}
.x3a{left:439.293333pt;}
.x4e{left:469.373333pt;}
.x8{left:474.973322pt;}
.x47{left:508.413333pt;}
.x38{left:514.813333pt;}
.x29{left:518.013333pt;}
.x60{left:522.013333pt;}
.x54{left:529.693333pt;}
.x1e{left:540.093333pt;}
.x5d{left:546.493333pt;}
.x67{left:563.653333pt;}
.x4f{left:598.693333pt;}
.x3b{left:602.533333pt;}
.x3{left:619.013322pt;}
.x59{left:624.133333pt;}
.x2e{left:644.453333pt;}
.x63{left:649.733333pt;}
.x4a{left:650.853333pt;}
.x20{left:655.333333pt;}
.x6{left:664.133333pt;}
.x3c{left:698.373333pt;}
}




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