
    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_bd85186ffad65fad54a72ace.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133789;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_691b536d2600644100ab3083.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.133789;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_cff44a68d304acd46066762d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_990d074ccf561206e07c0021.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_a52f0c899ff3f72a06e171a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_3527ba1fe317bbd0487f653e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fcca481f178fdd68799d0c6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_96bda7312774df9ab588984f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dfbdb13a5c43002b9eac44da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81dac4dd55e07689b02de55b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e530631db95f6fee3aa78c91.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.097168;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_70a0b9dd93196fcad777e23b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972656;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_db898b512e06eb5482fc05a2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ffa6509eeebc879be2da2b9d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.955078;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:ff11;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-74.160000px;}
.v3{vertical-align:-69.120000px;}
.va{vertical-align:-62.640000px;}
.vb{vertical-align:-52.980000px;}
.vc{vertical-align:-45.120000px;}
.ve{vertical-align:-43.680000px;}
.v7{vertical-align:-37.020000px;}
.v4{vertical-align:-35.160000px;}
.vd{vertical-align:-18.720000px;}
.v9{vertical-align:-11.220000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:30.840000px;}
.v5{vertical-align:62.520000px;}
.v6{vertical-align:97.500000px;}
.ls10{letter-spacing:-1.662000px;}
.ls1b{letter-spacing:-1.080000px;}
.ls32{letter-spacing:-0.852000px;}
.ls1f{letter-spacing:-0.738000px;}
.ls48{letter-spacing:-0.702000px;}
.ls4a{letter-spacing:-0.540000px;}
.ls49{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.308400px;}
.ls19{letter-spacing:-0.291600px;}
.ls3c{letter-spacing:-0.259800px;}
.ls1a{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.090000px;}
.ls2f{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls1e{letter-spacing:-0.018000px;}
.lsd{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls44{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls3f{letter-spacing:0.108000px;}
.ls3e{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.131040px;}
.ls3{letter-spacing:0.180000px;}
.ls45{letter-spacing:0.198000px;}
.ls13{letter-spacing:0.210240px;}
.ls25{letter-spacing:0.259800px;}
.ls2d{letter-spacing:0.259920px;}
.ls4b{letter-spacing:0.269400px;}
.ls20{letter-spacing:0.270000px;}
.ls3a{letter-spacing:0.298800px;}
.lse{letter-spacing:0.316800px;}
.ls42{letter-spacing:0.318000px;}
.ls1c{letter-spacing:0.324000px;}
.ls2e{letter-spacing:0.331800px;}
.ls4{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls47{letter-spacing:0.468000px;}
.ls2b{letter-spacing:0.504000px;}
.ls46{letter-spacing:0.540000px;}
.ls21{letter-spacing:0.828000px;}
.lsb{letter-spacing:0.900000px;}
.ls35{letter-spacing:1.620000px;}
.ls16{letter-spacing:3.780000px;}
.ls14{letter-spacing:4.500000px;}
.ls5{letter-spacing:5.940000px;}
.ls26{letter-spacing:6.660000px;}
.ls6{letter-spacing:7.380000px;}
.ls29{letter-spacing:8.100000px;}
.ls2a{letter-spacing:8.586720px;}
.ls28{letter-spacing:8.820000px;}
.ls27{letter-spacing:10.980000px;}
.ls3b{letter-spacing:12.420000px;}
.ls18{letter-spacing:13.860000px;}
.ls38{letter-spacing:15.066720px;}
.ls15{letter-spacing:15.300000px;}
.ls34{letter-spacing:16.020000px;}
.ls31{letter-spacing:17.460000px;}
.ls33{letter-spacing:18.360000px;}
.lsc{letter-spacing:18.900000px;}
.ls8{letter-spacing:19.620000px;}
.lsa{letter-spacing:21.060000px;}
.ls9{letter-spacing:21.780000px;}
.ls7{letter-spacing:22.500000px;}
.ls2{letter-spacing:22.860000px;}
.ls3d{letter-spacing:23.220000px;}
.ls39{letter-spacing:37.620000px;}
.ls40{letter-spacing:39.060000px;}
.ls30{letter-spacing:44.562720px;}
.ls22{letter-spacing:45.540000px;}
.ls37{letter-spacing:51.300000px;}
.ls36{letter-spacing:52.020000px;}
.ls43{letter-spacing:66.420000px;}
.ls41{letter-spacing:67.140000px;}
.ls1{letter-spacing:120.420000px;}
.ls23{letter-spacing:396.876000px;}
.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;}
}
.ws7{word-spacing:-67.500000px;}
.ws16{word-spacing:-59.760000px;}
.ws29{word-spacing:-54.468000px;}
.ws28{word-spacing:-54.270000px;}
.ws27{word-spacing:-54.000000px;}
.ws0{word-spacing:-16.280640px;}
.ws1b{word-spacing:-15.655440px;}
.ws3{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.199800px;}
.ws6{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws26{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.648400px;}
.ws14{word-spacing:-13.932000px;}
.wsd{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.824000px;}
.ws10{word-spacing:-13.770000px;}
.ws2d{word-spacing:-13.680000px;}
.ws2a{word-spacing:-13.626000px;}
.ws19{word-spacing:-13.536000px;}
.wsc{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsb{word-spacing:-13.392000px;}
.ws2c{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.960000px;}
.ws2b{word-spacing:-12.798000px;}
.wsf{word-spacing:-12.762000px;}
.ws2f{word-spacing:-12.420000px;}
.ws2e{word-spacing:-12.329400px;}
.ws4{word-spacing:-12.060000px;}
.ws5{word-spacing:-10.398000px;}
.ws9{word-spacing:-10.064160px;}
.ws8{word-spacing:0.000000px;}
.ws18{word-spacing:94.932000px;}
.ws17{word-spacing:106.986000px;}
.ws1f{word-spacing:116.160000px;}
.ws1e{word-spacing:116.220000px;}
.ws13{word-spacing:119.832000px;}
.ws22{word-spacing:124.140000px;}
.ws12{word-spacing:132.318000px;}
.ws24{word-spacing:136.260000px;}
.ws20{word-spacing:142.140000px;}
.ws25{word-spacing:160.080000px;}
.ws21{word-spacing:160.140000px;}
.ws1d{word-spacing:167.386080px;}
.ws23{word-spacing:172.080000px;}
.ws1a{word-spacing:601.272000px;}
._e{margin-left:-4.009680px;}
._d{margin-left:-2.846160px;}
._0{margin-left:-1.291680px;}
._1{width:1.090800px;}
._9{width:2.186640px;}
._8{width:3.221280px;}
._6{width:4.609440px;}
._2{width:5.740560px;}
._13{width:6.760080px;}
._3{width:7.770000px;}
._12{width:8.872560px;}
._a{width:9.952800px;}
._17{width:11.892240px;}
._7{width:13.122000px;}
._5{width:14.991840px;}
._4{width:16.053120px;}
._10{width:17.339760px;}
._f{width:18.994320px;}
._11{width:21.095280px;}
._b{width:22.429440px;}
._c{width:23.600880px;}
._15{width:24.955200px;}
._14{width:26.593200px;}
._21{width:27.848160px;}
._1c{width:29.043360px;}
._1a{width:30.477600px;}
._19{width:31.792320px;}
._1b{width:33.072720px;}
._1e{width:34.840080px;}
._16{width:36.274320px;}
._18{width:38.425680px;}
._25{width:39.474000px;}
._24{width:45.519840px;}
._20{width:47.509200px;}
._23{width:51.399360px;}
._22{width:52.767360px;}
._26{width:66.798000px;}
._1f{width:94.836000px;}
._1d{width:119.916000px;}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,98,40);}
.fse{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs1{font-size:33.120000px;}
.fs0{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsc{font-size:51.840000px;}
.fsd{font-size:51.984000px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs5{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs8{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.y226{bottom:2.340000px;}
.y5{bottom:2.520000px;}
.y72{bottom:2.880000px;}
.yaf{bottom:3.060000px;}
.y4f{bottom:4.320000px;}
.yf4{bottom:5.400000px;}
.y153{bottom:6.120000px;}
.y9{bottom:6.300000px;}
.y4e{bottom:6.480000px;}
.y2{bottom:7.020000px;}
.yf1{bottom:10.080000px;}
.y7f{bottom:10.620000px;}
.ye9{bottom:10.650000px;}
.y90{bottom:10.800000px;}
.y9e{bottom:10.830000px;}
.y4{bottom:11.880000px;}
.y3{bottom:12.060000px;}
.yf3{bottom:12.960000px;}
.y10f{bottom:15.120000px;}
.y227{bottom:16.380000px;}
.y4d{bottom:17.280000px;}
.y75{bottom:18.360000px;}
.ye5{bottom:18.390000px;}
.ya9{bottom:18.405000px;}
.y79{bottom:18.540000px;}
.ya1{bottom:18.570000px;}
.yef{bottom:20.700000px;}
.y151{bottom:21.600000px;}
.y7e{bottom:26.100000px;}
.ye8{bottom:26.130000px;}
.ya6{bottom:26.145000px;}
.y8f{bottom:26.280000px;}
.y9c{bottom:26.310000px;}
.yf2{bottom:28.620000px;}
.y19e{bottom:30.165000px;}
.ya{bottom:32.940000px;}
.y7c{bottom:33.840000px;}
.ye4{bottom:33.870000px;}
.y74{bottom:34.020000px;}
.y99{bottom:34.050000px;}
.ya8{bottom:34.065000px;}
.y152{bottom:37.080000px;}
.y14f{bottom:40.890000px;}
.y8e{bottom:41.760000px;}
.y9b{bottom:41.790000px;}
.ya5{bottom:41.805000px;}
.y142{bottom:42.870000px;}
.y147{bottom:44.490000px;}
.y110{bottom:45.825000px;}
.y115{bottom:47.955000px;}
.y8{bottom:48.600000px;}
.y76{bottom:49.500000px;}
.y98{bottom:49.530000px;}
.ya7{bottom:49.545000px;}
.y14e{bottom:56.370000px;}
.y8d{bottom:57.240000px;}
.y9a{bottom:57.270000px;}
.yab{bottom:57.285000px;}
.yad{bottom:57.420000px;}
.yb2{bottom:57.450000px;}
.y91{bottom:64.980000px;}
.ya0{bottom:65.010000px;}
.yaa{bottom:65.025000px;}
.yae{bottom:65.160000px;}
.yb3{bottom:65.190000px;}
.y143{bottom:67.290000px;}
.y148{bottom:68.910000px;}
.y1a8{bottom:70.305000px;}
.yd1{bottom:72.720000px;}
.yde{bottom:72.750000px;}
.y7{bottom:72.900000px;}
.y9d{bottom:72.930000px;}
.y111{bottom:76.215000px;}
.y19f{bottom:76.860000px;}
.y116{bottom:78.330000px;}
.y14d{bottom:79.485000px;}
.yc9{bottom:80.460000px;}
.ydf{bottom:80.490000px;}
.y92{bottom:80.640000px;}
.y9f{bottom:80.670000px;}
.y95{bottom:80.685000px;}
.y1ad{bottom:81.465000px;}
.yd0{bottom:88.200000px;}
.ydd{bottom:88.230000px;}
.yda{bottom:88.380000px;}
.y8a{bottom:88.560000px;}
.yed{bottom:90.180000px;}
.y4b{bottom:90.720000px;}
.y11b{bottom:91.110000px;}
.y144{bottom:91.650000px;}
.y228{bottom:92.340000px;}
.y149{bottom:93.315000px;}
.y225{bottom:93.780000px;}
.y14c{bottom:94.965000px;}
.yca{bottom:95.940000px;}
.ye3{bottom:95.970000px;}
.yd8{bottom:96.165000px;}
.y1aa{bottom:96.330000px;}
.y140{bottom:97.380000px;}
.y171{bottom:99.540000px;}
.y19c{bottom:101.700000px;}
.y1b5{bottom:103.140000px;}
.ycf{bottom:103.680000px;}
.ydc{bottom:103.890000px;}
.yd9{bottom:103.905000px;}
.y1ab{bottom:105.405000px;}
.y208{bottom:105.480000px;}
.y89{bottom:105.840000px;}
.y112{bottom:106.590000px;}
.yec{bottom:107.460000px;}
.y117{bottom:108.690000px;}
.ycb{bottom:111.600000px;}
.ye2{bottom:111.630000px;}
.yd7{bottom:111.645000px;}
.y4a{bottom:112.500000px;}
.y10d{bottom:113.040000px;}
.y1ae{bottom:114.270000px;}
.y13f{bottom:114.480000px;}
.y11a{bottom:114.915000px;}
.y145{bottom:116.070000px;}
.y170{bottom:116.640000px;}
.y14a{bottom:117.720000px;}
.y1b4{bottom:118.080000px;}
.y1e5{bottom:118.260000px;}
.y19b{bottom:118.980000px;}
.yce{bottom:119.340000px;}
.ye7{bottom:119.370000px;}
.y207{bottom:122.760000px;}
.y88{bottom:123.120000px;}
.y1a0{bottom:123.555000px;}
.y1a9{bottom:123.810000px;}
.yb5{bottom:124.740000px;}
.yd4{bottom:127.080000px;}
.ye1{bottom:127.110000px;}
.yd6{bottom:127.125000px;}
.y49{bottom:129.780000px;}
.y10c{bottom:130.140000px;}
.y13e{bottom:131.760000px;}
.y224{bottom:132.120000px;}
.y16f{bottom:133.920000px;}
.ycd{bottom:134.820000px;}
.ye6{bottom:134.850000px;}
.y1e4{bottom:135.540000px;}
.y19a{bottom:136.260000px;}
.y113{bottom:136.980000px;}
.y118{bottom:139.065000px;}
.y206{bottom:140.040000px;}
.y87{bottom:140.400000px;}
.y146{bottom:140.475000px;}
.y1b3{bottom:140.760000px;}
.yb4{bottom:141.840000px;}
.yeb{bottom:142.020000px;}
.y14b{bottom:142.095000px;}
.yd3{bottom:142.560000px;}
.ye0{bottom:142.590000px;}
.y1ac{bottom:145.005000px;}
.y48{bottom:147.060000px;}
.y10b{bottom:147.420000px;}
.y13d{bottom:149.040000px;}
.y223{bottom:149.400000px;}
.ycc{bottom:150.300000px;}
.y16e{bottom:151.200000px;}
.y1e3{bottom:152.640000px;}
.y199{bottom:153.360000px;}
.y1b2{bottom:155.700000px;}
.yb1{bottom:156.600000px;}
.y205{bottom:157.140000px;}
.y86{bottom:157.680000px;}
.yd2{bottom:158.040000px;}
.yea{bottom:159.300000px;}
.y47{bottom:164.340000px;}
.y10a{bottom:164.700000px;}
.y13c{bottom:166.320000px;}
.y222{bottom:166.680000px;}
.y114{bottom:167.325000px;}
.y16d{bottom:168.480000px;}
.y119{bottom:169.455000px;}
.y1e2{bottom:169.920000px;}
.y1a1{bottom:170.280000px;}
.y198{bottom:170.640000px;}
.ydb{bottom:174.060000px;}
.y204{bottom:174.420000px;}
.y85{bottom:174.780000px;}
.y1b1{bottom:178.380000px;}
.y46{bottom:181.440000px;}
.y109{bottom:181.980000px;}
.y13b{bottom:183.630000px;}
.y221{bottom:183.990000px;}
.y16c{bottom:185.790000px;}
.y1e1{bottom:187.230000px;}
.y197{bottom:187.950000px;}
.y203{bottom:191.730000px;}
.y84{bottom:192.090000px;}
.y1b0{bottom:193.320000px;}
.y108{bottom:199.290000px;}
.y13a{bottom:200.910000px;}
.y220{bottom:201.270000px;}
.y16b{bottom:203.070000px;}
.y45{bottom:203.250000px;}
.y1e0{bottom:204.510000px;}
.y196{bottom:205.230000px;}
.y202{bottom:209.010000px;}
.y83{bottom:209.370000px;}
.y107{bottom:213.150000px;}
.y10e{bottom:213.480000px;}
.y1a2{bottom:216.975000px;}
.y139{bottom:218.010000px;}
.y21f{bottom:218.370000px;}
.y1a6{bottom:218.625000px;}
.y16a{bottom:220.170000px;}
.y1df{bottom:221.790000px;}
.y195{bottom:222.510000px;}
.y44{bottom:225.030000px;}
.y201{bottom:226.290000px;}
.y82{bottom:226.650000px;}
.y1af{bottom:230.940000px;}
.y138{bottom:235.290000px;}
.y21e{bottom:235.650000px;}
.y169{bottom:237.450000px;}
.y1de{bottom:239.070000px;}
.y194{bottom:239.790000px;}
.y43{bottom:242.310000px;}
.y81{bottom:243.030000px;}
.y200{bottom:243.570000px;}
.yb0{bottom:250.590000px;}
.y1a5{bottom:252.720000px;}
.y21d{bottom:252.930000px;}
.y137{bottom:253.650000px;}
.y168{bottom:254.730000px;}
.y80{bottom:255.990000px;}
.y1dd{bottom:256.170000px;}
.y4c{bottom:256.530000px;}
.y193{bottom:256.890000px;}
.y42{bottom:259.590000px;}
.y1ff{bottom:260.670000px;}
.y1a3{bottom:263.670000px;}
.y21c{bottom:270.210000px;}
.y7d{bottom:270.750000px;}
.y136{bottom:270.930000px;}
.y167{bottom:272.010000px;}
.y1dc{bottom:273.450000px;}
.y192{bottom:274.170000px;}
.y41{bottom:276.870000px;}
.y1fe{bottom:277.950000px;}
.y21b{bottom:287.490000px;}
.y135{bottom:289.290000px;}
.y1db{bottom:290.730000px;}
.y191{bottom:291.450000px;}
.y40{bottom:293.970000px;}
.y1fd{bottom:295.230000px;}
.y1a7{bottom:295.350000px;}
.y21a{bottom:304.770000px;}
.y134{bottom:306.390000px;}
.y166{bottom:306.570000px;}
.y190{bottom:308.730000px;}
.y1a4{bottom:310.395000px;}
.y3f{bottom:311.250000px;}
.y1fc{bottom:312.510000px;}
.y7b{bottom:318.090000px;}
.y219{bottom:321.870000px;}
.y133{bottom:323.670000px;}
.y18f{bottom:326.010000px;}
.y3e{bottom:327.810000px;}
.yac{bottom:328.890000px;}
.y1fb{bottom:329.790000px;}
.yd5{bottom:329.970000px;}
.y218{bottom:339.150000px;}
.y132{bottom:340.950000px;}
.y3d{bottom:342.750000px;}
.y18e{bottom:343.290000px;}
.y1da{bottom:345.450000px;}
.y1fa{bottom:347.070000px;}
.y217{bottom:356.430000px;}
.y3c{bottom:356.610000px;}
.y131{bottom:358.230000px;}
.y18d{bottom:360.390000px;}
.y1f9{bottom:364.170000px;}
.y7a{bottom:365.430000px;}
.y3b{bottom:370.290000px;}
.y216{bottom:373.710000px;}
.y130{bottom:375.510000px;}
.y18c{bottom:377.670000px;}
.y1f8{bottom:381.450000px;}
.y3a{bottom:384.150000px;}
.y215{bottom:390.990000px;}
.y12f{bottom:392.790000px;}
.y18b{bottom:394.950000px;}
.y78{bottom:397.110000px;}
.y39{bottom:398.010000px;}
.y1f7{bottom:398.730000px;}
.y1d9{bottom:400.170000px;}
.ya4{bottom:407.370000px;}
.y214{bottom:408.270000px;}
.y12e{bottom:409.890000px;}
.y38{bottom:411.690000px;}
.y18a{bottom:412.230000px;}
.y1f6{bottom:416.010000px;}
.y1d8{bottom:417.450000px;}
.y213{bottom:425.415000px;}
.y37{bottom:425.595000px;}
.y12d{bottom:427.215000px;}
.y77{bottom:429.015000px;}
.y189{bottom:429.555000px;}
.y106{bottom:432.435000px;}
.y1f5{bottom:433.335000px;}
.y1d7{bottom:434.775000px;}
.y36{bottom:439.455000px;}
.y212{bottom:442.695000px;}
.y12c{bottom:444.495000px;}
.y188{bottom:446.835000px;}
.y105{bottom:449.715000px;}
.y1d6{bottom:452.055000px;}
.y35{bottom:453.135000px;}
.y211{bottom:459.975000px;}
.y12b{bottom:461.775000px;}
.y187{bottom:463.935000px;}
.y34{bottom:466.995000px;}
.y1d5{bottom:469.335000px;}
.yc8{bottom:470.595000px;}
.y210{bottom:477.255000px;}
.y12a{bottom:479.055000px;}
.y33{bottom:480.855000px;}
.y186{bottom:481.215000px;}
.y104{bottom:484.275000px;}
.ya3{bottom:485.715000px;}
.y1d4{bottom:486.435000px;}
.y1f4{bottom:488.055000px;}
.y73{bottom:491.835000px;}
.y32{bottom:494.535000px;}
.y129{bottom:496.335000px;}
.y185{bottom:498.495000px;}
.y103{bottom:501.555000px;}
.y1d3{bottom:503.715000px;}
.y31{bottom:508.395000px;}
.y20f{bottom:511.635000px;}
.y128{bottom:513.435000px;}
.y184{bottom:515.775000px;}
.y102{bottom:518.835000px;}
.y1d2{bottom:520.995000px;}
.y30{bottom:522.255000px;}
.y20e{bottom:528.915000px;}
.y127{bottom:530.715000px;}
.y183{bottom:533.055000px;}
.y2f{bottom:535.935000px;}
.y1d1{bottom:538.275000px;}
.y1f3{bottom:542.775000px;}
.y20d{bottom:546.195000px;}
.y126{bottom:547.995000px;}
.y2e{bottom:549.795000px;}
.y182{bottom:550.155000px;}
.y101{bottom:553.215000px;}
.y71{bottom:554.655000px;}
.y1d0{bottom:555.555000px;}
.y1f2{bottom:560.055000px;}
.y20c{bottom:560.235000px;}
.y2d{bottom:563.655000px;}
.y125{bottom:565.275000px;}
.y181{bottom:567.435000px;}
.y100{bottom:570.495000px;}
.y1cf{bottom:572.835000px;}
.y2c{bottom:577.335000px;}
.ya2{bottom:579.675000px;}
.y124{bottom:582.555000px;}
.y180{bottom:584.715000px;}
.y70{bottom:586.155000px;}
.yff{bottom:587.775000px;}
.y1ce{bottom:589.935000px;}
.y2b{bottom:591.195000px;}
.y1f1{bottom:594.435000px;}
.y123{bottom:599.835000px;}
.y17f{bottom:601.995000px;}
.y6f{bottom:603.435000px;}
.y2a{bottom:605.055000px;}
.y1cd{bottom:607.215000px;}
.y1f0{bottom:611.715000px;}
.y122{bottom:616.935000px;}
.y29{bottom:618.735000px;}
.y17e{bottom:619.275000px;}
.y6e{bottom:619.815000px;}
.yfe{bottom:622.335000px;}
.y1cc{bottom:624.495000px;}
.y1ef{bottom:628.995000px;}
.y28{bottom:632.595000px;}
.y6d{bottom:632.775000px;}
.y121{bottom:634.215000px;}
.y17d{bottom:636.555000px;}
.y20b{bottom:637.815000px;}
.yfd{bottom:639.435000px;}
.y1cb{bottom:641.775000px;}
.yc7{bottom:641.955000px;}
.y1ee{bottom:646.275000px;}
.y27{bottom:646.455000px;}
.y6c{bottom:650.055000px;}
.y120{bottom:651.495000px;}
.y20a{bottom:653.295000px;}
.y17c{bottom:653.655000px;}
.yfc{bottom:656.715000px;}
.y97{bottom:657.975000px;}
.y1ca{bottom:659.055000px;}
.y26{bottom:660.135000px;}
.y1ed{bottom:663.555000px;}
.y6b{bottom:667.365000px;}
.y11f{bottom:668.805000px;}
.y17b{bottom:670.965000px;}
.y25{bottom:674.025000px;}
.y1c9{bottom:676.365000px;}
.y1ec{bottom:680.865000px;}
.y6a{bottom:684.465000px;}
.y11e{bottom:686.085000px;}
.y24{bottom:687.705000px;}
.y17a{bottom:688.245000px;}
.yfb{bottom:691.305000px;}
.y1c8{bottom:693.465000px;}
.y1eb{bottom:697.965000px;}
.y23{bottom:701.565000px;}
.y69{bottom:701.745000px;}
.y11d{bottom:703.185000px;}
.y165{bottom:703.365000px;}
.y179{bottom:705.525000px;}
.yfa{bottom:706.065000px;}
.y1c7{bottom:710.745000px;}
.y1ea{bottom:715.245000px;}
.y22{bottom:715.425000px;}
.y11c{bottom:717.225000px;}
.y141{bottom:717.480000px;}
.y68{bottom:719.025000px;}
.y164{bottom:720.465000px;}
.yf9{bottom:722.265000px;}
.y178{bottom:722.805000px;}
.y1c6{bottom:728.025000px;}
.y21{bottom:729.105000px;}
.y209{bottom:731.085000px;}
.y1e9{bottom:732.525000px;}
.yc6{bottom:735.945000px;}
.y67{bottom:736.305000px;}
.y163{bottom:737.745000px;}
.y177{bottom:740.085000px;}
.y20{bottom:742.965000px;}
.y1c5{bottom:745.305000px;}
.y1e8{bottom:749.805000px;}
.y96{bottom:751.965000px;}
.y66{bottom:753.585000px;}
.yf8{bottom:754.125000px;}
.y162{bottom:755.025000px;}
.y176{bottom:757.185000px;}
.y1f{bottom:760.065000px;}
.y1c4{bottom:762.585000px;}
.y1e7{bottom:767.085000px;}
.y65{bottom:770.865000px;}
.y161{bottom:772.305000px;}
.y175{bottom:774.465000px;}
.y1e{bottom:777.345000px;}
.y1c3{bottom:779.865000px;}
.y1e6{bottom:784.365000px;}
.yf7{bottom:785.985000px;}
.y160{bottom:787.065000px;}
.y64{bottom:787.965000px;}
.y174{bottom:790.665000px;}
.y1d{bottom:794.625000px;}
.y1c2{bottom:796.965000px;}
.yc5{bottom:801.465000px;}
.yf6{bottom:802.185000px;}
.y63{bottom:805.245000px;}
.y1c{bottom:811.905000px;}
.y1c1{bottom:814.245000px;}
.yf5{bottom:818.385000px;}
.y15f{bottom:818.745000px;}
.y173{bottom:819.285000px;}
.y62{bottom:822.525000px;}
.y1b{bottom:829.185000px;}
.y94{bottom:830.265000px;}
.y1c0{bottom:831.525000px;}
.y172{bottom:833.505000px;}
.y19d{bottom:833.580000px;}
.yee{bottom:834.765000px;}
.yc4{bottom:836.025000px;}
.y61{bottom:839.805000px;}
.y1a{bottom:846.285000px;}
.y1bf{bottom:848.805000px;}
.y15e{bottom:850.605000px;}
.yc3{bottom:853.305000px;}
.yf0{bottom:856.185000px;}
.y60{bottom:857.085000px;}
.y19{bottom:863.565000px;}
.y1be{bottom:866.085000px;}
.yc2{bottom:870.585000px;}
.y5f{bottom:874.185000px;}
.y18{bottom:880.845000px;}
.y15d{bottom:882.465000px;}
.y1bd{bottom:883.185000px;}
.yc1{bottom:887.685000px;}
.y5e{bottom:891.465000px;}
.y17{bottom:898.125000px;}
.y15c{bottom:898.665000px;}
.y1bc{bottom:900.465000px;}
.yc0{bottom:904.965000px;}
.y5d{bottom:908.790000px;}
.y15b{bottom:915.090000px;}
.y16{bottom:915.450000px;}
.y1bb{bottom:917.790000px;}
.ybf{bottom:922.290000px;}
.y93{bottom:924.270000px;}
.y5c{bottom:926.070000px;}
.y15{bottom:932.730000px;}
.y1ba{bottom:935.070000px;}
.ybe{bottom:939.570000px;}
.y5b{bottom:943.350000px;}
.y15a{bottom:946.770000px;}
.y1b9{bottom:952.350000px;}
.ybd{bottom:956.850000px;}
.y5a{bottom:960.630000px;}
.y159{bottom:963.150000px;}
.y14{bottom:968.370000px;}
.y1b8{bottom:969.630000px;}
.ybc{bottom:974.130000px;}
.y59{bottom:977.730000px;}
.y158{bottom:979.350000px;}
.y1b7{bottom:986.730000px;}
.ybb{bottom:991.230000px;}
.y13{bottom:991.950000px;}
.y157{bottom:995.550000px;}
.y58{bottom:999.510000px;}
.y8c{bottom:1002.570000px;}
.y1b6{bottom:1004.010000px;}
.yba{bottom:1008.510000px;}
.y156{bottom:1011.930000px;}
.y12{bottom:1012.650000px;}
.y57{bottom:1021.290000px;}
.yb9{bottom:1025.790000px;}
.y155{bottom:1028.130000px;}
.y11{bottom:1033.350000px;}
.y56{bottom:1038.570000px;}
.yb8{bottom:1043.070000px;}
.y10{bottom:1054.050000px;}
.y55{bottom:1055.850000px;}
.y154{bottom:1059.990000px;}
.yb7{bottom:1060.350000px;}
.y54{bottom:1073.130000px;}
.yb6{bottom:1077.630000px;}
.y53{bottom:1090.230000px;}
.y150{bottom:1091.850000px;}
.yf{bottom:1094.730000px;}
.y8b{bottom:1096.530000px;}
.y52{bottom:1107.510000px;}
.ye{bottom:1112.010000px;}
.y51{bottom:1124.790000px;}
.yd{bottom:1129.290000px;}
.y50{bottom:1142.070000px;}
.yc{bottom:1146.570000px;}
.yb{bottom:1163.880000px;}
.y6{bottom:1188.000000px;}
.y1{bottom:1200.060000px;}
.h41{height:5.653125px;}
.h19{height:15.480000px;}
.h34{height:15.516000px;}
.h2c{height:15.660000px;}
.h8{height:17.903320px;}
.h2{height:20.340000px;}
.h2b{height:20.700000px;}
.h9{height:21.420000px;}
.h4{height:27.210938px;}
.h2a{height:29.880000px;}
.h5{height:30.209062px;}
.h1e{height:30.960000px;}
.h2d{height:31.140000px;}
.h1d{height:31.176000px;}
.h6{height:32.835938px;}
.h3{height:33.011719px;}
.h3f{height:35.100000px;}
.h35{height:35.332031px;}
.h16{height:38.089687px;}
.h18{height:40.985156px;}
.h11{height:42.516211px;}
.h3b{height:45.689062px;}
.h1f{height:46.440000px;}
.h25{height:46.620000px;}
.h10{height:47.321367px;}
.h7{height:47.344922px;}
.h1c{height:47.592773px;}
.h40{height:48.616875px;}
.ha{height:50.068125px;}
.h37{height:50.878125px;}
.h39{height:51.019453px;}
.h29{height:51.300000px;}
.h12{height:52.669336px;}
.h33{height:52.920000px;}
.h3c{height:52.971680px;}
.h1a{height:52.998047px;}
.h32{height:53.139375px;}
.h3e{height:53.709961px;}
.hf{height:58.621992px;}
.hc{height:58.651172px;}
.h2f{height:59.439023px;}
.h13{height:60.226875px;}
.h17{height:60.741562px;}
.h30{height:61.423863px;}
.h1b{height:62.100000px;}
.hb{height:65.884219px;}
.h14{height:70.920000px;}
.hd{height:72.562500px;}
.h21{height:77.580000px;}
.h23{height:77.616000px;}
.h24{height:77.760000px;}
.h3d{height:77.796000px;}
.h3a{height:81.718125px;}
.he{height:84.898125px;}
.h20{height:93.240000px;}
.h22{height:93.276000px;}
.h27{height:139.716000px;}
.h38{height:148.378125px;}
.h28{height:155.190000px;}
.h26{height:170.640000px;}
.h31{height:184.320000px;}
.h2e{height:215.820000px;}
.h15{height:264.990234px;}
.h36{height:344.340000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.240000px;}
.w20{width:61.380000px;}
.w7{width:61.920000px;}
.w22{width:63.000000px;}
.w21{width:63.036000px;}
.w19{width:74.880000px;}
.w1a{width:74.916000px;}
.w1b{width:75.060000px;}
.w1f{width:75.240000px;}
.w26{width:84.960000px;}
.w12{width:99.936000px;}
.we{width:116.100000px;}
.wf{width:116.136000px;}
.w11{width:120.960000px;}
.w23{width:137.016000px;}
.w14{width:141.480000px;}
.w15{width:153.930000px;}
.w9{width:157.530000px;}
.w13{width:159.690000px;}
.w18{width:160.770000px;}
.w10{width:163.830000px;}
.wc{width:179.490000px;}
.w1e{width:211.530000px;}
.w16{width:214.590000px;}
.w2{width:228.990000px;}
.wa{width:253.110000px;}
.w8{width:269.670000px;}
.w17{width:302.070000px;}
.w4{width:434.415000px;}
.wd{width:498.675000px;}
.w1c{width:540.000000px;}
.w1d{width:568.080000px;}
.w27{width:595.545000px;}
.w24{width:669.240000px;}
.wb{width:680.325000px;}
.w25{width:682.485000px;}
.w6{width:688.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x78{left:1.980000px;}
.x7b{left:5.220000px;}
.x2{left:8.100000px;}
.x4{left:9.360000px;}
.x66{left:10.440000px;}
.x34{left:12.240000px;}
.x32{left:14.220000px;}
.x27{left:16.560000px;}
.x47{left:17.895000px;}
.x3f{left:19.620000px;}
.x2c{left:21.240000px;}
.x3d{left:23.040000px;}
.x3c{left:24.150000px;}
.x29{left:25.740000px;}
.x25{left:29.700000px;}
.x68{left:30.780000px;}
.x20{left:31.860000px;}
.x1a{left:35.640000px;}
.x2f{left:37.800000px;}
.x6b{left:45.750000px;}
.x46{left:47.415000px;}
.x1c{left:50.040000px;}
.x2d{left:54.225000px;}
.x67{left:56.745000px;}
.x49{left:59.190000px;}
.x37{left:60.480000px;}
.x40{left:62.685000px;}
.x4b{left:64.410000px;}
.x3e{left:65.925000px;}
.x54{left:67.470000px;}
.x41{left:69.345000px;}
.x7a{left:74.334000px;}
.x4a{left:76.395000px;}
.x6e{left:79.710000px;}
.x60{left:86.394000px;}
.x35{left:88.554000px;}
.x56{left:90.210000px;}
.x53{left:92.010000px;}
.x57{left:95.070000px;}
.x18{left:97.236000px;}
.x48{left:100.830000px;}
.x1{left:104.256000px;}
.x9{left:106.415987px;}
.xd{left:110.195987px;}
.x6a{left:111.780000px;}
.x72{left:113.070000px;}
.x79{left:114.516000px;}
.x6{left:120.420000px;}
.x17{left:127.655987px;}
.xe{left:129.455987px;}
.x76{left:133.235987px;}
.x6c{left:134.715000px;}
.xb{left:142.775987px;}
.x23{left:146.555987px;}
.x55{left:148.500000px;}
.x6f{left:150.870000px;}
.x58{left:153.510000px;}
.x16{left:159.149987px;}
.x15{left:162.929987px;}
.x71{left:172.830000px;}
.x45{left:176.400000px;}
.x73{left:184.245000px;}
.x5a{left:195.330000px;}
.x5b{left:198.210000px;}
.x5c{left:199.875000px;}
.x4e{left:204.375000px;}
.x4d{left:206.925000px;}
.x50{left:209.625000px;}
.x5f{left:212.249987px;}
.x4f{left:221.610000px;}
.x26{left:223.950000px;}
.x59{left:227.085000px;}
.x1e{left:229.349987px;}
.x2e{left:239.429987px;}
.x22{left:244.830000px;}
.x4c{left:246.060000px;}
.x7{left:262.650000px;}
.x43{left:270.749987px;}
.x44{left:286.094987px;}
.x21{left:287.355000px;}
.x70{left:293.220000px;}
.x1f{left:297.074987px;}
.x61{left:319.575000px;}
.x36{left:322.455000px;}
.x24{left:327.314987px;}
.x30{left:329.475000px;}
.x77{left:330.879000px;}
.x1d{left:332.139000px;}
.x3{left:333.255000px;}
.x5e{left:334.839000px;}
.xa{left:336.279000px;}
.x28{left:340.815000px;}
.x6d{left:348.225000px;}
.x5{left:354.495000px;}
.x19{left:376.095000px;}
.x5d{left:384.375000px;}
.x62{left:395.535000px;}
.x39{left:398.235000px;}
.x51{left:415.875000px;}
.x75{left:418.574987px;}
.xc{left:446.474987px;}
.xf{left:448.814987px;}
.x2a{left:457.635000px;}
.x74{left:468.255000px;}
.x3a{left:473.835000px;}
.x31{left:489.885000px;}
.x63{left:521.565000px;}
.x1b{left:533.625000px;}
.x3b{left:549.465000px;}
.x13{left:580.424987px;}
.x64{left:585.285000px;}
.x10{left:596.984987px;}
.x11{left:612.464987px;}
.x2b{left:622.185000px;}
.x38{left:625.245000px;}
.x33{left:632.085000px;}
.x12{left:643.784987px;}
.x65{left:649.005000px;}
.x14{left:661.244987px;}
.x42{left:716.549987px;}
.x52{left:730.589987px;}
.x69{left:781.169987px;}
.x8{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-65.920000pt;}
.v3{vertical-align:-61.440000pt;}
.va{vertical-align:-55.680000pt;}
.vb{vertical-align:-47.093333pt;}
.vc{vertical-align:-40.106667pt;}
.ve{vertical-align:-38.826667pt;}
.v7{vertical-align:-32.906667pt;}
.v4{vertical-align:-31.253333pt;}
.vd{vertical-align:-16.640000pt;}
.v9{vertical-align:-9.973333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:27.413333pt;}
.v5{vertical-align:55.573333pt;}
.v6{vertical-align:86.666667pt;}
.ls10{letter-spacing:-1.477333pt;}
.ls1b{letter-spacing:-0.960000pt;}
.ls32{letter-spacing:-0.757333pt;}
.ls1f{letter-spacing:-0.656000pt;}
.ls48{letter-spacing:-0.624000pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls49{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.274133pt;}
.ls19{letter-spacing:-0.259200pt;}
.ls3c{letter-spacing:-0.230933pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.080000pt;}
.ls2f{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls1e{letter-spacing:-0.016000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls44{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls3f{letter-spacing:0.096000pt;}
.ls3e{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.116480pt;}
.ls3{letter-spacing:0.160000pt;}
.ls45{letter-spacing:0.176000pt;}
.ls13{letter-spacing:0.186880pt;}
.ls25{letter-spacing:0.230933pt;}
.ls2d{letter-spacing:0.231040pt;}
.ls4b{letter-spacing:0.239467pt;}
.ls20{letter-spacing:0.240000pt;}
.ls3a{letter-spacing:0.265600pt;}
.lse{letter-spacing:0.281600pt;}
.ls42{letter-spacing:0.282667pt;}
.ls1c{letter-spacing:0.288000pt;}
.ls2e{letter-spacing:0.294933pt;}
.ls4{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls47{letter-spacing:0.416000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls46{letter-spacing:0.480000pt;}
.ls21{letter-spacing:0.736000pt;}
.lsb{letter-spacing:0.800000pt;}
.ls35{letter-spacing:1.440000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls14{letter-spacing:4.000000pt;}
.ls5{letter-spacing:5.280000pt;}
.ls26{letter-spacing:5.920000pt;}
.ls6{letter-spacing:6.560000pt;}
.ls29{letter-spacing:7.200000pt;}
.ls2a{letter-spacing:7.632640pt;}
.ls28{letter-spacing:7.840000pt;}
.ls27{letter-spacing:9.760000pt;}
.ls3b{letter-spacing:11.040000pt;}
.ls18{letter-spacing:12.320000pt;}
.ls38{letter-spacing:13.392640pt;}
.ls15{letter-spacing:13.600000pt;}
.ls34{letter-spacing:14.240000pt;}
.ls31{letter-spacing:15.520000pt;}
.ls33{letter-spacing:16.320000pt;}
.lsc{letter-spacing:16.800000pt;}
.ls8{letter-spacing:17.440000pt;}
.lsa{letter-spacing:18.720000pt;}
.ls9{letter-spacing:19.360000pt;}
.ls7{letter-spacing:20.000000pt;}
.ls2{letter-spacing:20.320000pt;}
.ls3d{letter-spacing:20.640000pt;}
.ls39{letter-spacing:33.440000pt;}
.ls40{letter-spacing:34.720000pt;}
.ls30{letter-spacing:39.611307pt;}
.ls22{letter-spacing:40.480000pt;}
.ls37{letter-spacing:45.600000pt;}
.ls36{letter-spacing:46.240000pt;}
.ls43{letter-spacing:59.040000pt;}
.ls41{letter-spacing:59.680000pt;}
.ls1{letter-spacing:107.040000pt;}
.ls23{letter-spacing:352.778667pt;}
.ws7{word-spacing:-60.000000pt;}
.ws16{word-spacing:-53.120000pt;}
.ws29{word-spacing:-48.416000pt;}
.ws28{word-spacing:-48.240000pt;}
.ws27{word-spacing:-48.000000pt;}
.ws0{word-spacing:-14.471680pt;}
.ws1b{word-spacing:-13.915947pt;}
.ws3{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws26{word-spacing:-13.049067pt;}
.wsa{word-spacing:-13.020800pt;}
.ws14{word-spacing:-12.384000pt;}
.wsd{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.288000pt;}
.ws10{word-spacing:-12.240000pt;}
.ws2d{word-spacing:-12.160000pt;}
.ws2a{word-spacing:-12.112000pt;}
.ws19{word-spacing:-12.032000pt;}
.wsc{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws2c{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.520000pt;}
.ws2b{word-spacing:-11.376000pt;}
.wsf{word-spacing:-11.344000pt;}
.ws2f{word-spacing:-11.040000pt;}
.ws2e{word-spacing:-10.959467pt;}
.ws4{word-spacing:-10.720000pt;}
.ws5{word-spacing:-9.242667pt;}
.ws9{word-spacing:-8.945920pt;}
.ws8{word-spacing:0.000000pt;}
.ws18{word-spacing:84.384000pt;}
.ws17{word-spacing:95.098667pt;}
.ws1f{word-spacing:103.253333pt;}
.ws1e{word-spacing:103.306667pt;}
.ws13{word-spacing:106.517333pt;}
.ws22{word-spacing:110.346667pt;}
.ws12{word-spacing:117.616000pt;}
.ws24{word-spacing:121.120000pt;}
.ws20{word-spacing:126.346667pt;}
.ws25{word-spacing:142.293333pt;}
.ws21{word-spacing:142.346667pt;}
.ws1d{word-spacing:148.787627pt;}
.ws23{word-spacing:152.960000pt;}
.ws1a{word-spacing:534.464000pt;}
._e{margin-left:-3.564160pt;}
._d{margin-left:-2.529920pt;}
._0{margin-left:-1.148160pt;}
._1{width:0.969600pt;}
._9{width:1.943680pt;}
._8{width:2.863360pt;}
._6{width:4.097280pt;}
._2{width:5.102720pt;}
._13{width:6.008960pt;}
._3{width:6.906667pt;}
._12{width:7.886720pt;}
._a{width:8.846933pt;}
._17{width:10.570880pt;}
._7{width:11.664000pt;}
._5{width:13.326080pt;}
._4{width:14.269440pt;}
._10{width:15.413120pt;}
._f{width:16.883840pt;}
._11{width:18.751360pt;}
._b{width:19.937280pt;}
._c{width:20.978560pt;}
._15{width:22.182400pt;}
._14{width:23.638400pt;}
._21{width:24.753920pt;}
._1c{width:25.816320pt;}
._1a{width:27.091200pt;}
._19{width:28.259840pt;}
._1b{width:29.397973pt;}
._1e{width:30.968960pt;}
._16{width:32.243840pt;}
._18{width:34.156160pt;}
._25{width:35.088000pt;}
._24{width:40.462080pt;}
._20{width:42.230400pt;}
._23{width:45.688320pt;}
._22{width:46.904320pt;}
._26{width:59.376000pt;}
._1f{width:84.298667pt;}
._1d{width:106.592000pt;}
.fse{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs1{font-size:29.440000pt;}
.fs0{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsc{font-size:46.080000pt;}
.fsd{font-size:46.208000pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs5{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs8{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.y226{bottom:2.080000pt;}
.y5{bottom:2.240000pt;}
.y72{bottom:2.560000pt;}
.yaf{bottom:2.720000pt;}
.y4f{bottom:3.840000pt;}
.yf4{bottom:4.800000pt;}
.y153{bottom:5.440000pt;}
.y9{bottom:5.600000pt;}
.y4e{bottom:5.760000pt;}
.y2{bottom:6.240000pt;}
.yf1{bottom:8.960000pt;}
.y7f{bottom:9.440000pt;}
.ye9{bottom:9.466667pt;}
.y90{bottom:9.600000pt;}
.y9e{bottom:9.626667pt;}
.y4{bottom:10.560000pt;}
.y3{bottom:10.720000pt;}
.yf3{bottom:11.520000pt;}
.y10f{bottom:13.440000pt;}
.y227{bottom:14.560000pt;}
.y4d{bottom:15.360000pt;}
.y75{bottom:16.320000pt;}
.ye5{bottom:16.346667pt;}
.ya9{bottom:16.360000pt;}
.y79{bottom:16.480000pt;}
.ya1{bottom:16.506667pt;}
.yef{bottom:18.400000pt;}
.y151{bottom:19.200000pt;}
.y7e{bottom:23.200000pt;}
.ye8{bottom:23.226667pt;}
.ya6{bottom:23.240000pt;}
.y8f{bottom:23.360000pt;}
.y9c{bottom:23.386667pt;}
.yf2{bottom:25.440000pt;}
.y19e{bottom:26.813333pt;}
.ya{bottom:29.280000pt;}
.y7c{bottom:30.080000pt;}
.ye4{bottom:30.106667pt;}
.y74{bottom:30.240000pt;}
.y99{bottom:30.266667pt;}
.ya8{bottom:30.280000pt;}
.y152{bottom:32.960000pt;}
.y14f{bottom:36.346667pt;}
.y8e{bottom:37.120000pt;}
.y9b{bottom:37.146667pt;}
.ya5{bottom:37.160000pt;}
.y142{bottom:38.106667pt;}
.y147{bottom:39.546667pt;}
.y110{bottom:40.733333pt;}
.y115{bottom:42.626667pt;}
.y8{bottom:43.200000pt;}
.y76{bottom:44.000000pt;}
.y98{bottom:44.026667pt;}
.ya7{bottom:44.040000pt;}
.y14e{bottom:50.106667pt;}
.y8d{bottom:50.880000pt;}
.y9a{bottom:50.906667pt;}
.yab{bottom:50.920000pt;}
.yad{bottom:51.040000pt;}
.yb2{bottom:51.066667pt;}
.y91{bottom:57.760000pt;}
.ya0{bottom:57.786667pt;}
.yaa{bottom:57.800000pt;}
.yae{bottom:57.920000pt;}
.yb3{bottom:57.946667pt;}
.y143{bottom:59.813333pt;}
.y148{bottom:61.253333pt;}
.y1a8{bottom:62.493333pt;}
.yd1{bottom:64.640000pt;}
.yde{bottom:64.666667pt;}
.y7{bottom:64.800000pt;}
.y9d{bottom:64.826667pt;}
.y111{bottom:67.746667pt;}
.y19f{bottom:68.320000pt;}
.y116{bottom:69.626667pt;}
.y14d{bottom:70.653333pt;}
.yc9{bottom:71.520000pt;}
.ydf{bottom:71.546667pt;}
.y92{bottom:71.680000pt;}
.y9f{bottom:71.706667pt;}
.y95{bottom:71.720000pt;}
.y1ad{bottom:72.413333pt;}
.yd0{bottom:78.400000pt;}
.ydd{bottom:78.426667pt;}
.yda{bottom:78.560000pt;}
.y8a{bottom:78.720000pt;}
.yed{bottom:80.160000pt;}
.y4b{bottom:80.640000pt;}
.y11b{bottom:80.986667pt;}
.y144{bottom:81.466667pt;}
.y228{bottom:82.080000pt;}
.y149{bottom:82.946667pt;}
.y225{bottom:83.360000pt;}
.y14c{bottom:84.413333pt;}
.yca{bottom:85.280000pt;}
.ye3{bottom:85.306667pt;}
.yd8{bottom:85.480000pt;}
.y1aa{bottom:85.626667pt;}
.y140{bottom:86.560000pt;}
.y171{bottom:88.480000pt;}
.y19c{bottom:90.400000pt;}
.y1b5{bottom:91.680000pt;}
.ycf{bottom:92.160000pt;}
.ydc{bottom:92.346667pt;}
.yd9{bottom:92.360000pt;}
.y1ab{bottom:93.693333pt;}
.y208{bottom:93.760000pt;}
.y89{bottom:94.080000pt;}
.y112{bottom:94.746667pt;}
.yec{bottom:95.520000pt;}
.y117{bottom:96.613333pt;}
.ycb{bottom:99.200000pt;}
.ye2{bottom:99.226667pt;}
.yd7{bottom:99.240000pt;}
.y4a{bottom:100.000000pt;}
.y10d{bottom:100.480000pt;}
.y1ae{bottom:101.573333pt;}
.y13f{bottom:101.760000pt;}
.y11a{bottom:102.146667pt;}
.y145{bottom:103.173333pt;}
.y170{bottom:103.680000pt;}
.y14a{bottom:104.640000pt;}
.y1b4{bottom:104.960000pt;}
.y1e5{bottom:105.120000pt;}
.y19b{bottom:105.760000pt;}
.yce{bottom:106.080000pt;}
.ye7{bottom:106.106667pt;}
.y207{bottom:109.120000pt;}
.y88{bottom:109.440000pt;}
.y1a0{bottom:109.826667pt;}
.y1a9{bottom:110.053333pt;}
.yb5{bottom:110.880000pt;}
.yd4{bottom:112.960000pt;}
.ye1{bottom:112.986667pt;}
.yd6{bottom:113.000000pt;}
.y49{bottom:115.360000pt;}
.y10c{bottom:115.680000pt;}
.y13e{bottom:117.120000pt;}
.y224{bottom:117.440000pt;}
.y16f{bottom:119.040000pt;}
.ycd{bottom:119.840000pt;}
.ye6{bottom:119.866667pt;}
.y1e4{bottom:120.480000pt;}
.y19a{bottom:121.120000pt;}
.y113{bottom:121.760000pt;}
.y118{bottom:123.613333pt;}
.y206{bottom:124.480000pt;}
.y87{bottom:124.800000pt;}
.y146{bottom:124.866667pt;}
.y1b3{bottom:125.120000pt;}
.yb4{bottom:126.080000pt;}
.yeb{bottom:126.240000pt;}
.y14b{bottom:126.306667pt;}
.yd3{bottom:126.720000pt;}
.ye0{bottom:126.746667pt;}
.y1ac{bottom:128.893333pt;}
.y48{bottom:130.720000pt;}
.y10b{bottom:131.040000pt;}
.y13d{bottom:132.480000pt;}
.y223{bottom:132.800000pt;}
.ycc{bottom:133.600000pt;}
.y16e{bottom:134.400000pt;}
.y1e3{bottom:135.680000pt;}
.y199{bottom:136.320000pt;}
.y1b2{bottom:138.400000pt;}
.yb1{bottom:139.200000pt;}
.y205{bottom:139.680000pt;}
.y86{bottom:140.160000pt;}
.yd2{bottom:140.480000pt;}
.yea{bottom:141.600000pt;}
.y47{bottom:146.080000pt;}
.y10a{bottom:146.400000pt;}
.y13c{bottom:147.840000pt;}
.y222{bottom:148.160000pt;}
.y114{bottom:148.733333pt;}
.y16d{bottom:149.760000pt;}
.y119{bottom:150.626667pt;}
.y1e2{bottom:151.040000pt;}
.y1a1{bottom:151.360000pt;}
.y198{bottom:151.680000pt;}
.ydb{bottom:154.720000pt;}
.y204{bottom:155.040000pt;}
.y85{bottom:155.360000pt;}
.y1b1{bottom:158.560000pt;}
.y46{bottom:161.280000pt;}
.y109{bottom:161.760000pt;}
.y13b{bottom:163.226667pt;}
.y221{bottom:163.546667pt;}
.y16c{bottom:165.146667pt;}
.y1e1{bottom:166.426667pt;}
.y197{bottom:167.066667pt;}
.y203{bottom:170.426667pt;}
.y84{bottom:170.746667pt;}
.y1b0{bottom:171.840000pt;}
.y108{bottom:177.146667pt;}
.y13a{bottom:178.586667pt;}
.y220{bottom:178.906667pt;}
.y16b{bottom:180.506667pt;}
.y45{bottom:180.666667pt;}
.y1e0{bottom:181.786667pt;}
.y196{bottom:182.426667pt;}
.y202{bottom:185.786667pt;}
.y83{bottom:186.106667pt;}
.y107{bottom:189.466667pt;}
.y10e{bottom:189.760000pt;}
.y1a2{bottom:192.866667pt;}
.y139{bottom:193.786667pt;}
.y21f{bottom:194.106667pt;}
.y1a6{bottom:194.333333pt;}
.y16a{bottom:195.706667pt;}
.y1df{bottom:197.146667pt;}
.y195{bottom:197.786667pt;}
.y44{bottom:200.026667pt;}
.y201{bottom:201.146667pt;}
.y82{bottom:201.466667pt;}
.y1af{bottom:205.280000pt;}
.y138{bottom:209.146667pt;}
.y21e{bottom:209.466667pt;}
.y169{bottom:211.066667pt;}
.y1de{bottom:212.506667pt;}
.y194{bottom:213.146667pt;}
.y43{bottom:215.386667pt;}
.y81{bottom:216.026667pt;}
.y200{bottom:216.506667pt;}
.yb0{bottom:222.746667pt;}
.y1a5{bottom:224.640000pt;}
.y21d{bottom:224.826667pt;}
.y137{bottom:225.466667pt;}
.y168{bottom:226.426667pt;}
.y80{bottom:227.546667pt;}
.y1dd{bottom:227.706667pt;}
.y4c{bottom:228.026667pt;}
.y193{bottom:228.346667pt;}
.y42{bottom:230.746667pt;}
.y1ff{bottom:231.706667pt;}
.y1a3{bottom:234.373333pt;}
.y21c{bottom:240.186667pt;}
.y7d{bottom:240.666667pt;}
.y136{bottom:240.826667pt;}
.y167{bottom:241.786667pt;}
.y1dc{bottom:243.066667pt;}
.y192{bottom:243.706667pt;}
.y41{bottom:246.106667pt;}
.y1fe{bottom:247.066667pt;}
.y21b{bottom:255.546667pt;}
.y135{bottom:257.146667pt;}
.y1db{bottom:258.426667pt;}
.y191{bottom:259.066667pt;}
.y40{bottom:261.306667pt;}
.y1fd{bottom:262.426667pt;}
.y1a7{bottom:262.533333pt;}
.y21a{bottom:270.906667pt;}
.y134{bottom:272.346667pt;}
.y166{bottom:272.506667pt;}
.y190{bottom:274.426667pt;}
.y1a4{bottom:275.906667pt;}
.y3f{bottom:276.666667pt;}
.y1fc{bottom:277.786667pt;}
.y7b{bottom:282.746667pt;}
.y219{bottom:286.106667pt;}
.y133{bottom:287.706667pt;}
.y18f{bottom:289.786667pt;}
.y3e{bottom:291.386667pt;}
.yac{bottom:292.346667pt;}
.y1fb{bottom:293.146667pt;}
.yd5{bottom:293.306667pt;}
.y218{bottom:301.466667pt;}
.y132{bottom:303.066667pt;}
.y3d{bottom:304.666667pt;}
.y18e{bottom:305.146667pt;}
.y1da{bottom:307.066667pt;}
.y1fa{bottom:308.506667pt;}
.y217{bottom:316.826667pt;}
.y3c{bottom:316.986667pt;}
.y131{bottom:318.426667pt;}
.y18d{bottom:320.346667pt;}
.y1f9{bottom:323.706667pt;}
.y7a{bottom:324.826667pt;}
.y3b{bottom:329.146667pt;}
.y216{bottom:332.186667pt;}
.y130{bottom:333.786667pt;}
.y18c{bottom:335.706667pt;}
.y1f8{bottom:339.066667pt;}
.y3a{bottom:341.466667pt;}
.y215{bottom:347.546667pt;}
.y12f{bottom:349.146667pt;}
.y18b{bottom:351.066667pt;}
.y78{bottom:352.986667pt;}
.y39{bottom:353.786667pt;}
.y1f7{bottom:354.426667pt;}
.y1d9{bottom:355.706667pt;}
.ya4{bottom:362.106667pt;}
.y214{bottom:362.906667pt;}
.y12e{bottom:364.346667pt;}
.y38{bottom:365.946667pt;}
.y18a{bottom:366.426667pt;}
.y1f6{bottom:369.786667pt;}
.y1d8{bottom:371.066667pt;}
.y213{bottom:378.146667pt;}
.y37{bottom:378.306667pt;}
.y12d{bottom:379.746667pt;}
.y77{bottom:381.346667pt;}
.y189{bottom:381.826667pt;}
.y106{bottom:384.386667pt;}
.y1f5{bottom:385.186667pt;}
.y1d7{bottom:386.466667pt;}
.y36{bottom:390.626667pt;}
.y212{bottom:393.506667pt;}
.y12c{bottom:395.106667pt;}
.y188{bottom:397.186667pt;}
.y105{bottom:399.746667pt;}
.y1d6{bottom:401.826667pt;}
.y35{bottom:402.786667pt;}
.y211{bottom:408.866667pt;}
.y12b{bottom:410.466667pt;}
.y187{bottom:412.386667pt;}
.y34{bottom:415.106667pt;}
.y1d5{bottom:417.186667pt;}
.yc8{bottom:418.306667pt;}
.y210{bottom:424.226667pt;}
.y12a{bottom:425.826667pt;}
.y33{bottom:427.426667pt;}
.y186{bottom:427.746667pt;}
.y104{bottom:430.466667pt;}
.ya3{bottom:431.746667pt;}
.y1d4{bottom:432.386667pt;}
.y1f4{bottom:433.826667pt;}
.y73{bottom:437.186667pt;}
.y32{bottom:439.586667pt;}
.y129{bottom:441.186667pt;}
.y185{bottom:443.106667pt;}
.y103{bottom:445.826667pt;}
.y1d3{bottom:447.746667pt;}
.y31{bottom:451.906667pt;}
.y20f{bottom:454.786667pt;}
.y128{bottom:456.386667pt;}
.y184{bottom:458.466667pt;}
.y102{bottom:461.186667pt;}
.y1d2{bottom:463.106667pt;}
.y30{bottom:464.226667pt;}
.y20e{bottom:470.146667pt;}
.y127{bottom:471.746667pt;}
.y183{bottom:473.826667pt;}
.y2f{bottom:476.386667pt;}
.y1d1{bottom:478.466667pt;}
.y1f3{bottom:482.466667pt;}
.y20d{bottom:485.506667pt;}
.y126{bottom:487.106667pt;}
.y2e{bottom:488.706667pt;}
.y182{bottom:489.026667pt;}
.y101{bottom:491.746667pt;}
.y71{bottom:493.026667pt;}
.y1d0{bottom:493.826667pt;}
.y1f2{bottom:497.826667pt;}
.y20c{bottom:497.986667pt;}
.y2d{bottom:501.026667pt;}
.y125{bottom:502.466667pt;}
.y181{bottom:504.386667pt;}
.y100{bottom:507.106667pt;}
.y1cf{bottom:509.186667pt;}
.y2c{bottom:513.186667pt;}
.ya2{bottom:515.266667pt;}
.y124{bottom:517.826667pt;}
.y180{bottom:519.746667pt;}
.y70{bottom:521.026667pt;}
.yff{bottom:522.466667pt;}
.y1ce{bottom:524.386667pt;}
.y2b{bottom:525.506667pt;}
.y1f1{bottom:528.386667pt;}
.y123{bottom:533.186667pt;}
.y17f{bottom:535.106667pt;}
.y6f{bottom:536.386667pt;}
.y2a{bottom:537.826667pt;}
.y1cd{bottom:539.746667pt;}
.y1f0{bottom:543.746667pt;}
.y122{bottom:548.386667pt;}
.y29{bottom:549.986667pt;}
.y17e{bottom:550.466667pt;}
.y6e{bottom:550.946667pt;}
.yfe{bottom:553.186667pt;}
.y1cc{bottom:555.106667pt;}
.y1ef{bottom:559.106667pt;}
.y28{bottom:562.306667pt;}
.y6d{bottom:562.466667pt;}
.y121{bottom:563.746667pt;}
.y17d{bottom:565.826667pt;}
.y20b{bottom:566.946667pt;}
.yfd{bottom:568.386667pt;}
.y1cb{bottom:570.466667pt;}
.yc7{bottom:570.626667pt;}
.y1ee{bottom:574.466667pt;}
.y27{bottom:574.626667pt;}
.y6c{bottom:577.826667pt;}
.y120{bottom:579.106667pt;}
.y20a{bottom:580.706667pt;}
.y17c{bottom:581.026667pt;}
.yfc{bottom:583.746667pt;}
.y97{bottom:584.866667pt;}
.y1ca{bottom:585.826667pt;}
.y26{bottom:586.786667pt;}
.y1ed{bottom:589.826667pt;}
.y6b{bottom:593.213333pt;}
.y11f{bottom:594.493333pt;}
.y17b{bottom:596.413333pt;}
.y25{bottom:599.133333pt;}
.y1c9{bottom:601.213333pt;}
.y1ec{bottom:605.213333pt;}
.y6a{bottom:608.413333pt;}
.y11e{bottom:609.853333pt;}
.y24{bottom:611.293333pt;}
.y17a{bottom:611.773333pt;}
.yfb{bottom:614.493333pt;}
.y1c8{bottom:616.413333pt;}
.y1eb{bottom:620.413333pt;}
.y23{bottom:623.613333pt;}
.y69{bottom:623.773333pt;}
.y11d{bottom:625.053333pt;}
.y165{bottom:625.213333pt;}
.y179{bottom:627.133333pt;}
.yfa{bottom:627.613333pt;}
.y1c7{bottom:631.773333pt;}
.y1ea{bottom:635.773333pt;}
.y22{bottom:635.933333pt;}
.y11c{bottom:637.533333pt;}
.y141{bottom:637.760000pt;}
.y68{bottom:639.133333pt;}
.y164{bottom:640.413333pt;}
.yf9{bottom:642.013333pt;}
.y178{bottom:642.493333pt;}
.y1c6{bottom:647.133333pt;}
.y21{bottom:648.093333pt;}
.y209{bottom:649.853333pt;}
.y1e9{bottom:651.133333pt;}
.yc6{bottom:654.173333pt;}
.y67{bottom:654.493333pt;}
.y163{bottom:655.773333pt;}
.y177{bottom:657.853333pt;}
.y20{bottom:660.413333pt;}
.y1c5{bottom:662.493333pt;}
.y1e8{bottom:666.493333pt;}
.y96{bottom:668.413333pt;}
.y66{bottom:669.853333pt;}
.yf8{bottom:670.333333pt;}
.y162{bottom:671.133333pt;}
.y176{bottom:673.053333pt;}
.y1f{bottom:675.613333pt;}
.y1c4{bottom:677.853333pt;}
.y1e7{bottom:681.853333pt;}
.y65{bottom:685.213333pt;}
.y161{bottom:686.493333pt;}
.y175{bottom:688.413333pt;}
.y1e{bottom:690.973333pt;}
.y1c3{bottom:693.213333pt;}
.y1e6{bottom:697.213333pt;}
.yf7{bottom:698.653333pt;}
.y160{bottom:699.613333pt;}
.y64{bottom:700.413333pt;}
.y174{bottom:702.813333pt;}
.y1d{bottom:706.333333pt;}
.y1c2{bottom:708.413333pt;}
.yc5{bottom:712.413333pt;}
.yf6{bottom:713.053333pt;}
.y63{bottom:715.773333pt;}
.y1c{bottom:721.693333pt;}
.y1c1{bottom:723.773333pt;}
.yf5{bottom:727.453333pt;}
.y15f{bottom:727.773333pt;}
.y173{bottom:728.253333pt;}
.y62{bottom:731.133333pt;}
.y1b{bottom:737.053333pt;}
.y94{bottom:738.013333pt;}
.y1c0{bottom:739.133333pt;}
.y172{bottom:740.893333pt;}
.y19d{bottom:740.960000pt;}
.yee{bottom:742.013333pt;}
.yc4{bottom:743.133333pt;}
.y61{bottom:746.493333pt;}
.y1a{bottom:752.253333pt;}
.y1bf{bottom:754.493333pt;}
.y15e{bottom:756.093333pt;}
.yc3{bottom:758.493333pt;}
.yf0{bottom:761.053333pt;}
.y60{bottom:761.853333pt;}
.y19{bottom:767.613333pt;}
.y1be{bottom:769.853333pt;}
.yc2{bottom:773.853333pt;}
.y5f{bottom:777.053333pt;}
.y18{bottom:782.973333pt;}
.y15d{bottom:784.413333pt;}
.y1bd{bottom:785.053333pt;}
.yc1{bottom:789.053333pt;}
.y5e{bottom:792.413333pt;}
.y17{bottom:798.333333pt;}
.y15c{bottom:798.813333pt;}
.y1bc{bottom:800.413333pt;}
.yc0{bottom:804.413333pt;}
.y5d{bottom:807.813333pt;}
.y15b{bottom:813.413333pt;}
.y16{bottom:813.733333pt;}
.y1bb{bottom:815.813333pt;}
.ybf{bottom:819.813333pt;}
.y93{bottom:821.573333pt;}
.y5c{bottom:823.173333pt;}
.y15{bottom:829.093333pt;}
.y1ba{bottom:831.173333pt;}
.ybe{bottom:835.173333pt;}
.y5b{bottom:838.533333pt;}
.y15a{bottom:841.573333pt;}
.y1b9{bottom:846.533333pt;}
.ybd{bottom:850.533333pt;}
.y5a{bottom:853.893333pt;}
.y159{bottom:856.133333pt;}
.y14{bottom:860.773333pt;}
.y1b8{bottom:861.893333pt;}
.ybc{bottom:865.893333pt;}
.y59{bottom:869.093333pt;}
.y158{bottom:870.533333pt;}
.y1b7{bottom:877.093333pt;}
.ybb{bottom:881.093333pt;}
.y13{bottom:881.733333pt;}
.y157{bottom:884.933333pt;}
.y58{bottom:888.453333pt;}
.y8c{bottom:891.173333pt;}
.y1b6{bottom:892.453333pt;}
.yba{bottom:896.453333pt;}
.y156{bottom:899.493333pt;}
.y12{bottom:900.133333pt;}
.y57{bottom:907.813333pt;}
.yb9{bottom:911.813333pt;}
.y155{bottom:913.893333pt;}
.y11{bottom:918.533333pt;}
.y56{bottom:923.173333pt;}
.yb8{bottom:927.173333pt;}
.y10{bottom:936.933333pt;}
.y55{bottom:938.533333pt;}
.y154{bottom:942.213333pt;}
.yb7{bottom:942.533333pt;}
.y54{bottom:953.893333pt;}
.yb6{bottom:957.893333pt;}
.y53{bottom:969.093333pt;}
.y150{bottom:970.533333pt;}
.yf{bottom:973.093333pt;}
.y8b{bottom:974.693333pt;}
.y52{bottom:984.453333pt;}
.ye{bottom:988.453333pt;}
.y51{bottom:999.813333pt;}
.yd{bottom:1003.813333pt;}
.y50{bottom:1015.173333pt;}
.yc{bottom:1019.173333pt;}
.yb{bottom:1034.560000pt;}
.y6{bottom:1056.000000pt;}
.y1{bottom:1066.720000pt;}
.h41{height:5.025000pt;}
.h19{height:13.760000pt;}
.h34{height:13.792000pt;}
.h2c{height:13.920000pt;}
.h8{height:15.914062pt;}
.h2{height:18.080000pt;}
.h2b{height:18.400000pt;}
.h9{height:19.040000pt;}
.h4{height:24.187500pt;}
.h2a{height:26.560000pt;}
.h5{height:26.852500pt;}
.h1e{height:27.520000pt;}
.h2d{height:27.680000pt;}
.h1d{height:27.712000pt;}
.h6{height:29.187500pt;}
.h3{height:29.343750pt;}
.h3f{height:31.200000pt;}
.h35{height:31.406250pt;}
.h16{height:33.857500pt;}
.h18{height:36.431250pt;}
.h11{height:37.792187pt;}
.h3b{height:40.612500pt;}
.h1f{height:41.280000pt;}
.h25{height:41.440000pt;}
.h10{height:42.063437pt;}
.h7{height:42.084375pt;}
.h1c{height:42.304688pt;}
.h40{height:43.215000pt;}
.ha{height:44.505000pt;}
.h37{height:45.225000pt;}
.h39{height:45.350625pt;}
.h29{height:45.600000pt;}
.h12{height:46.817187pt;}
.h33{height:47.040000pt;}
.h3c{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h32{height:47.235000pt;}
.h3e{height:47.742188pt;}
.hf{height:52.108438pt;}
.hc{height:52.134375pt;}
.h2f{height:52.834688pt;}
.h13{height:53.535000pt;}
.h17{height:53.992500pt;}
.h30{height:54.598989pt;}
.h1b{height:55.200000pt;}
.hb{height:58.563750pt;}
.h14{height:63.040000pt;}
.hd{height:64.500000pt;}
.h21{height:68.960000pt;}
.h23{height:68.992000pt;}
.h24{height:69.120000pt;}
.h3d{height:69.152000pt;}
.h3a{height:72.638333pt;}
.he{height:75.465000pt;}
.h20{height:82.880000pt;}
.h22{height:82.912000pt;}
.h27{height:124.192000pt;}
.h38{height:131.891667pt;}
.h28{height:137.946667pt;}
.h26{height:151.680000pt;}
.h31{height:163.840000pt;}
.h2e{height:191.840000pt;}
.h15{height:235.546875pt;}
.h36{height:306.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.880000pt;}
.w20{width:54.560000pt;}
.w7{width:55.040000pt;}
.w22{width:56.000000pt;}
.w21{width:56.032000pt;}
.w19{width:66.560000pt;}
.w1a{width:66.592000pt;}
.w1b{width:66.720000pt;}
.w1f{width:66.880000pt;}
.w26{width:75.520000pt;}
.w12{width:88.832000pt;}
.we{width:103.200000pt;}
.wf{width:103.232000pt;}
.w11{width:107.520000pt;}
.w23{width:121.792000pt;}
.w14{width:125.760000pt;}
.w15{width:136.826667pt;}
.w9{width:140.026667pt;}
.w13{width:141.946667pt;}
.w18{width:142.906667pt;}
.w10{width:145.626667pt;}
.wc{width:159.546667pt;}
.w1e{width:188.026667pt;}
.w16{width:190.746667pt;}
.w2{width:203.546667pt;}
.wa{width:224.986667pt;}
.w8{width:239.706667pt;}
.w17{width:268.506667pt;}
.w4{width:386.146667pt;}
.wd{width:443.266667pt;}
.w1c{width:480.000000pt;}
.w1d{width:504.960000pt;}
.w27{width:529.373333pt;}
.w24{width:594.880000pt;}
.wb{width:604.733333pt;}
.w25{width:606.653333pt;}
.w6{width:612.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x78{left:1.760000pt;}
.x7b{left:4.640000pt;}
.x2{left:7.200000pt;}
.x4{left:8.320000pt;}
.x66{left:9.280000pt;}
.x34{left:10.880000pt;}
.x32{left:12.640000pt;}
.x27{left:14.720000pt;}
.x47{left:15.906667pt;}
.x3f{left:17.440000pt;}
.x2c{left:18.880000pt;}
.x3d{left:20.480000pt;}
.x3c{left:21.466667pt;}
.x29{left:22.880000pt;}
.x25{left:26.400000pt;}
.x68{left:27.360000pt;}
.x20{left:28.320000pt;}
.x1a{left:31.680000pt;}
.x2f{left:33.600000pt;}
.x6b{left:40.666667pt;}
.x46{left:42.146667pt;}
.x1c{left:44.480000pt;}
.x2d{left:48.200000pt;}
.x67{left:50.440000pt;}
.x49{left:52.613333pt;}
.x37{left:53.760000pt;}
.x40{left:55.720000pt;}
.x4b{left:57.253333pt;}
.x3e{left:58.600000pt;}
.x54{left:59.973333pt;}
.x41{left:61.640000pt;}
.x7a{left:66.074667pt;}
.x4a{left:67.906667pt;}
.x6e{left:70.853333pt;}
.x60{left:76.794667pt;}
.x35{left:78.714667pt;}
.x56{left:80.186667pt;}
.x53{left:81.786667pt;}
.x57{left:84.506667pt;}
.x18{left:86.432000pt;}
.x48{left:89.626667pt;}
.x1{left:92.672000pt;}
.x9{left:94.591988pt;}
.xd{left:97.951988pt;}
.x6a{left:99.360000pt;}
.x72{left:100.506667pt;}
.x79{left:101.792000pt;}
.x6{left:107.040000pt;}
.x17{left:113.471988pt;}
.xe{left:115.071988pt;}
.x76{left:118.431988pt;}
.x6c{left:119.746667pt;}
.xb{left:126.911988pt;}
.x23{left:130.271988pt;}
.x55{left:132.000000pt;}
.x6f{left:134.106667pt;}
.x58{left:136.453333pt;}
.x16{left:141.466655pt;}
.x15{left:144.826655pt;}
.x71{left:153.626667pt;}
.x45{left:156.800000pt;}
.x73{left:163.773333pt;}
.x5a{left:173.626667pt;}
.x5b{left:176.186667pt;}
.x5c{left:177.666667pt;}
.x4e{left:181.666667pt;}
.x4d{left:183.933333pt;}
.x50{left:186.333333pt;}
.x5f{left:188.666655pt;}
.x4f{left:196.986667pt;}
.x26{left:199.066667pt;}
.x59{left:201.853333pt;}
.x1e{left:203.866655pt;}
.x2e{left:212.826655pt;}
.x22{left:217.626667pt;}
.x4c{left:218.720000pt;}
.x7{left:233.466667pt;}
.x43{left:240.666655pt;}
.x44{left:254.306655pt;}
.x21{left:255.426667pt;}
.x70{left:260.640000pt;}
.x1f{left:264.066655pt;}
.x61{left:284.066667pt;}
.x36{left:286.626667pt;}
.x24{left:290.946655pt;}
.x30{left:292.866667pt;}
.x77{left:294.114667pt;}
.x1d{left:295.234667pt;}
.x3{left:296.226667pt;}
.x5e{left:297.634667pt;}
.xa{left:298.914667pt;}
.x28{left:302.946667pt;}
.x6d{left:309.533333pt;}
.x5{left:315.106667pt;}
.x19{left:334.306667pt;}
.x5d{left:341.666667pt;}
.x62{left:351.586667pt;}
.x39{left:353.986667pt;}
.x51{left:369.666667pt;}
.x75{left:372.066655pt;}
.xc{left:396.866655pt;}
.xf{left:398.946655pt;}
.x2a{left:406.786667pt;}
.x74{left:416.226667pt;}
.x3a{left:421.186667pt;}
.x31{left:435.453333pt;}
.x63{left:463.613333pt;}
.x1b{left:474.333333pt;}
.x3b{left:488.413333pt;}
.x13{left:515.933322pt;}
.x64{left:520.253333pt;}
.x10{left:530.653322pt;}
.x11{left:544.413322pt;}
.x2b{left:553.053333pt;}
.x38{left:555.773333pt;}
.x33{left:561.853333pt;}
.x12{left:572.253322pt;}
.x65{left:576.893333pt;}
.x14{left:587.773322pt;}
.x42{left:636.933322pt;}
.x52{left:649.413322pt;}
.x69{left:694.373322pt;}
.x8{left:699.333322pt;}
}




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