
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_473905e7270b0e33da5b745c.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d7fa88467ec5b1a387593f4e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1088b69aa29646f7b79a3f24.woff')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_f01643fd30756c082f94b154.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5586981ea556fd85507a058d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_71fb16da3790233d595c762f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_21090eb2dd9b9db055c02096.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ef57b39de6d18a258046459.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_950a15efabd0eef2f3318db8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_863fa374908edd152982e486.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ec269a522bf75e40985ef85f.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.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);}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.810000px;}
.lsc{letter-spacing:-0.612000px;}
.ls24{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.223800px;}
.ls1e{letter-spacing:-0.181200px;}
.ls12{letter-spacing:-0.106800px;}
.ls13{letter-spacing:-0.053280px;}
.ls9{letter-spacing:-0.005040px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144720px;}
.ls16{letter-spacing:0.152640px;}
.ls1a{letter-spacing:0.156240px;}
.ls4{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.269400px;}
.ls21{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.496080px;}
.ls23{letter-spacing:0.499200px;}
.ls7{letter-spacing:0.720000px;}
.lse{letter-spacing:0.900000px;}
.ls25{letter-spacing:44.820000px;}
.ls2{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.180000px;}
.ls19{letter-spacing:119.700000px;}
.ls1d{letter-spacing:133.110720px;}
.ls1c{letter-spacing:207.990720px;}
.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;}
}
.ws13{word-spacing:-18.000000px;}
.wse{word-spacing:-16.560000px;}
.ws1b{word-spacing:-15.300000px;}
.ws1c{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.680200px;}
.ws1d{word-spacing:-14.580000px;}
.ws1e{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.888000px;}
.ws14{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.329400px;}
.ws7{word-spacing:-12.241200px;}
.ws12{word-spacing:-12.060000px;}
.ws16{word-spacing:-11.878800px;}
.ws6{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.340000px;}
.ws4{word-spacing:-11.334960px;}
.ws3{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.950480px;}
.wsc{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws15{word-spacing:-6.840000px;}
.wsd{word-spacing:0.000000px;}
.ws18{word-spacing:51.577920px;}
.ws17{word-spacing:51.962400px;}
.ws0{word-spacing:59.400000px;}
._32{margin-left:-999.384720px;}
._2a{margin-left:-994.065600px;}
._2c{margin-left:-867.964080px;}
._3a{margin-left:-806.120400px;}
._2d{margin-left:-753.620400px;}
._34{margin-left:-642.427200px;}
._38{margin-left:-603.241440px;}
._2b{margin-left:-455.964720px;}
._2f{margin-left:-453.263280px;}
._36{margin-left:-306.583920px;}
._35{margin-left:-264.002880px;}
._31{margin-left:-255.946800px;}
._39{margin-left:-238.276080px;}
._3b{margin-left:-234.175680px;}
._37{margin-left:-230.220000px;}
._33{margin-left:-222.163920px;}
._3e{margin-left:-208.483920px;}
._2e{margin-left:-203.446800px;}
._30{margin-left:-163.470720px;}
._3f{margin-left:-133.423920px;}
._3c{margin-left:-131.680080px;}
._3d{margin-left:-63.360000px;}
._5{margin-left:-59.580000px;}
._48{margin-left:-4.091760px;}
._10{margin-left:-2.988000px;}
._2{margin-left:-1.046400px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._9{width:3.525840px;}
._23{width:4.601520px;}
._b{width:5.617440px;}
._f{width:6.752880px;}
._e{width:8.127360px;}
._28{width:9.203040px;}
._15{width:10.314000px;}
._16{width:11.502000px;}
._1a{width:12.908160px;}
._40{width:13.933680px;}
._a{width:16.015680px;}
._11{width:17.302320px;}
._13{width:18.557280px;}
._12{width:19.780560px;}
._7{width:21.394080px;}
._8{width:22.680720px;}
._22{width:24.740640px;}
._1c{width:26.234640px;}
._14{width:28.206720px;}
._c{width:29.461680px;}
._d{width:31.144080px;}
._1b{width:33.225120px;}
._19{width:34.302240px;}
._18{width:35.437680px;}
._1f{width:36.672240px;}
._4e{width:37.700880px;}
._20{width:38.965920px;}
._47{width:40.696560px;}
._26{width:41.951520px;}
._24{width:43.565040px;}
._1d{width:45.150480px;}
._1e{width:46.493280px;}
._50{width:47.815200px;}
._49{width:49.242240px;}
._46{width:50.377680px;}
._54{width:52.887600px;}
._27{width:53.963280px;}
._4b{width:57.130560px;}
._4f{width:58.626480px;}
._52{width:59.700240px;}
._53{width:60.927120px;}
._4d{width:64.347600px;}
._3{width:65.496000px;}
._21{width:66.524400px;}
._45{width:69.950880px;}
._29{width:73.656000px;}
._4c{width:75.118320px;}
._25{width:76.970880px;}
._56{width:80.915040px;}
._42{width:83.515200px;}
._41{width:84.961200px;}
._44{width:86.293440px;}
._43{width:87.428880px;}
._4a{width:92.787840px;}
._55{width:109.898640px;}
._4{width:199.620000px;}
._51{width:252.106560px;}
._17{width:282.270000px;}
._6{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fsf{font-size:27.360000px;}
.fs8{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs1{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs10{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y45{bottom:-247.710000px;}
.y44{bottom:-213.870000px;}
.y43{bottom:-180.210000px;}
.y42{bottom:-146.340000px;}
.y7c{bottom:-143.310000px;}
.y41{bottom:-112.680000px;}
.y7b{bottom:-109.605000px;}
.y40{bottom:-78.840000px;}
.y7a{bottom:-75.765000px;}
.y3f{bottom:-45.180000px;}
.y79{bottom:-42.105000px;}
.y48{bottom:-27.180000px;}
.y7e{bottom:-17.922750px;}
.y3e{bottom:-11.520000px;}
.y78{bottom:-8.265000px;}
.y0{bottom:0.000000px;}
.y1f2{bottom:1.837500px;}
.y16b{bottom:2.895000px;}
.y167{bottom:3.075000px;}
.y3{bottom:3.960000px;}
.y161{bottom:3.975000px;}
.y6c{bottom:4.500000px;}
.y149{bottom:4.665000px;}
.y159{bottom:4.680000px;}
.y147{bottom:4.845000px;}
.y127{bottom:4.860000px;}
.y47{bottom:5.040000px;}
.y12b{bottom:5.070000px;}
.y10e{bottom:5.220000px;}
.y12e{bottom:5.235000px;}
.y134{bottom:5.415000px;}
.y102{bottom:5.565000px;}
.y6e{bottom:5.580000px;}
.y106{bottom:5.745000px;}
.y65{bottom:6.495000px;}
.y3d{bottom:6.840000px;}
.y11f{bottom:7.200000px;}
.yfc{bottom:8.985000px;}
.y120{bottom:9.720000px;}
.y164{bottom:9.900000px;}
.y162{bottom:10.620000px;}
.y15f{bottom:11.520000px;}
.y6{bottom:12.600000px;}
.y129{bottom:13.140000px;}
.y130{bottom:13.320000px;}
.y125{bottom:13.500000px;}
.y141{bottom:14.220000px;}
.yf8{bottom:14.760000px;}
.y103{bottom:16.005000px;}
.y169{bottom:16.740000px;}
.y165{bottom:16.920000px;}
.y6b{bottom:17.640000px;}
.y10d{bottom:19.080000px;}
.y101{bottom:19.425000px;}
.y105{bottom:19.605000px;}
.y142{bottom:20.160000px;}
.y3c{bottom:20.880000px;}
.y137{bottom:21.060000px;}
.y145{bottom:21.225000px;}
.y132{bottom:21.240000px;}
.y12c{bottom:21.270000px;}
.y153{bottom:21.405000px;}
.y122{bottom:21.420000px;}
.y64{bottom:21.435000px;}
.y7{bottom:21.960000px;}
.yfb{bottom:22.665000px;}
.y4{bottom:23.220000px;}
.y5{bottom:24.660000px;}
.y77{bottom:25.395000px;}
.yfd{bottom:26.265000px;}
.y124{bottom:29.340000px;}
.y14e{bottom:29.685000px;}
.y6a{bottom:30.600000px;}
.y10c{bottom:32.940000px;}
.y63{bottom:33.675000px;}
.y3b{bottom:34.740000px;}
.y10f{bottom:36.180000px;}
.yfa{bottom:36.570000px;}
.y69{bottom:43.560000px;}
.y10b{bottom:46.650000px;}
.y80{bottom:46.980000px;}
.y3a{bottom:47.520000px;}
.y62{bottom:51.675000px;}
.y76{bottom:56.355000px;}
.y68{bottom:56.700000px;}
.y2{bottom:57.420000px;}
.y10a{bottom:60.510000px;}
.y7d{bottom:63.780000px;}
.y75{bottom:69.315000px;}
.y61{bottom:69.495000px;}
.y67{bottom:73.620000px;}
.y74{bottom:82.455000px;}
.y60{bottom:84.795000px;}
.y73{bottom:95.415000px;}
.y5f{bottom:97.215000px;}
.yba{bottom:97.380000px;}
.y15c{bottom:97.740000px;}
.yd0{bottom:102.420000px;}
.y196{bottom:102.600000px;}
.yb2{bottom:103.680000px;}
.y1b1{bottom:103.860000px;}
.y110{bottom:106.380000px;}
.yb9{bottom:107.280000px;}
.y72{bottom:108.585000px;}
.y15b{bottom:109.800000px;}
.yff{bottom:110.325000px;}
.ydd{bottom:113.220000px;}
.y5e{bottom:115.035000px;}
.yb8{bottom:120.420000px;}
.y109{bottom:120.780000px;}
.y71{bottom:121.545000px;}
.y15a{bottom:121.860000px;}
.ycf{bottom:122.220000px;}
.y195{bottom:122.400000px;}
.yb1{bottom:123.480000px;}
.y1b0{bottom:123.660000px;}
.ydc{bottom:126.180000px;}
.y38{bottom:129.780000px;}
.y1cd{bottom:130.860000px;}
.y5d{bottom:132.855000px;}
.y156{bottom:133.560000px;}
.y1f1{bottom:133.920000px;}
.y70{bottom:133.965000px;}
.yb7{bottom:140.400000px;}
.yce{bottom:142.020000px;}
.yb0{bottom:143.280000px;}
.y1af{bottom:143.460000px;}
.ydb{bottom:145.980000px;}
.y37{bottom:149.580000px;}
.y158{bottom:150.300000px;}
.y1cc{bottom:150.660000px;}
.y5c{bottom:150.855000px;}
.y1f0{bottom:153.720000px;}
.yb6{bottom:160.200000px;}
.y194{bottom:161.100000px;}
.ycd{bottom:161.820000px;}
.yaf{bottom:163.110000px;}
.y1ae{bottom:163.290000px;}
.yda{bottom:165.810000px;}
.y157{bottom:166.905000px;}
.y5b{bottom:168.675000px;}
.y36{bottom:169.410000px;}
.y1cb{bottom:170.490000px;}
.y1ef{bottom:173.550000px;}
.yb5{bottom:180.030000px;}
.y193{bottom:180.930000px;}
.ycc{bottom:181.650000px;}
.yae{bottom:183.090000px;}
.y152{bottom:183.465000px;}
.yd9{bottom:185.610000px;}
.y5a{bottom:186.495000px;}
.y35{bottom:189.390000px;}
.y1ca{bottom:191.190000px;}
.y1ee{bottom:193.530000px;}
.yfe{bottom:195.165000px;}
.y155{bottom:200.205000px;}
.yb4{bottom:200.730000px;}
.ycb{bottom:201.630000px;}
.yad{bottom:202.890000px;}
.y59{bottom:204.315000px;}
.yd8{bottom:205.590000px;}
.y34{bottom:209.190000px;}
.y1ed{bottom:213.330000px;}
.y154{bottom:216.765000px;}
.y58{bottom:217.665000px;}
.y192{bottom:220.530000px;}
.yca{bottom:221.430000px;}
.yb3{bottom:221.610000px;}
.yac{bottom:222.690000px;}
.y1ad{bottom:222.870000px;}
.yd7{bottom:225.390000px;}
.y57{bottom:226.485000px;}
.y108{bottom:228.825000px;}
.y33{bottom:228.990000px;}
.y1c9{bottom:232.230000px;}
.y1ec{bottom:233.130000px;}
.y14d{bottom:233.325000px;}
.y191{bottom:240.330000px;}
.yc9{bottom:241.230000px;}
.yab{bottom:242.490000px;}
.y1ac{bottom:242.670000px;}
.y56{bottom:244.305000px;}
.yd6{bottom:245.190000px;}
.y32{bottom:248.790000px;}
.y151{bottom:250.065000px;}
.y1c8{bottom:252.030000px;}
.y1eb{bottom:252.930000px;}
.y190{bottom:260.310000px;}
.yc8{bottom:261.030000px;}
.yaa{bottom:262.290000px;}
.y55{bottom:262.305000px;}
.y1ab{bottom:262.470000px;}
.y107{bottom:262.665000px;}
.yd5{bottom:264.990000px;}
.y150{bottom:266.625000px;}
.y31{bottom:268.590000px;}
.y1c7{bottom:271.830000px;}
.y1ea{bottom:272.730000px;}
.y18f{bottom:280.110000px;}
.y54{bottom:280.125000px;}
.yc7{bottom:280.830000px;}
.ya9{bottom:282.270000px;}
.y14f{bottom:283.185000px;}
.yd4{bottom:284.790000px;}
.y30{bottom:288.570000px;}
.y1c6{bottom:292.530000px;}
.y1e9{bottom:292.710000px;}
.y104{bottom:296.325000px;}
.y53{bottom:297.945000px;}
.y18e{bottom:299.910000px;}
.y14a{bottom:299.925000px;}
.yc6{bottom:300.810000px;}
.ya8{bottom:302.070000px;}
.yd3{bottom:304.770000px;}
.y2f{bottom:308.370000px;}
.y1e8{bottom:312.510000px;}
.y52{bottom:315.765000px;}
.y1c5{bottom:316.290000px;}
.y14c{bottom:316.485000px;}
.y18d{bottom:319.710000px;}
.yc5{bottom:320.610000px;}
.ya7{bottom:321.870000px;}
.y1aa{bottom:322.050000px;}
.yd2{bottom:324.570000px;}
.y2e{bottom:328.170000px;}
.y100{bottom:330.165000px;}
.y1e7{bottom:332.310000px;}
.y14b{bottom:333.045000px;}
.y51{bottom:333.585000px;}
.y18c{bottom:339.510000px;}
.yc4{bottom:341.310000px;}
.ya6{bottom:341.670000px;}
.y1a9{bottom:341.850000px;}
.yd1{bottom:344.370000px;}
.y2d{bottom:347.970000px;}
.y144{bottom:349.785000px;}
.y50{bottom:351.585000px;}
.y1e6{bottom:352.110000px;}
.y1c4{bottom:357.330000px;}
.y18b{bottom:359.490000px;}
.ya5{bottom:361.470000px;}
.y1a8{bottom:361.650000px;}
.yf9{bottom:363.825000px;}
.y148{bottom:366.345000px;}
.y2c{bottom:367.770000px;}
.y4f{bottom:369.405000px;}
.y1e5{bottom:371.910000px;}
.y1c3{bottom:377.130000px;}
.y18a{bottom:379.290000px;}
.ya4{bottom:381.450000px;}
.y4e{bottom:382.725000px;}
.y146{bottom:382.905000px;}
.y2b{bottom:388.650000px;}
.yc3{bottom:388.830000px;}
.y4d{bottom:391.545000px;}
.y1e4{bottom:391.890000px;}
.y1c2{bottom:396.975000px;}
.y189{bottom:399.135000px;}
.y143{bottom:401.100000px;}
.y140{bottom:401.115000px;}
.ya3{bottom:401.295000px;}
.yc2{bottom:404.355000px;}
.y2a{bottom:405.975000px;}
.y4c{bottom:409.365000px;}
.y1e3{bottom:411.735000px;}
.y49{bottom:412.080000px;}
.y29{bottom:414.435000px;}
.y1c1{bottom:416.775000px;}
.y188{bottom:418.935000px;}
.yf7{bottom:419.475000px;}
.ya2{bottom:421.095000px;}
.y1a7{bottom:421.275000px;}
.y4b{bottom:427.185000px;}
.y1e2{bottom:431.535000px;}
.y1c0{bottom:436.575000px;}
.y28{bottom:438.195000px;}
.y187{bottom:438.735000px;}
.ya1{bottom:440.895000px;}
.y1a6{bottom:441.075000px;}
.y13f{bottom:443.775000px;}
.y4a{bottom:445.050000px;}
.y1e1{bottom:451.335000px;}
.y1bf{bottom:456.555000px;}
.yf6{bottom:458.175000px;}
.y186{bottom:458.715000px;}
.ya0{bottom:460.695000px;}
.y1a5{bottom:460.875000px;}
.y27{bottom:461.955000px;}
.y13e{bottom:462.675000px;}
.y1e0{bottom:471.135000px;}
.y1be{bottom:476.355000px;}
.yf5{bottom:476.535000px;}
.y185{bottom:478.515000px;}
.y13d{bottom:480.495000px;}
.y9f{bottom:480.675000px;}
.y26{bottom:485.895000px;}
.y1df{bottom:491.115000px;}
.y13c{bottom:492.555000px;}
.yf4{bottom:496.515000px;}
.y1bd{bottom:497.055000px;}
.y184{bottom:498.315000px;}
.y9e{bottom:500.475000px;}
.y13b{bottom:504.240000px;}
.y139{bottom:504.255000px;}
.y25{bottom:509.655000px;}
.y1de{bottom:510.915000px;}
.yf3{bottom:516.315000px;}
.y6f{bottom:517.740000px;}
.y183{bottom:518.115000px;}
.y9d{bottom:520.275000px;}
.y1a4{bottom:520.455000px;}
.y13a{bottom:520.995000px;}
.y24{bottom:530.535000px;}
.y1dd{bottom:530.715000px;}
.yf2{bottom:536.115000px;}
.y138{bottom:537.540000px;}
.y135{bottom:537.555000px;}
.y182{bottom:537.915000px;}
.y9c{bottom:540.075000px;}
.y1a3{bottom:540.255000px;}
.y23{bottom:550.335000px;}
.y1dc{bottom:550.515000px;}
.y136{bottom:554.115000px;}
.yf1{bottom:555.915000px;}
.y1bc{bottom:557.715000px;}
.y181{bottom:557.895000px;}
.y9b{bottom:559.875000px;}
.y1a2{bottom:560.055000px;}
.y22{bottom:564.015000px;}
.y1db{bottom:570.315000px;}
.y133{bottom:570.660000px;}
.y12f{bottom:570.675000px;}
.y21{bottom:572.835000px;}
.yf0{bottom:575.715000px;}
.y180{bottom:577.695000px;}
.y9a{bottom:579.855000px;}
.y131{bottom:587.415000px;}
.y1da{bottom:590.295000px;}
.yef{bottom:595.695000px;}
.y20{bottom:596.055000px;}
.y17f{bottom:597.495000px;}
.y99{bottom:599.655000px;}
.y12d{bottom:603.960000px;}
.y128{bottom:603.975000px;}
.y1d9{bottom:608.115000px;}
.yee{bottom:615.495000px;}
.y17e{bottom:617.295000px;}
.y1f{bottom:619.275000px;}
.y98{bottom:619.455000px;}
.y1a1{bottom:619.635000px;}
.y12a{bottom:620.535000px;}
.yed{bottom:635.325000px;}
.y17d{bottom:637.125000px;}
.y121{bottom:637.305000px;}
.y97{bottom:639.285000px;}
.y1a0{bottom:639.465000px;}
.y1e{bottom:642.705000px;}
.y1d8{bottom:648.825000px;}
.y126{bottom:653.865000px;}
.yec{bottom:655.125000px;}
.y1bb{bottom:656.925000px;}
.y17c{bottom:657.105000px;}
.y96{bottom:659.085000px;}
.y19f{bottom:659.265000px;}
.y1d7{bottom:668.625000px;}
.y123{bottom:670.425000px;}
.yeb{bottom:674.925000px;}
.y17b{bottom:676.905000px;}
.y95{bottom:679.065000px;}
.y66{bottom:685.905000px;}
.y1d6{bottom:688.425000px;}
.y11e{bottom:688.605000px;}
.yea{bottom:694.905000px;}
.y17a{bottom:696.705000px;}
.y1d{bottom:697.425000px;}
.y94{bottom:698.865000px;}
.y1d5{bottom:709.125000px;}
.y1c{bottom:713.085000px;}
.ye9{bottom:714.705000px;}
.y11d{bottom:715.245000px;}
.y179{bottom:716.505000px;}
.y93{bottom:718.665000px;}
.y19e{bottom:718.845000px;}
.y1b{bottom:728.565000px;}
.y11c{bottom:732.525000px;}
.ye8{bottom:734.505000px;}
.y178{bottom:736.305000px;}
.y92{bottom:738.465000px;}
.y19d{bottom:738.645000px;}
.y1a{bottom:744.045000px;}
.y1d4{bottom:750.165000px;}
.y11b{bottom:751.785000px;}
.ye7{bottom:754.305000px;}
.y1ba{bottom:756.105000px;}
.y177{bottom:756.285000px;}
.y91{bottom:758.265000px;}
.y19c{bottom:758.445000px;}
.y19{bottom:759.525000px;}
.y1d3{bottom:769.965000px;}
.y18{bottom:770.685000px;}
.y11a{bottom:772.125000px;}
.ye6{bottom:774.105000px;}
.y176{bottom:776.085000px;}
.y90{bottom:778.245000px;}
.y39{bottom:779.325000px;}
.y17{bottom:784.365000px;}
.y1d2{bottom:790.665000px;}
.y119{bottom:791.925000px;}
.ye5{bottom:794.085000px;}
.y175{bottom:795.885000px;}
.y16{bottom:797.325000px;}
.y8f{bottom:798.045000px;}
.y15{bottom:810.285000px;}
.y118{bottom:811.725000px;}
.ye4{bottom:813.885000px;}
.y174{bottom:815.685000px;}
.y8e{bottom:817.845000px;}
.y19b{bottom:818.025000px;}
.y14{bottom:823.245000px;}
.y117{bottom:831.525000px;}
.ye3{bottom:833.685000px;}
.y173{bottom:835.485000px;}
.y13{bottom:836.925000px;}
.y8d{bottom:837.645000px;}
.y19a{bottom:837.825000px;}
.y12{bottom:849.885000px;}
.y116{bottom:851.325000px;}
.ye2{bottom:853.530000px;}
.y1b9{bottom:855.330000px;}
.y172{bottom:855.510000px;}
.y8c{bottom:857.490000px;}
.y199{bottom:857.670000px;}
.y115{bottom:871.350000px;}
.ye1{bottom:873.330000px;}
.y171{bottom:875.310000px;}
.y11{bottom:876.570000px;}
.y8b{bottom:877.470000px;}
.y10{bottom:887.730000px;}
.y114{bottom:891.150000px;}
.y170{bottom:893.130000px;}
.ye0{bottom:893.310000px;}
.y1b8{bottom:895.110000px;}
.y198{bottom:896.010000px;}
.y8a{bottom:897.270000px;}
.y113{bottom:910.950000px;}
.yf{bottom:912.030000px;}
.ydf{bottom:913.110000px;}
.y197{bottom:913.290000px;}
.y1b7{bottom:914.910000px;}
.y89{bottom:917.070000px;}
.y16f{bottom:929.490000px;}
.y112{bottom:930.750000px;}
.yde{bottom:932.910000px;}
.y1b6{bottom:934.710000px;}
.ye{bottom:936.150000px;}
.y88{bottom:936.870000px;}
.y16e{bottom:941.550000px;}
.yd{bottom:947.670000px;}
.y1d1{bottom:950.550000px;}
.y111{bottom:951.450000px;}
.yc1{bottom:952.710000px;}
.y16d{bottom:953.235000px;}
.y16c{bottom:953.250000px;}
.y1b5{bottom:954.510000px;}
.y87{bottom:956.670000px;}
.yc{bottom:965.130000px;}
.y1d0{bottom:970.530000px;}
.yc0{bottom:972.510000px;}
.y1b4{bottom:974.490000px;}
.y86{bottom:976.650000px;}
.y16a{bottom:981.675000px;}
.y168{bottom:981.690000px;}
.yb{bottom:986.730000px;}
.y1cf{bottom:990.330000px;}
.ybf{bottom:992.490000px;}
.y1b3{bottom:994.290000px;}
.y85{bottom:996.450000px;}
.ya{bottom:1008.690000px;}
.y166{bottom:1009.935000px;}
.y163{bottom:1009.950000px;}
.y1ce{bottom:1011.030000px;}
.ybe{bottom:1012.290000px;}
.y1b2{bottom:1014.990000px;}
.y84{bottom:1016.250000px;}
.ybd{bottom:1032.090000px;}
.y83{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y160{bottom:1039.815000px;}
.y15e{bottom:1039.830000px;}
.ybc{bottom:1051.890000px;}
.y82{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.ybb{bottom:1072.590000px;}
.y81{bottom:1075.650000px;}
.y15d{bottom:1077.090000px;}
.y6d{bottom:1096.200000px;}
.y1{bottom:1121.220000px;}
.y7f{bottom:1123.200000px;}
.y46{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h18{height:5.805000px;}
.h5d{height:6.257812px;}
.h3{height:13.500000px;}
.h3e{height:15.825000px;}
.h39{height:15.840000px;}
.h4d{height:15.861000px;}
.h52{height:15.876000px;}
.h42{height:16.005000px;}
.h37{height:16.020000px;}
.h3b{height:16.050000px;}
.h1b{height:16.920000px;}
.h35{height:20.700000px;}
.h23{height:22.140000px;}
.h17{height:23.319141px;}
.h59{height:27.525000px;}
.h5a{height:27.531000px;}
.h5b{height:27.540000px;}
.h56{height:27.705000px;}
.h57{height:27.711000px;}
.h58{height:27.720000px;}
.h53{height:29.505000px;}
.h54{height:29.511000px;}
.h55{height:29.520000px;}
.h2b{height:29.664141px;}
.he{height:29.678906px;}
.h26{height:30.198516px;}
.h2d{height:30.945000px;}
.h10{height:30.963516px;}
.h43{height:32.385000px;}
.h44{height:32.395500px;}
.h46{height:32.400000px;}
.h3f{height:32.565000px;}
.h40{height:32.575500px;}
.h41{height:32.580000px;}
.h3a{height:32.610000px;}
.h3c{height:32.616000px;}
.h3d{height:32.625000px;}
.h30{height:32.925000px;}
.h31{height:33.105000px;}
.h5{height:34.200000px;}
.h48{height:34.905000px;}
.h49{height:34.915500px;}
.h4b{height:34.920000px;}
.h21{height:36.281250px;}
.h33{height:37.494141px;}
.h15{height:39.503370px;}
.h6{height:40.985156px;}
.h22{height:42.086250px;}
.h5c{height:43.215117px;}
.h29{height:43.737568px;}
.h12{height:44.518359px;}
.hd{height:45.116367px;}
.h1a{height:45.714375px;}
.h13{height:46.622932px;}
.h14{height:47.344922px;}
.h45{height:47.678906px;}
.h1c{height:48.616875px;}
.h4e{height:48.945000px;}
.h4c{height:48.981000px;}
.h50{height:49.125000px;}
.h38{height:49.135500px;}
.h36{height:49.140000px;}
.h51{height:49.176000px;}
.h4a{height:50.218594px;}
.h16{height:52.998047px;}
.h2e{height:53.301000px;}
.h1d{height:54.421875px;}
.h11{height:55.291992px;}
.h1f{height:55.503491px;}
.h19{height:57.780000px;}
.h28{height:58.621992px;}
.h4{height:58.651172px;}
.h2c{height:60.226875px;}
.h34{height:61.423863px;}
.hc{height:65.010937px;}
.h4f{height:65.685000px;}
.h2{height:65.884219px;}
.h47{height:66.757500px;}
.hf{height:67.824844px;}
.h2a{height:70.628906px;}
.hb{height:72.562500px;}
.h32{height:73.656000px;}
.h24{height:74.953125px;}
.h27{height:75.093750px;}
.h20{height:81.720000px;}
.h8{height:87.695156px;}
.h9{height:96.508125px;}
.ha{height:99.687656px;}
.h25{height:144.945000px;}
.h2f{height:221.955000px;}
.h1e{height:457.275000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w3{width:82.071000px;}
.wd{width:87.696000px;}
.w16{width:94.521000px;}
.w17{width:101.376000px;}
.w15{width:114.291000px;}
.w13{width:144.030000px;}
.w11{width:144.036000px;}
.w14{width:144.045000px;}
.w10{width:144.180000px;}
.w12{width:144.201000px;}
.wf{width:144.202500px;}
.w5{width:154.470000px;}
.w1c{width:180.021000px;}
.w1f{width:180.195000px;}
.w1d{width:180.210000px;}
.w1e{width:180.225000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w1a{width:194.430000px;}
.w19{width:216.015000px;}
.w18{width:216.030000px;}
.we{width:267.141000px;}
.wc{width:354.846000px;}
.wb{width:365.820000px;}
.w7{width:532.740000px;}
.w1b{width:606.375000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x50{left:4.252500px;}
.x2{left:8.091000px;}
.x2e{left:9.180000px;}
.x10{left:10.791000px;}
.x23{left:14.220000px;}
.x21{left:15.300000px;}
.x24{left:18.540000px;}
.x22{left:19.620000px;}
.x16{left:21.255000px;}
.x28{left:23.760000px;}
.x39{left:25.950000px;}
.x41{left:27.930000px;}
.x3e{left:29.550000px;}
.x44{left:31.890000px;}
.x46{left:33.150000px;}
.x2a{left:35.670000px;}
.x49{left:41.220000px;}
.x35{left:44.640000px;}
.x32{left:47.010000px;}
.x31{left:48.600000px;}
.x30{left:50.070000px;}
.x33{left:52.950000px;}
.x36{left:54.360000px;}
.x37{left:56.010000px;}
.x2f{left:57.960000px;}
.x34{left:59.760000px;}
.x43{left:60.840000px;}
.x2c{left:62.490000px;}
.x3f{left:63.900000px;}
.x4d{left:67.155000px;}
.x4e{left:68.580000px;}
.x4c{left:71.460000px;}
.x3{left:73.965000px;}
.x3c{left:79.365000px;}
.x14{left:80.505000px;}
.x11{left:81.765000px;}
.x4f{left:88.020000px;}
.xf{left:93.105000px;}
.x13{left:94.365000px;}
.x42{left:97.365000px;}
.x26{left:101.916000px;}
.x1{left:108.036000px;}
.x1b{left:115.776000px;}
.x7{left:119.556000px;}
.x1c{left:128.376000px;}
.xc{left:132.696000px;}
.x6{left:137.736000px;}
.x25{left:151.590000px;}
.x18{left:160.590000px;}
.x1e{left:162.030000px;}
.xb{left:173.010000px;}
.x4{left:190.125000px;}
.x9{left:193.170000px;}
.x38{left:222.345000px;}
.x19{left:232.230000px;}
.x1a{left:236.010000px;}
.x27{left:252.255000px;}
.x48{left:288.075000px;}
.x12{left:303.015000px;}
.x15{left:310.350000px;}
.x3a{left:316.875000px;}
.x20{left:375.915000px;}
.x29{left:396.435000px;}
.x3b{left:418.245000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.xa{left:459.105000px;}
.x1f{left:463.620000px;}
.x4a{left:468.300000px;}
.xd{left:489.165000px;}
.xe{left:490.785000px;}
.x45{left:501.945000px;}
.x40{left:504.825000px;}
.x47{left:507.885000px;}
.x2b{left:540.480000px;}
.x17{left:620.253000px;}
.x3d{left:634.290000px;}
.x4b{left:648.510000px;}
.x2d{left:684.690000px;}
.x1d{left:797.760000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.720000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.198933pt;}
.ls1e{letter-spacing:-0.161067pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:-0.004480pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128640pt;}
.ls16{letter-spacing:0.135680pt;}
.ls1a{letter-spacing:0.138880pt;}
.ls4{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.239467pt;}
.ls21{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.440960pt;}
.ls23{letter-spacing:0.443733pt;}
.ls7{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.800000pt;}
.ls25{letter-spacing:39.840000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.160000pt;}
.ls19{letter-spacing:106.400000pt;}
.ls1d{letter-spacing:118.320640pt;}
.ls1c{letter-spacing:184.880640pt;}
.ws13{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-13.600000pt;}
.ws1c{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.232640pt;}
.ws10{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.049067pt;}
.ws1d{word-spacing:-12.960000pt;}
.ws1e{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.456000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.959467pt;}
.ws7{word-spacing:-10.881067pt;}
.ws12{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.558933pt;}
.ws6{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.080000pt;}
.ws4{word-spacing:-10.075520pt;}
.ws3{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.733760pt;}
.wsc{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws15{word-spacing:-6.080000pt;}
.wsd{word-spacing:0.000000pt;}
.ws18{word-spacing:45.847040pt;}
.ws17{word-spacing:46.188800pt;}
.ws0{word-spacing:52.800000pt;}
._32{margin-left:-888.341973pt;}
._2a{margin-left:-883.613867pt;}
._2c{margin-left:-771.523627pt;}
._3a{margin-left:-716.551467pt;}
._2d{margin-left:-669.884800pt;}
._34{margin-left:-571.046400pt;}
._38{margin-left:-536.214613pt;}
._2b{margin-left:-405.301973pt;}
._2f{margin-left:-402.900693pt;}
._36{margin-left:-272.519040pt;}
._35{margin-left:-234.669227pt;}
._31{margin-left:-227.508267pt;}
._39{margin-left:-211.800960pt;}
._3b{margin-left:-208.156160pt;}
._37{margin-left:-204.640000pt;}
._33{margin-left:-197.479040pt;}
._3e{margin-left:-185.319040pt;}
._2e{margin-left:-180.841600pt;}
._30{margin-left:-145.307307pt;}
._3f{margin-left:-118.599040pt;}
._3c{margin-left:-117.048960pt;}
._3d{margin-left:-56.320000pt;}
._5{margin-left:-52.960000pt;}
._48{margin-left:-3.637120pt;}
._10{margin-left:-2.656000pt;}
._2{margin-left:-0.930133pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._9{width:3.134080pt;}
._23{width:4.090240pt;}
._b{width:4.993280pt;}
._f{width:6.002560pt;}
._e{width:7.224320pt;}
._28{width:8.180480pt;}
._15{width:9.168000pt;}
._16{width:10.224000pt;}
._1a{width:11.473920pt;}
._40{width:12.385493pt;}
._a{width:14.236160pt;}
._11{width:15.379840pt;}
._13{width:16.495360pt;}
._12{width:17.582720pt;}
._7{width:19.016960pt;}
._8{width:20.160640pt;}
._22{width:21.991680pt;}
._1c{width:23.319680pt;}
._14{width:25.072640pt;}
._c{width:26.188160pt;}
._d{width:27.683627pt;}
._1b{width:29.533440pt;}
._19{width:30.490880pt;}
._18{width:31.500160pt;}
._1f{width:32.597547pt;}
._4e{width:33.511893pt;}
._20{width:34.636373pt;}
._47{width:36.174720pt;}
._26{width:37.290240pt;}
._24{width:38.724480pt;}
._1d{width:40.133760pt;}
._1e{width:41.327360pt;}
._50{width:42.502400pt;}
._49{width:43.770880pt;}
._46{width:44.780160pt;}
._54{width:47.011200pt;}
._27{width:47.967360pt;}
._4b{width:50.782720pt;}
._4f{width:52.112427pt;}
._52{width:53.066880pt;}
._53{width:54.157440pt;}
._4d{width:57.197867pt;}
._3{width:58.218667pt;}
._21{width:59.132800pt;}
._45{width:62.178560pt;}
._29{width:65.472000pt;}
._4c{width:66.771840pt;}
._25{width:68.418560pt;}
._56{width:71.924480pt;}
._42{width:74.235733pt;}
._41{width:75.521067pt;}
._44{width:76.705280pt;}
._43{width:77.714560pt;}
._4a{width:82.478080pt;}
._55{width:97.687680pt;}
._4{width:177.440000pt;}
._51{width:224.094720pt;}
._17{width:250.906667pt;}
._6{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fsf{font-size:24.320000pt;}
.fs8{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs1{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs10{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y45{bottom:-220.186667pt;}
.y44{bottom:-190.106667pt;}
.y43{bottom:-160.186667pt;}
.y42{bottom:-130.080000pt;}
.y7c{bottom:-127.386667pt;}
.y41{bottom:-100.160000pt;}
.y7b{bottom:-97.426667pt;}
.y40{bottom:-70.080000pt;}
.y7a{bottom:-67.346667pt;}
.y3f{bottom:-40.160000pt;}
.y79{bottom:-37.426667pt;}
.y48{bottom:-24.160000pt;}
.y7e{bottom:-15.931333pt;}
.y3e{bottom:-10.240000pt;}
.y78{bottom:-7.346667pt;}
.y0{bottom:0.000000pt;}
.y1f2{bottom:1.633333pt;}
.y16b{bottom:2.573333pt;}
.y167{bottom:2.733333pt;}
.y3{bottom:3.520000pt;}
.y161{bottom:3.533333pt;}
.y6c{bottom:4.000000pt;}
.y149{bottom:4.146667pt;}
.y159{bottom:4.160000pt;}
.y147{bottom:4.306667pt;}
.y127{bottom:4.320000pt;}
.y47{bottom:4.480000pt;}
.y12b{bottom:4.506667pt;}
.y10e{bottom:4.640000pt;}
.y12e{bottom:4.653333pt;}
.y134{bottom:4.813333pt;}
.y102{bottom:4.946667pt;}
.y6e{bottom:4.960000pt;}
.y106{bottom:5.106667pt;}
.y65{bottom:5.773333pt;}
.y3d{bottom:6.080000pt;}
.y11f{bottom:6.400000pt;}
.yfc{bottom:7.986667pt;}
.y120{bottom:8.640000pt;}
.y164{bottom:8.800000pt;}
.y162{bottom:9.440000pt;}
.y15f{bottom:10.240000pt;}
.y6{bottom:11.200000pt;}
.y129{bottom:11.680000pt;}
.y130{bottom:11.840000pt;}
.y125{bottom:12.000000pt;}
.y141{bottom:12.640000pt;}
.yf8{bottom:13.120000pt;}
.y103{bottom:14.226667pt;}
.y169{bottom:14.880000pt;}
.y165{bottom:15.040000pt;}
.y6b{bottom:15.680000pt;}
.y10d{bottom:16.960000pt;}
.y101{bottom:17.266667pt;}
.y105{bottom:17.426667pt;}
.y142{bottom:17.920000pt;}
.y3c{bottom:18.560000pt;}
.y137{bottom:18.720000pt;}
.y145{bottom:18.866667pt;}
.y132{bottom:18.880000pt;}
.y12c{bottom:18.906667pt;}
.y153{bottom:19.026667pt;}
.y122{bottom:19.040000pt;}
.y64{bottom:19.053333pt;}
.y7{bottom:19.520000pt;}
.yfb{bottom:20.146667pt;}
.y4{bottom:20.640000pt;}
.y5{bottom:21.920000pt;}
.y77{bottom:22.573333pt;}
.yfd{bottom:23.346667pt;}
.y124{bottom:26.080000pt;}
.y14e{bottom:26.386667pt;}
.y6a{bottom:27.200000pt;}
.y10c{bottom:29.280000pt;}
.y63{bottom:29.933333pt;}
.y3b{bottom:30.880000pt;}
.y10f{bottom:32.160000pt;}
.yfa{bottom:32.506667pt;}
.y69{bottom:38.720000pt;}
.y10b{bottom:41.466667pt;}
.y80{bottom:41.760000pt;}
.y3a{bottom:42.240000pt;}
.y62{bottom:45.933333pt;}
.y76{bottom:50.093333pt;}
.y68{bottom:50.400000pt;}
.y2{bottom:51.040000pt;}
.y10a{bottom:53.786667pt;}
.y7d{bottom:56.693333pt;}
.y75{bottom:61.613333pt;}
.y61{bottom:61.773333pt;}
.y67{bottom:65.440000pt;}
.y74{bottom:73.293333pt;}
.y60{bottom:75.373333pt;}
.y73{bottom:84.813333pt;}
.y5f{bottom:86.413333pt;}
.yba{bottom:86.560000pt;}
.y15c{bottom:86.880000pt;}
.yd0{bottom:91.040000pt;}
.y196{bottom:91.200000pt;}
.yb2{bottom:92.160000pt;}
.y1b1{bottom:92.320000pt;}
.y110{bottom:94.560000pt;}
.yb9{bottom:95.360000pt;}
.y72{bottom:96.520000pt;}
.y15b{bottom:97.600000pt;}
.yff{bottom:98.066667pt;}
.ydd{bottom:100.640000pt;}
.y5e{bottom:102.253333pt;}
.yb8{bottom:107.040000pt;}
.y109{bottom:107.360000pt;}
.y71{bottom:108.040000pt;}
.y15a{bottom:108.320000pt;}
.ycf{bottom:108.640000pt;}
.y195{bottom:108.800000pt;}
.yb1{bottom:109.760000pt;}
.y1b0{bottom:109.920000pt;}
.ydc{bottom:112.160000pt;}
.y38{bottom:115.360000pt;}
.y1cd{bottom:116.320000pt;}
.y5d{bottom:118.093333pt;}
.y156{bottom:118.720000pt;}
.y1f1{bottom:119.040000pt;}
.y70{bottom:119.080000pt;}
.yb7{bottom:124.800000pt;}
.yce{bottom:126.240000pt;}
.yb0{bottom:127.360000pt;}
.y1af{bottom:127.520000pt;}
.ydb{bottom:129.760000pt;}
.y37{bottom:132.960000pt;}
.y158{bottom:133.600000pt;}
.y1cc{bottom:133.920000pt;}
.y5c{bottom:134.093333pt;}
.y1f0{bottom:136.640000pt;}
.yb6{bottom:142.400000pt;}
.y194{bottom:143.200000pt;}
.ycd{bottom:143.840000pt;}
.yaf{bottom:144.986667pt;}
.y1ae{bottom:145.146667pt;}
.yda{bottom:147.386667pt;}
.y157{bottom:148.360000pt;}
.y5b{bottom:149.933333pt;}
.y36{bottom:150.586667pt;}
.y1cb{bottom:151.546667pt;}
.y1ef{bottom:154.266667pt;}
.yb5{bottom:160.026667pt;}
.y193{bottom:160.826667pt;}
.ycc{bottom:161.466667pt;}
.yae{bottom:162.746667pt;}
.y152{bottom:163.080000pt;}
.yd9{bottom:164.986667pt;}
.y5a{bottom:165.773333pt;}
.y35{bottom:168.346667pt;}
.y1ca{bottom:169.946667pt;}
.y1ee{bottom:172.026667pt;}
.yfe{bottom:173.480000pt;}
.y155{bottom:177.960000pt;}
.yb4{bottom:178.426667pt;}
.ycb{bottom:179.226667pt;}
.yad{bottom:180.346667pt;}
.y59{bottom:181.613333pt;}
.yd8{bottom:182.746667pt;}
.y34{bottom:185.946667pt;}
.y1ed{bottom:189.626667pt;}
.y154{bottom:192.680000pt;}
.y58{bottom:193.480000pt;}
.y192{bottom:196.026667pt;}
.yca{bottom:196.826667pt;}
.yb3{bottom:196.986667pt;}
.yac{bottom:197.946667pt;}
.y1ad{bottom:198.106667pt;}
.yd7{bottom:200.346667pt;}
.y57{bottom:201.320000pt;}
.y108{bottom:203.400000pt;}
.y33{bottom:203.546667pt;}
.y1c9{bottom:206.426667pt;}
.y1ec{bottom:207.226667pt;}
.y14d{bottom:207.400000pt;}
.y191{bottom:213.626667pt;}
.yc9{bottom:214.426667pt;}
.yab{bottom:215.546667pt;}
.y1ac{bottom:215.706667pt;}
.y56{bottom:217.160000pt;}
.yd6{bottom:217.946667pt;}
.y32{bottom:221.146667pt;}
.y151{bottom:222.280000pt;}
.y1c8{bottom:224.026667pt;}
.y1eb{bottom:224.826667pt;}
.y190{bottom:231.386667pt;}
.yc8{bottom:232.026667pt;}
.yaa{bottom:233.146667pt;}
.y55{bottom:233.160000pt;}
.y1ab{bottom:233.306667pt;}
.y107{bottom:233.480000pt;}
.yd5{bottom:235.546667pt;}
.y150{bottom:237.000000pt;}
.y31{bottom:238.746667pt;}
.y1c7{bottom:241.626667pt;}
.y1ea{bottom:242.426667pt;}
.y18f{bottom:248.986667pt;}
.y54{bottom:249.000000pt;}
.yc7{bottom:249.626667pt;}
.ya9{bottom:250.906667pt;}
.y14f{bottom:251.720000pt;}
.yd4{bottom:253.146667pt;}
.y30{bottom:256.506667pt;}
.y1c6{bottom:260.026667pt;}
.y1e9{bottom:260.186667pt;}
.y104{bottom:263.400000pt;}
.y53{bottom:264.840000pt;}
.y18e{bottom:266.586667pt;}
.y14a{bottom:266.600000pt;}
.yc6{bottom:267.386667pt;}
.ya8{bottom:268.506667pt;}
.yd3{bottom:270.906667pt;}
.y2f{bottom:274.106667pt;}
.y1e8{bottom:277.786667pt;}
.y52{bottom:280.680000pt;}
.y1c5{bottom:281.146667pt;}
.y14c{bottom:281.320000pt;}
.y18d{bottom:284.186667pt;}
.yc5{bottom:284.986667pt;}
.ya7{bottom:286.106667pt;}
.y1aa{bottom:286.266667pt;}
.yd2{bottom:288.506667pt;}
.y2e{bottom:291.706667pt;}
.y100{bottom:293.480000pt;}
.y1e7{bottom:295.386667pt;}
.y14b{bottom:296.040000pt;}
.y51{bottom:296.520000pt;}
.y18c{bottom:301.786667pt;}
.yc4{bottom:303.386667pt;}
.ya6{bottom:303.706667pt;}
.y1a9{bottom:303.866667pt;}
.yd1{bottom:306.106667pt;}
.y2d{bottom:309.306667pt;}
.y144{bottom:310.920000pt;}
.y50{bottom:312.520000pt;}
.y1e6{bottom:312.986667pt;}
.y1c4{bottom:317.626667pt;}
.y18b{bottom:319.546667pt;}
.ya5{bottom:321.306667pt;}
.y1a8{bottom:321.466667pt;}
.yf9{bottom:323.400000pt;}
.y148{bottom:325.640000pt;}
.y2c{bottom:326.906667pt;}
.y4f{bottom:328.360000pt;}
.y1e5{bottom:330.586667pt;}
.y1c3{bottom:335.226667pt;}
.y18a{bottom:337.146667pt;}
.ya4{bottom:339.066667pt;}
.y4e{bottom:340.200000pt;}
.y146{bottom:340.360000pt;}
.y2b{bottom:345.466667pt;}
.yc3{bottom:345.626667pt;}
.y4d{bottom:348.040000pt;}
.y1e4{bottom:348.346667pt;}
.y1c2{bottom:352.866667pt;}
.y189{bottom:354.786667pt;}
.y143{bottom:356.533333pt;}
.y140{bottom:356.546667pt;}
.ya3{bottom:356.706667pt;}
.yc2{bottom:359.426667pt;}
.y2a{bottom:360.866667pt;}
.y4c{bottom:363.880000pt;}
.y1e3{bottom:365.986667pt;}
.y49{bottom:366.293333pt;}
.y29{bottom:368.386667pt;}
.y1c1{bottom:370.466667pt;}
.y188{bottom:372.386667pt;}
.yf7{bottom:372.866667pt;}
.ya2{bottom:374.306667pt;}
.y1a7{bottom:374.466667pt;}
.y4b{bottom:379.720000pt;}
.y1e2{bottom:383.586667pt;}
.y1c0{bottom:388.066667pt;}
.y28{bottom:389.506667pt;}
.y187{bottom:389.986667pt;}
.ya1{bottom:391.906667pt;}
.y1a6{bottom:392.066667pt;}
.y13f{bottom:394.466667pt;}
.y4a{bottom:395.600000pt;}
.y1e1{bottom:401.186667pt;}
.y1bf{bottom:405.826667pt;}
.yf6{bottom:407.266667pt;}
.y186{bottom:407.746667pt;}
.ya0{bottom:409.506667pt;}
.y1a5{bottom:409.666667pt;}
.y27{bottom:410.626667pt;}
.y13e{bottom:411.266667pt;}
.y1e0{bottom:418.786667pt;}
.y1be{bottom:423.426667pt;}
.yf5{bottom:423.586667pt;}
.y185{bottom:425.346667pt;}
.y13d{bottom:427.106667pt;}
.y9f{bottom:427.266667pt;}
.y26{bottom:431.906667pt;}
.y1df{bottom:436.546667pt;}
.y13c{bottom:437.826667pt;}
.yf4{bottom:441.346667pt;}
.y1bd{bottom:441.826667pt;}
.y184{bottom:442.946667pt;}
.y9e{bottom:444.866667pt;}
.y13b{bottom:448.213333pt;}
.y139{bottom:448.226667pt;}
.y25{bottom:453.026667pt;}
.y1de{bottom:454.146667pt;}
.yf3{bottom:458.946667pt;}
.y6f{bottom:460.213333pt;}
.y183{bottom:460.546667pt;}
.y9d{bottom:462.466667pt;}
.y1a4{bottom:462.626667pt;}
.y13a{bottom:463.106667pt;}
.y24{bottom:471.586667pt;}
.y1dd{bottom:471.746667pt;}
.yf2{bottom:476.546667pt;}
.y138{bottom:477.813333pt;}
.y135{bottom:477.826667pt;}
.y182{bottom:478.146667pt;}
.y9c{bottom:480.066667pt;}
.y1a3{bottom:480.226667pt;}
.y23{bottom:489.186667pt;}
.y1dc{bottom:489.346667pt;}
.y136{bottom:492.546667pt;}
.yf1{bottom:494.146667pt;}
.y1bc{bottom:495.746667pt;}
.y181{bottom:495.906667pt;}
.y9b{bottom:497.666667pt;}
.y1a2{bottom:497.826667pt;}
.y22{bottom:501.346667pt;}
.y1db{bottom:506.946667pt;}
.y133{bottom:507.253333pt;}
.y12f{bottom:507.266667pt;}
.y21{bottom:509.186667pt;}
.yf0{bottom:511.746667pt;}
.y180{bottom:513.506667pt;}
.y9a{bottom:515.426667pt;}
.y131{bottom:522.146667pt;}
.y1da{bottom:524.706667pt;}
.yef{bottom:529.506667pt;}
.y20{bottom:529.826667pt;}
.y17f{bottom:531.106667pt;}
.y99{bottom:533.026667pt;}
.y12d{bottom:536.853333pt;}
.y128{bottom:536.866667pt;}
.y1d9{bottom:540.546667pt;}
.yee{bottom:547.106667pt;}
.y17e{bottom:548.706667pt;}
.y1f{bottom:550.466667pt;}
.y98{bottom:550.626667pt;}
.y1a1{bottom:550.786667pt;}
.y12a{bottom:551.586667pt;}
.yed{bottom:564.733333pt;}
.y17d{bottom:566.333333pt;}
.y121{bottom:566.493333pt;}
.y97{bottom:568.253333pt;}
.y1a0{bottom:568.413333pt;}
.y1e{bottom:571.293333pt;}
.y1d8{bottom:576.733333pt;}
.y126{bottom:581.213333pt;}
.yec{bottom:582.333333pt;}
.y1bb{bottom:583.933333pt;}
.y17c{bottom:584.093333pt;}
.y96{bottom:585.853333pt;}
.y19f{bottom:586.013333pt;}
.y1d7{bottom:594.333333pt;}
.y123{bottom:595.933333pt;}
.yeb{bottom:599.933333pt;}
.y17b{bottom:601.693333pt;}
.y95{bottom:603.613333pt;}
.y66{bottom:609.693333pt;}
.y1d6{bottom:611.933333pt;}
.y11e{bottom:612.093333pt;}
.yea{bottom:617.693333pt;}
.y17a{bottom:619.293333pt;}
.y1d{bottom:619.933333pt;}
.y94{bottom:621.213333pt;}
.y1d5{bottom:630.333333pt;}
.y1c{bottom:633.853333pt;}
.ye9{bottom:635.293333pt;}
.y11d{bottom:635.773333pt;}
.y179{bottom:636.893333pt;}
.y93{bottom:638.813333pt;}
.y19e{bottom:638.973333pt;}
.y1b{bottom:647.613333pt;}
.y11c{bottom:651.133333pt;}
.ye8{bottom:652.893333pt;}
.y178{bottom:654.493333pt;}
.y92{bottom:656.413333pt;}
.y19d{bottom:656.573333pt;}
.y1a{bottom:661.373333pt;}
.y1d4{bottom:666.813333pt;}
.y11b{bottom:668.253333pt;}
.ye7{bottom:670.493333pt;}
.y1ba{bottom:672.093333pt;}
.y177{bottom:672.253333pt;}
.y91{bottom:674.013333pt;}
.y19c{bottom:674.173333pt;}
.y19{bottom:675.133333pt;}
.y1d3{bottom:684.413333pt;}
.y18{bottom:685.053333pt;}
.y11a{bottom:686.333333pt;}
.ye6{bottom:688.093333pt;}
.y176{bottom:689.853333pt;}
.y90{bottom:691.773333pt;}
.y39{bottom:692.733333pt;}
.y17{bottom:697.213333pt;}
.y1d2{bottom:702.813333pt;}
.y119{bottom:703.933333pt;}
.ye5{bottom:705.853333pt;}
.y175{bottom:707.453333pt;}
.y16{bottom:708.733333pt;}
.y8f{bottom:709.373333pt;}
.y15{bottom:720.253333pt;}
.y118{bottom:721.533333pt;}
.ye4{bottom:723.453333pt;}
.y174{bottom:725.053333pt;}
.y8e{bottom:726.973333pt;}
.y19b{bottom:727.133333pt;}
.y14{bottom:731.773333pt;}
.y117{bottom:739.133333pt;}
.ye3{bottom:741.053333pt;}
.y173{bottom:742.653333pt;}
.y13{bottom:743.933333pt;}
.y8d{bottom:744.573333pt;}
.y19a{bottom:744.733333pt;}
.y12{bottom:755.453333pt;}
.y116{bottom:756.733333pt;}
.ye2{bottom:758.693333pt;}
.y1b9{bottom:760.293333pt;}
.y172{bottom:760.453333pt;}
.y8c{bottom:762.213333pt;}
.y199{bottom:762.373333pt;}
.y115{bottom:774.533333pt;}
.ye1{bottom:776.293333pt;}
.y171{bottom:778.053333pt;}
.y11{bottom:779.173333pt;}
.y8b{bottom:779.973333pt;}
.y10{bottom:789.093333pt;}
.y114{bottom:792.133333pt;}
.y170{bottom:793.893333pt;}
.ye0{bottom:794.053333pt;}
.y1b8{bottom:795.653333pt;}
.y198{bottom:796.453333pt;}
.y8a{bottom:797.573333pt;}
.y113{bottom:809.733333pt;}
.yf{bottom:810.693333pt;}
.ydf{bottom:811.653333pt;}
.y197{bottom:811.813333pt;}
.y1b7{bottom:813.253333pt;}
.y89{bottom:815.173333pt;}
.y16f{bottom:826.213333pt;}
.y112{bottom:827.333333pt;}
.yde{bottom:829.253333pt;}
.y1b6{bottom:830.853333pt;}
.ye{bottom:832.133333pt;}
.y88{bottom:832.773333pt;}
.y16e{bottom:836.933333pt;}
.yd{bottom:842.373333pt;}
.y1d1{bottom:844.933333pt;}
.y111{bottom:845.733333pt;}
.yc1{bottom:846.853333pt;}
.y16d{bottom:847.320000pt;}
.y16c{bottom:847.333333pt;}
.y1b5{bottom:848.453333pt;}
.y87{bottom:850.373333pt;}
.yc{bottom:857.893333pt;}
.y1d0{bottom:862.693333pt;}
.yc0{bottom:864.453333pt;}
.y1b4{bottom:866.213333pt;}
.y86{bottom:868.133333pt;}
.y16a{bottom:872.600000pt;}
.y168{bottom:872.613333pt;}
.yb{bottom:877.093333pt;}
.y1cf{bottom:880.293333pt;}
.ybf{bottom:882.213333pt;}
.y1b3{bottom:883.813333pt;}
.y85{bottom:885.733333pt;}
.ya{bottom:896.613333pt;}
.y166{bottom:897.720000pt;}
.y163{bottom:897.733333pt;}
.y1ce{bottom:898.693333pt;}
.ybe{bottom:899.813333pt;}
.y1b2{bottom:902.213333pt;}
.y84{bottom:903.333333pt;}
.ybd{bottom:917.413333pt;}
.y83{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y160{bottom:924.280000pt;}
.y15e{bottom:924.293333pt;}
.ybc{bottom:935.013333pt;}
.y82{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.ybb{bottom:953.413333pt;}
.y81{bottom:956.133333pt;}
.y15d{bottom:957.413333pt;}
.y6d{bottom:974.400000pt;}
.y1{bottom:996.640000pt;}
.y7f{bottom:998.400000pt;}
.y46{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h18{height:5.160000pt;}
.h5d{height:5.562500pt;}
.h3{height:12.000000pt;}
.h3e{height:14.066667pt;}
.h39{height:14.080000pt;}
.h4d{height:14.098667pt;}
.h52{height:14.112000pt;}
.h42{height:14.226667pt;}
.h37{height:14.240000pt;}
.h3b{height:14.266667pt;}
.h1b{height:15.040000pt;}
.h35{height:18.400000pt;}
.h23{height:19.680000pt;}
.h17{height:20.728125pt;}
.h59{height:24.466667pt;}
.h5a{height:24.472000pt;}
.h5b{height:24.480000pt;}
.h56{height:24.626667pt;}
.h57{height:24.632000pt;}
.h58{height:24.640000pt;}
.h53{height:26.226667pt;}
.h54{height:26.232000pt;}
.h55{height:26.240000pt;}
.h2b{height:26.368125pt;}
.he{height:26.381250pt;}
.h26{height:26.843125pt;}
.h2d{height:27.506667pt;}
.h10{height:27.523125pt;}
.h43{height:28.786667pt;}
.h44{height:28.796000pt;}
.h46{height:28.800000pt;}
.h3f{height:28.946667pt;}
.h40{height:28.956000pt;}
.h41{height:28.960000pt;}
.h3a{height:28.986667pt;}
.h3c{height:28.992000pt;}
.h3d{height:29.000000pt;}
.h30{height:29.266667pt;}
.h31{height:29.426667pt;}
.h5{height:30.400000pt;}
.h48{height:31.026667pt;}
.h49{height:31.036000pt;}
.h4b{height:31.040000pt;}
.h21{height:32.250000pt;}
.h33{height:33.328125pt;}
.h15{height:35.114107pt;}
.h6{height:36.431250pt;}
.h22{height:37.410000pt;}
.h5c{height:38.413438pt;}
.h29{height:38.877839pt;}
.h12{height:39.571875pt;}
.hd{height:40.103437pt;}
.h1a{height:40.635000pt;}
.h13{height:41.442606pt;}
.h14{height:42.084375pt;}
.h45{height:42.381250pt;}
.h1c{height:43.215000pt;}
.h4e{height:43.506667pt;}
.h4c{height:43.538667pt;}
.h50{height:43.666667pt;}
.h38{height:43.676000pt;}
.h36{height:43.680000pt;}
.h51{height:43.712000pt;}
.h4a{height:44.638750pt;}
.h16{height:47.109375pt;}
.h2e{height:47.378667pt;}
.h1d{height:48.375000pt;}
.h11{height:49.148438pt;}
.h1f{height:49.336436pt;}
.h19{height:51.360000pt;}
.h28{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2c{height:53.535000pt;}
.h34{height:54.598989pt;}
.hc{height:57.787500pt;}
.h4f{height:58.386667pt;}
.h2{height:58.563750pt;}
.h47{height:59.340000pt;}
.hf{height:60.288750pt;}
.h2a{height:62.781250pt;}
.hb{height:64.500000pt;}
.h32{height:65.472000pt;}
.h24{height:66.625000pt;}
.h27{height:66.750000pt;}
.h20{height:72.640000pt;}
.h8{height:77.951250pt;}
.h9{height:85.785000pt;}
.ha{height:88.611250pt;}
.h25{height:128.840000pt;}
.h2f{height:197.293333pt;}
.h1e{height:406.466667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w3{width:72.952000pt;}
.wd{width:77.952000pt;}
.w16{width:84.018667pt;}
.w17{width:90.112000pt;}
.w15{width:101.592000pt;}
.w13{width:128.026667pt;}
.w11{width:128.032000pt;}
.w14{width:128.040000pt;}
.w10{width:128.160000pt;}
.w12{width:128.178667pt;}
.wf{width:128.180000pt;}
.w5{width:137.306667pt;}
.w1c{width:160.018667pt;}
.w1f{width:160.173333pt;}
.w1d{width:160.186667pt;}
.w1e{width:160.200000pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w1a{width:172.826667pt;}
.w19{width:192.013333pt;}
.w18{width:192.026667pt;}
.we{width:237.458667pt;}
.wc{width:315.418667pt;}
.wb{width:325.173333pt;}
.w7{width:473.546667pt;}
.w1b{width:539.000000pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x50{left:3.780000pt;}
.x2{left:7.192000pt;}
.x2e{left:8.160000pt;}
.x10{left:9.592000pt;}
.x23{left:12.640000pt;}
.x21{left:13.600000pt;}
.x24{left:16.480000pt;}
.x22{left:17.440000pt;}
.x16{left:18.893333pt;}
.x28{left:21.120000pt;}
.x39{left:23.066667pt;}
.x41{left:24.826667pt;}
.x3e{left:26.266667pt;}
.x44{left:28.346667pt;}
.x46{left:29.466667pt;}
.x2a{left:31.706667pt;}
.x49{left:36.640000pt;}
.x35{left:39.680000pt;}
.x32{left:41.786667pt;}
.x31{left:43.200000pt;}
.x30{left:44.506667pt;}
.x33{left:47.066667pt;}
.x36{left:48.320000pt;}
.x37{left:49.786667pt;}
.x2f{left:51.520000pt;}
.x34{left:53.120000pt;}
.x43{left:54.080000pt;}
.x2c{left:55.546667pt;}
.x3f{left:56.800000pt;}
.x4d{left:59.693333pt;}
.x4e{left:60.960000pt;}
.x4c{left:63.520000pt;}
.x3{left:65.746667pt;}
.x3c{left:70.546667pt;}
.x14{left:71.560000pt;}
.x11{left:72.680000pt;}
.x4f{left:78.240000pt;}
.xf{left:82.760000pt;}
.x13{left:83.880000pt;}
.x42{left:86.546667pt;}
.x26{left:90.592000pt;}
.x1{left:96.032000pt;}
.x1b{left:102.912000pt;}
.x7{left:106.272000pt;}
.x1c{left:114.112000pt;}
.xc{left:117.952000pt;}
.x6{left:122.432000pt;}
.x25{left:134.746667pt;}
.x18{left:142.746667pt;}
.x1e{left:144.026667pt;}
.xb{left:153.786667pt;}
.x4{left:169.000000pt;}
.x9{left:171.706667pt;}
.x38{left:197.640000pt;}
.x19{left:206.426667pt;}
.x1a{left:209.786667pt;}
.x27{left:224.226667pt;}
.x48{left:256.066667pt;}
.x12{left:269.346667pt;}
.x15{left:275.866667pt;}
.x3a{left:281.666667pt;}
.x20{left:334.146667pt;}
.x29{left:352.386667pt;}
.x3b{left:371.773333pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.xa{left:408.093333pt;}
.x1f{left:412.106667pt;}
.x4a{left:416.266667pt;}
.xd{left:434.813333pt;}
.xe{left:436.253333pt;}
.x45{left:446.173333pt;}
.x40{left:448.733333pt;}
.x47{left:451.453333pt;}
.x2b{left:480.426667pt;}
.x17{left:551.336000pt;}
.x3d{left:563.813333pt;}
.x4b{left:576.453333pt;}
.x2d{left:608.613333pt;}
.x1d{left:709.120000pt;}
}




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