
    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_3f2047e74979062227d8f1b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.100098;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_209769477a408b1a9b483205.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5834be4065d063579a879054.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.764160;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_fd4c6e2d0ee46c691221e514.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_6db4447d0ad0b3025cd171a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_e6944affc5c58787f80c9a1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cdba70dfefaadaffea55d5e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ef511c83ba6aae6243518044.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_270630f0d13c7993fed88a8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_648588d1326939c954676f2b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4408a61eb70b37f3e2b927b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_945997263a8bbddb18d8f57d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_315d894d39eadae9ef12420f.woff2')format("woff");}.fff{font-family:fff;line-height:0.940918;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);}
.v3{vertical-align:-23.760000px;}
.v4{vertical-align:-13.680000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.680000px;}
.v1{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.v7{vertical-align:33.120000px;}
.v6{vertical-align:52.740000px;}
.ls41{letter-spacing:-0.936000px;}
.ls40{letter-spacing:-0.852000px;}
.ls4e{letter-spacing:-0.702000px;}
.ls28{letter-spacing:-0.630000px;}
.ls2c{letter-spacing:-0.420600px;}
.ls55{letter-spacing:-0.333600px;}
.ls36{letter-spacing:-0.291000px;}
.ls11{letter-spacing:-0.274200px;}
.ls1{letter-spacing:-0.266400px;}
.ls12{letter-spacing:-0.255000px;}
.ls23{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.214800px;}
.ls4d{letter-spacing:-0.193200px;}
.ls1b{letter-spacing:-0.164400px;}
.ls37{letter-spacing:-0.132600px;}
.lse{letter-spacing:-0.115800px;}
.ls1a{letter-spacing:-0.078000px;}
.ls15{letter-spacing:-0.058320px;}
.ls2d{letter-spacing:-0.048960px;}
.ls2f{letter-spacing:-0.046080px;}
.ls57{letter-spacing:-0.043200px;}
.ls10{letter-spacing:-0.041040px;}
.ls3d{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.025200px;}
.ls9{letter-spacing:0.038880px;}
.ls8{letter-spacing:0.060600px;}
.ls7{letter-spacing:0.064080px;}
.ls43{letter-spacing:0.069000px;}
.ls26{letter-spacing:0.077760px;}
.ls1f{letter-spacing:0.078000px;}
.ls31{letter-spacing:0.089280px;}
.ls27{letter-spacing:0.089400px;}
.lsb{letter-spacing:0.100800px;}
.ls4a{letter-spacing:0.129600px;}
.ls17{letter-spacing:0.132480px;}
.ls2b{letter-spacing:0.132600px;}
.ls2a{letter-spacing:0.149760px;}
.ls46{letter-spacing:0.150000px;}
.ls4c{letter-spacing:0.174240px;}
.ls50{letter-spacing:0.181440px;}
.ls38{letter-spacing:0.185760px;}
.ls52{letter-spacing:0.187200px;}
.ls2{letter-spacing:0.189600px;}
.ls20{letter-spacing:0.247800px;}
.ls54{letter-spacing:0.250800px;}
.ls3{letter-spacing:0.256200px;}
.ls29{letter-spacing:0.256320px;}
.ls44{letter-spacing:0.259200px;}
.ls53{letter-spacing:0.267600px;}
.ls58{letter-spacing:0.299400px;}
.ls48{letter-spacing:0.313800px;}
.ls13{letter-spacing:0.314400px;}
.ls49{letter-spacing:0.351600px;}
.ls3e{letter-spacing:0.371400px;}
.ls4f{letter-spacing:0.660000px;}
.ls3b{letter-spacing:0.869760px;}
.lsf{letter-spacing:0.936000px;}
.ls39{letter-spacing:2.309760px;}
.ls4b{letter-spacing:2.334240px;}
.ls3f{letter-spacing:3.749760px;}
.ls19{letter-spacing:5.345280px;}
.ls33{letter-spacing:6.065280px;}
.ls47{letter-spacing:19.025280px;}
.ls45{letter-spacing:19.745280px;}
.ls25{letter-spacing:28.385280px;}
.ls22{letter-spacing:35.561280px;}
.ls21{letter-spacing:37.001280px;}
.ls35{letter-spacing:37.025280px;}
.ls32{letter-spacing:37.721280px;}
.ls18{letter-spacing:38.465280px;}
.ls30{letter-spacing:39.161280px;}
.ls3a{letter-spacing:41.321280px;}
.ls34{letter-spacing:41.345280px;}
.ls2e{letter-spacing:46.206720px;}
.ls56{letter-spacing:48.545280px;}
.ls3c{letter-spacing:49.985280px;}
.ls1c{letter-spacing:56.465280px;}
.ls16{letter-spacing:59.321280px;}
.ls4{letter-spacing:60.489360px;}
.ls42{letter-spacing:65.105280px;}
.ls1e{letter-spacing:67.961280px;}
.ls1d{letter-spacing:69.401280px;}
.lsc{letter-spacing:77.189760px;}
.ls24{letter-spacing:78.065280px;}
.ls5{letter-spacing:86.549760px;}
.ls6{letter-spacing:106.685760px;}
.ls51{letter-spacing:246.438720px;}
.lsd{letter-spacing:849.185760px;}
.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;}
}
.wse{word-spacing:-66.240000px;}
.ws0{word-spacing:-16.563840px;}
.ws1e{word-spacing:-15.341640px;}
.ws21{word-spacing:-15.284040px;}
.ws2d{word-spacing:-15.269640px;}
.ws28{word-spacing:-15.237840px;}
.ws20{word-spacing:-15.229440px;}
.ws1{word-spacing:-15.226440px;}
.ws19{word-spacing:-15.102840px;}
.ws27{word-spacing:-15.099840px;}
.ws15{word-spacing:-15.059640px;}
.ws12{word-spacing:-15.048240px;}
.ws1f{word-spacing:-15.039240px;}
.ws14{word-spacing:-15.030840px;}
.wsf{word-spacing:-14.970240px;}
.ws1c{word-spacing:-14.944320px;}
.ws2c{word-spacing:-14.927040px;}
.ws1a{word-spacing:-14.924160px;}
.ws18{word-spacing:-14.921280px;}
.ws10{word-spacing:-14.892240px;}
.ws25{word-spacing:-14.837640px;}
.ws11{word-spacing:-14.805840px;}
.ws23{word-spacing:-14.777040px;}
.ws13{word-spacing:-14.754240px;}
.ws1b{word-spacing:-14.679240px;}
.ws17{word-spacing:-14.549640px;}
.ws6{word-spacing:-14.441760px;}
.ws16{word-spacing:-14.340240px;}
.ws24{word-spacing:-14.268240px;}
.ws26{word-spacing:-14.165760px;}
.wsc{word-spacing:-13.820160px;}
.ws7{word-spacing:-13.566360px;}
.ws5{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.464720px;}
.wsd{word-spacing:-13.447440px;}
.ws4{word-spacing:-13.389960px;}
.ws9{word-spacing:-10.902240px;}
.ws2a{word-spacing:-10.863600px;}
.wsb{word-spacing:-10.647240px;}
.wsa{word-spacing:-10.628040px;}
.ws2b{word-spacing:-10.279200px;}
.ws22{word-spacing:-9.437760px;}
.ws1d{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
.ws29{word-spacing:10.527840px;}
.ws3{word-spacing:43.326000px;}
._8{margin-left:-12.478320px;}
._6{margin-left:-10.539720px;}
._e{margin-left:-9.282120px;}
._b{margin-left:-8.258640px;}
._d{margin-left:-7.093440px;}
._9{margin-left:-5.956800px;}
._7{margin-left:-4.866720px;}
._1{margin-left:-3.019680px;}
._2{margin-left:-2.013120px;}
._c{margin-left:-1.009440px;}
._4{width:1.195200px;}
._0{width:2.270640px;}
._12{width:4.040640px;}
._13{width:5.192640px;}
._16{width:6.785760px;}
._17{width:8.515680px;}
._18{width:9.544320px;}
._15{width:11.168640px;}
._14{width:12.545280px;}
._19{width:13.800960px;}
._1a{width:16.097760px;}
._1b{width:17.960160px;}
._1c{width:19.509120px;}
._1d{width:20.911680px;}
._1e{width:23.012640px;}
._f{width:24.087840px;}
._a{width:25.234080px;}
._10{width:29.609280px;}
._11{width:31.199040px;}
._1f{width:35.173440px;}
._20{width:39.942720px;}
._21{width:41.889600px;}
._2a{width:42.989760px;}
._23{width:59.351040px;}
._5{width:60.716160px;}
._28{width:62.738400px;}
._22{width:64.908480px;}
._27{width:78.759360px;}
._24{width:90.351360px;}
._29{width:116.317440px;}
._25{width:131.883840px;}
._26{width:133.433280px;}
._3{width:849.185760px;}
.fc6{color:rgb(68,114,196);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc7{color:rgb(255,0,0);}
.fc1{color:rgb(146,208,80);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y16b{bottom:0.180000px;}
.y2{bottom:3.780000px;}
.y1a{bottom:3.960000px;}
.yf{bottom:4.500000px;}
.y19c{bottom:4.530000px;}
.y1a8{bottom:4.545000px;}
.ye0{bottom:5.220000px;}
.y170{bottom:5.256000px;}
.ye2{bottom:5.760000px;}
.y16f{bottom:5.796000px;}
.ydf{bottom:6.480000px;}
.y1ae{bottom:6.840000px;}
.y18e{bottom:7.020000px;}
.y194{bottom:9.180000px;}
.yb{bottom:10.440000px;}
.y18{bottom:12.780000px;}
.y181{bottom:14.580000px;}
.y1aa{bottom:14.625000px;}
.y1cd{bottom:14.940000px;}
.y16d{bottom:15.300000px;}
.y1ac{bottom:16.920000px;}
.y18c{bottom:17.094000px;}
.y17f{bottom:18.180000px;}
.y1bb{bottom:19.290000px;}
.y166{bottom:24.480000px;}
.y1d0{bottom:24.510000px;}
.y156{bottom:24.660000px;}
.y19b{bottom:24.690000px;}
.y15b{bottom:24.705000px;}
.y1c9{bottom:25.020000px;}
.y18d{bottom:26.994000px;}
.y1ad{bottom:27.000000px;}
.y17d{bottom:28.080000px;}
.y190{bottom:28.260000px;}
.y193{bottom:29.340000px;}
.y1bd{bottom:29.370000px;}
.y17{bottom:32.760000px;}
.y188{bottom:34.560000px;}
.y183{bottom:34.740000px;}
.y1a0{bottom:34.770000px;}
.y1a6{bottom:34.785000px;}
.y1cc{bottom:35.100000px;}
.y1f6{bottom:35.280000px;}
.y16c{bottom:35.310000px;}
.y17e{bottom:38.160000px;}
.y191{bottom:38.340000px;}
.y1b9{bottom:39.450000px;}
.y163{bottom:44.640000px;}
.y1cf{bottom:44.670000px;}
.y1e9{bottom:44.685000px;}
.y155{bottom:44.820000px;}
.y198{bottom:44.850000px;}
.y196{bottom:44.865000px;}
.y1c7{bottom:45.180000px;}
.y1bc{bottom:49.530000px;}
.y189{bottom:54.720000px;}
.y19f{bottom:54.750000px;}
.y1e8{bottom:54.765000px;}
.y1a3{bottom:54.900000px;}
.y1a9{bottom:54.945000px;}
.y1c5{bottom:55.260000px;}
.y3{bottom:57.060000px;}
.y1ba{bottom:59.610000px;}
.y18a{bottom:64.800000px;}
.y162{bottom:64.830000px;}
.y1db{bottom:64.845000px;}
.y184{bottom:64.980000px;}
.y1e3{bottom:65.010000px;}
.y1a7{bottom:65.025000px;}
.y1c6{bottom:65.385000px;}
.ya{bottom:66.420000px;}
.y1{bottom:74.880000px;}
.y19e{bottom:74.910000px;}
.y1a4{bottom:75.060000px;}
.y1c2{bottom:75.105000px;}
.y1cb{bottom:75.285000px;}
.y1c0{bottom:84.960000px;}
.y161{bottom:84.990000px;}
.y1da{bottom:85.005000px;}
.y1a2{bottom:85.140000px;}
.y1e4{bottom:85.170000px;}
.y1c3{bottom:85.185000px;}
.y1c8{bottom:85.365000px;}
.y19d{bottom:95.070000px;}
.y1d4{bottom:95.085000px;}
.y1b7{bottom:95.220000px;}
.y1ca{bottom:95.445000px;}
.y1bf{bottom:105.120000px;}
.y19a{bottom:105.150000px;}
.y1d2{bottom:105.165000px;}
.y1e5{bottom:105.330000px;}
.y1b6{bottom:105.345000px;}
.y21b{bottom:111.780000px;}
.y1b4{bottom:111.816000px;}
.y1de{bottom:112.356000px;}
.y1d3{bottom:115.245000px;}
.y1f4{bottom:117.036000px;}
.y1dd{bottom:117.576000px;}
.y142{bottom:120.420000px;}
.y9{bottom:122.220000px;}
.y174{bottom:124.416000px;}
.y11a{bottom:124.560000px;}
.y199{bottom:125.310000px;}
.y1d9{bottom:125.325000px;}
.y1f0{bottom:125.490000px;}
.y82{bottom:129.420000px;}
.y21a{bottom:130.140000px;}
.y1b3{bottom:130.176000px;}
.y219{bottom:135.360000px;}
.y1b2{bottom:135.396000px;}
.yf6{bottom:138.060000px;}
.y18b{bottom:139.176000px;}
.y141{bottom:140.580000px;}
.y1d8{bottom:145.485000px;}
.y1ef{bottom:145.650000px;}
.y1dc{bottom:146.016000px;}
.yb3{bottom:147.636000px;}
.y1b1{bottom:149.076000px;}
.y81{bottom:149.616000px;}
.y1b0{bottom:155.010000px;}
.y119{bottom:158.430000px;}
.y1ea{bottom:159.510000px;}
.y140{bottom:160.590000px;}
.y1f3{bottom:162.570000px;}
.y1d7{bottom:165.645000px;}
.y1ee{bottom:165.810000px;}
.yb2{bottom:169.410000px;}
.y80{bottom:169.770000px;}
.yf5{bottom:171.930000px;}
.y13f{bottom:180.750000px;}
.y1af{bottom:182.730000px;}
.y187{bottom:185.070000px;}
.y1d6{bottom:185.805000px;}
.y1c1{bottom:186.330000px;}
.y7f{bottom:189.930000px;}
.y118{bottom:192.090000px;}
.y1d1{bottom:201.450000px;}
.y13e{bottom:201.810000px;}
.yf4{bottom:205.590000px;}
.y1d5{bottom:205.965000px;}
.y7e{bottom:210.090000px;}
.y1ab{bottom:210.450000px;}
.y218{bottom:215.310000px;}
.yb1{bottom:216.570000px;}
.y1e7{bottom:220.710000px;}
.yf3{bottom:227.370000px;}
.y117{bottom:228.270000px;}
.y7d{bottom:230.250000px;}
.y13d{bottom:236.370000px;}
.yb0{bottom:236.730000px;}
.y1f2{bottom:245.190000px;}
.y5c{bottom:255.270000px;}
.y1a5{bottom:256.170000px;}
.y217{bottom:256.530000px;}
.yaf{bottom:256.710000px;}
.y15{bottom:257.610000px;}
.y13c{bottom:258.150000px;}
.y1f1{bottom:261.795000px;}
.yf2{bottom:263.370000px;}
.y7c{bottom:263.910000px;}
.y186{bottom:266.295000px;}
.y5b{bottom:275.430000px;}
.y116{bottom:276.870000px;}
.y216{bottom:277.590000px;}
.yd5{bottom:278.850000px;}
.y13b{bottom:279.930000px;}
.y7b{bottom:285.690000px;}
.yae{bottom:288.930000px;}
.y14{bottom:291.270000px;}
.y5a{bottom:295.590000px;}
.y215{bottom:297.750000px;}
.y115{bottom:298.650000px;}
.y1e6{bottom:301.935000px;}
.y185{bottom:307.335000px;}
.y1be{bottom:308.055000px;}
.yad{bottom:309.090000px;}
.yf1{bottom:311.970000px;}
.yd4{bottom:312.510000px;}
.y59{bottom:315.750000px;}
.y13a{bottom:315.930000px;}
.y7a{bottom:317.730000px;}
.y214{bottom:317.910000px;}
.y114{bottom:320.430000px;}
.y13{bottom:324.930000px;}
.y37{bottom:326.730000px;}
.yac{bottom:329.250000px;}
.yf0{bottom:333.750000px;}
.y58{bottom:335.910000px;}
.y1a1{bottom:337.575000px;}
.y79{bottom:337.890000px;}
.y1ed{bottom:342.975000px;}
.yd3{bottom:346.170000px;}
.y113{bottom:352.470000px;}
.yef{bottom:355.530000px;}
.y57{bottom:356.070000px;}
.y78{bottom:358.050000px;}
.y213{bottom:358.410000px;}
.y12{bottom:358.770000px;}
.y36{bottom:362.370000px;}
.yab{bottom:362.910000px;}
.y139{bottom:364.710000px;}
.yd2{bottom:367.950000px;}
.y182{bottom:368.535000px;}
.y112{bottom:372.630000px;}
.y11{bottom:375.150000px;}
.y56{bottom:376.230000px;}
.y212{bottom:378.030000px;}
.y77{bottom:378.210000px;}
.y1e2{bottom:383.295000px;}
.yaa{bottom:384.690000px;}
.y138{bottom:386.310000px;}
.yd1{bottom:389.730000px;}
.y111{bottom:392.835000px;}
.y35{bottom:394.635000px;}
.yee{bottom:395.355000px;}
.y10{bottom:396.075000px;}
.y55{bottom:396.435000px;}
.y76{bottom:398.415000px;}
.y137{bottom:408.135000px;}
.yd0{bottom:411.555000px;}
.y110{bottom:412.995000px;}
.y34{bottom:414.435000px;}
.y169{bottom:414.795000px;}
.y54{bottom:416.595000px;}
.ya9{bottom:416.775000px;}
.ye{bottom:416.955000px;}
.y75{bottom:418.575000px;}
.y1ce{bottom:423.795000px;}
.y211{bottom:424.875000px;}
.y1b8{bottom:429.555000px;}
.y136{bottom:429.915000px;}
.y10f{bottom:433.155000px;}
.y53{bottom:436.755000px;}
.ya8{bottom:436.935000px;}
.y197{bottom:439.095000px;}
.y33{bottom:443.235000px;}
.ycf{bottom:445.215000px;}
.y210{bottom:446.655000px;}
.y180{bottom:449.925000px;}
.y135{bottom:451.695000px;}
.y74{bottom:452.235000px;}
.yed{bottom:453.135000px;}
.y10e{bottom:453.315000px;}
.y168{bottom:455.835000px;}
.yd{bottom:456.015000px;}
.y52{bottom:456.735000px;}
.ya7{bottom:457.095000px;}
.yce{bottom:466.995000px;}
.y32{bottom:471.855000px;}
.y134{bottom:473.295000px;}
.y10d{bottom:473.475000px;}
.y73{bottom:474.015000px;}
.y167{bottom:476.715000px;}
.y51{bottom:476.895000px;}
.ya6{bottom:477.255000px;}
.y20f{bottom:479.775000px;}
.ycd{bottom:488.775000px;}
.yc{bottom:489.675000px;}
.y17c{bottom:490.965000px;}
.y31{bottom:491.655000px;}
.y10c{bottom:493.455000px;}
.y133{bottom:495.075000px;}
.y50{bottom:497.055000px;}
.ya5{bottom:497.415000px;}
.y20e{bottom:499.395000px;}
.yec{bottom:501.735000px;}
.y1e1{bottom:505.005000px;}
.y8{bottom:505.335000px;}
.y72{bottom:510.015000px;}
.ycc{bottom:510.375000px;}
.y10b{bottom:513.615000px;}
.y4f{bottom:517.215000px;}
.ya4{bottom:517.575000px;}
.y165{bottom:517.755000px;}
.y1b5{bottom:520.305000px;}
.y30{bottom:520.455000px;}
.yeb{bottom:523.515000px;}
.y1ec{bottom:525.165000px;}
.y132{bottom:528.735000px;}
.y71{bottom:531.795000px;}
.y10a{bottom:533.775000px;}
.ya3{bottom:537.735000px;}
.ycb{bottom:544.215000px;}
.y2f{bottom:549.255000px;}
.y131{bottom:550.515000px;}
.y70{bottom:553.395000px;}
.y20d{bottom:553.575000px;}
.y109{bottom:553.935000px;}
.y4e{bottom:556.995000px;}
.yea{bottom:557.175000px;}
.y164{bottom:558.795000px;}
.y1c4{bottom:565.485000px;}
.yca{bottom:565.995000px;}
.y1e0{bottom:566.205000px;}
.y2e{bottom:568.875000px;}
.y153{bottom:569.415000px;}
.ya2{bottom:571.395000px;}
.y130{bottom:572.295000px;}
.y108{bottom:574.095000px;}
.y20c{bottom:575.355000px;}
.y17b{bottom:577.185000px;}
.ye9{bottom:578.955000px;}
.y160{bottom:579.675000px;}
.y195{bottom:580.785000px;}
.yc9{bottom:587.595000px;}
.y2d{bottom:588.675000px;}
.y6f{bottom:589.395000px;}
.y12f{bottom:594.075000px;}
.y107{bottom:594.255000px;}
.y4d{bottom:595.155000px;}
.y17a{bottom:599.865000px;}
.ye8{bottom:600.735000px;}
.y152{bottom:602.715000px;}
.y1eb{bottom:606.345000px;}
.ya1{bottom:607.395000px;}
.y20b{bottom:609.015000px;}
.y4c{bottom:616.215000px;}
.y2c{bottom:617.475000px;}
.yc8{bottom:621.435000px;}
.y179{bottom:621.645000px;}
.y151{bottom:622.155000px;}
.ye7{bottom:622.515000px;}
.y6e{bottom:623.235000px;}
.y20a{bottom:625.395000px;}
.y1df{bottom:626.550000px;}
.y12e{bottom:627.195000px;}
.y106{bottom:627.915000px;}
.y4b{bottom:637.095000px;}
.y2b{bottom:637.275000px;}
.y192{bottom:642.030000px;}
.yc7{bottom:643.245000px;}
.ye6{bottom:644.145000px;}
.y178{bottom:644.370000px;}
.y6d{bottom:644.865000px;}
.y209{bottom:646.305000px;}
.y12d{bottom:646.845000px;}
.y150{bottom:654.765000px;}
.ya0{bottom:656.205000px;}
.y4a{bottom:658.185000px;}
.y105{bottom:660.165000px;}
.yc6{bottom:664.845000px;}
.y177{bottom:665.970000px;}
.y2a{bottom:666.105000px;}
.y6c{bottom:666.645000px;}
.y208{bottom:667.185000px;}
.y7{bottom:672.945000px;}
.y9f{bottom:677.985000px;}
.y49{bottom:679.245000px;}
.y104{bottom:680.325000px;}
.y15f{bottom:681.045000px;}
.y173{bottom:684.870000px;}
.y29{bottom:685.725000px;}
.y12c{bottom:686.445000px;}
.yc5{bottom:686.625000px;}
.y18f{bottom:687.750000px;}
.y207{bottom:688.065000px;}
.y6b{bottom:688.425000px;}
.y9e{bottom:699.585000px;}
.y48{bottom:700.305000px;}
.y103{bottom:700.485000px;}
.y176{bottom:700.710000px;}
.y28{bottom:705.525000px;}
.y172{bottom:706.650000px;}
.yc4{bottom:708.405000px;}
.y206{bottom:709.125000px;}
.y6{bottom:710.205000px;}
.y12b{bottom:717.225000px;}
.y102{bottom:720.645000px;}
.y47{bottom:721.185000px;}
.y205{bottom:730.005000px;}
.y14f{bottom:731.985000px;}
.ye5{bottom:732.885000px;}
.y9d{bottom:733.425000px;}
.y27{bottom:734.325000px;}
.y12a{bottom:737.385000px;}
.y171{bottom:740.310000px;}
.y175{bottom:740.490000px;}
.y101{bottom:740.805000px;}
.y46{bottom:742.245000px;}
.yc3{bottom:744.405000px;}
.y6a{bottom:746.205000px;}
.ye4{bottom:747.825000px;}
.y204{bottom:750.885000px;}
.y14e{bottom:753.585000px;}
.y9c{bottom:755.205000px;}
.y129{bottom:757.545000px;}
.y8f{bottom:758.985000px;}
.y16e{bottom:760.470000px;}
.y100{bottom:760.785000px;}
.y26{bottom:763.125000px;}
.y45{bottom:763.305000px;}
.y69{bottom:767.805000px;}
.ye3{bottom:768.705000px;}
.y203{bottom:771.765000px;}
.y9b{bottom:776.805000px;}
.y16a{bottom:776.850000px;}
.y128{bottom:777.705000px;}
.yff{bottom:780.945000px;}
.y25{bottom:782.745000px;}
.y15e{bottom:783.285000px;}
.y44{bottom:784.365000px;}
.y14d{bottom:785.805000px;}
.y68{bottom:789.585000px;}
.yc2{bottom:791.565000px;}
.y8e{bottom:792.645000px;}
.y127{bottom:797.865000px;}
.yfe{bottom:801.105000px;}
.y24{bottom:802.545000px;}
.y43{bottom:805.425000px;}
.y14c{bottom:805.965000px;}
.ye1{bottom:810.465000px;}
.y9a{bottom:810.645000px;}
.y67{bottom:811.185000px;}
.yc1{bottom:811.725000px;}
.y202{bottom:813.525000px;}
.y126{bottom:818.025000px;}
.yfd{bottom:821.265000px;}
.y23{bottom:822.345000px;}
.y15d{bottom:824.325000px;}
.y14b{bottom:826.125000px;}
.y42{bottom:826.305000px;}
.yde{bottom:831.345000px;}
.y99{bottom:832.425000px;}
.yc0{bottom:832.605000px;}
.y125{bottom:838.185000px;}
.yfc{bottom:841.425000px;}
.y22{bottom:842.145000px;}
.y15c{bottom:845.205000px;}
.y14a{bottom:846.285000px;}
.y41{bottom:847.365000px;}
.ydd{bottom:852.945000px;}
.ybf{bottom:853.665000px;}
.y98{bottom:854.025000px;}
.y124{bottom:858.165000px;}
.y8d{bottom:858.525000px;}
.yfb{bottom:861.585000px;}
.y15a{bottom:866.085000px;}
.y149{bottom:866.445000px;}
.y40{bottom:868.425000px;}
.y66{bottom:869.145000px;}
.y21{bottom:870.945000px;}
.ybe{bottom:874.725000px;}
.y97{bottom:875.805000px;}
.y123{bottom:878.325000px;}
.y8c{bottom:878.685000px;}
.y148{bottom:886.605000px;}
.y3f{bottom:889.485000px;}
.ydc{bottom:892.770000px;}
.y226{bottom:893.670000px;}
.ybd{bottom:894.930000px;}
.yfa{bottom:895.290000px;}
.y122{bottom:898.530000px;}
.y8b{bottom:898.890000px;}
.y20{bottom:899.610000px;}
.y201{bottom:900.330000px;}
.y65{bottom:902.850000px;}
.y147{bottom:906.810000px;}
.y159{bottom:907.170000px;}
.y96{bottom:909.510000px;}
.y3e{bottom:910.410000px;}
.y225{bottom:915.450000px;}
.ybc{bottom:915.990000px;}
.y121{bottom:918.690000px;}
.y8a{bottom:919.050000px;}
.y200{bottom:922.110000px;}
.y64{bottom:924.630000px;}
.ydb{bottom:925.350000px;}
.y146{bottom:926.790000px;}
.y1f{bottom:928.410000px;}
.yf9{bottom:929.130000px;}
.y95{bottom:931.290000px;}
.y3d{bottom:931.470000px;}
.ybb{bottom:936.150000px;}
.y224{bottom:937.230000px;}
.y120{bottom:938.850000px;}
.y89{bottom:939.210000px;}
.y1ff{bottom:943.890000px;}
.y63{bottom:946.410000px;}
.yda{bottom:947.130000px;}
.y158{bottom:948.210000px;}
.y94{bottom:953.070000px;}
.yba{bottom:957.030000px;}
.y1e{bottom:957.210000px;}
.y88{bottom:959.370000px;}
.y145{bottom:960.630000px;}
.yf8{bottom:965.130000px;}
.yd9{bottom:968.730000px;}
.y157{bottom:969.090000px;}
.y223{bottom:969.270000px;}
.y3c{bottom:972.150000px;}
.y11f{bottom:972.510000px;}
.yb9{bottom:977.190000px;}
.y1fe{bottom:977.550000px;}
.y87{bottom:979.350000px;}
.y62{bottom:980.070000px;}
.y144{bottom:982.230000px;}
.y1d{bottom:986.010000px;}
.y93{bottom:986.730000px;}
.y222{bottom:989.430000px;}
.y154{bottom:989.970000px;}
.yd8{bottom:990.510000px;}
.y11e{bottom:994.290000px;}
.yb8{bottom:997.350000px;}
.y1fc{bottom:999.330000px;}
.y86{bottom:999.510000px;}
.y61{bottom:1001.850000px;}
.y1fd{bottom:1005.270000px;}
.y92{bottom:1008.510000px;}
.y221{bottom:1009.590000px;}
.y3b{bottom:1011.930000px;}
.yf7{bottom:1013.730000px;}
.y11d{bottom:1016.070000px;}
.yb7{bottom:1018.410000px;}
.y1fb{bottom:1021.110000px;}
.y1c{bottom:1021.830000px;}
.y60{bottom:1023.630000px;}
.yd7{bottom:1026.510000px;}
.y220{bottom:1029.750000px;}
.y91{bottom:1030.290000px;}
.y3a{bottom:1033.530000px;}
.y85{bottom:1035.510000px;}
.y11c{bottom:1037.850000px;}
.yb6{bottom:1038.570000px;}
.y1fa{bottom:1042.890000px;}
.y5f{bottom:1045.230000px;}
.y21f{bottom:1049.910000px;}
.y84{bottom:1057.290000px;}
.yb5{bottom:1058.730000px;}
.y11b{bottom:1059.450000px;}
.y90{bottom:1066.290000px;}
.y21e{bottom:1070.070000px;}
.y143{bottom:1071.510000px;}
.y39{bottom:1073.310000px;}
.yd6{bottom:1075.290000px;}
.y83{bottom:1078.890000px;}
.y5e{bottom:1081.230000px;}
.y1f9{bottom:1082.490000px;}
.y21d{bottom:1090.230000px;}
.yb4{bottom:1093.290000px;}
.y1f8{bottom:1104.270000px;}
.y1b{bottom:1104.810000px;}
.y5{bottom:1105.530000px;}
.y21c{bottom:1110.210000px;}
.y38{bottom:1112.910000px;}
.y5d{bottom:1115.070000px;}
.y1f7{bottom:1130.370000px;}
.y19{bottom:1135.230000px;}
.y4{bottom:1139.220000px;}
.y1f5{bottom:1146.780000px;}
.y16{bottom:1151.640000px;}
.h2{height:19.980000px;}
.hb{height:20.160000px;}
.hc{height:20.196000px;}
.h16{height:20.880000px;}
.h37{height:21.240000px;}
.h21{height:21.276000px;}
.h29{height:35.806641px;}
.h8{height:37.260000px;}
.h2b{height:38.671172px;}
.h1d{height:40.140000px;}
.h1a{height:40.320000px;}
.h1b{height:40.356000px;}
.h2a{height:41.535703px;}
.he{height:43.681992px;}
.h25{height:45.000000px;}
.h18{height:48.088125px;}
.h3{height:51.677227px;}
.h14{height:53.302500px;}
.h4{height:57.280781px;}
.hd{height:58.140000px;}
.h15{height:59.439023px;}
.h32{height:60.300000px;}
.h31{height:60.336000px;}
.h19{height:60.480000px;}
.h26{height:60.516000px;}
.h10{height:61.189805px;}
.h17{height:61.423863px;}
.h36{height:63.000000px;}
.h20{height:63.036000px;}
.hf{height:63.344531px;}
.h5{height:65.884219px;}
.h22{height:67.500000px;}
.h11{height:67.824844px;}
.h12{height:68.084282px;}
.h13{height:68.956875px;}
.h7{height:72.007031px;}
.h38{height:79.715391px;}
.h34{height:80.460000px;}
.h24{height:80.496000px;}
.h33{height:80.640000px;}
.h23{height:80.676000px;}
.h2d{height:90.036000px;}
.h39{height:99.004219px;}
.h1c{height:100.656000px;}
.h28{height:100.800000px;}
.h2e{height:120.780000px;}
.h2c{height:120.996000px;}
.h2f{height:121.536000px;}
.h27{height:140.976000px;}
.ha{height:145.069805px;}
.h9{height:167.610000px;}
.h35{height:181.470000px;}
.h30{height:221.430000px;}
.h6{height:377.130000px;}
.h1e{height:892.980000px;}
.h1f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:41.616000px;}
.w22{width:41.976000px;}
.wa{width:63.036000px;}
.we{width:73.620000px;}
.w6{width:84.096000px;}
.w2d{width:84.276000px;}
.w2e{width:94.860000px;}
.w1d{width:98.820000px;}
.w26{width:99.180000px;}
.wf{width:116.136000px;}
.w10{width:116.316000px;}
.w11{width:116.460000px;}
.w20{width:123.336000px;}
.w1a{width:127.080000px;}
.w23{width:127.440000px;}
.w1e{width:137.736000px;}
.w27{width:138.096000px;}
.w2f{width:155.010000px;}
.w1c{width:158.970000px;}
.w25{width:159.330000px;}
.w1f{width:169.740000px;}
.w28{width:170.100000px;}
.wb{width:184.710000px;}
.w2a{width:186.150000px;}
.wc{width:224.670000px;}
.wd{width:232.770000px;}
.w1b{width:233.130000px;}
.w24{width:233.490000px;}
.w7{width:265.530000px;}
.w8{width:290.370000px;}
.w15{width:307.110000px;}
.w29{width:307.155000px;}
.w3{width:324.030000px;}
.w2c{width:339.150000px;}
.w2{width:352.695000px;}
.w9{width:397.695000px;}
.w14{width:447.915000px;}
.w18{width:493.635000px;}
.w17{width:537.225000px;}
.w5{width:656.205000px;}
.w2b{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w21{width:1262.879962px;}
.w16{width:1262.879981px;}
.w12{width:1262.880000px;}
.w13{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x46{left:9.720000px;}
.x50{left:10.980000px;}
.x43{left:12.420000px;}
.x56{left:13.530000px;}
.x2a{left:14.760000px;}
.x44{left:15.840000px;}
.x26{left:17.460000px;}
.x17{left:19.440000px;}
.x34{left:20.700000px;}
.x4a{left:21.780000px;}
.x4f{left:23.400000px;}
.x27{left:25.410000px;}
.x4e{left:26.820000px;}
.x41{left:27.900000px;}
.x28{left:29.160000px;}
.x40{left:30.600000px;}
.x38{left:31.860000px;}
.x39{left:33.840000px;}
.x1b{left:35.280000px;}
.x3c{left:37.260000px;}
.x47{left:38.700000px;}
.x3b{left:40.680000px;}
.x3d{left:43.020000px;}
.x3f{left:44.130000px;}
.x4d{left:45.720000px;}
.x3e{left:47.340000px;}
.x36{left:49.320000px;}
.x45{left:51.480000px;}
.x4c{left:54.540000px;}
.x1d{left:57.060000px;}
.x1a{left:58.860000px;}
.x1c{left:60.840000px;}
.x4b{left:63.180000px;}
.x51{left:68.760000px;}
.x42{left:82.260000px;}
.x49{left:84.780000px;}
.xa{left:97.416000px;}
.x2d{left:102.239981px;}
.xd{left:105.330000px;}
.x1{left:107.676000px;}
.x30{left:108.720000px;}
.x2f{left:113.039981px;}
.x13{left:116.135987px;}
.x10{left:124.595987px;}
.x22{left:126.216000px;}
.x5{left:128.916000px;}
.x52{left:131.580000px;}
.x11{left:135.035987px;}
.x14{left:148.895987px;}
.x31{left:151.050000px;}
.x12{left:162.029987px;}
.x1f{left:189.029987px;}
.x16{left:209.550000px;}
.x20{left:216.029987px;}
.xe{left:219.630000px;}
.x21{left:269.505000px;}
.x18{left:273.315000px;}
.x4{left:277.605000px;}
.x32{left:278.850000px;}
.xb{left:281.199000px;}
.x15{left:288.254987px;}
.x53{left:304.994973px;}
.x54{left:310.214987px;}
.x59{left:312.374987px;}
.x48{left:324.029981px;}
.x23{left:359.715000px;}
.xc{left:387.795000px;}
.x8{left:434.055000px;}
.x2c{left:439.065000px;}
.x55{left:448.635000px;}
.x19{left:458.745000px;}
.x3{left:460.365000px;}
.x6{left:513.114000px;}
.x9{left:518.865000px;}
.x57{left:533.805000px;}
.x29{left:545.295000px;}
.x24{left:550.905000px;}
.x58{left:629.385000px;}
.x2b{left:644.865000px;}
.x25{left:667.950000px;}
.x33{left:672.405000px;}
.x7{left:713.664000px;}
.x35{left:771.945000px;}
.xf{left:777.929987px;}
.x1e{left:785.129987px;}
.x37{left:910.410000px;}
.x3a{left:1080.870000px;}
.x2e{left:1137.059981px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v4{vertical-align:-12.160000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.160000pt;}
.v1{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.v7{vertical-align:29.440000pt;}
.v6{vertical-align:46.880000pt;}
.ls41{letter-spacing:-0.832000pt;}
.ls40{letter-spacing:-0.757333pt;}
.ls4e{letter-spacing:-0.624000pt;}
.ls28{letter-spacing:-0.560000pt;}
.ls2c{letter-spacing:-0.373867pt;}
.ls55{letter-spacing:-0.296533pt;}
.ls36{letter-spacing:-0.258667pt;}
.ls11{letter-spacing:-0.243733pt;}
.ls1{letter-spacing:-0.236800pt;}
.ls12{letter-spacing:-0.226667pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.190933pt;}
.ls4d{letter-spacing:-0.171733pt;}
.ls1b{letter-spacing:-0.146133pt;}
.ls37{letter-spacing:-0.117867pt;}
.lse{letter-spacing:-0.102933pt;}
.ls1a{letter-spacing:-0.069333pt;}
.ls15{letter-spacing:-0.051840pt;}
.ls2d{letter-spacing:-0.043520pt;}
.ls2f{letter-spacing:-0.040960pt;}
.ls57{letter-spacing:-0.038400pt;}
.ls10{letter-spacing:-0.036480pt;}
.ls3d{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.022400pt;}
.ls9{letter-spacing:0.034560pt;}
.ls8{letter-spacing:0.053867pt;}
.ls7{letter-spacing:0.056960pt;}
.ls43{letter-spacing:0.061333pt;}
.ls26{letter-spacing:0.069120pt;}
.ls1f{letter-spacing:0.069333pt;}
.ls31{letter-spacing:0.079360pt;}
.ls27{letter-spacing:0.079467pt;}
.lsb{letter-spacing:0.089600pt;}
.ls4a{letter-spacing:0.115200pt;}
.ls17{letter-spacing:0.117760pt;}
.ls2b{letter-spacing:0.117867pt;}
.ls2a{letter-spacing:0.133120pt;}
.ls46{letter-spacing:0.133333pt;}
.ls4c{letter-spacing:0.154880pt;}
.ls50{letter-spacing:0.161280pt;}
.ls38{letter-spacing:0.165120pt;}
.ls52{letter-spacing:0.166400pt;}
.ls2{letter-spacing:0.168533pt;}
.ls20{letter-spacing:0.220267pt;}
.ls54{letter-spacing:0.222933pt;}
.ls3{letter-spacing:0.227733pt;}
.ls29{letter-spacing:0.227840pt;}
.ls44{letter-spacing:0.230400pt;}
.ls53{letter-spacing:0.237867pt;}
.ls58{letter-spacing:0.266133pt;}
.ls48{letter-spacing:0.278933pt;}
.ls13{letter-spacing:0.279467pt;}
.ls49{letter-spacing:0.312533pt;}
.ls3e{letter-spacing:0.330133pt;}
.ls4f{letter-spacing:0.586667pt;}
.ls3b{letter-spacing:0.773120pt;}
.lsf{letter-spacing:0.832000pt;}
.ls39{letter-spacing:2.053120pt;}
.ls4b{letter-spacing:2.074880pt;}
.ls3f{letter-spacing:3.333120pt;}
.ls19{letter-spacing:4.751360pt;}
.ls33{letter-spacing:5.391360pt;}
.ls47{letter-spacing:16.911360pt;}
.ls45{letter-spacing:17.551360pt;}
.ls25{letter-spacing:25.231360pt;}
.ls22{letter-spacing:31.610027pt;}
.ls21{letter-spacing:32.890027pt;}
.ls35{letter-spacing:32.911360pt;}
.ls32{letter-spacing:33.530027pt;}
.ls18{letter-spacing:34.191360pt;}
.ls30{letter-spacing:34.810027pt;}
.ls3a{letter-spacing:36.730027pt;}
.ls34{letter-spacing:36.751360pt;}
.ls2e{letter-spacing:41.072640pt;}
.ls56{letter-spacing:43.151360pt;}
.ls3c{letter-spacing:44.431360pt;}
.ls1c{letter-spacing:50.191360pt;}
.ls16{letter-spacing:52.730027pt;}
.ls4{letter-spacing:53.768320pt;}
.ls42{letter-spacing:57.871360pt;}
.ls1e{letter-spacing:60.410027pt;}
.ls1d{letter-spacing:61.690027pt;}
.lsc{letter-spacing:68.613120pt;}
.ls24{letter-spacing:69.391360pt;}
.ls5{letter-spacing:76.933120pt;}
.ls6{letter-spacing:94.831787pt;}
.ls51{letter-spacing:219.056640pt;}
.lsd{letter-spacing:754.831787pt;}
.wse{word-spacing:-58.880000pt;}
.ws0{word-spacing:-14.723413pt;}
.ws1e{word-spacing:-13.637013pt;}
.ws21{word-spacing:-13.585813pt;}
.ws2d{word-spacing:-13.573013pt;}
.ws28{word-spacing:-13.544747pt;}
.ws20{word-spacing:-13.537280pt;}
.ws1{word-spacing:-13.534613pt;}
.ws19{word-spacing:-13.424747pt;}
.ws27{word-spacing:-13.422080pt;}
.ws15{word-spacing:-13.386347pt;}
.ws12{word-spacing:-13.376213pt;}
.ws1f{word-spacing:-13.368213pt;}
.ws14{word-spacing:-13.360747pt;}
.wsf{word-spacing:-13.306880pt;}
.ws1c{word-spacing:-13.283840pt;}
.ws2c{word-spacing:-13.268480pt;}
.ws1a{word-spacing:-13.265920pt;}
.ws18{word-spacing:-13.263360pt;}
.ws10{word-spacing:-13.237547pt;}
.ws25{word-spacing:-13.189013pt;}
.ws11{word-spacing:-13.160747pt;}
.ws23{word-spacing:-13.135147pt;}
.ws13{word-spacing:-13.114880pt;}
.ws1b{word-spacing:-13.048213pt;}
.ws17{word-spacing:-12.933013pt;}
.ws6{word-spacing:-12.837120pt;}
.ws16{word-spacing:-12.746880pt;}
.ws24{word-spacing:-12.682880pt;}
.ws26{word-spacing:-12.591787pt;}
.wsc{word-spacing:-12.284587pt;}
.ws7{word-spacing:-12.058987pt;}
.ws5{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.968640pt;}
.wsd{word-spacing:-11.953280pt;}
.ws4{word-spacing:-11.902187pt;}
.ws9{word-spacing:-9.690880pt;}
.ws2a{word-spacing:-9.656533pt;}
.wsb{word-spacing:-9.464213pt;}
.wsa{word-spacing:-9.447147pt;}
.ws2b{word-spacing:-9.137067pt;}
.ws22{word-spacing:-8.389120pt;}
.ws1d{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
.ws29{word-spacing:9.358080pt;}
.ws3{word-spacing:38.512000pt;}
._8{margin-left:-11.091840pt;}
._6{margin-left:-9.368640pt;}
._e{margin-left:-8.250773pt;}
._b{margin-left:-7.341013pt;}
._d{margin-left:-6.305280pt;}
._9{margin-left:-5.294933pt;}
._7{margin-left:-4.325973pt;}
._1{margin-left:-2.684160pt;}
._2{margin-left:-1.789440pt;}
._c{margin-left:-0.897280pt;}
._4{width:1.062400pt;}
._0{width:2.018347pt;}
._12{width:3.591680pt;}
._13{width:4.615680pt;}
._16{width:6.031787pt;}
._17{width:7.569493pt;}
._18{width:8.483840pt;}
._15{width:9.927680pt;}
._14{width:11.151360pt;}
._19{width:12.267520pt;}
._1a{width:14.309120pt;}
._1b{width:15.964587pt;}
._1c{width:17.341440pt;}
._1d{width:18.588160pt;}
._1e{width:20.455680pt;}
._f{width:21.411413pt;}
._a{width:22.430293pt;}
._10{width:26.319360pt;}
._11{width:27.732480pt;}
._1f{width:31.265280pt;}
._20{width:35.504640pt;}
._21{width:37.235200pt;}
._2a{width:38.213120pt;}
._23{width:52.756480pt;}
._5{width:53.969920pt;}
._28{width:55.767467pt;}
._22{width:57.696427pt;}
._27{width:70.008320pt;}
._24{width:80.312320pt;}
._29{width:103.393280pt;}
._25{width:117.230080pt;}
._26{width:118.607360pt;}
._3{width:754.831787pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y16b{bottom:0.160000pt;}
.y2{bottom:3.360000pt;}
.y1a{bottom:3.520000pt;}
.yf{bottom:4.000000pt;}
.y19c{bottom:4.026667pt;}
.y1a8{bottom:4.040000pt;}
.ye0{bottom:4.640000pt;}
.y170{bottom:4.672000pt;}
.ye2{bottom:5.120000pt;}
.y16f{bottom:5.152000pt;}
.ydf{bottom:5.760000pt;}
.y1ae{bottom:6.080000pt;}
.y18e{bottom:6.240000pt;}
.y194{bottom:8.160000pt;}
.yb{bottom:9.280000pt;}
.y18{bottom:11.360000pt;}
.y181{bottom:12.960000pt;}
.y1aa{bottom:13.000000pt;}
.y1cd{bottom:13.280000pt;}
.y16d{bottom:13.600000pt;}
.y1ac{bottom:15.040000pt;}
.y18c{bottom:15.194667pt;}
.y17f{bottom:16.160000pt;}
.y1bb{bottom:17.146667pt;}
.y166{bottom:21.760000pt;}
.y1d0{bottom:21.786667pt;}
.y156{bottom:21.920000pt;}
.y19b{bottom:21.946667pt;}
.y15b{bottom:21.960000pt;}
.y1c9{bottom:22.240000pt;}
.y18d{bottom:23.994667pt;}
.y1ad{bottom:24.000000pt;}
.y17d{bottom:24.960000pt;}
.y190{bottom:25.120000pt;}
.y193{bottom:26.080000pt;}
.y1bd{bottom:26.106667pt;}
.y17{bottom:29.120000pt;}
.y188{bottom:30.720000pt;}
.y183{bottom:30.880000pt;}
.y1a0{bottom:30.906667pt;}
.y1a6{bottom:30.920000pt;}
.y1cc{bottom:31.200000pt;}
.y1f6{bottom:31.360000pt;}
.y16c{bottom:31.386667pt;}
.y17e{bottom:33.920000pt;}
.y191{bottom:34.080000pt;}
.y1b9{bottom:35.066667pt;}
.y163{bottom:39.680000pt;}
.y1cf{bottom:39.706667pt;}
.y1e9{bottom:39.720000pt;}
.y155{bottom:39.840000pt;}
.y198{bottom:39.866667pt;}
.y196{bottom:39.880000pt;}
.y1c7{bottom:40.160000pt;}
.y1bc{bottom:44.026667pt;}
.y189{bottom:48.640000pt;}
.y19f{bottom:48.666667pt;}
.y1e8{bottom:48.680000pt;}
.y1a3{bottom:48.800000pt;}
.y1a9{bottom:48.840000pt;}
.y1c5{bottom:49.120000pt;}
.y3{bottom:50.720000pt;}
.y1ba{bottom:52.986667pt;}
.y18a{bottom:57.600000pt;}
.y162{bottom:57.626667pt;}
.y1db{bottom:57.640000pt;}
.y184{bottom:57.760000pt;}
.y1e3{bottom:57.786667pt;}
.y1a7{bottom:57.800000pt;}
.y1c6{bottom:58.120000pt;}
.ya{bottom:59.040000pt;}
.y1{bottom:66.560000pt;}
.y19e{bottom:66.586667pt;}
.y1a4{bottom:66.720000pt;}
.y1c2{bottom:66.760000pt;}
.y1cb{bottom:66.920000pt;}
.y1c0{bottom:75.520000pt;}
.y161{bottom:75.546667pt;}
.y1da{bottom:75.560000pt;}
.y1a2{bottom:75.680000pt;}
.y1e4{bottom:75.706667pt;}
.y1c3{bottom:75.720000pt;}
.y1c8{bottom:75.880000pt;}
.y19d{bottom:84.506667pt;}
.y1d4{bottom:84.520000pt;}
.y1b7{bottom:84.640000pt;}
.y1ca{bottom:84.840000pt;}
.y1bf{bottom:93.440000pt;}
.y19a{bottom:93.466667pt;}
.y1d2{bottom:93.480000pt;}
.y1e5{bottom:93.626667pt;}
.y1b6{bottom:93.640000pt;}
.y21b{bottom:99.360000pt;}
.y1b4{bottom:99.392000pt;}
.y1de{bottom:99.872000pt;}
.y1d3{bottom:102.440000pt;}
.y1f4{bottom:104.032000pt;}
.y1dd{bottom:104.512000pt;}
.y142{bottom:107.040000pt;}
.y9{bottom:108.640000pt;}
.y174{bottom:110.592000pt;}
.y11a{bottom:110.720000pt;}
.y199{bottom:111.386667pt;}
.y1d9{bottom:111.400000pt;}
.y1f0{bottom:111.546667pt;}
.y82{bottom:115.040000pt;}
.y21a{bottom:115.680000pt;}
.y1b3{bottom:115.712000pt;}
.y219{bottom:120.320000pt;}
.y1b2{bottom:120.352000pt;}
.yf6{bottom:122.720000pt;}
.y18b{bottom:123.712000pt;}
.y141{bottom:124.960000pt;}
.y1d8{bottom:129.320000pt;}
.y1ef{bottom:129.466667pt;}
.y1dc{bottom:129.792000pt;}
.yb3{bottom:131.232000pt;}
.y1b1{bottom:132.512000pt;}
.y81{bottom:132.992000pt;}
.y1b0{bottom:137.786667pt;}
.y119{bottom:140.826667pt;}
.y1ea{bottom:141.786667pt;}
.y140{bottom:142.746667pt;}
.y1f3{bottom:144.506667pt;}
.y1d7{bottom:147.240000pt;}
.y1ee{bottom:147.386667pt;}
.yb2{bottom:150.586667pt;}
.y80{bottom:150.906667pt;}
.yf5{bottom:152.826667pt;}
.y13f{bottom:160.666667pt;}
.y1af{bottom:162.426667pt;}
.y187{bottom:164.506667pt;}
.y1d6{bottom:165.160000pt;}
.y1c1{bottom:165.626667pt;}
.y7f{bottom:168.826667pt;}
.y118{bottom:170.746667pt;}
.y1d1{bottom:179.066667pt;}
.y13e{bottom:179.386667pt;}
.yf4{bottom:182.746667pt;}
.y1d5{bottom:183.080000pt;}
.y7e{bottom:186.746667pt;}
.y1ab{bottom:187.066667pt;}
.y218{bottom:191.386667pt;}
.yb1{bottom:192.506667pt;}
.y1e7{bottom:196.186667pt;}
.yf3{bottom:202.106667pt;}
.y117{bottom:202.906667pt;}
.y7d{bottom:204.666667pt;}
.y13d{bottom:210.106667pt;}
.yb0{bottom:210.426667pt;}
.y1f2{bottom:217.946667pt;}
.y5c{bottom:226.906667pt;}
.y1a5{bottom:227.706667pt;}
.y217{bottom:228.026667pt;}
.yaf{bottom:228.186667pt;}
.y15{bottom:228.986667pt;}
.y13c{bottom:229.466667pt;}
.y1f1{bottom:232.706667pt;}
.yf2{bottom:234.106667pt;}
.y7c{bottom:234.586667pt;}
.y186{bottom:236.706667pt;}
.y5b{bottom:244.826667pt;}
.y116{bottom:246.106667pt;}
.y216{bottom:246.746667pt;}
.yd5{bottom:247.866667pt;}
.y13b{bottom:248.826667pt;}
.y7b{bottom:253.946667pt;}
.yae{bottom:256.826667pt;}
.y14{bottom:258.906667pt;}
.y5a{bottom:262.746667pt;}
.y215{bottom:264.666667pt;}
.y115{bottom:265.466667pt;}
.y1e6{bottom:268.386667pt;}
.y185{bottom:273.186667pt;}
.y1be{bottom:273.826667pt;}
.yad{bottom:274.746667pt;}
.yf1{bottom:277.306667pt;}
.yd4{bottom:277.786667pt;}
.y59{bottom:280.666667pt;}
.y13a{bottom:280.826667pt;}
.y7a{bottom:282.426667pt;}
.y214{bottom:282.586667pt;}
.y114{bottom:284.826667pt;}
.y13{bottom:288.826667pt;}
.y37{bottom:290.426667pt;}
.yac{bottom:292.666667pt;}
.yf0{bottom:296.666667pt;}
.y58{bottom:298.586667pt;}
.y1a1{bottom:300.066667pt;}
.y79{bottom:300.346667pt;}
.y1ed{bottom:304.866667pt;}
.yd3{bottom:307.706667pt;}
.y113{bottom:313.306667pt;}
.yef{bottom:316.026667pt;}
.y57{bottom:316.506667pt;}
.y78{bottom:318.266667pt;}
.y213{bottom:318.586667pt;}
.y12{bottom:318.906667pt;}
.y36{bottom:322.106667pt;}
.yab{bottom:322.586667pt;}
.y139{bottom:324.186667pt;}
.yd2{bottom:327.066667pt;}
.y182{bottom:327.586667pt;}
.y112{bottom:331.226667pt;}
.y11{bottom:333.466667pt;}
.y56{bottom:334.426667pt;}
.y212{bottom:336.026667pt;}
.y77{bottom:336.186667pt;}
.y1e2{bottom:340.706667pt;}
.yaa{bottom:341.946667pt;}
.y138{bottom:343.386667pt;}
.yd1{bottom:346.426667pt;}
.y111{bottom:349.186667pt;}
.y35{bottom:350.786667pt;}
.yee{bottom:351.426667pt;}
.y10{bottom:352.066667pt;}
.y55{bottom:352.386667pt;}
.y76{bottom:354.146667pt;}
.y137{bottom:362.786667pt;}
.yd0{bottom:365.826667pt;}
.y110{bottom:367.106667pt;}
.y34{bottom:368.386667pt;}
.y169{bottom:368.706667pt;}
.y54{bottom:370.306667pt;}
.ya9{bottom:370.466667pt;}
.ye{bottom:370.626667pt;}
.y75{bottom:372.066667pt;}
.y1ce{bottom:376.706667pt;}
.y211{bottom:377.666667pt;}
.y1b8{bottom:381.826667pt;}
.y136{bottom:382.146667pt;}
.y10f{bottom:385.026667pt;}
.y53{bottom:388.226667pt;}
.ya8{bottom:388.386667pt;}
.y197{bottom:390.306667pt;}
.y33{bottom:393.986667pt;}
.ycf{bottom:395.746667pt;}
.y210{bottom:397.026667pt;}
.y180{bottom:399.933333pt;}
.y135{bottom:401.506667pt;}
.y74{bottom:401.986667pt;}
.yed{bottom:402.786667pt;}
.y10e{bottom:402.946667pt;}
.y168{bottom:405.186667pt;}
.yd{bottom:405.346667pt;}
.y52{bottom:405.986667pt;}
.ya7{bottom:406.306667pt;}
.yce{bottom:415.106667pt;}
.y32{bottom:419.426667pt;}
.y134{bottom:420.706667pt;}
.y10d{bottom:420.866667pt;}
.y73{bottom:421.346667pt;}
.y167{bottom:423.746667pt;}
.y51{bottom:423.906667pt;}
.ya6{bottom:424.226667pt;}
.y20f{bottom:426.466667pt;}
.ycd{bottom:434.466667pt;}
.yc{bottom:435.266667pt;}
.y17c{bottom:436.413333pt;}
.y31{bottom:437.026667pt;}
.y10c{bottom:438.626667pt;}
.y133{bottom:440.066667pt;}
.y50{bottom:441.826667pt;}
.ya5{bottom:442.146667pt;}
.y20e{bottom:443.906667pt;}
.yec{bottom:445.986667pt;}
.y1e1{bottom:448.893333pt;}
.y8{bottom:449.186667pt;}
.y72{bottom:453.346667pt;}
.ycc{bottom:453.666667pt;}
.y10b{bottom:456.546667pt;}
.y4f{bottom:459.746667pt;}
.ya4{bottom:460.066667pt;}
.y165{bottom:460.226667pt;}
.y1b5{bottom:462.493333pt;}
.y30{bottom:462.626667pt;}
.yeb{bottom:465.346667pt;}
.y1ec{bottom:466.813333pt;}
.y132{bottom:469.986667pt;}
.y71{bottom:472.706667pt;}
.y10a{bottom:474.466667pt;}
.ya3{bottom:477.986667pt;}
.ycb{bottom:483.746667pt;}
.y2f{bottom:488.226667pt;}
.y131{bottom:489.346667pt;}
.y70{bottom:491.906667pt;}
.y20d{bottom:492.066667pt;}
.y109{bottom:492.386667pt;}
.y4e{bottom:495.106667pt;}
.yea{bottom:495.266667pt;}
.y164{bottom:496.706667pt;}
.y1c4{bottom:502.653333pt;}
.yca{bottom:503.106667pt;}
.y1e0{bottom:503.293333pt;}
.y2e{bottom:505.666667pt;}
.y153{bottom:506.146667pt;}
.ya2{bottom:507.906667pt;}
.y130{bottom:508.706667pt;}
.y108{bottom:510.306667pt;}
.y20c{bottom:511.426667pt;}
.y17b{bottom:513.053333pt;}
.ye9{bottom:514.626667pt;}
.y160{bottom:515.266667pt;}
.y195{bottom:516.253333pt;}
.yc9{bottom:522.306667pt;}
.y2d{bottom:523.266667pt;}
.y6f{bottom:523.906667pt;}
.y12f{bottom:528.066667pt;}
.y107{bottom:528.226667pt;}
.y4d{bottom:529.026667pt;}
.y17a{bottom:533.213333pt;}
.ye8{bottom:533.986667pt;}
.y152{bottom:535.746667pt;}
.y1eb{bottom:538.973333pt;}
.ya1{bottom:539.906667pt;}
.y20b{bottom:541.346667pt;}
.y4c{bottom:547.746667pt;}
.y2c{bottom:548.866667pt;}
.yc8{bottom:552.386667pt;}
.y179{bottom:552.573333pt;}
.y151{bottom:553.026667pt;}
.ye7{bottom:553.346667pt;}
.y6e{bottom:553.986667pt;}
.y20a{bottom:555.906667pt;}
.y1df{bottom:556.933333pt;}
.y12e{bottom:557.506667pt;}
.y106{bottom:558.146667pt;}
.y4b{bottom:566.306667pt;}
.y2b{bottom:566.466667pt;}
.y192{bottom:570.693333pt;}
.yc7{bottom:571.773333pt;}
.ye6{bottom:572.573333pt;}
.y178{bottom:572.773333pt;}
.y6d{bottom:573.213333pt;}
.y209{bottom:574.493333pt;}
.y12d{bottom:574.973333pt;}
.y150{bottom:582.013333pt;}
.ya0{bottom:583.293333pt;}
.y4a{bottom:585.053333pt;}
.y105{bottom:586.813333pt;}
.yc6{bottom:590.973333pt;}
.y177{bottom:591.973333pt;}
.y2a{bottom:592.093333pt;}
.y6c{bottom:592.573333pt;}
.y208{bottom:593.053333pt;}
.y7{bottom:598.173333pt;}
.y9f{bottom:602.653333pt;}
.y49{bottom:603.773333pt;}
.y104{bottom:604.733333pt;}
.y15f{bottom:605.373333pt;}
.y173{bottom:608.773333pt;}
.y29{bottom:609.533333pt;}
.y12c{bottom:610.173333pt;}
.yc5{bottom:610.333333pt;}
.y18f{bottom:611.333333pt;}
.y207{bottom:611.613333pt;}
.y6b{bottom:611.933333pt;}
.y9e{bottom:621.853333pt;}
.y48{bottom:622.493333pt;}
.y103{bottom:622.653333pt;}
.y176{bottom:622.853333pt;}
.y28{bottom:627.133333pt;}
.y172{bottom:628.133333pt;}
.yc4{bottom:629.693333pt;}
.y206{bottom:630.333333pt;}
.y6{bottom:631.293333pt;}
.y12b{bottom:637.533333pt;}
.y102{bottom:640.573333pt;}
.y47{bottom:641.053333pt;}
.y205{bottom:648.893333pt;}
.y14f{bottom:650.653333pt;}
.ye5{bottom:651.453333pt;}
.y9d{bottom:651.933333pt;}
.y27{bottom:652.733333pt;}
.y12a{bottom:655.453333pt;}
.y171{bottom:658.053333pt;}
.y175{bottom:658.213333pt;}
.y101{bottom:658.493333pt;}
.y46{bottom:659.773333pt;}
.yc3{bottom:661.693333pt;}
.y6a{bottom:663.293333pt;}
.ye4{bottom:664.733333pt;}
.y204{bottom:667.453333pt;}
.y14e{bottom:669.853333pt;}
.y9c{bottom:671.293333pt;}
.y129{bottom:673.373333pt;}
.y8f{bottom:674.653333pt;}
.y16e{bottom:675.973333pt;}
.y100{bottom:676.253333pt;}
.y26{bottom:678.333333pt;}
.y45{bottom:678.493333pt;}
.y69{bottom:682.493333pt;}
.ye3{bottom:683.293333pt;}
.y203{bottom:686.013333pt;}
.y9b{bottom:690.493333pt;}
.y16a{bottom:690.533333pt;}
.y128{bottom:691.293333pt;}
.yff{bottom:694.173333pt;}
.y25{bottom:695.773333pt;}
.y15e{bottom:696.253333pt;}
.y44{bottom:697.213333pt;}
.y14d{bottom:698.493333pt;}
.y68{bottom:701.853333pt;}
.yc2{bottom:703.613333pt;}
.y8e{bottom:704.573333pt;}
.y127{bottom:709.213333pt;}
.yfe{bottom:712.093333pt;}
.y24{bottom:713.373333pt;}
.y43{bottom:715.933333pt;}
.y14c{bottom:716.413333pt;}
.ye1{bottom:720.413333pt;}
.y9a{bottom:720.573333pt;}
.y67{bottom:721.053333pt;}
.yc1{bottom:721.533333pt;}
.y202{bottom:723.133333pt;}
.y126{bottom:727.133333pt;}
.yfd{bottom:730.013333pt;}
.y23{bottom:730.973333pt;}
.y15d{bottom:732.733333pt;}
.y14b{bottom:734.333333pt;}
.y42{bottom:734.493333pt;}
.yde{bottom:738.973333pt;}
.y99{bottom:739.933333pt;}
.yc0{bottom:740.093333pt;}
.y125{bottom:745.053333pt;}
.yfc{bottom:747.933333pt;}
.y22{bottom:748.573333pt;}
.y15c{bottom:751.293333pt;}
.y14a{bottom:752.253333pt;}
.y41{bottom:753.213333pt;}
.ydd{bottom:758.173333pt;}
.ybf{bottom:758.813333pt;}
.y98{bottom:759.133333pt;}
.y124{bottom:762.813333pt;}
.y8d{bottom:763.133333pt;}
.yfb{bottom:765.853333pt;}
.y15a{bottom:769.853333pt;}
.y149{bottom:770.173333pt;}
.y40{bottom:771.933333pt;}
.y66{bottom:772.573333pt;}
.y21{bottom:774.173333pt;}
.ybe{bottom:777.533333pt;}
.y97{bottom:778.493333pt;}
.y123{bottom:780.733333pt;}
.y8c{bottom:781.053333pt;}
.y148{bottom:788.093333pt;}
.y3f{bottom:790.653333pt;}
.ydc{bottom:793.573333pt;}
.y226{bottom:794.373333pt;}
.ybd{bottom:795.493333pt;}
.yfa{bottom:795.813333pt;}
.y122{bottom:798.693333pt;}
.y8b{bottom:799.013333pt;}
.y20{bottom:799.653333pt;}
.y201{bottom:800.293333pt;}
.y65{bottom:802.533333pt;}
.y147{bottom:806.053333pt;}
.y159{bottom:806.373333pt;}
.y96{bottom:808.453333pt;}
.y3e{bottom:809.253333pt;}
.y225{bottom:813.733333pt;}
.ybc{bottom:814.213333pt;}
.y121{bottom:816.613333pt;}
.y8a{bottom:816.933333pt;}
.y200{bottom:819.653333pt;}
.y64{bottom:821.893333pt;}
.ydb{bottom:822.533333pt;}
.y146{bottom:823.813333pt;}
.y1f{bottom:825.253333pt;}
.yf9{bottom:825.893333pt;}
.y95{bottom:827.813333pt;}
.y3d{bottom:827.973333pt;}
.ybb{bottom:832.133333pt;}
.y224{bottom:833.093333pt;}
.y120{bottom:834.533333pt;}
.y89{bottom:834.853333pt;}
.y1ff{bottom:839.013333pt;}
.y63{bottom:841.253333pt;}
.yda{bottom:841.893333pt;}
.y158{bottom:842.853333pt;}
.y94{bottom:847.173333pt;}
.yba{bottom:850.693333pt;}
.y1e{bottom:850.853333pt;}
.y88{bottom:852.773333pt;}
.y145{bottom:853.893333pt;}
.yf8{bottom:857.893333pt;}
.yd9{bottom:861.093333pt;}
.y157{bottom:861.413333pt;}
.y223{bottom:861.573333pt;}
.y3c{bottom:864.133333pt;}
.y11f{bottom:864.453333pt;}
.yb9{bottom:868.613333pt;}
.y1fe{bottom:868.933333pt;}
.y87{bottom:870.533333pt;}
.y62{bottom:871.173333pt;}
.y144{bottom:873.093333pt;}
.y1d{bottom:876.453333pt;}
.y93{bottom:877.093333pt;}
.y222{bottom:879.493333pt;}
.y154{bottom:879.973333pt;}
.yd8{bottom:880.453333pt;}
.y11e{bottom:883.813333pt;}
.yb8{bottom:886.533333pt;}
.y1fc{bottom:888.293333pt;}
.y86{bottom:888.453333pt;}
.y61{bottom:890.533333pt;}
.y1fd{bottom:893.573333pt;}
.y92{bottom:896.453333pt;}
.y221{bottom:897.413333pt;}
.y3b{bottom:899.493333pt;}
.yf7{bottom:901.093333pt;}
.y11d{bottom:903.173333pt;}
.yb7{bottom:905.253333pt;}
.y1fb{bottom:907.653333pt;}
.y1c{bottom:908.293333pt;}
.y60{bottom:909.893333pt;}
.yd7{bottom:912.453333pt;}
.y220{bottom:915.333333pt;}
.y91{bottom:915.813333pt;}
.y3a{bottom:918.693333pt;}
.y85{bottom:920.453333pt;}
.y11c{bottom:922.533333pt;}
.yb6{bottom:923.173333pt;}
.y1fa{bottom:927.013333pt;}
.y5f{bottom:929.093333pt;}
.y21f{bottom:933.253333pt;}
.y84{bottom:939.813333pt;}
.yb5{bottom:941.093333pt;}
.y11b{bottom:941.733333pt;}
.y90{bottom:947.813333pt;}
.y21e{bottom:951.173333pt;}
.y143{bottom:952.453333pt;}
.y39{bottom:954.053333pt;}
.yd6{bottom:955.813333pt;}
.y83{bottom:959.013333pt;}
.y5e{bottom:961.093333pt;}
.y1f9{bottom:962.213333pt;}
.y21d{bottom:969.093333pt;}
.yb4{bottom:971.813333pt;}
.y1f8{bottom:981.573333pt;}
.y1b{bottom:982.053333pt;}
.y5{bottom:982.693333pt;}
.y21c{bottom:986.853333pt;}
.y38{bottom:989.253333pt;}
.y5d{bottom:991.173333pt;}
.y1f7{bottom:1004.773333pt;}
.y19{bottom:1009.093333pt;}
.y4{bottom:1012.640000pt;}
.y1f5{bottom:1019.360000pt;}
.y16{bottom:1023.680000pt;}
.h2{height:17.760000pt;}
.hb{height:17.920000pt;}
.hc{height:17.952000pt;}
.h16{height:18.560000pt;}
.h37{height:18.880000pt;}
.h21{height:18.912000pt;}
.h29{height:31.828125pt;}
.h8{height:33.120000pt;}
.h2b{height:34.374375pt;}
.h1d{height:35.680000pt;}
.h1a{height:35.840000pt;}
.h1b{height:35.872000pt;}
.h2a{height:36.920625pt;}
.he{height:38.828437pt;}
.h25{height:40.000000pt;}
.h18{height:42.745000pt;}
.h3{height:45.935313pt;}
.h14{height:47.380000pt;}
.h4{height:50.916250pt;}
.hd{height:51.680000pt;}
.h15{height:52.834688pt;}
.h32{height:53.600000pt;}
.h31{height:53.632000pt;}
.h19{height:53.760000pt;}
.h26{height:53.792000pt;}
.h10{height:54.390938pt;}
.h17{height:54.598989pt;}
.h36{height:56.000000pt;}
.h20{height:56.032000pt;}
.hf{height:56.306250pt;}
.h5{height:58.563750pt;}
.h22{height:60.000000pt;}
.h11{height:60.288750pt;}
.h12{height:60.519362pt;}
.h13{height:61.295000pt;}
.h7{height:64.006250pt;}
.h38{height:70.858125pt;}
.h34{height:71.520000pt;}
.h24{height:71.552000pt;}
.h33{height:71.680000pt;}
.h23{height:71.712000pt;}
.h2d{height:80.032000pt;}
.h39{height:88.003750pt;}
.h1c{height:89.472000pt;}
.h28{height:89.600000pt;}
.h2e{height:107.360000pt;}
.h2c{height:107.552000pt;}
.h2f{height:108.032000pt;}
.h27{height:125.312000pt;}
.ha{height:128.950937pt;}
.h9{height:148.986667pt;}
.h35{height:161.306667pt;}
.h30{height:196.826667pt;}
.h6{height:335.226667pt;}
.h1e{height:793.760000pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:36.992000pt;}
.w22{width:37.312000pt;}
.wa{width:56.032000pt;}
.we{width:65.440000pt;}
.w6{width:74.752000pt;}
.w2d{width:74.912000pt;}
.w2e{width:84.320000pt;}
.w1d{width:87.840000pt;}
.w26{width:88.160000pt;}
.wf{width:103.232000pt;}
.w10{width:103.392000pt;}
.w11{width:103.520000pt;}
.w20{width:109.632000pt;}
.w1a{width:112.960000pt;}
.w23{width:113.280000pt;}
.w1e{width:122.432000pt;}
.w27{width:122.752000pt;}
.w2f{width:137.786667pt;}
.w1c{width:141.306667pt;}
.w25{width:141.626667pt;}
.w1f{width:150.880000pt;}
.w28{width:151.200000pt;}
.wb{width:164.186667pt;}
.w2a{width:165.466667pt;}
.wc{width:199.706667pt;}
.wd{width:206.906667pt;}
.w1b{width:207.226667pt;}
.w24{width:207.546667pt;}
.w7{width:236.026667pt;}
.w8{width:258.106667pt;}
.w15{width:272.986667pt;}
.w29{width:273.026667pt;}
.w3{width:288.026667pt;}
.w2c{width:301.466667pt;}
.w2{width:313.506667pt;}
.w9{width:353.506667pt;}
.w14{width:398.146667pt;}
.w18{width:438.786667pt;}
.w17{width:477.533333pt;}
.w5{width:583.293333pt;}
.w2b{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w21{width:1122.559967pt;}
.w16{width:1122.559983pt;}
.w12{width:1122.560000pt;}
.w13{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x46{left:8.640000pt;}
.x50{left:9.760000pt;}
.x43{left:11.040000pt;}
.x56{left:12.026667pt;}
.x2a{left:13.120000pt;}
.x44{left:14.080000pt;}
.x26{left:15.520000pt;}
.x17{left:17.280000pt;}
.x34{left:18.400000pt;}
.x4a{left:19.360000pt;}
.x4f{left:20.800000pt;}
.x27{left:22.586667pt;}
.x4e{left:23.840000pt;}
.x41{left:24.800000pt;}
.x28{left:25.920000pt;}
.x40{left:27.200000pt;}
.x38{left:28.320000pt;}
.x39{left:30.080000pt;}
.x1b{left:31.360000pt;}
.x3c{left:33.120000pt;}
.x47{left:34.400000pt;}
.x3b{left:36.160000pt;}
.x3d{left:38.240000pt;}
.x3f{left:39.226667pt;}
.x4d{left:40.640000pt;}
.x3e{left:42.080000pt;}
.x36{left:43.840000pt;}
.x45{left:45.760000pt;}
.x4c{left:48.480000pt;}
.x1d{left:50.720000pt;}
.x1a{left:52.320000pt;}
.x1c{left:54.080000pt;}
.x4b{left:56.160000pt;}
.x51{left:61.120000pt;}
.x42{left:73.120000pt;}
.x49{left:75.360000pt;}
.xa{left:86.592000pt;}
.x2d{left:90.879983pt;}
.xd{left:93.626667pt;}
.x1{left:95.712000pt;}
.x30{left:96.640000pt;}
.x2f{left:100.479983pt;}
.x13{left:103.231988pt;}
.x10{left:110.751988pt;}
.x22{left:112.192000pt;}
.x5{left:114.592000pt;}
.x52{left:116.960000pt;}
.x11{left:120.031988pt;}
.x14{left:132.351988pt;}
.x31{left:134.266667pt;}
.x12{left:144.026655pt;}
.x1f{left:168.026655pt;}
.x16{left:186.266667pt;}
.x20{left:192.026655pt;}
.xe{left:195.226667pt;}
.x21{left:239.560000pt;}
.x18{left:242.946667pt;}
.x4{left:246.760000pt;}
.x32{left:247.866667pt;}
.xb{left:249.954667pt;}
.x15{left:256.226655pt;}
.x53{left:271.106643pt;}
.x54{left:275.746655pt;}
.x59{left:277.666655pt;}
.x48{left:288.026650pt;}
.x23{left:319.746667pt;}
.xc{left:344.706667pt;}
.x8{left:385.826667pt;}
.x2c{left:390.280000pt;}
.x55{left:398.786667pt;}
.x19{left:407.773333pt;}
.x3{left:409.213333pt;}
.x6{left:456.101333pt;}
.x9{left:461.213333pt;}
.x57{left:474.493333pt;}
.x29{left:484.706667pt;}
.x24{left:489.693333pt;}
.x58{left:559.453333pt;}
.x2b{left:573.213333pt;}
.x25{left:593.733333pt;}
.x33{left:597.693333pt;}
.x7{left:634.368000pt;}
.x35{left:686.173333pt;}
.xf{left:691.493322pt;}
.x1e{left:697.893322pt;}
.x37{left:809.253333pt;}
.x3a{left:960.773333pt;}
.x2e{left:1010.719983pt;}
}




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