
    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_b487c3dc7eb9ef95a03a6600.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4cabe92bd22aa0c416466d5e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ca82b87b07947fb1e06bdef.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ff69a9c2586a3c4517769929.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_387b68b69c3a27d0dddd6727.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_63812e184dd13b71e4edbf2b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cd1cbed80b5a50c9c2371d9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049805;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c249b847d90efcedf83ec7fb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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_78dc1946532ce8f4279f7954.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-72.000000px;}
.v6{vertical-align:-70.560000px;}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v9{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.vb{vertical-align:18.000000px;}
.v8{vertical-align:20.880000px;}
.va{vertical-align:23.880000px;}
.v1{vertical-align:30.240000px;}
.ls3f{letter-spacing:-2.052000px;}
.ls34{letter-spacing:-1.026000px;}
.ls3e{letter-spacing:-0.870000px;}
.ls1b{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.288000px;}
.ls29{letter-spacing:-0.269400px;}
.ls36{letter-spacing:-0.262200px;}
.ls20{letter-spacing:-0.259800px;}
.ls1a{letter-spacing:-0.089400px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.053280px;}
.ls1c{letter-spacing:0.080400px;}
.ls11{letter-spacing:0.109200px;}
.ls2b{letter-spacing:0.109440px;}
.ls12{letter-spacing:0.123840px;}
.ls5{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.152400px;}
.ls7{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls2a{letter-spacing:0.262080px;}
.ls9{letter-spacing:0.262200px;}
.ls25{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.414600px;}
.lsb{letter-spacing:0.567600px;}
.ls14{letter-spacing:0.720000px;}
.ls37{letter-spacing:1.440000px;}
.ls3d{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.ls15{letter-spacing:4.680000px;}
.ls16{letter-spacing:5.040000px;}
.ls17{letter-spacing:5.760000px;}
.ls3c{letter-spacing:6.600000px;}
.ls28{letter-spacing:7.920000px;}
.ls10{letter-spacing:8.640000px;}
.ls40{letter-spacing:9.360000px;}
.ls4{letter-spacing:10.260000px;}
.ls39{letter-spacing:10.800000px;}
.ls2d{letter-spacing:13.800000px;}
.ls18{letter-spacing:14.400000px;}
.ls3{letter-spacing:17.460000px;}
.ls38{letter-spacing:18.180000px;}
.ls3a{letter-spacing:19.440000px;}
.ls2e{letter-spacing:23.040000px;}
.ls2c{letter-spacing:23.760000px;}
.ls3b{letter-spacing:31.680000px;}
.ls31{letter-spacing:32.400000px;}
.ls2f{letter-spacing:36.000000px;}
.ls30{letter-spacing:43.200000px;}
.ls32{letter-spacing:44.640000px;}
.ls21{letter-spacing:353.520000px;}
.ls22{letter-spacing:608.580000px;}
.ls24{letter-spacing:615.780000px;}
.ls23{letter-spacing:660.420000px;}
.ls1e{letter-spacing:715.860000px;}
.ls27{letter-spacing:722.340000px;}
.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;}
}
.wsb{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.127600px;}
.ws23{word-spacing:-16.974600px;}
.ws13{word-spacing:-16.865400px;}
.ws7{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.wsf{word-spacing:-16.669200px;}
.ws14{word-spacing:-16.640400px;}
.wsa{word-spacing:-16.560000px;}
.ws24{word-spacing:-16.297800px;}
.ws15{word-spacing:-16.254600px;}
.ws10{word-spacing:-16.102200px;}
.ws21{word-spacing:-15.948000px;}
.ws20{word-spacing:-15.840000px;}
.ws25{word-spacing:-15.690000px;}
.ws22{word-spacing:-15.534000px;}
.ws8{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws1a{word-spacing:-15.146400px;}
.ws17{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.680200px;}
.ws1{word-spacing:-14.580000px;}
.ws26{word-spacing:-14.508000px;}
.ws4{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.500000px;}
.ws1f{word-spacing:-12.420000px;}
.ws1c{word-spacing:-12.060000px;}
.ws1b{word-spacing:-11.790600px;}
.ws1d{word-spacing:-11.700000px;}
.wsd{word-spacing:-10.440000px;}
.ws11{word-spacing:-10.350600px;}
.ws18{word-spacing:-9.720000px;}
.ws12{word-spacing:-9.630000px;}
.ws1e{word-spacing:-7.560000px;}
.ws0{word-spacing:0.000000px;}
._27{margin-left:-3.307680px;}
._1{margin-left:-2.151360px;}
._2{margin-left:-1.075680px;}
._0{width:1.972080px;}
._3{width:3.017280px;}
._e{width:4.482000px;}
._8{width:5.940000px;}
._9{width:7.518960px;}
._c{width:8.910720px;}
._11{width:9.956160px;}
._5{width:10.958400px;}
._7{width:11.995200px;}
._6{width:13.192560px;}
._12{width:15.000480px;}
._d{width:16.015680px;}
._4{width:17.270640px;}
._16{width:18.516960px;}
._15{width:19.539360px;}
._18{width:20.645280px;}
._17{width:21.859200px;}
._b{width:23.850000px;}
._a{width:25.326720px;}
._1a{width:26.403840px;}
._19{width:27.423360px;}
._20{width:29.543040px;}
._21{width:31.114080px;}
._1c{width:32.967360px;}
._1b{width:33.981120px;}
._23{width:35.102640px;}
._22{width:36.365760px;}
._1d{width:38.302560px;}
._1e{width:39.463200px;}
._1f{width:41.664960px;}
._24{width:42.791040px;}
._25{width:43.882560px;}
._26{width:45.084720px;}
._28{width:72.864000px;}
._29{width:74.083680px;}
._10{width:448.740000px;}
._14{width:702.360000px;}
._13{width:1045.441200px;}
._f{width:1283.700000px;}
.fc4{color:transparent;}
.fc3{color:rgb(146,208,80);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.240000px;}
.fsb{font-size:38.880000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y21c{bottom:2.520000px;}
.y170{bottom:3.240000px;}
.y1b6{bottom:3.270000px;}
.y221{bottom:16.200000px;}
.y22a{bottom:16.245000px;}
.y21f{bottom:16.380000px;}
.y1f6{bottom:20.340000px;}
.y1d0{bottom:20.520000px;}
.y1f5{bottom:37.620000px;}
.y1cf{bottom:37.800000px;}
.y1ce{bottom:55.080000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y22{bottom:139.264499px;}
.y19{bottom:196.933500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y51{bottom:278.310000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y4d{bottom:322.095000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.yd3{bottom:323.535000px;}
.y7c{bottom:325.335000px;}
.ya9{bottom:327.135000px;}
.y126{bottom:328.755000px;}
.y17a{bottom:330.015000px;}
.y1e6{bottom:330.915000px;}
.y1f2{bottom:331.455000px;}
.yf3{bottom:332.175000px;}
.y148{bottom:333.975000px;}
.y1c0{bottom:337.035000px;}
.y135{bottom:337.395000px;}
.y242{bottom:338.115000px;}
.y4c{bottom:339.375000px;}
.y158{bottom:341.175000px;}
.yd2{bottom:342.615000px;}
.y7b{bottom:344.235000px;}
.ya8{bottom:346.035000px;}
.y125{bottom:347.835000px;}
.y10{bottom:348.133500px;}
.y1f1{bottom:348.735000px;}
.y179{bottom:348.915000px;}
.y1e5{bottom:349.995000px;}
.yf2{bottom:351.255000px;}
.y147{bottom:352.875000px;}
.y21a{bottom:353.415000px;}
.y1bf{bottom:355.935000px;}
.y134{bottom:356.475000px;}
.y4b{bottom:356.655000px;}
.y241{bottom:357.015000px;}
.yd1{bottom:361.515000px;}
.y19a{bottom:361.695000px;}
.y4a{bottom:361.875000px;}
.y7a{bottom:363.315000px;}
.ya7{bottom:364.935000px;}
.y1f0{bottom:366.015000px;}
.y124{bottom:366.735000px;}
.y178{bottom:367.995000px;}
.y1e4{bottom:368.895000px;}
.yf1{bottom:370.155000px;}
.y146{bottom:371.955000px;}
.y219{bottom:373.935000px;}
.y1be{bottom:374.835000px;}
.y49{bottom:375.195000px;}
.y133{bottom:375.375000px;}
.y240{bottom:376.095000px;}
.y199{bottom:378.435000px;}
.yd0{bottom:380.595000px;}
.y79{bottom:382.215000px;}
.ya6{bottom:382.755000px;}
.y1ef{bottom:383.295000px;}
.y123{bottom:385.635000px;}
.yf{bottom:386.785499px;}
.y177{bottom:386.895000px;}
.y1e3{bottom:387.975000px;}
.yf0{bottom:389.235000px;}
.y145{bottom:390.855000px;}
.y218{bottom:392.835000px;}
.y1bd{bottom:393.915000px;}
.y132{bottom:394.275000px;}
.y23f{bottom:394.995000px;}
.y198{bottom:396.975000px;}
.y48{bottom:397.155000px;}
.ya5{bottom:397.875000px;}
.ycf{bottom:399.495000px;}
.y78{bottom:401.295000px;}
.y122{bottom:404.715000px;}
.y176{bottom:405.975000px;}
.y1e2{bottom:406.875000px;}
.ye{bottom:408.044999px;}
.yef{bottom:408.135000px;}
.y144{bottom:409.935000px;}
.y217{bottom:411.735000px;}
.y1bc{bottom:412.815000px;}
.y131{bottom:413.355000px;}
.y197{bottom:414.075000px;}
.y47{bottom:414.435000px;}
.ya4{bottom:416.775000px;}
.yce{bottom:418.575000px;}
.y77{bottom:419.115000px;}
.y121{bottom:423.615000px;}
.y175{bottom:424.875000px;}
.y1e1{bottom:425.775000px;}
.y102{bottom:427.035000px;}
.yee{bottom:427.395000px;}
.y143{bottom:428.835000px;}
.y216{bottom:430.815000px;}
.y196{bottom:431.355000px;}
.y46{bottom:431.535000px;}
.y1bb{bottom:431.895000px;}
.y130{bottom:432.255000px;}
.y23e{bottom:432.975000px;}
.y76{bottom:434.055000px;}
.ya3{bottom:435.675000px;}
.ycd{bottom:436.395000px;}
.y157{bottom:437.475000px;}
.y120{bottom:442.695000px;}
.y174{bottom:444.135000px;}
.y1e0{bottom:444.855000px;}
.y101{bottom:446.295000px;}
.y142{bottom:447.735000px;}
.yed{bottom:448.095000px;}
.y195{bottom:448.635000px;}
.y45{bottom:448.815000px;}
.y215{bottom:449.715000px;}
.y1ba{bottom:450.795000px;}
.y12f{bottom:451.335000px;}
.ycc{bottom:451.515000px;}
.y23d{bottom:451.875000px;}
.y75{bottom:452.955000px;}
.ya2{bottom:454.755000px;}
.y156{bottom:456.375000px;}
.y11f{bottom:461.595000px;}
.y1df{bottom:463.755000px;}
.y194{bottom:465.915000px;}
.y44{bottom:466.095000px;}
.y100{bottom:466.815000px;}
.yec{bottom:468.795000px;}
.y244{bottom:469.335000px;}
.y1b9{bottom:469.875000px;}
.y12e{bottom:470.235000px;}
.y23c{bottom:470.955000px;}
.ycb{bottom:471.135000px;}
.y74{bottom:472.035000px;}
.ya1{bottom:473.655000px;}
.y155{bottom:475.455000px;}
.y173{bottom:478.875000px;}
.y11e{bottom:480.675000px;}
.y1de{bottom:482.835000px;}
.y193{bottom:483.195000px;}
.y43{bottom:483.375000px;}
.yd{bottom:484.864502px;}
.yff{bottom:485.715000px;}
.yca{bottom:487.515000px;}
.y214{bottom:487.695000px;}
.y1b8{bottom:488.775000px;}
.yeb{bottom:489.135000px;}
.y23b{bottom:489.855000px;}
.y73{bottom:490.935000px;}
.ya0{bottom:492.735000px;}
.y243{bottom:492.915000px;}
.y154{bottom:494.355000px;}
.y172{bottom:496.155000px;}
.y11d{bottom:499.575000px;}
.y192{bottom:500.295000px;}
.y42{bottom:500.655000px;}
.y1dd{bottom:501.735000px;}
.yc{bottom:502.864502px;}
.yfe{bottom:504.795000px;}
.yc9{bottom:506.415000px;}
.y213{bottom:506.595000px;}
.y1b7{bottom:507.675000px;}
.yea{bottom:508.215000px;}
.y23a{bottom:508.935000px;}
.y72{bottom:509.835000px;}
.y9f{bottom:511.635000px;}
.y153{bottom:513.435000px;}
.y191{bottom:517.575000px;}
.y11c{bottom:518.475000px;}
.y1dc{bottom:520.635000px;}
.yb{bottom:520.864502px;}
.y1ee{bottom:521.895000px;}
.yfd{bottom:523.695000px;}
.yc8{bottom:525.495000px;}
.y212{bottom:525.675000px;}
.y41{bottom:526.935000px;}
.ye9{bottom:527.115000px;}
.y239{bottom:527.835000px;}
.y71{bottom:528.915000px;}
.y9e{bottom:530.535000px;}
.y152{bottom:532.335000px;}
.y190{bottom:534.855000px;}
.y11b{bottom:537.735000px;}
.ya{bottom:538.864499px;}
.y1ed{bottom:539.175000px;}
.y1db{bottom:539.715000px;}
.yfc{bottom:542.595000px;}
.y40{bottom:544.035000px;}
.yc7{bottom:544.395000px;}
.y211{bottom:544.575000px;}
.ye8{bottom:546.195000px;}
.y238{bottom:546.735000px;}
.y70{bottom:547.815000px;}
.y9d{bottom:549.615000px;}
.y151{bottom:551.235000px;}
.y18f{bottom:552.135000px;}
.y1ec{bottom:556.455000px;}
.y9{bottom:556.864499px;}
.y11a{bottom:558.435000px;}
.y1da{bottom:558.615000px;}
.y3f{bottom:561.315000px;}
.yfb{bottom:561.675000px;}
.yc6{bottom:563.295000px;}
.y210{bottom:563.655000px;}
.ye7{bottom:565.125000px;}
.y237{bottom:566.745000px;}
.y6f{bottom:566.925000px;}
.y9c{bottom:568.545000px;}
.y18e{bottom:569.445000px;}
.y150{bottom:570.345000px;}
.y1eb{bottom:573.765000px;}
.y1d9{bottom:577.725000px;}
.y3e{bottom:578.625000px;}
.y1b5{bottom:578.985000px;}
.y119{bottom:579.165000px;}
.yfa{bottom:580.605000px;}
.yc5{bottom:582.405000px;}
.y20f{bottom:582.585000px;}
.ye6{bottom:584.025000px;}
.y6e{bottom:585.825000px;}
.y9b{bottom:586.365000px;}
.y18d{bottom:586.725000px;}
.y14f{bottom:589.245000px;}
.y236{bottom:590.325000px;}
.y1ea{bottom:591.045000px;}
.y1b4{bottom:596.265000px;}
.y1d8{bottom:596.625000px;}
.yf9{bottom:599.685000px;}
.y9a{bottom:601.305000px;}
.y20e{bottom:601.665000px;}
.ye5{bottom:603.105000px;}
.y18c{bottom:603.825000px;}
.y6d{bottom:604.725000px;}
.y3d{bottom:604.905000px;}
.y14e{bottom:608.325000px;}
.y235{bottom:609.945000px;}
.y1b3{bottom:613.545000px;}
.y1d7{bottom:615.525000px;}
.y171{bottom:616.965000px;}
.y118{bottom:618.585000px;}
.yf8{bottom:618.945000px;}
.y99{bottom:620.385000px;}
.y20d{bottom:620.565000px;}
.ye4{bottom:622.005000px;}
.y3c{bottom:622.185000px;}
.y18b{bottom:622.365000px;}
.y234{bottom:623.265000px;}
.y6c{bottom:623.805000px;}
.y1e9{bottom:625.425000px;}
.y14d{bottom:627.225000px;}
.y1b2{bottom:630.825000px;}
.y1d6{bottom:634.785000px;}
.y16f{bottom:634.965000px;}
.y233{bottom:637.125000px;}
.y117{bottom:637.665000px;}
.yc4{bottom:638.205000px;}
.y98{bottom:639.285000px;}
.yf7{bottom:639.645000px;}
.y20c{bottom:639.825000px;}
.ye3{bottom:641.085000px;}
.y6b{bottom:642.705000px;}
.y1e8{bottom:643.425000px;}
.y8{bottom:645.510000px;}
.y14c{bottom:646.125000px;}
.y1b1{bottom:647.925000px;}
.y3b{bottom:648.465000px;}
.y232{bottom:650.805000px;}
.yc3{bottom:653.145000px;}
.y116{bottom:656.565000px;}
.y141{bottom:656.925000px;}
.y97{bottom:658.365000px;}
.ye2{bottom:659.985000px;}
.yf6{bottom:660.345000px;}
.y20b{bottom:660.525000px;}
.y18a{bottom:661.425000px;}
.y6a{bottom:661.785000px;}
.y231{bottom:664.665000px;}
.y14b{bottom:665.205000px;}
.y3a{bottom:665.565000px;}
.y1b0{bottom:665.925000px;}
.y7{bottom:666.771000px;}
.yc2{bottom:672.045000px;}
.y16e{bottom:673.845000px;}
.y115{bottom:675.465000px;}
.y96{bottom:677.265000px;}
.y140{bottom:678.165000px;}
.y230{bottom:678.525000px;}
.ye1{bottom:678.885000px;}
.y69{bottom:680.685000px;}
.y20a{bottom:681.225000px;}
.y189{bottom:681.945000px;}
.y1e7{bottom:682.665000px;}
.y39{bottom:682.845000px;}
.y14a{bottom:684.105000px;}
.y1d5{bottom:686.805000px;}
.yc1{bottom:691.125000px;}
.y16d{bottom:692.745000px;}
.y114{bottom:694.545000px;}
.y95{bottom:696.165000px;}
.ye0{bottom:697.965000px;}
.y68{bottom:699.585000px;}
.y188{bottom:700.845000px;}
.y209{bottom:701.565000px;}
.y13f{bottom:701.745000px;}
.y149{bottom:703.185000px;}
.y1d4{bottom:704.085000px;}
.y1af{bottom:705.165000px;}
.y22f{bottom:706.065000px;}
.y38{bottom:709.125000px;}
.yc0{bottom:710.025000px;}
.y16c{bottom:711.825000px;}
.y113{bottom:713.445000px;}
.y94{bottom:715.245000px;}
.ydf{bottom:716.865000px;}
.y67{bottom:718.665000px;}
.y187{bottom:719.925000px;}
.y208{bottom:720.645000px;}
.y1d3{bottom:721.365000px;}
.y13e{bottom:722.085000px;}
.y1ae{bottom:725.685000px;}
.y6{bottom:726.298500px;}
.y37{bottom:726.405000px;}
.ybf{bottom:728.925000px;}
.y16b{bottom:730.725000px;}
.y112{bottom:732.525000px;}
.y22e{bottom:733.605000px;}
.y93{bottom:734.145000px;}
.yde{bottom:735.945000px;}
.y66{bottom:737.565000px;}
.y186{bottom:738.825000px;}
.y207{bottom:739.545000px;}
.y13d{bottom:740.985000px;}
.y36{bottom:743.685000px;}
.y1ad{bottom:744.585000px;}
.ybe{bottom:748.005000px;}
.y16a{bottom:749.625000px;}
.y111{bottom:751.425000px;}
.y92{bottom:751.785000px;}
.y3{bottom:752.599495px;}
.ydd{bottom:754.845000px;}
.y1d2{bottom:755.925000px;}
.y65{bottom:756.645000px;}
.y185{bottom:757.725000px;}
.y206{bottom:758.625000px;}
.y13c{bottom:760.065000px;}
.y35{bottom:760.965000px;}
.y22d{bottom:761.325000px;}
.y1ac{bottom:763.485000px;}
.y91{bottom:765.285000px;}
.ybd{bottom:766.905000px;}
.y169{bottom:768.705000px;}
.y110{bottom:770.325000px;}
.y1d1{bottom:773.025000px;}
.ydc{bottom:773.925000px;}
.y64{bottom:775.545000px;}
.y184{bottom:776.805000px;}
.y205{bottom:777.525000px;}
.y13b{bottom:778.965000px;}
.y1ab{bottom:782.565000px;}
.y90{bottom:784.185000px;}
.ybc{bottom:785.985000px;}
.y34{bottom:787.065000px;}
.y168{bottom:787.605000px;}
.y22c{bottom:788.865000px;}
.y10f{bottom:789.405000px;}
.y1cd{bottom:790.305000px;}
.ydb{bottom:792.825000px;}
.y63{bottom:794.625000px;}
.y183{bottom:795.705000px;}
.y204{bottom:796.425000px;}
.y13a{bottom:798.045000px;}
.y1aa{bottom:801.825000px;}
.y8f{bottom:803.085000px;}
.y33{bottom:804.345000px;}
.ybb{bottom:804.885000px;}
.y167{bottom:806.685000px;}
.y10e{bottom:808.305000px;}
.yda{bottom:811.725000px;}
.y62{bottom:813.525000px;}
.y182{bottom:814.785000px;}
.y203{bottom:815.505000px;}
.y22b{bottom:816.405000px;}
.y139{bottom:816.945000px;}
.y1a9{bottom:819.285000px;}
.y32{bottom:821.625000px;}
.y8e{bottom:822.165000px;}
.yba{bottom:823.785000px;}
.y166{bottom:825.585000px;}
.y10d{bottom:827.385000px;}
.yd9{bottom:830.805000px;}
.y61{bottom:832.425000px;}
.y181{bottom:833.685000px;}
.y202{bottom:834.405000px;}
.y138{bottom:836.025000px;}
.y1a8{bottom:836.565000px;}
.y8d{bottom:841.065000px;}
.yb9{bottom:841.605000px;}
.y229{bottom:844.125000px;}
.y165{bottom:844.485000px;}
.y10c{bottom:846.285000px;}
.y31{bottom:847.950000px;}
.yd8{bottom:849.750000px;}
.y60{bottom:851.550000px;}
.y180{bottom:852.990000px;}
.y201{bottom:853.530000px;}
.y1a7{bottom:853.890000px;}
.y137{bottom:854.970000px;}
.yb8{bottom:856.950000px;}
.y1cc{bottom:859.290000px;}
.y8c{bottom:860.190000px;}
.y164{bottom:863.610000px;}
.y30{bottom:865.230000px;}
.y12d{bottom:868.830000px;}
.yd7{bottom:869.010000px;}
.y5f{bottom:870.450000px;}
.y1a6{bottom:870.990000px;}
.y200{bottom:872.430000px;}
.y136{bottom:873.870000px;}
.yb7{bottom:876.570000px;}
.y8b{bottom:879.090000px;}
.y2{bottom:879.369000px;}
.y163{bottom:882.510000px;}
.y10b{bottom:884.310000px;}
.y228{bottom:887.010000px;}
.y12c{bottom:887.730000px;}
.y1a5{bottom:888.270000px;}
.y5e{bottom:889.530000px;}
.yd6{bottom:889.710000px;}
.y1ff{bottom:891.330000px;}
.y2f{bottom:892.770000px;}
.yb6{bottom:892.950000px;}
.y1cb{bottom:893.850000px;}
.y8a{bottom:897.990000px;}
.y227{bottom:900.690000px;}
.y162{bottom:901.590000px;}
.y10a{bottom:903.210000px;}
.y17f{bottom:905.010000px;}
.y1a4{bottom:905.550000px;}
.y12b{bottom:906.630000px;}
.y5d{bottom:908.430000px;}
.yf5{bottom:908.790000px;}
.yd5{bottom:910.410000px;}
.yb5{bottom:911.850000px;}
.y226{bottom:914.550000px;}
.y2e{bottom:915.990000px;}
.y89{bottom:917.070000px;}
.y161{bottom:920.490000px;}
.y109{bottom:922.290000px;}
.y1a3{bottom:924.630000px;}
.y12a{bottom:925.710000px;}
.y5c{bottom:927.330000px;}
.y225{bottom:928.410000px;}
.y1ca{bottom:929.130000px;}
.yf4{bottom:929.490000px;}
.y1fe{bottom:929.670000px;}
.yb4{bottom:930.930000px;}
.y88{bottom:935.970000px;}
.y160{bottom:939.390000px;}
.y108{bottom:941.190000px;}
.y2d{bottom:942.090000px;}
.y129{bottom:944.970000px;}
.y5b{bottom:946.410000px;}
.yb3{bottom:949.830000px;}
.y1fd{bottom:954.870000px;}
.y87{bottom:955.050000px;}
.y17e{bottom:956.670000px;}
.y15f{bottom:958.470000px;}
.y107{bottom:960.450000px;}
.y1c9{bottom:963.690000px;}
.y1a2{bottom:963.870000px;}
.y2c{bottom:964.050000px;}
.y5a{bottom:965.310000px;}
.y128{bottom:965.670000px;}
.y1{bottom:966.726000px;}
.y1fc{bottom:966.930000px;}
.yb2{bottom:968.730000px;}
.y224{bottom:969.810000px;}
.y86{bottom:973.950000px;}
.y15e{bottom:977.370000px;}
.y2a{bottom:980.610000px;}
.y1c8{bottom:980.790000px;}
.y106{bottom:981.150000px;}
.y1fb{bottom:981.690000px;}
.y59{bottom:984.390000px;}
.y127{bottom:986.370000px;}
.yb1{bottom:987.810000px;}
.y2b{bottom:988.170000px;}
.y17d{bottom:991.230000px;}
.y85{bottom:993.030000px;}
.y15d{bottom:996.450000px;}
.y223{bottom:997.350000px;}
.y1c7{bottom:998.070000px;}
.y1fa{bottom:998.790000px;}
.y105{bottom:1001.850000px;}
.y1a1{bottom:1003.290000px;}
.y58{bottom:1004.190000px;}
.y29{bottom:1004.730000px;}
.yb0{bottom:1006.710000px;}
.y17c{bottom:1008.510000px;}
.y84{bottom:1011.930000px;}
.y15c{bottom:1015.350000px;}
.y1f9{bottom:1016.070000px;}
.y1a0{bottom:1022.190000px;}
.y104{bottom:1022.550000px;}
.yaf{bottom:1024.530000px;}
.y222{bottom:1024.890000px;}
.yd4{bottom:1025.790000px;}
.y57{bottom:1028.310000px;}
.y83{bottom:1029.750000px;}
.y28{bottom:1030.290000px;}
.y1c6{bottom:1032.630000px;}
.y15b{bottom:1034.250000px;}
.yae{bottom:1039.830000px;}
.y19f{bottom:1041.270000px;}
.y103{bottom:1043.250000px;}
.y17b{bottom:1043.790000px;}
.y82{bottom:1044.690000px;}
.y1c5{bottom:1049.910000px;}
.y1f8{bottom:1050.630000px;}
.y56{bottom:1051.890000px;}
.y220{bottom:1052.610000px;}
.y15a{bottom:1053.330000px;}
.yad{bottom:1059.450000px;}
.y19e{bottom:1060.170000px;}
.y27{bottom:1061.250000px;}
.y81{bottom:1063.590000px;}
.y1c4{bottom:1067.190000px;}
.y1f7{bottom:1067.910000px;}
.y55{bottom:1072.590000px;}
.yac{bottom:1075.650000px;}
.y19d{bottom:1079.250000px;}
.y21e{bottom:1080.150000px;}
.y80{bottom:1082.670000px;}
.y1c3{bottom:1084.290000px;}
.y1f4{bottom:1085.190000px;}
.y26{bottom:1092.390000px;}
.y159{bottom:1093.290000px;}
.y54{bottom:1093.830000px;}
.yab{bottom:1094.730000px;}
.y19c{bottom:1098.150000px;}
.y7f{bottom:1101.570000px;}
.y21d{bottom:1108.590000px;}
.yaa{bottom:1113.990000px;}
.y53{bottom:1116.690000px;}
.y19b{bottom:1117.410000px;}
.y1c2{bottom:1119.570000px;}
.y7e{bottom:1120.650000px;}
.y25{bottom:1120.830000px;}
.y21b{bottom:1122.990000px;}
.y52{bottom:1135.260000px;}
.y1f3{bottom:1136.880000px;}
.y24{bottom:1138.140000px;}
.y7d{bottom:1139.580000px;}
.y1c1{bottom:1140.840000px;}
.y23{bottom:1155.420000px;}
.y50{bottom:1158.120000px;}
.y4f{bottom:1177.560000px;}
.y4e{bottom:1194.840000px;}
.h27{height:13.680000px;}
.h2a{height:13.860000px;}
.h25{height:13.896000px;}
.h1d{height:17.100000px;}
.h1e{height:17.280000px;}
.h1f{height:17.316000px;}
.h28{height:27.540000px;}
.h2b{height:27.576000px;}
.h29{height:27.720000px;}
.h7{height:32.130000px;}
.h23{height:34.560000px;}
.h14{height:38.158594px;}
.h18{height:40.985156px;}
.h6{height:45.900000px;}
.he{height:47.321367px;}
.h17{height:47.344922px;}
.h3{height:48.195000px;}
.h26{height:48.616875px;}
.h12{height:49.838906px;}
.h24{height:51.696000px;}
.hd{height:52.998047px;}
.h2c{height:54.421875px;}
.h2{height:55.080000px;}
.h16{height:55.243125px;}
.h22{height:58.621992px;}
.h11{height:58.651172px;}
.h20{height:59.038594px;}
.h9{height:60.226875px;}
.h1c{height:64.978594px;}
.hf{height:65.010937px;}
.h13{height:65.884219px;}
.h1b{height:66.757500px;}
.h21{height:68.976000px;}
.h1a{height:70.628906px;}
.h15{height:70.664062px;}
.h19{height:72.562500px;}
.h5{height:78.030000px;}
.hb{height:82.676953px;}
.hc{height:83.238047px;}
.h10{height:84.898125px;}
.ha{height:108.843750px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:45.756000px;}
.w25{width:45.900000px;}
.w22{width:46.260000px;}
.w29{width:48.960000px;}
.w27{width:49.140000px;}
.w28{width:49.176000px;}
.w23{width:54.360000px;}
.w26{width:54.396000px;}
.w8{width:66.240000px;}
.w7{width:66.276000px;}
.w9{width:66.420000px;}
.wf{width:66.816000px;}
.w10{width:66.960000px;}
.w11{width:66.996000px;}
.w14{width:67.320000px;}
.w13{width:68.796000px;}
.w12{width:70.380000px;}
.wa{width:83.160000px;}
.w6{width:88.920000px;}
.we{width:94.860000px;}
.w1b{width:128.736000px;}
.w21{width:145.116000px;}
.w1e{width:146.196000px;}
.w1c{width:147.060000px;}
.w1d{width:147.096000px;}
.w1f{width:147.600000px;}
.w20{width:147.636000px;}
.wd{width:161.670000px;}
.wc{width:161.850000px;}
.wb{width:162.390000px;}
.w18{width:164.730000px;}
.w16{width:178.410000px;}
.w1a{width:191.730000px;}
.w17{width:195.330000px;}
.w19{width:212.610000px;}
.w2a{width:557.205000px;}
.w15{width:569.085000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4f{left:2.160000px;}
.x50{left:5.400000px;}
.x51{left:6.480000px;}
.x27{left:8.100000px;}
.x2c{left:9.180000px;}
.x12{left:10.980000px;}
.x52{left:12.060000px;}
.x14{left:13.140000px;}
.x1a{left:14.400000px;}
.x19{left:16.065000px;}
.x10{left:18.180000px;}
.x1b{left:19.980000px;}
.x1d{left:22.860000px;}
.x2d{left:25.065000px;}
.x23{left:26.460000px;}
.x30{left:28.440000px;}
.x40{left:30.420000px;}
.x37{left:34.560000px;}
.xe{left:44.460000px;}
.x3d{left:46.800000px;}
.x43{left:48.240000px;}
.x3f{left:49.350000px;}
.x3e{left:51.870000px;}
.x3a{left:53.820000px;}
.x3c{left:55.440000px;}
.x3b{left:56.520000px;}
.x2e{left:58.860000px;}
.x2f{left:60.660000px;}
.x1f{left:62.865000px;}
.x21{left:65.730000px;}
.x24{left:69.885000px;}
.x41{left:71.670000px;}
.x25{left:73.470000px;}
.x26{left:77.070000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1c{left:162.030000px;}
.x44{left:167.970000px;}
.x5{left:170.129987px;}
.x9{left:174.989987px;}
.xa{left:183.809987px;}
.xd{left:194.249987px;}
.x4e{left:198.765000px;}
.x4{left:203.484001px;}
.x53{left:207.045000px;}
.x54{left:212.609987px;}
.x45{left:214.230000px;}
.x1e{left:245.190000px;}
.x28{left:256.890000px;}
.xf{left:259.050000px;}
.x46{left:268.590000px;}
.xc{left:283.214987px;}
.x36{left:290.775000px;}
.x47{left:314.355000px;}
.x29{left:323.715000px;}
.x11{left:325.335000px;}
.x33{left:326.775000px;}
.x31{left:340.455000px;}
.x35{left:353.594987px;}
.x48{left:368.715000px;}
.x8{left:386.174987px;}
.x13{left:391.575000px;}
.x20{left:407.595000px;}
.x49{left:423.075000px;}
.x38{left:437.835000px;}
.xb{left:446.474987px;}
.x3{left:454.959000px;}
.x15{left:457.815000px;}
.x4a{left:468.975000px;}
.x16{left:524.085000px;}
.x32{left:535.785000px;}
.x34{left:539.385000px;}
.x22{left:569.445000px;}
.x4b{left:577.725000px;}
.x39{left:584.925000px;}
.x42{left:586.005000px;}
.x17{left:590.505000px;}
.x2a{left:595.005000px;}
.x4c{left:626.865000px;}
.x6{left:654.404973px;}
.x18{left:656.745000px;}
.x7{left:661.289987px;}
.x2b{left:663.810000px;}
.x4d{left:676.050000px;}
@media print{
.v7{vertical-align:-64.000000pt;}
.v6{vertical-align:-62.720000pt;}
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v9{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.vb{vertical-align:16.000000pt;}
.v8{vertical-align:18.560000pt;}
.va{vertical-align:21.226667pt;}
.v1{vertical-align:26.880000pt;}
.ls3f{letter-spacing:-1.824000pt;}
.ls34{letter-spacing:-0.912000pt;}
.ls3e{letter-spacing:-0.773333pt;}
.ls1b{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls29{letter-spacing:-0.239467pt;}
.ls36{letter-spacing:-0.233067pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls1a{letter-spacing:-0.079467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls1c{letter-spacing:0.071467pt;}
.ls11{letter-spacing:0.097067pt;}
.ls2b{letter-spacing:0.097280pt;}
.ls12{letter-spacing:0.110080pt;}
.ls5{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.135467pt;}
.ls7{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls2a{letter-spacing:0.232960pt;}
.ls9{letter-spacing:0.233067pt;}
.ls25{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.368533pt;}
.lsb{letter-spacing:0.504533pt;}
.ls14{letter-spacing:0.640000pt;}
.ls37{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls15{letter-spacing:4.160000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls17{letter-spacing:5.120000pt;}
.ls3c{letter-spacing:5.866667pt;}
.ls28{letter-spacing:7.040000pt;}
.ls10{letter-spacing:7.680000pt;}
.ls40{letter-spacing:8.320000pt;}
.ls4{letter-spacing:9.120000pt;}
.ls39{letter-spacing:9.600000pt;}
.ls2d{letter-spacing:12.266667pt;}
.ls18{letter-spacing:12.800000pt;}
.ls3{letter-spacing:15.520000pt;}
.ls38{letter-spacing:16.160000pt;}
.ls3a{letter-spacing:17.280000pt;}
.ls2e{letter-spacing:20.480000pt;}
.ls2c{letter-spacing:21.120000pt;}
.ls3b{letter-spacing:28.160000pt;}
.ls31{letter-spacing:28.800000pt;}
.ls2f{letter-spacing:32.000000pt;}
.ls30{letter-spacing:38.400000pt;}
.ls32{letter-spacing:39.680000pt;}
.ls21{letter-spacing:314.240000pt;}
.ls22{letter-spacing:540.960000pt;}
.ls24{letter-spacing:547.360000pt;}
.ls23{letter-spacing:587.040000pt;}
.ls1e{letter-spacing:636.320000pt;}
.ls27{letter-spacing:642.080000pt;}
.wsb{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.224533pt;}
.ws23{word-spacing:-15.088533pt;}
.ws13{word-spacing:-14.991467pt;}
.ws7{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.wsf{word-spacing:-14.817067pt;}
.ws14{word-spacing:-14.791467pt;}
.wsa{word-spacing:-14.720000pt;}
.ws24{word-spacing:-14.486933pt;}
.ws15{word-spacing:-14.448533pt;}
.ws10{word-spacing:-14.313067pt;}
.ws21{word-spacing:-14.176000pt;}
.ws20{word-spacing:-14.080000pt;}
.ws25{word-spacing:-13.946667pt;}
.ws22{word-spacing:-13.808000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws1a{word-spacing:-13.463467pt;}
.ws17{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.049067pt;}
.ws1{word-spacing:-12.960000pt;}
.ws26{word-spacing:-12.896000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.040000pt;}
.ws1c{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.480533pt;}
.ws1d{word-spacing:-10.400000pt;}
.wsd{word-spacing:-9.280000pt;}
.ws11{word-spacing:-9.200533pt;}
.ws18{word-spacing:-8.640000pt;}
.ws12{word-spacing:-8.560000pt;}
.ws1e{word-spacing:-6.720000pt;}
.ws0{word-spacing:0.000000pt;}
._27{margin-left:-2.940160pt;}
._1{margin-left:-1.912320pt;}
._2{margin-left:-0.956160pt;}
._0{width:1.752960pt;}
._3{width:2.682027pt;}
._e{width:3.984000pt;}
._8{width:5.280000pt;}
._9{width:6.683520pt;}
._c{width:7.920640pt;}
._11{width:8.849920pt;}
._5{width:9.740800pt;}
._7{width:10.662400pt;}
._6{width:11.726720pt;}
._12{width:13.333760pt;}
._d{width:14.236160pt;}
._4{width:15.351680pt;}
._16{width:16.459520pt;}
._15{width:17.368320pt;}
._18{width:18.351360pt;}
._17{width:19.430400pt;}
._b{width:21.200000pt;}
._a{width:22.512640pt;}
._1a{width:23.470080pt;}
._19{width:24.376320pt;}
._20{width:26.260480pt;}
._21{width:27.656960pt;}
._1c{width:29.304320pt;}
._1b{width:30.205440pt;}
._23{width:31.202347pt;}
._22{width:32.325120pt;}
._1d{width:34.046720pt;}
._1e{width:35.078400pt;}
._1f{width:37.035520pt;}
._24{width:38.036480pt;}
._25{width:39.006720pt;}
._26{width:40.075307pt;}
._28{width:64.768000pt;}
._29{width:65.852160pt;}
._10{width:398.880000pt;}
._14{width:624.320000pt;}
._13{width:929.281067pt;}
._f{width:1141.066667pt;}
.fsd{font-size:26.880000pt;}
.fsb{font-size:34.560000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y21c{bottom:2.240000pt;}
.y170{bottom:2.880000pt;}
.y1b6{bottom:2.906667pt;}
.y221{bottom:14.400000pt;}
.y22a{bottom:14.440000pt;}
.y21f{bottom:14.560000pt;}
.y1f6{bottom:18.080000pt;}
.y1d0{bottom:18.240000pt;}
.y1f5{bottom:33.440000pt;}
.y1cf{bottom:33.600000pt;}
.y1ce{bottom:48.960000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y22{bottom:123.790666pt;}
.y19{bottom:175.052000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y51{bottom:247.386667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y4d{bottom:286.306667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.yd3{bottom:287.586667pt;}
.y7c{bottom:289.186667pt;}
.ya9{bottom:290.786667pt;}
.y126{bottom:292.226667pt;}
.y17a{bottom:293.346667pt;}
.y1e6{bottom:294.146667pt;}
.y1f2{bottom:294.626667pt;}
.yf3{bottom:295.266667pt;}
.y148{bottom:296.866667pt;}
.y1c0{bottom:299.586667pt;}
.y135{bottom:299.906667pt;}
.y242{bottom:300.546667pt;}
.y4c{bottom:301.666667pt;}
.y158{bottom:303.266667pt;}
.yd2{bottom:304.546667pt;}
.y7b{bottom:305.986667pt;}
.ya8{bottom:307.586667pt;}
.y125{bottom:309.186667pt;}
.y10{bottom:309.452000pt;}
.y1f1{bottom:309.986667pt;}
.y179{bottom:310.146667pt;}
.y1e5{bottom:311.106667pt;}
.yf2{bottom:312.226667pt;}
.y147{bottom:313.666667pt;}
.y21a{bottom:314.146667pt;}
.y1bf{bottom:316.386667pt;}
.y134{bottom:316.866667pt;}
.y4b{bottom:317.026667pt;}
.y241{bottom:317.346667pt;}
.yd1{bottom:321.346667pt;}
.y19a{bottom:321.506667pt;}
.y4a{bottom:321.666667pt;}
.y7a{bottom:322.946667pt;}
.ya7{bottom:324.386667pt;}
.y1f0{bottom:325.346667pt;}
.y124{bottom:325.986667pt;}
.y178{bottom:327.106667pt;}
.y1e4{bottom:327.906667pt;}
.yf1{bottom:329.026667pt;}
.y146{bottom:330.626667pt;}
.y219{bottom:332.386667pt;}
.y1be{bottom:333.186667pt;}
.y49{bottom:333.506667pt;}
.y133{bottom:333.666667pt;}
.y240{bottom:334.306667pt;}
.y199{bottom:336.386667pt;}
.yd0{bottom:338.306667pt;}
.y79{bottom:339.746667pt;}
.ya6{bottom:340.226667pt;}
.y1ef{bottom:340.706667pt;}
.y123{bottom:342.786667pt;}
.yf{bottom:343.809333pt;}
.y177{bottom:343.906667pt;}
.y1e3{bottom:344.866667pt;}
.yf0{bottom:345.986667pt;}
.y145{bottom:347.426667pt;}
.y218{bottom:349.186667pt;}
.y1bd{bottom:350.146667pt;}
.y132{bottom:350.466667pt;}
.y23f{bottom:351.106667pt;}
.y198{bottom:352.866667pt;}
.y48{bottom:353.026667pt;}
.ya5{bottom:353.666667pt;}
.ycf{bottom:355.106667pt;}
.y78{bottom:356.706667pt;}
.y122{bottom:359.746667pt;}
.y176{bottom:360.866667pt;}
.y1e2{bottom:361.666667pt;}
.ye{bottom:362.706666pt;}
.yef{bottom:362.786667pt;}
.y144{bottom:364.386667pt;}
.y217{bottom:365.986667pt;}
.y1bc{bottom:366.946667pt;}
.y131{bottom:367.426667pt;}
.y197{bottom:368.066667pt;}
.y47{bottom:368.386667pt;}
.ya4{bottom:370.466667pt;}
.yce{bottom:372.066667pt;}
.y77{bottom:372.546667pt;}
.y121{bottom:376.546667pt;}
.y175{bottom:377.666667pt;}
.y1e1{bottom:378.466667pt;}
.y102{bottom:379.586667pt;}
.yee{bottom:379.906667pt;}
.y143{bottom:381.186667pt;}
.y216{bottom:382.946667pt;}
.y196{bottom:383.426667pt;}
.y46{bottom:383.586667pt;}
.y1bb{bottom:383.906667pt;}
.y130{bottom:384.226667pt;}
.y23e{bottom:384.866667pt;}
.y76{bottom:385.826667pt;}
.ya3{bottom:387.266667pt;}
.ycd{bottom:387.906667pt;}
.y157{bottom:388.866667pt;}
.y120{bottom:393.506667pt;}
.y174{bottom:394.786667pt;}
.y1e0{bottom:395.426667pt;}
.y101{bottom:396.706667pt;}
.y142{bottom:397.986667pt;}
.yed{bottom:398.306667pt;}
.y195{bottom:398.786667pt;}
.y45{bottom:398.946667pt;}
.y215{bottom:399.746667pt;}
.y1ba{bottom:400.706667pt;}
.y12f{bottom:401.186667pt;}
.ycc{bottom:401.346667pt;}
.y23d{bottom:401.666667pt;}
.y75{bottom:402.626667pt;}
.ya2{bottom:404.226667pt;}
.y156{bottom:405.666667pt;}
.y11f{bottom:410.306667pt;}
.y1df{bottom:412.226667pt;}
.y194{bottom:414.146667pt;}
.y44{bottom:414.306667pt;}
.y100{bottom:414.946667pt;}
.yec{bottom:416.706667pt;}
.y244{bottom:417.186667pt;}
.y1b9{bottom:417.666667pt;}
.y12e{bottom:417.986667pt;}
.y23c{bottom:418.626667pt;}
.ycb{bottom:418.786667pt;}
.y74{bottom:419.586667pt;}
.ya1{bottom:421.026667pt;}
.y155{bottom:422.626667pt;}
.y173{bottom:425.666667pt;}
.y11e{bottom:427.266667pt;}
.y1de{bottom:429.186667pt;}
.y193{bottom:429.506667pt;}
.y43{bottom:429.666667pt;}
.yd{bottom:430.990669pt;}
.yff{bottom:431.746667pt;}
.yca{bottom:433.346667pt;}
.y214{bottom:433.506667pt;}
.y1b8{bottom:434.466667pt;}
.yeb{bottom:434.786667pt;}
.y23b{bottom:435.426667pt;}
.y73{bottom:436.386667pt;}
.ya0{bottom:437.986667pt;}
.y243{bottom:438.146667pt;}
.y154{bottom:439.426667pt;}
.y172{bottom:441.026667pt;}
.y11d{bottom:444.066667pt;}
.y192{bottom:444.706667pt;}
.y42{bottom:445.026667pt;}
.y1dd{bottom:445.986667pt;}
.yc{bottom:446.990669pt;}
.yfe{bottom:448.706667pt;}
.yc9{bottom:450.146667pt;}
.y213{bottom:450.306667pt;}
.y1b7{bottom:451.266667pt;}
.yea{bottom:451.746667pt;}
.y23a{bottom:452.386667pt;}
.y72{bottom:453.186667pt;}
.y9f{bottom:454.786667pt;}
.y153{bottom:456.386667pt;}
.y191{bottom:460.066667pt;}
.y11c{bottom:460.866667pt;}
.y1dc{bottom:462.786667pt;}
.yb{bottom:462.990669pt;}
.y1ee{bottom:463.906667pt;}
.yfd{bottom:465.506667pt;}
.yc8{bottom:467.106667pt;}
.y212{bottom:467.266667pt;}
.y41{bottom:468.386667pt;}
.ye9{bottom:468.546667pt;}
.y239{bottom:469.186667pt;}
.y71{bottom:470.146667pt;}
.y9e{bottom:471.586667pt;}
.y152{bottom:473.186667pt;}
.y190{bottom:475.426667pt;}
.y11b{bottom:477.986667pt;}
.ya{bottom:478.990666pt;}
.y1ed{bottom:479.266667pt;}
.y1db{bottom:479.746667pt;}
.yfc{bottom:482.306667pt;}
.y40{bottom:483.586667pt;}
.yc7{bottom:483.906667pt;}
.y211{bottom:484.066667pt;}
.ye8{bottom:485.506667pt;}
.y238{bottom:485.986667pt;}
.y70{bottom:486.946667pt;}
.y9d{bottom:488.546667pt;}
.y151{bottom:489.986667pt;}
.y18f{bottom:490.786667pt;}
.y1ec{bottom:494.626667pt;}
.y9{bottom:494.990666pt;}
.y11a{bottom:496.386667pt;}
.y1da{bottom:496.546667pt;}
.y3f{bottom:498.946667pt;}
.yfb{bottom:499.266667pt;}
.yc6{bottom:500.706667pt;}
.y210{bottom:501.026667pt;}
.ye7{bottom:502.333333pt;}
.y237{bottom:503.773333pt;}
.y6f{bottom:503.933333pt;}
.y9c{bottom:505.373333pt;}
.y18e{bottom:506.173333pt;}
.y150{bottom:506.973333pt;}
.y1eb{bottom:510.013333pt;}
.y1d9{bottom:513.533333pt;}
.y3e{bottom:514.333333pt;}
.y1b5{bottom:514.653333pt;}
.y119{bottom:514.813333pt;}
.yfa{bottom:516.093333pt;}
.yc5{bottom:517.693333pt;}
.y20f{bottom:517.853333pt;}
.ye6{bottom:519.133333pt;}
.y6e{bottom:520.733333pt;}
.y9b{bottom:521.213333pt;}
.y18d{bottom:521.533333pt;}
.y14f{bottom:523.773333pt;}
.y236{bottom:524.733333pt;}
.y1ea{bottom:525.373333pt;}
.y1b4{bottom:530.013333pt;}
.y1d8{bottom:530.333333pt;}
.yf9{bottom:533.053333pt;}
.y9a{bottom:534.493333pt;}
.y20e{bottom:534.813333pt;}
.ye5{bottom:536.093333pt;}
.y18c{bottom:536.733333pt;}
.y6d{bottom:537.533333pt;}
.y3d{bottom:537.693333pt;}
.y14e{bottom:540.733333pt;}
.y235{bottom:542.173333pt;}
.y1b3{bottom:545.373333pt;}
.y1d7{bottom:547.133333pt;}
.y171{bottom:548.413333pt;}
.y118{bottom:549.853333pt;}
.yf8{bottom:550.173333pt;}
.y99{bottom:551.453333pt;}
.y20d{bottom:551.613333pt;}
.ye4{bottom:552.893333pt;}
.y3c{bottom:553.053333pt;}
.y18b{bottom:553.213333pt;}
.y234{bottom:554.013333pt;}
.y6c{bottom:554.493333pt;}
.y1e9{bottom:555.933333pt;}
.y14d{bottom:557.533333pt;}
.y1b2{bottom:560.733333pt;}
.y1d6{bottom:564.253333pt;}
.y16f{bottom:564.413333pt;}
.y233{bottom:566.333333pt;}
.y117{bottom:566.813333pt;}
.yc4{bottom:567.293333pt;}
.y98{bottom:568.253333pt;}
.yf7{bottom:568.573333pt;}
.y20c{bottom:568.733333pt;}
.ye3{bottom:569.853333pt;}
.y6b{bottom:571.293333pt;}
.y1e8{bottom:571.933333pt;}
.y8{bottom:573.786667pt;}
.y14c{bottom:574.333333pt;}
.y1b1{bottom:575.933333pt;}
.y3b{bottom:576.413333pt;}
.y232{bottom:578.493333pt;}
.yc3{bottom:580.573333pt;}
.y116{bottom:583.613333pt;}
.y141{bottom:583.933333pt;}
.y97{bottom:585.213333pt;}
.ye2{bottom:586.653333pt;}
.yf6{bottom:586.973333pt;}
.y20b{bottom:587.133333pt;}
.y18a{bottom:587.933333pt;}
.y6a{bottom:588.253333pt;}
.y231{bottom:590.813333pt;}
.y14b{bottom:591.293333pt;}
.y3a{bottom:591.613333pt;}
.y1b0{bottom:591.933333pt;}
.y7{bottom:592.685334pt;}
.yc2{bottom:597.373333pt;}
.y16e{bottom:598.973333pt;}
.y115{bottom:600.413333pt;}
.y96{bottom:602.013333pt;}
.y140{bottom:602.813333pt;}
.y230{bottom:603.133333pt;}
.ye1{bottom:603.453333pt;}
.y69{bottom:605.053333pt;}
.y20a{bottom:605.533333pt;}
.y189{bottom:606.173333pt;}
.y1e7{bottom:606.813333pt;}
.y39{bottom:606.973333pt;}
.y14a{bottom:608.093333pt;}
.y1d5{bottom:610.493333pt;}
.yc1{bottom:614.333333pt;}
.y16d{bottom:615.773333pt;}
.y114{bottom:617.373333pt;}
.y95{bottom:618.813333pt;}
.ye0{bottom:620.413333pt;}
.y68{bottom:621.853333pt;}
.y188{bottom:622.973333pt;}
.y209{bottom:623.613333pt;}
.y13f{bottom:623.773333pt;}
.y149{bottom:625.053333pt;}
.y1d4{bottom:625.853333pt;}
.y1af{bottom:626.813333pt;}
.y22f{bottom:627.613333pt;}
.y38{bottom:630.333333pt;}
.yc0{bottom:631.133333pt;}
.y16c{bottom:632.733333pt;}
.y113{bottom:634.173333pt;}
.y94{bottom:635.773333pt;}
.ydf{bottom:637.213333pt;}
.y67{bottom:638.813333pt;}
.y187{bottom:639.933333pt;}
.y208{bottom:640.573333pt;}
.y1d3{bottom:641.213333pt;}
.y13e{bottom:641.853333pt;}
.y1ae{bottom:645.053333pt;}
.y6{bottom:645.598667pt;}
.y37{bottom:645.693333pt;}
.ybf{bottom:647.933333pt;}
.y16b{bottom:649.533333pt;}
.y112{bottom:651.133333pt;}
.y22e{bottom:652.093333pt;}
.y93{bottom:652.573333pt;}
.yde{bottom:654.173333pt;}
.y66{bottom:655.613333pt;}
.y186{bottom:656.733333pt;}
.y207{bottom:657.373333pt;}
.y13d{bottom:658.653333pt;}
.y36{bottom:661.053333pt;}
.y1ad{bottom:661.853333pt;}
.ybe{bottom:664.893333pt;}
.y16a{bottom:666.333333pt;}
.y111{bottom:667.933333pt;}
.y92{bottom:668.253333pt;}
.y3{bottom:668.977329pt;}
.ydd{bottom:670.973333pt;}
.y1d2{bottom:671.933333pt;}
.y65{bottom:672.573333pt;}
.y185{bottom:673.533333pt;}
.y206{bottom:674.333333pt;}
.y13c{bottom:675.613333pt;}
.y35{bottom:676.413333pt;}
.y22d{bottom:676.733333pt;}
.y1ac{bottom:678.653333pt;}
.y91{bottom:680.253333pt;}
.ybd{bottom:681.693333pt;}
.y169{bottom:683.293333pt;}
.y110{bottom:684.733333pt;}
.y1d1{bottom:687.133333pt;}
.ydc{bottom:687.933333pt;}
.y64{bottom:689.373333pt;}
.y184{bottom:690.493333pt;}
.y205{bottom:691.133333pt;}
.y13b{bottom:692.413333pt;}
.y1ab{bottom:695.613333pt;}
.y90{bottom:697.053333pt;}
.ybc{bottom:698.653333pt;}
.y34{bottom:699.613333pt;}
.y168{bottom:700.093333pt;}
.y22c{bottom:701.213333pt;}
.y10f{bottom:701.693333pt;}
.y1cd{bottom:702.493333pt;}
.ydb{bottom:704.733333pt;}
.y63{bottom:706.333333pt;}
.y183{bottom:707.293333pt;}
.y204{bottom:707.933333pt;}
.y13a{bottom:709.373333pt;}
.y1aa{bottom:712.733333pt;}
.y8f{bottom:713.853333pt;}
.y33{bottom:714.973333pt;}
.ybb{bottom:715.453333pt;}
.y167{bottom:717.053333pt;}
.y10e{bottom:718.493333pt;}
.yda{bottom:721.533333pt;}
.y62{bottom:723.133333pt;}
.y182{bottom:724.253333pt;}
.y203{bottom:724.893333pt;}
.y22b{bottom:725.693333pt;}
.y139{bottom:726.173333pt;}
.y1a9{bottom:728.253333pt;}
.y32{bottom:730.333333pt;}
.y8e{bottom:730.813333pt;}
.yba{bottom:732.253333pt;}
.y166{bottom:733.853333pt;}
.y10d{bottom:735.453333pt;}
.yd9{bottom:738.493333pt;}
.y61{bottom:739.933333pt;}
.y181{bottom:741.053333pt;}
.y202{bottom:741.693333pt;}
.y138{bottom:743.133333pt;}
.y1a8{bottom:743.613333pt;}
.y8d{bottom:747.613333pt;}
.yb9{bottom:748.093333pt;}
.y229{bottom:750.333333pt;}
.y165{bottom:750.653333pt;}
.y10c{bottom:752.253333pt;}
.y31{bottom:753.733333pt;}
.yd8{bottom:755.333333pt;}
.y60{bottom:756.933333pt;}
.y180{bottom:758.213333pt;}
.y201{bottom:758.693333pt;}
.y1a7{bottom:759.013333pt;}
.y137{bottom:759.973333pt;}
.yb8{bottom:761.733333pt;}
.y1cc{bottom:763.813333pt;}
.y8c{bottom:764.613333pt;}
.y164{bottom:767.653333pt;}
.y30{bottom:769.093333pt;}
.y12d{bottom:772.293333pt;}
.yd7{bottom:772.453333pt;}
.y5f{bottom:773.733333pt;}
.y1a6{bottom:774.213333pt;}
.y200{bottom:775.493333pt;}
.y136{bottom:776.773333pt;}
.yb7{bottom:779.173333pt;}
.y8b{bottom:781.413333pt;}
.y2{bottom:781.661334pt;}
.y163{bottom:784.453333pt;}
.y10b{bottom:786.053333pt;}
.y228{bottom:788.453333pt;}
.y12c{bottom:789.093333pt;}
.y1a5{bottom:789.573333pt;}
.y5e{bottom:790.693333pt;}
.yd6{bottom:790.853333pt;}
.y1ff{bottom:792.293333pt;}
.y2f{bottom:793.573333pt;}
.yb6{bottom:793.733333pt;}
.y1cb{bottom:794.533333pt;}
.y8a{bottom:798.213333pt;}
.y227{bottom:800.613333pt;}
.y162{bottom:801.413333pt;}
.y10a{bottom:802.853333pt;}
.y17f{bottom:804.453333pt;}
.y1a4{bottom:804.933333pt;}
.y12b{bottom:805.893333pt;}
.y5d{bottom:807.493333pt;}
.yf5{bottom:807.813333pt;}
.yd5{bottom:809.253333pt;}
.yb5{bottom:810.533333pt;}
.y226{bottom:812.933333pt;}
.y2e{bottom:814.213333pt;}
.y89{bottom:815.173333pt;}
.y161{bottom:818.213333pt;}
.y109{bottom:819.813333pt;}
.y1a3{bottom:821.893333pt;}
.y12a{bottom:822.853333pt;}
.y5c{bottom:824.293333pt;}
.y225{bottom:825.253333pt;}
.y1ca{bottom:825.893333pt;}
.yf4{bottom:826.213333pt;}
.y1fe{bottom:826.373333pt;}
.yb4{bottom:827.493333pt;}
.y88{bottom:831.973333pt;}
.y160{bottom:835.013333pt;}
.y108{bottom:836.613333pt;}
.y2d{bottom:837.413333pt;}
.y129{bottom:839.973333pt;}
.y5b{bottom:841.253333pt;}
.yb3{bottom:844.293333pt;}
.y1fd{bottom:848.773333pt;}
.y87{bottom:848.933333pt;}
.y17e{bottom:850.373333pt;}
.y15f{bottom:851.973333pt;}
.y107{bottom:853.733333pt;}
.y1c9{bottom:856.613333pt;}
.y1a2{bottom:856.773333pt;}
.y2c{bottom:856.933333pt;}
.y5a{bottom:858.053333pt;}
.y128{bottom:858.373333pt;}
.y1{bottom:859.312000pt;}
.y1fc{bottom:859.493333pt;}
.yb2{bottom:861.093333pt;}
.y224{bottom:862.053333pt;}
.y86{bottom:865.733333pt;}
.y15e{bottom:868.773333pt;}
.y2a{bottom:871.653333pt;}
.y1c8{bottom:871.813333pt;}
.y106{bottom:872.133333pt;}
.y1fb{bottom:872.613333pt;}
.y59{bottom:875.013333pt;}
.y127{bottom:876.773333pt;}
.yb1{bottom:878.053333pt;}
.y2b{bottom:878.373333pt;}
.y17d{bottom:881.093333pt;}
.y85{bottom:882.693333pt;}
.y15d{bottom:885.733333pt;}
.y223{bottom:886.533333pt;}
.y1c7{bottom:887.173333pt;}
.y1fa{bottom:887.813333pt;}
.y105{bottom:890.533333pt;}
.y1a1{bottom:891.813333pt;}
.y58{bottom:892.613333pt;}
.y29{bottom:893.093333pt;}
.yb0{bottom:894.853333pt;}
.y17c{bottom:896.453333pt;}
.y84{bottom:899.493333pt;}
.y15c{bottom:902.533333pt;}
.y1f9{bottom:903.173333pt;}
.y1a0{bottom:908.613333pt;}
.y104{bottom:908.933333pt;}
.yaf{bottom:910.693333pt;}
.y222{bottom:911.013333pt;}
.yd4{bottom:911.813333pt;}
.y57{bottom:914.053333pt;}
.y83{bottom:915.333333pt;}
.y28{bottom:915.813333pt;}
.y1c6{bottom:917.893333pt;}
.y15b{bottom:919.333333pt;}
.yae{bottom:924.293333pt;}
.y19f{bottom:925.573333pt;}
.y103{bottom:927.333333pt;}
.y17b{bottom:927.813333pt;}
.y82{bottom:928.613333pt;}
.y1c5{bottom:933.253333pt;}
.y1f8{bottom:933.893333pt;}
.y56{bottom:935.013333pt;}
.y220{bottom:935.653333pt;}
.y15a{bottom:936.293333pt;}
.yad{bottom:941.733333pt;}
.y19e{bottom:942.373333pt;}
.y27{bottom:943.333333pt;}
.y81{bottom:945.413333pt;}
.y1c4{bottom:948.613333pt;}
.y1f7{bottom:949.253333pt;}
.y55{bottom:953.413333pt;}
.yac{bottom:956.133333pt;}
.y19d{bottom:959.333333pt;}
.y21e{bottom:960.133333pt;}
.y80{bottom:962.373333pt;}
.y1c3{bottom:963.813333pt;}
.y1f4{bottom:964.613333pt;}
.y26{bottom:971.013333pt;}
.y159{bottom:971.813333pt;}
.y54{bottom:972.293333pt;}
.yab{bottom:973.093333pt;}
.y19c{bottom:976.133333pt;}
.y7f{bottom:979.173333pt;}
.y21d{bottom:985.413333pt;}
.yaa{bottom:990.213333pt;}
.y53{bottom:992.613333pt;}
.y19b{bottom:993.253333pt;}
.y1c2{bottom:995.173333pt;}
.y7e{bottom:996.133333pt;}
.y25{bottom:996.293333pt;}
.y21b{bottom:998.213333pt;}
.y52{bottom:1009.120000pt;}
.y1f3{bottom:1010.560000pt;}
.y24{bottom:1011.680000pt;}
.y7d{bottom:1012.960000pt;}
.y1c1{bottom:1014.080000pt;}
.y23{bottom:1027.040000pt;}
.y50{bottom:1029.440000pt;}
.y4f{bottom:1046.720000pt;}
.y4e{bottom:1062.080000pt;}
.h27{height:12.160000pt;}
.h2a{height:12.320000pt;}
.h25{height:12.352000pt;}
.h1d{height:15.200000pt;}
.h1e{height:15.360000pt;}
.h1f{height:15.392000pt;}
.h28{height:24.480000pt;}
.h2b{height:24.512000pt;}
.h29{height:24.640000pt;}
.h7{height:28.560000pt;}
.h23{height:30.720000pt;}
.h14{height:33.918750pt;}
.h18{height:36.431250pt;}
.h6{height:40.800000pt;}
.he{height:42.063437pt;}
.h17{height:42.084375pt;}
.h3{height:42.840000pt;}
.h26{height:43.215000pt;}
.h12{height:44.301250pt;}
.h24{height:45.952000pt;}
.hd{height:47.109375pt;}
.h2c{height:48.375000pt;}
.h2{height:48.960000pt;}
.h16{height:49.105000pt;}
.h22{height:52.108438pt;}
.h11{height:52.134375pt;}
.h20{height:52.478750pt;}
.h9{height:53.535000pt;}
.h1c{height:57.758750pt;}
.hf{height:57.787500pt;}
.h13{height:58.563750pt;}
.h1b{height:59.340000pt;}
.h21{height:61.312000pt;}
.h1a{height:62.781250pt;}
.h15{height:62.812500pt;}
.h19{height:64.500000pt;}
.h5{height:69.360000pt;}
.hb{height:73.490625pt;}
.hc{height:73.989375pt;}
.h10{height:75.465000pt;}
.ha{height:96.750000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:40.672000pt;}
.w25{width:40.800000pt;}
.w22{width:41.120000pt;}
.w29{width:43.520000pt;}
.w27{width:43.680000pt;}
.w28{width:43.712000pt;}
.w23{width:48.320000pt;}
.w26{width:48.352000pt;}
.w8{width:58.880000pt;}
.w7{width:58.912000pt;}
.w9{width:59.040000pt;}
.wf{width:59.392000pt;}
.w10{width:59.520000pt;}
.w11{width:59.552000pt;}
.w14{width:59.840000pt;}
.w13{width:61.152000pt;}
.w12{width:62.560000pt;}
.wa{width:73.920000pt;}
.w6{width:79.040000pt;}
.we{width:84.320000pt;}
.w1b{width:114.432000pt;}
.w21{width:128.992000pt;}
.w1e{width:129.952000pt;}
.w1c{width:130.720000pt;}
.w1d{width:130.752000pt;}
.w1f{width:131.200000pt;}
.w20{width:131.232000pt;}
.wd{width:143.706667pt;}
.wc{width:143.866667pt;}
.wb{width:144.346667pt;}
.w18{width:146.426667pt;}
.w16{width:158.586667pt;}
.w1a{width:170.426667pt;}
.w17{width:173.626667pt;}
.w19{width:188.986667pt;}
.w2a{width:495.293333pt;}
.w15{width:505.853333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.920000pt;}
.x50{left:4.800000pt;}
.x51{left:5.760000pt;}
.x27{left:7.200000pt;}
.x2c{left:8.160000pt;}
.x12{left:9.760000pt;}
.x52{left:10.720000pt;}
.x14{left:11.680000pt;}
.x1a{left:12.800000pt;}
.x19{left:14.280000pt;}
.x10{left:16.160000pt;}
.x1b{left:17.760000pt;}
.x1d{left:20.320000pt;}
.x2d{left:22.280000pt;}
.x23{left:23.520000pt;}
.x30{left:25.280000pt;}
.x40{left:27.040000pt;}
.x37{left:30.720000pt;}
.xe{left:39.520000pt;}
.x3d{left:41.600000pt;}
.x43{left:42.880000pt;}
.x3f{left:43.866667pt;}
.x3e{left:46.106667pt;}
.x3a{left:47.840000pt;}
.x3c{left:49.280000pt;}
.x3b{left:50.240000pt;}
.x2e{left:52.320000pt;}
.x2f{left:53.920000pt;}
.x1f{left:55.880000pt;}
.x21{left:58.426667pt;}
.x24{left:62.120000pt;}
.x41{left:63.706667pt;}
.x25{left:65.306667pt;}
.x26{left:68.506667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1c{left:144.026667pt;}
.x44{left:149.306667pt;}
.x5{left:151.226655pt;}
.x9{left:155.546655pt;}
.xa{left:163.386655pt;}
.xd{left:172.666655pt;}
.x4e{left:176.680000pt;}
.x4{left:180.874667pt;}
.x53{left:184.040000pt;}
.x54{left:188.986655pt;}
.x45{left:190.426667pt;}
.x1e{left:217.946667pt;}
.x28{left:228.346667pt;}
.xf{left:230.266667pt;}
.x46{left:238.746667pt;}
.xc{left:251.746655pt;}
.x36{left:258.466667pt;}
.x47{left:279.426667pt;}
.x29{left:287.746667pt;}
.x11{left:289.186667pt;}
.x33{left:290.466667pt;}
.x31{left:302.626667pt;}
.x35{left:314.306655pt;}
.x48{left:327.746667pt;}
.x8{left:343.266655pt;}
.x13{left:348.066667pt;}
.x20{left:362.306667pt;}
.x49{left:376.066667pt;}
.x38{left:389.186667pt;}
.xb{left:396.866655pt;}
.x3{left:404.408000pt;}
.x15{left:406.946667pt;}
.x4a{left:416.866667pt;}
.x16{left:465.853333pt;}
.x32{left:476.253333pt;}
.x34{left:479.453333pt;}
.x22{left:506.173333pt;}
.x4b{left:513.533333pt;}
.x39{left:519.933333pt;}
.x42{left:520.893333pt;}
.x17{left:524.893333pt;}
.x2a{left:528.893333pt;}
.x4c{left:557.213333pt;}
.x6{left:581.693310pt;}
.x18{left:583.773333pt;}
.x7{left:587.813322pt;}
.x2b{left:590.053333pt;}
.x4d{left:600.933333pt;}
}




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