
    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_16c58dcf532539703d31f899.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_74f21bd3f74b3a7ae11eacdd.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_1b8d2cd44f67854a161fbaf9.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_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8ed5ae40ad68ae0a94e24593.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0cd9ddd0e82463fd6071196e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d61cdd99697e3684b409d7f8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_28d09231b400cf7b7c697676.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_165fb94c4df93711d2726227.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9403d874d15826ac9e29a89c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6d4cc78131293854dba2c11a.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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);}
.v3{vertical-align:-55.440000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls15{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.810000px;}
.ls19{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.349800px;}
.lsd{letter-spacing:-0.223800px;}
.ls16{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.181200px;}
.ls14{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.005040px;}
.ls8{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls10{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.144720px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.284400px;}
.ls1e{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.315600px;}
.ls6{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.460200px;}
.ls1a{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.900000px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:71.400000px;}
.ls2{letter-spacing:72.720000px;}
.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;}
.wsd{word-spacing:-16.560000px;}
.ws1a{word-spacing:-15.400200px;}
.ws1d{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.wse{word-spacing:-15.046800px;}
.ws1b{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.733600px;}
.ws1c{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.500000px;}
.ws18{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.241200px;}
.ws14{word-spacing:-12.060000px;}
.ws16{word-spacing:-11.878800px;}
.ws6{word-spacing:-11.700000px;}
.ws5{word-spacing:-11.340000px;}
.ws3{word-spacing:-11.334960px;}
.ws2{word-spacing:-10.990200px;}
.ws4{word-spacing:-10.980000px;}
.ws8{word-spacing:-10.950480px;}
.wsb{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsc{word-spacing:0.000000px;}
.ws19{word-spacing:11.401200px;}
.ws15{word-spacing:25.320240px;}
.ws17{word-spacing:25.801200px;}
.ws0{word-spacing:60.840000px;}
._27{margin-left:-282.699360px;}
._2b{margin-left:-257.110560px;}
._2a{margin-left:-187.423920px;}
._29{margin-left:-175.047840px;}
._28{margin-left:-121.453200px;}
._6{margin-left:-59.580000px;}
._2f{margin-left:-50.484960px;}
._2d{margin-left:-38.458800px;}
._17{margin-left:-3.378960px;}
._b{margin-left:-2.248560px;}
._2{margin-left:-1.006560px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._3{width:3.515760px;}
._13{width:4.569600px;}
._c{width:5.677200px;}
._1b{width:6.715440px;}
._12{width:7.768800px;}
._16{width:9.609840px;}
._d{width:11.175120px;}
._11{width:12.342240px;}
._14{width:13.446000px;}
._18{width:16.803360px;}
._9{width:17.899920px;}
._a{width:19.214640px;}
._e{width:20.856240px;}
._26{width:22.230720px;}
._1d{width:23.485680px;}
._8{width:24.621120px;}
._32{width:25.696800px;}
._23{width:26.712720px;}
._f{width:28.256160px;}
._10{width:29.700720px;}
._15{width:30.857040px;}
._21{width:32.091120px;}
._1e{width:34.063200px;}
._41{width:35.318160px;}
._25{width:36.393840px;}
._33{width:37.441440px;}
._2e{width:38.795040px;}
._20{width:40.218480px;}
._40{width:41.928960px;}
._1c{width:43.266240px;}
._2c{width:44.580960px;}
._1f{width:46.254240px;}
._34{width:47.767680px;}
._24{width:49.361760px;}
._37{width:50.409360px;}
._39{width:52.170480px;}
._3a{width:53.581680px;}
._3b{width:58.445280px;}
._19{width:62.055360px;}
._30{width:64.425600px;}
._4{width:65.496000px;}
._31{width:67.767840px;}
._38{width:68.963040px;}
._22{width:70.038720px;}
._3d{width:76.680000px;}
._43{width:95.018400px;}
._3f{width:99.560160px;}
._35{width:101.257680px;}
._3e{width:105.297120px;}
._42{width:139.061520px;}
._3c{width:144.043920px;}
._36{width:177.009120px;}
._5{width:199.620000px;}
._1a{width:282.270000px;}
._7{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;}
.fs10{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;}
.fsa{font-size:54.000000px;}
.fsf{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;}
.y46{bottom:-247.755000px;}
.y45{bottom:-213.870000px;}
.y44{bottom:-180.210000px;}
.y7f{bottom:-169.395000px;}
.y43{bottom:-146.550000px;}
.y7e{bottom:-135.735000px;}
.y42{bottom:-112.710000px;}
.y7d{bottom:-101.895000px;}
.y41{bottom:-79.050000px;}
.y7c{bottom:-68.235000px;}
.y40{bottom:-45.210000px;}
.y7b{bottom:-34.575000px;}
.y49{bottom:-27.180000px;}
.y81{bottom:-17.922750px;}
.y3f{bottom:-11.550000px;}
.y7a{bottom:-0.735000px;}
.y0{bottom:0.000000px;}
.y65{bottom:0.885000px;}
.y1d6{bottom:1.837500px;}
.y3{bottom:3.960000px;}
.y122{bottom:4.680000px;}
.y13b{bottom:4.710000px;}
.y117{bottom:4.860000px;}
.y6d{bottom:4.875000px;}
.y48{bottom:5.040000px;}
.y6f{bottom:5.580000px;}
.y140{bottom:6.660000px;}
.y3e{bottom:6.840000px;}
.y125{bottom:7.740000px;}
.y11c{bottom:11.700000px;}
.y6{bottom:12.600000px;}
.y147{bottom:12.960000px;}
.y127{bottom:13.140000px;}
.y141{bottom:13.320000px;}
.y64{bottom:15.285000px;}
.y13d{bottom:16.920000px;}
.y13f{bottom:17.100000px;}
.y6c{bottom:18.375000px;}
.y11a{bottom:18.720000px;}
.y120{bottom:18.900000px;}
.y3d{bottom:20.700000px;}
.y124{bottom:21.600000px;}
.y7{bottom:21.960000px;}
.y4{bottom:23.220000px;}
.y5{bottom:24.660000px;}
.y11b{bottom:25.740000px;}
.y63{bottom:26.265000px;}
.y79{bottom:30.270000px;}
.y6b{bottom:31.335000px;}
.y119{bottom:32.400000px;}
.y3c{bottom:34.740000px;}
.y11e{bottom:40.845000px;}
.y62{bottom:42.465000px;}
.y78{bottom:43.230000px;}
.y6a{bottom:44.295000px;}
.y83{bottom:46.980000px;}
.y3b{bottom:47.520000px;}
.y77{bottom:56.370000px;}
.y2{bottom:57.420000px;}
.y69{bottom:57.435000px;}
.y61{bottom:58.845000px;}
.y80{bottom:63.780000px;}
.y76{bottom:69.330000px;}
.y68{bottom:70.395000px;}
.y60{bottom:75.045000px;}
.y75{bottom:82.470000px;}
.y67{bottom:87.315000px;}
.y5f{bottom:89.670000px;}
.y74{bottom:95.430000px;}
.yeb{bottom:99.540000px;}
.y5e{bottom:100.470000px;}
.y159{bottom:103.320000px;}
.y15b{bottom:103.680000px;}
.y73{bottom:108.390000px;}
.y1d2{bottom:109.800000px;}
.y19c{bottom:116.820000px;}
.y5d{bottom:116.850000px;}
.y101{bottom:117.540000px;}
.yea{bottom:119.520000px;}
.y137{bottom:119.880000px;}
.y72{bottom:121.530000px;}
.y158{bottom:123.120000px;}
.y15a{bottom:123.480000px;}
.y1d1{bottom:127.080000px;}
.y39{bottom:128.340000px;}
.y5c{bottom:133.050000px;}
.y71{bottom:133.770000px;}
.y19b{bottom:133.920000px;}
.y136{bottom:135.360000px;}
.y100{bottom:137.520000px;}
.ye9{bottom:139.320000px;}
.y157{bottom:142.920000px;}
.yb2{bottom:143.280000px;}
.y1d0{bottom:144.360000px;}
.yd3{bottom:146.340000px;}
.y38{bottom:148.140000px;}
.y5b{bottom:149.430000px;}
.y19a{bottom:151.200000px;}
.yff{bottom:157.320000px;}
.y170{bottom:158.940000px;}
.ye8{bottom:159.120000px;}
.y1cf{bottom:161.640000px;}
.y156{bottom:162.930000px;}
.yb1{bottom:163.110000px;}
.y5a{bottom:165.630000px;}
.yd2{bottom:166.170000px;}
.y37{bottom:168.150000px;}
.y199{bottom:168.510000px;}
.yfe{bottom:177.150000px;}
.y16f{bottom:178.770000px;}
.ye7{bottom:178.950000px;}
.y59{bottom:180.210000px;}
.y155{bottom:182.730000px;}
.yb0{bottom:183.090000px;}
.y198{bottom:185.790000px;}
.yd1{bottom:185.970000px;}
.y36{bottom:187.950000px;}
.y58{bottom:191.010000px;}
.y1ce{bottom:196.050000px;}
.yfd{bottom:196.950000px;}
.y16e{bottom:198.570000px;}
.ye6{bottom:198.750000px;}
.y154{bottom:202.530000px;}
.yaf{bottom:202.890000px;}
.y197{bottom:203.070000px;}
.yd0{bottom:205.770000px;}
.y57{bottom:207.390000px;}
.y35{bottom:207.750000px;}
.y1cd{bottom:213.330000px;}
.yfc{bottom:216.750000px;}
.y16d{bottom:218.370000px;}
.ye5{bottom:218.730000px;}
.y196{bottom:220.350000px;}
.y153{bottom:222.330000px;}
.yae{bottom:222.690000px;}
.y56{bottom:223.590000px;}
.ycf{bottom:225.570000px;}
.y34{bottom:227.550000px;}
.y1cc{bottom:230.610000px;}
.yfb{bottom:236.730000px;}
.y195{bottom:237.450000px;}
.y16c{bottom:238.170000px;}
.ye4{bottom:239.430000px;}
.y55{bottom:239.970000px;}
.y152{bottom:242.130000px;}
.yad{bottom:242.490000px;}
.yce{bottom:245.550000px;}
.y33{bottom:247.350000px;}
.y1cb{bottom:247.890000px;}
.y194{bottom:254.730000px;}
.y54{bottom:256.170000px;}
.yfa{bottom:256.530000px;}
.y16b{bottom:258.150000px;}
.ye3{bottom:259.230000px;}
.y151{bottom:262.110000px;}
.yac{bottom:262.290000px;}
.y1ca{bottom:265.170000px;}
.ycd{bottom:265.350000px;}
.y32{bottom:267.330000px;}
.y193{bottom:272.010000px;}
.ye2{bottom:272.190000px;}
.y53{bottom:272.550000px;}
.yf9{bottom:276.330000px;}
.y16a{bottom:277.950000px;}
.y150{bottom:281.910000px;}
.yab{bottom:282.270000px;}
.y1c9{bottom:282.450000px;}
.ycc{bottom:285.150000px;}
.y31{bottom:288.030000px;}
.y52{bottom:288.930000px;}
.y192{bottom:289.290000px;}
.ye1{bottom:291.990000px;}
.yf8{bottom:296.130000px;}
.y169{bottom:298.650000px;}
.y1c8{bottom:299.550000px;}
.y14f{bottom:301.710000px;}
.yaa{bottom:302.070000px;}
.ycb{bottom:304.950000px;}
.y51{bottom:305.130000px;}
.y30{bottom:305.310000px;}
.y191{bottom:306.570000px;}
.ye0{bottom:311.970000px;}
.y4a{bottom:313.065000px;}
.y2f{bottom:313.770000px;}
.yf7{bottom:315.930000px;}
.y1c7{bottom:316.830000px;}
.y14e{bottom:321.510000px;}
.y50{bottom:321.540000px;}
.ya9{bottom:321.870000px;}
.y190{bottom:323.670000px;}
.yca{bottom:324.750000px;}
.ydf{bottom:331.770000px;}
.y1c6{bottom:334.110000px;}
.yf6{bottom:335.910000px;}
.y4f{bottom:335.940000px;}
.y2e{bottom:337.530000px;}
.y14d{bottom:339.330000px;}
.y168{bottom:339.510000px;}
.y18f{bottom:340.950000px;}
.ya8{bottom:341.670000px;}
.yc9{bottom:344.730000px;}
.y4e{bottom:346.920000px;}
.y1d5{bottom:347.790000px;}
.y1c5{bottom:351.390000px;}
.yde{bottom:351.570000px;}
.yf5{bottom:355.710000px;}
.y18e{bottom:358.230000px;}
.y167{bottom:359.310000px;}
.y2d{bottom:361.470000px;}
.y4d{bottom:363.120000px;}
.yc8{bottom:364.530000px;}
.y1c4{bottom:368.670000px;}
.y70{bottom:369.585000px;}
.ydd{bottom:371.370000px;}
.yf4{bottom:375.510000px;}
.y14c{bottom:378.210000px;}
.y166{bottom:379.290000px;}
.y4c{bottom:379.500000px;}
.ya7{bottom:381.450000px;}
.y2c{bottom:382.350000px;}
.yc7{bottom:384.330000px;}
.y1c3{bottom:385.770000px;}
.ydc{bottom:391.170000px;}
.y14b{bottom:392.070000px;}
.y18d{bottom:392.835000px;}
.yf3{bottom:395.355000px;}
.y4b{bottom:395.700000px;}
.y165{bottom:399.135000px;}
.ya6{bottom:401.295000px;}
.y2b{bottom:402.195000px;}
.y1c2{bottom:403.095000px;}
.y149{bottom:403.995000px;}
.yc6{bottom:404.175000px;}
.y18c{bottom:410.115000px;}
.ydb{bottom:411.195000px;}
.yf2{bottom:415.155000px;}
.y2a{bottom:415.875000px;}
.y164{bottom:418.935000px;}
.y1c1{bottom:420.375000px;}
.y14a{bottom:420.555000px;}
.ya5{bottom:421.095000px;}
.yc5{bottom:423.975000px;}
.y29{bottom:424.515000px;}
.y135{bottom:424.875000px;}
.y18b{bottom:427.215000px;}
.yda{bottom:430.995000px;}
.yf1{bottom:435.135000px;}
.y146{bottom:437.295000px;}
.y1c0{bottom:437.655000px;}
.y163{bottom:438.735000px;}
.ya4{bottom:440.895000px;}
.yc4{bottom:443.955000px;}
.y18a{bottom:444.495000px;}
.y134{bottom:444.675000px;}
.y28{bottom:447.915000px;}
.yd9{bottom:450.795000px;}
.y148{bottom:453.855000px;}
.yf0{bottom:454.935000px;}
.y162{bottom:458.535000px;}
.ya3{bottom:460.695000px;}
.y189{bottom:462.135000px;}
.yc3{bottom:463.755000px;}
.y113{bottom:464.655000px;}
.yd8{bottom:470.595000px;}
.y27{bottom:471.135000px;}
.y145{bottom:472.035000px;}
.y1bf{bottom:472.215000px;}
.yef{bottom:474.735000px;}
.y133{bottom:476.355000px;}
.y161{bottom:478.515000px;}
.ya2{bottom:480.675000px;}
.yc2{bottom:483.555000px;}
.y112{bottom:484.455000px;}
.y1be{bottom:489.315000px;}
.yd7{bottom:490.395000px;}
.y144{bottom:493.275000px;}
.y26{bottom:494.355000px;}
.yee{bottom:494.535000px;}
.y132{bottom:496.335000px;}
.y160{bottom:498.315000px;}
.ya1{bottom:500.475000px;}
.y188{bottom:502.815000px;}
.yc1{bottom:503.355000px;}
.y111{bottom:504.255000px;}
.y1bd{bottom:506.595000px;}
.y143{bottom:508.935000px;}
.yd6{bottom:511.275000px;}
.yed{bottom:513.795000px;}
.y131{bottom:516.135000px;}
.y15f{bottom:518.115000px;}
.ya0{bottom:520.275000px;}
.y187{bottom:522.795000px;}
.yc0{bottom:523.155000px;}
.y66{bottom:523.680000px;}
.y1bc{bottom:523.875000px;}
.y110{bottom:524.055000px;}
.y142{bottom:527.295000px;}
.yec{bottom:532.335000px;}
.y130{bottom:535.935000px;}
.y15e{bottom:537.915000px;}
.y9f{bottom:540.075000px;}
.y1bb{bottom:541.155000px;}
.y186{bottom:542.595000px;}
.ybf{bottom:543.135000px;}
.y10f{bottom:543.855000px;}
.y25{bottom:549.255000px;}
.yd5{bottom:551.595000px;}
.y12f{bottom:555.735000px;}
.y15d{bottom:557.715000px;}
.y1ba{bottom:558.435000px;}
.y9e{bottom:559.875000px;}
.ybe{bottom:562.935000px;}
.y185{bottom:563.295000px;}
.y24{bottom:564.735000px;}
.yd4{bottom:565.095000px;}
.y12e{bottom:575.535000px;}
.y1b9{bottom:575.715000px;}
.y13c{bottom:576.435000px;}
.y15c{bottom:578.595000px;}
.y9d{bottom:579.855000px;}
.y23{bottom:580.395000px;}
.ybd{bottom:582.735000px;}
.y1b8{bottom:592.815000px;}
.y12d{bottom:595.515000px;}
.y22{bottom:595.875000px;}
.y13e{bottom:596.775000px;}
.y9c{bottom:599.655000px;}
.ybc{bottom:602.535000px;}
.y184{bottom:604.155000px;}
.y10e{bottom:605.595000px;}
.y1b7{bottom:610.095000px;}
.y21{bottom:611.355000px;}
.y13a{bottom:618.915000px;}
.y9b{bottom:619.455000px;}
.ybb{bottom:622.335000px;}
.y20{bottom:622.545000px;}
.y12c{bottom:623.805000px;}
.y183{bottom:623.985000px;}
.y10d{bottom:625.425000px;}
.y1b6{bottom:627.405000px;}
.y3a{bottom:631.185000px;}
.y12b{bottom:635.685000px;}
.y1f{bottom:636.225000px;}
.y9a{bottom:639.285000px;}
.yba{bottom:642.345000px;}
.y139{bottom:642.705000px;}
.y1b5{bottom:644.685000px;}
.y182{bottom:644.865000px;}
.y10c{bottom:645.225000px;}
.y12a{bottom:647.565000px;}
.y1e{bottom:649.005000px;}
.y99{bottom:659.085000px;}
.y138{bottom:660.525000px;}
.y1d{bottom:661.965000px;}
.yb9{bottom:663.045000px;}
.y129{bottom:664.125000px;}
.y10b{bottom:665.025000px;}
.y1c{bottom:674.925000px;}
.y98{bottom:679.065000px;}
.y1b4{bottom:679.245000px;}
.y128{bottom:680.865000px;}
.yb8{bottom:682.845000px;}
.y10a{bottom:685.005000px;}
.y181{bottom:685.725000px;}
.y1b{bottom:688.785000px;}
.yb7{bottom:695.805000px;}
.y1b3{bottom:696.345000px;}
.y123{bottom:697.425000px;}
.y97{bottom:698.865000px;}
.y1a{bottom:701.565000px;}
.y109{bottom:704.805000px;}
.y180{bottom:705.525000px;}
.y1b2{bottom:713.625000px;}
.y126{bottom:713.985000px;}
.yb6{bottom:715.605000px;}
.y96{bottom:718.665000px;}
.y108{bottom:724.605000px;}
.y17f{bottom:725.325000px;}
.y19{bottom:728.385000px;}
.y121{bottom:730.725000px;}
.y1b1{bottom:730.905000px;}
.yb5{bottom:735.405000px;}
.y95{bottom:738.465000px;}
.y18{bottom:739.545000px;}
.y107{bottom:744.405000px;}
.y17e{bottom:745.305000px;}
.y11f{bottom:747.285000px;}
.y11d{bottom:747.300000px;}
.y1b0{bottom:748.185000px;}
.yb4{bottom:756.285000px;}
.y94{bottom:758.265000px;}
.y17{bottom:763.845000px;}
.y106{bottom:764.205000px;}
.y17d{bottom:765.105000px;}
.y1af{bottom:765.465000px;}
.yb3{bottom:777.165000px;}
.y93{bottom:778.245000px;}
.y1ae{bottom:782.565000px;}
.y105{bottom:784.185000px;}
.y17c{bottom:784.905000px;}
.y16{bottom:788.685000px;}
.y118{bottom:791.565000px;}
.y92{bottom:798.045000px;}
.y1ad{bottom:799.845000px;}
.y104{bottom:803.985000px;}
.y15{bottom:804.525000px;}
.y17b{bottom:804.705000px;}
.y1ac{bottom:817.125000px;}
.y91{bottom:817.845000px;}
.y14{bottom:820.365000px;}
.y103{bottom:824.685000px;}
.y17a{bottom:825.405000px;}
.y13{bottom:831.705000px;}
.y1ab{bottom:834.405000px;}
.y116{bottom:837.105000px;}
.y90{bottom:837.645000px;}
.y102{bottom:844.485000px;}
.y1aa{bottom:851.685000px;}
.y12{bottom:852.225000px;}
.y8f{bottom:857.490000px;}
.y115{bottom:860.910000px;}
.y11{bottom:863.610000px;}
.y179{bottom:866.490000px;}
.y1a9{bottom:869.010000px;}
.y8e{bottom:877.470000px;}
.y114{bottom:878.910000px;}
.y10{bottom:883.950000px;}
.y1a8{bottom:886.110000px;}
.y178{bottom:886.290000px;}
.yf{bottom:895.650000px;}
.y8d{bottom:897.270000px;}
.y1a7{bottom:903.390000px;}
.y177{bottom:906.990000px;}
.ye{bottom:913.110000px;}
.y8c{bottom:917.070000px;}
.y1a6{bottom:920.670000px;}
.y8b{bottom:936.870000px;}
.yd{bottom:937.590000px;}
.y1a5{bottom:937.950000px;}
.y176{bottom:947.850000px;}
.y1a4{bottom:955.230000px;}
.y8a{bottom:956.670000px;}
.yc{bottom:959.190000px;}
.y175{bottom:967.650000px;}
.y1a3{bottom:972.510000px;}
.y89{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.y174{bottom:988.530000px;}
.y1a2{bottom:989.610000px;}
.y88{bottom:996.450000px;}
.y1a1{bottom:1006.890000px;}
.ya{bottom:1008.690000px;}
.y87{bottom:1016.250000px;}
.y1a0{bottom:1024.170000px;}
.y173{bottom:1028.310000px;}
.y86{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y19f{bottom:1041.450000px;}
.y172{bottom:1048.830000px;}
.y85{bottom:1055.850000px;}
.y19e{bottom:1058.730000px;}
.y1d4{bottom:1060.350000px;}
.y8{bottom:1063.230000px;}
.y171{bottom:1072.590000px;}
.y84{bottom:1075.650000px;}
.y19d{bottom:1075.830000px;}
.y1d3{bottom:1076.910000px;}
.y6e{bottom:1096.200000px;}
.y1{bottom:1121.220000px;}
.y82{bottom:1123.200000px;}
.y47{bottom:1137.240000px;}
.h7{height:5.653125px;}
.h17{height:5.805000px;}
.h3d{height:6.257812px;}
.h3{height:13.500000px;}
.h38{height:15.825000px;}
.h2f{height:15.840000px;}
.h33{height:15.870000px;}
.h39{height:16.005000px;}
.h2b{height:16.042500px;}
.h1a{height:16.920000px;}
.h36{height:19.425000px;}
.h35{height:19.965000px;}
.h22{height:22.140000px;}
.h16{height:23.319141px;}
.hd{height:29.678906px;}
.h10{height:30.963516px;}
.h2a{height:31.081955px;}
.h3a{height:32.385000px;}
.h30{height:32.395500px;}
.h31{height:32.400000px;}
.h37{height:32.565000px;}
.h5{height:34.200000px;}
.h20{height:36.281250px;}
.h14{height:39.503370px;}
.h34{height:40.305000px;}
.h6{height:40.985156px;}
.h3c{height:41.726953px;}
.h21{height:42.086250px;}
.h2c{height:43.375500px;}
.h2d{height:43.380000px;}
.h32{height:43.472812px;}
.h27{height:43.737568px;}
.h12{height:44.518359px;}
.hc{height:45.116367px;}
.h19{height:45.714375px;}
.h13{height:46.622932px;}
.he{height:47.344922px;}
.h1b{height:48.616875px;}
.h15{height:52.998047px;}
.h1c{height:54.421875px;}
.h11{height:55.291992px;}
.h1e{height:55.503491px;}
.h18{height:57.780000px;}
.h26{height:58.621992px;}
.h4{height:58.651172px;}
.h29{height:60.226875px;}
.h3b{height:61.423863px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.hf{height:67.824844px;}
.h28{height:70.628906px;}
.ha{height:72.562500px;}
.h23{height:74.953125px;}
.h25{height:75.093750px;}
.h2e{height:87.645000px;}
.h8{height:87.695156px;}
.h1f{height:95.400000px;}
.h9{height:96.508125px;}
.h24{height:144.742500px;}
.h1d{height:407.955000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w15{width:67.131000px;}
.w12{width:67.521000px;}
.w13{width:81.000000px;}
.w16{width:81.021000px;}
.w14{width:81.036000px;}
.w3{width:82.071000px;}
.w11{width:87.291000px;}
.w17{width:87.696000px;}
.wc{width:94.485000px;}
.wf{width:94.491000px;}
.w10{width:94.500000px;}
.wb{width:97.941000px;}
.we{width:97.942500px;}
.wd{width:141.870000px;}
.w5{width:154.470000px;}
.wa{width:180.390000px;}
.w8{width:182.550000px;}
.w7{width:532.920000px;}
.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;}
.x3f{left:4.252500px;}
.x2{left:8.091000px;}
.x18{left:10.791000px;}
.x35{left:11.880000px;}
.x33{left:14.385000px;}
.x2f{left:16.920000px;}
.x2b{left:18.540000px;}
.x2d{left:19.980000px;}
.x1e{left:21.255000px;}
.x38{left:23.385000px;}
.x3d{left:25.020000px;}
.x3b{left:27.000000px;}
.x29{left:28.440000px;}
.x3c{left:30.240000px;}
.x26{left:32.400000px;}
.x2a{left:38.340000px;}
.x30{left:41.220000px;}
.x2e{left:45.720000px;}
.x2c{left:51.480000px;}
.x28{left:61.230000px;}
.x3{left:73.965000px;}
.x1b{left:80.505000px;}
.x19{left:81.765000px;}
.x17{left:93.105000px;}
.x1d{left:94.905000px;}
.x1{left:108.036000px;}
.x24{left:114.876000px;}
.x11{left:116.136000px;}
.x6{left:117.216000px;}
.xf{left:128.736000px;}
.x14{left:132.696000px;}
.x7{left:135.936000px;}
.xd{left:137.556000px;}
.x37{left:175.185000px;}
.xa{left:183.270000px;}
.x4{left:190.125000px;}
.x32{left:195.870000px;}
.x13{left:229.530000px;}
.x8{left:241.950000px;}
.x12{left:243.975000px;}
.x39{left:256.215000px;}
.x34{left:262.875000px;}
.x20{left:269.715000px;}
.x1a{left:303.555000px;}
.x1c{left:310.350000px;}
.x3a{left:337.215000px;}
.x21{left:341.355000px;}
.x36{left:343.875000px;}
.x22{left:345.135000px;}
.xb{left:384.555000px;}
.x10{left:398.775000px;}
.xe{left:400.935000px;}
.x9{left:443.085000px;}
.x5{left:446.505000px;}
.xc{left:459.105000px;}
.x15{left:489.165000px;}
.x16{left:490.785000px;}
.x25{left:588.750000px;}
.x1f{left:620.253000px;}
.x27{left:683.250000px;}
.x31{left:755.640000px;}
.x23{left:819.180000px;}
.x3e{left:830.340000px;}
@media print{
.v3{vertical-align:-49.280000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls15{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.720000pt;}
.ls19{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.310933pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.161067pt;}
.ls14{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.004480pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.128640pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.252800pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.280533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.409067pt;}
.ls1a{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:63.466667pt;}
.ls2{letter-spacing:64.640000pt;}
.ws13{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-13.689067pt;}
.ws1d{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.374933pt;}
.ws1b{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.096533pt;}
.ws1c{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.881067pt;}
.ws14{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.558933pt;}
.ws6{word-spacing:-10.400000pt;}
.ws5{word-spacing:-10.080000pt;}
.ws3{word-spacing:-10.075520pt;}
.ws2{word-spacing:-9.769067pt;}
.ws4{word-spacing:-9.760000pt;}
.ws8{word-spacing:-9.733760pt;}
.wsb{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsc{word-spacing:0.000000pt;}
.ws19{word-spacing:10.134400pt;}
.ws15{word-spacing:22.506880pt;}
.ws17{word-spacing:22.934400pt;}
.ws0{word-spacing:54.080000pt;}
._27{margin-left:-251.288320pt;}
._2b{margin-left:-228.542720pt;}
._2a{margin-left:-166.599040pt;}
._29{margin-left:-155.598080pt;}
._28{margin-left:-107.958400pt;}
._6{margin-left:-52.960000pt;}
._2f{margin-left:-44.875520pt;}
._2d{margin-left:-34.185600pt;}
._17{margin-left:-3.003520pt;}
._b{margin-left:-1.998720pt;}
._2{margin-left:-0.894720pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._3{width:3.125120pt;}
._13{width:4.061867pt;}
._c{width:5.046400pt;}
._1b{width:5.969280pt;}
._12{width:6.905600pt;}
._16{width:8.542080pt;}
._d{width:9.933440pt;}
._11{width:10.970880pt;}
._14{width:11.952000pt;}
._18{width:14.936320pt;}
._9{width:15.911040pt;}
._a{width:17.079680pt;}
._e{width:18.538880pt;}
._26{width:19.760640pt;}
._1d{width:20.876160pt;}
._8{width:21.885440pt;}
._32{width:22.841600pt;}
._23{width:23.744640pt;}
._f{width:25.116587pt;}
._10{width:26.400640pt;}
._15{width:27.428480pt;}
._21{width:28.525440pt;}
._1e{width:30.278400pt;}
._41{width:31.393920pt;}
._25{width:32.350080pt;}
._33{width:33.281280pt;}
._2e{width:34.484480pt;}
._20{width:35.749760pt;}
._40{width:37.270187pt;}
._1c{width:38.458880pt;}
._2c{width:39.627520pt;}
._1f{width:41.114880pt;}
._34{width:42.460160pt;}
._24{width:43.877120pt;}
._37{width:44.808320pt;}
._39{width:46.373760pt;}
._3a{width:47.628160pt;}
._3b{width:51.951360pt;}
._19{width:55.160320pt;}
._30{width:57.267200pt;}
._4{width:58.218667pt;}
._31{width:60.238080pt;}
._38{width:61.300480pt;}
._22{width:62.256640pt;}
._3d{width:68.160000pt;}
._43{width:84.460800pt;}
._3f{width:88.497920pt;}
._35{width:90.006827pt;}
._3e{width:93.597440pt;}
._42{width:123.610240pt;}
._3c{width:128.039040pt;}
._36{width:157.341440pt;}
._5{width:177.440000pt;}
._1a{width:250.906667pt;}
._7{width:671.978667pt;}
.fs3{font-size:5.120000pt;}
.fs10{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;}
.fsa{font-size:48.000000pt;}
.fsf{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;}
.y46{bottom:-220.226667pt;}
.y45{bottom:-190.106667pt;}
.y44{bottom:-160.186667pt;}
.y7f{bottom:-150.573333pt;}
.y43{bottom:-130.266667pt;}
.y7e{bottom:-120.653333pt;}
.y42{bottom:-100.186667pt;}
.y7d{bottom:-90.573333pt;}
.y41{bottom:-70.266667pt;}
.y7c{bottom:-60.653333pt;}
.y40{bottom:-40.186667pt;}
.y7b{bottom:-30.733333pt;}
.y49{bottom:-24.160000pt;}
.y81{bottom:-15.931333pt;}
.y3f{bottom:-10.266667pt;}
.y7a{bottom:-0.653333pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:0.786667pt;}
.y1d6{bottom:1.633333pt;}
.y3{bottom:3.520000pt;}
.y122{bottom:4.160000pt;}
.y13b{bottom:4.186667pt;}
.y117{bottom:4.320000pt;}
.y6d{bottom:4.333333pt;}
.y48{bottom:4.480000pt;}
.y6f{bottom:4.960000pt;}
.y140{bottom:5.920000pt;}
.y3e{bottom:6.080000pt;}
.y125{bottom:6.880000pt;}
.y11c{bottom:10.400000pt;}
.y6{bottom:11.200000pt;}
.y147{bottom:11.520000pt;}
.y127{bottom:11.680000pt;}
.y141{bottom:11.840000pt;}
.y64{bottom:13.586667pt;}
.y13d{bottom:15.040000pt;}
.y13f{bottom:15.200000pt;}
.y6c{bottom:16.333333pt;}
.y11a{bottom:16.640000pt;}
.y120{bottom:16.800000pt;}
.y3d{bottom:18.400000pt;}
.y124{bottom:19.200000pt;}
.y7{bottom:19.520000pt;}
.y4{bottom:20.640000pt;}
.y5{bottom:21.920000pt;}
.y11b{bottom:22.880000pt;}
.y63{bottom:23.346667pt;}
.y79{bottom:26.906667pt;}
.y6b{bottom:27.853333pt;}
.y119{bottom:28.800000pt;}
.y3c{bottom:30.880000pt;}
.y11e{bottom:36.306667pt;}
.y62{bottom:37.746667pt;}
.y78{bottom:38.426667pt;}
.y6a{bottom:39.373333pt;}
.y83{bottom:41.760000pt;}
.y3b{bottom:42.240000pt;}
.y77{bottom:50.106667pt;}
.y2{bottom:51.040000pt;}
.y69{bottom:51.053333pt;}
.y61{bottom:52.306667pt;}
.y80{bottom:56.693333pt;}
.y76{bottom:61.626667pt;}
.y68{bottom:62.573333pt;}
.y60{bottom:66.706667pt;}
.y75{bottom:73.306667pt;}
.y67{bottom:77.613333pt;}
.y5f{bottom:79.706667pt;}
.y74{bottom:84.826667pt;}
.yeb{bottom:88.480000pt;}
.y5e{bottom:89.306667pt;}
.y159{bottom:91.840000pt;}
.y15b{bottom:92.160000pt;}
.y73{bottom:96.346667pt;}
.y1d2{bottom:97.600000pt;}
.y19c{bottom:103.840000pt;}
.y5d{bottom:103.866667pt;}
.y101{bottom:104.480000pt;}
.yea{bottom:106.240000pt;}
.y137{bottom:106.560000pt;}
.y72{bottom:108.026667pt;}
.y158{bottom:109.440000pt;}
.y15a{bottom:109.760000pt;}
.y1d1{bottom:112.960000pt;}
.y39{bottom:114.080000pt;}
.y5c{bottom:118.266667pt;}
.y71{bottom:118.906667pt;}
.y19b{bottom:119.040000pt;}
.y136{bottom:120.320000pt;}
.y100{bottom:122.240000pt;}
.ye9{bottom:123.840000pt;}
.y157{bottom:127.040000pt;}
.yb2{bottom:127.360000pt;}
.y1d0{bottom:128.320000pt;}
.yd3{bottom:130.080000pt;}
.y38{bottom:131.680000pt;}
.y5b{bottom:132.826667pt;}
.y19a{bottom:134.400000pt;}
.yff{bottom:139.840000pt;}
.y170{bottom:141.280000pt;}
.ye8{bottom:141.440000pt;}
.y1cf{bottom:143.680000pt;}
.y156{bottom:144.826667pt;}
.yb1{bottom:144.986667pt;}
.y5a{bottom:147.226667pt;}
.yd2{bottom:147.706667pt;}
.y37{bottom:149.466667pt;}
.y199{bottom:149.786667pt;}
.yfe{bottom:157.466667pt;}
.y16f{bottom:158.906667pt;}
.ye7{bottom:159.066667pt;}
.y59{bottom:160.186667pt;}
.y155{bottom:162.426667pt;}
.yb0{bottom:162.746667pt;}
.y198{bottom:165.146667pt;}
.yd1{bottom:165.306667pt;}
.y36{bottom:167.066667pt;}
.y58{bottom:169.786667pt;}
.y1ce{bottom:174.266667pt;}
.yfd{bottom:175.066667pt;}
.y16e{bottom:176.506667pt;}
.ye6{bottom:176.666667pt;}
.y154{bottom:180.026667pt;}
.yaf{bottom:180.346667pt;}
.y197{bottom:180.506667pt;}
.yd0{bottom:182.906667pt;}
.y57{bottom:184.346667pt;}
.y35{bottom:184.666667pt;}
.y1cd{bottom:189.626667pt;}
.yfc{bottom:192.666667pt;}
.y16d{bottom:194.106667pt;}
.ye5{bottom:194.426667pt;}
.y196{bottom:195.866667pt;}
.y153{bottom:197.626667pt;}
.yae{bottom:197.946667pt;}
.y56{bottom:198.746667pt;}
.ycf{bottom:200.506667pt;}
.y34{bottom:202.266667pt;}
.y1cc{bottom:204.986667pt;}
.yfb{bottom:210.426667pt;}
.y195{bottom:211.066667pt;}
.y16c{bottom:211.706667pt;}
.ye4{bottom:212.826667pt;}
.y55{bottom:213.306667pt;}
.y152{bottom:215.226667pt;}
.yad{bottom:215.546667pt;}
.yce{bottom:218.266667pt;}
.y33{bottom:219.866667pt;}
.y1cb{bottom:220.346667pt;}
.y194{bottom:226.426667pt;}
.y54{bottom:227.706667pt;}
.yfa{bottom:228.026667pt;}
.y16b{bottom:229.466667pt;}
.ye3{bottom:230.426667pt;}
.y151{bottom:232.986667pt;}
.yac{bottom:233.146667pt;}
.y1ca{bottom:235.706667pt;}
.ycd{bottom:235.866667pt;}
.y32{bottom:237.626667pt;}
.y193{bottom:241.786667pt;}
.ye2{bottom:241.946667pt;}
.y53{bottom:242.266667pt;}
.yf9{bottom:245.626667pt;}
.y16a{bottom:247.066667pt;}
.y150{bottom:250.586667pt;}
.yab{bottom:250.906667pt;}
.y1c9{bottom:251.066667pt;}
.ycc{bottom:253.466667pt;}
.y31{bottom:256.026667pt;}
.y52{bottom:256.826667pt;}
.y192{bottom:257.146667pt;}
.ye1{bottom:259.546667pt;}
.yf8{bottom:263.226667pt;}
.y169{bottom:265.466667pt;}
.y1c8{bottom:266.266667pt;}
.y14f{bottom:268.186667pt;}
.yaa{bottom:268.506667pt;}
.ycb{bottom:271.066667pt;}
.y51{bottom:271.226667pt;}
.y30{bottom:271.386667pt;}
.y191{bottom:272.506667pt;}
.ye0{bottom:277.306667pt;}
.y4a{bottom:278.280000pt;}
.y2f{bottom:278.906667pt;}
.yf7{bottom:280.826667pt;}
.y1c7{bottom:281.626667pt;}
.y14e{bottom:285.786667pt;}
.y50{bottom:285.813333pt;}
.ya9{bottom:286.106667pt;}
.y190{bottom:287.706667pt;}
.yca{bottom:288.666667pt;}
.ydf{bottom:294.906667pt;}
.y1c6{bottom:296.986667pt;}
.yf6{bottom:298.586667pt;}
.y4f{bottom:298.613333pt;}
.y2e{bottom:300.026667pt;}
.y14d{bottom:301.626667pt;}
.y168{bottom:301.786667pt;}
.y18f{bottom:303.066667pt;}
.ya8{bottom:303.706667pt;}
.yc9{bottom:306.426667pt;}
.y4e{bottom:308.373333pt;}
.y1d5{bottom:309.146667pt;}
.y1c5{bottom:312.346667pt;}
.yde{bottom:312.506667pt;}
.yf5{bottom:316.186667pt;}
.y18e{bottom:318.426667pt;}
.y167{bottom:319.386667pt;}
.y2d{bottom:321.306667pt;}
.y4d{bottom:322.773333pt;}
.yc8{bottom:324.026667pt;}
.y1c4{bottom:327.706667pt;}
.y70{bottom:328.520000pt;}
.ydd{bottom:330.106667pt;}
.yf4{bottom:333.786667pt;}
.y14c{bottom:336.186667pt;}
.y166{bottom:337.146667pt;}
.y4c{bottom:337.333333pt;}
.ya7{bottom:339.066667pt;}
.y2c{bottom:339.866667pt;}
.yc7{bottom:341.626667pt;}
.y1c3{bottom:342.906667pt;}
.ydc{bottom:347.706667pt;}
.y14b{bottom:348.506667pt;}
.y18d{bottom:349.186667pt;}
.yf3{bottom:351.426667pt;}
.y4b{bottom:351.733333pt;}
.y165{bottom:354.786667pt;}
.ya6{bottom:356.706667pt;}
.y2b{bottom:357.506667pt;}
.y1c2{bottom:358.306667pt;}
.y149{bottom:359.106667pt;}
.yc6{bottom:359.266667pt;}
.y18c{bottom:364.546667pt;}
.ydb{bottom:365.506667pt;}
.yf2{bottom:369.026667pt;}
.y2a{bottom:369.666667pt;}
.y164{bottom:372.386667pt;}
.y1c1{bottom:373.666667pt;}
.y14a{bottom:373.826667pt;}
.ya5{bottom:374.306667pt;}
.yc5{bottom:376.866667pt;}
.y29{bottom:377.346667pt;}
.y135{bottom:377.666667pt;}
.y18b{bottom:379.746667pt;}
.yda{bottom:383.106667pt;}
.yf1{bottom:386.786667pt;}
.y146{bottom:388.706667pt;}
.y1c0{bottom:389.026667pt;}
.y163{bottom:389.986667pt;}
.ya4{bottom:391.906667pt;}
.yc4{bottom:394.626667pt;}
.y18a{bottom:395.106667pt;}
.y134{bottom:395.266667pt;}
.y28{bottom:398.146667pt;}
.yd9{bottom:400.706667pt;}
.y148{bottom:403.426667pt;}
.yf0{bottom:404.386667pt;}
.y162{bottom:407.586667pt;}
.ya3{bottom:409.506667pt;}
.y189{bottom:410.786667pt;}
.yc3{bottom:412.226667pt;}
.y113{bottom:413.026667pt;}
.yd8{bottom:418.306667pt;}
.y27{bottom:418.786667pt;}
.y145{bottom:419.586667pt;}
.y1bf{bottom:419.746667pt;}
.yef{bottom:421.986667pt;}
.y133{bottom:423.426667pt;}
.y161{bottom:425.346667pt;}
.ya2{bottom:427.266667pt;}
.yc2{bottom:429.826667pt;}
.y112{bottom:430.626667pt;}
.y1be{bottom:434.946667pt;}
.yd7{bottom:435.906667pt;}
.y144{bottom:438.466667pt;}
.y26{bottom:439.426667pt;}
.yee{bottom:439.586667pt;}
.y132{bottom:441.186667pt;}
.y160{bottom:442.946667pt;}
.ya1{bottom:444.866667pt;}
.y188{bottom:446.946667pt;}
.yc1{bottom:447.426667pt;}
.y111{bottom:448.226667pt;}
.y1bd{bottom:450.306667pt;}
.y143{bottom:452.386667pt;}
.yd6{bottom:454.466667pt;}
.yed{bottom:456.706667pt;}
.y131{bottom:458.786667pt;}
.y15f{bottom:460.546667pt;}
.ya0{bottom:462.466667pt;}
.y187{bottom:464.706667pt;}
.yc0{bottom:465.026667pt;}
.y66{bottom:465.493333pt;}
.y1bc{bottom:465.666667pt;}
.y110{bottom:465.826667pt;}
.y142{bottom:468.706667pt;}
.yec{bottom:473.186667pt;}
.y130{bottom:476.386667pt;}
.y15e{bottom:478.146667pt;}
.y9f{bottom:480.066667pt;}
.y1bb{bottom:481.026667pt;}
.y186{bottom:482.306667pt;}
.ybf{bottom:482.786667pt;}
.y10f{bottom:483.426667pt;}
.y25{bottom:488.226667pt;}
.yd5{bottom:490.306667pt;}
.y12f{bottom:493.986667pt;}
.y15d{bottom:495.746667pt;}
.y1ba{bottom:496.386667pt;}
.y9e{bottom:497.666667pt;}
.ybe{bottom:500.386667pt;}
.y185{bottom:500.706667pt;}
.y24{bottom:501.986667pt;}
.yd4{bottom:502.306667pt;}
.y12e{bottom:511.586667pt;}
.y1b9{bottom:511.746667pt;}
.y13c{bottom:512.386667pt;}
.y15c{bottom:514.306667pt;}
.y9d{bottom:515.426667pt;}
.y23{bottom:515.906667pt;}
.ybd{bottom:517.986667pt;}
.y1b8{bottom:526.946667pt;}
.y12d{bottom:529.346667pt;}
.y22{bottom:529.666667pt;}
.y13e{bottom:530.466667pt;}
.y9c{bottom:533.026667pt;}
.ybc{bottom:535.586667pt;}
.y184{bottom:537.026667pt;}
.y10e{bottom:538.306667pt;}
.y1b7{bottom:542.306667pt;}
.y21{bottom:543.426667pt;}
.y13a{bottom:550.146667pt;}
.y9b{bottom:550.626667pt;}
.ybb{bottom:553.186667pt;}
.y20{bottom:553.373333pt;}
.y12c{bottom:554.493333pt;}
.y183{bottom:554.653333pt;}
.y10d{bottom:555.933333pt;}
.y1b6{bottom:557.693333pt;}
.y3a{bottom:561.053333pt;}
.y12b{bottom:565.053333pt;}
.y1f{bottom:565.533333pt;}
.y9a{bottom:568.253333pt;}
.yba{bottom:570.973333pt;}
.y139{bottom:571.293333pt;}
.y1b5{bottom:573.053333pt;}
.y182{bottom:573.213333pt;}
.y10c{bottom:573.533333pt;}
.y12a{bottom:575.613333pt;}
.y1e{bottom:576.893333pt;}
.y99{bottom:585.853333pt;}
.y138{bottom:587.133333pt;}
.y1d{bottom:588.413333pt;}
.yb9{bottom:589.373333pt;}
.y129{bottom:590.333333pt;}
.y10b{bottom:591.133333pt;}
.y1c{bottom:599.933333pt;}
.y98{bottom:603.613333pt;}
.y1b4{bottom:603.773333pt;}
.y128{bottom:605.213333pt;}
.yb8{bottom:606.973333pt;}
.y10a{bottom:608.893333pt;}
.y181{bottom:609.533333pt;}
.y1b{bottom:612.253333pt;}
.yb7{bottom:618.493333pt;}
.y1b3{bottom:618.973333pt;}
.y123{bottom:619.933333pt;}
.y97{bottom:621.213333pt;}
.y1a{bottom:623.613333pt;}
.y109{bottom:626.493333pt;}
.y180{bottom:627.133333pt;}
.y1b2{bottom:634.333333pt;}
.y126{bottom:634.653333pt;}
.yb6{bottom:636.093333pt;}
.y96{bottom:638.813333pt;}
.y108{bottom:644.093333pt;}
.y17f{bottom:644.733333pt;}
.y19{bottom:647.453333pt;}
.y121{bottom:649.533333pt;}
.y1b1{bottom:649.693333pt;}
.yb5{bottom:653.693333pt;}
.y95{bottom:656.413333pt;}
.y18{bottom:657.373333pt;}
.y107{bottom:661.693333pt;}
.y17e{bottom:662.493333pt;}
.y11f{bottom:664.253333pt;}
.y11d{bottom:664.266667pt;}
.y1b0{bottom:665.053333pt;}
.yb4{bottom:672.253333pt;}
.y94{bottom:674.013333pt;}
.y17{bottom:678.973333pt;}
.y106{bottom:679.293333pt;}
.y17d{bottom:680.093333pt;}
.y1af{bottom:680.413333pt;}
.yb3{bottom:690.813333pt;}
.y93{bottom:691.773333pt;}
.y1ae{bottom:695.613333pt;}
.y105{bottom:697.053333pt;}
.y17c{bottom:697.693333pt;}
.y16{bottom:701.053333pt;}
.y118{bottom:703.613333pt;}
.y92{bottom:709.373333pt;}
.y1ad{bottom:710.973333pt;}
.y104{bottom:714.653333pt;}
.y15{bottom:715.133333pt;}
.y17b{bottom:715.293333pt;}
.y1ac{bottom:726.333333pt;}
.y91{bottom:726.973333pt;}
.y14{bottom:729.213333pt;}
.y103{bottom:733.053333pt;}
.y17a{bottom:733.693333pt;}
.y13{bottom:739.293333pt;}
.y1ab{bottom:741.693333pt;}
.y116{bottom:744.093333pt;}
.y90{bottom:744.573333pt;}
.y102{bottom:750.653333pt;}
.y1aa{bottom:757.053333pt;}
.y12{bottom:757.533333pt;}
.y8f{bottom:762.213333pt;}
.y115{bottom:765.253333pt;}
.y11{bottom:767.653333pt;}
.y179{bottom:770.213333pt;}
.y1a9{bottom:772.453333pt;}
.y8e{bottom:779.973333pt;}
.y114{bottom:781.253333pt;}
.y10{bottom:785.733333pt;}
.y1a8{bottom:787.653333pt;}
.y178{bottom:787.813333pt;}
.yf{bottom:796.133333pt;}
.y8d{bottom:797.573333pt;}
.y1a7{bottom:803.013333pt;}
.y177{bottom:806.213333pt;}
.ye{bottom:811.653333pt;}
.y8c{bottom:815.173333pt;}
.y1a6{bottom:818.373333pt;}
.y8b{bottom:832.773333pt;}
.yd{bottom:833.413333pt;}
.y1a5{bottom:833.733333pt;}
.y176{bottom:842.533333pt;}
.y1a4{bottom:849.093333pt;}
.y8a{bottom:850.373333pt;}
.yc{bottom:852.613333pt;}
.y175{bottom:860.133333pt;}
.y1a3{bottom:864.453333pt;}
.y89{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.y174{bottom:878.693333pt;}
.y1a2{bottom:879.653333pt;}
.y88{bottom:885.733333pt;}
.y1a1{bottom:895.013333pt;}
.ya{bottom:896.613333pt;}
.y87{bottom:903.333333pt;}
.y1a0{bottom:910.373333pt;}
.y173{bottom:914.053333pt;}
.y86{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y19f{bottom:925.733333pt;}
.y172{bottom:932.293333pt;}
.y85{bottom:938.533333pt;}
.y19e{bottom:941.093333pt;}
.y1d4{bottom:942.533333pt;}
.y8{bottom:945.093333pt;}
.y171{bottom:953.413333pt;}
.y84{bottom:956.133333pt;}
.y19d{bottom:956.293333pt;}
.y1d3{bottom:957.253333pt;}
.y6e{bottom:974.400000pt;}
.y1{bottom:996.640000pt;}
.y82{bottom:998.400000pt;}
.y47{bottom:1010.880000pt;}
.h7{height:5.025000pt;}
.h17{height:5.160000pt;}
.h3d{height:5.562500pt;}
.h3{height:12.000000pt;}
.h38{height:14.066667pt;}
.h2f{height:14.080000pt;}
.h33{height:14.106667pt;}
.h39{height:14.226667pt;}
.h2b{height:14.260000pt;}
.h1a{height:15.040000pt;}
.h36{height:17.266667pt;}
.h35{height:17.746667pt;}
.h22{height:19.680000pt;}
.h16{height:20.728125pt;}
.hd{height:26.381250pt;}
.h10{height:27.523125pt;}
.h2a{height:27.628404pt;}
.h3a{height:28.786667pt;}
.h30{height:28.796000pt;}
.h31{height:28.800000pt;}
.h37{height:28.946667pt;}
.h5{height:30.400000pt;}
.h20{height:32.250000pt;}
.h14{height:35.114107pt;}
.h34{height:35.826667pt;}
.h6{height:36.431250pt;}
.h3c{height:37.090625pt;}
.h21{height:37.410000pt;}
.h2c{height:38.556000pt;}
.h2d{height:38.560000pt;}
.h32{height:38.642500pt;}
.h27{height:38.877839pt;}
.h12{height:39.571875pt;}
.hc{height:40.103437pt;}
.h19{height:40.635000pt;}
.h13{height:41.442606pt;}
.he{height:42.084375pt;}
.h1b{height:43.215000pt;}
.h15{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h11{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h18{height:51.360000pt;}
.h26{height:52.108438pt;}
.h4{height:52.134375pt;}
.h29{height:53.535000pt;}
.h3b{height:54.598989pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.hf{height:60.288750pt;}
.h28{height:62.781250pt;}
.ha{height:64.500000pt;}
.h23{height:66.625000pt;}
.h25{height:66.750000pt;}
.h2e{height:77.906667pt;}
.h8{height:77.951250pt;}
.h1f{height:84.800000pt;}
.h9{height:85.785000pt;}
.h24{height:128.660000pt;}
.h1d{height:362.626667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w15{width:59.672000pt;}
.w12{width:60.018667pt;}
.w13{width:72.000000pt;}
.w16{width:72.018667pt;}
.w14{width:72.032000pt;}
.w3{width:72.952000pt;}
.w11{width:77.592000pt;}
.w17{width:77.952000pt;}
.wc{width:83.986667pt;}
.wf{width:83.992000pt;}
.w10{width:84.000000pt;}
.wb{width:87.058667pt;}
.we{width:87.060000pt;}
.wd{width:126.106667pt;}
.w5{width:137.306667pt;}
.wa{width:160.346667pt;}
.w8{width:162.266667pt;}
.w7{width:473.706667pt;}
.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;}
.x3f{left:3.780000pt;}
.x2{left:7.192000pt;}
.x18{left:9.592000pt;}
.x35{left:10.560000pt;}
.x33{left:12.786667pt;}
.x2f{left:15.040000pt;}
.x2b{left:16.480000pt;}
.x2d{left:17.760000pt;}
.x1e{left:18.893333pt;}
.x38{left:20.786667pt;}
.x3d{left:22.240000pt;}
.x3b{left:24.000000pt;}
.x29{left:25.280000pt;}
.x3c{left:26.880000pt;}
.x26{left:28.800000pt;}
.x2a{left:34.080000pt;}
.x30{left:36.640000pt;}
.x2e{left:40.640000pt;}
.x2c{left:45.760000pt;}
.x28{left:54.426667pt;}
.x3{left:65.746667pt;}
.x1b{left:71.560000pt;}
.x19{left:72.680000pt;}
.x17{left:82.760000pt;}
.x1d{left:84.360000pt;}
.x1{left:96.032000pt;}
.x24{left:102.112000pt;}
.x11{left:103.232000pt;}
.x6{left:104.192000pt;}
.xf{left:114.432000pt;}
.x14{left:117.952000pt;}
.x7{left:120.832000pt;}
.xd{left:122.272000pt;}
.x37{left:155.720000pt;}
.xa{left:162.906667pt;}
.x4{left:169.000000pt;}
.x32{left:174.106667pt;}
.x13{left:204.026667pt;}
.x8{left:215.066667pt;}
.x12{left:216.866667pt;}
.x39{left:227.746667pt;}
.x34{left:233.666667pt;}
.x20{left:239.746667pt;}
.x1a{left:269.826667pt;}
.x1c{left:275.866667pt;}
.x3a{left:299.746667pt;}
.x21{left:303.426667pt;}
.x36{left:305.666667pt;}
.x22{left:306.786667pt;}
.xb{left:341.826667pt;}
.x10{left:354.466667pt;}
.xe{left:356.386667pt;}
.x9{left:393.853333pt;}
.x5{left:396.893333pt;}
.xc{left:408.093333pt;}
.x15{left:434.813333pt;}
.x16{left:436.253333pt;}
.x25{left:523.333333pt;}
.x1f{left:551.336000pt;}
.x27{left:607.333333pt;}
.x31{left:671.680000pt;}
.x23{left:728.160000pt;}
.x3e{left:738.080000pt;}
}




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