
    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_cb24b5f83c8f745da2f278c6.woff2')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_0cfd26e80b57f63f8ce890ab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1b33b4df978b6a1aeb5c0549.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_613fe18ced8dc08c249d4e43.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae60b352f045796a1b87f82f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')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_04ef0599a1234bac42ec290c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916016;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b2e27b22a8ee77ab778f44b5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916016;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bf3adf53aa237814d3fc58fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-14.400000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.600000px;}
.v1{vertical-align:24.480000px;}
.ls11{letter-spacing:-1.800000px;}
.ls17{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.972000px;}
.lsf{letter-spacing:-0.954000px;}
.ls3{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.498000px;}
.ls7{letter-spacing:-0.486600px;}
.lsc{letter-spacing:-0.466800px;}
.ls5{letter-spacing:-0.447600px;}
.lsd{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls13{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls18{letter-spacing:2.160000px;}
.ls15{letter-spacing:3.600000px;}
.ls16{letter-spacing:6.480000px;}
.ls12{letter-spacing:16.560000px;}
.ls1b{letter-spacing:37.757280px;}
.ls1a{letter-spacing:40.798560px;}
.ls1e{letter-spacing:44.957280px;}
.ls19{letter-spacing:45.118560px;}
.lsb{letter-spacing:71.038560px;}
.ls1c{letter-spacing:75.197280px;}
.ls1d{letter-spacing:78.077280px;}
.ls9{letter-spacing:81.250560px;}
.ls6{letter-spacing:82.690560px;}
.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;}
}
.ws10{word-spacing:-60.480000px;}
.wsf{word-spacing:-16.560000px;}
.wse{word-spacing:-15.948000px;}
.wsd{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.606600px;}
.ws9{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.099840px;}
.ws5{word-spacing:-14.653200px;}
.ws4{word-spacing:-14.633400px;}
.ws7{word-spacing:-14.613000px;}
.ws8{word-spacing:-14.166000px;}
.ws0{word-spacing:-13.182000px;}
.wsb{word-spacing:-11.880000px;}
.wsc{word-spacing:-9.737280px;}
.ws1{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._24{margin-left:-7.308480px;}
._17{margin-left:-5.883840px;}
._14{margin-left:-3.888000px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.780000px;}
._c{width:4.907520px;}
._13{width:6.168960px;}
._d{width:7.214400px;}
._b{width:8.346240px;}
._9{width:10.221120px;}
._a{width:11.257920px;}
._18{width:13.080960px;}
._19{width:14.100480px;}
._1a{width:16.675680px;}
._f{width:17.910720px;}
._e{width:19.353600px;}
._16{width:20.623680px;}
._15{width:21.962880px;}
._12{width:23.448960px;}
._11{width:24.693120px;}
._10{width:25.831200px;}
._22{width:27.527040px;}
._21{width:28.848960px;}
._23{width:31.268160px;}
._20{width:33.989760px;}
._1f{width:35.138880px;}
._1e{width:40.763520px;}
._1b{width:75.600000px;}
._1d{width:98.225760px;}
._1c{width:144.728640px;}
._7{width:196.716000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y36{bottom:3.240000px;}
.y4d{bottom:3.285000px;}
.yfe{bottom:5.760000px;}
.y118{bottom:5.805000px;}
.y114{bottom:6.120000px;}
.yf1{bottom:7.920000px;}
.y191{bottom:8.274000px;}
.y12d{bottom:8.280000px;}
.y145{bottom:8.310000px;}
.y129{bottom:8.325000px;}
.y180{bottom:8.634000px;}
.y127{bottom:8.640000px;}
.y178{bottom:8.685000px;}
.y11e{bottom:9.390000px;}
.y10c{bottom:13.680000px;}
.y120{bottom:14.400000px;}
.yee{bottom:20.160000px;}
.ye5{bottom:20.514000px;}
.y35{bottom:20.520000px;}
.y4c{bottom:20.565000px;}
.y13a{bottom:22.314000px;}
.y131{bottom:22.320000px;}
.y144{bottom:22.350000px;}
.y15b{bottom:22.365000px;}
.y167{bottom:22.674000px;}
.y12b{bottom:22.680000px;}
.y14f{bottom:22.710000px;}
.y137{bottom:22.725000px;}
.yf0{bottom:25.245000px;}
.y10a{bottom:25.554000px;}
.y100{bottom:25.560000px;}
.y111{bottom:25.590000px;}
.y108{bottom:25.605000px;}
.y102{bottom:25.920000px;}
.y134{bottom:34.560000px;}
.y169{bottom:34.605000px;}
.ye2{bottom:37.800000px;}
.y4b{bottom:37.845000px;}
.ye{bottom:43.560000px;}
.y4a{bottom:55.125000px;}
.y34{bottom:55.845000px;}
.yc{bottom:68.400000px;}
.y49{bottom:72.405000px;}
.y33{bottom:91.125000px;}
.ya{bottom:94.716000px;}
.y48{bottom:107.685000px;}
.y47{bottom:124.965000px;}
.y32{bottom:126.405000px;}
.y1a3{bottom:128.556000px;}
.y139{bottom:132.516000px;}
.y109{bottom:133.236000px;}
.ye4{bottom:134.316000px;}
.y1a8{bottom:138.996000px;}
.yba{bottom:139.356000px;}
.y46{bottom:142.275000px;}
.y31{bottom:143.685000px;}
.y17f{bottom:144.396000px;}
.y1d0{bottom:147.276000px;}
.y190{bottom:148.716000px;}
.y9c{bottom:150.510000px;}
.y1a2{bottom:151.950000px;}
.y21{bottom:155.190000px;}
.y138{bottom:155.910000px;}
.y166{bottom:156.630000px;}
.y203{bottom:158.070000px;}
.y1a7{bottom:158.790000px;}
.yb9{bottom:159.150000px;}
.y45{bottom:159.195000px;}
.y30{bottom:160.605000px;}
.y6b{bottom:162.390000px;}
.y1cf{bottom:167.430000px;}
.y17e{bottom:167.790000px;}
.ye3{bottom:169.590000px;}
.y9b{bottom:170.310000px;}
.y18f{bottom:171.750000px;}
.y107{bottom:173.550000px;}
.y1a1{bottom:174.990000px;}
.y44{bottom:176.475000px;}
.y202{bottom:177.870000px;}
.y2f{bottom:177.915000px;}
.y1a6{bottom:178.590000px;}
.yb8{bottom:178.950000px;}
.y1e8{bottom:179.310000px;}
.y165{bottom:179.670000px;}
.y229{bottom:180.390000px;}
.ycd{bottom:182.190000px;}
.y6a{bottom:182.550000px;}
.y1ce{bottom:187.230000px;}
.y9a{bottom:190.110000px;}
.y17d{bottom:191.190000px;}
.y43{bottom:193.755000px;}
.y2e{bottom:195.195000px;}
.y201{bottom:197.715000px;}
.y1a0{bottom:198.435000px;}
.yb7{bottom:198.795000px;}
.y1e7{bottom:199.155000px;}
.y228{bottom:200.235000px;}
.ycc{bottom:202.035000px;}
.y69{bottom:202.395000px;}
.y164{bottom:203.115000px;}
.y18e{bottom:207.075000px;}
.y99{bottom:209.955000px;}
.y42{bottom:211.035000px;}
.y2d{bottom:212.475000px;}
.y106{bottom:213.915000px;}
.y17c{bottom:214.275000px;}
.yb6{bottom:218.595000px;}
.y1e6{bottom:218.955000px;}
.y19f{bottom:221.475000px;}
.y68{bottom:222.195000px;}
.y136{bottom:225.435000px;}
.y163{bottom:226.155000px;}
.y1cd{bottom:226.875000px;}
.y41{bottom:228.315000px;}
.y2c{bottom:229.755000px;}
.y18d{bottom:230.475000px;}
.y17b{bottom:237.675000px;}
.yb5{bottom:238.395000px;}
.y1e5{bottom:238.755000px;}
.ycb{bottom:239.835000px;}
.y67{bottom:241.995000px;}
.y227{bottom:243.075000px;}
.y19e{bottom:244.875000px;}
.y40{bottom:245.595000px;}
.y1cc{bottom:246.675000px;}
.y2b{bottom:247.035000px;}
.y135{bottom:248.835000px;}
.y98{bottom:249.555000px;}
.y18c{bottom:253.515000px;}
.y105{bottom:254.595000px;}
.ye1{bottom:257.475000px;}
.yb4{bottom:258.195000px;}
.y1e4{bottom:258.555000px;}
.yca{bottom:259.635000px;}
.y200{bottom:259.995000px;}
.y17a{bottom:260.715000px;}
.y66{bottom:261.795000px;}
.y226{bottom:262.515000px;}
.y3f{bottom:262.920000px;}
.y2a{bottom:264.315000px;}
.y1cb{bottom:266.475000px;}
.y97{bottom:269.355000px;}
.y133{bottom:271.875000px;}
.y162{bottom:272.955000px;}
.y19d{bottom:274.035000px;}
.yc9{bottom:276.195000px;}
.y18b{bottom:276.915000px;}
.y1a5{bottom:277.995000px;}
.y1e3{bottom:278.355000px;}
.y1ff{bottom:279.795000px;}
.yb3{bottom:280.155000px;}
.y3e{bottom:280.200000px;}
.y29{bottom:281.595000px;}
.y179{bottom:284.115000px;}
.y1ca{bottom:286.275000px;}
.y96{bottom:289.515000px;}
.y104{bottom:294.915000px;}
.y161{bottom:295.995000px;}
.y3d{bottom:297.480000px;}
.y1a4{bottom:297.795000px;}
.y1e2{bottom:298.155000px;}
.y28{bottom:298.920000px;}
.y18a{bottom:299.955000px;}
.y1fe{bottom:301.035000px;}
.y65{bottom:301.395000px;}
.y225{bottom:303.915000px;}
.y1c9{bottom:306.075000px;}
.y132{bottom:307.155000px;}
.yb2{bottom:308.955000px;}
.y95{bottom:309.315000px;}
.y19c{bottom:311.835000px;}
.y3c{bottom:314.760000px;}
.ye0{bottom:315.795000px;}
.y27{bottom:316.200000px;}
.y1e1{bottom:317.955000px;}
.y160{bottom:319.395000px;}
.y1fd{bottom:320.835000px;}
.y64{bottom:321.195000px;}
.y189{bottom:323.385000px;}
.y224{bottom:325.185000px;}
.y1c8{bottom:325.905000px;}
.yb1{bottom:328.785000px;}
.y94{bottom:329.145000px;}
.y130{bottom:330.585000px;}
.y19b{bottom:331.665000px;}
.y26{bottom:333.480000px;}
.y103{bottom:335.265000px;}
.y1e0{bottom:337.785000px;}
.y63{bottom:341.025000px;}
.y1fc{bottom:342.105000px;}
.y15f{bottom:342.465000px;}
.y223{bottom:344.985000px;}
.y1c7{bottom:345.705000px;}
.y188{bottom:346.785000px;}
.yb0{bottom:348.585000px;}
.y93{bottom:348.945000px;}
.y25{bottom:350.400000px;}
.y19a{bottom:351.465000px;}
.ydf{bottom:353.625000px;}
.y12f{bottom:353.985000px;}
.y1df{bottom:357.945000px;}
.y62{bottom:360.825000px;}
.y1fb{bottom:363.345000px;}
.y15e{bottom:365.865000px;}
.y222{bottom:366.225000px;}
.y24{bottom:367.680000px;}
.yaf{bottom:368.385000px;}
.y92{bottom:368.745000px;}
.y187{bottom:369.825000px;}
.y199{bottom:371.265000px;}
.y101{bottom:375.585000px;}
.y12e{bottom:377.025000px;}
.y61{bottom:380.985000px;}
.y1fa{bottom:383.145000px;}
.y23{bottom:384.960000px;}
.y1c6{bottom:385.665000px;}
.y221{bottom:387.465000px;}
.yae{bottom:388.185000px;}
.y91{bottom:388.545000px;}
.y15d{bottom:389.265000px;}
.y1de{bottom:390.705000px;}
.y198{bottom:391.065000px;}
.yde{bottom:391.425000px;}
.y12c{bottom:400.425000px;}
.y60{bottom:400.785000px;}
.y1f9{bottom:404.385000px;}
.y1c5{bottom:405.465000px;}
.y220{bottom:407.265000px;}
.yad{bottom:407.985000px;}
.y90{bottom:408.345000px;}
.y197{bottom:410.865000px;}
.ydd{bottom:411.225000px;}
.y15c{bottom:412.305000px;}
.y186{bottom:414.105000px;}
.yff{bottom:416.265000px;}
.y22{bottom:420.270000px;}
.y5f{bottom:420.585000px;}
.y12a{bottom:423.465000px;}
.y1f8{bottom:424.185000px;}
.y1c4{bottom:425.265000px;}
.y21f{bottom:427.065000px;}
.yac{bottom:427.785000px;}
.y8f{bottom:428.145000px;}
.y196{bottom:430.665000px;}
.ydc{bottom:431.025000px;}
.y1dd{bottom:431.745000px;}
.y15a{bottom:435.705000px;}
.y5e{bottom:440.385000px;}
.y1f7{bottom:443.985000px;}
.y1c3{bottom:445.065000px;}
.y128{bottom:446.865000px;}
.yab{bottom:447.585000px;}
.y8e{bottom:447.945000px;}
.y21e{bottom:448.305000px;}
.y195{bottom:450.870000px;}
.ydb{bottom:451.230000px;}
.y185{bottom:451.950000px;}
.y1dc{bottom:452.310000px;}
.yfd{bottom:456.630000px;}
.y159{bottom:458.790000px;}
.y5d{bottom:460.230000px;}
.y1f6{bottom:463.830000px;}
.y1c2{bottom:464.910000px;}
.y8d{bottom:467.790000px;}
.y21d{bottom:468.150000px;}
.y126{bottom:469.950000px;}
.y177{bottom:470.310000px;}
.y194{bottom:470.670000px;}
.yda{bottom:471.030000px;}
.y184{bottom:471.750000px;}
.y1db{bottom:472.830000px;}
.y5c{bottom:480.030000px;}
.y158{bottom:482.190000px;}
.yfc{bottom:482.910000px;}
.y1c1{bottom:484.710000px;}
.y1f5{bottom:485.070000px;}
.yaa{bottom:487.590000px;}
.y8c{bottom:487.950000px;}
.y21c{bottom:489.390000px;}
.y193{bottom:490.470000px;}
.yd9{bottom:490.830000px;}
.y183{bottom:491.550000px;}
.y176{bottom:493.350000px;}
.y1da{bottom:493.710000px;}
.y125{bottom:499.110000px;}
.y5b{bottom:499.830000px;}
.y1c0{bottom:504.510000px;}
.y1f4{bottom:504.870000px;}
.y157{bottom:505.230000px;}
.ya9{bottom:507.390000px;}
.y8b{bottom:507.750000px;}
.yd8{bottom:510.630000px;}
.y1d9{bottom:514.230000px;}
.y175{bottom:516.750000px;}
.y5a{bottom:519.630000px;}
.yfb{bottom:520.710000px;}
.y192{bottom:523.590000px;}
.y1bf{bottom:524.310000px;}
.y1f3{bottom:524.670000px;}
.y182{bottom:526.110000px;}
.ya8{bottom:527.190000px;}
.y8a{bottom:527.550000px;}
.y156{bottom:528.630000px;}
.yd7{bottom:530.430000px;}
.y21b{bottom:531.870000px;}
.y1d8{bottom:534.750000px;}
.y124{bottom:536.910000px;}
.y59{bottom:539.430000px;}
.y174{bottom:539.790000px;}
.y181{bottom:540.150000px;}
.yfa{bottom:540.510000px;}
.y1be{bottom:544.110000px;}
.y1f2{bottom:546.270000px;}
.ya7{bottom:546.990000px;}
.y89{bottom:547.350000px;}
.yd6{bottom:550.230000px;}
.y21a{bottom:551.670000px;}
.y155{bottom:552.030000px;}
.y123{bottom:556.710000px;}
.y58{bottom:559.230000px;}
.y1d7{bottom:561.030000px;}
.y173{bottom:563.190000px;}
.y1bd{bottom:564.270000px;}
.y1f1{bottom:566.070000px;}
.y88{bottom:567.150000px;}
.yd5{bottom:570.030000px;}
.y219{bottom:571.470000px;}
.y154{bottom:575.100000px;}
.yf9{bottom:577.260000px;}
.y57{bottom:579.420000px;}
.y1bc{bottom:584.100000px;}
.ya6{bottom:584.820000px;}
.y172{bottom:586.260000px;}
.y87{bottom:586.980000px;}
.y1f0{bottom:587.340000px;}
.yd4{bottom:589.860000px;}
.y218{bottom:591.300000px;}
.yf8{bottom:593.460000px;}
.y20{bottom:594.900000px;}
.y153{bottom:598.500000px;}
.y1d6{bottom:598.860000px;}
.y56{bottom:599.220000px;}
.ya5{bottom:601.020000px;}
.y1bb{bottom:603.900000px;}
.yf7{bottom:605.340000px;}
.y86{bottom:606.780000px;}
.y1ef{bottom:607.140000px;}
.y171{bottom:609.660000px;}
.y1f{bottom:611.820000px;}
.y217{bottom:612.540000px;}
.y1d5{bottom:618.660000px;}
.y55{bottom:619.020000px;}
.y152{bottom:621.540000px;}
.y1e{bottom:625.500000px;}
.y122{bottom:626.220000px;}
.y85{bottom:626.580000px;}
.y1ee{bottom:626.940000px;}
.yd3{bottom:627.660000px;}
.yc8{bottom:628.380000px;}
.y216{bottom:632.340000px;}
.y170{bottom:633.060000px;}
.y54{bottom:638.820000px;}
.y1ba{bottom:639.180000px;}
.yf6{bottom:640.620000px;}
.y1d{bottom:642.780000px;}
.y151{bottom:644.940000px;}
.y84{bottom:646.380000px;}
.y121{bottom:646.740000px;}
.yd2{bottom:647.460000px;}
.y1ed{bottom:648.180000px;}
.y215{bottom:653.580000px;}
.y1d4{bottom:653.940000px;}
.y16f{bottom:656.100000px;}
.y1b9{bottom:656.460000px;}
.y1c{bottom:656.820000px;}
.y53{bottom:658.620000px;}
.yc7{bottom:663.300000px;}
.yd1{bottom:664.020000px;}
.y83{bottom:666.180000px;}
.y11f{bottom:667.620000px;}
.y1ec{bottom:667.980000px;}
.y150{bottom:668.340000px;}
.y1b{bottom:670.500000px;}
.y1d3{bottom:671.220000px;}
.y214{bottom:673.380000px;}
.yf5{bottom:675.540000px;}
.y52{bottom:678.420000px;}
.y16e{bottom:679.500000px;}
.y1a{bottom:684.180000px;}
.y82{bottom:686.340000px;}
.y1eb{bottom:686.700000px;}
.y1d2{bottom:687.780000px;}
.y1b8{bottom:691.020000px;}
.y14e{bottom:691.380000px;}
.yc6{bottom:692.100000px;}
.y213{bottom:693.180000px;}
.y11d{bottom:696.780000px;}
.y19{bottom:698.220000px;}
.y16d{bottom:702.570000px;}
.y81{bottom:706.170000px;}
.yf4{bottom:710.850000px;}
.y18{bottom:711.930000px;}
.y14d{bottom:714.810000px;}
.y51{bottom:718.050000px;}
.y11c{bottom:720.930000px;}
.y1ea{bottom:724.530000px;}
.y17{bottom:725.610000px;}
.y80{bottom:725.970000px;}
.yc5{bottom:731.730000px;}
.y212{bottom:734.610000px;}
.y50{bottom:737.850000px;}
.y11b{bottom:741.450000px;}
.y1e9{bottom:744.330000px;}
.y7f{bottom:745.770000px;}
.yf3{bottom:746.130000px;}
.y1b7{bottom:749.010000px;}
.y16c{bottom:749.370000px;}
.y16{bottom:751.530000px;}
.y211{bottom:754.410000px;}
.y14c{bottom:761.250000px;}
.y7e{bottom:765.570000px;}
.y15{bottom:768.810000px;}
.yc4{bottom:771.330000px;}
.y16b{bottom:772.410000px;}
.y4f{bottom:772.770000px;}
.y210{bottom:775.650000px;}
.yf2{bottom:781.410000px;}
.y11a{bottom:782.130000px;}
.y14b{bottom:784.290000px;}
.y7d{bottom:785.370000px;}
.y14{bottom:786.090000px;}
.y1b6{bottom:786.810000px;}
.yc3{bottom:791.130000px;}
.y22f{bottom:794.010000px;}
.y20f{bottom:795.450000px;}
.y16a{bottom:795.810000px;}
.y4e{bottom:800.850000px;}
.y119{bottom:802.650000px;}
.y13{bottom:805.170000px;}
.y14a{bottom:807.690000px;}
.yc2{bottom:811.290000px;}
.y22e{bottom:813.810000px;}
.yef{bottom:816.690000px;}
.y168{bottom:818.850000px;}
.y117{bottom:823.170000px;}
.y1b5{bottom:824.610000px;}
.y7c{bottom:824.970000px;}
.y3b{bottom:825.690000px;}
.yc1{bottom:831.135000px;}
.y12{bottom:832.575000px;}
.y22d{bottom:835.095000px;}
.y20e{bottom:836.535000px;}
.y116{bottom:843.735000px;}
.y7b{bottom:844.815000px;}
.yc0{bottom:850.935000px;}
.y149{bottom:854.175000px;}
.y20d{bottom:856.335000px;}
.yed{bottom:856.695000px;}
.y11{bottom:860.295000px;}
.y1b4{bottom:862.455000px;}
.y115{bottom:864.255000px;}
.y7a{bottom:864.615000px;}
.ybf{bottom:870.735000px;}
.y22c{bottom:876.135000px;}
.y148{bottom:877.575000px;}
.y79{bottom:884.415000px;}
.y113{bottom:884.775000px;}
.y10{bottom:888.015000px;}
.ybe{bottom:890.535000px;}
.yec{bottom:891.615000px;}
.y20c{bottom:897.375000px;}
.y1b3{bottom:900.255000px;}
.y147{bottom:900.615000px;}
.y78{bottom:904.575000px;}
.ybd{bottom:910.335000px;}
.yf{bottom:915.375000px;}
.y20b{bottom:917.175000px;}
.y1b2{bottom:920.055000px;}
.y146{bottom:924.015000px;}
.y77{bottom:924.375000px;}
.y112{bottom:925.455000px;}
.yeb{bottom:926.895000px;}
.ybc{bottom:930.135000px;}
.y20a{bottom:938.415000px;}
.y1b1{bottom:939.855000px;}
.y9{bottom:941.295000px;}
.y76{bottom:944.175000px;}
.y110{bottom:945.975000px;}
.y143{bottom:947.415000px;}
.ybb{bottom:952.095000px;}
.y209{bottom:958.245000px;}
.y8{bottom:958.605000px;}
.y1b0{bottom:959.685000px;}
.yea{bottom:962.205000px;}
.y75{bottom:964.005000px;}
.ya4{bottom:966.885000px;}
.y142{bottom:970.485000px;}
.y7{bottom:972.645000px;}
.y208{bottom:978.045000px;}
.y1af{bottom:979.485000px;}
.y74{bottom:983.805000px;}
.y10f{bottom:986.325000px;}
.ya3{bottom:986.685000px;}
.y141{bottom:993.885000px;}
.ye9{bottom:997.485000px;}
.y1ae{bottom:999.285000px;}
.y73{bottom:1003.605000px;}
.ya2{bottom:1006.485000px;}
.y140{bottom:1016.925000px;}
.yd0{bottom:1018.725000px;}
.y22b{bottom:1019.085000px;}
.y1ad{bottom:1019.445000px;}
.y72{bottom:1023.405000px;}
.ya1{bottom:1026.285000px;}
.y10e{bottom:1027.005000px;}
.y6{bottom:1027.365000px;}
.y1d1{bottom:1028.445000px;}
.ye8{bottom:1032.765000px;}
.ycf{bottom:1038.885000px;}
.y1ac{bottom:1039.245000px;}
.y13f{bottom:1040.325000px;}
.y22a{bottom:1040.685000px;}
.y71{bottom:1043.205000px;}
.ya0{bottom:1046.085000px;}
.y5{bottom:1052.205000px;}
.yce{bottom:1058.325000px;}
.y1ab{bottom:1059.045000px;}
.y207{bottom:1060.485000px;}
.y70{bottom:1063.005000px;}
.y13e{bottom:1063.365000px;}
.y9f{bottom:1065.885000px;}
.y10d{bottom:1067.325000px;}
.ye7{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y1aa{bottom:1078.890000px;}
.y206{bottom:1080.330000px;}
.y6f{bottom:1082.850000px;}
.y9e{bottom:1086.090000px;}
.y13d{bottom:1086.810000px;}
.y3{bottom:1094.010000px;}
.y205{bottom:1101.570000px;}
.y6e{bottom:1103.010000px;}
.y9d{bottom:1107.690000px;}
.y13c{bottom:1110.210000px;}
.y1a9{bottom:1113.810000px;}
.y2{bottom:1114.530000px;}
.ye6{bottom:1121.370000px;}
.y6d{bottom:1122.810000px;}
.y10b{bottom:1128.210000px;}
.y1{bottom:1131.450000px;}
.y13b{bottom:1133.250000px;}
.y204{bottom:1141.170000px;}
.y6c{bottom:1142.610000px;}
.y3a{bottom:1166.370000px;}
.y39{bottom:1180.410000px;}
.y38{bottom:1201.290000px;}
.y37{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h15{height:17.316000px;}
.h19{height:19.800000px;}
.h1e{height:19.836000px;}
.h21{height:20.160000px;}
.h24{height:22.320000px;}
.h23{height:22.356000px;}
.h22{height:22.680000px;}
.h25{height:22.716000px;}
.h1f{height:23.436000px;}
.h1d{height:27.720000px;}
.hc{height:28.200937px;}
.h20{height:28.440000px;}
.h17{height:34.200000px;}
.h12{height:34.560000px;}
.h16{height:34.596000px;}
.h18{height:38.916000px;}
.h1c{height:39.600000px;}
.h1a{height:39.636000px;}
.h1b{height:39.960000px;}
.h14{height:42.347813px;}
.hd{height:42.600937px;}
.h5{height:45.101250px;}
.h7{height:49.055625px;}
.h10{height:49.848750px;}
.h11{height:51.840000px;}
.h13{height:51.876000px;}
.h2{height:53.717344px;}
.h4{height:54.219375px;}
.h26{height:56.455312px;}
.ha{height:59.012578px;}
.h27{height:59.383125px;}
.h3{height:63.949219px;}
.hb{height:64.546875px;}
.h28{height:65.884219px;}
.h9{height:85.691953px;}
.hf{height:328.785000px;}
.he{height:434.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:39.276000px;}
.w15{width:40.320000px;}
.w19{width:40.356000px;}
.w8{width:43.596000px;}
.w13{width:63.036000px;}
.w12{width:70.956000px;}
.w16{width:93.636000px;}
.w17{width:93.996000px;}
.w1a{width:101.916000px;}
.w1c{width:105.516000px;}
.w1b{width:109.836000px;}
.w1d{width:126.792000px;}
.w1f{width:137.556000px;}
.w10{width:142.992000px;}
.w1e{width:148.032000px;}
.w9{width:156.990000px;}
.wa{width:158.835000px;}
.wb{width:171.435000px;}
.w18{width:181.155000px;}
.wf{width:193.035000px;}
.w14{width:198.825000px;}
.wd{width:211.755000px;}
.we{width:222.585000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w11{width:368.790000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.x9{left:8.640000px;}
.x2d{left:10.080000px;}
.x30{left:11.565000px;}
.x29{left:14.760000px;}
.x2b{left:17.280000px;}
.x39{left:19.080000px;}
.x2a{left:22.680000px;}
.x28{left:24.840000px;}
.x2c{left:29.910000px;}
.x3b{left:30.960000px;}
.x32{left:34.560000px;}
.x3a{left:39.990000px;}
.x36{left:42.165000px;}
.x34{left:45.750000px;}
.x38{left:46.830000px;}
.x2f{left:56.919000px;}
.x2e{left:63.765000px;}
.x3c{left:75.645000px;}
.x18{left:93.996000px;}
.x3d{left:96.555000px;}
.x7{left:106.235987px;}
.xd{left:114.875987px;}
.x42{left:117.035987px;}
.xe{left:127.835987px;}
.xf{left:130.751987px;}
.x15{left:133.271987px;}
.x1a{left:138.312000px;}
.x1e{left:147.312000px;}
.xc{left:151.274987px;}
.x41{left:160.274987px;}
.x11{left:180.794987px;}
.xb{left:189.434987px;}
.x2{left:254.264987px;}
.x3f{left:255.705000px;}
.x21{left:258.945000px;}
.x10{left:265.064987px;}
.x6{left:274.064987px;}
.x1b{left:296.025000px;}
.xa{left:304.350000px;}
.x23{left:313.710000px;}
.x31{left:337.110000px;}
.x13{left:339.984000px;}
.x24{left:354.750000px;}
.x5{left:355.829987px;}
.x1f{left:359.790000px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x40{left:404.460000px;}
.x33{left:439.740000px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x25{left:449.100000px;}
.x1c{left:455.580000px;}
.x26{left:543.810000px;}
.x35{left:550.290000px;}
.x17{left:556.409987px;}
.x20{left:583.095000px;}
.x14{left:610.454987px;}
.x1d{left:627.735000px;}
.x27{left:638.535000px;}
.x16{left:652.934987px;}
.x37{left:656.895000px;}
.x3e{left:659.774987px;}
.x22{left:700.125000px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-12.800000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.200000pt;}
.v1{vertical-align:21.760000pt;}
.ls11{letter-spacing:-1.600000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.864000pt;}
.lsf{letter-spacing:-0.848000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls7{letter-spacing:-0.432533pt;}
.lsc{letter-spacing:-0.414933pt;}
.ls5{letter-spacing:-0.397867pt;}
.lsd{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls13{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls18{letter-spacing:1.920000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls16{letter-spacing:5.760000pt;}
.ls12{letter-spacing:14.720000pt;}
.ls1b{letter-spacing:33.562027pt;}
.ls1a{letter-spacing:36.265387pt;}
.ls1e{letter-spacing:39.962027pt;}
.ls19{letter-spacing:40.105387pt;}
.lsb{letter-spacing:63.145387pt;}
.ls1c{letter-spacing:66.842027pt;}
.ls1d{letter-spacing:69.402027pt;}
.ls9{letter-spacing:72.222720pt;}
.ls6{letter-spacing:73.502720pt;}
.ws10{word-spacing:-53.760000pt;}
.wsf{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.176000pt;}
.wsd{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.872533pt;}
.ws9{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.422080pt;}
.ws5{word-spacing:-13.025067pt;}
.ws4{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.989333pt;}
.ws8{word-spacing:-12.592000pt;}
.ws0{word-spacing:-11.717333pt;}
.wsb{word-spacing:-10.560000pt;}
.wsc{word-spacing:-8.655360pt;}
.ws1{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._24{margin-left:-6.496427pt;}
._17{margin-left:-5.230080pt;}
._14{margin-left:-3.456000pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.360000pt;}
._c{width:4.362240pt;}
._13{width:5.483520pt;}
._d{width:6.412800pt;}
._b{width:7.418880pt;}
._9{width:9.085440pt;}
._a{width:10.007040pt;}
._18{width:11.627520pt;}
._19{width:12.533760pt;}
._1a{width:14.822827pt;}
._f{width:15.920640pt;}
._e{width:17.203200pt;}
._16{width:18.332160pt;}
._15{width:19.522560pt;}
._12{width:20.843520pt;}
._11{width:21.949440pt;}
._10{width:22.961067pt;}
._22{width:24.468480pt;}
._21{width:25.643520pt;}
._23{width:27.793920pt;}
._20{width:30.213120pt;}
._1f{width:31.234560pt;}
._1e{width:36.234240pt;}
._1b{width:67.200000pt;}
._1d{width:87.311787pt;}
._1c{width:128.647680pt;}
._7{width:174.858667pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y36{bottom:2.880000pt;}
.y4d{bottom:2.920000pt;}
.yfe{bottom:5.120000pt;}
.y118{bottom:5.160000pt;}
.y114{bottom:5.440000pt;}
.yf1{bottom:7.040000pt;}
.y191{bottom:7.354667pt;}
.y12d{bottom:7.360000pt;}
.y145{bottom:7.386667pt;}
.y129{bottom:7.400000pt;}
.y180{bottom:7.674667pt;}
.y127{bottom:7.680000pt;}
.y178{bottom:7.720000pt;}
.y11e{bottom:8.346667pt;}
.y10c{bottom:12.160000pt;}
.y120{bottom:12.800000pt;}
.yee{bottom:17.920000pt;}
.ye5{bottom:18.234667pt;}
.y35{bottom:18.240000pt;}
.y4c{bottom:18.280000pt;}
.y13a{bottom:19.834667pt;}
.y131{bottom:19.840000pt;}
.y144{bottom:19.866667pt;}
.y15b{bottom:19.880000pt;}
.y167{bottom:20.154667pt;}
.y12b{bottom:20.160000pt;}
.y14f{bottom:20.186667pt;}
.y137{bottom:20.200000pt;}
.yf0{bottom:22.440000pt;}
.y10a{bottom:22.714667pt;}
.y100{bottom:22.720000pt;}
.y111{bottom:22.746667pt;}
.y108{bottom:22.760000pt;}
.y102{bottom:23.040000pt;}
.y134{bottom:30.720000pt;}
.y169{bottom:30.760000pt;}
.ye2{bottom:33.600000pt;}
.y4b{bottom:33.640000pt;}
.ye{bottom:38.720000pt;}
.y4a{bottom:49.000000pt;}
.y34{bottom:49.640000pt;}
.yc{bottom:60.800000pt;}
.y49{bottom:64.360000pt;}
.y33{bottom:81.000000pt;}
.ya{bottom:84.192000pt;}
.y48{bottom:95.720000pt;}
.y47{bottom:111.080000pt;}
.y32{bottom:112.360000pt;}
.y1a3{bottom:114.272000pt;}
.y139{bottom:117.792000pt;}
.y109{bottom:118.432000pt;}
.ye4{bottom:119.392000pt;}
.y1a8{bottom:123.552000pt;}
.yba{bottom:123.872000pt;}
.y46{bottom:126.466667pt;}
.y31{bottom:127.720000pt;}
.y17f{bottom:128.352000pt;}
.y1d0{bottom:130.912000pt;}
.y190{bottom:132.192000pt;}
.y9c{bottom:133.786667pt;}
.y1a2{bottom:135.066667pt;}
.y21{bottom:137.946667pt;}
.y138{bottom:138.586667pt;}
.y166{bottom:139.226667pt;}
.y203{bottom:140.506667pt;}
.y1a7{bottom:141.146667pt;}
.yb9{bottom:141.466667pt;}
.y45{bottom:141.506667pt;}
.y30{bottom:142.760000pt;}
.y6b{bottom:144.346667pt;}
.y1cf{bottom:148.826667pt;}
.y17e{bottom:149.146667pt;}
.ye3{bottom:150.746667pt;}
.y9b{bottom:151.386667pt;}
.y18f{bottom:152.666667pt;}
.y107{bottom:154.266667pt;}
.y1a1{bottom:155.546667pt;}
.y44{bottom:156.866667pt;}
.y202{bottom:158.106667pt;}
.y2f{bottom:158.146667pt;}
.y1a6{bottom:158.746667pt;}
.yb8{bottom:159.066667pt;}
.y1e8{bottom:159.386667pt;}
.y165{bottom:159.706667pt;}
.y229{bottom:160.346667pt;}
.ycd{bottom:161.946667pt;}
.y6a{bottom:162.266667pt;}
.y1ce{bottom:166.426667pt;}
.y9a{bottom:168.986667pt;}
.y17d{bottom:169.946667pt;}
.y43{bottom:172.226667pt;}
.y2e{bottom:173.506667pt;}
.y201{bottom:175.746667pt;}
.y1a0{bottom:176.386667pt;}
.yb7{bottom:176.706667pt;}
.y1e7{bottom:177.026667pt;}
.y228{bottom:177.986667pt;}
.ycc{bottom:179.586667pt;}
.y69{bottom:179.906667pt;}
.y164{bottom:180.546667pt;}
.y18e{bottom:184.066667pt;}
.y99{bottom:186.626667pt;}
.y42{bottom:187.586667pt;}
.y2d{bottom:188.866667pt;}
.y106{bottom:190.146667pt;}
.y17c{bottom:190.466667pt;}
.yb6{bottom:194.306667pt;}
.y1e6{bottom:194.626667pt;}
.y19f{bottom:196.866667pt;}
.y68{bottom:197.506667pt;}
.y136{bottom:200.386667pt;}
.y163{bottom:201.026667pt;}
.y1cd{bottom:201.666667pt;}
.y41{bottom:202.946667pt;}
.y2c{bottom:204.226667pt;}
.y18d{bottom:204.866667pt;}
.y17b{bottom:211.266667pt;}
.yb5{bottom:211.906667pt;}
.y1e5{bottom:212.226667pt;}
.ycb{bottom:213.186667pt;}
.y67{bottom:215.106667pt;}
.y227{bottom:216.066667pt;}
.y19e{bottom:217.666667pt;}
.y40{bottom:218.306667pt;}
.y1cc{bottom:219.266667pt;}
.y2b{bottom:219.586667pt;}
.y135{bottom:221.186667pt;}
.y98{bottom:221.826667pt;}
.y18c{bottom:225.346667pt;}
.y105{bottom:226.306667pt;}
.ye1{bottom:228.866667pt;}
.yb4{bottom:229.506667pt;}
.y1e4{bottom:229.826667pt;}
.yca{bottom:230.786667pt;}
.y200{bottom:231.106667pt;}
.y17a{bottom:231.746667pt;}
.y66{bottom:232.706667pt;}
.y226{bottom:233.346667pt;}
.y3f{bottom:233.706667pt;}
.y2a{bottom:234.946667pt;}
.y1cb{bottom:236.866667pt;}
.y97{bottom:239.426667pt;}
.y133{bottom:241.666667pt;}
.y162{bottom:242.626667pt;}
.y19d{bottom:243.586667pt;}
.yc9{bottom:245.506667pt;}
.y18b{bottom:246.146667pt;}
.y1a5{bottom:247.106667pt;}
.y1e3{bottom:247.426667pt;}
.y1ff{bottom:248.706667pt;}
.yb3{bottom:249.026667pt;}
.y3e{bottom:249.066667pt;}
.y29{bottom:250.306667pt;}
.y179{bottom:252.546667pt;}
.y1ca{bottom:254.466667pt;}
.y96{bottom:257.346667pt;}
.y104{bottom:262.146667pt;}
.y161{bottom:263.106667pt;}
.y3d{bottom:264.426667pt;}
.y1a4{bottom:264.706667pt;}
.y1e2{bottom:265.026667pt;}
.y28{bottom:265.706667pt;}
.y18a{bottom:266.626667pt;}
.y1fe{bottom:267.586667pt;}
.y65{bottom:267.906667pt;}
.y225{bottom:270.146667pt;}
.y1c9{bottom:272.066667pt;}
.y132{bottom:273.026667pt;}
.yb2{bottom:274.626667pt;}
.y95{bottom:274.946667pt;}
.y19c{bottom:277.186667pt;}
.y3c{bottom:279.786667pt;}
.ye0{bottom:280.706667pt;}
.y27{bottom:281.066667pt;}
.y1e1{bottom:282.626667pt;}
.y160{bottom:283.906667pt;}
.y1fd{bottom:285.186667pt;}
.y64{bottom:285.506667pt;}
.y189{bottom:287.453333pt;}
.y224{bottom:289.053333pt;}
.y1c8{bottom:289.693333pt;}
.yb1{bottom:292.253333pt;}
.y94{bottom:292.573333pt;}
.y130{bottom:293.853333pt;}
.y19b{bottom:294.813333pt;}
.y26{bottom:296.426667pt;}
.y103{bottom:298.013333pt;}
.y1e0{bottom:300.253333pt;}
.y63{bottom:303.133333pt;}
.y1fc{bottom:304.093333pt;}
.y15f{bottom:304.413333pt;}
.y223{bottom:306.653333pt;}
.y1c7{bottom:307.293333pt;}
.y188{bottom:308.253333pt;}
.yb0{bottom:309.853333pt;}
.y93{bottom:310.173333pt;}
.y25{bottom:311.466667pt;}
.y19a{bottom:312.413333pt;}
.ydf{bottom:314.333333pt;}
.y12f{bottom:314.653333pt;}
.y1df{bottom:318.173333pt;}
.y62{bottom:320.733333pt;}
.y1fb{bottom:322.973333pt;}
.y15e{bottom:325.213333pt;}
.y222{bottom:325.533333pt;}
.y24{bottom:326.826667pt;}
.yaf{bottom:327.453333pt;}
.y92{bottom:327.773333pt;}
.y187{bottom:328.733333pt;}
.y199{bottom:330.013333pt;}
.y101{bottom:333.853333pt;}
.y12e{bottom:335.133333pt;}
.y61{bottom:338.653333pt;}
.y1fa{bottom:340.573333pt;}
.y23{bottom:342.186667pt;}
.y1c6{bottom:342.813333pt;}
.y221{bottom:344.413333pt;}
.yae{bottom:345.053333pt;}
.y91{bottom:345.373333pt;}
.y15d{bottom:346.013333pt;}
.y1de{bottom:347.293333pt;}
.y198{bottom:347.613333pt;}
.yde{bottom:347.933333pt;}
.y12c{bottom:355.933333pt;}
.y60{bottom:356.253333pt;}
.y1f9{bottom:359.453333pt;}
.y1c5{bottom:360.413333pt;}
.y220{bottom:362.013333pt;}
.yad{bottom:362.653333pt;}
.y90{bottom:362.973333pt;}
.y197{bottom:365.213333pt;}
.ydd{bottom:365.533333pt;}
.y15c{bottom:366.493333pt;}
.y186{bottom:368.093333pt;}
.yff{bottom:370.013333pt;}
.y22{bottom:373.573333pt;}
.y5f{bottom:373.853333pt;}
.y12a{bottom:376.413333pt;}
.y1f8{bottom:377.053333pt;}
.y1c4{bottom:378.013333pt;}
.y21f{bottom:379.613333pt;}
.yac{bottom:380.253333pt;}
.y8f{bottom:380.573333pt;}
.y196{bottom:382.813333pt;}
.ydc{bottom:383.133333pt;}
.y1dd{bottom:383.773333pt;}
.y15a{bottom:387.293333pt;}
.y5e{bottom:391.453333pt;}
.y1f7{bottom:394.653333pt;}
.y1c3{bottom:395.613333pt;}
.y128{bottom:397.213333pt;}
.yab{bottom:397.853333pt;}
.y8e{bottom:398.173333pt;}
.y21e{bottom:398.493333pt;}
.y195{bottom:400.773333pt;}
.ydb{bottom:401.093333pt;}
.y185{bottom:401.733333pt;}
.y1dc{bottom:402.053333pt;}
.yfd{bottom:405.893333pt;}
.y159{bottom:407.813333pt;}
.y5d{bottom:409.093333pt;}
.y1f6{bottom:412.293333pt;}
.y1c2{bottom:413.253333pt;}
.y8d{bottom:415.813333pt;}
.y21d{bottom:416.133333pt;}
.y126{bottom:417.733333pt;}
.y177{bottom:418.053333pt;}
.y194{bottom:418.373333pt;}
.yda{bottom:418.693333pt;}
.y184{bottom:419.333333pt;}
.y1db{bottom:420.293333pt;}
.y5c{bottom:426.693333pt;}
.y158{bottom:428.613333pt;}
.yfc{bottom:429.253333pt;}
.y1c1{bottom:430.853333pt;}
.y1f5{bottom:431.173333pt;}
.yaa{bottom:433.413333pt;}
.y8c{bottom:433.733333pt;}
.y21c{bottom:435.013333pt;}
.y193{bottom:435.973333pt;}
.yd9{bottom:436.293333pt;}
.y183{bottom:436.933333pt;}
.y176{bottom:438.533333pt;}
.y1da{bottom:438.853333pt;}
.y125{bottom:443.653333pt;}
.y5b{bottom:444.293333pt;}
.y1c0{bottom:448.453333pt;}
.y1f4{bottom:448.773333pt;}
.y157{bottom:449.093333pt;}
.ya9{bottom:451.013333pt;}
.y8b{bottom:451.333333pt;}
.yd8{bottom:453.893333pt;}
.y1d9{bottom:457.093333pt;}
.y175{bottom:459.333333pt;}
.y5a{bottom:461.893333pt;}
.yfb{bottom:462.853333pt;}
.y192{bottom:465.413333pt;}
.y1bf{bottom:466.053333pt;}
.y1f3{bottom:466.373333pt;}
.y182{bottom:467.653333pt;}
.ya8{bottom:468.613333pt;}
.y8a{bottom:468.933333pt;}
.y156{bottom:469.893333pt;}
.yd7{bottom:471.493333pt;}
.y21b{bottom:472.773333pt;}
.y1d8{bottom:475.333333pt;}
.y124{bottom:477.253333pt;}
.y59{bottom:479.493333pt;}
.y174{bottom:479.813333pt;}
.y181{bottom:480.133333pt;}
.yfa{bottom:480.453333pt;}
.y1be{bottom:483.653333pt;}
.y1f2{bottom:485.573333pt;}
.ya7{bottom:486.213333pt;}
.y89{bottom:486.533333pt;}
.yd6{bottom:489.093333pt;}
.y21a{bottom:490.373333pt;}
.y155{bottom:490.693333pt;}
.y123{bottom:494.853333pt;}
.y58{bottom:497.093333pt;}
.y1d7{bottom:498.693333pt;}
.y173{bottom:500.613333pt;}
.y1bd{bottom:501.573333pt;}
.y1f1{bottom:503.173333pt;}
.y88{bottom:504.133333pt;}
.yd5{bottom:506.693333pt;}
.y219{bottom:507.973333pt;}
.y154{bottom:511.200000pt;}
.yf9{bottom:513.120000pt;}
.y57{bottom:515.040000pt;}
.y1bc{bottom:519.200000pt;}
.ya6{bottom:519.840000pt;}
.y172{bottom:521.120000pt;}
.y87{bottom:521.760000pt;}
.y1f0{bottom:522.080000pt;}
.yd4{bottom:524.320000pt;}
.y218{bottom:525.600000pt;}
.yf8{bottom:527.520000pt;}
.y20{bottom:528.800000pt;}
.y153{bottom:532.000000pt;}
.y1d6{bottom:532.320000pt;}
.y56{bottom:532.640000pt;}
.ya5{bottom:534.240000pt;}
.y1bb{bottom:536.800000pt;}
.yf7{bottom:538.080000pt;}
.y86{bottom:539.360000pt;}
.y1ef{bottom:539.680000pt;}
.y171{bottom:541.920000pt;}
.y1f{bottom:543.840000pt;}
.y217{bottom:544.480000pt;}
.y1d5{bottom:549.920000pt;}
.y55{bottom:550.240000pt;}
.y152{bottom:552.480000pt;}
.y1e{bottom:556.000000pt;}
.y122{bottom:556.640000pt;}
.y85{bottom:556.960000pt;}
.y1ee{bottom:557.280000pt;}
.yd3{bottom:557.920000pt;}
.yc8{bottom:558.560000pt;}
.y216{bottom:562.080000pt;}
.y170{bottom:562.720000pt;}
.y54{bottom:567.840000pt;}
.y1ba{bottom:568.160000pt;}
.yf6{bottom:569.440000pt;}
.y1d{bottom:571.360000pt;}
.y151{bottom:573.280000pt;}
.y84{bottom:574.560000pt;}
.y121{bottom:574.880000pt;}
.yd2{bottom:575.520000pt;}
.y1ed{bottom:576.160000pt;}
.y215{bottom:580.960000pt;}
.y1d4{bottom:581.280000pt;}
.y16f{bottom:583.200000pt;}
.y1b9{bottom:583.520000pt;}
.y1c{bottom:583.840000pt;}
.y53{bottom:585.440000pt;}
.yc7{bottom:589.600000pt;}
.yd1{bottom:590.240000pt;}
.y83{bottom:592.160000pt;}
.y11f{bottom:593.440000pt;}
.y1ec{bottom:593.760000pt;}
.y150{bottom:594.080000pt;}
.y1b{bottom:596.000000pt;}
.y1d3{bottom:596.640000pt;}
.y214{bottom:598.560000pt;}
.yf5{bottom:600.480000pt;}
.y52{bottom:603.040000pt;}
.y16e{bottom:604.000000pt;}
.y1a{bottom:608.160000pt;}
.y82{bottom:610.080000pt;}
.y1eb{bottom:610.400000pt;}
.y1d2{bottom:611.360000pt;}
.y1b8{bottom:614.240000pt;}
.y14e{bottom:614.560000pt;}
.yc6{bottom:615.200000pt;}
.y213{bottom:616.160000pt;}
.y11d{bottom:619.360000pt;}
.y19{bottom:620.640000pt;}
.y16d{bottom:624.506667pt;}
.y81{bottom:627.706667pt;}
.yf4{bottom:631.866667pt;}
.y18{bottom:632.826667pt;}
.y14d{bottom:635.386667pt;}
.y51{bottom:638.266667pt;}
.y11c{bottom:640.826667pt;}
.y1ea{bottom:644.026667pt;}
.y17{bottom:644.986667pt;}
.y80{bottom:645.306667pt;}
.yc5{bottom:650.426667pt;}
.y212{bottom:652.986667pt;}
.y50{bottom:655.866667pt;}
.y11b{bottom:659.066667pt;}
.y1e9{bottom:661.626667pt;}
.y7f{bottom:662.906667pt;}
.yf3{bottom:663.226667pt;}
.y1b7{bottom:665.786667pt;}
.y16c{bottom:666.106667pt;}
.y16{bottom:668.026667pt;}
.y211{bottom:670.586667pt;}
.y14c{bottom:676.666667pt;}
.y7e{bottom:680.506667pt;}
.y15{bottom:683.386667pt;}
.yc4{bottom:685.626667pt;}
.y16b{bottom:686.586667pt;}
.y4f{bottom:686.906667pt;}
.y210{bottom:689.466667pt;}
.yf2{bottom:694.586667pt;}
.y11a{bottom:695.226667pt;}
.y14b{bottom:697.146667pt;}
.y7d{bottom:698.106667pt;}
.y14{bottom:698.746667pt;}
.y1b6{bottom:699.386667pt;}
.yc3{bottom:703.226667pt;}
.y22f{bottom:705.786667pt;}
.y20f{bottom:707.066667pt;}
.y16a{bottom:707.386667pt;}
.y4e{bottom:711.866667pt;}
.y119{bottom:713.466667pt;}
.y13{bottom:715.706667pt;}
.y14a{bottom:717.946667pt;}
.yc2{bottom:721.146667pt;}
.y22e{bottom:723.386667pt;}
.yef{bottom:725.946667pt;}
.y168{bottom:727.866667pt;}
.y117{bottom:731.706667pt;}
.y1b5{bottom:732.986667pt;}
.y7c{bottom:733.306667pt;}
.y3b{bottom:733.946667pt;}
.yc1{bottom:738.786667pt;}
.y12{bottom:740.066667pt;}
.y22d{bottom:742.306667pt;}
.y20e{bottom:743.586667pt;}
.y116{bottom:749.986667pt;}
.y7b{bottom:750.946667pt;}
.yc0{bottom:756.386667pt;}
.y149{bottom:759.266667pt;}
.y20d{bottom:761.186667pt;}
.yed{bottom:761.506667pt;}
.y11{bottom:764.706667pt;}
.y1b4{bottom:766.626667pt;}
.y115{bottom:768.226667pt;}
.y7a{bottom:768.546667pt;}
.ybf{bottom:773.986667pt;}
.y22c{bottom:778.786667pt;}
.y148{bottom:780.066667pt;}
.y79{bottom:786.146667pt;}
.y113{bottom:786.466667pt;}
.y10{bottom:789.346667pt;}
.ybe{bottom:791.586667pt;}
.yec{bottom:792.546667pt;}
.y20c{bottom:797.666667pt;}
.y1b3{bottom:800.226667pt;}
.y147{bottom:800.546667pt;}
.y78{bottom:804.066667pt;}
.ybd{bottom:809.186667pt;}
.yf{bottom:813.666667pt;}
.y20b{bottom:815.266667pt;}
.y1b2{bottom:817.826667pt;}
.y146{bottom:821.346667pt;}
.y77{bottom:821.666667pt;}
.y112{bottom:822.626667pt;}
.yeb{bottom:823.906667pt;}
.ybc{bottom:826.786667pt;}
.y20a{bottom:834.146667pt;}
.y1b1{bottom:835.426667pt;}
.y9{bottom:836.706667pt;}
.y76{bottom:839.266667pt;}
.y110{bottom:840.866667pt;}
.y143{bottom:842.146667pt;}
.ybb{bottom:846.306667pt;}
.y209{bottom:851.773333pt;}
.y8{bottom:852.093333pt;}
.y1b0{bottom:853.053333pt;}
.yea{bottom:855.293333pt;}
.y75{bottom:856.893333pt;}
.ya4{bottom:859.453333pt;}
.y142{bottom:862.653333pt;}
.y7{bottom:864.573333pt;}
.y208{bottom:869.373333pt;}
.y1af{bottom:870.653333pt;}
.y74{bottom:874.493333pt;}
.y10f{bottom:876.733333pt;}
.ya3{bottom:877.053333pt;}
.y141{bottom:883.453333pt;}
.ye9{bottom:886.653333pt;}
.y1ae{bottom:888.253333pt;}
.y73{bottom:892.093333pt;}
.ya2{bottom:894.653333pt;}
.y140{bottom:903.933333pt;}
.yd0{bottom:905.533333pt;}
.y22b{bottom:905.853333pt;}
.y1ad{bottom:906.173333pt;}
.y72{bottom:909.693333pt;}
.ya1{bottom:912.253333pt;}
.y10e{bottom:912.893333pt;}
.y6{bottom:913.213333pt;}
.y1d1{bottom:914.173333pt;}
.ye8{bottom:918.013333pt;}
.ycf{bottom:923.453333pt;}
.y1ac{bottom:923.773333pt;}
.y13f{bottom:924.733333pt;}
.y22a{bottom:925.053333pt;}
.y71{bottom:927.293333pt;}
.ya0{bottom:929.853333pt;}
.y5{bottom:935.293333pt;}
.yce{bottom:940.733333pt;}
.y1ab{bottom:941.373333pt;}
.y207{bottom:942.653333pt;}
.y70{bottom:944.893333pt;}
.y13e{bottom:945.213333pt;}
.y9f{bottom:947.453333pt;}
.y10d{bottom:948.733333pt;}
.ye7{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y1aa{bottom:959.013333pt;}
.y206{bottom:960.293333pt;}
.y6f{bottom:962.533333pt;}
.y9e{bottom:965.413333pt;}
.y13d{bottom:966.053333pt;}
.y3{bottom:972.453333pt;}
.y205{bottom:979.173333pt;}
.y6e{bottom:980.453333pt;}
.y9d{bottom:984.613333pt;}
.y13c{bottom:986.853333pt;}
.y1a9{bottom:990.053333pt;}
.y2{bottom:990.693333pt;}
.ye6{bottom:996.773333pt;}
.y6d{bottom:998.053333pt;}
.y10b{bottom:1002.853333pt;}
.y1{bottom:1005.733333pt;}
.y13b{bottom:1007.333333pt;}
.y204{bottom:1014.373333pt;}
.y6c{bottom:1015.653333pt;}
.y3a{bottom:1036.773333pt;}
.y39{bottom:1049.253333pt;}
.y38{bottom:1067.813333pt;}
.y37{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h15{height:15.392000pt;}
.h19{height:17.600000pt;}
.h1e{height:17.632000pt;}
.h21{height:17.920000pt;}
.h24{height:19.840000pt;}
.h23{height:19.872000pt;}
.h22{height:20.160000pt;}
.h25{height:20.192000pt;}
.h1f{height:20.832000pt;}
.h1d{height:24.640000pt;}
.hc{height:25.067500pt;}
.h20{height:25.280000pt;}
.h17{height:30.400000pt;}
.h12{height:30.720000pt;}
.h16{height:30.752000pt;}
.h18{height:34.592000pt;}
.h1c{height:35.200000pt;}
.h1a{height:35.232000pt;}
.h1b{height:35.520000pt;}
.h14{height:37.642500pt;}
.hd{height:37.867500pt;}
.h5{height:40.090000pt;}
.h7{height:43.605000pt;}
.h10{height:44.310000pt;}
.h11{height:46.080000pt;}
.h13{height:46.112000pt;}
.h2{height:47.748750pt;}
.h4{height:48.195000pt;}
.h26{height:50.182500pt;}
.ha{height:52.455625pt;}
.h27{height:52.785000pt;}
.h3{height:56.843750pt;}
.hb{height:57.375000pt;}
.h28{height:58.563750pt;}
.h9{height:76.170625pt;}
.hf{height:292.253333pt;}
.he{height:386.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:34.912000pt;}
.w15{width:35.840000pt;}
.w19{width:35.872000pt;}
.w8{width:38.752000pt;}
.w13{width:56.032000pt;}
.w12{width:63.072000pt;}
.w16{width:83.232000pt;}
.w17{width:83.552000pt;}
.w1a{width:90.592000pt;}
.w1c{width:93.792000pt;}
.w1b{width:97.632000pt;}
.w1d{width:112.704000pt;}
.w1f{width:122.272000pt;}
.w10{width:127.104000pt;}
.w1e{width:131.584000pt;}
.w9{width:139.546667pt;}
.wa{width:141.186667pt;}
.wb{width:152.386667pt;}
.w18{width:161.026667pt;}
.wf{width:171.586667pt;}
.w14{width:176.733333pt;}
.wd{width:188.226667pt;}
.we{width:197.853333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w11{width:327.813333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.x9{left:7.680000pt;}
.x2d{left:8.960000pt;}
.x30{left:10.280000pt;}
.x29{left:13.120000pt;}
.x2b{left:15.360000pt;}
.x39{left:16.960000pt;}
.x2a{left:20.160000pt;}
.x28{left:22.080000pt;}
.x2c{left:26.586667pt;}
.x3b{left:27.520000pt;}
.x32{left:30.720000pt;}
.x3a{left:35.546667pt;}
.x36{left:37.480000pt;}
.x34{left:40.666667pt;}
.x38{left:41.626667pt;}
.x2f{left:50.594667pt;}
.x2e{left:56.680000pt;}
.x3c{left:67.240000pt;}
.x18{left:83.552000pt;}
.x3d{left:85.826667pt;}
.x7{left:94.431988pt;}
.xd{left:102.111988pt;}
.x42{left:104.031988pt;}
.xe{left:113.631988pt;}
.xf{left:116.223988pt;}
.x15{left:118.463988pt;}
.x1a{left:122.944000pt;}
.x1e{left:130.944000pt;}
.xc{left:134.466655pt;}
.x41{left:142.466655pt;}
.x11{left:160.706655pt;}
.xb{left:168.386655pt;}
.x2{left:226.013322pt;}
.x3f{left:227.293333pt;}
.x21{left:230.173333pt;}
.x10{left:235.613322pt;}
.x6{left:243.613322pt;}
.x1b{left:263.133333pt;}
.xa{left:270.533333pt;}
.x23{left:278.853333pt;}
.x31{left:299.653333pt;}
.x13{left:302.208000pt;}
.x24{left:315.333333pt;}
.x5{left:316.293322pt;}
.x1f{left:319.813333pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x40{left:359.520000pt;}
.x33{left:390.880000pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x25{left:399.200000pt;}
.x1c{left:404.960000pt;}
.x26{left:483.386667pt;}
.x35{left:489.146667pt;}
.x17{left:494.586655pt;}
.x20{left:518.306667pt;}
.x14{left:542.626655pt;}
.x1d{left:557.986667pt;}
.x27{left:567.586667pt;}
.x16{left:580.386655pt;}
.x37{left:583.906667pt;}
.x3e{left:586.466655pt;}
.x22{left:622.333333pt;}
.x1{left:699.493322pt;}
}




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