
    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_a3ee9006396093ad77a48913.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_c475eb8d5edfd04821138e3c.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_44f0293c31cb74db69921157.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_bc8af7697bdd0a6319cfd012.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_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2261be8d9fc4b2ee6143eacd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f8fa0ca024973ec8db012a30.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.737793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b2a270958a51152c71e4f669.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_17bbfb3f72a322b1797cf915.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b774889ff8673d728bba08fb.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_b4603d5343e847babdc076c2.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_bc4365d94c1f48c61f81543b.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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7e8a23df54873b67d9462d47.woff')format("woff");}.ff11{font-family:ff11;line-height:1.063477;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:ff12;src:url('chunks/assets/font_c87e84ee76f35ef8f3933292.woff')format("woff");}.ff12{font-family:ff12;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;}
.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;}
.v6{vertical-align:15.120000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:36.000000px;}
.v4{vertical-align:42.480000px;}
.v5{vertical-align:61.200000px;}
.ls16{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.089400px;}
.ls15{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.020160px;}
.lsb{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.144720px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181200px;}
.ls13{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls1b{letter-spacing:0.349800px;}
.ls5{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.498960px;}
.ls4{letter-spacing:0.569520px;}
.ls14{letter-spacing:0.924000px;}
.lsc{letter-spacing:0.948000px;}
.ls11{letter-spacing:1.174320px;}
.ls10{letter-spacing:2.512800px;}
.lsf{letter-spacing:2.916720px;}
.ls18{letter-spacing:5.940000px;}
.ls1d{letter-spacing:14.580000px;}
.ls1c{letter-spacing:14.760000px;}
.ls22{letter-spacing:29.160000px;}
.ls2{letter-spacing:47.700000px;}
.ls1{letter-spacing:71.280000px;}
.ls0{letter-spacing:72.000000px;}
.ls12{letter-spacing:89.632800px;}
.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;}
}
.wsd{word-spacing:-41.760000px;}
.ws16{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.864000px;}
.ws1c{word-spacing:-15.300000px;}
.ws20{word-spacing:-15.238800px;}
.ws13{word-spacing:-15.199800px;}
.ws1b{word-spacing:-15.046800px;}
.ws1e{word-spacing:-14.993280px;}
.ws15{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws1d{word-spacing:-14.580000px;}
.ws1f{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.482000px;}
.ws5{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.241200px;}
.ws17{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.689800px;}
.wsc{word-spacing:-11.388000px;}
.ws3{word-spacing:-11.340000px;}
.ws19{word-spacing:-11.319840px;}
.ws12{word-spacing:-11.246400px;}
.ws2{word-spacing:-10.980000px;}
.ws6{word-spacing:-10.950480px;}
.wsb{word-spacing:-10.440000px;}
.ws18{word-spacing:-10.350600px;}
.wsa{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
.ws11{word-spacing:3.816000px;}
.ws0{word-spacing:60.840000px;}
._32{margin-left:-433.740960px;}
._2f{margin-left:-237.004560px;}
._30{margin-left:-134.619840px;}
._31{margin-left:-81.689760px;}
._5{margin-left:-59.580000px;}
._20{margin-left:-3.764880px;}
._10{margin-left:-2.569680px;}
._2{margin-left:-1.034640px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._7{width:4.362480px;}
._c{width:5.916240px;}
._d{width:7.666320px;}
._13{width:9.619920px;}
._12{width:10.692000px;}
._11{width:12.258000px;}
._19{width:13.615920px;}
._14{width:15.732720px;}
._8{width:16.732800px;}
._f{width:18.346320px;}
._1b{width:19.453680px;}
._25{width:20.468160px;}
._15{width:21.806640px;}
._2a{width:22.953600px;}
._18{width:23.963760px;}
._21{width:25.011360px;}
._a{width:26.294400px;}
._b{width:27.429840px;}
._9{width:28.983600px;}
._e{width:30.059280px;}
._22{width:31.975200px;}
._33{width:33.305040px;}
._16{width:34.660800px;}
._24{width:36.513360px;}
._28{width:38.246400px;}
._1c{width:39.979440px;}
._1f{width:41.941200px;}
._1e{width:42.967440px;}
._23{width:44.138160px;}
._26{width:45.262800px;}
._1d{width:46.809360px;}
._2c{width:47.867760px;}
._2d{width:49.182480px;}
._1a{width:50.796000px;}
._3c{width:52.579440px;}
._27{width:54.142560px;}
._3d{width:56.413440px;}
._3a{width:57.787920px;}
._39{width:58.973760px;}
._38{width:60.288480px;}
._3{width:65.496000px;}
._29{width:67.588560px;}
._35{width:68.903280px;}
._34{width:70.337520px;}
._2e{width:71.705520px;}
._36{width:96.218640px;}
._2b{width:98.336880px;}
._44{width:101.412720px;}
._3b{width:104.400720px;}
._43{width:106.975440px;}
._41{width:114.550560px;}
._37{width:117.129600px;}
._40{width:121.014000px;}
._3f{width:122.498640px;}
._42{width:136.133280px;}
._3e{width:165.705120px;}
._4{width:199.620000px;}
._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;}
.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;}
.fsf{font-size:51.120000px;}
.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;}
.y4a{bottom:-247.710000px;}
.y49{bottom:-214.050000px;}
.y48{bottom:-180.210000px;}
.y47{bottom:-146.550000px;}
.y87{bottom:-143.310000px;}
.y46{bottom:-112.890000px;}
.y86{bottom:-109.470000px;}
.y45{bottom:-79.050000px;}
.y85{bottom:-75.810000px;}
.y44{bottom:-45.360000px;}
.y84{bottom:-41.970000px;}
.y4d{bottom:-27.180000px;}
.y89{bottom:-17.922750px;}
.y43{bottom:-11.520000px;}
.y83{bottom:-8.265000px;}
.y0{bottom:0.000000px;}
.y1e4{bottom:1.837500px;}
.y145{bottom:2.520000px;}
.y134{bottom:2.685000px;}
.y143{bottom:2.700000px;}
.y156{bottom:2.730000px;}
.y15d{bottom:2.865000px;}
.y138{bottom:2.880000px;}
.y158{bottom:3.945000px;}
.y3{bottom:3.960000px;}
.y155{bottom:3.990000px;}
.y15c{bottom:4.125000px;}
.y4c{bottom:5.040000px;}
.y79{bottom:5.580000px;}
.y42{bottom:6.840000px;}
.y6f{bottom:8.265000px;}
.y135{bottom:9.165000px;}
.y139{bottom:9.360000px;}
.y6{bottom:12.600000px;}
.y133{bottom:15.690000px;}
.y137{bottom:15.840000px;}
.y41{bottom:20.700000px;}
.y7{bottom:21.960000px;}
.y4{bottom:23.220000px;}
.y6e{bottom:24.105000px;}
.y5{bottom:24.660000px;}
.y82{bottom:25.395000px;}
.y77{bottom:30.795000px;}
.y40{bottom:34.740000px;}
.y6d{bottom:38.325000px;}
.y76{bottom:44.115000px;}
.y8b{bottom:46.980000px;}
.y3f{bottom:47.520000px;}
.y6c{bottom:48.225000px;}
.y81{bottom:56.355000px;}
.y75{bottom:57.075000px;}
.y2{bottom:57.420000px;}
.y88{bottom:63.780000px;}
.y6b{bottom:63.885000px;}
.y80{bottom:69.495000px;}
.y74{bottom:70.245000px;}
.y6a{bottom:79.365000px;}
.y7f{bottom:82.455000px;}
.y73{bottom:83.205000px;}
.y69{bottom:94.845000px;}
.y7e{bottom:95.595000px;}
.y72{bottom:96.345000px;}
.y12e{bottom:98.820000px;}
.y1b9{bottom:99.720000px;}
.y1a2{bottom:106.380000px;}
.yed{bottom:107.460000px;}
.ydc{bottom:108.540000px;}
.y7d{bottom:108.555000px;}
.y68{bottom:109.065000px;}
.yc4{bottom:109.800000px;}
.yfc{bottom:110.880000px;}
.y16a{bottom:111.960000px;}
.y71{bottom:113.265000px;}
.y12d{bottom:115.920000px;}
.y67{bottom:119.010000px;}
.y7c{bottom:121.515000px;}
.y1a1{bottom:123.660000px;}
.y3d{bottom:124.200000px;}
.yec{bottom:124.740000px;}
.ydb{bottom:125.820000px;}
.yc3{bottom:127.080000px;}
.yfb{bottom:128.160000px;}
.y1e3{bottom:128.340000px;}
.y12c{bottom:133.200000px;}
.y7b{bottom:133.935000px;}
.y66{bottom:134.670000px;}
.y169{bottom:135.900000px;}
.y1b8{bottom:138.060000px;}
.y1a0{bottom:140.940000px;}
.y3c{bottom:141.480000px;}
.yeb{bottom:142.020000px;}
.yda{bottom:142.920000px;}
.yc2{bottom:144.360000px;}
.yfa{bottom:145.440000px;}
.y1e2{bottom:145.620000px;}
.y65{bottom:150.150000px;}
.y12b{bottom:150.480000px;}
.y168{bottom:151.920000px;}
.y1b7{bottom:155.340000px;}
.y19f{bottom:158.220000px;}
.y3b{bottom:158.760000px;}
.yea{bottom:159.300000px;}
.yd9{bottom:160.200000px;}
.yc1{bottom:161.640000px;}
.yf9{bottom:162.750000px;}
.y1e1{bottom:162.930000px;}
.y64{bottom:165.630000px;}
.y12a{bottom:167.790000px;}
.y167{bottom:167.805000px;}
.y1b6{bottom:172.470000px;}
.y19e{bottom:175.350000px;}
.y3a{bottom:176.070000px;}
.ye9{bottom:176.430000px;}
.yd8{bottom:177.510000px;}
.yc0{bottom:178.950000px;}
.yf8{bottom:180.030000px;}
.y1e0{bottom:180.210000px;}
.y63{bottom:181.110000px;}
.y166{bottom:183.825000px;}
.y129{bottom:185.070000px;}
.y1b5{bottom:189.750000px;}
.y19d{bottom:192.630000px;}
.y39{bottom:193.350000px;}
.ye8{bottom:193.710000px;}
.yd7{bottom:194.790000px;}
.ybf{bottom:196.050000px;}
.y62{bottom:196.770000px;}
.yf7{bottom:197.130000px;}
.y1df{bottom:197.310000px;}
.y165{bottom:199.665000px;}
.y128{bottom:202.350000px;}
.y1b4{bottom:207.390000px;}
.yd6{bottom:208.470000px;}
.y19c{bottom:209.910000px;}
.y38{bottom:210.450000px;}
.ye7{bottom:210.990000px;}
.y61{bottom:212.250000px;}
.ybe{bottom:213.330000px;}
.yf6{bottom:214.410000px;}
.y1de{bottom:214.590000px;}
.y164{bottom:215.685000px;}
.yd5{bottom:217.470000px;}
.y127{bottom:219.450000px;}
.y19b{bottom:227.190000px;}
.y37{bottom:227.730000px;}
.ye6{bottom:228.270000px;}
.ybd{bottom:230.610000px;}
.y163{bottom:231.525000px;}
.yf5{bottom:231.690000px;}
.y1dd{bottom:231.870000px;}
.y126{bottom:236.730000px;}
.y60{bottom:243.210000px;}
.y19a{bottom:244.470000px;}
.y36{bottom:245.010000px;}
.yd4{bottom:245.370000px;}
.ye5{bottom:245.550000px;}
.y162{bottom:247.545000px;}
.ybc{bottom:247.890000px;}
.y1b3{bottom:248.070000px;}
.yf4{bottom:248.970000px;}
.y1dc{bottom:249.150000px;}
.y125{bottom:254.010000px;}
.y5f{bottom:258.870000px;}
.y199{bottom:261.750000px;}
.y35{bottom:262.650000px;}
.ye4{bottom:262.830000px;}
.y161{bottom:263.385000px;}
.ybb{bottom:265.170000px;}
.yf3{bottom:266.250000px;}
.y1db{bottom:266.430000px;}
.y1b2{bottom:268.050000px;}
.y124{bottom:271.290000px;}
.y5e{bottom:272.910000px;}
.y4e{bottom:276.165000px;}
.y198{bottom:278.850000px;}
.y160{bottom:279.405000px;}
.y34{bottom:279.750000px;}
.yd3{bottom:279.930000px;}
.yba{bottom:282.450000px;}
.y5d{bottom:282.990000px;}
.yf2{bottom:283.530000px;}
.y33{bottom:285.150000px;}
.y1b1{bottom:287.850000px;}
.y123{bottom:288.570000px;}
.y15f{bottom:295.245000px;}
.y197{bottom:296.130000px;}
.yd2{bottom:297.210000px;}
.y5c{bottom:298.470000px;}
.yb9{bottom:299.550000px;}
.yf1{bottom:300.630000px;}
.y1da{bottom:300.810000px;}
.y32{bottom:304.590000px;}
.y1b0{bottom:305.490000px;}
.y122{bottom:305.850000px;}
.y15e{bottom:311.265000px;}
.y196{bottom:313.410000px;}
.y5b{bottom:313.950000px;}
.yd1{bottom:314.310000px;}
.ye3{bottom:314.490000px;}
.yb8{bottom:316.830000px;}
.yf0{bottom:317.910000px;}
.y1d9{bottom:318.090000px;}
.y31{bottom:321.330000px;}
.y121{bottom:322.950000px;}
.y15b{bottom:327.105000px;}
.y5a{bottom:329.430000px;}
.y195{bottom:330.690000px;}
.yd0{bottom:331.590000px;}
.ye2{bottom:331.770000px;}
.yb7{bottom:334.110000px;}
.yef{bottom:335.190000px;}
.y1d8{bottom:335.370000px;}
.y120{bottom:340.230000px;}
.y30{bottom:342.030000px;}
.y15a{bottom:343.125000px;}
.y1af{bottom:344.010000px;}
.y59{bottom:345.090000px;}
.y194{bottom:347.970000px;}
.ycf{bottom:348.870000px;}
.ye1{bottom:349.410000px;}
.yb6{bottom:351.390000px;}
.yee{bottom:352.470000px;}
.y1d7{bottom:352.650000px;}
.y11f{bottom:357.510000px;}
.y159{bottom:359.145000px;}
.y58{bottom:360.600000px;}
.y1ae{bottom:361.650000px;}
.y2f{bottom:362.730000px;}
.y193{bottom:365.250000px;}
.yce{bottom:366.150000px;}
.yb5{bottom:368.670000px;}
.ye0{bottom:368.850000px;}
.y1d6{bottom:369.930000px;}
.y11e{bottom:374.790000px;}
.y157{bottom:374.985000px;}
.y57{bottom:376.080000px;}
.y192{bottom:382.350000px;}
.y2e{bottom:383.430000px;}
.ydf{bottom:384.690000px;}
.yb4{bottom:385.770000px;}
.y1d5{bottom:387.030000px;}
.y56{bottom:390.300000px;}
.y154{bottom:391.005000px;}
.y11d{bottom:392.070000px;}
.yde{bottom:397.155000px;}
.y191{bottom:399.675000px;}
.y55{bottom:400.200000px;}
.ycd{bottom:401.115000px;}
.yb3{bottom:403.095000px;}
.y2d{bottom:404.175000px;}
.y1d4{bottom:404.715000px;}
.y153{bottom:406.875000px;}
.y11c{bottom:409.215000px;}
.y54{bottom:415.860000px;}
.y190{bottom:416.955000px;}
.ycc{bottom:419.655000px;}
.yb2{bottom:420.375000px;}
.y152{bottom:422.895000px;}
.y1ad{bottom:423.075000px;}
.y2c{bottom:424.875000px;}
.y11b{bottom:426.495000px;}
.ycb{bottom:429.915000px;}
.y7a{bottom:430.080000px;}
.y53{bottom:431.340000px;}
.y18f{bottom:434.235000px;}
.yb1{bottom:437.655000px;}
.y151{bottom:438.735000px;}
.y1ac{bottom:442.875000px;}
.y11a{bottom:443.775000px;}
.y2b{bottom:445.575000px;}
.y1d3{bottom:445.755000px;}
.y52{bottom:446.820000px;}
.yca{bottom:447.195000px;}
.y18e{bottom:451.515000px;}
.y150{bottom:454.755000px;}
.yb0{bottom:454.935000px;}
.y119{bottom:461.055000px;}
.y51{bottom:462.300000px;}
.y1ab{bottom:462.675000px;}
.yc9{bottom:464.475000px;}
.y2a{bottom:466.275000px;}
.y18d{bottom:468.615000px;}
.y14f{bottom:470.595000px;}
.yaf{bottom:472.215000px;}
.y50{bottom:477.960000px;}
.y118{bottom:478.695000px;}
.y1aa{bottom:480.495000px;}
.yc8{bottom:481.755000px;}
.y18c{bottom:485.895000px;}
.y29{bottom:486.075000px;}
.y14e{bottom:486.615000px;}
.yae{bottom:489.315000px;}
.y4f{bottom:493.440000px;}
.yc7{bottom:499.035000px;}
.y28{bottom:499.755000px;}
.y14d{bottom:502.455000px;}
.y18b{bottom:503.175000px;}
.yad{bottom:506.595000px;}
.y1d2{bottom:507.135000px;}
.y27{bottom:508.575000px;}
.yc6{bottom:516.675000px;}
.y117{bottom:517.035000px;}
.y14c{bottom:518.475000px;}
.y18a{bottom:520.455000px;}
.y1a9{bottom:521.175000px;}
.yac{bottom:523.875000px;}
.y26{bottom:524.055000px;}
.y1d1{bottom:526.935000px;}
.y116{bottom:534.315000px;}
.yc5{bottom:537.375000px;}
.y189{bottom:537.735000px;}
.y25{bottom:539.535000px;}
.yab{bottom:541.155000px;}
.y1d0{bottom:546.735000px;}
.y14b{bottom:550.335000px;}
.y115{bottom:551.415000px;}
.y24{bottom:555.015000px;}
.y70{bottom:558.240000px;}
.yaa{bottom:558.435000px;}
.y1a8{bottom:560.955000px;}
.y14a{bottom:566.175000px;}
.y1cf{bottom:566.715000px;}
.y114{bottom:568.695000px;}
.y188{bottom:572.115000px;}
.ya9{bottom:575.715000px;}
.y1a7{bottom:580.755000px;}
.y149{bottom:582.195000px;}
.y113{bottom:585.975000px;}
.y1ce{bottom:586.515000px;}
.y187{bottom:589.395000px;}
.ya8{bottom:592.815000px;}
.y148{bottom:598.215000px;}
.y1a6{bottom:600.555000px;}
.y112{bottom:603.255000px;}
.y1cd{bottom:606.315000px;}
.y186{bottom:606.675000px;}
.y23{bottom:609.915000px;}
.ya7{bottom:610.095000px;}
.y147{bottom:614.055000px;}
.y1a5{bottom:620.355000px;}
.y111{bottom:620.535000px;}
.y185{bottom:623.985000px;}
.y22{bottom:625.425000px;}
.y1cc{bottom:626.145000px;}
.ya6{bottom:627.405000px;}
.y146{bottom:630.285000px;}
.y110{bottom:637.845000px;}
.y1a4{bottom:640.365000px;}
.y21{bottom:640.905000px;}
.y184{bottom:641.265000px;}
.ya5{bottom:644.685000px;}
.y1cb{bottom:645.945000px;}
.y144{bottom:646.305000px;}
.y10f{bottom:654.945000px;}
.y20{bottom:656.565000px;}
.y1a3{bottom:658.185000px;}
.y183{bottom:658.545000px;}
.ya4{bottom:661.965000px;}
.y142{bottom:663.585000px;}
.y1ca{bottom:665.925000px;}
.y1f{bottom:672.045000px;}
.y10e{bottom:672.225000px;}
.y182{bottom:675.645000px;}
.ya3{bottom:679.245000px;}
.y141{bottom:682.125000px;}
.y1e{bottom:683.205000px;}
.y1c9{bottom:686.625000px;}
.y10d{bottom:689.505000px;}
.y3e{bottom:691.845000px;}
.y181{bottom:692.925000px;}
.ya2{bottom:696.345000px;}
.y1d{bottom:696.705000px;}
.y140{bottom:697.245000px;}
.y10c{bottom:706.785000px;}
.y1c{bottom:709.665000px;}
.y180{bottom:710.205000px;}
.ya1{bottom:713.625000px;}
.y1b{bottom:722.625000px;}
.y10b{bottom:724.065000px;}
.y13f{bottom:725.865000px;}
.y17f{bottom:727.485000px;}
.ya0{bottom:730.905000px;}
.y1a{bottom:735.585000px;}
.y13e{bottom:737.745000px;}
.y10a{bottom:741.705000px;}
.y17e{bottom:744.765000px;}
.y1c8{bottom:747.285000px;}
.y9f{bottom:748.185000px;}
.y19{bottom:749.445000px;}
.y13d{bottom:749.985000px;}
.y109{bottom:760.245000px;}
.y17d{bottom:761.865000px;}
.y13c{bottom:762.045000px;}
.y18{bottom:762.225000px;}
.y9e{bottom:765.465000px;}
.y1c7{bottom:767.085000px;}
.y108{bottom:770.505000px;}
.y13b{bottom:773.745000px;}
.y17c{bottom:779.145000px;}
.y9d{bottom:782.565000px;}
.y1c6{bottom:784.905000px;}
.y13a{bottom:787.425000px;}
.y107{bottom:787.785000px;}
.y17{bottom:789.045000px;}
.y17b{bottom:796.425000px;}
.y9c{bottom:799.845000px;}
.y16{bottom:800.205000px;}
.y106{bottom:805.065000px;}
.y17a{bottom:813.705000px;}
.y136{bottom:814.065000px;}
.y9b{bottom:817.125000px;}
.y15{bottom:821.445000px;}
.y105{bottom:822.345000px;}
.y1c5{bottom:823.245000px;}
.y179{bottom:830.985000px;}
.y9a{bottom:834.405000px;}
.y104{bottom:839.625000px;}
.y14{bottom:839.805000px;}
.y1c4{bottom:840.525000px;}
.y132{bottom:842.160000px;}
.y178{bottom:848.265000px;}
.y99{bottom:851.685000px;}
.y103{bottom:856.950000px;}
.y1c3{bottom:857.850000px;}
.y13{bottom:858.210000px;}
.y177{bottom:865.410000px;}
.y12{bottom:867.570000px;}
.y98{bottom:869.010000px;}
.y131{bottom:873.690000px;}
.y102{bottom:874.050000px;}
.y1c2{bottom:875.490000px;}
.y176{bottom:882.690000px;}
.y11{bottom:885.750000px;}
.y97{bottom:886.110000px;}
.ydd{bottom:887.370000px;}
.y130{bottom:889.170000px;}
.y101{bottom:891.330000px;}
.y10{bottom:895.110000px;}
.y175{bottom:899.970000px;}
.y96{bottom:903.390000px;}
.y12f{bottom:904.290000px;}
.y100{bottom:908.610000px;}
.yf{bottom:913.470000px;}
.y1c1{bottom:916.170000px;}
.y174{bottom:917.250000px;}
.y95{bottom:920.670000px;}
.ye{bottom:922.830000px;}
.yff{bottom:925.890000px;}
.y173{bottom:934.530000px;}
.y1c0{bottom:935.970000px;}
.yd{bottom:937.590000px;}
.y94{bottom:937.950000px;}
.yfe{bottom:943.530000px;}
.y172{bottom:951.810000px;}
.y93{bottom:955.230000px;}
.y1bf{bottom:955.950000px;}
.yc{bottom:959.190000px;}
.yfd{bottom:962.070000px;}
.y171{bottom:968.910000px;}
.y92{bottom:972.510000px;}
.y1be{bottom:975.750000px;}
.yb{bottom:980.970000px;}
.y170{bottom:986.190000px;}
.y91{bottom:989.610000px;}
.y1bd{bottom:995.550000px;}
.y16f{bottom:1003.470000px;}
.y90{bottom:1006.890000px;}
.ya{bottom:1008.690000px;}
.y1bc{bottom:1015.350000px;}
.y16e{bottom:1020.750000px;}
.y8f{bottom:1024.170000px;}
.y1bb{bottom:1035.150000px;}
.y9{bottom:1036.230000px;}
.y16d{bottom:1038.030000px;}
.y8e{bottom:1041.450000px;}
.y1ba{bottom:1055.130000px;}
.y16c{bottom:1055.310000px;}
.y8d{bottom:1058.730000px;}
.y8{bottom:1063.230000px;}
.y16b{bottom:1072.770000px;}
.y8c{bottom:1075.830000px;}
.y78{bottom:1096.200000px;}
.y1{bottom:1121.220000px;}
.y8a{bottom:1123.200000px;}
.y4b{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h1a{height:5.805000px;}
.h3c{height:6.257812px;}
.h32{height:12.960000px;}
.h3{height:13.500000px;}
.h36{height:15.105000px;}
.h34{height:15.120000px;}
.h38{height:15.141000px;}
.h39{height:15.156000px;}
.h37{height:15.285000px;}
.h35{height:15.510000px;}
.h1d{height:16.920000px;}
.h23{height:22.140000px;}
.h18{height:23.319141px;}
.h31{height:25.920000px;}
.h30{height:25.941000px;}
.he{height:29.678906px;}
.h12{height:30.963516px;}
.h2f{height:31.081955px;}
.h5{height:34.200000px;}
.h21{height:36.281250px;}
.h26{height:37.437188px;}
.h16{height:39.503370px;}
.h6{height:40.985156px;}
.h22{height:42.086250px;}
.h29{height:43.737568px;}
.h14{height:44.518359px;}
.hd{height:45.116367px;}
.h1c{height:45.714375px;}
.h15{height:46.622932px;}
.h10{height:47.344922px;}
.hf{height:47.678906px;}
.h1e{height:48.616875px;}
.h2e{height:52.971680px;}
.h17{height:52.998047px;}
.h19{height:54.421875px;}
.h13{height:55.291992px;}
.h1b{height:57.780000px;}
.h28{height:58.621992px;}
.h4{height:58.651172px;}
.h2d{height:60.226875px;}
.h3a{height:61.423863px;}
.h3b{height:62.211094px;}
.hc{height:65.010937px;}
.h2{height:65.884219px;}
.ha{height:67.565039px;}
.h11{height:67.824844px;}
.h33{height:68.084282px;}
.h2a{height:70.628906px;}
.hb{height:72.562500px;}
.h24{height:74.953125px;}
.h27{height:75.093750px;}
.h8{height:87.695156px;}
.h2c{height:94.651172px;}
.h2b{height:96.394219px;}
.h9{height:96.508125px;}
.h20{height:121.365000px;}
.h25{height:144.900000px;}
.h1f{height:505.695000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wc{width:53.481000px;}
.w13{width:63.885000px;}
.wf{width:67.500000px;}
.we{width:67.530000px;}
.wd{width:74.145000px;}
.wb{width:74.505000px;}
.w3{width:82.071000px;}
.w12{width:82.821000px;}
.w14{width:100.470000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:199.470000px;}
.w10{width:262.680000px;}
.w11{width:459.426000px;}
.w7{width:532.920000px;}
.w4{width:639.855000px;}
.w15{width:706.635000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:4.252500px;}
.x2{left:8.091000px;}
.x29{left:9.720000px;}
.x15{left:10.791000px;}
.x2e{left:15.150000px;}
.x30{left:18.360000px;}
.x1c{left:21.255000px;}
.x26{left:23.610000px;}
.x34{left:26.850000px;}
.x2b{left:28.080000px;}
.x33{left:40.170000px;}
.x32{left:43.230000px;}
.x3{left:73.965000px;}
.x19{left:80.505000px;}
.x16{left:81.765000px;}
.x18{left:89.325000px;}
.x14{left:93.105000px;}
.x1b{left:94.905000px;}
.x1{left:108.036000px;}
.xc{left:111.636000px;}
.xf{left:117.036000px;}
.x2c{left:118.650000px;}
.x7{left:121.896000px;}
.x21{left:129.276000px;}
.x11{left:132.696000px;}
.x6{left:167.250000px;}
.x24{left:175.530000px;}
.x4{left:190.125000px;}
.xa{left:248.115000px;}
.xe{left:286.815000px;}
.x1e{left:289.155000px;}
.x17{left:303.195000px;}
.x1a{left:310.350000px;}
.x1f{left:364.215000px;}
.x20{left:367.815000px;}
.x8{left:382.395000px;}
.x10{left:406.155000px;}
.xd{left:413.205000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.xb{left:459.105000px;}
.x12{left:489.165000px;}
.x13{left:490.785000px;}
.x25{left:565.320000px;}
.x2d{left:566.760000px;}
.x27{left:618.810000px;}
.x1d{left:620.253000px;}
.x22{left:631.410000px;}
.x2f{left:649.590000px;}
.x28{left:692.970000px;}
.x31{left:713.490000px;}
.x2a{left:760.500000px;}
.x23{left:783.720000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.440000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:32.000000pt;}
.v4{vertical-align:37.760000pt;}
.v5{vertical-align:54.400000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.079467pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.017920pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.128640pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls13{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls1b{letter-spacing:0.310933pt;}
.ls5{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.443520pt;}
.ls4{letter-spacing:0.506240pt;}
.ls14{letter-spacing:0.821333pt;}
.lsc{letter-spacing:0.842667pt;}
.ls11{letter-spacing:1.043840pt;}
.ls10{letter-spacing:2.233600pt;}
.lsf{letter-spacing:2.592640pt;}
.ls18{letter-spacing:5.280000pt;}
.ls1d{letter-spacing:12.960000pt;}
.ls1c{letter-spacing:13.120000pt;}
.ls22{letter-spacing:25.920000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls1{letter-spacing:63.360000pt;}
.ls0{letter-spacing:64.000000pt;}
.ls12{letter-spacing:79.673600pt;}
.wsd{word-spacing:-37.120000pt;}
.ws16{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.101333pt;}
.ws1c{word-spacing:-13.600000pt;}
.ws20{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.510933pt;}
.ws1b{word-spacing:-13.374933pt;}
.ws1e{word-spacing:-13.327360pt;}
.ws15{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws1d{word-spacing:-12.960000pt;}
.ws1f{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.984000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.881067pt;}
.ws17{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-10.390933pt;}
.wsc{word-spacing:-10.122667pt;}
.ws3{word-spacing:-10.080000pt;}
.ws19{word-spacing:-10.062080pt;}
.ws12{word-spacing:-9.996800pt;}
.ws2{word-spacing:-9.760000pt;}
.ws6{word-spacing:-9.733760pt;}
.wsb{word-spacing:-9.280000pt;}
.ws18{word-spacing:-9.200533pt;}
.wsa{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
.ws11{word-spacing:3.392000pt;}
.ws0{word-spacing:54.080000pt;}
._32{margin-left:-385.547520pt;}
._2f{margin-left:-210.670720pt;}
._30{margin-left:-119.662080pt;}
._31{margin-left:-72.613120pt;}
._5{margin-left:-52.960000pt;}
._20{margin-left:-3.346560pt;}
._10{margin-left:-2.284160pt;}
._2{margin-left:-0.919680pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._7{width:3.877760pt;}
._c{width:5.258880pt;}
._d{width:6.814507pt;}
._13{width:8.551040pt;}
._12{width:9.504000pt;}
._11{width:10.896000pt;}
._19{width:12.103040pt;}
._14{width:13.984640pt;}
._8{width:14.873600pt;}
._f{width:16.307840pt;}
._1b{width:17.292160pt;}
._25{width:18.193920pt;}
._15{width:19.383680pt;}
._2a{width:20.403200pt;}
._18{width:21.301120pt;}
._21{width:22.232320pt;}
._a{width:23.372800pt;}
._b{width:24.382080pt;}
._9{width:25.763200pt;}
._e{width:26.719360pt;}
._22{width:28.422400pt;}
._33{width:29.604480pt;}
._16{width:30.809600pt;}
._24{width:32.456320pt;}
._28{width:33.996800pt;}
._1c{width:35.537280pt;}
._1f{width:37.281067pt;}
._1e{width:38.193280pt;}
._23{width:39.233920pt;}
._26{width:40.233600pt;}
._1d{width:41.608320pt;}
._2c{width:42.549120pt;}
._2d{width:43.717760pt;}
._1a{width:45.152000pt;}
._3c{width:46.737280pt;}
._27{width:48.126720pt;}
._3d{width:50.145280pt;}
._3a{width:51.367040pt;}
._39{width:52.421120pt;}
._38{width:53.589760pt;}
._3{width:58.218667pt;}
._29{width:60.078720pt;}
._35{width:61.247360pt;}
._34{width:62.522240pt;}
._2e{width:63.738240pt;}
._36{width:85.527680pt;}
._2b{width:87.410560pt;}
._44{width:90.144640pt;}
._3b{width:92.800640pt;}
._43{width:95.089280pt;}
._41{width:101.822720pt;}
._37{width:104.115200pt;}
._40{width:107.568000pt;}
._3f{width:108.887680pt;}
._42{width:121.007360pt;}
._3e{width:147.293440pt;}
._4{width:177.440000pt;}
._17{width:250.906667pt;}
._6{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.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;}
.fsf{font-size:45.440000pt;}
.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;}
.y4a{bottom:-220.186667pt;}
.y49{bottom:-190.266667pt;}
.y48{bottom:-160.186667pt;}
.y47{bottom:-130.266667pt;}
.y87{bottom:-127.386667pt;}
.y46{bottom:-100.346667pt;}
.y86{bottom:-97.306667pt;}
.y45{bottom:-70.266667pt;}
.y85{bottom:-67.386667pt;}
.y44{bottom:-40.320000pt;}
.y84{bottom:-37.306667pt;}
.y4d{bottom:-24.160000pt;}
.y89{bottom:-15.931333pt;}
.y43{bottom:-10.240000pt;}
.y83{bottom:-7.346667pt;}
.y0{bottom:0.000000pt;}
.y1e4{bottom:1.633333pt;}
.y145{bottom:2.240000pt;}
.y134{bottom:2.386667pt;}
.y143{bottom:2.400000pt;}
.y156{bottom:2.426667pt;}
.y15d{bottom:2.546667pt;}
.y138{bottom:2.560000pt;}
.y158{bottom:3.506667pt;}
.y3{bottom:3.520000pt;}
.y155{bottom:3.546667pt;}
.y15c{bottom:3.666667pt;}
.y4c{bottom:4.480000pt;}
.y79{bottom:4.960000pt;}
.y42{bottom:6.080000pt;}
.y6f{bottom:7.346667pt;}
.y135{bottom:8.146667pt;}
.y139{bottom:8.320000pt;}
.y6{bottom:11.200000pt;}
.y133{bottom:13.946667pt;}
.y137{bottom:14.080000pt;}
.y41{bottom:18.400000pt;}
.y7{bottom:19.520000pt;}
.y4{bottom:20.640000pt;}
.y6e{bottom:21.426667pt;}
.y5{bottom:21.920000pt;}
.y82{bottom:22.573333pt;}
.y77{bottom:27.373333pt;}
.y40{bottom:30.880000pt;}
.y6d{bottom:34.066667pt;}
.y76{bottom:39.213333pt;}
.y8b{bottom:41.760000pt;}
.y3f{bottom:42.240000pt;}
.y6c{bottom:42.866667pt;}
.y81{bottom:50.093333pt;}
.y75{bottom:50.733333pt;}
.y2{bottom:51.040000pt;}
.y88{bottom:56.693333pt;}
.y6b{bottom:56.786667pt;}
.y80{bottom:61.773333pt;}
.y74{bottom:62.440000pt;}
.y6a{bottom:70.546667pt;}
.y7f{bottom:73.293333pt;}
.y73{bottom:73.960000pt;}
.y69{bottom:84.306667pt;}
.y7e{bottom:84.973333pt;}
.y72{bottom:85.640000pt;}
.y12e{bottom:87.840000pt;}
.y1b9{bottom:88.640000pt;}
.y1a2{bottom:94.560000pt;}
.yed{bottom:95.520000pt;}
.ydc{bottom:96.480000pt;}
.y7d{bottom:96.493333pt;}
.y68{bottom:96.946667pt;}
.yc4{bottom:97.600000pt;}
.yfc{bottom:98.560000pt;}
.y16a{bottom:99.520000pt;}
.y71{bottom:100.680000pt;}
.y12d{bottom:103.040000pt;}
.y67{bottom:105.786667pt;}
.y7c{bottom:108.013333pt;}
.y1a1{bottom:109.920000pt;}
.y3d{bottom:110.400000pt;}
.yec{bottom:110.880000pt;}
.ydb{bottom:111.840000pt;}
.yc3{bottom:112.960000pt;}
.yfb{bottom:113.920000pt;}
.y1e3{bottom:114.080000pt;}
.y12c{bottom:118.400000pt;}
.y7b{bottom:119.053333pt;}
.y66{bottom:119.706667pt;}
.y169{bottom:120.800000pt;}
.y1b8{bottom:122.720000pt;}
.y1a0{bottom:125.280000pt;}
.y3c{bottom:125.760000pt;}
.yeb{bottom:126.240000pt;}
.yda{bottom:127.040000pt;}
.yc2{bottom:128.320000pt;}
.yfa{bottom:129.280000pt;}
.y1e2{bottom:129.440000pt;}
.y65{bottom:133.466667pt;}
.y12b{bottom:133.760000pt;}
.y168{bottom:135.040000pt;}
.y1b7{bottom:138.080000pt;}
.y19f{bottom:140.640000pt;}
.y3b{bottom:141.120000pt;}
.yea{bottom:141.600000pt;}
.yd9{bottom:142.400000pt;}
.yc1{bottom:143.680000pt;}
.yf9{bottom:144.666667pt;}
.y1e1{bottom:144.826667pt;}
.y64{bottom:147.226667pt;}
.y12a{bottom:149.146667pt;}
.y167{bottom:149.160000pt;}
.y1b6{bottom:153.306667pt;}
.y19e{bottom:155.866667pt;}
.y3a{bottom:156.506667pt;}
.ye9{bottom:156.826667pt;}
.yd8{bottom:157.786667pt;}
.yc0{bottom:159.066667pt;}
.yf8{bottom:160.026667pt;}
.y1e0{bottom:160.186667pt;}
.y63{bottom:160.986667pt;}
.y166{bottom:163.400000pt;}
.y129{bottom:164.506667pt;}
.y1b5{bottom:168.666667pt;}
.y19d{bottom:171.226667pt;}
.y39{bottom:171.866667pt;}
.ye8{bottom:172.186667pt;}
.yd7{bottom:173.146667pt;}
.ybf{bottom:174.266667pt;}
.y62{bottom:174.906667pt;}
.yf7{bottom:175.226667pt;}
.y1df{bottom:175.386667pt;}
.y165{bottom:177.480000pt;}
.y128{bottom:179.866667pt;}
.y1b4{bottom:184.346667pt;}
.yd6{bottom:185.306667pt;}
.y19c{bottom:186.586667pt;}
.y38{bottom:187.066667pt;}
.ye7{bottom:187.546667pt;}
.y61{bottom:188.666667pt;}
.ybe{bottom:189.626667pt;}
.yf6{bottom:190.586667pt;}
.y1de{bottom:190.746667pt;}
.y164{bottom:191.720000pt;}
.yd5{bottom:193.306667pt;}
.y127{bottom:195.066667pt;}
.y19b{bottom:201.946667pt;}
.y37{bottom:202.426667pt;}
.ye6{bottom:202.906667pt;}
.ybd{bottom:204.986667pt;}
.y163{bottom:205.800000pt;}
.yf5{bottom:205.946667pt;}
.y1dd{bottom:206.106667pt;}
.y126{bottom:210.426667pt;}
.y60{bottom:216.186667pt;}
.y19a{bottom:217.306667pt;}
.y36{bottom:217.786667pt;}
.yd4{bottom:218.106667pt;}
.ye5{bottom:218.266667pt;}
.y162{bottom:220.040000pt;}
.ybc{bottom:220.346667pt;}
.y1b3{bottom:220.506667pt;}
.yf4{bottom:221.306667pt;}
.y1dc{bottom:221.466667pt;}
.y125{bottom:225.786667pt;}
.y5f{bottom:230.106667pt;}
.y199{bottom:232.666667pt;}
.y35{bottom:233.466667pt;}
.ye4{bottom:233.626667pt;}
.y161{bottom:234.120000pt;}
.ybb{bottom:235.706667pt;}
.yf3{bottom:236.666667pt;}
.y1db{bottom:236.826667pt;}
.y1b2{bottom:238.266667pt;}
.y124{bottom:241.146667pt;}
.y5e{bottom:242.586667pt;}
.y4e{bottom:245.480000pt;}
.y198{bottom:247.866667pt;}
.y160{bottom:248.360000pt;}
.y34{bottom:248.666667pt;}
.yd3{bottom:248.826667pt;}
.yba{bottom:251.066667pt;}
.y5d{bottom:251.546667pt;}
.yf2{bottom:252.026667pt;}
.y33{bottom:253.466667pt;}
.y1b1{bottom:255.866667pt;}
.y123{bottom:256.506667pt;}
.y15f{bottom:262.440000pt;}
.y197{bottom:263.226667pt;}
.yd2{bottom:264.186667pt;}
.y5c{bottom:265.306667pt;}
.yb9{bottom:266.266667pt;}
.yf1{bottom:267.226667pt;}
.y1da{bottom:267.386667pt;}
.y32{bottom:270.746667pt;}
.y1b0{bottom:271.546667pt;}
.y122{bottom:271.866667pt;}
.y15e{bottom:276.680000pt;}
.y196{bottom:278.586667pt;}
.y5b{bottom:279.066667pt;}
.yd1{bottom:279.386667pt;}
.ye3{bottom:279.546667pt;}
.yb8{bottom:281.626667pt;}
.yf0{bottom:282.586667pt;}
.y1d9{bottom:282.746667pt;}
.y31{bottom:285.626667pt;}
.y121{bottom:287.066667pt;}
.y15b{bottom:290.760000pt;}
.y5a{bottom:292.826667pt;}
.y195{bottom:293.946667pt;}
.yd0{bottom:294.746667pt;}
.ye2{bottom:294.906667pt;}
.yb7{bottom:296.986667pt;}
.yef{bottom:297.946667pt;}
.y1d8{bottom:298.106667pt;}
.y120{bottom:302.426667pt;}
.y30{bottom:304.026667pt;}
.y15a{bottom:305.000000pt;}
.y1af{bottom:305.786667pt;}
.y59{bottom:306.746667pt;}
.y194{bottom:309.306667pt;}
.ycf{bottom:310.106667pt;}
.ye1{bottom:310.586667pt;}
.yb6{bottom:312.346667pt;}
.yee{bottom:313.306667pt;}
.y1d7{bottom:313.466667pt;}
.y11f{bottom:317.786667pt;}
.y159{bottom:319.240000pt;}
.y58{bottom:320.533333pt;}
.y1ae{bottom:321.466667pt;}
.y2f{bottom:322.426667pt;}
.y193{bottom:324.666667pt;}
.yce{bottom:325.466667pt;}
.yb5{bottom:327.706667pt;}
.ye0{bottom:327.866667pt;}
.y1d6{bottom:328.826667pt;}
.y11e{bottom:333.146667pt;}
.y157{bottom:333.320000pt;}
.y57{bottom:334.293333pt;}
.y192{bottom:339.866667pt;}
.y2e{bottom:340.826667pt;}
.ydf{bottom:341.946667pt;}
.yb4{bottom:342.906667pt;}
.y1d5{bottom:344.026667pt;}
.y56{bottom:346.933333pt;}
.y154{bottom:347.560000pt;}
.y11d{bottom:348.506667pt;}
.yde{bottom:353.026667pt;}
.y191{bottom:355.266667pt;}
.y55{bottom:355.733333pt;}
.ycd{bottom:356.546667pt;}
.yb3{bottom:358.306667pt;}
.y2d{bottom:359.266667pt;}
.y1d4{bottom:359.746667pt;}
.y153{bottom:361.666667pt;}
.y11c{bottom:363.746667pt;}
.y54{bottom:369.653333pt;}
.y190{bottom:370.626667pt;}
.ycc{bottom:373.026667pt;}
.yb2{bottom:373.666667pt;}
.y152{bottom:375.906667pt;}
.y1ad{bottom:376.066667pt;}
.y2c{bottom:377.666667pt;}
.y11b{bottom:379.106667pt;}
.ycb{bottom:382.146667pt;}
.y7a{bottom:382.293333pt;}
.y53{bottom:383.413333pt;}
.y18f{bottom:385.986667pt;}
.yb1{bottom:389.026667pt;}
.y151{bottom:389.986667pt;}
.y1ac{bottom:393.666667pt;}
.y11a{bottom:394.466667pt;}
.y2b{bottom:396.066667pt;}
.y1d3{bottom:396.226667pt;}
.y52{bottom:397.173333pt;}
.yca{bottom:397.506667pt;}
.y18e{bottom:401.346667pt;}
.y150{bottom:404.226667pt;}
.yb0{bottom:404.386667pt;}
.y119{bottom:409.826667pt;}
.y51{bottom:410.933333pt;}
.y1ab{bottom:411.266667pt;}
.yc9{bottom:412.866667pt;}
.y2a{bottom:414.466667pt;}
.y18d{bottom:416.546667pt;}
.y14f{bottom:418.306667pt;}
.yaf{bottom:419.746667pt;}
.y50{bottom:424.853333pt;}
.y118{bottom:425.506667pt;}
.y1aa{bottom:427.106667pt;}
.yc8{bottom:428.226667pt;}
.y18c{bottom:431.906667pt;}
.y29{bottom:432.066667pt;}
.y14e{bottom:432.546667pt;}
.yae{bottom:434.946667pt;}
.y4f{bottom:438.613333pt;}
.yc7{bottom:443.586667pt;}
.y28{bottom:444.226667pt;}
.y14d{bottom:446.626667pt;}
.y18b{bottom:447.266667pt;}
.yad{bottom:450.306667pt;}
.y1d2{bottom:450.786667pt;}
.y27{bottom:452.066667pt;}
.yc6{bottom:459.266667pt;}
.y117{bottom:459.586667pt;}
.y14c{bottom:460.866667pt;}
.y18a{bottom:462.626667pt;}
.y1a9{bottom:463.266667pt;}
.yac{bottom:465.666667pt;}
.y26{bottom:465.826667pt;}
.y1d1{bottom:468.386667pt;}
.y116{bottom:474.946667pt;}
.yc5{bottom:477.666667pt;}
.y189{bottom:477.986667pt;}
.y25{bottom:479.586667pt;}
.yab{bottom:481.026667pt;}
.y1d0{bottom:485.986667pt;}
.y14b{bottom:489.186667pt;}
.y115{bottom:490.146667pt;}
.y24{bottom:493.346667pt;}
.y70{bottom:496.213333pt;}
.yaa{bottom:496.386667pt;}
.y1a8{bottom:498.626667pt;}
.y14a{bottom:503.266667pt;}
.y1cf{bottom:503.746667pt;}
.y114{bottom:505.506667pt;}
.y188{bottom:508.546667pt;}
.ya9{bottom:511.746667pt;}
.y1a7{bottom:516.226667pt;}
.y149{bottom:517.506667pt;}
.y113{bottom:520.866667pt;}
.y1ce{bottom:521.346667pt;}
.y187{bottom:523.906667pt;}
.ya8{bottom:526.946667pt;}
.y148{bottom:531.746667pt;}
.y1a6{bottom:533.826667pt;}
.y112{bottom:536.226667pt;}
.y1cd{bottom:538.946667pt;}
.y186{bottom:539.266667pt;}
.y23{bottom:542.146667pt;}
.ya7{bottom:542.306667pt;}
.y147{bottom:545.826667pt;}
.y1a5{bottom:551.426667pt;}
.y111{bottom:551.586667pt;}
.y185{bottom:554.653333pt;}
.y22{bottom:555.933333pt;}
.y1cc{bottom:556.573333pt;}
.ya6{bottom:557.693333pt;}
.y146{bottom:560.253333pt;}
.y110{bottom:566.973333pt;}
.y1a4{bottom:569.213333pt;}
.y21{bottom:569.693333pt;}
.y184{bottom:570.013333pt;}
.ya5{bottom:573.053333pt;}
.y1cb{bottom:574.173333pt;}
.y144{bottom:574.493333pt;}
.y10f{bottom:582.173333pt;}
.y20{bottom:583.613333pt;}
.y1a3{bottom:585.053333pt;}
.y183{bottom:585.373333pt;}
.ya4{bottom:588.413333pt;}
.y142{bottom:589.853333pt;}
.y1ca{bottom:591.933333pt;}
.y1f{bottom:597.373333pt;}
.y10e{bottom:597.533333pt;}
.y182{bottom:600.573333pt;}
.ya3{bottom:603.773333pt;}
.y141{bottom:606.333333pt;}
.y1e{bottom:607.293333pt;}
.y1c9{bottom:610.333333pt;}
.y10d{bottom:612.893333pt;}
.y3e{bottom:614.973333pt;}
.y181{bottom:615.933333pt;}
.ya2{bottom:618.973333pt;}
.y1d{bottom:619.293333pt;}
.y140{bottom:619.773333pt;}
.y10c{bottom:628.253333pt;}
.y1c{bottom:630.813333pt;}
.y180{bottom:631.293333pt;}
.ya1{bottom:634.333333pt;}
.y1b{bottom:642.333333pt;}
.y10b{bottom:643.613333pt;}
.y13f{bottom:645.213333pt;}
.y17f{bottom:646.653333pt;}
.ya0{bottom:649.693333pt;}
.y1a{bottom:653.853333pt;}
.y13e{bottom:655.773333pt;}
.y10a{bottom:659.293333pt;}
.y17e{bottom:662.013333pt;}
.y1c8{bottom:664.253333pt;}
.y9f{bottom:665.053333pt;}
.y19{bottom:666.173333pt;}
.y13d{bottom:666.653333pt;}
.y109{bottom:675.773333pt;}
.y17d{bottom:677.213333pt;}
.y13c{bottom:677.373333pt;}
.y18{bottom:677.533333pt;}
.y9e{bottom:680.413333pt;}
.y1c7{bottom:681.853333pt;}
.y108{bottom:684.893333pt;}
.y13b{bottom:687.773333pt;}
.y17c{bottom:692.573333pt;}
.y9d{bottom:695.613333pt;}
.y1c6{bottom:697.693333pt;}
.y13a{bottom:699.933333pt;}
.y107{bottom:700.253333pt;}
.y17{bottom:701.373333pt;}
.y17b{bottom:707.933333pt;}
.y9c{bottom:710.973333pt;}
.y16{bottom:711.293333pt;}
.y106{bottom:715.613333pt;}
.y17a{bottom:723.293333pt;}
.y136{bottom:723.613333pt;}
.y9b{bottom:726.333333pt;}
.y15{bottom:730.173333pt;}
.y105{bottom:730.973333pt;}
.y1c5{bottom:731.773333pt;}
.y179{bottom:738.653333pt;}
.y9a{bottom:741.693333pt;}
.y104{bottom:746.333333pt;}
.y14{bottom:746.493333pt;}
.y1c4{bottom:747.133333pt;}
.y132{bottom:748.586667pt;}
.y178{bottom:754.013333pt;}
.y99{bottom:757.053333pt;}
.y103{bottom:761.733333pt;}
.y1c3{bottom:762.533333pt;}
.y13{bottom:762.853333pt;}
.y177{bottom:769.253333pt;}
.y12{bottom:771.173333pt;}
.y98{bottom:772.453333pt;}
.y131{bottom:776.613333pt;}
.y102{bottom:776.933333pt;}
.y1c2{bottom:778.213333pt;}
.y176{bottom:784.613333pt;}
.y11{bottom:787.333333pt;}
.y97{bottom:787.653333pt;}
.ydd{bottom:788.773333pt;}
.y130{bottom:790.373333pt;}
.y101{bottom:792.293333pt;}
.y10{bottom:795.653333pt;}
.y175{bottom:799.973333pt;}
.y96{bottom:803.013333pt;}
.y12f{bottom:803.813333pt;}
.y100{bottom:807.653333pt;}
.yf{bottom:811.973333pt;}
.y1c1{bottom:814.373333pt;}
.y174{bottom:815.333333pt;}
.y95{bottom:818.373333pt;}
.ye{bottom:820.293333pt;}
.yff{bottom:823.013333pt;}
.y173{bottom:830.693333pt;}
.y1c0{bottom:831.973333pt;}
.yd{bottom:833.413333pt;}
.y94{bottom:833.733333pt;}
.yfe{bottom:838.693333pt;}
.y172{bottom:846.053333pt;}
.y93{bottom:849.093333pt;}
.y1bf{bottom:849.733333pt;}
.yc{bottom:852.613333pt;}
.yfd{bottom:855.173333pt;}
.y171{bottom:861.253333pt;}
.y92{bottom:864.453333pt;}
.y1be{bottom:867.333333pt;}
.yb{bottom:871.973333pt;}
.y170{bottom:876.613333pt;}
.y91{bottom:879.653333pt;}
.y1bd{bottom:884.933333pt;}
.y16f{bottom:891.973333pt;}
.y90{bottom:895.013333pt;}
.ya{bottom:896.613333pt;}
.y1bc{bottom:902.533333pt;}
.y16e{bottom:907.333333pt;}
.y8f{bottom:910.373333pt;}
.y1bb{bottom:920.133333pt;}
.y9{bottom:921.093333pt;}
.y16d{bottom:922.693333pt;}
.y8e{bottom:925.733333pt;}
.y1ba{bottom:937.893333pt;}
.y16c{bottom:938.053333pt;}
.y8d{bottom:941.093333pt;}
.y8{bottom:945.093333pt;}
.y16b{bottom:953.573333pt;}
.y8c{bottom:956.293333pt;}
.y78{bottom:974.400000pt;}
.y1{bottom:996.640000pt;}
.y8a{bottom:998.400000pt;}
.y4b{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h1a{height:5.160000pt;}
.h3c{height:5.562500pt;}
.h32{height:11.520000pt;}
.h3{height:12.000000pt;}
.h36{height:13.426667pt;}
.h34{height:13.440000pt;}
.h38{height:13.458667pt;}
.h39{height:13.472000pt;}
.h37{height:13.586667pt;}
.h35{height:13.786667pt;}
.h1d{height:15.040000pt;}
.h23{height:19.680000pt;}
.h18{height:20.728125pt;}
.h31{height:23.040000pt;}
.h30{height:23.058667pt;}
.he{height:26.381250pt;}
.h12{height:27.523125pt;}
.h2f{height:27.628404pt;}
.h5{height:30.400000pt;}
.h21{height:32.250000pt;}
.h26{height:33.277500pt;}
.h16{height:35.114107pt;}
.h6{height:36.431250pt;}
.h22{height:37.410000pt;}
.h29{height:38.877839pt;}
.h14{height:39.571875pt;}
.hd{height:40.103437pt;}
.h1c{height:40.635000pt;}
.h15{height:41.442606pt;}
.h10{height:42.084375pt;}
.hf{height:42.381250pt;}
.h1e{height:43.215000pt;}
.h2e{height:47.085938pt;}
.h17{height:47.109375pt;}
.h19{height:48.375000pt;}
.h13{height:49.148438pt;}
.h1b{height:51.360000pt;}
.h28{height:52.108438pt;}
.h4{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h3a{height:54.598989pt;}
.h3b{height:55.298750pt;}
.hc{height:57.787500pt;}
.h2{height:58.563750pt;}
.ha{height:60.057813pt;}
.h11{height:60.288750pt;}
.h33{height:60.519362pt;}
.h2a{height:62.781250pt;}
.hb{height:64.500000pt;}
.h24{height:66.625000pt;}
.h27{height:66.750000pt;}
.h8{height:77.951250pt;}
.h2c{height:84.134375pt;}
.h2b{height:85.683750pt;}
.h9{height:85.785000pt;}
.h20{height:107.880000pt;}
.h25{height:128.800000pt;}
.h1f{height:449.506667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wc{width:47.538667pt;}
.w13{width:56.786667pt;}
.wf{width:60.000000pt;}
.we{width:60.026667pt;}
.wd{width:65.906667pt;}
.wb{width:66.226667pt;}
.w3{width:72.952000pt;}
.w12{width:73.618667pt;}
.w14{width:89.306667pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:177.306667pt;}
.w10{width:233.493333pt;}
.w11{width:408.378667pt;}
.w7{width:473.706667pt;}
.w4{width:568.760000pt;}
.w15{width:628.120000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:3.780000pt;}
.x2{left:7.192000pt;}
.x29{left:8.640000pt;}
.x15{left:9.592000pt;}
.x2e{left:13.466667pt;}
.x30{left:16.320000pt;}
.x1c{left:18.893333pt;}
.x26{left:20.986667pt;}
.x34{left:23.866667pt;}
.x2b{left:24.960000pt;}
.x33{left:35.706667pt;}
.x32{left:38.426667pt;}
.x3{left:65.746667pt;}
.x19{left:71.560000pt;}
.x16{left:72.680000pt;}
.x18{left:79.400000pt;}
.x14{left:82.760000pt;}
.x1b{left:84.360000pt;}
.x1{left:96.032000pt;}
.xc{left:99.232000pt;}
.xf{left:104.032000pt;}
.x2c{left:105.466667pt;}
.x7{left:108.352000pt;}
.x21{left:114.912000pt;}
.x11{left:117.952000pt;}
.x6{left:148.666667pt;}
.x24{left:156.026667pt;}
.x4{left:169.000000pt;}
.xa{left:220.546667pt;}
.xe{left:254.946667pt;}
.x1e{left:257.026667pt;}
.x17{left:269.506667pt;}
.x1a{left:275.866667pt;}
.x1f{left:323.746667pt;}
.x20{left:326.946667pt;}
.x8{left:339.906667pt;}
.x10{left:361.026667pt;}
.xd{left:367.293333pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.xb{left:408.093333pt;}
.x12{left:434.813333pt;}
.x13{left:436.253333pt;}
.x25{left:502.506667pt;}
.x2d{left:503.786667pt;}
.x27{left:550.053333pt;}
.x1d{left:551.336000pt;}
.x22{left:561.253333pt;}
.x2f{left:577.413333pt;}
.x28{left:615.973333pt;}
.x31{left:634.213333pt;}
.x2a{left:676.000000pt;}
.x23{left:696.640000pt;}
}




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