
    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_4348438bf42dc356fe76095c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8817e870f0b0c0762b4d0e6f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_046f3beeea535512f885dec2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877441;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_8d35e9b3d603a0667e242539.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.776855;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_621f022626ae553907267ef2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_cf60a8bfaadcd8ae2565f944.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_30be4a4205162aad328869b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.688965;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_b1c83192d918a9fa9ab47b91.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1cead54bb3a7329a561ab72c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_a90bd96b4fb9f6ea5c9446ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.333984;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_e7b3fa73e28a7625727be5f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:3.333984;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);}
.v5{vertical-align:-163.620000px;}
.vb{vertical-align:-28.080000px;}
.v9{vertical-align:-14.400000px;}
.ve{vertical-align:-10.800000px;}
.vd{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.vf{vertical-align:7.920000px;}
.va{vertical-align:14.400000px;}
.v4{vertical-align:21.600000px;}
.v6{vertical-align:26.640000px;}
.v12{vertical-align:36.720000px;}
.v1{vertical-align:41.760000px;}
.v2{vertical-align:47.520000px;}
.v8{vertical-align:55.620000px;}
.v7{vertical-align:58.500000px;}
.v11{vertical-align:59.760000px;}
.vc{vertical-align:62.640000px;}
.v10{vertical-align:70.560000px;}
.ls1e{letter-spacing:-1.512000px;}
.ls13{letter-spacing:-1.440000px;}
.ls21{letter-spacing:-0.936000px;}
.ls1a{letter-spacing:-0.744000px;}
.ls17{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.056880px;}
.ls19{letter-spacing:-0.023040px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.162000px;}
.ls16{letter-spacing:0.177840px;}
.ls20{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.273600px;}
.ls3{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls4{letter-spacing:2.160000px;}
.ls8{letter-spacing:2.801520px;}
.lsf{letter-spacing:2.877120px;}
.ls14{letter-spacing:12.384000px;}
.ls11{letter-spacing:17.921520px;}
.ls7{letter-spacing:18.641520px;}
.lse{letter-spacing:18.717120px;}
.lsc{letter-spacing:22.961520px;}
.lsb{letter-spacing:64.056000px;}
.lsd{letter-spacing:83.052000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-29.880000px;}
.ws7{word-spacing:-18.720000px;}
.ws2{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.280000px;}
.ws10{word-spacing:-17.064000px;}
.wsa{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.488000px;}
.ws1{word-spacing:-15.984000px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:420.975840px;}
._22{margin-left:-16.129680px;}
._4{margin-left:-6.590880px;}
._3{margin-left:-5.272560px;}
._28{margin-left:-4.243200px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.135440px;}
._0{width:1.434240px;}
._c{width:2.952000px;}
._e{width:3.991440px;}
._d{width:5.052000px;}
._f{width:6.421200px;}
._1e{width:7.749600px;}
._10{width:9.199440px;}
._a{width:10.656000px;}
._b{width:12.317760px;}
._1d{width:13.392000px;}
._19{width:15.092640px;}
._6{width:16.536000px;}
._7{width:19.152000px;}
._15{width:20.287440px;}
._1c{width:21.312000px;}
._16{width:22.392000px;}
._17{width:23.633760px;}
._18{width:24.774720px;}
._12{width:25.920000px;}
._1f{width:27.792000px;}
._20{width:28.872000px;}
._25{width:30.240000px;}
._4a{width:31.464000px;}
._2e{width:33.192000px;}
._11{width:34.560000px;}
._26{width:36.000000px;}
._4f{width:37.190880px;}
._13{width:38.280000px;}
._14{width:39.480000px;}
._1a{width:41.304000px;}
._50{width:43.128000px;}
._51{width:44.208000px;}
._52{width:45.216000px;}
._53{width:46.866960px;}
._5f{width:48.096000px;}
._56{width:49.231440px;}
._8{width:50.472000px;}
._9{width:51.552000px;}
._34{width:54.000000px;}
._57{width:55.152000px;}
._38{width:56.736000px;}
._3a{width:58.392000px;}
._5c{width:60.192000px;}
._35{width:62.623440px;}
._5b{width:63.952560px;}
._40{width:65.232000px;}
._45{width:66.528000px;}
._41{width:67.680000px;}
._61{width:68.760000px;}
._54{width:69.912000px;}
._55{width:71.352000px;}
._4e{width:72.504000px;}
._5e{width:74.478960px;}
._5a{width:75.528000px;}
._5d{width:77.976000px;}
._39{width:79.632000px;}
._60{width:81.864000px;}
._29{width:83.772000px;}
._3c{width:85.032000px;}
._64{width:86.976000px;}
._65{width:87.984000px;}
._47{width:89.136000px;}
._67{width:90.720000px;}
._62{width:92.232000px;}
._2d{width:96.768000px;}
._4b{width:98.424000px;}
._42{width:100.944000px;}
._46{width:103.680000px;}
._3d{width:109.512000px;}
._30{width:110.647440px;}
._24{width:122.128560px;}
._3e{width:127.495440px;}
._2b{width:131.544000px;}
._37{width:133.344000px;}
._44{width:134.640000px;}
._31{width:138.439440px;}
._3f{width:144.720000px;}
._2c{width:147.384000px;}
._27{width:153.480000px;}
._43{width:158.400000px;}
._21{width:162.000000px;}
._49{width:170.640000px;}
._4d{width:174.384000px;}
._3b{width:182.160000px;}
._36{width:185.976000px;}
._66{width:188.748000px;}
._4c{width:194.328000px;}
._1b{width:198.000000px;}
._48{width:206.424000px;}
._63{width:239.688000px;}
._23{width:275.148000px;}
._2f{width:278.712000px;}
._2a{width:302.003280px;}
._32{width:304.703280px;}
._33{width:370.812000px;}
._58{width:380.160000px;}
._59{width:381.600000px;}
._5{width:431.756880px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(31,31,31);}
.fc2{color:rgb(12,12,12);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.y10{bottom:-2.010000px;}
.y0{bottom:0.000000px;}
.y14{bottom:2.520000px;}
.ycb{bottom:4.125000px;}
.yd2{bottom:4.485000px;}
.ye0{bottom:4.500000px;}
.ye6{bottom:9.180000px;}
.yd6{bottom:10.785000px;}
.y202{bottom:14.565000px;}
.ycf{bottom:14.745000px;}
.y12{bottom:15.810000px;}
.y167{bottom:16.560000px;}
.ye3{bottom:19.620000px;}
.yd4{bottom:21.225000px;}
.yca{bottom:24.825000px;}
.y129{bottom:25.020000px;}
.yd0{bottom:25.185000px;}
.ydf{bottom:25.200000px;}
.y16e{bottom:25.230000px;}
.ye4{bottom:29.880000px;}
.yd5{bottom:31.485000px;}
.yce{bottom:35.445000px;}
.ydb{bottom:35.640000px;}
.y166{bottom:37.260000px;}
.yd8{bottom:37.785000px;}
.ye2{bottom:40.320000px;}
.yc9{bottom:45.570000px;}
.yd1{bottom:45.885000px;}
.ydc{bottom:45.900000px;}
.ycc{bottom:45.930000px;}
.ye{bottom:46.770000px;}
.y208{bottom:49.500000px;}
.ye5{bottom:50.580000px;}
.y13{bottom:53.640000px;}
.ye7{bottom:55.440000px;}
.yda{bottom:56.340000px;}
.yc{bottom:56.700000px;}
.y172{bottom:66.585000px;}
.yde{bottom:66.600000px;}
.y16d{bottom:66.630000px;}
.y207{bottom:70.200000px;}
.y16b{bottom:87.300000px;}
.ydd{bottom:87.330000px;}
.y169{bottom:87.345000px;}
.y206{bottom:90.930000px;}
.y205{bottom:111.630000px;}
.y6b{bottom:113.580000px;}
.y1a9{bottom:114.480000px;}
.y177{bottom:114.660000px;}
.y87{bottom:116.820000px;}
.yac{bottom:118.440000px;}
.y9f{bottom:119.880000px;}
.y1c7{bottom:120.780000px;}
.y163{bottom:121.320000px;}
.y21c{bottom:121.680000px;}
.y111{bottom:122.940000px;}
.y204{bottom:125.460000px;}
.y124{bottom:126.000000px;}
.y189{bottom:128.160000px;}
.y41{bottom:128.520000px;}
.yd9{bottom:130.680000px;}
.y140{bottom:131.040000px;}
.y6a{bottom:134.280000px;}
.y1a8{bottom:135.180000px;}
.y176{bottom:135.360000px;}
.y86{bottom:137.520000px;}
.yab{bottom:139.140000px;}
.y1f8{bottom:140.220000px;}
.y9e{bottom:140.580000px;}
.y1ed{bottom:141.300000px;}
.y1c6{bottom:141.480000px;}
.y162{bottom:141.840000px;}
.y21b{bottom:142.380000px;}
.y110{bottom:143.640000px;}
.y123{bottom:146.700000px;}
.y20c{bottom:146.880000px;}
.y188{bottom:148.860000px;}
.y40{bottom:149.220000px;}
.y13f{bottom:151.740000px;}
.y69{bottom:154.980000px;}
.y1a7{bottom:155.880000px;}
.y175{bottom:156.060000px;}
.yaa{bottom:159.840000px;}
.y1f7{bottom:160.920000px;}
.y9d{bottom:161.280000px;}
.y1ec{bottom:162.000000px;}
.y1c5{bottom:162.180000px;}
.y21a{bottom:163.080000px;}
.y10f{bottom:164.340000px;}
.y122{bottom:167.400000px;}
.y20b{bottom:168.300000px;}
.y187{bottom:169.560000px;}
.y3f{bottom:169.920000px;}
.y13e{bottom:172.440000px;}
.y174{bottom:173.520000px;}
.y68{bottom:175.500000px;}
.y1a6{bottom:176.580000px;}
.ya9{bottom:180.540000px;}
.y9c{bottom:181.980000px;}
.y1eb{bottom:182.340000px;}
.y1c4{bottom:182.880000px;}
.y219{bottom:183.420000px;}
.y10e{bottom:185.040000px;}
.y121{bottom:188.100000px;}
.y161{bottom:188.640000px;}
.y20a{bottom:189.720000px;}
.y186{bottom:190.260000px;}
.y3e{bottom:190.620000px;}
.y13d{bottom:193.140000px;}
.y1a5{bottom:197.280000px;}
.y1e7{bottom:201.240000px;}
.y9b{bottom:202.680000px;}
.y1ea{bottom:203.400000px;}
.y1c3{bottom:203.580000px;}
.y218{bottom:204.120000px;}
.y10d{bottom:205.770000px;}
.y120{bottom:208.830000px;}
.y160{bottom:209.370000px;}
.y185{bottom:210.990000px;}
.y209{bottom:211.185000px;}
.y3d{bottom:211.350000px;}
.y67{bottom:213.330000px;}
.y13c{bottom:213.870000px;}
.y1a4{bottom:218.010000px;}
.y1e6{bottom:221.970000px;}
.y9a{bottom:223.410000px;}
.y1e9{bottom:224.130000px;}
.y1c2{bottom:224.310000px;}
.y217{bottom:225.210000px;}
.y10c{bottom:226.470000px;}
.y11f{bottom:229.530000px;}
.y15f{bottom:230.070000px;}
.y184{bottom:231.690000px;}
.y3c{bottom:232.050000px;}
.y203{bottom:232.605000px;}
.y66{bottom:234.030000px;}
.y13b{bottom:234.570000px;}
.yd7{bottom:234.945000px;}
.y1ca{bottom:238.350000px;}
.y1a3{bottom:238.710000px;}
.y1e5{bottom:242.670000px;}
.y99{bottom:244.110000px;}
.y1c1{bottom:244.830000px;}
.y216{bottom:245.550000px;}
.y10b{bottom:247.170000px;}
.y11e{bottom:250.230000px;}
.y15e{bottom:250.770000px;}
.y183{bottom:252.390000px;}
.y3b{bottom:252.750000px;}
.y201{bottom:254.025000px;}
.y65{bottom:254.730000px;}
.y13a{bottom:255.270000px;}
.y1a2{bottom:259.410000px;}
.y215{bottom:262.110000px;}
.y1e4{bottom:263.370000px;}
.y98{bottom:264.810000px;}
.y1c0{bottom:265.530000px;}
.y10a{bottom:267.870000px;}
.y11d{bottom:270.930000px;}
.y15d{bottom:271.470000px;}
.y182{bottom:273.090000px;}
.y3a{bottom:273.450000px;}
.y64{bottom:275.430000px;}
.y139{bottom:275.970000px;}
.y173{bottom:277.785000px;}
.y1a1{bottom:280.110000px;}
.y1e3{bottom:284.070000px;}
.y1f6{bottom:285.330000px;}
.y97{bottom:285.510000px;}
.y1bf{bottom:286.230000px;}
.y109{bottom:288.570000px;}
.yd3{bottom:289.665000px;}
.y11c{bottom:291.630000px;}
.y15c{bottom:292.170000px;}
.y181{bottom:293.790000px;}
.y39{bottom:294.150000px;}
.y63{bottom:296.130000px;}
.y138{bottom:296.670000px;}
.y200{bottom:300.450000px;}
.y1a0{bottom:300.810000px;}
.y85{bottom:303.510000px;}
.y1e2{bottom:304.770000px;}
.y1f5{bottom:306.030000px;}
.y96{bottom:306.210000px;}
.y1be{bottom:306.930000px;}
.y108{bottom:309.270000px;}
.y11b{bottom:312.330000px;}
.y15b{bottom:312.870000px;}
.y180{bottom:314.130000px;}
.y38{bottom:314.850000px;}
.y62{bottom:316.830000px;}
.y137{bottom:317.370000px;}
.y19f{bottom:321.510000px;}
.y84{bottom:324.210000px;}
.y1e1{bottom:325.470000px;}
.y1f4{bottom:326.730000px;}
.y95{bottom:326.910000px;}
.y1bd{bottom:327.630000px;}
.y107{bottom:329.970000px;}
.y11a{bottom:332.670000px;}
.y15a{bottom:333.570000px;}
.y17f{bottom:335.190000px;}
.y37{bottom:335.550000px;}
.y61{bottom:337.530000px;}
.y136{bottom:338.070000px;}
.y19e{bottom:342.210000px;}
.ycd{bottom:344.385000px;}
.y83{bottom:344.910000px;}
.y1e0{bottom:346.170000px;}
.y1f3{bottom:347.430000px;}
.y94{bottom:347.610000px;}
.y1bc{bottom:348.330000px;}
.y106{bottom:350.670000px;}
.y119{bottom:353.730000px;}
.y159{bottom:354.270000px;}
.y17e{bottom:355.890000px;}
.y36{bottom:356.250000px;}
.y60{bottom:358.230000px;}
.y135{bottom:358.770000px;}
.y171{bottom:361.305000px;}
.y19d{bottom:362.910000px;}
.y82{bottom:365.610000px;}
.y1df{bottom:366.870000px;}
.y42{bottom:367.230000px;}
.y1f2{bottom:368.130000px;}
.y93{bottom:368.310000px;}
.y1bb{bottom:369.030000px;}
.y105{bottom:371.370000px;}
.y118{bottom:374.250000px;}
.y158{bottom:374.970000px;}
.y17d{bottom:376.590000px;}
.y35{bottom:376.950000px;}
.y5f{bottom:378.930000px;}
.y134{bottom:379.470000px;}
.y21e{bottom:383.250000px;}
.y19c{bottom:383.610000px;}
.y81{bottom:386.310000px;}
.y1de{bottom:387.570000px;}
.y1f1{bottom:388.830000px;}
.y92{bottom:389.010000px;}
.y1ba{bottom:389.730000px;}
.y104{bottom:392.070000px;}
.y157{bottom:395.670000px;}
.y17c{bottom:397.290000px;}
.y34{bottom:397.650000px;}
.y5e{bottom:399.630000px;}
.y133{bottom:400.170000px;}
.y21d{bottom:403.950000px;}
.y19b{bottom:404.310000px;}
.y80{bottom:407.010000px;}
.yc8{bottom:407.205000px;}
.y1dd{bottom:408.270000px;}
.y1f0{bottom:409.530000px;}
.y91{bottom:409.710000px;}
.y1b9{bottom:410.430000px;}
.y103{bottom:412.770000px;}
.y156{bottom:416.370000px;}
.y17b{bottom:417.810000px;}
.y33{bottom:418.350000px;}
.y5d{bottom:420.150000px;}
.y132{bottom:420.870000px;}
.y19a{bottom:425.010000px;}
.y7f{bottom:427.710000px;}
.y1dc{bottom:428.970000px;}
.y1ef{bottom:430.230000px;}
.y90{bottom:430.410000px;}
.y1b8{bottom:431.130000px;}
.y102{bottom:433.470000px;}
.y155{bottom:437.070000px;}
.y32{bottom:439.050000px;}
.y131{bottom:441.615000px;}
.y199{bottom:445.755000px;}
.y1ee{bottom:446.475000px;}
.y7e{bottom:448.455000px;}
.y1db{bottom:449.715000px;}
.y8f{bottom:450.795000px;}
.y1b7{bottom:451.875000px;}
.y101{bottom:454.215000px;}
.y154{bottom:457.815000px;}
.y31{bottom:459.435000px;}
.y130{bottom:462.315000px;}
.y170{bottom:465.555000px;}
.y198{bottom:466.455000px;}
.y7d{bottom:469.155000px;}
.y1da{bottom:470.415000px;}
.y8e{bottom:471.855000px;}
.y1b6{bottom:472.575000px;}
.yc7{bottom:474.555000px;}
.y100{bottom:474.915000px;}
.y153{bottom:478.335000px;}
.y30{bottom:480.495000px;}
.y12f{bottom:483.015000px;}
.y197{bottom:487.155000px;}
.y5c{bottom:489.495000px;}
.y7c{bottom:489.855000px;}
.y1d9{bottom:491.115000px;}
.y8d{bottom:492.555000px;}
.y1b5{bottom:493.275000px;}
.yc6{bottom:495.255000px;}
.yff{bottom:495.615000px;}
.y2f{bottom:501.195000px;}
.y12e{bottom:503.355000px;}
.y17a{bottom:504.975000px;}
.y1c9{bottom:507.495000px;}
.y196{bottom:507.855000px;}
.y8c{bottom:508.755000px;}
.y5b{bottom:510.195000px;}
.y7b{bottom:510.555000px;}
.y1d8{bottom:511.815000px;}
.y1b4{bottom:513.975000px;}
.yc5{bottom:515.595000px;}
.yfe{bottom:516.315000px;}
.y2e{bottom:521.535000px;}
.y12d{bottom:524.415000px;}
.y152{bottom:525.135000px;}
.y1c8{bottom:528.015000px;}
.y195{bottom:528.375000px;}
.y5a{bottom:530.895000px;}
.y7a{bottom:531.255000px;}
.y1d7{bottom:532.515000px;}
.y1b3{bottom:534.675000px;}
.yc4{bottom:536.655000px;}
.yfd{bottom:537.015000px;}
.y12c{bottom:541.335000px;}
.y2d{bottom:542.595000px;}
.y151{bottom:545.835000px;}
.y1ff{bottom:548.715000px;}
.y194{bottom:549.075000px;}
.y59{bottom:551.595000px;}
.y79{bottom:551.955000px;}
.y1d6{bottom:553.215000px;}
.y1b2{bottom:555.375000px;}
.yc3{bottom:557.355000px;}
.yfc{bottom:557.715000px;}
.y2c{bottom:563.295000px;}
.y150{bottom:566.535000px;}
.y1fe{bottom:569.415000px;}
.y16f{bottom:569.775000px;}
.y58{bottom:572.295000px;}
.y78{bottom:572.655000px;}
.y1d5{bottom:573.915000px;}
.y1b1{bottom:576.075000px;}
.yfb{bottom:577.875000px;}
.yc2{bottom:578.055000px;}
.y2b{bottom:583.635000px;}
.y214{bottom:584.895000px;}
.y14f{bottom:587.235000px;}
.yfa{bottom:587.415000px;}
.y193{bottom:590.475000px;}
.y1e8{bottom:592.275000px;}
.y57{bottom:592.995000px;}
.y77{bottom:593.355000px;}
.y1d4{bottom:594.255000px;}
.y1b0{bottom:596.775000px;}
.yc1{bottom:598.755000px;}
.y2a{bottom:604.695000px;}
.y213{bottom:605.235000px;}
.y14e{bottom:607.935000px;}
.y192{bottom:611.175000px;}
.y56{bottom:613.695000px;}
.yf9{bottom:613.875000px;}
.y76{bottom:614.055000px;}
.y1d3{bottom:614.955000px;}
.y1af{bottom:617.475000px;}
.yc0{bottom:619.455000px;}
.y12b{bottom:624.855000px;}
.y29{bottom:625.395000px;}
.y212{bottom:626.295000px;}
.y14d{bottom:628.275000px;}
.y191{bottom:631.875000px;}
.y55{bottom:634.395000px;}
.yf8{bottom:634.575000px;}
.y75{bottom:634.755000px;}
.y1d2{bottom:636.015000px;}
.y1ae{bottom:638.175000px;}
.ybf{bottom:640.155000px;}
.y28{bottom:645.735000px;}
.y211{bottom:646.635000px;}
.y14c{bottom:649.155000px;}
.y190{bottom:652.575000px;}
.y16c{bottom:653.295000px;}
.y54{bottom:655.095000px;}
.yf7{bottom:655.275000px;}
.y74{bottom:655.455000px;}
.y1d1{bottom:656.715000px;}
.y1ad{bottom:658.875000px;}
.ybe{bottom:660.855000px;}
.y210{bottom:663.375000px;}
.y27{bottom:666.795000px;}
.y1f9{bottom:672.915000px;}
.y18f{bottom:673.275000px;}
.y53{bottom:675.825000px;}
.yf6{bottom:676.005000px;}
.y73{bottom:676.185000px;}
.y1d0{bottom:677.445000px;}
.y1ac{bottom:679.605000px;}
.ybd{bottom:681.585000px;}
.y14b{bottom:686.985000px;}
.y26{bottom:687.525000px;}
.y12a{bottom:687.705000px;}
.y18e{bottom:694.005000px;}
.y52{bottom:696.525000px;}
.yf5{bottom:696.705000px;}
.y1cf{bottom:698.145000px;}
.y1ab{bottom:700.305000px;}
.ybc{bottom:702.285000px;}
.y14a{bottom:707.685000px;}
.y25{bottom:707.865000px;}
.y18d{bottom:714.705000px;}
.y1aa{bottom:716.505000px;}
.y51{bottom:717.225000px;}
.y1ce{bottom:718.485000px;}
.ybb{bottom:722.985000px;}
.y149{bottom:728.385000px;}
.y24{bottom:728.925000px;}
.y72{bottom:734.865000px;}
.y1fd{bottom:735.045000px;}
.y18c{bottom:735.405000px;}
.y16a{bottom:736.845000px;}
.y50{bottom:737.925000px;}
.y1cd{bottom:739.545000px;}
.yba{bottom:743.685000px;}
.y71{bottom:746.745000px;}
.y148{bottom:749.085000px;}
.y23{bottom:749.625000px;}
.y1fc{bottom:755.745000px;}
.y18b{bottom:756.105000px;}
.y4f{bottom:758.625000px;}
.y1cc{bottom:760.245000px;}
.yf4{bottom:764.025000px;}
.yb9{bottom:764.385000px;}
.y147{bottom:769.785000px;}
.y22{bottom:769.965000px;}
.y128{bottom:771.405000px;}
.y1cb{bottom:776.445000px;}
.y70{bottom:776.805000px;}
.y4e{bottom:778.965000px;}
.y117{bottom:779.325000px;}
.yf3{bottom:784.725000px;}
.yb8{bottom:785.085000px;}
.y146{bottom:790.485000px;}
.y21{bottom:791.025000px;}
.ya8{bottom:792.105000px;}
.y18a{bottom:797.145000px;}
.y6f{bottom:797.505000px;}
.y179{bottom:799.845000px;}
.y116{bottom:800.025000px;}
.yf2{bottom:805.425000px;}
.yb7{bottom:805.785000px;}
.y145{bottom:811.185000px;}
.y20{bottom:811.545000px;}
.ya7{bottom:812.805000px;}
.y127{bottom:818.025000px;}
.y6e{bottom:818.205000px;}
.y115{bottom:820.725000px;}
.y4d{bottom:820.905000px;}
.yf1{bottom:826.125000px;}
.yb6{bottom:826.485000px;}
.y1f{bottom:831.885000px;}
.ya6{bottom:833.505000px;}
.y126{bottom:838.725000px;}
.y6d{bottom:838.905000px;}
.y168{bottom:841.065000px;}
.y114{bottom:841.425000px;}
.y4c{bottom:841.605000px;}
.yf0{bottom:846.825000px;}
.yb5{bottom:847.185000px;}
.y144{bottom:852.585000px;}
.y1e{bottom:852.945000px;}
.ya5{bottom:854.205000px;}
.y125{bottom:859.245000px;}
.y6c{bottom:859.605000px;}
.y113{bottom:861.765000px;}
.yef{bottom:867.165000px;}
.yb4{bottom:867.885000px;}
.y143{bottom:873.285000px;}
.y1d{bottom:873.645000px;}
.ya4{bottom:874.905000px;}
.y4b{bottom:880.305000px;}
.y112{bottom:882.645000px;}
.yb3{bottom:883.905000px;}
.yee{bottom:888.225000px;}
.yb0{bottom:889.485000px;}
.yb1{bottom:892.185000px;}
.y1c{bottom:893.985000px;}
.yb2{bottom:895.425000px;}
.ya3{bottom:895.605000px;}
.y8b{bottom:895.785000px;}
.y4a{bottom:901.005000px;}
.yaf{bottom:911.130000px;}
.yed{bottom:911.850000px;}
.yea{bottom:914.730000px;}
.y1b{bottom:915.090000px;}
.ya2{bottom:916.350000px;}
.y8a{bottom:916.530000px;}
.yad{bottom:918.870000px;}
.y49{bottom:921.750000px;}
.yae{bottom:922.650000px;}
.ye9{bottom:926.790000px;}
.yeb{bottom:930.210000px;}
.y142{bottom:935.070000px;}
.y1a{bottom:935.790000px;}
.ya1{bottom:937.050000px;}
.y89{bottom:937.230000px;}
.y1fb{bottom:942.090000px;}
.y48{bottom:942.450000px;}
.yec{bottom:945.150000px;}
.y165{bottom:945.510000px;}
.y19{bottom:956.130000px;}
.y88{bottom:957.750000px;}
.y1fa{bottom:962.790000px;}
.y47{bottom:963.150000px;}
.ye8{bottom:972.870000px;}
.y141{bottom:976.650000px;}
.y18{bottom:976.830000px;}
.ya0{bottom:978.810000px;}
.y46{bottom:983.850000px;}
.ye1{bottom:989.790000px;}
.y17{bottom:994.470000px;}
.y20f{bottom:1003.110000px;}
.y164{bottom:1004.190000px;}
.y45{bottom:1004.550000px;}
.y16{bottom:1018.590000px;}
.y20e{bottom:1023.810000px;}
.y44{bottom:1025.250000px;}
.y20d{bottom:1040.730000px;}
.y15{bottom:1042.710000px;}
.y178{bottom:1045.590000px;}
.y43{bottom:1045.950000px;}
.yd{bottom:1056.780000px;}
.yb{bottom:1065.030000px;}
.yf{bottom:1073.850000px;}
.ya{bottom:1081.230000px;}
.y11{bottom:1088.820000px;}
.y9{bottom:1097.610000px;}
.y8{bottom:1113.810000px;}
.y7{bottom:1130.190000px;}
.y6{bottom:1146.420000px;}
.y5{bottom:1162.800000px;}
.y2{bottom:1176.300000px;}
.y4{bottom:1179.000000px;}
.y3{bottom:1195.380000px;}
.y1{bottom:1197.000000px;}
.ha{height:16.200000px;}
.h2a{height:20.685000px;}
.h2e{height:20.695500px;}
.h2d{height:20.700000px;}
.h2c{height:20.736000px;}
.h9{height:29.700000px;}
.h7{height:31.952109px;}
.h6{height:39.247031px;}
.hc{height:40.472227px;}
.h4{height:41.027344px;}
.h1f{height:41.220000px;}
.h29{height:41.385000px;}
.h2{height:42.602344px;}
.h8{height:50.326875px;}
.h3{height:51.328125px;}
.h23{height:52.066406px;}
.h24{height:53.820000px;}
.h17{height:53.985000px;}
.h5{height:58.860000px;}
.h16{height:62.085000px;}
.h15{height:62.121000px;}
.h21{height:62.130000px;}
.hf{height:66.757500px;}
.he{height:70.664062px;}
.h19{height:71.640000px;}
.hd{height:72.562500px;}
.h22{height:82.785000px;}
.h20{height:82.800000px;}
.h26{height:82.830000px;}
.hb{height:84.898125px;}
.h13{height:101.915508px;}
.h27{height:103.485000px;}
.h25{height:103.500000px;}
.h28{height:103.521000px;}
.h18{height:103.536000px;}
.h1e{height:108.824062px;}
.h2b{height:127.836000px;}
.h11{height:143.542969px;}
.h1d{height:144.395508px;}
.h12{height:145.702969px;}
.h10{height:185.302969px;}
.h1b{height:191.782969px;}
.h1a{height:198.262969px;}
.h1c{height:203.302969px;}
.h14{height:214.102969px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1b{width:53.265000px;}
.w16{width:55.620000px;}
.w4{width:63.000000px;}
.w10{width:69.291000px;}
.wb{width:72.351000px;}
.wa{width:75.405000px;}
.w18{width:80.085000px;}
.w19{width:80.121000px;}
.w15{width:86.931000px;}
.w1a{width:91.245000px;}
.w9{width:93.441000px;}
.w6{width:94.356000px;}
.w7{width:98.460000px;}
.w17{width:100.476000px;}
.w5{width:105.831000px;}
.wc{width:130.356000px;}
.w11{width:133.776000px;}
.w13{width:144.705000px;}
.wd{width:145.476000px;}
.w12{width:146.736000px;}
.we{width:147.405000px;}
.wf{width:159.315000px;}
.w14{width:160.395000px;}
.w8{width:186.510000px;}
.w2{width:330.660000px;}
.w3{width:403.920000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:2.880000px;}
.x32{left:6.120000px;}
.x19{left:7.740000px;}
.x5{left:10.800000px;}
.x3f{left:13.725000px;}
.x8{left:15.225000px;}
.x39{left:16.545000px;}
.x41{left:18.225000px;}
.x40{left:19.785000px;}
.x43{left:23.265000px;}
.x34{left:24.705000px;}
.x3d{left:27.720000px;}
.x3b{left:30.780000px;}
.x42{left:32.394000px;}
.x36{left:35.460000px;}
.x4{left:59.220000px;}
.x6{left:70.020000px;}
.x18{left:117.576000px;}
.x30{left:119.556000px;}
.x3{left:135.036000px;}
.xa{left:140.076000px;}
.x1f{left:147.276000px;}
.xb{left:149.796000px;}
.x13{left:164.190000px;}
.x2a{left:187.770000px;}
.x46{left:189.030000px;}
.x26{left:190.650000px;}
.x10{left:194.610000px;}
.x23{left:197.310000px;}
.x1{left:204.150000px;}
.x31{left:207.210000px;}
.x1a{left:224.130000px;}
.x20{left:233.490000px;}
.x16{left:234.570000px;}
.x15{left:246.450000px;}
.x33{left:263.730000px;}
.xc{left:271.155000px;}
.xe{left:292.575000px;}
.x14{left:310.575000px;}
.x17{left:313.815000px;}
.x1b{left:319.215000px;}
.x27{left:321.735000px;}
.x21{left:334.695000px;}
.x24{left:339.735000px;}
.x22{left:344.235000px;}
.x35{left:364.935000px;}
.xd{left:406.875000px;}
.x11{left:411.735000px;}
.x9{left:414.900000px;}
.x1c{left:418.395000px;}
.xf{left:445.605000px;}
.x37{left:466.320000px;}
.x28{left:467.940000px;}
.x2b{left:469.740000px;}
.x2{left:475.305000px;}
.x7{left:487.260000px;}
.x25{left:490.605000px;}
.x38{left:547.320000px;}
.x1d{left:605.640000px;}
.x2e{left:609.765000px;}
.x29{left:616.080000px;}
.x3a{left:628.350000px;}
.x2c{left:654.810000px;}
.x2d{left:666.150000px;}
.x12{left:675.150000px;}
.x1e{left:699.990000px;}
.x44{left:715.650000px;}
.x3c{left:720.330000px;}
.x45{left:841.680000px;}
.x2f{left:870.840000px;}
@media print{
.v5{vertical-align:-145.440000pt;}
.vb{vertical-align:-24.960000pt;}
.v9{vertical-align:-12.800000pt;}
.ve{vertical-align:-9.600000pt;}
.vd{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.vf{vertical-align:7.040000pt;}
.va{vertical-align:12.800000pt;}
.v4{vertical-align:19.200000pt;}
.v6{vertical-align:23.680000pt;}
.v12{vertical-align:32.640000pt;}
.v1{vertical-align:37.120000pt;}
.v2{vertical-align:42.240000pt;}
.v8{vertical-align:49.440000pt;}
.v7{vertical-align:52.000000pt;}
.v11{vertical-align:53.120000pt;}
.vc{vertical-align:55.680000pt;}
.v10{vertical-align:62.720000pt;}
.ls1e{letter-spacing:-1.344000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls1a{letter-spacing:-0.661333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.050560pt;}
.ls19{letter-spacing:-0.020480pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.144000pt;}
.ls16{letter-spacing:0.158080pt;}
.ls20{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.243200pt;}
.ls3{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls4{letter-spacing:1.920000pt;}
.ls8{letter-spacing:2.490240pt;}
.lsf{letter-spacing:2.557440pt;}
.ls14{letter-spacing:11.008000pt;}
.ls11{letter-spacing:15.930240pt;}
.ls7{letter-spacing:16.570240pt;}
.lse{letter-spacing:16.637440pt;}
.lsc{letter-spacing:20.410240pt;}
.lsb{letter-spacing:56.938667pt;}
.lsd{letter-spacing:73.824000pt;}
.ws8{word-spacing:-26.560000pt;}
.ws7{word-spacing:-16.640000pt;}
.ws2{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.360000pt;}
.ws10{word-spacing:-15.168000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.208000pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:374.200747pt;}
._22{margin-left:-14.337493pt;}
._4{margin-left:-5.858560pt;}
._3{margin-left:-4.686720pt;}
._28{margin-left:-3.771733pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.009280pt;}
._0{width:1.274880pt;}
._c{width:2.624000pt;}
._e{width:3.547947pt;}
._d{width:4.490667pt;}
._f{width:5.707733pt;}
._1e{width:6.888533pt;}
._10{width:8.177280pt;}
._a{width:9.472000pt;}
._b{width:10.949120pt;}
._1d{width:11.904000pt;}
._19{width:13.415680pt;}
._6{width:14.698667pt;}
._7{width:17.024000pt;}
._15{width:18.033280pt;}
._1c{width:18.944000pt;}
._16{width:19.904000pt;}
._17{width:21.007787pt;}
._18{width:22.021973pt;}
._12{width:23.040000pt;}
._1f{width:24.704000pt;}
._20{width:25.664000pt;}
._25{width:26.880000pt;}
._4a{width:27.968000pt;}
._2e{width:29.504000pt;}
._11{width:30.720000pt;}
._26{width:32.000000pt;}
._4f{width:33.058560pt;}
._13{width:34.026667pt;}
._14{width:35.093333pt;}
._1a{width:36.714667pt;}
._50{width:38.336000pt;}
._51{width:39.296000pt;}
._52{width:40.192000pt;}
._53{width:41.659520pt;}
._5f{width:42.752000pt;}
._56{width:43.761280pt;}
._8{width:44.864000pt;}
._9{width:45.824000pt;}
._34{width:48.000000pt;}
._57{width:49.024000pt;}
._38{width:50.432000pt;}
._3a{width:51.904000pt;}
._5c{width:53.504000pt;}
._35{width:55.665280pt;}
._5b{width:56.846720pt;}
._40{width:57.984000pt;}
._45{width:59.136000pt;}
._41{width:60.160000pt;}
._61{width:61.120000pt;}
._54{width:62.144000pt;}
._55{width:63.424000pt;}
._4e{width:64.448000pt;}
._5e{width:66.203520pt;}
._5a{width:67.136000pt;}
._5d{width:69.312000pt;}
._39{width:70.784000pt;}
._60{width:72.768000pt;}
._29{width:74.464000pt;}
._3c{width:75.584000pt;}
._64{width:77.312000pt;}
._65{width:78.208000pt;}
._47{width:79.232000pt;}
._67{width:80.640000pt;}
._62{width:81.984000pt;}
._2d{width:86.016000pt;}
._4b{width:87.488000pt;}
._42{width:89.728000pt;}
._46{width:92.160000pt;}
._3d{width:97.344000pt;}
._30{width:98.353280pt;}
._24{width:108.558720pt;}
._3e{width:113.329280pt;}
._2b{width:116.928000pt;}
._37{width:118.528000pt;}
._44{width:119.680000pt;}
._31{width:123.057280pt;}
._3f{width:128.640000pt;}
._2c{width:131.008000pt;}
._27{width:136.426667pt;}
._43{width:140.800000pt;}
._21{width:144.000000pt;}
._49{width:151.680000pt;}
._4d{width:155.008000pt;}
._3b{width:161.920000pt;}
._36{width:165.312000pt;}
._66{width:167.776000pt;}
._4c{width:172.736000pt;}
._1b{width:176.000000pt;}
._48{width:183.488000pt;}
._63{width:213.056000pt;}
._23{width:244.576000pt;}
._2f{width:247.744000pt;}
._2a{width:268.447360pt;}
._32{width:270.847360pt;}
._33{width:329.610667pt;}
._58{width:337.920000pt;}
._59{width:339.200000pt;}
._5{width:383.783893pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.y10{bottom:-1.786667pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:2.240000pt;}
.ycb{bottom:3.666667pt;}
.yd2{bottom:3.986667pt;}
.ye0{bottom:4.000000pt;}
.ye6{bottom:8.160000pt;}
.yd6{bottom:9.586667pt;}
.y202{bottom:12.946667pt;}
.ycf{bottom:13.106667pt;}
.y12{bottom:14.053333pt;}
.y167{bottom:14.720000pt;}
.ye3{bottom:17.440000pt;}
.yd4{bottom:18.866667pt;}
.yca{bottom:22.066667pt;}
.y129{bottom:22.240000pt;}
.yd0{bottom:22.386667pt;}
.ydf{bottom:22.400000pt;}
.y16e{bottom:22.426667pt;}
.ye4{bottom:26.560000pt;}
.yd5{bottom:27.986667pt;}
.yce{bottom:31.506667pt;}
.ydb{bottom:31.680000pt;}
.y166{bottom:33.120000pt;}
.yd8{bottom:33.586667pt;}
.ye2{bottom:35.840000pt;}
.yc9{bottom:40.506667pt;}
.yd1{bottom:40.786667pt;}
.ydc{bottom:40.800000pt;}
.ycc{bottom:40.826667pt;}
.ye{bottom:41.573333pt;}
.y208{bottom:44.000000pt;}
.ye5{bottom:44.960000pt;}
.y13{bottom:47.680000pt;}
.ye7{bottom:49.280000pt;}
.yda{bottom:50.080000pt;}
.yc{bottom:50.400000pt;}
.y172{bottom:59.186667pt;}
.yde{bottom:59.200000pt;}
.y16d{bottom:59.226667pt;}
.y207{bottom:62.400000pt;}
.y16b{bottom:77.600000pt;}
.ydd{bottom:77.626667pt;}
.y169{bottom:77.640000pt;}
.y206{bottom:80.826667pt;}
.y205{bottom:99.226667pt;}
.y6b{bottom:100.960000pt;}
.y1a9{bottom:101.760000pt;}
.y177{bottom:101.920000pt;}
.y87{bottom:103.840000pt;}
.yac{bottom:105.280000pt;}
.y9f{bottom:106.560000pt;}
.y1c7{bottom:107.360000pt;}
.y163{bottom:107.840000pt;}
.y21c{bottom:108.160000pt;}
.y111{bottom:109.280000pt;}
.y204{bottom:111.520000pt;}
.y124{bottom:112.000000pt;}
.y189{bottom:113.920000pt;}
.y41{bottom:114.240000pt;}
.yd9{bottom:116.160000pt;}
.y140{bottom:116.480000pt;}
.y6a{bottom:119.360000pt;}
.y1a8{bottom:120.160000pt;}
.y176{bottom:120.320000pt;}
.y86{bottom:122.240000pt;}
.yab{bottom:123.680000pt;}
.y1f8{bottom:124.640000pt;}
.y9e{bottom:124.960000pt;}
.y1ed{bottom:125.600000pt;}
.y1c6{bottom:125.760000pt;}
.y162{bottom:126.080000pt;}
.y21b{bottom:126.560000pt;}
.y110{bottom:127.680000pt;}
.y123{bottom:130.400000pt;}
.y20c{bottom:130.560000pt;}
.y188{bottom:132.320000pt;}
.y40{bottom:132.640000pt;}
.y13f{bottom:134.880000pt;}
.y69{bottom:137.760000pt;}
.y1a7{bottom:138.560000pt;}
.y175{bottom:138.720000pt;}
.yaa{bottom:142.080000pt;}
.y1f7{bottom:143.040000pt;}
.y9d{bottom:143.360000pt;}
.y1ec{bottom:144.000000pt;}
.y1c5{bottom:144.160000pt;}
.y21a{bottom:144.960000pt;}
.y10f{bottom:146.080000pt;}
.y122{bottom:148.800000pt;}
.y20b{bottom:149.600000pt;}
.y187{bottom:150.720000pt;}
.y3f{bottom:151.040000pt;}
.y13e{bottom:153.280000pt;}
.y174{bottom:154.240000pt;}
.y68{bottom:156.000000pt;}
.y1a6{bottom:156.960000pt;}
.ya9{bottom:160.480000pt;}
.y9c{bottom:161.760000pt;}
.y1eb{bottom:162.080000pt;}
.y1c4{bottom:162.560000pt;}
.y219{bottom:163.040000pt;}
.y10e{bottom:164.480000pt;}
.y121{bottom:167.200000pt;}
.y161{bottom:167.680000pt;}
.y20a{bottom:168.640000pt;}
.y186{bottom:169.120000pt;}
.y3e{bottom:169.440000pt;}
.y13d{bottom:171.680000pt;}
.y1a5{bottom:175.360000pt;}
.y1e7{bottom:178.880000pt;}
.y9b{bottom:180.160000pt;}
.y1ea{bottom:180.800000pt;}
.y1c3{bottom:180.960000pt;}
.y218{bottom:181.440000pt;}
.y10d{bottom:182.906667pt;}
.y120{bottom:185.626667pt;}
.y160{bottom:186.106667pt;}
.y185{bottom:187.546667pt;}
.y209{bottom:187.720000pt;}
.y3d{bottom:187.866667pt;}
.y67{bottom:189.626667pt;}
.y13c{bottom:190.106667pt;}
.y1a4{bottom:193.786667pt;}
.y1e6{bottom:197.306667pt;}
.y9a{bottom:198.586667pt;}
.y1e9{bottom:199.226667pt;}
.y1c2{bottom:199.386667pt;}
.y217{bottom:200.186667pt;}
.y10c{bottom:201.306667pt;}
.y11f{bottom:204.026667pt;}
.y15f{bottom:204.506667pt;}
.y184{bottom:205.946667pt;}
.y3c{bottom:206.266667pt;}
.y203{bottom:206.760000pt;}
.y66{bottom:208.026667pt;}
.y13b{bottom:208.506667pt;}
.yd7{bottom:208.840000pt;}
.y1ca{bottom:211.866667pt;}
.y1a3{bottom:212.186667pt;}
.y1e5{bottom:215.706667pt;}
.y99{bottom:216.986667pt;}
.y1c1{bottom:217.626667pt;}
.y216{bottom:218.266667pt;}
.y10b{bottom:219.706667pt;}
.y11e{bottom:222.426667pt;}
.y15e{bottom:222.906667pt;}
.y183{bottom:224.346667pt;}
.y3b{bottom:224.666667pt;}
.y201{bottom:225.800000pt;}
.y65{bottom:226.426667pt;}
.y13a{bottom:226.906667pt;}
.y1a2{bottom:230.586667pt;}
.y215{bottom:232.986667pt;}
.y1e4{bottom:234.106667pt;}
.y98{bottom:235.386667pt;}
.y1c0{bottom:236.026667pt;}
.y10a{bottom:238.106667pt;}
.y11d{bottom:240.826667pt;}
.y15d{bottom:241.306667pt;}
.y182{bottom:242.746667pt;}
.y3a{bottom:243.066667pt;}
.y64{bottom:244.826667pt;}
.y139{bottom:245.306667pt;}
.y173{bottom:246.920000pt;}
.y1a1{bottom:248.986667pt;}
.y1e3{bottom:252.506667pt;}
.y1f6{bottom:253.626667pt;}
.y97{bottom:253.786667pt;}
.y1bf{bottom:254.426667pt;}
.y109{bottom:256.506667pt;}
.yd3{bottom:257.480000pt;}
.y11c{bottom:259.226667pt;}
.y15c{bottom:259.706667pt;}
.y181{bottom:261.146667pt;}
.y39{bottom:261.466667pt;}
.y63{bottom:263.226667pt;}
.y138{bottom:263.706667pt;}
.y200{bottom:267.066667pt;}
.y1a0{bottom:267.386667pt;}
.y85{bottom:269.786667pt;}
.y1e2{bottom:270.906667pt;}
.y1f5{bottom:272.026667pt;}
.y96{bottom:272.186667pt;}
.y1be{bottom:272.826667pt;}
.y108{bottom:274.906667pt;}
.y11b{bottom:277.626667pt;}
.y15b{bottom:278.106667pt;}
.y180{bottom:279.226667pt;}
.y38{bottom:279.866667pt;}
.y62{bottom:281.626667pt;}
.y137{bottom:282.106667pt;}
.y19f{bottom:285.786667pt;}
.y84{bottom:288.186667pt;}
.y1e1{bottom:289.306667pt;}
.y1f4{bottom:290.426667pt;}
.y95{bottom:290.586667pt;}
.y1bd{bottom:291.226667pt;}
.y107{bottom:293.306667pt;}
.y11a{bottom:295.706667pt;}
.y15a{bottom:296.506667pt;}
.y17f{bottom:297.946667pt;}
.y37{bottom:298.266667pt;}
.y61{bottom:300.026667pt;}
.y136{bottom:300.506667pt;}
.y19e{bottom:304.186667pt;}
.ycd{bottom:306.120000pt;}
.y83{bottom:306.586667pt;}
.y1e0{bottom:307.706667pt;}
.y1f3{bottom:308.826667pt;}
.y94{bottom:308.986667pt;}
.y1bc{bottom:309.626667pt;}
.y106{bottom:311.706667pt;}
.y119{bottom:314.426667pt;}
.y159{bottom:314.906667pt;}
.y17e{bottom:316.346667pt;}
.y36{bottom:316.666667pt;}
.y60{bottom:318.426667pt;}
.y135{bottom:318.906667pt;}
.y171{bottom:321.160000pt;}
.y19d{bottom:322.586667pt;}
.y82{bottom:324.986667pt;}
.y1df{bottom:326.106667pt;}
.y42{bottom:326.426667pt;}
.y1f2{bottom:327.226667pt;}
.y93{bottom:327.386667pt;}
.y1bb{bottom:328.026667pt;}
.y105{bottom:330.106667pt;}
.y118{bottom:332.666667pt;}
.y158{bottom:333.306667pt;}
.y17d{bottom:334.746667pt;}
.y35{bottom:335.066667pt;}
.y5f{bottom:336.826667pt;}
.y134{bottom:337.306667pt;}
.y21e{bottom:340.666667pt;}
.y19c{bottom:340.986667pt;}
.y81{bottom:343.386667pt;}
.y1de{bottom:344.506667pt;}
.y1f1{bottom:345.626667pt;}
.y92{bottom:345.786667pt;}
.y1ba{bottom:346.426667pt;}
.y104{bottom:348.506667pt;}
.y157{bottom:351.706667pt;}
.y17c{bottom:353.146667pt;}
.y34{bottom:353.466667pt;}
.y5e{bottom:355.226667pt;}
.y133{bottom:355.706667pt;}
.y21d{bottom:359.066667pt;}
.y19b{bottom:359.386667pt;}
.y80{bottom:361.786667pt;}
.yc8{bottom:361.960000pt;}
.y1dd{bottom:362.906667pt;}
.y1f0{bottom:364.026667pt;}
.y91{bottom:364.186667pt;}
.y1b9{bottom:364.826667pt;}
.y103{bottom:366.906667pt;}
.y156{bottom:370.106667pt;}
.y17b{bottom:371.386667pt;}
.y33{bottom:371.866667pt;}
.y5d{bottom:373.466667pt;}
.y132{bottom:374.106667pt;}
.y19a{bottom:377.786667pt;}
.y7f{bottom:380.186667pt;}
.y1dc{bottom:381.306667pt;}
.y1ef{bottom:382.426667pt;}
.y90{bottom:382.586667pt;}
.y1b8{bottom:383.226667pt;}
.y102{bottom:385.306667pt;}
.y155{bottom:388.506667pt;}
.y32{bottom:390.266667pt;}
.y131{bottom:392.546667pt;}
.y199{bottom:396.226667pt;}
.y1ee{bottom:396.866667pt;}
.y7e{bottom:398.626667pt;}
.y1db{bottom:399.746667pt;}
.y8f{bottom:400.706667pt;}
.y1b7{bottom:401.666667pt;}
.y101{bottom:403.746667pt;}
.y154{bottom:406.946667pt;}
.y31{bottom:408.386667pt;}
.y130{bottom:410.946667pt;}
.y170{bottom:413.826667pt;}
.y198{bottom:414.626667pt;}
.y7d{bottom:417.026667pt;}
.y1da{bottom:418.146667pt;}
.y8e{bottom:419.426667pt;}
.y1b6{bottom:420.066667pt;}
.yc7{bottom:421.826667pt;}
.y100{bottom:422.146667pt;}
.y153{bottom:425.186667pt;}
.y30{bottom:427.106667pt;}
.y12f{bottom:429.346667pt;}
.y197{bottom:433.026667pt;}
.y5c{bottom:435.106667pt;}
.y7c{bottom:435.426667pt;}
.y1d9{bottom:436.546667pt;}
.y8d{bottom:437.826667pt;}
.y1b5{bottom:438.466667pt;}
.yc6{bottom:440.226667pt;}
.yff{bottom:440.546667pt;}
.y2f{bottom:445.506667pt;}
.y12e{bottom:447.426667pt;}
.y17a{bottom:448.866667pt;}
.y1c9{bottom:451.106667pt;}
.y196{bottom:451.426667pt;}
.y8c{bottom:452.226667pt;}
.y5b{bottom:453.506667pt;}
.y7b{bottom:453.826667pt;}
.y1d8{bottom:454.946667pt;}
.y1b4{bottom:456.866667pt;}
.yc5{bottom:458.306667pt;}
.yfe{bottom:458.946667pt;}
.y2e{bottom:463.586667pt;}
.y12d{bottom:466.146667pt;}
.y152{bottom:466.786667pt;}
.y1c8{bottom:469.346667pt;}
.y195{bottom:469.666667pt;}
.y5a{bottom:471.906667pt;}
.y7a{bottom:472.226667pt;}
.y1d7{bottom:473.346667pt;}
.y1b3{bottom:475.266667pt;}
.yc4{bottom:477.026667pt;}
.yfd{bottom:477.346667pt;}
.y12c{bottom:481.186667pt;}
.y2d{bottom:482.306667pt;}
.y151{bottom:485.186667pt;}
.y1ff{bottom:487.746667pt;}
.y194{bottom:488.066667pt;}
.y59{bottom:490.306667pt;}
.y79{bottom:490.626667pt;}
.y1d6{bottom:491.746667pt;}
.y1b2{bottom:493.666667pt;}
.yc3{bottom:495.426667pt;}
.yfc{bottom:495.746667pt;}
.y2c{bottom:500.706667pt;}
.y150{bottom:503.586667pt;}
.y1fe{bottom:506.146667pt;}
.y16f{bottom:506.466667pt;}
.y58{bottom:508.706667pt;}
.y78{bottom:509.026667pt;}
.y1d5{bottom:510.146667pt;}
.y1b1{bottom:512.066667pt;}
.yfb{bottom:513.666667pt;}
.yc2{bottom:513.826667pt;}
.y2b{bottom:518.786667pt;}
.y214{bottom:519.906667pt;}
.y14f{bottom:521.986667pt;}
.yfa{bottom:522.146667pt;}
.y193{bottom:524.866667pt;}
.y1e8{bottom:526.466667pt;}
.y57{bottom:527.106667pt;}
.y77{bottom:527.426667pt;}
.y1d4{bottom:528.226667pt;}
.y1b0{bottom:530.466667pt;}
.yc1{bottom:532.226667pt;}
.y2a{bottom:537.506667pt;}
.y213{bottom:537.986667pt;}
.y14e{bottom:540.386667pt;}
.y192{bottom:543.266667pt;}
.y56{bottom:545.506667pt;}
.yf9{bottom:545.666667pt;}
.y76{bottom:545.826667pt;}
.y1d3{bottom:546.626667pt;}
.y1af{bottom:548.866667pt;}
.yc0{bottom:550.626667pt;}
.y12b{bottom:555.426667pt;}
.y29{bottom:555.906667pt;}
.y212{bottom:556.706667pt;}
.y14d{bottom:558.466667pt;}
.y191{bottom:561.666667pt;}
.y55{bottom:563.906667pt;}
.yf8{bottom:564.066667pt;}
.y75{bottom:564.226667pt;}
.y1d2{bottom:565.346667pt;}
.y1ae{bottom:567.266667pt;}
.ybf{bottom:569.026667pt;}
.y28{bottom:573.986667pt;}
.y211{bottom:574.786667pt;}
.y14c{bottom:577.026667pt;}
.y190{bottom:580.066667pt;}
.y16c{bottom:580.706667pt;}
.y54{bottom:582.306667pt;}
.yf7{bottom:582.466667pt;}
.y74{bottom:582.626667pt;}
.y1d1{bottom:583.746667pt;}
.y1ad{bottom:585.666667pt;}
.ybe{bottom:587.426667pt;}
.y210{bottom:589.666667pt;}
.y27{bottom:592.706667pt;}
.y1f9{bottom:598.146667pt;}
.y18f{bottom:598.466667pt;}
.y53{bottom:600.733333pt;}
.yf6{bottom:600.893333pt;}
.y73{bottom:601.053333pt;}
.y1d0{bottom:602.173333pt;}
.y1ac{bottom:604.093333pt;}
.ybd{bottom:605.853333pt;}
.y14b{bottom:610.653333pt;}
.y26{bottom:611.133333pt;}
.y12a{bottom:611.293333pt;}
.y18e{bottom:616.893333pt;}
.y52{bottom:619.133333pt;}
.yf5{bottom:619.293333pt;}
.y1cf{bottom:620.573333pt;}
.y1ab{bottom:622.493333pt;}
.ybc{bottom:624.253333pt;}
.y14a{bottom:629.053333pt;}
.y25{bottom:629.213333pt;}
.y18d{bottom:635.293333pt;}
.y1aa{bottom:636.893333pt;}
.y51{bottom:637.533333pt;}
.y1ce{bottom:638.653333pt;}
.ybb{bottom:642.653333pt;}
.y149{bottom:647.453333pt;}
.y24{bottom:647.933333pt;}
.y72{bottom:653.213333pt;}
.y1fd{bottom:653.373333pt;}
.y18c{bottom:653.693333pt;}
.y16a{bottom:654.973333pt;}
.y50{bottom:655.933333pt;}
.y1cd{bottom:657.373333pt;}
.yba{bottom:661.053333pt;}
.y71{bottom:663.773333pt;}
.y148{bottom:665.853333pt;}
.y23{bottom:666.333333pt;}
.y1fc{bottom:671.773333pt;}
.y18b{bottom:672.093333pt;}
.y4f{bottom:674.333333pt;}
.y1cc{bottom:675.773333pt;}
.yf4{bottom:679.133333pt;}
.yb9{bottom:679.453333pt;}
.y147{bottom:684.253333pt;}
.y22{bottom:684.413333pt;}
.y128{bottom:685.693333pt;}
.y1cb{bottom:690.173333pt;}
.y70{bottom:690.493333pt;}
.y4e{bottom:692.413333pt;}
.y117{bottom:692.733333pt;}
.yf3{bottom:697.533333pt;}
.yb8{bottom:697.853333pt;}
.y146{bottom:702.653333pt;}
.y21{bottom:703.133333pt;}
.ya8{bottom:704.093333pt;}
.y18a{bottom:708.573333pt;}
.y6f{bottom:708.893333pt;}
.y179{bottom:710.973333pt;}
.y116{bottom:711.133333pt;}
.yf2{bottom:715.933333pt;}
.yb7{bottom:716.253333pt;}
.y145{bottom:721.053333pt;}
.y20{bottom:721.373333pt;}
.ya7{bottom:722.493333pt;}
.y127{bottom:727.133333pt;}
.y6e{bottom:727.293333pt;}
.y115{bottom:729.533333pt;}
.y4d{bottom:729.693333pt;}
.yf1{bottom:734.333333pt;}
.yb6{bottom:734.653333pt;}
.y1f{bottom:739.453333pt;}
.ya6{bottom:740.893333pt;}
.y126{bottom:745.533333pt;}
.y6d{bottom:745.693333pt;}
.y168{bottom:747.613333pt;}
.y114{bottom:747.933333pt;}
.y4c{bottom:748.093333pt;}
.yf0{bottom:752.733333pt;}
.yb5{bottom:753.053333pt;}
.y144{bottom:757.853333pt;}
.y1e{bottom:758.173333pt;}
.ya5{bottom:759.293333pt;}
.y125{bottom:763.773333pt;}
.y6c{bottom:764.093333pt;}
.y113{bottom:766.013333pt;}
.yef{bottom:770.813333pt;}
.yb4{bottom:771.453333pt;}
.y143{bottom:776.253333pt;}
.y1d{bottom:776.573333pt;}
.ya4{bottom:777.693333pt;}
.y4b{bottom:782.493333pt;}
.y112{bottom:784.573333pt;}
.yb3{bottom:785.693333pt;}
.yee{bottom:789.533333pt;}
.yb0{bottom:790.653333pt;}
.yb1{bottom:793.053333pt;}
.y1c{bottom:794.653333pt;}
.yb2{bottom:795.933333pt;}
.ya3{bottom:796.093333pt;}
.y8b{bottom:796.253333pt;}
.y4a{bottom:800.893333pt;}
.yaf{bottom:809.893333pt;}
.yed{bottom:810.533333pt;}
.yea{bottom:813.093333pt;}
.y1b{bottom:813.413333pt;}
.ya2{bottom:814.533333pt;}
.y8a{bottom:814.693333pt;}
.yad{bottom:816.773333pt;}
.y49{bottom:819.333333pt;}
.yae{bottom:820.133333pt;}
.ye9{bottom:823.813333pt;}
.yeb{bottom:826.853333pt;}
.y142{bottom:831.173333pt;}
.y1a{bottom:831.813333pt;}
.ya1{bottom:832.933333pt;}
.y89{bottom:833.093333pt;}
.y1fb{bottom:837.413333pt;}
.y48{bottom:837.733333pt;}
.yec{bottom:840.133333pt;}
.y165{bottom:840.453333pt;}
.y19{bottom:849.893333pt;}
.y88{bottom:851.333333pt;}
.y1fa{bottom:855.813333pt;}
.y47{bottom:856.133333pt;}
.ye8{bottom:864.773333pt;}
.y141{bottom:868.133333pt;}
.y18{bottom:868.293333pt;}
.ya0{bottom:870.053333pt;}
.y46{bottom:874.533333pt;}
.ye1{bottom:879.813333pt;}
.y17{bottom:883.973333pt;}
.y20f{bottom:891.653333pt;}
.y164{bottom:892.613333pt;}
.y45{bottom:892.933333pt;}
.y16{bottom:905.413333pt;}
.y20e{bottom:910.053333pt;}
.y44{bottom:911.333333pt;}
.y20d{bottom:925.093333pt;}
.y15{bottom:926.853333pt;}
.y178{bottom:929.413333pt;}
.y43{bottom:929.733333pt;}
.yd{bottom:939.360000pt;}
.yb{bottom:946.693333pt;}
.yf{bottom:954.533333pt;}
.ya{bottom:961.093333pt;}
.y11{bottom:967.840000pt;}
.y9{bottom:975.653333pt;}
.y8{bottom:990.053333pt;}
.y7{bottom:1004.613333pt;}
.y6{bottom:1019.040000pt;}
.y5{bottom:1033.600000pt;}
.y2{bottom:1045.600000pt;}
.y4{bottom:1048.000000pt;}
.y3{bottom:1062.560000pt;}
.y1{bottom:1064.000000pt;}
.ha{height:14.400000pt;}
.h2a{height:18.386667pt;}
.h2e{height:18.396000pt;}
.h2d{height:18.400000pt;}
.h2c{height:18.432000pt;}
.h9{height:26.400000pt;}
.h7{height:28.401875pt;}
.h6{height:34.886250pt;}
.hc{height:35.975313pt;}
.h4{height:36.468750pt;}
.h1f{height:36.640000pt;}
.h29{height:36.786667pt;}
.h2{height:37.868750pt;}
.h8{height:44.735000pt;}
.h3{height:45.625000pt;}
.h23{height:46.281250pt;}
.h24{height:47.840000pt;}
.h17{height:47.986667pt;}
.h5{height:52.320000pt;}
.h16{height:55.186667pt;}
.h15{height:55.218667pt;}
.h21{height:55.226667pt;}
.hf{height:59.340000pt;}
.he{height:62.812500pt;}
.h19{height:63.680000pt;}
.hd{height:64.500000pt;}
.h22{height:73.586667pt;}
.h20{height:73.600000pt;}
.h26{height:73.626667pt;}
.hb{height:75.465000pt;}
.h13{height:90.591562pt;}
.h27{height:91.986667pt;}
.h25{height:92.000000pt;}
.h28{height:92.018667pt;}
.h18{height:92.032000pt;}
.h1e{height:96.732500pt;}
.h2b{height:113.632000pt;}
.h11{height:127.593750pt;}
.h1d{height:128.351562pt;}
.h12{height:129.513750pt;}
.h10{height:164.713750pt;}
.h1b{height:170.473750pt;}
.h1a{height:176.233750pt;}
.h1c{height:180.713750pt;}
.h14{height:190.313750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1b{width:47.346667pt;}
.w16{width:49.440000pt;}
.w4{width:56.000000pt;}
.w10{width:61.592000pt;}
.wb{width:64.312000pt;}
.wa{width:67.026667pt;}
.w18{width:71.186667pt;}
.w19{width:71.218667pt;}
.w15{width:77.272000pt;}
.w1a{width:81.106667pt;}
.w9{width:83.058667pt;}
.w6{width:83.872000pt;}
.w7{width:87.520000pt;}
.w17{width:89.312000pt;}
.w5{width:94.072000pt;}
.wc{width:115.872000pt;}
.w11{width:118.912000pt;}
.w13{width:128.626667pt;}
.wd{width:129.312000pt;}
.w12{width:130.432000pt;}
.we{width:131.026667pt;}
.wf{width:141.613333pt;}
.w14{width:142.573333pt;}
.w8{width:165.786667pt;}
.w2{width:293.920000pt;}
.w3{width:359.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:2.560000pt;}
.x32{left:5.440000pt;}
.x19{left:6.880000pt;}
.x5{left:9.600000pt;}
.x3f{left:12.200000pt;}
.x8{left:13.533333pt;}
.x39{left:14.706667pt;}
.x41{left:16.200000pt;}
.x40{left:17.586667pt;}
.x43{left:20.680000pt;}
.x34{left:21.960000pt;}
.x3d{left:24.640000pt;}
.x3b{left:27.360000pt;}
.x42{left:28.794667pt;}
.x36{left:31.520000pt;}
.x4{left:52.640000pt;}
.x6{left:62.240000pt;}
.x18{left:104.512000pt;}
.x30{left:106.272000pt;}
.x3{left:120.032000pt;}
.xa{left:124.512000pt;}
.x1f{left:130.912000pt;}
.xb{left:133.152000pt;}
.x13{left:145.946667pt;}
.x2a{left:166.906667pt;}
.x46{left:168.026667pt;}
.x26{left:169.466667pt;}
.x10{left:172.986667pt;}
.x23{left:175.386667pt;}
.x1{left:181.466667pt;}
.x31{left:184.186667pt;}
.x1a{left:199.226667pt;}
.x20{left:207.546667pt;}
.x16{left:208.506667pt;}
.x15{left:219.066667pt;}
.x33{left:234.426667pt;}
.xc{left:241.026667pt;}
.xe{left:260.066667pt;}
.x14{left:276.066667pt;}
.x17{left:278.946667pt;}
.x1b{left:283.746667pt;}
.x27{left:285.986667pt;}
.x21{left:297.506667pt;}
.x24{left:301.986667pt;}
.x22{left:305.986667pt;}
.x35{left:324.386667pt;}
.xd{left:361.666667pt;}
.x11{left:365.986667pt;}
.x9{left:368.800000pt;}
.x1c{left:371.906667pt;}
.xf{left:396.093333pt;}
.x37{left:414.506667pt;}
.x28{left:415.946667pt;}
.x2b{left:417.546667pt;}
.x2{left:422.493333pt;}
.x7{left:433.120000pt;}
.x25{left:436.093333pt;}
.x38{left:486.506667pt;}
.x1d{left:538.346667pt;}
.x2e{left:542.013333pt;}
.x29{left:547.626667pt;}
.x3a{left:558.533333pt;}
.x2c{left:582.053333pt;}
.x2d{left:592.133333pt;}
.x12{left:600.133333pt;}
.x1e{left:622.213333pt;}
.x44{left:636.133333pt;}
.x3c{left:640.293333pt;}
.x45{left:748.160000pt;}
.x2f{left:774.080000pt;}
}




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