
    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_b8ff9f1b540f8b1bb0e91af0.woff')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_37d7a9c8ebdcb83300b11590.woff')format("woff");}.ff2{font-family:ff2;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e2125849ec15fd7aa874731d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5f95838e3ce1660714f2c6c9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_b0b15e2014e9299aee880581.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_dd01a183b5ab2781d09a90d5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ea1094a88384ed75f209c04.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_7a1639acaf131f619f3eacc0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;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_863fa374908edd152982e486.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d3471bcb55e118e083604a48.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_99bedb26aadbc9c3a075e355.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_1123cede8b7ff74698e73dbd.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m5{transform:matrix(0.245493,0.000000,-0.081823,0.236231,0,0);-ms-transform:matrix(0.245493,0.000000,-0.081823,0.236231,0,0);-webkit-transform:matrix(0.245493,0.000000,-0.081823,0.236231,0,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);}
.m4{transform:matrix(0.259802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259802,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-45.143022px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-1.948310px;}
.ls1a{letter-spacing:-1.440000px;}
.ls17{letter-spacing:-1.323299px;}
.ls1d{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.144720px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls30{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.315600px;}
.ls5{letter-spacing:0.360000px;}
.lse{letter-spacing:0.630000px;}
.ls11{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.900000px;}
.ls1e{letter-spacing:1.080000px;}
.ls27{letter-spacing:1.620000px;}
.ls3{letter-spacing:2.340000px;}
.ls2b{letter-spacing:3.060000px;}
.ls22{letter-spacing:3.780000px;}
.ls1c{letter-spacing:4.500000px;}
.ls14{letter-spacing:5.220000px;}
.ls18{letter-spacing:6.660000px;}
.ls2a{letter-spacing:7.380000px;}
.ls12{letter-spacing:8.100000px;}
.ls2c{letter-spacing:9.540000px;}
.ls2{letter-spacing:10.260000px;}
.ls21{letter-spacing:11.700000px;}
.ls32{letter-spacing:13.140000px;}
.ls25{letter-spacing:13.860000px;}
.ls35{letter-spacing:14.580000px;}
.ls28{letter-spacing:15.300000px;}
.ls2d{letter-spacing:17.460000px;}
.ls23{letter-spacing:18.180000px;}
.ls20{letter-spacing:19.620000px;}
.ls33{letter-spacing:21.780000px;}
.ls2f{letter-spacing:22.500000px;}
.ls24{letter-spacing:23.220000px;}
.ls26{letter-spacing:24.660000px;}
.ls10{letter-spacing:25.380000px;}
.ls31{letter-spacing:28.980000px;}
.ls34{letter-spacing:31.140000px;}
.ls2e{letter-spacing:34.020000px;}
.ls29{letter-spacing:37.440000px;}
.ls1f{letter-spacing:45.540000px;}
.ls0{letter-spacing:47.700000px;}
.ls13{letter-spacing:255.751191px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-18.000000px;}
.wse{word-spacing:-17.884824px;}
.wsb{word-spacing:-16.560000px;}
.ws11{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws1{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.wsf{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.203892px;}
.ws3{word-spacing:-12.241200px;}
.ws4{word-spacing:-12.060000px;}
.ws6{word-spacing:-11.700000px;}
.ws2{word-spacing:-11.340000px;}
.ws5{word-spacing:-10.950480px;}
.ws9{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws0{word-spacing:-7.560000px;}
.wsa{word-spacing:0.000000px;}
._2e{margin-left:-267.328973px;}
._34{margin-left:-224.954640px;}
._2f{margin-left:-169.997199px;}
._30{margin-left:-167.160577px;}
._2c{margin-left:-141.037995px;}
._7{margin-left:-59.580000px;}
._2d{margin-left:-39.373526px;}
._e{margin-left:-3.585600px;}
._f{margin-left:-2.538000px;}
._2{margin-left:-1.284480px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._4{width:3.615600px;}
._c{width:5.051280px;}
._12{width:6.124320px;}
._13{width:7.589040px;}
._b{width:9.262800px;}
._d{width:10.326720px;}
._a{width:12.026640px;}
._9{width:13.147200px;}
._18{width:14.850000px;}
._19{width:15.930000px;}
._16{width:17.393760px;}
._15{width:18.525600px;}
._21{width:19.654320px;}
._1f{width:20.717280px;}
._10{width:22.290480px;}
._17{width:23.904000px;}
._24{width:25.876080px;}
._25{width:26.991120px;}
._31{width:28.079520px;}
._14{width:29.700720px;}
._1a{width:31.686480px;}
._33{width:32.987520px;}
._1d{width:34.869600px;}
._39{width:35.917920px;}
._23{width:36.991440px;}
._1e{width:38.311680px;}
._11{width:40.218480px;}
._3c{width:41.385600px;}
._22{width:42.668640px;}
._2a{width:43.684560px;}
._2b{width:44.750640px;}
._1b{width:45.768960px;}
._26{width:46.799280px;}
._32{width:47.898720px;}
._1c{width:49.151520px;}
._38{width:50.294880px;}
._3d{width:51.572880px;}
._29{width:55.935360px;}
._27{width:57.847680px;}
._37{width:59.078160px;}
._3b{width:60.171120px;}
._44{width:62.182080px;}
._36{width:63.385920px;}
._5{width:65.496000px;}
._28{width:68.785200px;}
._3{width:71.816160px;}
._42{width:79.301520px;}
._3f{width:84.142080px;}
._3e{width:86.293440px;}
._40{width:87.906960px;}
._3a{width:99.380880px;}
._41{width:102.341520px;}
._43{width:110.522160px;}
._35{width:161.730720px;}
._6{width:199.620000px;}
._20{width:285.870000px;}
._8{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(85,85,85);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs13{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fs10{font-size:30.782860px;}
.fs11{font-size:32.577093px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsf{font-size:52.815569px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs12{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y46{bottom:-247.725000px;}
.y45{bottom:-214.065000px;}
.y7e{bottom:-187.050000px;}
.y44{bottom:-180.225000px;}
.y7d{bottom:-153.210000px;}
.y43{bottom:-146.565000px;}
.y7c{bottom:-119.550000px;}
.y42{bottom:-112.905000px;}
.y7b{bottom:-85.710000px;}
.y41{bottom:-79.035000px;}
.y7a{bottom:-52.005000px;}
.y40{bottom:-45.375000px;}
.y4a{bottom:-42.120000px;}
.y79{bottom:-18.345000px;}
.y80{bottom:-17.922750px;}
.y49{bottom:-13.860000px;}
.y3f{bottom:-11.535000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:1.815000px;}
.y243{bottom:1.837500px;}
.yd9{bottom:2.246714px;}
.yd2{bottom:2.246717px;}
.yc9{bottom:2.246719px;}
.y2{bottom:3.960000px;}
.y114{bottom:4.665000px;}
.y10d{bottom:4.680000px;}
.y111{bottom:4.845000px;}
.y48{bottom:4.860000px;}
.y10c{bottom:4.875000px;}
.y10f{bottom:4.890000px;}
.y152{bottom:4.905000px;}
.y139{bottom:5.025000px;}
.y150{bottom:5.040000px;}
.y70{bottom:5.580000px;}
.y64{bottom:6.135000px;}
.y14e{bottom:6.165000px;}
.y13c{bottom:6.465000px;}
.y131{bottom:6.645000px;}
.y3e{bottom:6.825000px;}
.y108{bottom:10.800000px;}
.y109{bottom:11.520000px;}
.y12d{bottom:11.715000px;}
.yc8{bottom:12.555188px;}
.ycb{bottom:12.555196px;}
.ydb{bottom:12.555200px;}
.yd4{bottom:12.555203px;}
.y5{bottom:12.600000px;}
.y78{bottom:12.795000px;}
.y134{bottom:13.125000px;}
.y6d{bottom:14.955000px;}
.ycd{bottom:18.476625px;}
.y12e{bottom:18.540000px;}
.y10a{bottom:18.720000px;}
.y14a{bottom:20.520000px;}
.y3d{bottom:20.685000px;}
.yda{bottom:20.829040px;}
.yd3{bottom:20.829042px;}
.yca{bottom:20.829045px;}
.y63{bottom:20.895000px;}
.y13f{bottom:21.405000px;}
.y6{bottom:21.960000px;}
.y14d{bottom:22.005000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y12b{bottom:25.560000px;}
.y77{bottom:25.755000px;}
.y6c{bottom:27.915000px;}
.yc7{bottom:29.472499px;}
.yd6{bottom:29.472530px;}
.ydd{bottom:29.472533px;}
.y12f{bottom:32.580000px;}
.y62{bottom:33.135000px;}
.yd0{bottom:34.573900px;}
.y3c{bottom:34.725000px;}
.y14c{bottom:38.025000px;}
.y76{bottom:38.715000px;}
.yd8{bottom:40.758276px;}
.yd1{bottom:40.758277px;}
.y6b{bottom:40.905000px;}
.yde{bottom:45.701238px;}
.yd7{bottom:45.701239px;}
.ycf{bottom:45.701240px;}
.y82{bottom:46.980000px;}
.y3b{bottom:47.505000px;}
.ycc{bottom:49.032113px;}
.ydc{bottom:49.032119px;}
.yd5{bottom:49.032122px;}
.y61{bottom:50.955000px;}
.y75{bottom:51.855000px;}
.y6a{bottom:54.045000px;}
.yce{bottom:54.952472px;}
.y1{bottom:57.420000px;}
.y7f{bottom:63.780000px;}
.y74{bottom:64.815000px;}
.y69{bottom:67.005000px;}
.y60{bottom:68.775000px;}
.y73{bottom:77.775000px;}
.y68{bottom:79.965000px;}
.y5f{bottom:82.095000px;}
.y5e{bottom:90.915000px;}
.y67{bottom:93.105000px;}
.yfa{bottom:98.820000px;}
.yb3{bottom:100.620000px;}
.y1b2{bottom:101.520000px;}
.y72{bottom:103.335000px;}
.y1a4{bottom:103.680000px;}
.y178{bottom:104.040000px;}
.y123{bottom:104.760000px;}
.y19c{bottom:104.940000px;}
.y20a{bottom:106.380000px;}
.y5d{bottom:108.915000px;}
.y242{bottom:109.800000px;}
.y66{bottom:110.025000px;}
.y144{bottom:110.700000px;}
.y122{bottom:117.720000px;}
.yf9{bottom:118.620000px;}
.yb2{bottom:120.420000px;}
.y1b1{bottom:121.320000px;}
.y1a3{bottom:123.480000px;}
.y209{bottom:123.660000px;}
.y177{bottom:123.840000px;}
.y19b{bottom:124.740000px;}
.y39{bottom:126.720000px;}
.y5c{bottom:126.735000px;}
.y143{bottom:126.900000px;}
.y241{bottom:127.080000px;}
.y1d3{bottom:127.260000px;}
.y121{bottom:130.680000px;}
.yf8{bottom:138.600000px;}
.y142{bottom:138.960000px;}
.yb1{bottom:140.400000px;}
.y208{bottom:140.940000px;}
.y1b0{bottom:141.120000px;}
.y120{bottom:142.560000px;}
.y1a2{bottom:143.280000px;}
.y176{bottom:143.640000px;}
.y1d2{bottom:144.360000px;}
.y19a{bottom:144.540000px;}
.y5b{bottom:144.555000px;}
.y38{bottom:146.520000px;}
.y141{bottom:151.020000px;}
.y207{bottom:158.220000px;}
.yf7{bottom:158.400000px;}
.y11f{bottom:159.120000px;}
.yb0{bottom:160.200000px;}
.y1af{bottom:161.100000px;}
.y240{bottom:161.640000px;}
.y5a{bottom:162.375000px;}
.y13e{bottom:162.945000px;}
.y1a1{bottom:163.110000px;}
.y175{bottom:163.470000px;}
.y199{bottom:164.370000px;}
.y1d1{bottom:165.090000px;}
.y37{bottom:166.530000px;}
.y206{bottom:175.350000px;}
.y11e{bottom:175.905000px;}
.yf6{bottom:178.230000px;}
.y23f{bottom:178.950000px;}
.y140{bottom:179.505000px;}
.yaf{bottom:180.030000px;}
.y59{bottom:180.195000px;}
.y1ae{bottom:180.930000px;}
.y1a0{bottom:183.090000px;}
.y174{bottom:183.450000px;}
.y198{bottom:184.170000px;}
.y36{bottom:186.330000px;}
.y11d{bottom:192.465000px;}
.y205{bottom:192.630000px;}
.y58{bottom:193.515000px;}
.y23e{bottom:196.050000px;}
.y13d{bottom:196.065000px;}
.yf5{bottom:198.030000px;}
.yae{bottom:200.730000px;}
.y57{bottom:202.335000px;}
.y19f{bottom:202.890000px;}
.y173{bottom:203.250000px;}
.y197{bottom:204.150000px;}
.y1d0{bottom:205.950000px;}
.y35{bottom:206.130000px;}
.y11c{bottom:209.025000px;}
.y204{bottom:209.910000px;}
.y13b{bottom:212.805000px;}
.y23d{bottom:213.330000px;}
.yf4{bottom:217.830000px;}
.y56{bottom:220.365000px;}
.y1ad{bottom:220.530000px;}
.yad{bottom:221.610000px;}
.y19e{bottom:222.690000px;}
.y172{bottom:223.050000px;}
.y196{bottom:223.950000px;}
.y1cf{bottom:225.750000px;}
.y11b{bottom:225.765000px;}
.y34{bottom:225.930000px;}
.y203{bottom:227.190000px;}
.y23c{bottom:230.610000px;}
.y13a{bottom:232.965000px;}
.yf3{bottom:237.810000px;}
.y55{bottom:238.185000px;}
.y1ac{bottom:240.330000px;}
.y11a{bottom:242.325000px;}
.y19d{bottom:242.490000px;}
.y171{bottom:242.850000px;}
.y195{bottom:243.750000px;}
.y202{bottom:244.470000px;}
.y33{bottom:245.730000px;}
.y1ce{bottom:246.450000px;}
.y23b{bottom:247.890000px;}
.y138{bottom:249.525000px;}
.y54{bottom:256.005000px;}
.yf2{bottom:257.610000px;}
.y119{bottom:258.885000px;}
.y1ab{bottom:260.310000px;}
.y201{bottom:261.750000px;}
.yac{bottom:262.290000px;}
.y170{bottom:262.650000px;}
.y194{bottom:263.550000px;}
.y23a{bottom:265.170000px;}
.y32{bottom:265.710000px;}
.y137{bottom:266.265000px;}
.y53{bottom:273.825000px;}
.y118{bottom:275.625000px;}
.yf1{bottom:277.410000px;}
.y200{bottom:278.850000px;}
.y1aa{bottom:280.110000px;}
.yab{bottom:282.270000px;}
.y239{bottom:282.450000px;}
.y16f{bottom:282.630000px;}
.y193{bottom:283.350000px;}
.y31{bottom:285.510000px;}
.y52{bottom:287.145000px;}
.y1cd{bottom:287.310000px;}
.y117{bottom:292.185000px;}
.y51{bottom:295.965000px;}
.y1ff{bottom:296.130000px;}
.yf0{bottom:297.210000px;}
.y238{bottom:299.550000px;}
.y1a9{bottom:299.910000px;}
.yaa{bottom:302.070000px;}
.y16e{bottom:302.430000px;}
.y192{bottom:303.330000px;}
.y136{bottom:303.705000px;}
.y30{bottom:305.310000px;}
.y1cc{bottom:307.290000px;}
.y116{bottom:308.745000px;}
.y1fe{bottom:313.410000px;}
.y50{bottom:313.965000px;}
.y237{bottom:316.830000px;}
.yef{bottom:317.010000px;}
.y1a8{bottom:319.710000px;}
.y135{bottom:320.445000px;}
.ya9{bottom:321.870000px;}
.y16d{bottom:322.230000px;}
.y191{bottom:323.130000px;}
.y2f{bottom:325.110000px;}
.y115{bottom:325.485000px;}
.y1cb{bottom:327.090000px;}
.y1fd{bottom:330.690000px;}
.y4f{bottom:331.785000px;}
.y236{bottom:334.110000px;}
.yee{bottom:336.990000px;}
.y1a7{bottom:339.510000px;}
.y133{bottom:341.325000px;}
.ya8{bottom:341.670000px;}
.y16c{bottom:342.030000px;}
.y113{bottom:342.045000px;}
.y190{bottom:342.930000px;}
.y2e{bottom:344.910000px;}
.y1ca{bottom:346.890000px;}
.y1fc{bottom:347.970000px;}
.y4e{bottom:349.605000px;}
.y235{bottom:351.390000px;}
.yed{bottom:356.790000px;}
.y132{bottom:357.885000px;}
.y112{bottom:358.605000px;}
.y1a6{bottom:359.310000px;}
.ya7{bottom:361.470000px;}
.y16b{bottom:361.830000px;}
.y18f{bottom:362.730000px;}
.y2d{bottom:364.890000px;}
.y1fb{bottom:365.250000px;}
.y1c9{bottom:366.690000px;}
.y4d{bottom:367.425000px;}
.y234{bottom:368.670000px;}
.y130{bottom:374.445000px;}
.y110{bottom:375.345000px;}
.yec{bottom:376.590000px;}
.y1a5{bottom:380.190000px;}
.ya6{bottom:381.450000px;}
.y16a{bottom:381.810000px;}
.y1fa{bottom:382.350000px;}
.y18e{bottom:382.530000px;}
.y4c{bottom:385.245000px;}
.y2c{bottom:385.590000px;}
.y233{bottom:385.770000px;}
.y1c8{bottom:386.490000px;}
.y10e{bottom:391.905000px;}
.y12c{bottom:396.240000px;}
.y12a{bottom:396.255000px;}
.yeb{bottom:396.435000px;}
.y1f9{bottom:399.675000px;}
.ya5{bottom:401.295000px;}
.y169{bottom:401.655000px;}
.y18d{bottom:402.555000px;}
.y2b{bottom:402.915000px;}
.y232{bottom:403.095000px;}
.y1c7{bottom:407.415000px;}
.y2a{bottom:408.495000px;}
.y4b{bottom:411.720000px;}
.yea{bottom:416.235000px;}
.y1f8{bottom:416.955000px;}
.y231{bottom:420.375000px;}
.ya4{bottom:421.095000px;}
.y168{bottom:421.455000px;}
.y18c{bottom:422.355000px;}
.y29{bottom:425.235000px;}
.y10b{bottom:426.660000px;}
.y107{bottom:426.675000px;}
.y1f7{bottom:434.235000px;}
.ye9{bottom:436.215000px;}
.y230{bottom:437.655000px;}
.ya3{bottom:440.895000px;}
.y167{bottom:441.255000px;}
.y18b{bottom:442.155000px;}
.y129{bottom:446.475000px;}
.y1c6{bottom:448.275000px;}
.y28{bottom:449.175000px;}
.y1f6{bottom:451.515000px;}
.y22f{bottom:454.935000px;}
.ye8{bottom:456.015000px;}
.ya2{bottom:460.695000px;}
.y166{bottom:461.055000px;}
.y18a{bottom:461.955000px;}
.y71{bottom:463.020000px;}
.y128{bottom:463.215000px;}
.y106{bottom:464.115000px;}
.y1f5{bottom:468.615000px;}
.y1c5{bottom:468.975000px;}
.y27{bottom:470.055000px;}
.y22e{bottom:472.215000px;}
.ye7{bottom:475.815000px;}
.y127{bottom:479.775000px;}
.ya1{bottom:480.675000px;}
.y165{bottom:481.035000px;}
.y189{bottom:481.755000px;}
.y105{bottom:482.115000px;}
.y1f4{bottom:485.895000px;}
.y22d{bottom:489.315000px;}
.y26{bottom:489.855000px;}
.ye6{bottom:495.615000px;}
.ya0{bottom:500.475000px;}
.y164{bottom:500.835000px;}
.y188{bottom:501.735000px;}
.y1f3{bottom:503.175000px;}
.y25{bottom:503.535000px;}
.y22c{bottom:506.595000px;}
.y126{bottom:508.935000px;}
.y1c4{bottom:509.835000px;}
.y24{bottom:512.175000px;}
.ye5{bottom:515.415000px;}
.y9f{bottom:520.275000px;}
.y1f2{bottom:520.455000px;}
.y163{bottom:520.635000px;}
.y187{bottom:521.535000px;}
.y22b{bottom:523.875000px;}
.y104{bottom:524.055000px;}
.y125{bottom:525.495000px;}
.y1c3{bottom:529.815000px;}
.ye4{bottom:535.395000px;}
.y23{bottom:535.575000px;}
.y1f1{bottom:537.735000px;}
.y9e{bottom:540.075000px;}
.y162{bottom:540.435000px;}
.y124{bottom:540.975000px;}
.y22a{bottom:541.155000px;}
.y186{bottom:541.335000px;}
.y103{bottom:543.855000px;}
.y1c2{bottom:550.515000px;}
.y1f0{bottom:555.015000px;}
.ye3{bottom:555.195000px;}
.y229{bottom:558.435000px;}
.y22{bottom:558.795000px;}
.y9d{bottom:559.875000px;}
.y161{bottom:560.235000px;}
.y185{bottom:561.135000px;}
.y102{bottom:563.835000px;}
.y1ef{bottom:572.115000px;}
.ye2{bottom:574.995000px;}
.y228{bottom:575.715000px;}
.y9c{bottom:579.855000px;}
.y160{bottom:580.215000px;}
.y184{bottom:580.935000px;}
.y21{bottom:582.015000px;}
.y101{bottom:583.635000px;}
.y65{bottom:588.660000px;}
.y1ee{bottom:589.395000px;}
.y1c1{bottom:591.375000px;}
.y227{bottom:592.815000px;}
.ye1{bottom:595.695000px;}
.y9b{bottom:599.655000px;}
.y15f{bottom:600.015000px;}
.y183{bottom:600.915000px;}
.y100{bottom:603.435000px;}
.y1ed{bottom:606.675000px;}
.y226{bottom:610.095000px;}
.y1c0{bottom:611.175000px;}
.ye0{bottom:615.315000px;}
.y9a{bottom:619.455000px;}
.y15e{bottom:619.815000px;}
.y182{bottom:620.715000px;}
.y1ec{bottom:623.985000px;}
.yff{bottom:624.165000px;}
.yc6{bottom:624.884959px;}
.ydf{bottom:624.885000px;}
.y225{bottom:627.405000px;}
.y1bf{bottom:631.005000px;}
.y20{bottom:636.945000px;}
.y99{bottom:639.285000px;}
.y15d{bottom:639.645000px;}
.y181{bottom:640.545000px;}
.y1eb{bottom:641.265000px;}
.y224{bottom:644.685000px;}
.y1be{bottom:650.985000px;}
.y1f{bottom:652.425000px;}
.y1ea{bottom:658.545000px;}
.y98{bottom:659.085000px;}
.y15c{bottom:659.445000px;}
.y180{bottom:660.345000px;}
.y223{bottom:661.965000px;}
.yfe{bottom:665.025000px;}
.y1e{bottom:668.085000px;}
.y1bd{bottom:671.685000px;}
.y1e9{bottom:675.645000px;}
.y97{bottom:679.065000px;}
.y222{bottom:679.245000px;}
.y15b{bottom:679.425000px;}
.y17f{bottom:680.145000px;}
.y1d{bottom:683.565000px;}
.yfd{bottom:685.005000px;}
.yc5{bottom:691.845000px;}
.y1e8{bottom:692.925000px;}
.y1bc{bottom:695.445000px;}
.y221{bottom:696.345000px;}
.y96{bottom:698.865000px;}
.y1c{bottom:699.045000px;}
.y15a{bottom:699.225000px;}
.y17e{bottom:700.125000px;}
.yc4{bottom:704.805000px;}
.y1b{bottom:710.205000px;}
.y220{bottom:713.625000px;}
.y95{bottom:718.665000px;}
.y3a{bottom:718.860000px;}
.y159{bottom:719.025000px;}
.y17d{bottom:719.925000px;}
.y1a{bottom:723.885000px;}
.yc3{bottom:724.605000px;}
.y1e7{bottom:727.485000px;}
.y21f{bottom:730.905000px;}
.y1bb{bottom:736.305000px;}
.y19{bottom:736.665000px;}
.y94{bottom:738.465000px;}
.y158{bottom:738.825000px;}
.y17c{bottom:739.725000px;}
.yc2{bottom:744.405000px;}
.y1e6{bottom:744.765000px;}
.y21e{bottom:748.185000px;}
.y18{bottom:749.625000px;}
.y1ba{bottom:756.105000px;}
.y93{bottom:758.265000px;}
.y157{bottom:758.625000px;}
.y17b{bottom:759.525000px;}
.y1e5{bottom:761.865000px;}
.y17{bottom:762.585000px;}
.yc1{bottom:764.205000px;}
.y21d{bottom:765.465000px;}
.y1b9{bottom:776.085000px;}
.y16{bottom:776.445000px;}
.y92{bottom:778.245000px;}
.y156{bottom:778.605000px;}
.y1e4{bottom:779.145000px;}
.y17a{bottom:779.325000px;}
.y21c{bottom:782.565000px;}
.yc0{bottom:784.185000px;}
.y15{bottom:789.225000px;}
.y1b8{bottom:795.885000px;}
.y155{bottom:796.425000px;}
.y91{bottom:798.045000px;}
.y179{bottom:799.305000px;}
.y21b{bottom:799.845000px;}
.ybf{bottom:803.985000px;}
.y1e3{bottom:813.705000px;}
.y1b7{bottom:815.685000px;}
.y14{bottom:816.045000px;}
.y21a{bottom:817.125000px;}
.y90{bottom:817.845000px;}
.ybe{bottom:823.785000px;}
.y13{bottom:827.205000px;}
.y154{bottom:827.565000px;}
.y1e2{bottom:830.985000px;}
.y219{bottom:834.405000px;}
.y1b6{bottom:835.485000px;}
.y8f{bottom:837.645000px;}
.y153{bottom:839.445000px;}
.ybd{bottom:843.585000px;}
.y1e1{bottom:848.265000px;}
.y14b{bottom:851.325000px;}
.y12{bottom:851.505000px;}
.y218{bottom:851.685000px;}
.y1b5{bottom:855.330000px;}
.y8e{bottom:857.490000px;}
.ybc{bottom:863.430000px;}
.y1e0{bottom:865.410000px;}
.y151{bottom:867.930000px;}
.y217{bottom:869.010000px;}
.y1b4{bottom:875.310000px;}
.y11{bottom:876.390000px;}
.y8d{bottom:877.470000px;}
.y1df{bottom:882.690000px;}
.ybb{bottom:883.410000px;}
.y14f{bottom:884.490000px;}
.y216{bottom:886.110000px;}
.y10{bottom:887.010000px;}
.y1b3{bottom:896.010000px;}
.y8c{bottom:897.270000px;}
.y1de{bottom:899.970000px;}
.y149{bottom:902.670000px;}
.yba{bottom:903.210000px;}
.y215{bottom:903.390000px;}
.yfc{bottom:904.110000px;}
.yf{bottom:906.270000px;}
.y8b{bottom:917.070000px;}
.y1dd{bottom:917.250000px;}
.y214{bottom:920.670000px;}
.ye{bottom:921.210000px;}
.yb9{bottom:923.010000px;}
.yfb{bottom:923.910000px;}
.y1dc{bottom:934.530000px;}
.yd{bottom:936.150000px;}
.y8a{bottom:936.870000px;}
.y213{bottom:937.950000px;}
.y148{bottom:942.270000px;}
.yb8{bottom:942.810000px;}
.yc{bottom:947.670000px;}
.y1db{bottom:951.810000px;}
.y212{bottom:955.230000px;}
.y89{bottom:956.670000px;}
.y147{bottom:960.090000px;}
.yb7{bottom:962.610000px;}
.yb{bottom:965.130000px;}
.y1da{bottom:968.910000px;}
.y211{bottom:972.510000px;}
.y88{bottom:976.650000px;}
.y146{bottom:977.730000px;}
.yb6{bottom:982.590000px;}
.y1d9{bottom:986.190000px;}
.ya{bottom:986.730000px;}
.y210{bottom:989.610000px;}
.y87{bottom:996.450000px;}
.yb5{bottom:1003.290000px;}
.y1d8{bottom:1003.470000px;}
.y20f{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.y86{bottom:1016.250000px;}
.y145{bottom:1016.430000px;}
.y1d7{bottom:1020.750000px;}
.yb4{bottom:1022.910000px;}
.y20e{bottom:1024.170000px;}
.y85{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y1d6{bottom:1038.030000px;}
.y20d{bottom:1041.450000px;}
.y1d5{bottom:1055.310000px;}
.y84{bottom:1055.850000px;}
.y20c{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.y1d4{bottom:1072.770000px;}
.y83{bottom:1075.650000px;}
.y20b{bottom:1075.830000px;}
.y6f{bottom:1096.200000px;}
.y81{bottom:1123.200000px;}
.y47{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h19{height:5.805000px;}
.h4c{height:6.257812px;}
.h2{height:13.500000px;}
.h37{height:15.825000px;}
.h3a{height:15.840000px;}
.h38{height:15.861000px;}
.h48{height:15.862500px;}
.h39{height:15.876000px;}
.h41{height:16.005000px;}
.h1d{height:16.920000px;}
.h43{height:19.425000px;}
.h3e{height:19.641000px;}
.h40{height:20.145000px;}
.h30{height:21.373646px;}
.h25{height:22.140000px;}
.h32{height:22.619446px;}
.h16{height:23.319141px;}
.h2b{height:29.664141px;}
.hd{height:29.678906px;}
.h34{height:29.685000px;}
.h35{height:29.695500px;}
.h36{height:29.700000px;}
.h2e{height:30.211694px;}
.h10{height:30.963516px;}
.h22{height:31.081955px;}
.h46{height:31.665000px;}
.h3f{height:32.385000px;}
.h42{height:32.565000px;}
.h4{height:34.200000px;}
.h24{height:36.281250px;}
.h2f{height:36.671747px;}
.h14{height:39.503370px;}
.h5{height:40.985156px;}
.h18{height:42.086250px;}
.h49{height:43.215117px;}
.h3d{height:43.545000px;}
.h3b{height:43.555500px;}
.h3c{height:43.560000px;}
.h29{height:43.737568px;}
.h12{height:44.518359px;}
.hc{height:45.116367px;}
.h1b{height:45.714375px;}
.h13{height:46.622932px;}
.he{height:47.344922px;}
.h1e{height:48.616875px;}
.h44{height:48.945000px;}
.h47{height:49.162500px;}
.h31{height:51.809803px;}
.h2d{height:51.835592px;}
.h15{height:52.998047px;}
.h1f{height:54.421875px;}
.h11{height:55.291992px;}
.h21{height:55.503491px;}
.h1a{height:57.780000px;}
.h28{height:58.621992px;}
.h3{height:58.651172px;}
.h33{height:60.226875px;}
.h45{height:61.423863px;}
.h4b{height:62.184375px;}
.h4a{height:62.211094px;}
.h2c{height:63.675711px;}
.hb{height:65.010937px;}
.h1c{height:65.884219px;}
.hf{height:67.824844px;}
.h2a{height:70.628906px;}
.ha{height:72.562500px;}
.h17{height:74.953125px;}
.h27{height:75.093750px;}
.h7{height:87.695156px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h26{height:114.300000px;}
.h23{height:118.125000px;}
.h20{height:397.485000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wd{width:78.300000px;}
.w3{width:82.071000px;}
.w20{width:120.045000px;}
.w22{width:120.051000px;}
.w1f{width:120.081000px;}
.w1e{width:120.096000px;}
.w21{width:120.270000px;}
.w14{width:135.021000px;}
.w10{width:135.022500px;}
.w1b{width:138.441000px;}
.w16{width:138.442500px;}
.w17{width:141.696000px;}
.w19{width:141.870000px;}
.wb{width:141.897040px;}
.wc{width:144.022500px;}
.w1c{width:148.521000px;}
.w18{width:148.522500px;}
.we{width:148.536000px;}
.wf{width:148.545000px;}
.w5{width:154.470000px;}
.w11{width:168.870000px;}
.w12{width:168.885000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w15{width:222.321000px;}
.w1d{width:240.141000px;}
.w7{width:532.920000px;}
.w1a{width:570.555000px;}
.w4{width:639.855000px;}
.w13{width:674.775000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2f{left:2.054153px;}
.x4f{left:4.252500px;}
.x2{left:8.091000px;}
.x14{left:10.791000px;}
.x2a{left:11.859282px;}
.x3b{left:14.040000px;}
.x4a{left:15.645000px;}
.x3f{left:17.100000px;}
.x4c{left:19.980000px;}
.x1a{left:21.255000px;}
.x35{left:24.300000px;}
.x48{left:30.420000px;}
.x3c{left:37.065000px;}
.x26{left:39.467109px;}
.x28{left:41.137935px;}
.x2b{left:43.055130px;}
.x37{left:46.620000px;}
.x40{left:47.865000px;}
.x25{left:49.025086px;}
.x2d{left:50.860531px;}
.x3d{left:54.000000px;}
.x3a{left:56.715000px;}
.x29{left:58.091445px;}
.x3e{left:60.690000px;}
.x21{left:65.404109px;}
.x2e{left:68.225028px;}
.x20{left:70.005601px;}
.x3{left:73.965000px;}
.x24{left:76.003553px;}
.x27{left:77.837878px;}
.x18{left:80.505000px;}
.x15{left:81.765000px;}
.x30{left:84.356564px;}
.x2c{left:87.533597px;}
.x22{left:91.504609px;}
.x17{left:94.005000px;}
.x13{left:97.605000px;}
.x23{left:100.269727px;}
.x1{left:108.045000px;}
.x9{left:110.556000px;}
.xb{left:113.616000px;}
.x6{left:115.416000px;}
.x1f{left:121.176000px;}
.x32{left:128.376000px;}
.xd{left:129.636000px;}
.x33{left:131.445000px;}
.x10{left:132.696000px;}
.x7{left:145.656000px;}
.xc{left:166.170000px;}
.x42{left:182.370000px;}
.x43{left:183.465000px;}
.x4{left:190.125000px;}
.x4e{left:228.105000px;}
.x1c{left:265.575000px;}
.xf{left:271.335000px;}
.x34{left:275.475000px;}
.xe{left:287.715000px;}
.x16{left:303.195000px;}
.x19{left:310.350000px;}
.x44{left:321.915000px;}
.x47{left:348.195000px;}
.x36{left:353.775000px;}
.x1d{left:360.615000px;}
.x1e{left:364.395000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.xa{left:459.105000px;}
.x45{left:463.620000px;}
.x49{left:468.300000px;}
.x11{left:489.165000px;}
.x12{left:490.785000px;}
.x38{left:502.320000px;}
.x4b{left:588.390000px;}
.x46{left:612.150000px;}
.x1b{left:620.253000px;}
.x31{left:632.670000px;}
.x39{left:637.350000px;}
.x4d{left:708.450000px;}
.x41{left:771.840000px;}
@media print{
.v3{vertical-align:-40.127131pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-1.731831pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls17{letter-spacing:-1.176266pt;}
.ls1d{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.128640pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls30{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.280533pt;}
.ls5{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.560000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.960000pt;}
.ls27{letter-spacing:1.440000pt;}
.ls3{letter-spacing:2.080000pt;}
.ls2b{letter-spacing:2.720000pt;}
.ls22{letter-spacing:3.360000pt;}
.ls1c{letter-spacing:4.000000pt;}
.ls14{letter-spacing:4.640000pt;}
.ls18{letter-spacing:5.920000pt;}
.ls2a{letter-spacing:6.560000pt;}
.ls12{letter-spacing:7.200000pt;}
.ls2c{letter-spacing:8.480000pt;}
.ls2{letter-spacing:9.120000pt;}
.ls21{letter-spacing:10.400000pt;}
.ls32{letter-spacing:11.680000pt;}
.ls25{letter-spacing:12.320000pt;}
.ls35{letter-spacing:12.960000pt;}
.ls28{letter-spacing:13.600000pt;}
.ls2d{letter-spacing:15.520000pt;}
.ls23{letter-spacing:16.160000pt;}
.ls20{letter-spacing:17.440000pt;}
.ls33{letter-spacing:19.360000pt;}
.ls2f{letter-spacing:20.000000pt;}
.ls24{letter-spacing:20.640000pt;}
.ls26{letter-spacing:21.920000pt;}
.ls10{letter-spacing:22.560000pt;}
.ls31{letter-spacing:25.760000pt;}
.ls34{letter-spacing:27.680000pt;}
.ls2e{letter-spacing:30.240000pt;}
.ls29{letter-spacing:33.280000pt;}
.ls1f{letter-spacing:40.480000pt;}
.ls0{letter-spacing:42.400000pt;}
.ls13{letter-spacing:227.334392pt;}
.ws10{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.897621pt;}
.wsb{word-spacing:-14.720000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws1{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.wsf{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.736793pt;}
.ws3{word-spacing:-10.881067pt;}
.ws4{word-spacing:-10.720000pt;}
.ws6{word-spacing:-10.400000pt;}
.ws2{word-spacing:-10.080000pt;}
.ws5{word-spacing:-9.733760pt;}
.ws9{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws0{word-spacing:-6.720000pt;}
.wsa{word-spacing:0.000000pt;}
._2e{margin-left:-237.625754pt;}
._34{margin-left:-199.959680pt;}
._2f{margin-left:-151.108621pt;}
._30{margin-left:-148.587179pt;}
._2c{margin-left:-125.367107pt;}
._7{margin-left:-52.960000pt;}
._2d{margin-left:-34.998690pt;}
._e{margin-left:-3.187200pt;}
._f{margin-left:-2.256000pt;}
._2{margin-left:-1.141760pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._4{width:3.213867pt;}
._c{width:4.490027pt;}
._12{width:5.443840pt;}
._13{width:6.745813pt;}
._b{width:8.233600pt;}
._d{width:9.179307pt;}
._a{width:10.690347pt;}
._9{width:11.686400pt;}
._18{width:13.200000pt;}
._19{width:14.160000pt;}
._16{width:15.461120pt;}
._15{width:16.467200pt;}
._21{width:17.470507pt;}
._1f{width:18.415360pt;}
._10{width:19.813760pt;}
._17{width:21.248000pt;}
._24{width:23.000960pt;}
._25{width:23.992107pt;}
._31{width:24.959573pt;}
._14{width:26.400640pt;}
._1a{width:28.165760pt;}
._33{width:29.322240pt;}
._1d{width:30.995200pt;}
._39{width:31.927040pt;}
._23{width:32.881280pt;}
._1e{width:34.054827pt;}
._11{width:35.749760pt;}
._3c{width:36.787200pt;}
._22{width:37.927680pt;}
._2a{width:38.830720pt;}
._2b{width:39.778347pt;}
._1b{width:40.683520pt;}
._26{width:41.599360pt;}
._32{width:42.576640pt;}
._1c{width:43.690240pt;}
._38{width:44.706560pt;}
._3d{width:45.842560pt;}
._29{width:49.720320pt;}
._27{width:51.420160pt;}
._37{width:52.513920pt;}
._3b{width:53.485440pt;}
._44{width:55.272960pt;}
._36{width:56.343040pt;}
._5{width:58.218667pt;}
._28{width:61.142400pt;}
._3{width:63.836587pt;}
._42{width:70.490240pt;}
._3f{width:74.792960pt;}
._3e{width:76.705280pt;}
._40{width:78.139520pt;}
._3a{width:88.338560pt;}
._41{width:90.970240pt;}
._43{width:98.241920pt;}
._35{width:143.760640pt;}
._6{width:177.440000pt;}
._20{width:254.106667pt;}
._8{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs13{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fs10{font-size:27.362542pt;}
.fs11{font-size:28.957416pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsf{font-size:46.947172pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs12{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y46{bottom:-220.200000pt;}
.y45{bottom:-190.280000pt;}
.y7e{bottom:-166.266667pt;}
.y44{bottom:-160.200000pt;}
.y7d{bottom:-136.186667pt;}
.y43{bottom:-130.280000pt;}
.y7c{bottom:-106.266667pt;}
.y42{bottom:-100.360000pt;}
.y7b{bottom:-76.186667pt;}
.y41{bottom:-70.253333pt;}
.y7a{bottom:-46.226667pt;}
.y40{bottom:-40.333333pt;}
.y4a{bottom:-37.440000pt;}
.y79{bottom:-16.306667pt;}
.y80{bottom:-15.931333pt;}
.y49{bottom:-12.320000pt;}
.y3f{bottom:-10.253333pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:1.613333pt;}
.y243{bottom:1.633333pt;}
.yd9{bottom:1.997079pt;}
.yd2{bottom:1.997082pt;}
.yc9{bottom:1.997084pt;}
.y2{bottom:3.520000pt;}
.y114{bottom:4.146667pt;}
.y10d{bottom:4.160000pt;}
.y111{bottom:4.306667pt;}
.y48{bottom:4.320000pt;}
.y10c{bottom:4.333333pt;}
.y10f{bottom:4.346667pt;}
.y152{bottom:4.360000pt;}
.y139{bottom:4.466667pt;}
.y150{bottom:4.480000pt;}
.y70{bottom:4.960000pt;}
.y64{bottom:5.453333pt;}
.y14e{bottom:5.480000pt;}
.y13c{bottom:5.746667pt;}
.y131{bottom:5.906667pt;}
.y3e{bottom:6.066667pt;}
.y108{bottom:9.600000pt;}
.y109{bottom:10.240000pt;}
.y12d{bottom:10.413333pt;}
.yc8{bottom:11.160167pt;}
.ycb{bottom:11.160174pt;}
.ydb{bottom:11.160178pt;}
.yd4{bottom:11.160180pt;}
.y5{bottom:11.200000pt;}
.y78{bottom:11.373333pt;}
.y134{bottom:11.666667pt;}
.y6d{bottom:13.293333pt;}
.ycd{bottom:16.423666pt;}
.y12e{bottom:16.480000pt;}
.y10a{bottom:16.640000pt;}
.y14a{bottom:18.240000pt;}
.y3d{bottom:18.386667pt;}
.yda{bottom:18.514702pt;}
.yd3{bottom:18.514704pt;}
.yca{bottom:18.514706pt;}
.y63{bottom:18.573333pt;}
.y13f{bottom:19.026667pt;}
.y6{bottom:19.520000pt;}
.y14d{bottom:19.560000pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y12b{bottom:22.720000pt;}
.y77{bottom:22.893333pt;}
.y6c{bottom:24.813333pt;}
.yc7{bottom:26.197777pt;}
.yd6{bottom:26.197804pt;}
.ydd{bottom:26.197807pt;}
.y12f{bottom:28.960000pt;}
.y62{bottom:29.453333pt;}
.yd0{bottom:30.732356pt;}
.y3c{bottom:30.866667pt;}
.y14c{bottom:33.800000pt;}
.y76{bottom:34.413333pt;}
.yd8{bottom:36.229579pt;}
.yd1{bottom:36.229580pt;}
.y6b{bottom:36.360000pt;}
.yde{bottom:40.623323pt;}
.yd7{bottom:40.623324pt;}
.ycf{bottom:40.623325pt;}
.y82{bottom:41.760000pt;}
.y3b{bottom:42.226667pt;}
.ycc{bottom:43.584100pt;}
.ydc{bottom:43.584106pt;}
.yd5{bottom:43.584109pt;}
.y61{bottom:45.293333pt;}
.y75{bottom:46.093333pt;}
.y6a{bottom:48.040000pt;}
.yce{bottom:48.846642pt;}
.y1{bottom:51.040000pt;}
.y7f{bottom:56.693333pt;}
.y74{bottom:57.613333pt;}
.y69{bottom:59.560000pt;}
.y60{bottom:61.133333pt;}
.y73{bottom:69.133333pt;}
.y68{bottom:71.080000pt;}
.y5f{bottom:72.973333pt;}
.y5e{bottom:80.813333pt;}
.y67{bottom:82.760000pt;}
.yfa{bottom:87.840000pt;}
.yb3{bottom:89.440000pt;}
.y1b2{bottom:90.240000pt;}
.y72{bottom:91.853333pt;}
.y1a4{bottom:92.160000pt;}
.y178{bottom:92.480000pt;}
.y123{bottom:93.120000pt;}
.y19c{bottom:93.280000pt;}
.y20a{bottom:94.560000pt;}
.y5d{bottom:96.813333pt;}
.y242{bottom:97.600000pt;}
.y66{bottom:97.800000pt;}
.y144{bottom:98.400000pt;}
.y122{bottom:104.640000pt;}
.yf9{bottom:105.440000pt;}
.yb2{bottom:107.040000pt;}
.y1b1{bottom:107.840000pt;}
.y1a3{bottom:109.760000pt;}
.y209{bottom:109.920000pt;}
.y177{bottom:110.080000pt;}
.y19b{bottom:110.880000pt;}
.y39{bottom:112.640000pt;}
.y5c{bottom:112.653333pt;}
.y143{bottom:112.800000pt;}
.y241{bottom:112.960000pt;}
.y1d3{bottom:113.120000pt;}
.y121{bottom:116.160000pt;}
.yf8{bottom:123.200000pt;}
.y142{bottom:123.520000pt;}
.yb1{bottom:124.800000pt;}
.y208{bottom:125.280000pt;}
.y1b0{bottom:125.440000pt;}
.y120{bottom:126.720000pt;}
.y1a2{bottom:127.360000pt;}
.y176{bottom:127.680000pt;}
.y1d2{bottom:128.320000pt;}
.y19a{bottom:128.480000pt;}
.y5b{bottom:128.493333pt;}
.y38{bottom:130.240000pt;}
.y141{bottom:134.240000pt;}
.y207{bottom:140.640000pt;}
.yf7{bottom:140.800000pt;}
.y11f{bottom:141.440000pt;}
.yb0{bottom:142.400000pt;}
.y1af{bottom:143.200000pt;}
.y240{bottom:143.680000pt;}
.y5a{bottom:144.333333pt;}
.y13e{bottom:144.840000pt;}
.y1a1{bottom:144.986667pt;}
.y175{bottom:145.306667pt;}
.y199{bottom:146.106667pt;}
.y1d1{bottom:146.746667pt;}
.y37{bottom:148.026667pt;}
.y206{bottom:155.866667pt;}
.y11e{bottom:156.360000pt;}
.yf6{bottom:158.426667pt;}
.y23f{bottom:159.066667pt;}
.y140{bottom:159.560000pt;}
.yaf{bottom:160.026667pt;}
.y59{bottom:160.173333pt;}
.y1ae{bottom:160.826667pt;}
.y1a0{bottom:162.746667pt;}
.y174{bottom:163.066667pt;}
.y198{bottom:163.706667pt;}
.y36{bottom:165.626667pt;}
.y11d{bottom:171.080000pt;}
.y205{bottom:171.226667pt;}
.y58{bottom:172.013333pt;}
.y23e{bottom:174.266667pt;}
.y13d{bottom:174.280000pt;}
.yf5{bottom:176.026667pt;}
.yae{bottom:178.426667pt;}
.y57{bottom:179.853333pt;}
.y19f{bottom:180.346667pt;}
.y173{bottom:180.666667pt;}
.y197{bottom:181.466667pt;}
.y1d0{bottom:183.066667pt;}
.y35{bottom:183.226667pt;}
.y11c{bottom:185.800000pt;}
.y204{bottom:186.586667pt;}
.y13b{bottom:189.160000pt;}
.y23d{bottom:189.626667pt;}
.yf4{bottom:193.626667pt;}
.y56{bottom:195.880000pt;}
.y1ad{bottom:196.026667pt;}
.yad{bottom:196.986667pt;}
.y19e{bottom:197.946667pt;}
.y172{bottom:198.266667pt;}
.y196{bottom:199.066667pt;}
.y1cf{bottom:200.666667pt;}
.y11b{bottom:200.680000pt;}
.y34{bottom:200.826667pt;}
.y203{bottom:201.946667pt;}
.y23c{bottom:204.986667pt;}
.y13a{bottom:207.080000pt;}
.yf3{bottom:211.386667pt;}
.y55{bottom:211.720000pt;}
.y1ac{bottom:213.626667pt;}
.y11a{bottom:215.400000pt;}
.y19d{bottom:215.546667pt;}
.y171{bottom:215.866667pt;}
.y195{bottom:216.666667pt;}
.y202{bottom:217.306667pt;}
.y33{bottom:218.426667pt;}
.y1ce{bottom:219.066667pt;}
.y23b{bottom:220.346667pt;}
.y138{bottom:221.800000pt;}
.y54{bottom:227.560000pt;}
.yf2{bottom:228.986667pt;}
.y119{bottom:230.120000pt;}
.y1ab{bottom:231.386667pt;}
.y201{bottom:232.666667pt;}
.yac{bottom:233.146667pt;}
.y170{bottom:233.466667pt;}
.y194{bottom:234.266667pt;}
.y23a{bottom:235.706667pt;}
.y32{bottom:236.186667pt;}
.y137{bottom:236.680000pt;}
.y53{bottom:243.400000pt;}
.y118{bottom:245.000000pt;}
.yf1{bottom:246.586667pt;}
.y200{bottom:247.866667pt;}
.y1aa{bottom:248.986667pt;}
.yab{bottom:250.906667pt;}
.y239{bottom:251.066667pt;}
.y16f{bottom:251.226667pt;}
.y193{bottom:251.866667pt;}
.y31{bottom:253.786667pt;}
.y52{bottom:255.240000pt;}
.y1cd{bottom:255.386667pt;}
.y117{bottom:259.720000pt;}
.y51{bottom:263.080000pt;}
.y1ff{bottom:263.226667pt;}
.yf0{bottom:264.186667pt;}
.y238{bottom:266.266667pt;}
.y1a9{bottom:266.586667pt;}
.yaa{bottom:268.506667pt;}
.y16e{bottom:268.826667pt;}
.y192{bottom:269.626667pt;}
.y136{bottom:269.960000pt;}
.y30{bottom:271.386667pt;}
.y1cc{bottom:273.146667pt;}
.y116{bottom:274.440000pt;}
.y1fe{bottom:278.586667pt;}
.y50{bottom:279.080000pt;}
.y237{bottom:281.626667pt;}
.yef{bottom:281.786667pt;}
.y1a8{bottom:284.186667pt;}
.y135{bottom:284.840000pt;}
.ya9{bottom:286.106667pt;}
.y16d{bottom:286.426667pt;}
.y191{bottom:287.226667pt;}
.y2f{bottom:288.986667pt;}
.y115{bottom:289.320000pt;}
.y1cb{bottom:290.746667pt;}
.y1fd{bottom:293.946667pt;}
.y4f{bottom:294.920000pt;}
.y236{bottom:296.986667pt;}
.yee{bottom:299.546667pt;}
.y1a7{bottom:301.786667pt;}
.y133{bottom:303.400000pt;}
.ya8{bottom:303.706667pt;}
.y16c{bottom:304.026667pt;}
.y113{bottom:304.040000pt;}
.y190{bottom:304.826667pt;}
.y2e{bottom:306.586667pt;}
.y1ca{bottom:308.346667pt;}
.y1fc{bottom:309.306667pt;}
.y4e{bottom:310.760000pt;}
.y235{bottom:312.346667pt;}
.yed{bottom:317.146667pt;}
.y132{bottom:318.120000pt;}
.y112{bottom:318.760000pt;}
.y1a6{bottom:319.386667pt;}
.ya7{bottom:321.306667pt;}
.y16b{bottom:321.626667pt;}
.y18f{bottom:322.426667pt;}
.y2d{bottom:324.346667pt;}
.y1fb{bottom:324.666667pt;}
.y1c9{bottom:325.946667pt;}
.y4d{bottom:326.600000pt;}
.y234{bottom:327.706667pt;}
.y130{bottom:332.840000pt;}
.y110{bottom:333.640000pt;}
.yec{bottom:334.746667pt;}
.y1a5{bottom:337.946667pt;}
.ya6{bottom:339.066667pt;}
.y16a{bottom:339.386667pt;}
.y1fa{bottom:339.866667pt;}
.y18e{bottom:340.026667pt;}
.y4c{bottom:342.440000pt;}
.y2c{bottom:342.746667pt;}
.y233{bottom:342.906667pt;}
.y1c8{bottom:343.546667pt;}
.y10e{bottom:348.360000pt;}
.y12c{bottom:352.213333pt;}
.y12a{bottom:352.226667pt;}
.yeb{bottom:352.386667pt;}
.y1f9{bottom:355.266667pt;}
.ya5{bottom:356.706667pt;}
.y169{bottom:357.026667pt;}
.y18d{bottom:357.826667pt;}
.y2b{bottom:358.146667pt;}
.y232{bottom:358.306667pt;}
.y1c7{bottom:362.146667pt;}
.y2a{bottom:363.106667pt;}
.y4b{bottom:365.973333pt;}
.yea{bottom:369.986667pt;}
.y1f8{bottom:370.626667pt;}
.y231{bottom:373.666667pt;}
.ya4{bottom:374.306667pt;}
.y168{bottom:374.626667pt;}
.y18c{bottom:375.426667pt;}
.y29{bottom:377.986667pt;}
.y10b{bottom:379.253333pt;}
.y107{bottom:379.266667pt;}
.y1f7{bottom:385.986667pt;}
.ye9{bottom:387.746667pt;}
.y230{bottom:389.026667pt;}
.ya3{bottom:391.906667pt;}
.y167{bottom:392.226667pt;}
.y18b{bottom:393.026667pt;}
.y129{bottom:396.866667pt;}
.y1c6{bottom:398.466667pt;}
.y28{bottom:399.266667pt;}
.y1f6{bottom:401.346667pt;}
.y22f{bottom:404.386667pt;}
.ye8{bottom:405.346667pt;}
.ya2{bottom:409.506667pt;}
.y166{bottom:409.826667pt;}
.y18a{bottom:410.626667pt;}
.y71{bottom:411.573333pt;}
.y128{bottom:411.746667pt;}
.y106{bottom:412.546667pt;}
.y1f5{bottom:416.546667pt;}
.y1c5{bottom:416.866667pt;}
.y27{bottom:417.826667pt;}
.y22e{bottom:419.746667pt;}
.ye7{bottom:422.946667pt;}
.y127{bottom:426.466667pt;}
.ya1{bottom:427.266667pt;}
.y165{bottom:427.586667pt;}
.y189{bottom:428.226667pt;}
.y105{bottom:428.546667pt;}
.y1f4{bottom:431.906667pt;}
.y22d{bottom:434.946667pt;}
.y26{bottom:435.426667pt;}
.ye6{bottom:440.546667pt;}
.ya0{bottom:444.866667pt;}
.y164{bottom:445.186667pt;}
.y188{bottom:445.986667pt;}
.y1f3{bottom:447.266667pt;}
.y25{bottom:447.586667pt;}
.y22c{bottom:450.306667pt;}
.y126{bottom:452.386667pt;}
.y1c4{bottom:453.186667pt;}
.y24{bottom:455.266667pt;}
.ye5{bottom:458.146667pt;}
.y9f{bottom:462.466667pt;}
.y1f2{bottom:462.626667pt;}
.y163{bottom:462.786667pt;}
.y187{bottom:463.586667pt;}
.y22b{bottom:465.666667pt;}
.y104{bottom:465.826667pt;}
.y125{bottom:467.106667pt;}
.y1c3{bottom:470.946667pt;}
.ye4{bottom:475.906667pt;}
.y23{bottom:476.066667pt;}
.y1f1{bottom:477.986667pt;}
.y9e{bottom:480.066667pt;}
.y162{bottom:480.386667pt;}
.y124{bottom:480.866667pt;}
.y22a{bottom:481.026667pt;}
.y186{bottom:481.186667pt;}
.y103{bottom:483.426667pt;}
.y1c2{bottom:489.346667pt;}
.y1f0{bottom:493.346667pt;}
.ye3{bottom:493.506667pt;}
.y229{bottom:496.386667pt;}
.y22{bottom:496.706667pt;}
.y9d{bottom:497.666667pt;}
.y161{bottom:497.986667pt;}
.y185{bottom:498.786667pt;}
.y102{bottom:501.186667pt;}
.y1ef{bottom:508.546667pt;}
.ye2{bottom:511.106667pt;}
.y228{bottom:511.746667pt;}
.y9c{bottom:515.426667pt;}
.y160{bottom:515.746667pt;}
.y184{bottom:516.386667pt;}
.y21{bottom:517.346667pt;}
.y101{bottom:518.786667pt;}
.y65{bottom:523.253333pt;}
.y1ee{bottom:523.906667pt;}
.y1c1{bottom:525.666667pt;}
.y227{bottom:526.946667pt;}
.ye1{bottom:529.506667pt;}
.y9b{bottom:533.026667pt;}
.y15f{bottom:533.346667pt;}
.y183{bottom:534.146667pt;}
.y100{bottom:536.386667pt;}
.y1ed{bottom:539.266667pt;}
.y226{bottom:542.306667pt;}
.y1c0{bottom:543.266667pt;}
.ye0{bottom:546.946667pt;}
.y9a{bottom:550.626667pt;}
.y15e{bottom:550.946667pt;}
.y182{bottom:551.746667pt;}
.y1ec{bottom:554.653333pt;}
.yff{bottom:554.813333pt;}
.yc6{bottom:555.453297pt;}
.ydf{bottom:555.453333pt;}
.y225{bottom:557.693333pt;}
.y1bf{bottom:560.893333pt;}
.y20{bottom:566.173333pt;}
.y99{bottom:568.253333pt;}
.y15d{bottom:568.573333pt;}
.y181{bottom:569.373333pt;}
.y1eb{bottom:570.013333pt;}
.y224{bottom:573.053333pt;}
.y1be{bottom:578.653333pt;}
.y1f{bottom:579.933333pt;}
.y1ea{bottom:585.373333pt;}
.y98{bottom:585.853333pt;}
.y15c{bottom:586.173333pt;}
.y180{bottom:586.973333pt;}
.y223{bottom:588.413333pt;}
.yfe{bottom:591.133333pt;}
.y1e{bottom:593.853333pt;}
.y1bd{bottom:597.053333pt;}
.y1e9{bottom:600.573333pt;}
.y97{bottom:603.613333pt;}
.y222{bottom:603.773333pt;}
.y15b{bottom:603.933333pt;}
.y17f{bottom:604.573333pt;}
.y1d{bottom:607.613333pt;}
.yfd{bottom:608.893333pt;}
.yc5{bottom:614.973333pt;}
.y1e8{bottom:615.933333pt;}
.y1bc{bottom:618.173333pt;}
.y221{bottom:618.973333pt;}
.y96{bottom:621.213333pt;}
.y1c{bottom:621.373333pt;}
.y15a{bottom:621.533333pt;}
.y17e{bottom:622.333333pt;}
.yc4{bottom:626.493333pt;}
.y1b{bottom:631.293333pt;}
.y220{bottom:634.333333pt;}
.y95{bottom:638.813333pt;}
.y3a{bottom:638.986667pt;}
.y159{bottom:639.133333pt;}
.y17d{bottom:639.933333pt;}
.y1a{bottom:643.453333pt;}
.yc3{bottom:644.093333pt;}
.y1e7{bottom:646.653333pt;}
.y21f{bottom:649.693333pt;}
.y1bb{bottom:654.493333pt;}
.y19{bottom:654.813333pt;}
.y94{bottom:656.413333pt;}
.y158{bottom:656.733333pt;}
.y17c{bottom:657.533333pt;}
.yc2{bottom:661.693333pt;}
.y1e6{bottom:662.013333pt;}
.y21e{bottom:665.053333pt;}
.y18{bottom:666.333333pt;}
.y1ba{bottom:672.093333pt;}
.y93{bottom:674.013333pt;}
.y157{bottom:674.333333pt;}
.y17b{bottom:675.133333pt;}
.y1e5{bottom:677.213333pt;}
.y17{bottom:677.853333pt;}
.yc1{bottom:679.293333pt;}
.y21d{bottom:680.413333pt;}
.y1b9{bottom:689.853333pt;}
.y16{bottom:690.173333pt;}
.y92{bottom:691.773333pt;}
.y156{bottom:692.093333pt;}
.y1e4{bottom:692.573333pt;}
.y17a{bottom:692.733333pt;}
.y21c{bottom:695.613333pt;}
.yc0{bottom:697.053333pt;}
.y15{bottom:701.533333pt;}
.y1b8{bottom:707.453333pt;}
.y155{bottom:707.933333pt;}
.y91{bottom:709.373333pt;}
.y179{bottom:710.493333pt;}
.y21b{bottom:710.973333pt;}
.ybf{bottom:714.653333pt;}
.y1e3{bottom:723.293333pt;}
.y1b7{bottom:725.053333pt;}
.y14{bottom:725.373333pt;}
.y21a{bottom:726.333333pt;}
.y90{bottom:726.973333pt;}
.ybe{bottom:732.253333pt;}
.y13{bottom:735.293333pt;}
.y154{bottom:735.613333pt;}
.y1e2{bottom:738.653333pt;}
.y219{bottom:741.693333pt;}
.y1b6{bottom:742.653333pt;}
.y8f{bottom:744.573333pt;}
.y153{bottom:746.173333pt;}
.ybd{bottom:749.853333pt;}
.y1e1{bottom:754.013333pt;}
.y14b{bottom:756.733333pt;}
.y12{bottom:756.893333pt;}
.y218{bottom:757.053333pt;}
.y1b5{bottom:760.293333pt;}
.y8e{bottom:762.213333pt;}
.ybc{bottom:767.493333pt;}
.y1e0{bottom:769.253333pt;}
.y151{bottom:771.493333pt;}
.y217{bottom:772.453333pt;}
.y1b4{bottom:778.053333pt;}
.y11{bottom:779.013333pt;}
.y8d{bottom:779.973333pt;}
.y1df{bottom:784.613333pt;}
.ybb{bottom:785.253333pt;}
.y14f{bottom:786.213333pt;}
.y216{bottom:787.653333pt;}
.y10{bottom:788.453333pt;}
.y1b3{bottom:796.453333pt;}
.y8c{bottom:797.573333pt;}
.y1de{bottom:799.973333pt;}
.y149{bottom:802.373333pt;}
.yba{bottom:802.853333pt;}
.y215{bottom:803.013333pt;}
.yfc{bottom:803.653333pt;}
.yf{bottom:805.573333pt;}
.y8b{bottom:815.173333pt;}
.y1dd{bottom:815.333333pt;}
.y214{bottom:818.373333pt;}
.ye{bottom:818.853333pt;}
.yb9{bottom:820.453333pt;}
.yfb{bottom:821.253333pt;}
.y1dc{bottom:830.693333pt;}
.yd{bottom:832.133333pt;}
.y8a{bottom:832.773333pt;}
.y213{bottom:833.733333pt;}
.y148{bottom:837.573333pt;}
.yb8{bottom:838.053333pt;}
.yc{bottom:842.373333pt;}
.y1db{bottom:846.053333pt;}
.y212{bottom:849.093333pt;}
.y89{bottom:850.373333pt;}
.y147{bottom:853.413333pt;}
.yb7{bottom:855.653333pt;}
.yb{bottom:857.893333pt;}
.y1da{bottom:861.253333pt;}
.y211{bottom:864.453333pt;}
.y88{bottom:868.133333pt;}
.y146{bottom:869.093333pt;}
.yb6{bottom:873.413333pt;}
.y1d9{bottom:876.613333pt;}
.ya{bottom:877.093333pt;}
.y210{bottom:879.653333pt;}
.y87{bottom:885.733333pt;}
.yb5{bottom:891.813333pt;}
.y1d8{bottom:891.973333pt;}
.y20f{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.y86{bottom:903.333333pt;}
.y145{bottom:903.493333pt;}
.y1d7{bottom:907.333333pt;}
.yb4{bottom:909.253333pt;}
.y20e{bottom:910.373333pt;}
.y85{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y1d6{bottom:922.693333pt;}
.y20d{bottom:925.733333pt;}
.y1d5{bottom:938.053333pt;}
.y84{bottom:938.533333pt;}
.y20c{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.y1d4{bottom:953.573333pt;}
.y83{bottom:956.133333pt;}
.y20b{bottom:956.293333pt;}
.y6f{bottom:974.400000pt;}
.y81{bottom:998.400000pt;}
.y47{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h19{height:5.160000pt;}
.h4c{height:5.562500pt;}
.h2{height:12.000000pt;}
.h37{height:14.066667pt;}
.h3a{height:14.080000pt;}
.h38{height:14.098667pt;}
.h48{height:14.100000pt;}
.h39{height:14.112000pt;}
.h41{height:14.226667pt;}
.h1d{height:15.040000pt;}
.h43{height:17.266667pt;}
.h3e{height:17.458667pt;}
.h40{height:17.906667pt;}
.h30{height:18.998796pt;}
.h25{height:19.680000pt;}
.h32{height:20.106175pt;}
.h16{height:20.728125pt;}
.h2b{height:26.368125pt;}
.hd{height:26.381250pt;}
.h34{height:26.386667pt;}
.h35{height:26.396000pt;}
.h36{height:26.400000pt;}
.h2e{height:26.854839pt;}
.h10{height:27.523125pt;}
.h22{height:27.628404pt;}
.h46{height:28.146667pt;}
.h3f{height:28.786667pt;}
.h42{height:28.946667pt;}
.h4{height:30.400000pt;}
.h24{height:32.250000pt;}
.h2f{height:32.597109pt;}
.h14{height:35.114107pt;}
.h5{height:36.431250pt;}
.h18{height:37.410000pt;}
.h49{height:38.413438pt;}
.h3d{height:38.706667pt;}
.h3b{height:38.716000pt;}
.h3c{height:38.720000pt;}
.h29{height:38.877839pt;}
.h12{height:39.571875pt;}
.hc{height:40.103437pt;}
.h1b{height:40.635000pt;}
.h13{height:41.442606pt;}
.he{height:42.084375pt;}
.h1e{height:43.215000pt;}
.h44{height:43.506667pt;}
.h47{height:43.700000pt;}
.h31{height:46.053159pt;}
.h2d{height:46.076082pt;}
.h15{height:47.109375pt;}
.h1f{height:48.375000pt;}
.h11{height:49.148438pt;}
.h21{height:49.336436pt;}
.h1a{height:51.360000pt;}
.h28{height:52.108438pt;}
.h3{height:52.134375pt;}
.h33{height:53.535000pt;}
.h45{height:54.598989pt;}
.h4b{height:55.275000pt;}
.h4a{height:55.298750pt;}
.h2c{height:56.600632pt;}
.hb{height:57.787500pt;}
.h1c{height:58.563750pt;}
.hf{height:60.288750pt;}
.h2a{height:62.781250pt;}
.ha{height:64.500000pt;}
.h17{height:66.625000pt;}
.h27{height:66.750000pt;}
.h7{height:77.951250pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h26{height:101.600000pt;}
.h23{height:105.000000pt;}
.h20{height:353.320000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wd{width:69.600000pt;}
.w3{width:72.952000pt;}
.w20{width:106.706667pt;}
.w22{width:106.712000pt;}
.w1f{width:106.738667pt;}
.w1e{width:106.752000pt;}
.w21{width:106.906667pt;}
.w14{width:120.018667pt;}
.w10{width:120.020000pt;}
.w1b{width:123.058667pt;}
.w16{width:123.060000pt;}
.w17{width:125.952000pt;}
.w19{width:126.106667pt;}
.wb{width:126.130702pt;}
.wc{width:128.020000pt;}
.w1c{width:132.018667pt;}
.w18{width:132.020000pt;}
.we{width:132.032000pt;}
.wf{width:132.040000pt;}
.w5{width:137.306667pt;}
.w11{width:150.106667pt;}
.w12{width:150.120000pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w15{width:197.618667pt;}
.w1d{width:213.458667pt;}
.w7{width:473.706667pt;}
.w1a{width:507.160000pt;}
.w4{width:568.760000pt;}
.w13{width:599.800000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.825914pt;}
.x4f{left:3.780000pt;}
.x2{left:7.192000pt;}
.x14{left:9.592000pt;}
.x2a{left:10.541584pt;}
.x3b{left:12.480000pt;}
.x4a{left:13.906667pt;}
.x3f{left:15.200000pt;}
.x4c{left:17.760000pt;}
.x1a{left:18.893333pt;}
.x35{left:21.600000pt;}
.x48{left:27.040000pt;}
.x3c{left:32.946667pt;}
.x26{left:35.081875pt;}
.x28{left:36.567053pt;}
.x2b{left:38.271226pt;}
.x37{left:41.440000pt;}
.x40{left:42.546667pt;}
.x25{left:43.577854pt;}
.x2d{left:45.209361pt;}
.x3d{left:48.000000pt;}
.x3a{left:50.413333pt;}
.x29{left:51.636840pt;}
.x3e{left:53.946667pt;}
.x21{left:58.136986pt;}
.x2e{left:60.644470pt;}
.x20{left:62.227200pt;}
.x3{left:65.746667pt;}
.x24{left:67.558714pt;}
.x27{left:69.189225pt;}
.x18{left:71.560000pt;}
.x15{left:72.680000pt;}
.x30{left:74.983612pt;}
.x2c{left:77.807642pt;}
.x22{left:81.337430pt;}
.x17{left:83.560000pt;}
.x13{left:86.760000pt;}
.x23{left:89.128646pt;}
.x1{left:96.040000pt;}
.x9{left:98.272000pt;}
.xb{left:100.992000pt;}
.x6{left:102.592000pt;}
.x1f{left:107.712000pt;}
.x32{left:114.112000pt;}
.xd{left:115.232000pt;}
.x33{left:116.840000pt;}
.x10{left:117.952000pt;}
.x7{left:129.472000pt;}
.xc{left:147.706667pt;}
.x42{left:162.106667pt;}
.x43{left:163.080000pt;}
.x4{left:169.000000pt;}
.x4e{left:202.760000pt;}
.x1c{left:236.066667pt;}
.xf{left:241.186667pt;}
.x34{left:244.866667pt;}
.xe{left:255.746667pt;}
.x16{left:269.506667pt;}
.x19{left:275.866667pt;}
.x44{left:286.146667pt;}
.x47{left:309.506667pt;}
.x36{left:314.466667pt;}
.x1d{left:320.546667pt;}
.x1e{left:323.906667pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.xa{left:408.093333pt;}
.x45{left:412.106667pt;}
.x49{left:416.266667pt;}
.x11{left:434.813333pt;}
.x12{left:436.253333pt;}
.x38{left:446.506667pt;}
.x4b{left:523.013333pt;}
.x46{left:544.133333pt;}
.x1b{left:551.336000pt;}
.x31{left:562.373333pt;}
.x39{left:566.533333pt;}
.x4d{left:629.733333pt;}
.x41{left:686.080000pt;}
}




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