
    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_fa7786e06c1f994523714919.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.988281;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_7c9b246d101a819b40f89c89.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.027832;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_3f17806d6b468b9402ce2a0d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.956543;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_db899c5f2ef9650f2d72ccad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a8b5e176f80c87f1e05e237d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_ac31b163fb3146364ca23a45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cfb2a54076a13ba2b8d38233.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_844afcd197ba405f6ae4b4c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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_1fd2c9cf8e3fbb94fd5fed8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_78e1f42619e810d3f8e7bf9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_59780edbdd8d8c826807ee4c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0bc66e0e9327fe7182cf11bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_1d06d8e6ebfaca10c7d7c026.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.768555;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:fff;src:url('chunks/assets/font_ffb518ce3a05dc86f3f3a510.woff2')format("woff");}.fff{font-family:fff;line-height:0.769531;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:ff10;src:url('chunks/assets/font_30d01897a1feb7f809f27277.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.960449;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:27.360000px;}
.ls6{letter-spacing:-5.040000px;}
.ls5{letter-spacing:-4.320000px;}
.ls7{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls27{letter-spacing:0.109200px;}
.lsc{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.206400px;}
.ls11{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.259920px;}
.ls25{letter-spacing:0.262080px;}
.ls16{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.402000px;}
.lsb{letter-spacing:0.432000px;}
.ls17{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls10{letter-spacing:2.160000px;}
.ls1f{letter-spacing:2.880000px;}
.ls24{letter-spacing:3.600000px;}
.ls22{letter-spacing:6.480000px;}
.ls1d{letter-spacing:10.620000px;}
.ls20{letter-spacing:11.520000px;}
.ls19{letter-spacing:15.120000px;}
.lse{letter-spacing:18.720000px;}
.ls23{letter-spacing:26.640000px;}
.ls2{letter-spacing:33.984000px;}
.ls21{letter-spacing:37.440000px;}
.ls1b{letter-spacing:71.226720px;}
.ls4{letter-spacing:87.240000px;}
.ls3{letter-spacing:87.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.736480px;}
.ws2{word-spacing:-23.334480px;}
.ws14{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.504000px;}
.ws0{word-spacing:-18.348480px;}
.wse{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.064000px;}
.ws1a{word-spacing:-16.865400px;}
.ws18{word-spacing:-16.712400px;}
.ws1b{word-spacing:-16.669200px;}
.ws19{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.254600px;}
.ws11{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.146400px;}
.ws13{word-spacing:-14.993280px;}
.ws10{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.402160px;}
.wsd{word-spacing:-12.212400px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-5.225321px;}
._3{margin-left:-4.134679px;}
._4{margin-left:-3.012000px;}
._1{margin-left:-1.011048px;}
._0{width:1.058280px;}
._c{width:2.520000px;}
._17{width:3.816000px;}
._8{width:4.968000px;}
._e{width:6.456000px;}
._f{width:7.656000px;}
._10{width:8.856000px;}
._11{width:9.948000px;}
._13{width:11.616000px;}
._16{width:12.636000px;}
._18{width:13.812768px;}
._d{width:15.192000px;}
._9{width:16.920000px;}
._6{width:19.368000px;}
._7{width:20.911439px;}
._1a{width:22.752000px;}
._a{width:23.832000px;}
._b{width:25.284000px;}
._12{width:26.472000px;}
._19{width:27.552000px;}
._14{width:28.800000px;}
._15{width:30.345720px;}
._1d{width:31.622280px;}
._22{width:33.768000px;}
._23{width:34.776000px;}
._2e{width:35.856000px;}
._2c{width:37.080000px;}
._2d{width:38.268000px;}
._2b{width:39.387048px;}
._26{width:41.040000px;}
._27{width:42.048000px;}
._30{width:43.056000px;}
._1f{width:46.548000px;}
._1e{width:47.736000px;}
._29{width:49.032000px;}
._2a{width:50.073720px;}
._2f{width:68.832000px;}
._28{width:115.416000px;}
._24{width:143.640000px;}
._25{width:144.648000px;}
._20{width:175.176000px;}
._21{width:176.412000px;}
._5{width:846.156000px;}
._1b{width:901.740000px;}
._1c{width:1099.740000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc1{color:rgb(0,89,150);}
.fc3{color:rgb(46,46,46);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs3{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:3.600000px;}
.yc5{bottom:3.630000px;}
.ye4{bottom:3.780000px;}
.y1c0{bottom:3.810000px;}
.yb6{bottom:5.760000px;}
.yb2{bottom:5.940000px;}
.yb8{bottom:6.300000px;}
.ycc{bottom:6.660000px;}
.yd1{bottom:6.840000px;}
.ycb{bottom:7.560000px;}
.yce{bottom:7.740000px;}
.yba{bottom:7.920000px;}
.yc9{bottom:8.460000px;}
.ybf{bottom:8.820000px;}
.yf0{bottom:10.080000px;}
.y119{bottom:10.260000px;}
.y116{bottom:10.980000px;}
.y11d{bottom:11.205000px;}
.yc0{bottom:11.880000px;}
.y1bc{bottom:13.140000px;}
.y1d2{bottom:13.320000px;}
.y194{bottom:15.660000px;}
.ye9{bottom:17.820000px;}
.y1c3{bottom:22.500000px;}
.y1b9{bottom:22.680000px;}
.y1be{bottom:22.710000px;}
.y113{bottom:24.120000px;}
.y11e{bottom:25.245000px;}
.y195{bottom:25.560000px;}
.ye7{bottom:25.740000px;}
.yb4{bottom:26.280000px;}
.y1c2{bottom:32.040000px;}
.yd{bottom:32.580000px;}
.y1{bottom:32.940000px;}
.y29{bottom:33.660000px;}
.ye6{bottom:39.780000px;}
.y1ba{bottom:41.580000px;}
.y1bf{bottom:41.610000px;}
.y1ca{bottom:41.625000px;}
.y61{bottom:111.780000px;}
.y1c1{bottom:113.040000px;}
.y4b{bottom:115.020000px;}
.y17e{bottom:116.100000px;}
.y12d{bottom:118.980000px;}
.y9f{bottom:120.060000px;}
.y155{bottom:120.600000px;}
.ye1{bottom:121.860000px;}
.y78{bottom:122.040000px;}
.y1a8{bottom:124.740000px;}
.y111{bottom:128.340000px;}
.yf6{bottom:128.700000px;}
.yc3{bottom:137.700000px;}
.y17d{bottom:139.860000px;}
.y60{bottom:142.740000px;}
.y154{bottom:144.360000px;}
.y1a7{bottom:144.540000px;}
.y4a{bottom:146.160000px;}
.y12c{bottom:149.940000px;}
.y9e{bottom:151.200000px;}
.ye0{bottom:153.000000px;}
.y77{bottom:153.180000px;}
.y110{bottom:159.300000px;}
.yf5{bottom:159.660000px;}
.y17c{bottom:163.620000px;}
.y1a6{bottom:164.340000px;}
.y153{bottom:168.300000px;}
.yc2{bottom:168.840000px;}
.y87{bottom:172.260000px;}
.y5f{bottom:173.880000px;}
.y49{bottom:177.120000px;}
.ydf{bottom:180.000000px;}
.y12b{bottom:181.080000px;}
.y9d{bottom:182.160000px;}
.y76{bottom:184.170000px;}
.y17b{bottom:187.590000px;}
.y10f{bottom:190.470000px;}
.yf4{bottom:190.830000px;}
.y152{bottom:192.090000px;}
.yc1{bottom:199.830000px;}
.y86{bottom:203.250000px;}
.y1a5{bottom:203.970000px;}
.y5e{bottom:204.870000px;}
.y48{bottom:208.290000px;}
.y17a{bottom:211.350000px;}
.y12a{bottom:212.070000px;}
.y9c{bottom:213.330000px;}
.y75{bottom:215.310000px;}
.y151{bottom:215.850000px;}
.ybe{bottom:217.290000px;}
.y10e{bottom:221.430000px;}
.y1a4{bottom:223.950000px;}
.y80{bottom:227.190000px;}
.yf3{bottom:228.090000px;}
.y179{bottom:235.110000px;}
.y5d{bottom:236.010000px;}
.y47{bottom:239.250000px;}
.y150{bottom:239.610000px;}
.ybd{bottom:243.210000px;}
.y1a3{bottom:243.750000px;}
.y9b{bottom:244.290000px;}
.y74{bottom:246.270000px;}
.yf2{bottom:247.890000px;}
.y1bd{bottom:249.330000px;}
.y10d{bottom:252.570000px;}
.yb{bottom:253.290000px;}
.y7f{bottom:258.330000px;}
.y178{bottom:258.870000px;}
.ybc{bottom:263.010000px;}
.y14f{bottom:263.550000px;}
.y5c{bottom:266.970000px;}
.yf1{bottom:267.690000px;}
.y46{bottom:270.390000px;}
.y129{bottom:274.170000px;}
.y9a{bottom:275.430000px;}
.y73{bottom:277.410000px;}
.y1bb{bottom:279.570000px;}
.ya{bottom:281.010000px;}
.y177{bottom:282.810000px;}
.y10c{bottom:283.530000px;}
.ybb{bottom:283.710000px;}
.y1a2{bottom:284.070000px;}
.y14e{bottom:287.310000px;}
.yef{bottom:287.490000px;}
.y7e{bottom:289.290000px;}
.y5b{bottom:298.110000px;}
.y45{bottom:301.350000px;}
.y28{bottom:303.150000px;}
.yb9{bottom:303.510000px;}
.y128{bottom:305.310000px;}
.y9{bottom:306.210000px;}
.y99{bottom:306.390000px;}
.y176{bottom:306.570000px;}
.yee{bottom:307.470000px;}
.y72{bottom:308.370000px;}
.y14d{bottom:311.070000px;}
.y10b{bottom:314.670000px;}
.y1a1{bottom:318.990000px;}
.y7d{bottom:320.430000px;}
.yed{bottom:327.270000px;}
.yb7{bottom:327.450000px;}
.y1b8{bottom:328.710000px;}
.y5a{bottom:329.070000px;}
.y175{bottom:330.330000px;}
.y44{bottom:332.490000px;}
.y8{bottom:333.930000px;}
.y14c{bottom:334.830000px;}
.y127{bottom:336.270000px;}
.y98{bottom:337.530000px;}
.y71{bottom:339.510000px;}
.y10a{bottom:345.630000px;}
.y27{bottom:346.170000px;}
.yec{bottom:347.070000px;}
.yb3{bottom:349.050000px;}
.y1a0{bottom:350.130000px;}
.y7c{bottom:351.390000px;}
.y174{bottom:354.090000px;}
.y14b{bottom:358.770000px;}
.y7{bottom:359.130000px;}
.y59{bottom:360.210000px;}
.y126{bottom:363.270000px;}
.y43{bottom:363.450000px;}
.yeb{bottom:366.870000px;}
.y97{bottom:368.490000px;}
.yb5{bottom:369.570000px;}
.y70{bottom:370.470000px;}
.y109{bottom:376.770000px;}
.y26{bottom:377.310000px;}
.y173{bottom:378.030000px;}
.y19f{bottom:381.090000px;}
.y7b{bottom:382.530000px;}
.y6{bottom:386.850000px;}
.yb1{bottom:389.370000px;}
.y58{bottom:391.170000px;}
.y108{bottom:394.230000px;}
.y42{bottom:394.590000px;}
.y1b7{bottom:396.930000px;}
.yea{bottom:398.730000px;}
.y96{bottom:399.630000px;}
.y6f{bottom:401.610000px;}
.y172{bottom:401.790000px;}
.y14a{bottom:406.290000px;}
.y25{bottom:408.270000px;}
.y19e{bottom:412.230000px;}
.y7a{bottom:413.490000px;}
.y107{bottom:414.030000px;}
.y57{bottom:422.310000px;}
.yb0{bottom:424.290000px;}
.y41{bottom:425.595000px;}
.y1b6{bottom:427.215000px;}
.y149{bottom:430.095000px;}
.y95{bottom:430.635000px;}
.y6e{bottom:432.615000px;}
.y106{bottom:433.875000px;}
.ye3{bottom:434.775000px;}
.ye2{bottom:436.395000px;}
.y24{bottom:439.455000px;}
.y19d{bottom:443.235000px;}
.y79{bottom:444.675000px;}
.y171{bottom:449.355000px;}
.y56{bottom:453.315000px;}
.y105{bottom:453.855000px;}
.y148{bottom:454.035000px;}
.yaf{bottom:455.475000px;}
.y40{bottom:456.555000px;}
.y1b5{bottom:457.455000px;}
.y94{bottom:461.775000px;}
.ye8{bottom:462.495000px;}
.yde{bottom:468.975000px;}
.y23{bottom:470.415000px;}
.y170{bottom:473.115000px;}
.y104{bottom:473.655000px;}
.y19c{bottom:474.375000px;}
.y6d{bottom:475.635000px;}
.y147{bottom:477.795000px;}
.ye5{bottom:483.015000px;}
.y55{bottom:484.455000px;}
.yae{bottom:486.435000px;}
.y1d3{bottom:486.615000px;}
.y3f{bottom:487.695000px;}
.y93{bottom:492.735000px;}
.y103{bottom:493.455000px;}
.y16f{bottom:497.055000px;}
.ydd{bottom:499.935000px;}
.y22{bottom:501.555000px;}
.y19b{bottom:505.335000px;}
.y6c{bottom:506.775000px;}
.y1d1{bottom:509.655000px;}
.y102{bottom:513.255000px;}
.y54{bottom:515.415000px;}
.yad{bottom:517.575000px;}
.y3e{bottom:518.655000px;}
.y16e{bottom:520.815000px;}
.y92{bottom:523.875000px;}
.y146{bottom:525.315000px;}
.ydc{bottom:531.075000px;}
.y21{bottom:532.515000px;}
.y101{bottom:533.055000px;}
.y19a{bottom:536.475000px;}
.y6b{bottom:537.735000px;}
.y16d{bottom:544.575000px;}
.y53{bottom:546.555000px;}
.yac{bottom:548.535000px;}
.y145{bottom:549.255000px;}
.y3d{bottom:549.795000px;}
.y100{bottom:553.035000px;}
.y199{bottom:553.935000px;}
.y91{bottom:554.835000px;}
.y1b4{bottom:558.255000px;}
.y1d0{bottom:558.975000px;}
.ydb{bottom:562.035000px;}
.y20{bottom:563.655000px;}
.y16c{bottom:568.335000px;}
.y6a{bottom:568.875000px;}
.yff{bottom:572.835000px;}
.y144{bottom:573.015000px;}
.y198{bottom:573.735000px;}
.y52{bottom:577.515000px;}
.yab{bottom:579.675000px;}
.y3c{bottom:580.755000px;}
.y1cf{bottom:589.215000px;}
.y1b3{bottom:589.395000px;}
.y16b{bottom:592.275000px;}
.yfe{bottom:592.635000px;}
.yda{bottom:593.175000px;}
.y197{bottom:593.535000px;}
.y1f{bottom:594.615000px;}
.y143{bottom:596.775000px;}
.y90{bottom:597.855000px;}
.y69{bottom:599.835000px;}
.y51{bottom:608.655000px;}
.yaa{bottom:610.635000px;}
.y3b{bottom:611.895000px;}
.yfd{bottom:612.435000px;}
.y196{bottom:613.335000px;}
.y16a{bottom:616.035000px;}
.y1b2{bottom:616.395000px;}
.y142{bottom:620.535000px;}
.y1e{bottom:625.755000px;}
.y8f{bottom:628.995000px;}
.y68{bottom:630.975000px;}
.yfc{bottom:632.235000px;}
.yd9{bottom:632.415000px;}
.y193{bottom:633.315000px;}
.y1ce{bottom:638.355000px;}
.y50{bottom:639.615000px;}
.y169{bottom:639.795000px;}
.ya9{bottom:641.775000px;}
.y3a{bottom:642.855000px;}
.y141{bottom:644.295000px;}
.yfb{bottom:652.215000px;}
.yd8{bottom:654.015000px;}
.y1d{bottom:656.715000px;}
.y8e{bottom:659.955000px;}
.y67{bottom:661.935000px;}
.y168{bottom:663.555000px;}
.y140{bottom:668.265000px;}
.y4f{bottom:670.785000px;}
.yfa{bottom:672.045000px;}
.ya8{bottom:672.765000px;}
.y192{bottom:672.945000px;}
.y39{bottom:674.025000px;}
.yd7{bottom:675.825000px;}
.y125{bottom:684.465000px;}
.y167{bottom:687.525000px;}
.y1c{bottom:687.885000px;}
.y8d{bottom:691.125000px;}
.yf9{bottom:691.845000px;}
.y13f{bottom:692.025000px;}
.y191{bottom:692.745000px;}
.y66{bottom:693.105000px;}
.yd6{bottom:697.605000px;}
.y4e{bottom:701.745000px;}
.ya7{bottom:703.905000px;}
.y5{bottom:704.445000px;}
.y38{bottom:704.985000px;}
.y166{bottom:711.285000px;}
.yf8{bottom:711.645000px;}
.y190{bottom:712.545000px;}
.y124{bottom:715.605000px;}
.y13e{bottom:715.785000px;}
.y1b{bottom:718.845000px;}
.yd5{bottom:719.385000px;}
.y8c{bottom:722.085000px;}
.y65{bottom:724.065000px;}
.yf7{bottom:732.165000px;}
.y18f{bottom:732.525000px;}
.y4d{bottom:732.885000px;}
.y165{bottom:735.045000px;}
.y37{bottom:736.125000px;}
.y1cd{bottom:736.845000px;}
.y13d{bottom:739.545000px;}
.y4{bottom:741.165000px;}
.y123{bottom:746.565000px;}
.ya6{bottom:746.925000px;}
.y1a{bottom:749.985000px;}
.y18e{bottom:752.325000px;}
.y8b{bottom:753.225000px;}
.y64{bottom:755.205000px;}
.y164{bottom:758.805000px;}
.yd4{bottom:762.945000px;}
.y13c{bottom:763.485000px;}
.y4c{bottom:763.845000px;}
.y36{bottom:767.085000px;}
.y18d{bottom:772.125000px;}
.y122{bottom:777.705000px;}
.ya5{bottom:777.885000px;}
.y19{bottom:780.945000px;}
.y163{bottom:782.745000px;}
.y8a{bottom:784.185000px;}
.yd3{bottom:784.545000px;}
.y1cc{bottom:785.985000px;}
.y63{bottom:786.165000px;}
.y13b{bottom:787.245000px;}
.y18c{bottom:791.925000px;}
.y35{bottom:798.225000px;}
.yd2{bottom:806.325000px;}
.y162{bottom:806.505000px;}
.y121{bottom:808.665000px;}
.ya4{bottom:809.025000px;}
.y13a{bottom:811.005000px;}
.y18b{bottom:811.725000px;}
.y18{bottom:811.905000px;}
.y89{bottom:815.325000px;}
.y62{bottom:817.305000px;}
.yd0{bottom:828.105000px;}
.y34{bottom:829.185000px;}
.y161{bottom:830.265000px;}
.y18a{bottom:831.705000px;}
.y139{bottom:834.765000px;}
.y1cb{bottom:835.125000px;}
.ya3{bottom:839.985000px;}
.y88{bottom:842.325000px;}
.y17{bottom:843.045000px;}
.y85{bottom:848.265000px;}
.ycf{bottom:849.885000px;}
.y189{bottom:851.505000px;}
.y120{bottom:851.685000px;}
.y160{bottom:854.025000px;}
.y138{bottom:858.705000px;}
.y33{bottom:860.325000px;}
.ya2{bottom:871.125000px;}
.y188{bottom:871.305000px;}
.ycd{bottom:871.665000px;}
.y16{bottom:874.005000px;}
.y15f{bottom:877.965000px;}
.y84{bottom:879.405000px;}
.y137{bottom:882.465000px;}
.y11f{bottom:882.825000px;}
.y1c9{bottom:884.445000px;}
.y187{bottom:891.105000px;}
.y32{bottom:891.285000px;}
.yca{bottom:893.445000px;}
.y11c{bottom:900.285000px;}
.y15e{bottom:901.725000px;}
.ya1{bottom:902.085000px;}
.y15{bottom:905.145000px;}
.y136{bottom:906.225000px;}
.y83{bottom:910.410000px;}
.y186{bottom:910.950000px;}
.yc8{bottom:915.990000px;}
.y31{bottom:922.470000px;}
.y11b{bottom:925.530000px;}
.ya0{bottom:929.130000px;}
.y135{bottom:930.030000px;}
.y185{bottom:930.930000px;}
.y14{bottom:936.150000px;}
.y82{bottom:941.550000px;}
.y11a{bottom:945.330000px;}
.y15d{bottom:949.290000px;}
.y184{bottom:950.730000px;}
.y1c8{bottom:952.530000px;}
.y30{bottom:953.430000px;}
.y134{bottom:953.970000px;}
.y1b1{bottom:961.530000px;}
.y13{bottom:967.290000px;}
.y118{bottom:970.350000px;}
.y183{bottom:970.530000px;}
.y81{bottom:972.510000px;}
.y15c{bottom:973.050000px;}
.y133{bottom:977.730000px;}
.y1c7{bottom:982.770000px;}
.y2f{bottom:984.570000px;}
.y182{bottom:990.330000px;}
.y1b0{bottom:992.490000px;}
.y117{bottom:994.650000px;}
.y15b{bottom:996.990000px;}
.y12{bottom:998.250000px;}
.y132{bottom:1001.490000px;}
.y181{bottom:1010.130000px;}
.y2e{bottom:1015.530000px;}
.y115{bottom:1018.770000px;}
.y15a{bottom:1020.750000px;}
.y1af{bottom:1023.630000px;}
.y131{bottom:1025.250000px;}
.y11{bottom:1029.390000px;}
.y180{bottom:1030.830000px;}
.y1c6{bottom:1032.090000px;}
.y3{bottom:1032.450000px;}
.y1ae{bottom:1043.610000px;}
.y159{bottom:1044.510000px;}
.y114{bottom:1044.690000px;}
.y2d{bottom:1046.670000px;}
.y130{bottom:1049.190000px;}
.y2{bottom:1053.690000px;}
.y10{bottom:1060.350000px;}
.y1ad{bottom:1060.890000px;}
.y17f{bottom:1065.750000px;}
.y158{bottom:1068.270000px;}
.y112{bottom:1069.530000px;}
.y12f{bottom:1072.950000px;}
.y1ac{bottom:1075.650000px;}
.y2c{bottom:1077.630000px;}
.y1c5{bottom:1081.230000px;}
.yf{bottom:1091.490000px;}
.y157{bottom:1092.210000px;}
.y1ab{bottom:1095.450000px;}
.y12e{bottom:1096.710000px;}
.y2b{bottom:1108.770000px;}
.y1aa{bottom:1115.250000px;}
.y156{bottom:1115.970000px;}
.y1c4{bottom:1131.090000px;}
.y1a9{bottom:1135.950000px;}
.ye{bottom:1136.850000px;}
.y2a{bottom:1139.730000px;}
.yc4{bottom:1148.910000px;}
.yc6{bottom:1149.840000px;}
.yc{bottom:1199.340000px;}
.h1a{height:18.900000px;}
.h18{height:18.936000px;}
.h20{height:19.080000px;}
.h32{height:19.116000px;}
.h12{height:19.800000px;}
.h26{height:19.836000px;}
.he{height:19.980000px;}
.h16{height:20.700000px;}
.h14{height:20.880000px;}
.h1e{height:21.600000px;}
.h1c{height:21.636000px;}
.h1d{height:21.780000px;}
.h1f{height:21.816000px;}
.h1b{height:22.500000px;}
.h15{height:23.940000px;}
.h27{height:24.120000px;}
.h2a{height:24.300000px;}
.h29{height:25.020000px;}
.h2b{height:25.236000px;}
.h17{height:25.920000px;}
.h22{height:31.860000px;}
.h24{height:31.896000px;}
.h33{height:37.800000px;}
.h30{height:37.980000px;}
.h34{height:38.016000px;}
.h2c{height:39.636000px;}
.h21{height:39.780000px;}
.h11{height:40.320000px;}
.h7{height:41.535703px;}
.h28{height:45.432773px;}
.h2{height:46.629141px;}
.h2d{height:47.891250px;}
.h4{height:51.685312px;}
.h2f{height:56.880000px;}
.h31{height:56.916000px;}
.h10{height:58.621992px;}
.h13{height:58.651172px;}
.hf{height:60.226875px;}
.h23{height:61.423863px;}
.hd{height:64.546875px;}
.h2e{height:65.010937px;}
.h3{height:65.730234px;}
.h19{height:66.757500px;}
.h6{height:70.664062px;}
.h9{height:72.562500px;}
.ha{height:74.004654px;}
.hc{height:74.953125px;}
.hb{height:82.676953px;}
.h8{height:84.898125px;}
.h25{height:93.983203px;}
.h5{height:98.575664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:36.360000px;}
.w15{width:36.396000px;}
.w1b{width:36.576000px;}
.we{width:42.480000px;}
.w2e{width:42.516000px;}
.w2c{width:43.020000px;}
.w32{width:44.100000px;}
.w30{width:44.460000px;}
.wb{width:46.656000px;}
.wc{width:53.100000px;}
.w10{width:53.280000px;}
.w13{width:59.400000px;}
.wa{width:59.760000px;}
.wf{width:63.720000px;}
.wd{width:63.936000px;}
.w11{width:74.376000px;}
.w33{width:86.796000px;}
.w2b{width:87.156000px;}
.w31{width:89.676000px;}
.w2d{width:91.440000px;}
.w1a{width:95.256000px;}
.w17{width:95.616000px;}
.w18{width:95.760000px;}
.w2f{width:98.100000px;}
.w9{width:106.200000px;}
.w23{width:106.236000px;}
.w6{width:106.380000px;}
.w8{width:106.416000px;}
.w26{width:113.940000px;}
.w12{width:114.120000px;}
.w22{width:114.300000px;}
.w3{width:114.480000px;}
.w19{width:116.640000px;}
.w16{width:117.000000px;}
.w5{width:117.036000px;}
.w37{width:117.576000px;}
.w1e{width:123.696000px;}
.w3a{width:124.200000px;}
.w36{width:124.560000px;}
.w34{width:127.620000px;}
.w7{width:127.656000px;}
.w25{width:129.996000px;}
.w27{width:130.176000px;}
.w21{width:130.356000px;}
.w2a{width:133.776000px;}
.w28{width:133.956000px;}
.w20{width:141.660000px;}
.w1d{width:142.200000px;}
.w29{width:142.560000px;}
.w39{width:148.896000px;}
.w3e{width:149.040000px;}
.w1f{width:159.150000px;}
.w1c{width:159.510000px;}
.w3d{width:172.650000px;}
.w3c{width:191.370000px;}
.w4{width:212.610000px;}
.w38{width:215.130000px;}
.w3b{width:364.035000px;}
.w35{width:467.715000px;}
.w3f{width:489.705000px;}
.w24{width:563.685000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:5.760000px;}
.x18{left:8.100000px;}
.x30{left:10.125000px;}
.x1d{left:12.240000px;}
.x31{left:13.320000px;}
.x2b{left:14.940000px;}
.x26{left:16.965000px;}
.x1f{left:19.125000px;}
.x29{left:20.340000px;}
.x55{left:21.420000px;}
.x27{left:22.680000px;}
.x32{left:24.300000px;}
.x24{left:26.100000px;}
.x38{left:27.180000px;}
.x20{left:28.980000px;}
.x39{left:30.420000px;}
.x1c{left:31.860000px;}
.x2e{left:33.345000px;}
.x3a{left:34.740000px;}
.x4a{left:36.180000px;}
.x54{left:38.160000px;}
.x22{left:39.780000px;}
.x43{left:41.580000px;}
.x42{left:46.080000px;}
.x44{left:49.860000px;}
.xc{left:53.279987px;}
.x4c{left:57.234000px;}
.x1a{left:58.680000px;}
.x23{left:63.765000px;}
.x45{left:70.560000px;}
.x3e{left:79.740000px;}
.xf{left:106.415987px;}
.x17{left:107.496000px;}
.x13{left:115.775987px;}
.x4b{left:119.016000px;}
.x12{left:121.715987px;}
.x11{left:127.835987px;}
.x10{left:138.275987px;}
.x59{left:143.496000px;}
.x4{left:147.276000px;}
.x57{left:159.509987px;}
.x46{left:164.730000px;}
.x3d{left:175.350000px;}
.x33{left:192.630000px;}
.x5{left:208.650000px;}
.x19{left:221.970000px;}
.x4d{left:233.490000px;}
.x5a{left:268.050000px;}
.x5f{left:276.150000px;}
.x25{left:281.730000px;}
.x35{left:292.395000px;}
.x47{left:295.095000px;}
.x50{left:320.655000px;}
.x21{left:328.395000px;}
.x3f{left:334.875000px;}
.x2{left:338.475000px;}
.x58{left:351.075000px;}
.x1{left:358.455000px;}
.x4e{left:363.675000px;}
.x3{left:373.575000px;}
.x28{left:381.495000px;}
.x5b{left:385.635000px;}
.x36{left:409.395000px;}
.xe{left:418.574987px;}
.x1b{left:434.595000px;}
.x3c{left:445.215000px;}
.xd{left:450.614987px;}
.x3b{left:451.874987px;}
.x51{left:455.115000px;}
.x16{left:463.214987px;}
.x40{left:477.075000px;}
.x2a{left:498.525000px;}
.x37{left:505.005000px;}
.xb{left:513.285000px;}
.x48{left:515.625000px;}
.x2c{left:541.005000px;}
.x9{left:551.265000px;}
.x5c{left:577.005000px;}
.x7{left:589.785000px;}
.x52{left:595.725000px;}
.x56{left:598.604987px;}
.x41{left:600.765000px;}
.x2d{left:604.725000px;}
.x49{left:622.005000px;}
.x4f{left:640.185000px;}
.x5d{left:655.844987px;}
.x1e{left:658.005000px;}
.x15{left:682.889987px;}
.xa{left:699.270000px;}
.x8{left:722.490000px;}
.x53{left:729.870000px;}
.x2f{left:732.390000px;}
.x6{left:742.290000px;}
.x34{left:768.749987px;}
.x14{left:777.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-4.480000pt;}
.ls5{letter-spacing:-3.840000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls27{letter-spacing:0.097067pt;}
.lsc{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.183467pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls25{letter-spacing:0.232960pt;}
.ls16{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.357333pt;}
.lsb{letter-spacing:0.384000pt;}
.ls17{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.920000pt;}
.ls1f{letter-spacing:2.560000pt;}
.ls24{letter-spacing:3.200000pt;}
.ls22{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:9.440000pt;}
.ls20{letter-spacing:10.240000pt;}
.ls19{letter-spacing:13.440000pt;}
.lse{letter-spacing:16.640000pt;}
.ls23{letter-spacing:23.680000pt;}
.ls2{letter-spacing:30.208000pt;}
.ls21{letter-spacing:33.280000pt;}
.ls1b{letter-spacing:63.312640pt;}
.ls4{letter-spacing:77.546667pt;}
.ls3{letter-spacing:78.186667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.099093pt;}
.ws2{word-spacing:-20.741760pt;}
.ws14{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.309760pt;}
.wse{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws1a{word-spacing:-14.991467pt;}
.ws18{word-spacing:-14.855467pt;}
.ws1b{word-spacing:-14.817067pt;}
.ws19{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.448533pt;}
.ws11{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.327360pt;}
.ws10{word-spacing:-13.280000pt;}
.ws16{word-spacing:-12.801920pt;}
.wsd{word-spacing:-10.855467pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-4.644730pt;}
._3{margin-left:-3.675270pt;}
._4{margin-left:-2.677333pt;}
._1{margin-left:-0.898710pt;}
._0{width:0.940694pt;}
._c{width:2.240000pt;}
._17{width:3.392000pt;}
._8{width:4.416000pt;}
._e{width:5.738667pt;}
._f{width:6.805333pt;}
._10{width:7.872000pt;}
._11{width:8.842667pt;}
._13{width:10.325333pt;}
._16{width:11.232000pt;}
._18{width:12.278016pt;}
._d{width:13.504000pt;}
._9{width:15.040000pt;}
._6{width:17.216000pt;}
._7{width:18.587946pt;}
._1a{width:20.224000pt;}
._a{width:21.184000pt;}
._b{width:22.474667pt;}
._12{width:23.530667pt;}
._19{width:24.490667pt;}
._14{width:25.600000pt;}
._15{width:26.973973pt;}
._1d{width:28.108694pt;}
._22{width:30.016000pt;}
._23{width:30.912000pt;}
._2e{width:31.872000pt;}
._2c{width:32.960000pt;}
._2d{width:34.016000pt;}
._2b{width:35.010710pt;}
._26{width:36.480000pt;}
._27{width:37.376000pt;}
._30{width:38.272000pt;}
._1f{width:41.376000pt;}
._1e{width:42.432000pt;}
._29{width:43.584000pt;}
._2a{width:44.509973pt;}
._2f{width:61.184000pt;}
._28{width:102.592000pt;}
._24{width:127.680000pt;}
._25{width:128.576000pt;}
._20{width:155.712000pt;}
._21{width:156.810667pt;}
._5{width:752.138667pt;}
._1b{width:801.546667pt;}
._1c{width:977.546667pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs3{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:3.200000pt;}
.yc5{bottom:3.226667pt;}
.ye4{bottom:3.360000pt;}
.y1c0{bottom:3.386667pt;}
.yb6{bottom:5.120000pt;}
.yb2{bottom:5.280000pt;}
.yb8{bottom:5.600000pt;}
.ycc{bottom:5.920000pt;}
.yd1{bottom:6.080000pt;}
.ycb{bottom:6.720000pt;}
.yce{bottom:6.880000pt;}
.yba{bottom:7.040000pt;}
.yc9{bottom:7.520000pt;}
.ybf{bottom:7.840000pt;}
.yf0{bottom:8.960000pt;}
.y119{bottom:9.120000pt;}
.y116{bottom:9.760000pt;}
.y11d{bottom:9.960000pt;}
.yc0{bottom:10.560000pt;}
.y1bc{bottom:11.680000pt;}
.y1d2{bottom:11.840000pt;}
.y194{bottom:13.920000pt;}
.ye9{bottom:15.840000pt;}
.y1c3{bottom:20.000000pt;}
.y1b9{bottom:20.160000pt;}
.y1be{bottom:20.186667pt;}
.y113{bottom:21.440000pt;}
.y11e{bottom:22.440000pt;}
.y195{bottom:22.720000pt;}
.ye7{bottom:22.880000pt;}
.yb4{bottom:23.360000pt;}
.y1c2{bottom:28.480000pt;}
.yd{bottom:28.960000pt;}
.y1{bottom:29.280000pt;}
.y29{bottom:29.920000pt;}
.ye6{bottom:35.360000pt;}
.y1ba{bottom:36.960000pt;}
.y1bf{bottom:36.986667pt;}
.y1ca{bottom:37.000000pt;}
.y61{bottom:99.360000pt;}
.y1c1{bottom:100.480000pt;}
.y4b{bottom:102.240000pt;}
.y17e{bottom:103.200000pt;}
.y12d{bottom:105.760000pt;}
.y9f{bottom:106.720000pt;}
.y155{bottom:107.200000pt;}
.ye1{bottom:108.320000pt;}
.y78{bottom:108.480000pt;}
.y1a8{bottom:110.880000pt;}
.y111{bottom:114.080000pt;}
.yf6{bottom:114.400000pt;}
.yc3{bottom:122.400000pt;}
.y17d{bottom:124.320000pt;}
.y60{bottom:126.880000pt;}
.y154{bottom:128.320000pt;}
.y1a7{bottom:128.480000pt;}
.y4a{bottom:129.920000pt;}
.y12c{bottom:133.280000pt;}
.y9e{bottom:134.400000pt;}
.ye0{bottom:136.000000pt;}
.y77{bottom:136.160000pt;}
.y110{bottom:141.600000pt;}
.yf5{bottom:141.920000pt;}
.y17c{bottom:145.440000pt;}
.y1a6{bottom:146.080000pt;}
.y153{bottom:149.600000pt;}
.yc2{bottom:150.080000pt;}
.y87{bottom:153.120000pt;}
.y5f{bottom:154.560000pt;}
.y49{bottom:157.440000pt;}
.ydf{bottom:160.000000pt;}
.y12b{bottom:160.960000pt;}
.y9d{bottom:161.920000pt;}
.y76{bottom:163.706667pt;}
.y17b{bottom:166.746667pt;}
.y10f{bottom:169.306667pt;}
.yf4{bottom:169.626667pt;}
.y152{bottom:170.746667pt;}
.yc1{bottom:177.626667pt;}
.y86{bottom:180.666667pt;}
.y1a5{bottom:181.306667pt;}
.y5e{bottom:182.106667pt;}
.y48{bottom:185.146667pt;}
.y17a{bottom:187.866667pt;}
.y12a{bottom:188.506667pt;}
.y9c{bottom:189.626667pt;}
.y75{bottom:191.386667pt;}
.y151{bottom:191.866667pt;}
.ybe{bottom:193.146667pt;}
.y10e{bottom:196.826667pt;}
.y1a4{bottom:199.066667pt;}
.y80{bottom:201.946667pt;}
.yf3{bottom:202.746667pt;}
.y179{bottom:208.986667pt;}
.y5d{bottom:209.786667pt;}
.y47{bottom:212.666667pt;}
.y150{bottom:212.986667pt;}
.ybd{bottom:216.186667pt;}
.y1a3{bottom:216.666667pt;}
.y9b{bottom:217.146667pt;}
.y74{bottom:218.906667pt;}
.yf2{bottom:220.346667pt;}
.y1bd{bottom:221.626667pt;}
.y10d{bottom:224.506667pt;}
.yb{bottom:225.146667pt;}
.y7f{bottom:229.626667pt;}
.y178{bottom:230.106667pt;}
.ybc{bottom:233.786667pt;}
.y14f{bottom:234.266667pt;}
.y5c{bottom:237.306667pt;}
.yf1{bottom:237.946667pt;}
.y46{bottom:240.346667pt;}
.y129{bottom:243.706667pt;}
.y9a{bottom:244.826667pt;}
.y73{bottom:246.586667pt;}
.y1bb{bottom:248.506667pt;}
.ya{bottom:249.786667pt;}
.y177{bottom:251.386667pt;}
.y10c{bottom:252.026667pt;}
.ybb{bottom:252.186667pt;}
.y1a2{bottom:252.506667pt;}
.y14e{bottom:255.386667pt;}
.yef{bottom:255.546667pt;}
.y7e{bottom:257.146667pt;}
.y5b{bottom:264.986667pt;}
.y45{bottom:267.866667pt;}
.y28{bottom:269.466667pt;}
.yb9{bottom:269.786667pt;}
.y128{bottom:271.386667pt;}
.y9{bottom:272.186667pt;}
.y99{bottom:272.346667pt;}
.y176{bottom:272.506667pt;}
.yee{bottom:273.306667pt;}
.y72{bottom:274.106667pt;}
.y14d{bottom:276.506667pt;}
.y10b{bottom:279.706667pt;}
.y1a1{bottom:283.546667pt;}
.y7d{bottom:284.826667pt;}
.yed{bottom:290.906667pt;}
.yb7{bottom:291.066667pt;}
.y1b8{bottom:292.186667pt;}
.y5a{bottom:292.506667pt;}
.y175{bottom:293.626667pt;}
.y44{bottom:295.546667pt;}
.y8{bottom:296.826667pt;}
.y14c{bottom:297.626667pt;}
.y127{bottom:298.906667pt;}
.y98{bottom:300.026667pt;}
.y71{bottom:301.786667pt;}
.y10a{bottom:307.226667pt;}
.y27{bottom:307.706667pt;}
.yec{bottom:308.506667pt;}
.yb3{bottom:310.266667pt;}
.y1a0{bottom:311.226667pt;}
.y7c{bottom:312.346667pt;}
.y174{bottom:314.746667pt;}
.y14b{bottom:318.906667pt;}
.y7{bottom:319.226667pt;}
.y59{bottom:320.186667pt;}
.y126{bottom:322.906667pt;}
.y43{bottom:323.066667pt;}
.yeb{bottom:326.106667pt;}
.y97{bottom:327.546667pt;}
.yb5{bottom:328.506667pt;}
.y70{bottom:329.306667pt;}
.y109{bottom:334.906667pt;}
.y26{bottom:335.386667pt;}
.y173{bottom:336.026667pt;}
.y19f{bottom:338.746667pt;}
.y7b{bottom:340.026667pt;}
.y6{bottom:343.866667pt;}
.yb1{bottom:346.106667pt;}
.y58{bottom:347.706667pt;}
.y108{bottom:350.426667pt;}
.y42{bottom:350.746667pt;}
.y1b7{bottom:352.826667pt;}
.yea{bottom:354.426667pt;}
.y96{bottom:355.226667pt;}
.y6f{bottom:356.986667pt;}
.y172{bottom:357.146667pt;}
.y14a{bottom:361.146667pt;}
.y25{bottom:362.906667pt;}
.y19e{bottom:366.426667pt;}
.y7a{bottom:367.546667pt;}
.y107{bottom:368.026667pt;}
.y57{bottom:375.386667pt;}
.yb0{bottom:377.146667pt;}
.y41{bottom:378.306667pt;}
.y1b6{bottom:379.746667pt;}
.y149{bottom:382.306667pt;}
.y95{bottom:382.786667pt;}
.y6e{bottom:384.546667pt;}
.y106{bottom:385.666667pt;}
.ye3{bottom:386.466667pt;}
.ye2{bottom:387.906667pt;}
.y24{bottom:390.626667pt;}
.y19d{bottom:393.986667pt;}
.y79{bottom:395.266667pt;}
.y171{bottom:399.426667pt;}
.y56{bottom:402.946667pt;}
.y105{bottom:403.426667pt;}
.y148{bottom:403.586667pt;}
.yaf{bottom:404.866667pt;}
.y40{bottom:405.826667pt;}
.y1b5{bottom:406.626667pt;}
.y94{bottom:410.466667pt;}
.ye8{bottom:411.106667pt;}
.yde{bottom:416.866667pt;}
.y23{bottom:418.146667pt;}
.y170{bottom:420.546667pt;}
.y104{bottom:421.026667pt;}
.y19c{bottom:421.666667pt;}
.y6d{bottom:422.786667pt;}
.y147{bottom:424.706667pt;}
.ye5{bottom:429.346667pt;}
.y55{bottom:430.626667pt;}
.yae{bottom:432.386667pt;}
.y1d3{bottom:432.546667pt;}
.y3f{bottom:433.506667pt;}
.y93{bottom:437.986667pt;}
.y103{bottom:438.626667pt;}
.y16f{bottom:441.826667pt;}
.ydd{bottom:444.386667pt;}
.y22{bottom:445.826667pt;}
.y19b{bottom:449.186667pt;}
.y6c{bottom:450.466667pt;}
.y1d1{bottom:453.026667pt;}
.y102{bottom:456.226667pt;}
.y54{bottom:458.146667pt;}
.yad{bottom:460.066667pt;}
.y3e{bottom:461.026667pt;}
.y16e{bottom:462.946667pt;}
.y92{bottom:465.666667pt;}
.y146{bottom:466.946667pt;}
.ydc{bottom:472.066667pt;}
.y21{bottom:473.346667pt;}
.y101{bottom:473.826667pt;}
.y19a{bottom:476.866667pt;}
.y6b{bottom:477.986667pt;}
.y16d{bottom:484.066667pt;}
.y53{bottom:485.826667pt;}
.yac{bottom:487.586667pt;}
.y145{bottom:488.226667pt;}
.y3d{bottom:488.706667pt;}
.y100{bottom:491.586667pt;}
.y199{bottom:492.386667pt;}
.y91{bottom:493.186667pt;}
.y1b4{bottom:496.226667pt;}
.y1d0{bottom:496.866667pt;}
.ydb{bottom:499.586667pt;}
.y20{bottom:501.026667pt;}
.y16c{bottom:505.186667pt;}
.y6a{bottom:505.666667pt;}
.yff{bottom:509.186667pt;}
.y144{bottom:509.346667pt;}
.y198{bottom:509.986667pt;}
.y52{bottom:513.346667pt;}
.yab{bottom:515.266667pt;}
.y3c{bottom:516.226667pt;}
.y1cf{bottom:523.746667pt;}
.y1b3{bottom:523.906667pt;}
.y16b{bottom:526.466667pt;}
.yfe{bottom:526.786667pt;}
.yda{bottom:527.266667pt;}
.y197{bottom:527.586667pt;}
.y1f{bottom:528.546667pt;}
.y143{bottom:530.466667pt;}
.y90{bottom:531.426667pt;}
.y69{bottom:533.186667pt;}
.y51{bottom:541.026667pt;}
.yaa{bottom:542.786667pt;}
.y3b{bottom:543.906667pt;}
.yfd{bottom:544.386667pt;}
.y196{bottom:545.186667pt;}
.y16a{bottom:547.586667pt;}
.y1b2{bottom:547.906667pt;}
.y142{bottom:551.586667pt;}
.y1e{bottom:556.226667pt;}
.y8f{bottom:559.106667pt;}
.y68{bottom:560.866667pt;}
.yfc{bottom:561.986667pt;}
.yd9{bottom:562.146667pt;}
.y193{bottom:562.946667pt;}
.y1ce{bottom:567.426667pt;}
.y50{bottom:568.546667pt;}
.y169{bottom:568.706667pt;}
.ya9{bottom:570.466667pt;}
.y3a{bottom:571.426667pt;}
.y141{bottom:572.706667pt;}
.yfb{bottom:579.746667pt;}
.yd8{bottom:581.346667pt;}
.y1d{bottom:583.746667pt;}
.y8e{bottom:586.626667pt;}
.y67{bottom:588.386667pt;}
.y168{bottom:589.826667pt;}
.y140{bottom:594.013333pt;}
.y4f{bottom:596.253333pt;}
.yfa{bottom:597.373333pt;}
.ya8{bottom:598.013333pt;}
.y192{bottom:598.173333pt;}
.y39{bottom:599.133333pt;}
.yd7{bottom:600.733333pt;}
.y125{bottom:608.413333pt;}
.y167{bottom:611.133333pt;}
.y1c{bottom:611.453333pt;}
.y8d{bottom:614.333333pt;}
.yf9{bottom:614.973333pt;}
.y13f{bottom:615.133333pt;}
.y191{bottom:615.773333pt;}
.y66{bottom:616.093333pt;}
.yd6{bottom:620.093333pt;}
.y4e{bottom:623.773333pt;}
.ya7{bottom:625.693333pt;}
.y5{bottom:626.173333pt;}
.y38{bottom:626.653333pt;}
.y166{bottom:632.253333pt;}
.yf8{bottom:632.573333pt;}
.y190{bottom:633.373333pt;}
.y124{bottom:636.093333pt;}
.y13e{bottom:636.253333pt;}
.y1b{bottom:638.973333pt;}
.yd5{bottom:639.453333pt;}
.y8c{bottom:641.853333pt;}
.y65{bottom:643.613333pt;}
.yf7{bottom:650.813333pt;}
.y18f{bottom:651.133333pt;}
.y4d{bottom:651.453333pt;}
.y165{bottom:653.373333pt;}
.y37{bottom:654.333333pt;}
.y1cd{bottom:654.973333pt;}
.y13d{bottom:657.373333pt;}
.y4{bottom:658.813333pt;}
.y123{bottom:663.613333pt;}
.ya6{bottom:663.933333pt;}
.y1a{bottom:666.653333pt;}
.y18e{bottom:668.733333pt;}
.y8b{bottom:669.533333pt;}
.y64{bottom:671.293333pt;}
.y164{bottom:674.493333pt;}
.yd4{bottom:678.173333pt;}
.y13c{bottom:678.653333pt;}
.y4c{bottom:678.973333pt;}
.y36{bottom:681.853333pt;}
.y18d{bottom:686.333333pt;}
.y122{bottom:691.293333pt;}
.ya5{bottom:691.453333pt;}
.y19{bottom:694.173333pt;}
.y163{bottom:695.773333pt;}
.y8a{bottom:697.053333pt;}
.yd3{bottom:697.373333pt;}
.y1cc{bottom:698.653333pt;}
.y63{bottom:698.813333pt;}
.y13b{bottom:699.773333pt;}
.y18c{bottom:703.933333pt;}
.y35{bottom:709.533333pt;}
.yd2{bottom:716.733333pt;}
.y162{bottom:716.893333pt;}
.y121{bottom:718.813333pt;}
.ya4{bottom:719.133333pt;}
.y13a{bottom:720.893333pt;}
.y18b{bottom:721.533333pt;}
.y18{bottom:721.693333pt;}
.y89{bottom:724.733333pt;}
.y62{bottom:726.493333pt;}
.yd0{bottom:736.093333pt;}
.y34{bottom:737.053333pt;}
.y161{bottom:738.013333pt;}
.y18a{bottom:739.293333pt;}
.y139{bottom:742.013333pt;}
.y1cb{bottom:742.333333pt;}
.ya3{bottom:746.653333pt;}
.y88{bottom:748.733333pt;}
.y17{bottom:749.373333pt;}
.y85{bottom:754.013333pt;}
.ycf{bottom:755.453333pt;}
.y189{bottom:756.893333pt;}
.y120{bottom:757.053333pt;}
.y160{bottom:759.133333pt;}
.y138{bottom:763.293333pt;}
.y33{bottom:764.733333pt;}
.ya2{bottom:774.333333pt;}
.y188{bottom:774.493333pt;}
.ycd{bottom:774.813333pt;}
.y16{bottom:776.893333pt;}
.y15f{bottom:780.413333pt;}
.y84{bottom:781.693333pt;}
.y137{bottom:784.413333pt;}
.y11f{bottom:784.733333pt;}
.y1c9{bottom:786.173333pt;}
.y187{bottom:792.093333pt;}
.y32{bottom:792.253333pt;}
.yca{bottom:794.173333pt;}
.y11c{bottom:800.253333pt;}
.y15e{bottom:801.533333pt;}
.ya1{bottom:801.853333pt;}
.y15{bottom:804.573333pt;}
.y136{bottom:805.533333pt;}
.y83{bottom:809.253333pt;}
.y186{bottom:809.733333pt;}
.yc8{bottom:814.213333pt;}
.y31{bottom:819.973333pt;}
.y11b{bottom:822.693333pt;}
.ya0{bottom:825.893333pt;}
.y135{bottom:826.693333pt;}
.y185{bottom:827.493333pt;}
.y14{bottom:832.133333pt;}
.y82{bottom:836.933333pt;}
.y11a{bottom:840.293333pt;}
.y15d{bottom:843.813333pt;}
.y184{bottom:845.093333pt;}
.y1c8{bottom:846.693333pt;}
.y30{bottom:847.493333pt;}
.y134{bottom:847.973333pt;}
.y1b1{bottom:854.693333pt;}
.y13{bottom:859.813333pt;}
.y118{bottom:862.533333pt;}
.y183{bottom:862.693333pt;}
.y81{bottom:864.453333pt;}
.y15c{bottom:864.933333pt;}
.y133{bottom:869.093333pt;}
.y1c7{bottom:873.573333pt;}
.y2f{bottom:875.173333pt;}
.y182{bottom:880.293333pt;}
.y1b0{bottom:882.213333pt;}
.y117{bottom:884.133333pt;}
.y15b{bottom:886.213333pt;}
.y12{bottom:887.333333pt;}
.y132{bottom:890.213333pt;}
.y181{bottom:897.893333pt;}
.y2e{bottom:902.693333pt;}
.y115{bottom:905.573333pt;}
.y15a{bottom:907.333333pt;}
.y1af{bottom:909.893333pt;}
.y131{bottom:911.333333pt;}
.y11{bottom:915.013333pt;}
.y180{bottom:916.293333pt;}
.y1c6{bottom:917.413333pt;}
.y3{bottom:917.733333pt;}
.y1ae{bottom:927.653333pt;}
.y159{bottom:928.453333pt;}
.y114{bottom:928.613333pt;}
.y2d{bottom:930.373333pt;}
.y130{bottom:932.613333pt;}
.y2{bottom:936.613333pt;}
.y10{bottom:942.533333pt;}
.y1ad{bottom:943.013333pt;}
.y17f{bottom:947.333333pt;}
.y158{bottom:949.573333pt;}
.y112{bottom:950.693333pt;}
.y12f{bottom:953.733333pt;}
.y1ac{bottom:956.133333pt;}
.y2c{bottom:957.893333pt;}
.y1c5{bottom:961.093333pt;}
.yf{bottom:970.213333pt;}
.y157{bottom:970.853333pt;}
.y1ab{bottom:973.733333pt;}
.y12e{bottom:974.853333pt;}
.y2b{bottom:985.573333pt;}
.y1aa{bottom:991.333333pt;}
.y156{bottom:991.973333pt;}
.y1c4{bottom:1005.413333pt;}
.y1a9{bottom:1009.733333pt;}
.ye{bottom:1010.533333pt;}
.y2a{bottom:1013.093333pt;}
.yc4{bottom:1021.253333pt;}
.yc6{bottom:1022.080000pt;}
.yc{bottom:1066.080000pt;}
.h1a{height:16.800000pt;}
.h18{height:16.832000pt;}
.h20{height:16.960000pt;}
.h32{height:16.992000pt;}
.h12{height:17.600000pt;}
.h26{height:17.632000pt;}
.he{height:17.760000pt;}
.h16{height:18.400000pt;}
.h14{height:18.560000pt;}
.h1e{height:19.200000pt;}
.h1c{height:19.232000pt;}
.h1d{height:19.360000pt;}
.h1f{height:19.392000pt;}
.h1b{height:20.000000pt;}
.h15{height:21.280000pt;}
.h27{height:21.440000pt;}
.h2a{height:21.600000pt;}
.h29{height:22.240000pt;}
.h2b{height:22.432000pt;}
.h17{height:23.040000pt;}
.h22{height:28.320000pt;}
.h24{height:28.352000pt;}
.h33{height:33.600000pt;}
.h30{height:33.760000pt;}
.h34{height:33.792000pt;}
.h2c{height:35.232000pt;}
.h21{height:35.360000pt;}
.h11{height:35.840000pt;}
.h7{height:36.920625pt;}
.h28{height:40.384687pt;}
.h2{height:41.448125pt;}
.h2d{height:42.570000pt;}
.h4{height:45.942500pt;}
.h2f{height:50.560000pt;}
.h31{height:50.592000pt;}
.h10{height:52.108438pt;}
.h13{height:52.134375pt;}
.hf{height:53.535000pt;}
.h23{height:54.598989pt;}
.hd{height:57.375000pt;}
.h2e{height:57.787500pt;}
.h3{height:58.426875pt;}
.h19{height:59.340000pt;}
.h6{height:62.812500pt;}
.h9{height:64.500000pt;}
.ha{height:65.781915pt;}
.hc{height:66.625000pt;}
.hb{height:73.490625pt;}
.h8{height:75.465000pt;}
.h25{height:83.540625pt;}
.h5{height:87.622812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:32.320000pt;}
.w15{width:32.352000pt;}
.w1b{width:32.512000pt;}
.we{width:37.760000pt;}
.w2e{width:37.792000pt;}
.w2c{width:38.240000pt;}
.w32{width:39.200000pt;}
.w30{width:39.520000pt;}
.wb{width:41.472000pt;}
.wc{width:47.200000pt;}
.w10{width:47.360000pt;}
.w13{width:52.800000pt;}
.wa{width:53.120000pt;}
.wf{width:56.640000pt;}
.wd{width:56.832000pt;}
.w11{width:66.112000pt;}
.w33{width:77.152000pt;}
.w2b{width:77.472000pt;}
.w31{width:79.712000pt;}
.w2d{width:81.280000pt;}
.w1a{width:84.672000pt;}
.w17{width:84.992000pt;}
.w18{width:85.120000pt;}
.w2f{width:87.200000pt;}
.w9{width:94.400000pt;}
.w23{width:94.432000pt;}
.w6{width:94.560000pt;}
.w8{width:94.592000pt;}
.w26{width:101.280000pt;}
.w12{width:101.440000pt;}
.w22{width:101.600000pt;}
.w3{width:101.760000pt;}
.w19{width:103.680000pt;}
.w16{width:104.000000pt;}
.w5{width:104.032000pt;}
.w37{width:104.512000pt;}
.w1e{width:109.952000pt;}
.w3a{width:110.400000pt;}
.w36{width:110.720000pt;}
.w34{width:113.440000pt;}
.w7{width:113.472000pt;}
.w25{width:115.552000pt;}
.w27{width:115.712000pt;}
.w21{width:115.872000pt;}
.w2a{width:118.912000pt;}
.w28{width:119.072000pt;}
.w20{width:125.920000pt;}
.w1d{width:126.400000pt;}
.w29{width:126.720000pt;}
.w39{width:132.352000pt;}
.w3e{width:132.480000pt;}
.w1f{width:141.466667pt;}
.w1c{width:141.786667pt;}
.w3d{width:153.466667pt;}
.w3c{width:170.106667pt;}
.w4{width:188.986667pt;}
.w38{width:191.226667pt;}
.w3b{width:323.586667pt;}
.w35{width:415.746667pt;}
.w3f{width:435.293333pt;}
.w24{width:501.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:5.120000pt;}
.x18{left:7.200000pt;}
.x30{left:9.000000pt;}
.x1d{left:10.880000pt;}
.x31{left:11.840000pt;}
.x2b{left:13.280000pt;}
.x26{left:15.080000pt;}
.x1f{left:17.000000pt;}
.x29{left:18.080000pt;}
.x55{left:19.040000pt;}
.x27{left:20.160000pt;}
.x32{left:21.600000pt;}
.x24{left:23.200000pt;}
.x38{left:24.160000pt;}
.x20{left:25.760000pt;}
.x39{left:27.040000pt;}
.x1c{left:28.320000pt;}
.x2e{left:29.640000pt;}
.x3a{left:30.880000pt;}
.x4a{left:32.160000pt;}
.x54{left:33.920000pt;}
.x22{left:35.360000pt;}
.x43{left:36.960000pt;}
.x42{left:40.960000pt;}
.x44{left:44.320000pt;}
.xc{left:47.359988pt;}
.x4c{left:50.874667pt;}
.x1a{left:52.160000pt;}
.x23{left:56.680000pt;}
.x45{left:62.720000pt;}
.x3e{left:70.880000pt;}
.xf{left:94.591988pt;}
.x17{left:95.552000pt;}
.x13{left:102.911988pt;}
.x4b{left:105.792000pt;}
.x12{left:108.191988pt;}
.x11{left:113.631988pt;}
.x10{left:122.911988pt;}
.x59{left:127.552000pt;}
.x4{left:130.912000pt;}
.x57{left:141.786655pt;}
.x46{left:146.426667pt;}
.x3d{left:155.866667pt;}
.x33{left:171.226667pt;}
.x5{left:185.466667pt;}
.x19{left:197.306667pt;}
.x4d{left:207.546667pt;}
.x5a{left:238.266667pt;}
.x5f{left:245.466667pt;}
.x25{left:250.426667pt;}
.x35{left:259.906667pt;}
.x47{left:262.306667pt;}
.x50{left:285.026667pt;}
.x21{left:291.906667pt;}
.x3f{left:297.666667pt;}
.x2{left:300.866667pt;}
.x58{left:312.066667pt;}
.x1{left:318.626667pt;}
.x4e{left:323.266667pt;}
.x3{left:332.066667pt;}
.x28{left:339.106667pt;}
.x5b{left:342.786667pt;}
.x36{left:363.906667pt;}
.xe{left:372.066655pt;}
.x1b{left:386.306667pt;}
.x3c{left:395.746667pt;}
.xd{left:400.546655pt;}
.x3b{left:401.666655pt;}
.x51{left:404.546667pt;}
.x16{left:411.746655pt;}
.x40{left:424.066667pt;}
.x2a{left:443.133333pt;}
.x37{left:448.893333pt;}
.xb{left:456.253333pt;}
.x48{left:458.333333pt;}
.x2c{left:480.893333pt;}
.x9{left:490.013333pt;}
.x5c{left:512.893333pt;}
.x7{left:524.253333pt;}
.x52{left:529.533333pt;}
.x56{left:532.093322pt;}
.x41{left:534.013333pt;}
.x2d{left:537.533333pt;}
.x49{left:552.893333pt;}
.x4f{left:569.053333pt;}
.x5d{left:582.973322pt;}
.x1e{left:584.893333pt;}
.x15{left:607.013322pt;}
.xa{left:621.573333pt;}
.x8{left:642.213333pt;}
.x53{left:648.773333pt;}
.x2f{left:651.013333pt;}
.x6{left:659.813333pt;}
.x34{left:683.333322pt;}
.x14{left:691.333322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  