
    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_377cdcc4097cb20d8e6b44c2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fe13e84285acd0f4055bb675.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_24d623f7d546e366207c8865.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b7e801652bd9fab74a228fe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_5e4407d49cfc4f8e20384ef1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_37dbc0be62db694b0c45027d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b1b831149accb30537d6ccdb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_faceb219d7bb74004aa56f50.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3b6d7c8860ff703918894a32.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.989258;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_bbca196eeef123ff74982e44.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07b9cb19c7523d8efbd7dd2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_f6cdfcce244e206dda22b028.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.vd{vertical-align:-34.560000px;}
.v9{vertical-align:-30.240000px;}
.v7{vertical-align:-23.040000px;}
.vc{vertical-align:-20.160000px;}
.v8{vertical-align:-16.560000px;}
.v4{vertical-align:-12.240000px;}
.v3{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.v5{vertical-align:12.240000px;}
.v6{vertical-align:13.680000px;}
.v1{vertical-align:22.320000px;}
.vf{vertical-align:25.920000px;}
.v10{vertical-align:27.360000px;}
.vb{vertical-align:35.280000px;}
.va{vertical-align:38.880000px;}
.ve{vertical-align:47.520000px;}
.lsd{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.413400px;}
.lsb{letter-spacing:-0.360000px;}
.ls65{letter-spacing:-0.269400px;}
.ls5a{letter-spacing:-0.258000px;}
.ls67{letter-spacing:-0.226200px;}
.ls12{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.206400px;}
.ls6b{letter-spacing:-0.178800px;}
.ls6a{letter-spacing:-0.106800px;}
.ls5b{letter-spacing:-0.053280px;}
.ls6c{letter-spacing:-0.008640px;}
.lsa{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.012960px;}
.ls9{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.054720px;}
.ls51{letter-spacing:0.086160px;}
.ls14{letter-spacing:0.106800px;}
.ls66{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.109440px;}
.ls4f{letter-spacing:0.110160px;}
.ls8{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.181200px;}
.ls63{letter-spacing:0.192960px;}
.ls6e{letter-spacing:0.206400px;}
.ls6f{letter-spacing:0.220200px;}
.ls3{letter-spacing:0.245520px;}
.ls64{letter-spacing:0.249000px;}
.lsf{letter-spacing:0.259800px;}
.ls58{letter-spacing:0.259920px;}
.ls6d{letter-spacing:0.298800px;}
.ls31{letter-spacing:0.301200px;}
.ls4{letter-spacing:0.322560px;}
.ls29{letter-spacing:0.331920px;}
.ls6{letter-spacing:0.360000px;}
.ls45{letter-spacing:0.390960px;}
.ls1c{letter-spacing:0.399600px;}
.ls1e{letter-spacing:0.579600px;}
.lse{letter-spacing:0.666000px;}
.ls60{letter-spacing:0.684000px;}
.ls10{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.866160px;}
.ls48{letter-spacing:1.051920px;}
.ls11{letter-spacing:1.080000px;}
.ls2a{letter-spacing:1.119600px;}
.ls3f{letter-spacing:1.303680px;}
.ls1d{letter-spacing:1.319040px;}
.ls2e{letter-spacing:1.327680px;}
.ls3c{letter-spacing:1.404000px;}
.ls5{letter-spacing:1.710000px;}
.ls1b{letter-spacing:1.750800px;}
.ls20{letter-spacing:1.774800px;}
.ls2c{letter-spacing:1.830960px;}
.ls47{letter-spacing:1.837440px;}
.ls4a{letter-spacing:2.250000px;}
.ls41{letter-spacing:2.355120px;}
.ls4b{letter-spacing:2.413440px;}
.ls62{letter-spacing:2.550960px;}
.ls1f{letter-spacing:2.678400px;}
.ls5e{letter-spacing:3.060000px;}
.ls1a{letter-spacing:3.085920px;}
.ls4d{letter-spacing:3.090000px;}
.ls3d{letter-spacing:3.159360px;}
.ls27{letter-spacing:3.211920px;}
.ls40{letter-spacing:3.225600px;}
.ls36{letter-spacing:3.398400px;}
.ls17{letter-spacing:3.769200px;}
.ls7{letter-spacing:3.780000px;}
.ls34{letter-spacing:3.805920px;}
.ls3e{letter-spacing:3.879360px;}
.ls35{letter-spacing:3.945600px;}
.ls4e{letter-spacing:4.006080px;}
.ls52{letter-spacing:4.152960px;}
.ls16{letter-spacing:4.162320px;}
.ls25{letter-spacing:4.174560px;}
.ls15{letter-spacing:4.284720px;}
.ls19{letter-spacing:4.489200px;}
.ls2d{letter-spacing:4.719600px;}
.ls2b{letter-spacing:5.374800px;}
.ls13{letter-spacing:6.660000px;}
.ls18{letter-spacing:6.998400px;}
.ls61{letter-spacing:7.479360px;}
.ls55{letter-spacing:9.597600px;}
.ls68{letter-spacing:10.260000px;}
.ls5c{letter-spacing:13.679280px;}
.ls4c{letter-spacing:16.239600px;}
.ls2f{letter-spacing:16.358400px;}
.ls38{letter-spacing:16.559280px;}
.ls5d{letter-spacing:16.813440px;}
.ls23{letter-spacing:16.905600px;}
.ls46{letter-spacing:16.935600px;}
.ls42{letter-spacing:16.959600px;}
.ls53{letter-spacing:17.139600px;}
.ls3b{letter-spacing:17.279280px;}
.ls5f{letter-spacing:17.399280px;}
.ls37{letter-spacing:17.679600px;}
.ls49{letter-spacing:19.761600px;}
.ls3a{letter-spacing:20.095200px;}
.ls21{letter-spacing:20.505600px;}
.ls50{letter-spacing:20.566080px;}
.ls33{letter-spacing:21.225600px;}
.ls54{letter-spacing:34.884000px;}
.ls56{letter-spacing:42.264000px;}
.ls44{letter-spacing:60.159600px;}
.ls43{letter-spacing:61.599600px;}
.ls59{letter-spacing:71.226720px;}
.ls39{letter-spacing:91.526160px;}
.ls24{letter-spacing:91.550160px;}
.ls57{letter-spacing:138.600000px;}
.ls26{letter-spacing:144.360000px;}
.ls69{letter-spacing:167.581440px;}
.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;}
}
.ws1f{word-spacing:-179.190720px;}
.ws7{word-spacing:-15.606000px;}
.ws2{word-spacing:-15.300000px;}
.ws28{word-spacing:-15.238800px;}
.ws21{word-spacing:-15.199800px;}
.ws27{word-spacing:-15.146400px;}
.ws1{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws1e{word-spacing:-14.833200px;}
.ws26{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.526600px;}
.ws0{word-spacing:-13.734480px;}
.ws4{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.396200px;}
.ws8{word-spacing:-13.147200px;}
.ws5{word-spacing:-12.906000px;}
.ws1c{word-spacing:-12.420000px;}
.ws1d{word-spacing:-11.790600px;}
.ws1b{word-spacing:-10.612800px;}
.ws25{word-spacing:-9.711360px;}
.wsc{word-spacing:-9.488400px;}
.wsa{word-spacing:-9.187200px;}
.wse{word-spacing:-8.929200px;}
.ws17{word-spacing:-7.920000px;}
.ws6{word-spacing:0.000000px;}
.ws16{word-spacing:3.322560px;}
.wsd{word-spacing:4.998960px;}
.ws12{word-spacing:5.022000px;}
.ws10{word-spacing:5.348880px;}
.ws18{word-spacing:5.448000px;}
.ws15{word-spacing:5.472000px;}
.ws19{word-spacing:6.209760px;}
.ws9{word-spacing:6.233760px;}
.ws13{word-spacing:6.953760px;}
.ws2a{word-spacing:140.012160px;}
.ws29{word-spacing:140.132160px;}
.ws20{word-spacing:153.272160px;}
.wsf{word-spacing:153.833760px;}
.wsb{word-spacing:158.873760px;}
.ws23{word-spacing:178.125600px;}
.ws22{word-spacing:189.109440px;}
.ws11{word-spacing:220.973760px;}
.ws24{word-spacing:275.664000px;}
._1c{margin-left:-11.676000px;}
._10{margin-left:-4.708080px;}
._d{margin-left:-2.545200px;}
._3{margin-left:-1.108080px;}
._0{width:1.015920px;}
._1{width:2.279280px;}
._4{width:3.723840px;}
._5{width:4.878480px;}
._7{width:6.035760px;}
._2{width:7.332480px;}
._8{width:8.485920px;}
._a{width:10.218960px;}
._9{width:11.294640px;}
._6{width:12.788640px;}
._b{width:13.804560px;}
._e{width:16.559280px;}
._f{width:17.721840px;}
._c{width:22.170960px;}
._22{width:32.449680px;}
._23{width:33.533040px;}
._1b{width:38.859840px;}
._18{width:40.738320px;}
._20{width:42.190560px;}
._21{width:43.761360px;}
._17{width:87.160320px;}
._16{width:90.738000px;}
._13{width:110.340000px;}
._1a{width:137.188800px;}
._24{width:139.657440px;}
._11{width:146.542080px;}
._1d{width:152.941440px;}
._19{width:188.984640px;}
._15{width:190.320000px;}
._14{width:196.860000px;}
._12{width:198.180000px;}
._1f{width:242.886960px;}
._1e{width:285.602880px;}
.fc5{color:rgb(0,128,0);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(156,154,126);}
.fs1{font-size:5.760000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsa{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yf2{bottom:2.700000px;}
.y10e{bottom:2.730000px;}
.yee{bottom:2.880000px;}
.yed{bottom:3.060000px;}
.y10d{bottom:3.090000px;}
.yf0{bottom:3.240000px;}
.y3{bottom:3.780000px;}
.y22e{bottom:4.140000px;}
.y226{bottom:4.170000px;}
.y18e{bottom:4.245000px;}
.y213{bottom:4.290000px;}
.y181{bottom:4.320000px;}
.y176{bottom:4.350000px;}
.y16f{bottom:4.395000px;}
.y134{bottom:4.500000px;}
.y5{bottom:7.380000px;}
.y20a{bottom:9.000000px;}
.y232{bottom:9.045000px;}
.y20f{bottom:9.165000px;}
.y208{bottom:9.180000px;}
.y1b5{bottom:13.530000px;}
.y222{bottom:16.665000px;}
.y235{bottom:16.740000px;}
.y188{bottom:16.770000px;}
.y17d{bottom:16.815000px;}
.y172{bottom:16.845000px;}
.y16a{bottom:16.890000px;}
.y33{bottom:22.500000px;}
.y4{bottom:24.660000px;}
.y2{bottom:24.840000px;}
.y215{bottom:31.215000px;}
.y1b4{bottom:34.170000px;}
.y228{bottom:34.710000px;}
.y32{bottom:37.500000px;}
.y189{bottom:37.515000px;}
.y183{bottom:37.545000px;}
.y178{bottom:37.590000px;}
.y22d{bottom:40.680000px;}
.y223{bottom:40.710000px;}
.y21e{bottom:40.785000px;}
.y238{bottom:40.860000px;}
.y190{bottom:42.690000px;}
.y16b{bottom:42.810000px;}
.y216{bottom:45.615000px;}
.y17e{bottom:51.375000px;}
.y173{bottom:51.405000px;}
.y31{bottom:52.500000px;}
.y22f{bottom:52.710000px;}
.y229{bottom:52.740000px;}
.y23e{bottom:52.770000px;}
.y211{bottom:52.815000px;}
.y23c{bottom:52.890000px;}
.y21a{bottom:52.920000px;}
.y18a{bottom:58.245000px;}
.y184{bottom:58.290000px;}
.y179{bottom:58.320000px;}
.y1b3{bottom:59.790000px;}
.y217{bottom:60.045000px;}
.y224{bottom:64.725000px;}
.y236{bottom:64.800000px;}
.y21f{bottom:64.830000px;}
.y239{bottom:64.905000px;}
.ya{bottom:65.736000px;}
.y191{bottom:68.610000px;}
.y16c{bottom:68.730000px;}
.y22a{bottom:70.740000px;}
.y1a9{bottom:72.285000px;}
.y218{bottom:74.445000px;}
.y18b{bottom:78.990000px;}
.y185{bottom:79.020000px;}
.y17a{bottom:79.050000px;}
.y227{bottom:84.855000px;}
.y23f{bottom:84.930000px;}
.y214{bottom:84.960000px;}
.y23b{bottom:85.035000px;}
.y21c{bottom:85.065000px;}
.y17f{bottom:85.935000px;}
.y174{bottom:85.965000px;}
.y12b{bottom:87.225000px;}
.yb6{bottom:87.876000px;}
.y225{bottom:88.770000px;}
.y220{bottom:88.845000px;}
.y212{bottom:88.890000px;}
.y23a{bottom:88.920000px;}
.y21b{bottom:88.950000px;}
.y7c{bottom:90.936000px;}
.y9{bottom:91.116000px;}
.y192{bottom:94.530000px;}
.y16d{bottom:94.650000px;}
.y1aa{bottom:98.025000px;}
.y18c{bottom:99.720000px;}
.y186{bottom:99.750000px;}
.y17b{bottom:99.795000px;}
.ye2{bottom:100.116000px;}
.y116{bottom:101.016000px;}
.yb5{bottom:101.736000px;}
.y129{bottom:102.276000px;}
.y1cf{bottom:102.636000px;}
.y99{bottom:102.816000px;}
.y168{bottom:104.256000px;}
.y8{bottom:104.796000px;}
.y61{bottom:105.696000px;}
.y7b{bottom:106.416000px;}
.yb4{bottom:115.416000px;}
.ye1{bottom:117.396000px;}
.y115{bottom:118.296000px;}
.y1fa{bottom:118.476000px;}
.y7{bottom:118.656000px;}
.y128{bottom:119.556000px;}
.y98{bottom:119.916000px;}
.y18d{bottom:120.420000px;}
.y180{bottom:120.495000px;}
.y175{bottom:120.525000px;}
.y16e{bottom:120.570000px;}
.y12c{bottom:121.215000px;}
.y18f{bottom:121.290000px;}
.y182{bottom:121.320000px;}
.y177{bottom:121.350000px;}
.y170{bottom:121.395000px;}
.y167{bottom:121.536000px;}
.y1a7{bottom:122.076000px;}
.y60{bottom:122.976000px;}
.y1ab{bottom:123.810000px;}
.y7a{bottom:127.656000px;}
.y1e1{bottom:128.196000px;}
.yb3{bottom:129.276000px;}
.y30{bottom:132.876000px;}
.ye0{bottom:134.676000px;}
.y114{bottom:135.576000px;}
.y127{bottom:136.836000px;}
.y97{bottom:137.196000px;}
.y166{bottom:138.816000px;}
.y1a6{bottom:139.356000px;}
.y5f{bottom:140.256000px;}
.yb2{bottom:143.136000px;}
.y1f9{bottom:144.756000px;}
.y1e0{bottom:145.476000px;}
.y2f{bottom:148.356000px;}
.y1ac{bottom:149.550000px;}
.ydf{bottom:151.770000px;}
.y113{bottom:152.670000px;}
.y126{bottom:154.110000px;}
.y96{bottom:154.470000px;}
.y12d{bottom:155.160000px;}
.y165{bottom:155.910000px;}
.y1a5{bottom:156.630000px;}
.y5e{bottom:157.530000px;}
.yb1{bottom:157.710000px;}
.y1f8{bottom:162.030000px;}
.y2e{bottom:164.370000px;}
.yb0{bottom:164.550000px;}
.yde{bottom:169.050000px;}
.y112{bottom:169.950000px;}
.y2d{bottom:171.210000px;}
.y125{bottom:171.390000px;}
.y95{bottom:171.750000px;}
.y164{bottom:173.190000px;}
.y1a4{bottom:173.910000px;}
.y5d{bottom:174.630000px;}
.yaf{bottom:174.810000px;}
.y1ad{bottom:175.290000px;}
.y205{bottom:178.770000px;}
.y1f7{bottom:179.130000px;}
.y1ce{bottom:180.390000px;}
.y2c{bottom:181.110000px;}
.y124{bottom:188.490000px;}
.y94{bottom:189.030000px;}
.y12e{bottom:189.105000px;}
.y163{bottom:190.470000px;}
.y1a3{bottom:191.190000px;}
.y159{bottom:192.090000px;}
.ydd{bottom:195.330000px;}
.y111{bottom:196.230000px;}
.y20e{bottom:196.245000px;}
.y2b{bottom:197.130000px;}
.yac{bottom:199.830000px;}
.y5c{bottom:200.910000px;}
.y1ae{bottom:201.030000px;}
.y2a{bottom:203.970000px;}
.y1f6{bottom:205.410000px;}
.y22c{bottom:205.560000px;}
.yad{bottom:205.590000px;}
.y123{bottom:205.770000px;}
.y93{bottom:206.130000px;}
.yae{bottom:207.390000px;}
.y1a2{bottom:208.290000px;}
.y158{bottom:209.370000px;}
.ydc{bottom:212.970000px;}
.y29{bottom:214.410000px;}
.y1df{bottom:215.130000px;}
.y162{bottom:216.750000px;}
.y5b{bottom:218.190000px;}
.y1f5{bottom:222.690000px;}
.y122{bottom:223.050000px;}
.y12f{bottom:223.095000px;}
.y92{bottom:223.410000px;}
.y1cd{bottom:225.030000px;}
.y1a1{bottom:225.570000px;}
.y157{bottom:226.470000px;}
.y1af{bottom:226.800000px;}
.yab{bottom:227.370000px;}
.ydb{bottom:230.430000px;}
.y204{bottom:231.690000px;}
.y1de{bottom:232.410000px;}
.y5a{bottom:235.470000px;}
.y121{bottom:240.330000px;}
.y110{bottom:240.510000px;}
.y91{bottom:240.690000px;}
.y1cc{bottom:242.130000px;}
.y1a0{bottom:242.850000px;}
.y156{bottom:243.750000px;}
.y28{bottom:245.910000px;}
.yaa{bottom:246.090000px;}
.y1f4{bottom:248.970000px;}
.y1b0{bottom:252.540000px;}
.y59{bottom:252.750000px;}
.y10f{bottom:255.990000px;}
.y130{bottom:257.040000px;}
.yda{bottom:257.070000px;}
.y120{bottom:257.610000px;}
.y90{bottom:257.970000px;}
.y1dd{bottom:258.330000px;}
.y1cb{bottom:259.410000px;}
.y19f{bottom:260.130000px;}
.y161{bottom:260.490000px;}
.y155{bottom:261.030000px;}
.y27{bottom:263.190000px;}
.ya9{bottom:263.910000px;}
.y1f3{bottom:266.250000px;}
.y10c{bottom:268.965000px;}
.y58{bottom:270.075000px;}
.y8f{bottom:275.295000px;}
.y160{bottom:276.015000px;}
.y1ca{bottom:276.735000px;}
.y19e{bottom:277.455000px;}
.y1b1{bottom:278.280000px;}
.y26{bottom:280.335000px;}
.ya8{bottom:281.595000px;}
.yd8{bottom:283.035000px;}
.y57{bottom:287.175000px;}
.yd9{bottom:287.355000px;}
.yd7{bottom:290.595000px;}
.y131{bottom:290.985000px;}
.y15f{bottom:291.675000px;}
.y8e{bottom:292.575000px;}
.y1c9{bottom:294.015000px;}
.y19d{bottom:294.735000px;}
.y10b{bottom:297.075000px;}
.y25{bottom:297.615000px;}
.y11f{bottom:301.395000px;}
.y1dc{bottom:303.015000px;}
.y15e{bottom:303.915000px;}
.y187{bottom:304.020000px;}
.y1b2{bottom:304.050000px;}
.y56{bottom:304.455000px;}
.y154{bottom:304.635000px;}
.ya7{bottom:306.255000px;}
.y8d{bottom:309.675000px;}
.y10a{bottom:310.935000px;}
.y1c8{bottom:311.295000px;}
.y20d{bottom:311.655000px;}
.y19c{bottom:311.835000px;}
.y24{bottom:314.895000px;}
.ya6{bottom:315.435000px;}
.y11e{bottom:316.875000px;}
.y203{bottom:318.675000px;}
.y22b{bottom:320.760000px;}
.y55{bottom:321.735000px;}
.y109{bottom:324.975000px;}
.y1f2{bottom:326.955000px;}
.y1c7{bottom:328.575000px;}
.y19b{bottom:329.115000px;}
.y1db{bottom:329.295000px;}
.y23{bottom:332.175000px;}
.y11d{bottom:332.355000px;}
.y8c{bottom:335.955000px;}
.ya4{bottom:336.495000px;}
.y108{bottom:338.835000px;}
.y54{bottom:339.015000px;}
.ya5{bottom:343.335000px;}
.y11c{bottom:344.775000px;}
.y12a{bottom:344.880000px;}
.y1c6{bottom:345.675000px;}
.y19a{bottom:346.395000px;}
.y79{bottom:346.575000px;}
.y22{bottom:349.455000px;}
.y107{bottom:352.875000px;}
.y8b{bottom:353.235000px;}
.ya3{bottom:353.775000px;}
.yd6{bottom:356.115000px;}
.y53{bottom:356.295000px;}
.y1c5{bottom:362.955000px;}
.y199{bottom:363.675000px;}
.y106{bottom:366.915000px;}
.y8a{bottom:370.515000px;}
.yd5{bottom:373.395000px;}
.y52{bottom:373.575000px;}
.y21{bottom:375.735000px;}
.y202{bottom:379.515000px;}
.ya2{bottom:380.235000px;}
.y105{bottom:380.775000px;}
.y198{bottom:380.955000px;}
.y89{bottom:387.795000px;}
.y1c4{bottom:389.235000px;}
.y78{bottom:389.955000px;}
.y51{bottom:390.675000px;}
.y153{bottom:390.855000px;}
.y20{bottom:392.835000px;}
.y104{bottom:394.455000px;}
.y1f1{bottom:396.795000px;}
.ya1{bottom:397.515000px;}
.y197{bottom:398.055000px;}
.y88{bottom:405.075000px;}
.y1c3{bottom:406.515000px;}
.y77{bottom:407.235000px;}
.y152{bottom:408.135000px;}
.yd4{bottom:408.315000px;}
.y103{bottom:408.675000px;}
.y1f{bottom:410.115000px;}
.y1f0{bottom:414.075000px;}
.ya0{bottom:414.795000px;}
.y50{bottom:416.955000px;}
.y87{bottom:422.175000px;}
.y102{bottom:422.355000px;}
.y201{bottom:423.075000px;}
.y1c2{bottom:423.795000px;}
.y76{bottom:424.515000px;}
.y151{bottom:425.235000px;}
.y20c{bottom:426.855000px;}
.y1e{bottom:427.395000px;}
.y9f{bottom:432.075000px;}
.y196{bottom:432.975000px;}
.y4f{bottom:434.235000px;}
.yd3{bottom:434.595000px;}
.y221{bottom:436.140000px;}
.y101{bottom:436.395000px;}
.y86{bottom:439.455000px;}
.y1ef{bottom:440.175000px;}
.y1c1{bottom:441.075000px;}
.y75{bottom:441.795000px;}
.y1d{bottom:444.675000px;}
.y15d{bottom:446.475000px;}
.y17c{bottom:446.580000px;}
.y9e{bottom:449.715000px;}
.y100{bottom:450.255000px;}
.y1da{bottom:450.435000px;}
.y4e{bottom:451.515000px;}
.yd2{bottom:451.875000px;}
.y195{bottom:454.215000px;}
.y1a8{bottom:454.320000px;}
.y85{bottom:456.735000px;}
.y1ee{bottom:457.455000px;}
.y1c0{bottom:458.175000px;}
.y74{bottom:459.075000px;}
.yff{bottom:464.295000px;}
.y200{bottom:466.455000px;}
.y9d{bottom:466.815000px;}
.y4d{bottom:468.795000px;}
.y150{bottom:469.155000px;}
.y1c{bottom:470.595000px;}
.y84{bottom:474.015000px;}
.y73{bottom:476.175000px;}
.y1d9{bottom:477.075000px;}
.yfe{bottom:478.365000px;}
.yd1{bottom:478.545000px;}
.y1ed{bottom:483.765000px;}
.y1bf{bottom:484.485000px;}
.y14f{bottom:484.665000px;}
.y4c{bottom:486.105000px;}
.y83{bottom:491.325000px;}
.yfd{bottom:492.585000px;}
.y72{bottom:493.485000px;}
.y1d8{bottom:494.205000px;}
.y14e{bottom:500.145000px;}
.y1ec{bottom:501.045000px;}
.y4b{bottom:503.205000px;}
.yd0{bottom:505.185000px;}
.yfc{bottom:506.265000px;}
.y82{bottom:508.605000px;}
.y71{bottom:510.765000px;}
.y1d7{bottom:511.485000px;}
.y14d{bottom:513.105000px;}
.y1b{bottom:514.725000px;}
.y1be{bottom:519.765000px;}
.yfb{bottom:520.305000px;}
.y4a{bottom:520.485000px;}
.ycf{bottom:522.645000px;}
.y14c{bottom:526.965000px;}
.y1eb{bottom:527.325000px;}
.y70{bottom:528.045000px;}
.y81{bottom:528.765000px;}
.yfa{bottom:534.165000px;}
.y1bd{bottom:537.045000px;}
.y49{bottom:537.765000px;}
.y1a{bottom:539.745000px;}
.y14b{bottom:540.825000px;}
.y20b{bottom:542.085000px;}
.y1ea{bottom:544.425000px;}
.y6f{bottom:545.325000px;}
.y1d6{bottom:546.045000px;}
.yf9{bottom:548.205000px;}
.yce{bottom:549.285000px;}
.y21d{bottom:551.340000px;}
.y1bc{bottom:554.325000px;}
.y14a{bottom:554.505000px;}
.y233{bottom:554.865000px;}
.y48{bottom:555.045000px;}
.yf8{bottom:562.245000px;}
.y6e{bottom:562.425000px;}
.y80{bottom:564.045000px;}
.y19{bottom:566.025000px;}
.y149{bottom:568.365000px;}
.y1e9{bottom:570.705000px;}
.y1bb{bottom:571.425000px;}
.y47{bottom:572.325000px;}
.ycd{bottom:575.925000px;}
.yf7{bottom:576.465000px;}
.y23d{bottom:577.620000px;}
.y6d{bottom:579.705000px;}
.y7f{bottom:581.325000px;}
.y148{bottom:582.225000px;}
.y1e8{bottom:587.985000px;}
.y1ba{bottom:588.705000px;}
.y15c{bottom:589.065000px;}
.y171{bottom:589.140000px;}
.y46{bottom:589.425000px;}
.yf6{bottom:590.505000px;}
.y18{bottom:592.125000px;}
.y147{bottom:595.905000px;}
.y9c{bottom:596.985000px;}
.y7e{bottom:598.425000px;}
.ycc{bottom:601.665000px;}
.yf5{bottom:604.545000px;}
.y1ff{bottom:605.265000px;}
.y6c{bottom:605.985000px;}
.y45{bottom:606.705000px;}
.y17{bottom:609.405000px;}
.y146{bottom:609.765000px;}
.ycb{bottom:611.025000px;}
.y9b{bottom:614.265000px;}
.y7d{bottom:615.705000px;}
.yf4{bottom:618.405000px;}
.y6b{bottom:623.265000px;}
.y145{bottom:623.625000px;}
.y1d5{bottom:623.985000px;}
.y16{bottom:626.685000px;}
.y1e7{bottom:631.545000px;}
.yf3{bottom:632.445000px;}
.y44{bottom:632.985000px;}
.y144{bottom:637.305000px;}
.y9a{bottom:640.185000px;}
.y6a{bottom:640.545000px;}
.y1d4{bottom:641.265000px;}
.y15{bottom:643.965000px;}
.yf1{bottom:646.125000px;}
.yca{bottom:646.665000px;}
.y1fe{bottom:648.825000px;}
.y43{bottom:650.265000px;}
.y143{bottom:651.165000px;}
.y209{bottom:657.465000px;}
.y69{bottom:657.825000px;}
.y1d3{bottom:658.545000px;}
.yef{bottom:660.165000px;}
.y14{bottom:661.245000px;}
.y142{bottom:665.025000px;}
.y1fd{bottom:665.925000px;}
.y219{bottom:666.540000px;}
.y42{bottom:667.545000px;}
.y11b{bottom:667.725000px;}
.yc9{bottom:673.485000px;}
.y68{bottom:674.925000px;}
.yec{bottom:675.105000px;}
.y1d2{bottom:675.825000px;}
.y13{bottom:678.525000px;}
.y141{bottom:678.705000px;}
.y231{bottom:683.745000px;}
.y41{bottom:684.825000px;}
.yc8{bottom:690.630000px;}
.y67{bottom:692.250000px;}
.y140{bottom:692.610000px;}
.y237{bottom:692.820000px;}
.y1d1{bottom:692.970000px;}
.y12{bottom:695.670000px;}
.yeb{bottom:701.070000px;}
.y40{bottom:701.970000px;}
.y13f{bottom:706.470000px;}
.yc7{bottom:707.910000px;}
.y66{bottom:709.530000px;}
.y1d0{bottom:710.250000px;}
.y11a{bottom:710.970000px;}
.y11{bottom:712.950000px;}
.y1e6{bottom:718.530000px;}
.y3f{bottom:719.250000px;}
.y13e{bottom:720.150000px;}
.y65{bottom:726.810000px;}
.y119{bottom:728.250000px;}
.y10{bottom:730.230000px;}
.yc6{bottom:731.130000px;}
.y15b{bottom:731.670000px;}
.y169{bottom:731.700000px;}
.y13d{bottom:734.010000px;}
.yc4{bottom:734.550000px;}
.y1e5{bottom:735.810000px;}
.y3e{bottom:736.530000px;}
.yc5{bottom:740.310000px;}
.y1b9{bottom:744.090000px;}
.yea{bottom:744.450000px;}
.y118{bottom:745.530000px;}
.yf{bottom:747.510000px;}
.y13c{bottom:747.870000px;}
.y64{bottom:752.730000px;}
.y1fc{bottom:753.090000px;}
.y3d{bottom:753.810000px;}
.yc3{bottom:761.370000px;}
.y13b{bottom:761.550000px;}
.ye9{bottom:761.730000px;}
.y1e4{bottom:762.090000px;}
.y117{bottom:762.810000px;}
.y1b8{bottom:770.370000px;}
.y3c{bottom:771.090000px;}
.y207{bottom:772.710000px;}
.y13a{bottom:775.410000px;}
.ye8{bottom:779.010000px;}
.y1e3{bottom:779.370000px;}
.yc2{bottom:780.090000px;}
.y210{bottom:781.920000px;}
.y3b{bottom:788.370000px;}
.y139{bottom:789.270000px;}
.y194{bottom:790.170000px;}
.ye7{bottom:796.290000px;}
.y1e2{bottom:796.470000px;}
.y63{bottom:797.370000px;}
.y230{bottom:798.990000px;}
.yd{bottom:801.150000px;}
.y138{bottom:802.950000px;}
.yc1{bottom:805.110000px;}
.y3a{bottom:805.470000px;}
.y193{bottom:805.650000px;}
.ye{bottom:807.990000px;}
.y234{bottom:808.200000px;}
.ybf{bottom:808.530000px;}
.ye6{bottom:813.390000px;}
.y1fb{bottom:813.750000px;}
.yc0{bottom:814.290000px;}
.y62{bottom:814.470000px;}
.y137{bottom:816.810000px;}
.y39{bottom:822.750000px;}
.ye5{bottom:830.670000px;}
.yc{bottom:831.750000px;}
.ybe{bottom:835.710000px;}
.y1b7{bottom:840.030000px;}
.y136{bottom:844.350000px;}
.y38{bottom:849.030000px;}
.ybc{bottom:853.710000px;}
.ye3{bottom:856.950000px;}
.y1b6{bottom:857.310000px;}
.yb{bottom:857.490000px;}
.y135{bottom:858.210000px;}
.ybd{bottom:861.270000px;}
.ye4{bottom:862.530000px;}
.y37{bottom:866.310000px;}
.yba{bottom:872.250000px;}
.y133{bottom:872.790000px;}
.ybb{bottom:878.010000px;}
.y36{bottom:883.590000px;}
.y15a{bottom:886.110000px;}
.yb7{bottom:899.640000px;}
.y206{bottom:900.540000px;}
.y35{bottom:900.900000px;}
.y132{bottom:901.800000px;}
.yb8{bottom:905.400000px;}
.y6{bottom:905.940000px;}
.yb9{bottom:907.200000px;}
.y1{bottom:907.920000px;}
.y34{bottom:932.580000px;}
.h5{height:5.653125px;}
.h2a{height:13.665000px;}
.h25{height:13.680000px;}
.h29{height:13.845000px;}
.h26{height:13.860000px;}
.h31{height:13.882500px;}
.h28{height:14.025000px;}
.h24{height:14.040000px;}
.h2c{height:14.061000px;}
.h21{height:14.062500px;}
.h27{height:14.070000px;}
.h2b{height:14.205000px;}
.h23{height:14.220000px;}
.h30{height:16.905000px;}
.h2d{height:31.727812px;}
.he{height:34.968750px;}
.hc{height:38.158594px;}
.h2{height:38.340000px;}
.ha{height:39.183750px;}
.h6{height:43.505508px;}
.h2f{height:43.554375px;}
.h18{height:47.344922px;}
.h33{height:50.326875px;}
.h10{height:52.971680px;}
.hd{height:52.998047px;}
.h15{height:53.464219px;}
.h11{height:53.573906px;}
.h4{height:53.894883px;}
.h20{height:54.189141px;}
.hf{height:54.421875px;}
.h17{height:55.629141px;}
.h1c{height:56.349141px;}
.h12{height:58.621992px;}
.h3{height:58.651172px;}
.hb{height:60.226875px;}
.h22{height:61.760391px;}
.h38{height:65.518594px;}
.h16{height:72.331172px;}
.h8{height:72.562500px;}
.h13{height:76.509141px;}
.h14{height:78.669141px;}
.h19{height:79.389141px;}
.h1d{height:88.744219px;}
.h1f{height:89.469141px;}
.h7{height:90.703125px;}
.h1e{height:101.704219px;}
.h40{height:106.020000px;}
.h3f{height:106.200000px;}
.h1b{height:113.949141px;}
.h3d{height:115.185000px;}
.h3a{height:115.222500px;}
.h3c{height:115.230000px;}
.h39{height:115.365000px;}
.h3b{height:115.380000px;}
.h3e{height:115.401000px;}
.h41{height:115.410000px;}
.h1a{height:117.549141px;}
.h32{height:142.545000px;}
.h36{height:142.560000px;}
.h34{height:142.582500px;}
.h35{height:142.590000px;}
.h2e{height:310.860000px;}
.h37{height:324.000000px;}
.h1{height:999.000000px;}
.h9{height:999.357990px;}
.h0{height:999.360000px;}
.w2{width:31.894500px;}
.w8{width:34.740000px;}
.wb{width:40.881000px;}
.w12{width:49.716000px;}
.w11{width:53.820000px;}
.w3{width:63.889500px;}
.w10{width:70.581000px;}
.w9{width:72.216000px;}
.wc{width:74.145000px;}
.w7{width:75.261000px;}
.w13{width:89.085000px;}
.w6{width:101.149500px;}
.wa{width:109.245000px;}
.wf{width:115.009500px;}
.w14{width:131.241000px;}
.wd{width:224.295000px;}
.w1c{width:253.980000px;}
.w1b{width:262.695000px;}
.w18{width:270.360000px;}
.w17{width:270.540000px;}
.w15{width:272.359500px;}
.w16{width:272.595000px;}
.w1a{width:282.259500px;}
.w4{width:467.910000px;}
.we{width:532.260000px;}
.w19{width:533.160000px;}
.w1d{width:544.950000px;}
.w5{width:701.638125px;}
.w0{width:701.640000px;}
.w1{width:702.000000px;}
.x0{left:0.000000px;}
.x41{left:2.376000px;}
.x47{left:5.910000px;}
.x2{left:8.098500px;}
.x38{left:9.705000px;}
.x2d{left:10.965000px;}
.x27{left:12.960000px;}
.x36{left:14.040000px;}
.x29{left:15.300000px;}
.x34{left:17.820000px;}
.x25{left:19.605000px;}
.x32{left:22.464000px;}
.x3b{left:24.690000px;}
.x2f{left:30.045000px;}
.x2b{left:34.005000px;}
.x30{left:37.080000px;}
.x3c{left:45.165000px;}
.x3a{left:46.605000px;}
.x1{left:53.101500px;}
.x4{left:62.989500px;}
.x3d{left:77.086500px;}
.x40{left:82.080000px;}
.x3{left:85.006500px;}
.xc{left:89.856000px;}
.x18{left:93.096000px;}
.x23{left:97.066500px;}
.x4f{left:100.470000px;}
.x4e{left:105.870000px;}
.x45{left:107.355000px;}
.x4b{left:109.830000px;}
.x4d{left:110.910000px;}
.x21{left:111.996000px;}
.x44{left:114.195000px;}
.x46{left:116.715000px;}
.x42{left:119.235000px;}
.x48{left:126.075000px;}
.x5{left:148.906500px;}
.x19{left:153.390000px;}
.x1a{left:156.270000px;}
.x7{left:167.968125px;}
.x8{left:172.830000px;}
.x16{left:176.790000px;}
.x1e{left:180.750000px;}
.x22{left:188.850000px;}
.x24{left:198.225000px;}
.x1f{left:211.350000px;}
.x20{left:223.770000px;}
.x13{left:252.073125px;}
.x14{left:256.935000px;}
.x49{left:259.408500px;}
.x1b{left:271.335000px;}
.x26{left:273.495000px;}
.x3e{left:275.608500px;}
.x33{left:281.775000px;}
.x9{left:293.833125px;}
.x1c{left:295.275000px;}
.x15{left:297.435000px;}
.xa{left:298.695000px;}
.xb{left:301.035000px;}
.x28{left:308.235000px;}
.xd{left:328.770000px;}
.x35{left:335.595000px;}
.x3f{left:349.455000px;}
.x43{left:354.600000px;}
.x4a{left:359.355000px;}
.x4c{left:364.500000px;}
.x2a{left:380.460000px;}
.x37{left:385.320000px;}
.xf{left:402.735000px;}
.x1d{left:407.625000px;}
.x12{left:436.065000px;}
.x39{left:474.420000px;}
.x10{left:477.105000px;}
.x2c{left:489.720000px;}
.xe{left:515.820000px;}
.x2e{left:530.610000px;}
.x17{left:583.530000px;}
.x11{left:594.150000px;}
.x6{left:616.650000px;}
.x31{left:618.270000px;}
@media print{
.vd{vertical-align:-30.720000pt;}
.v9{vertical-align:-26.880000pt;}
.v7{vertical-align:-20.480000pt;}
.vc{vertical-align:-17.920000pt;}
.v8{vertical-align:-14.720000pt;}
.v4{vertical-align:-10.880000pt;}
.v3{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v5{vertical-align:10.880000pt;}
.v6{vertical-align:12.160000pt;}
.v1{vertical-align:19.840000pt;}
.vf{vertical-align:23.040000pt;}
.v10{vertical-align:24.320000pt;}
.vb{vertical-align:31.360000pt;}
.va{vertical-align:34.560000pt;}
.ve{vertical-align:42.240000pt;}
.lsd{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.367467pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls65{letter-spacing:-0.239467pt;}
.ls5a{letter-spacing:-0.229333pt;}
.ls67{letter-spacing:-0.201067pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.183467pt;}
.ls6b{letter-spacing:-0.158933pt;}
.ls6a{letter-spacing:-0.094933pt;}
.ls5b{letter-spacing:-0.047360pt;}
.ls6c{letter-spacing:-0.007680pt;}
.lsa{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.011520pt;}
.ls9{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.048640pt;}
.ls51{letter-spacing:0.076587pt;}
.ls14{letter-spacing:0.094933pt;}
.ls66{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.097280pt;}
.ls4f{letter-spacing:0.097920pt;}
.ls8{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.161067pt;}
.ls63{letter-spacing:0.171520pt;}
.ls6e{letter-spacing:0.183467pt;}
.ls6f{letter-spacing:0.195733pt;}
.ls3{letter-spacing:0.218240pt;}
.ls64{letter-spacing:0.221333pt;}
.lsf{letter-spacing:0.230933pt;}
.ls58{letter-spacing:0.231040pt;}
.ls6d{letter-spacing:0.265600pt;}
.ls31{letter-spacing:0.267733pt;}
.ls4{letter-spacing:0.286720pt;}
.ls29{letter-spacing:0.295040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls45{letter-spacing:0.347520pt;}
.ls1c{letter-spacing:0.355200pt;}
.ls1e{letter-spacing:0.515200pt;}
.lse{letter-spacing:0.592000pt;}
.ls60{letter-spacing:0.608000pt;}
.ls10{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.769920pt;}
.ls48{letter-spacing:0.935040pt;}
.ls11{letter-spacing:0.960000pt;}
.ls2a{letter-spacing:0.995200pt;}
.ls3f{letter-spacing:1.158827pt;}
.ls1d{letter-spacing:1.172480pt;}
.ls2e{letter-spacing:1.180160pt;}
.ls3c{letter-spacing:1.248000pt;}
.ls5{letter-spacing:1.520000pt;}
.ls1b{letter-spacing:1.556267pt;}
.ls20{letter-spacing:1.577600pt;}
.ls2c{letter-spacing:1.627520pt;}
.ls47{letter-spacing:1.633280pt;}
.ls4a{letter-spacing:2.000000pt;}
.ls41{letter-spacing:2.093440pt;}
.ls4b{letter-spacing:2.145280pt;}
.ls62{letter-spacing:2.267520pt;}
.ls1f{letter-spacing:2.380800pt;}
.ls5e{letter-spacing:2.720000pt;}
.ls1a{letter-spacing:2.743040pt;}
.ls4d{letter-spacing:2.746667pt;}
.ls3d{letter-spacing:2.808320pt;}
.ls27{letter-spacing:2.855040pt;}
.ls40{letter-spacing:2.867200pt;}
.ls36{letter-spacing:3.020800pt;}
.ls17{letter-spacing:3.350400pt;}
.ls7{letter-spacing:3.360000pt;}
.ls34{letter-spacing:3.383040pt;}
.ls3e{letter-spacing:3.448320pt;}
.ls35{letter-spacing:3.507200pt;}
.ls4e{letter-spacing:3.560960pt;}
.ls52{letter-spacing:3.691520pt;}
.ls16{letter-spacing:3.699840pt;}
.ls25{letter-spacing:3.710720pt;}
.ls15{letter-spacing:3.808640pt;}
.ls19{letter-spacing:3.990400pt;}
.ls2d{letter-spacing:4.195200pt;}
.ls2b{letter-spacing:4.777600pt;}
.ls13{letter-spacing:5.920000pt;}
.ls18{letter-spacing:6.220800pt;}
.ls61{letter-spacing:6.648320pt;}
.ls55{letter-spacing:8.531200pt;}
.ls68{letter-spacing:9.120000pt;}
.ls5c{letter-spacing:12.159360pt;}
.ls4c{letter-spacing:14.435200pt;}
.ls2f{letter-spacing:14.540800pt;}
.ls38{letter-spacing:14.719360pt;}
.ls5d{letter-spacing:14.945280pt;}
.ls23{letter-spacing:15.027200pt;}
.ls46{letter-spacing:15.053867pt;}
.ls42{letter-spacing:15.075200pt;}
.ls53{letter-spacing:15.235200pt;}
.ls3b{letter-spacing:15.359360pt;}
.ls5f{letter-spacing:15.466027pt;}
.ls37{letter-spacing:15.715200pt;}
.ls49{letter-spacing:17.565867pt;}
.ls3a{letter-spacing:17.862400pt;}
.ls21{letter-spacing:18.227200pt;}
.ls50{letter-spacing:18.280960pt;}
.ls33{letter-spacing:18.867200pt;}
.ls54{letter-spacing:31.008000pt;}
.ls56{letter-spacing:37.568000pt;}
.ls44{letter-spacing:53.475200pt;}
.ls43{letter-spacing:54.755200pt;}
.ls59{letter-spacing:63.312640pt;}
.ls39{letter-spacing:81.356587pt;}
.ls24{letter-spacing:81.377920pt;}
.ls57{letter-spacing:123.200000pt;}
.ls26{letter-spacing:128.320000pt;}
.ls69{letter-spacing:148.961280pt;}
.ws1f{word-spacing:-159.280640pt;}
.ws7{word-spacing:-13.872000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws28{word-spacing:-13.545600pt;}
.ws21{word-spacing:-13.510933pt;}
.ws27{word-spacing:-13.463467pt;}
.ws1{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws1e{word-spacing:-13.185067pt;}
.ws26{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.912533pt;}
.ws0{word-spacing:-12.208427pt;}
.ws4{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.907733pt;}
.ws8{word-spacing:-11.686400pt;}
.ws5{word-spacing:-11.472000pt;}
.ws1c{word-spacing:-11.040000pt;}
.ws1d{word-spacing:-10.480533pt;}
.ws1b{word-spacing:-9.433600pt;}
.ws25{word-spacing:-8.632320pt;}
.wsc{word-spacing:-8.434133pt;}
.wsa{word-spacing:-8.166400pt;}
.wse{word-spacing:-7.937067pt;}
.ws17{word-spacing:-7.040000pt;}
.ws6{word-spacing:0.000000pt;}
.ws16{word-spacing:2.953387pt;}
.wsd{word-spacing:4.443520pt;}
.ws12{word-spacing:4.464000pt;}
.ws10{word-spacing:4.754560pt;}
.ws18{word-spacing:4.842667pt;}
.ws15{word-spacing:4.864000pt;}
.ws19{word-spacing:5.519787pt;}
.ws9{word-spacing:5.541120pt;}
.ws13{word-spacing:6.181120pt;}
.ws2a{word-spacing:124.455253pt;}
.ws29{word-spacing:124.561920pt;}
.ws20{word-spacing:136.241920pt;}
.wsf{word-spacing:136.741120pt;}
.wsb{word-spacing:141.221120pt;}
.ws23{word-spacing:158.333867pt;}
.ws22{word-spacing:168.097280pt;}
.ws11{word-spacing:196.421120pt;}
.ws24{word-spacing:245.034667pt;}
._1c{margin-left:-10.378667pt;}
._10{margin-left:-4.184960pt;}
._d{margin-left:-2.262400pt;}
._3{margin-left:-0.984960pt;}
._0{width:0.903040pt;}
._1{width:2.026027pt;}
._4{width:3.310080pt;}
._5{width:4.336427pt;}
._7{width:5.365120pt;}
._2{width:6.517760pt;}
._8{width:7.543040pt;}
._a{width:9.083520pt;}
._9{width:10.039680pt;}
._6{width:11.367680pt;}
._b{width:12.270720pt;}
._e{width:14.719360pt;}
._f{width:15.752747pt;}
._c{width:19.707520pt;}
._22{width:28.844160pt;}
._23{width:29.807147pt;}
._1b{width:34.542080pt;}
._18{width:36.211840pt;}
._20{width:37.502720pt;}
._21{width:38.898987pt;}
._17{width:77.475840pt;}
._16{width:80.656000pt;}
._13{width:98.080000pt;}
._1a{width:121.945600pt;}
._24{width:124.139947pt;}
._11{width:130.259627pt;}
._1d{width:135.947947pt;}
._19{width:167.986347pt;}
._15{width:169.173333pt;}
._14{width:174.986667pt;}
._12{width:176.160000pt;}
._1f{width:215.899520pt;}
._1e{width:253.869227pt;}
.fs1{font-size:5.120000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsa{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yf2{bottom:2.400000pt;}
.y10e{bottom:2.426667pt;}
.yee{bottom:2.560000pt;}
.yed{bottom:2.720000pt;}
.y10d{bottom:2.746667pt;}
.yf0{bottom:2.880000pt;}
.y3{bottom:3.360000pt;}
.y22e{bottom:3.680000pt;}
.y226{bottom:3.706667pt;}
.y18e{bottom:3.773333pt;}
.y213{bottom:3.813333pt;}
.y181{bottom:3.840000pt;}
.y176{bottom:3.866667pt;}
.y16f{bottom:3.906667pt;}
.y134{bottom:4.000000pt;}
.y5{bottom:6.560000pt;}
.y20a{bottom:8.000000pt;}
.y232{bottom:8.040000pt;}
.y20f{bottom:8.146667pt;}
.y208{bottom:8.160000pt;}
.y1b5{bottom:12.026667pt;}
.y222{bottom:14.813333pt;}
.y235{bottom:14.880000pt;}
.y188{bottom:14.906667pt;}
.y17d{bottom:14.946667pt;}
.y172{bottom:14.973333pt;}
.y16a{bottom:15.013333pt;}
.y33{bottom:20.000000pt;}
.y4{bottom:21.920000pt;}
.y2{bottom:22.080000pt;}
.y215{bottom:27.746667pt;}
.y1b4{bottom:30.373333pt;}
.y228{bottom:30.853333pt;}
.y32{bottom:33.333333pt;}
.y189{bottom:33.346667pt;}
.y183{bottom:33.373333pt;}
.y178{bottom:33.413333pt;}
.y22d{bottom:36.160000pt;}
.y223{bottom:36.186667pt;}
.y21e{bottom:36.253333pt;}
.y238{bottom:36.320000pt;}
.y190{bottom:37.946667pt;}
.y16b{bottom:38.053333pt;}
.y216{bottom:40.546667pt;}
.y17e{bottom:45.666667pt;}
.y173{bottom:45.693333pt;}
.y31{bottom:46.666667pt;}
.y22f{bottom:46.853333pt;}
.y229{bottom:46.880000pt;}
.y23e{bottom:46.906667pt;}
.y211{bottom:46.946667pt;}
.y23c{bottom:47.013333pt;}
.y21a{bottom:47.040000pt;}
.y18a{bottom:51.773333pt;}
.y184{bottom:51.813333pt;}
.y179{bottom:51.840000pt;}
.y1b3{bottom:53.146667pt;}
.y217{bottom:53.373333pt;}
.y224{bottom:57.533333pt;}
.y236{bottom:57.600000pt;}
.y21f{bottom:57.626667pt;}
.y239{bottom:57.693333pt;}
.ya{bottom:58.432000pt;}
.y191{bottom:60.986667pt;}
.y16c{bottom:61.093333pt;}
.y22a{bottom:62.880000pt;}
.y1a9{bottom:64.253333pt;}
.y218{bottom:66.173333pt;}
.y18b{bottom:70.213333pt;}
.y185{bottom:70.240000pt;}
.y17a{bottom:70.266667pt;}
.y227{bottom:75.426667pt;}
.y23f{bottom:75.493333pt;}
.y214{bottom:75.520000pt;}
.y23b{bottom:75.586667pt;}
.y21c{bottom:75.613333pt;}
.y17f{bottom:76.386667pt;}
.y174{bottom:76.413333pt;}
.y12b{bottom:77.533333pt;}
.yb6{bottom:78.112000pt;}
.y225{bottom:78.906667pt;}
.y220{bottom:78.973333pt;}
.y212{bottom:79.013333pt;}
.y23a{bottom:79.040000pt;}
.y21b{bottom:79.066667pt;}
.y7c{bottom:80.832000pt;}
.y9{bottom:80.992000pt;}
.y192{bottom:84.026667pt;}
.y16d{bottom:84.133333pt;}
.y1aa{bottom:87.133333pt;}
.y18c{bottom:88.640000pt;}
.y186{bottom:88.666667pt;}
.y17b{bottom:88.706667pt;}
.ye2{bottom:88.992000pt;}
.y116{bottom:89.792000pt;}
.yb5{bottom:90.432000pt;}
.y129{bottom:90.912000pt;}
.y1cf{bottom:91.232000pt;}
.y99{bottom:91.392000pt;}
.y168{bottom:92.672000pt;}
.y8{bottom:93.152000pt;}
.y61{bottom:93.952000pt;}
.y7b{bottom:94.592000pt;}
.yb4{bottom:102.592000pt;}
.ye1{bottom:104.352000pt;}
.y115{bottom:105.152000pt;}
.y1fa{bottom:105.312000pt;}
.y7{bottom:105.472000pt;}
.y128{bottom:106.272000pt;}
.y98{bottom:106.592000pt;}
.y18d{bottom:107.040000pt;}
.y180{bottom:107.106667pt;}
.y175{bottom:107.133333pt;}
.y16e{bottom:107.173333pt;}
.y12c{bottom:107.746667pt;}
.y18f{bottom:107.813333pt;}
.y182{bottom:107.840000pt;}
.y177{bottom:107.866667pt;}
.y170{bottom:107.906667pt;}
.y167{bottom:108.032000pt;}
.y1a7{bottom:108.512000pt;}
.y60{bottom:109.312000pt;}
.y1ab{bottom:110.053333pt;}
.y7a{bottom:113.472000pt;}
.y1e1{bottom:113.952000pt;}
.yb3{bottom:114.912000pt;}
.y30{bottom:118.112000pt;}
.ye0{bottom:119.712000pt;}
.y114{bottom:120.512000pt;}
.y127{bottom:121.632000pt;}
.y97{bottom:121.952000pt;}
.y166{bottom:123.392000pt;}
.y1a6{bottom:123.872000pt;}
.y5f{bottom:124.672000pt;}
.yb2{bottom:127.232000pt;}
.y1f9{bottom:128.672000pt;}
.y1e0{bottom:129.312000pt;}
.y2f{bottom:131.872000pt;}
.y1ac{bottom:132.933333pt;}
.ydf{bottom:134.906667pt;}
.y113{bottom:135.706667pt;}
.y126{bottom:136.986667pt;}
.y96{bottom:137.306667pt;}
.y12d{bottom:137.920000pt;}
.y165{bottom:138.586667pt;}
.y1a5{bottom:139.226667pt;}
.y5e{bottom:140.026667pt;}
.yb1{bottom:140.186667pt;}
.y1f8{bottom:144.026667pt;}
.y2e{bottom:146.106667pt;}
.yb0{bottom:146.266667pt;}
.yde{bottom:150.266667pt;}
.y112{bottom:151.066667pt;}
.y2d{bottom:152.186667pt;}
.y125{bottom:152.346667pt;}
.y95{bottom:152.666667pt;}
.y164{bottom:153.946667pt;}
.y1a4{bottom:154.586667pt;}
.y5d{bottom:155.226667pt;}
.yaf{bottom:155.386667pt;}
.y1ad{bottom:155.813333pt;}
.y205{bottom:158.906667pt;}
.y1f7{bottom:159.226667pt;}
.y1ce{bottom:160.346667pt;}
.y2c{bottom:160.986667pt;}
.y124{bottom:167.546667pt;}
.y94{bottom:168.026667pt;}
.y12e{bottom:168.093333pt;}
.y163{bottom:169.306667pt;}
.y1a3{bottom:169.946667pt;}
.y159{bottom:170.746667pt;}
.ydd{bottom:173.626667pt;}
.y111{bottom:174.426667pt;}
.y20e{bottom:174.440000pt;}
.y2b{bottom:175.226667pt;}
.yac{bottom:177.626667pt;}
.y5c{bottom:178.586667pt;}
.y1ae{bottom:178.693333pt;}
.y2a{bottom:181.306667pt;}
.y1f6{bottom:182.586667pt;}
.y22c{bottom:182.720000pt;}
.yad{bottom:182.746667pt;}
.y123{bottom:182.906667pt;}
.y93{bottom:183.226667pt;}
.yae{bottom:184.346667pt;}
.y1a2{bottom:185.146667pt;}
.y158{bottom:186.106667pt;}
.ydc{bottom:189.306667pt;}
.y29{bottom:190.586667pt;}
.y1df{bottom:191.226667pt;}
.y162{bottom:192.666667pt;}
.y5b{bottom:193.946667pt;}
.y1f5{bottom:197.946667pt;}
.y122{bottom:198.266667pt;}
.y12f{bottom:198.306667pt;}
.y92{bottom:198.586667pt;}
.y1cd{bottom:200.026667pt;}
.y1a1{bottom:200.506667pt;}
.y157{bottom:201.306667pt;}
.y1af{bottom:201.600000pt;}
.yab{bottom:202.106667pt;}
.ydb{bottom:204.826667pt;}
.y204{bottom:205.946667pt;}
.y1de{bottom:206.586667pt;}
.y5a{bottom:209.306667pt;}
.y121{bottom:213.626667pt;}
.y110{bottom:213.786667pt;}
.y91{bottom:213.946667pt;}
.y1cc{bottom:215.226667pt;}
.y1a0{bottom:215.866667pt;}
.y156{bottom:216.666667pt;}
.y28{bottom:218.586667pt;}
.yaa{bottom:218.746667pt;}
.y1f4{bottom:221.306667pt;}
.y1b0{bottom:224.480000pt;}
.y59{bottom:224.666667pt;}
.y10f{bottom:227.546667pt;}
.y130{bottom:228.480000pt;}
.yda{bottom:228.506667pt;}
.y120{bottom:228.986667pt;}
.y90{bottom:229.306667pt;}
.y1dd{bottom:229.626667pt;}
.y1cb{bottom:230.586667pt;}
.y19f{bottom:231.226667pt;}
.y161{bottom:231.546667pt;}
.y155{bottom:232.026667pt;}
.y27{bottom:233.946667pt;}
.ya9{bottom:234.586667pt;}
.y1f3{bottom:236.666667pt;}
.y10c{bottom:239.080000pt;}
.y58{bottom:240.066667pt;}
.y8f{bottom:244.706667pt;}
.y160{bottom:245.346667pt;}
.y1ca{bottom:245.986667pt;}
.y19e{bottom:246.626667pt;}
.y1b1{bottom:247.360000pt;}
.y26{bottom:249.186667pt;}
.ya8{bottom:250.306667pt;}
.yd8{bottom:251.586667pt;}
.y57{bottom:255.266667pt;}
.yd9{bottom:255.426667pt;}
.yd7{bottom:258.306667pt;}
.y131{bottom:258.653333pt;}
.y15f{bottom:259.266667pt;}
.y8e{bottom:260.066667pt;}
.y1c9{bottom:261.346667pt;}
.y19d{bottom:261.986667pt;}
.y10b{bottom:264.066667pt;}
.y25{bottom:264.546667pt;}
.y11f{bottom:267.906667pt;}
.y1dc{bottom:269.346667pt;}
.y15e{bottom:270.146667pt;}
.y187{bottom:270.240000pt;}
.y1b2{bottom:270.266667pt;}
.y56{bottom:270.626667pt;}
.y154{bottom:270.786667pt;}
.ya7{bottom:272.226667pt;}
.y8d{bottom:275.266667pt;}
.y10a{bottom:276.386667pt;}
.y1c8{bottom:276.706667pt;}
.y20d{bottom:277.026667pt;}
.y19c{bottom:277.186667pt;}
.y24{bottom:279.906667pt;}
.ya6{bottom:280.386667pt;}
.y11e{bottom:281.666667pt;}
.y203{bottom:283.266667pt;}
.y22b{bottom:285.120000pt;}
.y55{bottom:285.986667pt;}
.y109{bottom:288.866667pt;}
.y1f2{bottom:290.626667pt;}
.y1c7{bottom:292.066667pt;}
.y19b{bottom:292.546667pt;}
.y1db{bottom:292.706667pt;}
.y23{bottom:295.266667pt;}
.y11d{bottom:295.426667pt;}
.y8c{bottom:298.626667pt;}
.ya4{bottom:299.106667pt;}
.y108{bottom:301.186667pt;}
.y54{bottom:301.346667pt;}
.ya5{bottom:305.186667pt;}
.y11c{bottom:306.466667pt;}
.y12a{bottom:306.560000pt;}
.y1c6{bottom:307.266667pt;}
.y19a{bottom:307.906667pt;}
.y79{bottom:308.066667pt;}
.y22{bottom:310.626667pt;}
.y107{bottom:313.666667pt;}
.y8b{bottom:313.986667pt;}
.ya3{bottom:314.466667pt;}
.yd6{bottom:316.546667pt;}
.y53{bottom:316.706667pt;}
.y1c5{bottom:322.626667pt;}
.y199{bottom:323.266667pt;}
.y106{bottom:326.146667pt;}
.y8a{bottom:329.346667pt;}
.yd5{bottom:331.906667pt;}
.y52{bottom:332.066667pt;}
.y21{bottom:333.986667pt;}
.y202{bottom:337.346667pt;}
.ya2{bottom:337.986667pt;}
.y105{bottom:338.466667pt;}
.y198{bottom:338.626667pt;}
.y89{bottom:344.706667pt;}
.y1c4{bottom:345.986667pt;}
.y78{bottom:346.626667pt;}
.y51{bottom:347.266667pt;}
.y153{bottom:347.426667pt;}
.y20{bottom:349.186667pt;}
.y104{bottom:350.626667pt;}
.y1f1{bottom:352.706667pt;}
.ya1{bottom:353.346667pt;}
.y197{bottom:353.826667pt;}
.y88{bottom:360.066667pt;}
.y1c3{bottom:361.346667pt;}
.y77{bottom:361.986667pt;}
.y152{bottom:362.786667pt;}
.yd4{bottom:362.946667pt;}
.y103{bottom:363.266667pt;}
.y1f{bottom:364.546667pt;}
.y1f0{bottom:368.066667pt;}
.ya0{bottom:368.706667pt;}
.y50{bottom:370.626667pt;}
.y87{bottom:375.266667pt;}
.y102{bottom:375.426667pt;}
.y201{bottom:376.066667pt;}
.y1c2{bottom:376.706667pt;}
.y76{bottom:377.346667pt;}
.y151{bottom:377.986667pt;}
.y20c{bottom:379.426667pt;}
.y1e{bottom:379.906667pt;}
.y9f{bottom:384.066667pt;}
.y196{bottom:384.866667pt;}
.y4f{bottom:385.986667pt;}
.yd3{bottom:386.306667pt;}
.y221{bottom:387.680000pt;}
.y101{bottom:387.906667pt;}
.y86{bottom:390.626667pt;}
.y1ef{bottom:391.266667pt;}
.y1c1{bottom:392.066667pt;}
.y75{bottom:392.706667pt;}
.y1d{bottom:395.266667pt;}
.y15d{bottom:396.866667pt;}
.y17c{bottom:396.960000pt;}
.y9e{bottom:399.746667pt;}
.y100{bottom:400.226667pt;}
.y1da{bottom:400.386667pt;}
.y4e{bottom:401.346667pt;}
.yd2{bottom:401.666667pt;}
.y195{bottom:403.746667pt;}
.y1a8{bottom:403.840000pt;}
.y85{bottom:405.986667pt;}
.y1ee{bottom:406.626667pt;}
.y1c0{bottom:407.266667pt;}
.y74{bottom:408.066667pt;}
.yff{bottom:412.706667pt;}
.y200{bottom:414.626667pt;}
.y9d{bottom:414.946667pt;}
.y4d{bottom:416.706667pt;}
.y150{bottom:417.026667pt;}
.y1c{bottom:418.306667pt;}
.y84{bottom:421.346667pt;}
.y73{bottom:423.266667pt;}
.y1d9{bottom:424.066667pt;}
.yfe{bottom:425.213333pt;}
.yd1{bottom:425.373333pt;}
.y1ed{bottom:430.013333pt;}
.y1bf{bottom:430.653333pt;}
.y14f{bottom:430.813333pt;}
.y4c{bottom:432.093333pt;}
.y83{bottom:436.733333pt;}
.yfd{bottom:437.853333pt;}
.y72{bottom:438.653333pt;}
.y1d8{bottom:439.293333pt;}
.y14e{bottom:444.573333pt;}
.y1ec{bottom:445.373333pt;}
.y4b{bottom:447.293333pt;}
.yd0{bottom:449.053333pt;}
.yfc{bottom:450.013333pt;}
.y82{bottom:452.093333pt;}
.y71{bottom:454.013333pt;}
.y1d7{bottom:454.653333pt;}
.y14d{bottom:456.093333pt;}
.y1b{bottom:457.533333pt;}
.y1be{bottom:462.013333pt;}
.yfb{bottom:462.493333pt;}
.y4a{bottom:462.653333pt;}
.ycf{bottom:464.573333pt;}
.y14c{bottom:468.413333pt;}
.y1eb{bottom:468.733333pt;}
.y70{bottom:469.373333pt;}
.y81{bottom:470.013333pt;}
.yfa{bottom:474.813333pt;}
.y1bd{bottom:477.373333pt;}
.y49{bottom:478.013333pt;}
.y1a{bottom:479.773333pt;}
.y14b{bottom:480.733333pt;}
.y20b{bottom:481.853333pt;}
.y1ea{bottom:483.933333pt;}
.y6f{bottom:484.733333pt;}
.y1d6{bottom:485.373333pt;}
.yf9{bottom:487.293333pt;}
.yce{bottom:488.253333pt;}
.y21d{bottom:490.080000pt;}
.y1bc{bottom:492.733333pt;}
.y14a{bottom:492.893333pt;}
.y233{bottom:493.213333pt;}
.y48{bottom:493.373333pt;}
.yf8{bottom:499.773333pt;}
.y6e{bottom:499.933333pt;}
.y80{bottom:501.373333pt;}
.y19{bottom:503.133333pt;}
.y149{bottom:505.213333pt;}
.y1e9{bottom:507.293333pt;}
.y1bb{bottom:507.933333pt;}
.y47{bottom:508.733333pt;}
.ycd{bottom:511.933333pt;}
.yf7{bottom:512.413333pt;}
.y23d{bottom:513.440000pt;}
.y6d{bottom:515.293333pt;}
.y7f{bottom:516.733333pt;}
.y148{bottom:517.533333pt;}
.y1e8{bottom:522.653333pt;}
.y1ba{bottom:523.293333pt;}
.y15c{bottom:523.613333pt;}
.y171{bottom:523.680000pt;}
.y46{bottom:523.933333pt;}
.yf6{bottom:524.893333pt;}
.y18{bottom:526.333333pt;}
.y147{bottom:529.693333pt;}
.y9c{bottom:530.653333pt;}
.y7e{bottom:531.933333pt;}
.ycc{bottom:534.813333pt;}
.yf5{bottom:537.373333pt;}
.y1ff{bottom:538.013333pt;}
.y6c{bottom:538.653333pt;}
.y45{bottom:539.293333pt;}
.y17{bottom:541.693333pt;}
.y146{bottom:542.013333pt;}
.ycb{bottom:543.133333pt;}
.y9b{bottom:546.013333pt;}
.y7d{bottom:547.293333pt;}
.yf4{bottom:549.693333pt;}
.y6b{bottom:554.013333pt;}
.y145{bottom:554.333333pt;}
.y1d5{bottom:554.653333pt;}
.y16{bottom:557.053333pt;}
.y1e7{bottom:561.373333pt;}
.yf3{bottom:562.173333pt;}
.y44{bottom:562.653333pt;}
.y144{bottom:566.493333pt;}
.y9a{bottom:569.053333pt;}
.y6a{bottom:569.373333pt;}
.y1d4{bottom:570.013333pt;}
.y15{bottom:572.413333pt;}
.yf1{bottom:574.333333pt;}
.yca{bottom:574.813333pt;}
.y1fe{bottom:576.733333pt;}
.y43{bottom:578.013333pt;}
.y143{bottom:578.813333pt;}
.y209{bottom:584.413333pt;}
.y69{bottom:584.733333pt;}
.y1d3{bottom:585.373333pt;}
.yef{bottom:586.813333pt;}
.y14{bottom:587.773333pt;}
.y142{bottom:591.133333pt;}
.y1fd{bottom:591.933333pt;}
.y219{bottom:592.480000pt;}
.y42{bottom:593.373333pt;}
.y11b{bottom:593.533333pt;}
.yc9{bottom:598.653333pt;}
.y68{bottom:599.933333pt;}
.yec{bottom:600.093333pt;}
.y1d2{bottom:600.733333pt;}
.y13{bottom:603.133333pt;}
.y141{bottom:603.293333pt;}
.y231{bottom:607.773333pt;}
.y41{bottom:608.733333pt;}
.yc8{bottom:613.893333pt;}
.y67{bottom:615.333333pt;}
.y140{bottom:615.653333pt;}
.y237{bottom:615.840000pt;}
.y1d1{bottom:615.973333pt;}
.y12{bottom:618.373333pt;}
.yeb{bottom:623.173333pt;}
.y40{bottom:623.973333pt;}
.y13f{bottom:627.973333pt;}
.yc7{bottom:629.253333pt;}
.y66{bottom:630.693333pt;}
.y1d0{bottom:631.333333pt;}
.y11a{bottom:631.973333pt;}
.y11{bottom:633.733333pt;}
.y1e6{bottom:638.693333pt;}
.y3f{bottom:639.333333pt;}
.y13e{bottom:640.133333pt;}
.y65{bottom:646.053333pt;}
.y119{bottom:647.333333pt;}
.y10{bottom:649.093333pt;}
.yc6{bottom:649.893333pt;}
.y15b{bottom:650.373333pt;}
.y169{bottom:650.400000pt;}
.y13d{bottom:652.453333pt;}
.yc4{bottom:652.933333pt;}
.y1e5{bottom:654.053333pt;}
.y3e{bottom:654.693333pt;}
.yc5{bottom:658.053333pt;}
.y1b9{bottom:661.413333pt;}
.yea{bottom:661.733333pt;}
.y118{bottom:662.693333pt;}
.yf{bottom:664.453333pt;}
.y13c{bottom:664.773333pt;}
.y64{bottom:669.093333pt;}
.y1fc{bottom:669.413333pt;}
.y3d{bottom:670.053333pt;}
.yc3{bottom:676.773333pt;}
.y13b{bottom:676.933333pt;}
.ye9{bottom:677.093333pt;}
.y1e4{bottom:677.413333pt;}
.y117{bottom:678.053333pt;}
.y1b8{bottom:684.773333pt;}
.y3c{bottom:685.413333pt;}
.y207{bottom:686.853333pt;}
.y13a{bottom:689.253333pt;}
.ye8{bottom:692.453333pt;}
.y1e3{bottom:692.773333pt;}
.yc2{bottom:693.413333pt;}
.y210{bottom:695.040000pt;}
.y3b{bottom:700.773333pt;}
.y139{bottom:701.573333pt;}
.y194{bottom:702.373333pt;}
.ye7{bottom:707.813333pt;}
.y1e2{bottom:707.973333pt;}
.y63{bottom:708.773333pt;}
.y230{bottom:710.213333pt;}
.yd{bottom:712.133333pt;}
.y138{bottom:713.733333pt;}
.yc1{bottom:715.653333pt;}
.y3a{bottom:715.973333pt;}
.y193{bottom:716.133333pt;}
.ye{bottom:718.213333pt;}
.y234{bottom:718.400000pt;}
.ybf{bottom:718.693333pt;}
.ye6{bottom:723.013333pt;}
.y1fb{bottom:723.333333pt;}
.yc0{bottom:723.813333pt;}
.y62{bottom:723.973333pt;}
.y137{bottom:726.053333pt;}
.y39{bottom:731.333333pt;}
.ye5{bottom:738.373333pt;}
.yc{bottom:739.333333pt;}
.ybe{bottom:742.853333pt;}
.y1b7{bottom:746.693333pt;}
.y136{bottom:750.533333pt;}
.y38{bottom:754.693333pt;}
.ybc{bottom:758.853333pt;}
.ye3{bottom:761.733333pt;}
.y1b6{bottom:762.053333pt;}
.yb{bottom:762.213333pt;}
.y135{bottom:762.853333pt;}
.ybd{bottom:765.573333pt;}
.ye4{bottom:766.693333pt;}
.y37{bottom:770.053333pt;}
.yba{bottom:775.333333pt;}
.y133{bottom:775.813333pt;}
.ybb{bottom:780.453333pt;}
.y36{bottom:785.413333pt;}
.y15a{bottom:787.653333pt;}
.yb7{bottom:799.680000pt;}
.y206{bottom:800.480000pt;}
.y35{bottom:800.800000pt;}
.y132{bottom:801.600000pt;}
.yb8{bottom:804.800000pt;}
.y6{bottom:805.280000pt;}
.yb9{bottom:806.400000pt;}
.y1{bottom:807.040000pt;}
.y34{bottom:828.960000pt;}
.h5{height:5.025000pt;}
.h2a{height:12.146667pt;}
.h25{height:12.160000pt;}
.h29{height:12.306667pt;}
.h26{height:12.320000pt;}
.h31{height:12.340000pt;}
.h28{height:12.466667pt;}
.h24{height:12.480000pt;}
.h2c{height:12.498667pt;}
.h21{height:12.500000pt;}
.h27{height:12.506667pt;}
.h2b{height:12.626667pt;}
.h23{height:12.640000pt;}
.h30{height:15.026667pt;}
.h2d{height:28.202500pt;}
.he{height:31.083333pt;}
.hc{height:33.918750pt;}
.h2{height:34.080000pt;}
.ha{height:34.830000pt;}
.h6{height:38.671562pt;}
.h2f{height:38.715000pt;}
.h18{height:42.084375pt;}
.h33{height:44.735000pt;}
.h10{height:47.085938pt;}
.hd{height:47.109375pt;}
.h15{height:47.523750pt;}
.h11{height:47.621250pt;}
.h4{height:47.906563pt;}
.h20{height:48.168125pt;}
.hf{height:48.375000pt;}
.h17{height:49.448125pt;}
.h1c{height:50.088125pt;}
.h12{height:52.108438pt;}
.h3{height:52.134375pt;}
.hb{height:53.535000pt;}
.h22{height:54.898125pt;}
.h38{height:58.238750pt;}
.h16{height:64.294375pt;}
.h8{height:64.500000pt;}
.h13{height:68.008125pt;}
.h14{height:69.928125pt;}
.h19{height:70.568125pt;}
.h1d{height:78.883750pt;}
.h1f{height:79.528125pt;}
.h7{height:80.625000pt;}
.h1e{height:90.403750pt;}
.h40{height:94.240000pt;}
.h3f{height:94.400000pt;}
.h1b{height:101.288125pt;}
.h3d{height:102.386667pt;}
.h3a{height:102.420000pt;}
.h3c{height:102.426667pt;}
.h39{height:102.546667pt;}
.h3b{height:102.560000pt;}
.h3e{height:102.578667pt;}
.h41{height:102.586667pt;}
.h1a{height:104.488125pt;}
.h32{height:126.706667pt;}
.h36{height:126.720000pt;}
.h34{height:126.740000pt;}
.h35{height:126.746667pt;}
.h2e{height:276.320000pt;}
.h37{height:288.000000pt;}
.h1{height:888.000000pt;}
.h9{height:888.318213pt;}
.h0{height:888.320000pt;}
.w2{width:28.350667pt;}
.w8{width:30.880000pt;}
.wb{width:36.338667pt;}
.w12{width:44.192000pt;}
.w11{width:47.840000pt;}
.w3{width:56.790667pt;}
.w10{width:62.738667pt;}
.w9{width:64.192000pt;}
.wc{width:65.906667pt;}
.w7{width:66.898667pt;}
.w13{width:79.186667pt;}
.w6{width:89.910667pt;}
.wa{width:97.106667pt;}
.wf{width:102.230667pt;}
.w14{width:116.658667pt;}
.wd{width:199.373333pt;}
.w1c{width:225.760000pt;}
.w1b{width:233.506667pt;}
.w18{width:240.320000pt;}
.w17{width:240.480000pt;}
.w15{width:242.097333pt;}
.w16{width:242.306667pt;}
.w1a{width:250.897333pt;}
.w4{width:415.920000pt;}
.we{width:473.120000pt;}
.w19{width:473.920000pt;}
.w1d{width:484.400000pt;}
.w5{width:623.678333pt;}
.w0{width:623.680000pt;}
.w1{width:624.000000pt;}
.x0{left:0.000000pt;}
.x41{left:2.112000pt;}
.x47{left:5.253333pt;}
.x2{left:7.198667pt;}
.x38{left:8.626667pt;}
.x2d{left:9.746667pt;}
.x27{left:11.520000pt;}
.x36{left:12.480000pt;}
.x29{left:13.600000pt;}
.x34{left:15.840000pt;}
.x25{left:17.426667pt;}
.x32{left:19.968000pt;}
.x3b{left:21.946667pt;}
.x2f{left:26.706667pt;}
.x2b{left:30.226667pt;}
.x30{left:32.960000pt;}
.x3c{left:40.146667pt;}
.x3a{left:41.426667pt;}
.x1{left:47.201333pt;}
.x4{left:55.990667pt;}
.x3d{left:68.521333pt;}
.x40{left:72.960000pt;}
.x3{left:75.561333pt;}
.xc{left:79.872000pt;}
.x18{left:82.752000pt;}
.x23{left:86.281333pt;}
.x4f{left:89.306667pt;}
.x4e{left:94.106667pt;}
.x45{left:95.426667pt;}
.x4b{left:97.626667pt;}
.x4d{left:98.586667pt;}
.x21{left:99.552000pt;}
.x44{left:101.506667pt;}
.x46{left:103.746667pt;}
.x42{left:105.986667pt;}
.x48{left:112.066667pt;}
.x5{left:132.361333pt;}
.x19{left:136.346667pt;}
.x1a{left:138.906667pt;}
.x7{left:149.305000pt;}
.x8{left:153.626667pt;}
.x16{left:157.146667pt;}
.x1e{left:160.666667pt;}
.x22{left:167.866667pt;}
.x24{left:176.200000pt;}
.x1f{left:187.866667pt;}
.x20{left:198.906667pt;}
.x13{left:224.065000pt;}
.x14{left:228.386667pt;}
.x49{left:230.585333pt;}
.x1b{left:241.186667pt;}
.x26{left:243.106667pt;}
.x3e{left:244.985333pt;}
.x33{left:250.466667pt;}
.x9{left:261.185000pt;}
.x1c{left:262.466667pt;}
.x15{left:264.386667pt;}
.xa{left:265.506667pt;}
.xb{left:267.586667pt;}
.x28{left:273.986667pt;}
.xd{left:292.240000pt;}
.x35{left:298.306667pt;}
.x3f{left:310.626667pt;}
.x43{left:315.200000pt;}
.x4a{left:319.426667pt;}
.x4c{left:324.000000pt;}
.x2a{left:338.186667pt;}
.x37{left:342.506667pt;}
.xf{left:357.986667pt;}
.x1d{left:362.333333pt;}
.x12{left:387.613333pt;}
.x39{left:421.706667pt;}
.x10{left:424.093333pt;}
.x2c{left:435.306667pt;}
.xe{left:458.506667pt;}
.x2e{left:471.653333pt;}
.x17{left:518.693333pt;}
.x11{left:528.133333pt;}
.x6{left:548.133333pt;}
.x31{left:549.573333pt;}
}




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