
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f11a11310fb73f62263d2993.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_640e304669cb44d0c13ab95d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_01cec18a7104a9ab2bae9c9c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_5992448fa8c567ff4f218768.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_e4470c1fe74d6351b0608d95.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2e6773df82728778e37ff5f8.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_b90ab475a29bf30226acba0e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ffa77972e63c4b9e80487190.woff')format("woff");}.ff9{font-family:ff9;line-height:0.751953;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsd{letter-spacing:-0.186600px;}
.ls1b{letter-spacing:-0.159600px;}
.lsa{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls13{letter-spacing:-0.092400px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.038880px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls6{letter-spacing:0.049200px;}
.ls10{letter-spacing:0.064800px;}
.ls4{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.115800px;}
.ls16{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls5{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.ls18{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.199200px;}
.ls1d{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1c{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws11{word-spacing:-15.030000px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsb{word-spacing:-13.425600px;}
.wse{word-spacing:-13.424400px;}
.wsf{word-spacing:-13.407600px;}
.ws3{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342200px;}
.ws7{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.187520px;}
.ws10{word-spacing:-13.066800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._f{margin-left:-3.607200px;}
._d{margin-left:-2.437200px;}
._0{margin-left:-1.110000px;}
._3{width:1.020587px;}
._8{width:2.552656px;}
._5{width:3.907800px;}
._e{width:4.916383px;}
._7{width:5.980802px;}
._6{width:7.033800px;}
._10{width:8.232361px;}
._9{width:9.679200px;}
._c{width:11.062200px;}
._4{width:12.172200px;}
._2{width:13.994352px;}
._1{width:15.017880px;}
._18{width:16.808520px;}
._17{width:17.915760px;}
._14{width:19.146000px;}
._13{width:20.440800px;}
._22{width:21.522960px;}
._16{width:23.326560px;}
._15{width:24.348600px;}
._29{width:25.430760px;}
._32{width:26.850240px;}
._19{width:27.863400px;}
._11{width:29.355840px;}
._12{width:30.619200px;}
._33{width:31.974613px;}
._a{width:33.006000px;}
._b{width:34.131599px;}
._2d{width:45.173880px;}
._40{width:46.953720px;}
._28{width:49.538880px;}
._41{width:50.921640px;}
._2a{width:53.354280px;}
._1d{width:55.611000px;}
._23{width:56.813400px;}
._1a{width:58.136040px;}
._2c{width:59.639040px;}
._1c{width:61.562880px;}
._2b{width:66.372480px;}
._3a{width:67.574880px;}
._25{width:68.717160px;}
._1f{width:70.039800px;}
._31{width:73.887480px;}
._37{width:79.178040px;}
._2f{width:86.813280px;}
._3f{width:90.961560px;}
._34{width:93.516480px;}
._39{width:96.372360px;}
._30{width:103.406400px;}
._42{width:107.795160px;}
._43{width:108.915240px;}
._1e{width:112.123800px;}
._20{width:121.923360px;}
._27{width:124.268040px;}
._38{width:134.969400px;}
._35{width:146.332080px;}
._36{width:147.414240px;}
._3c{width:150.600600px;}
._1b{width:173.325960px;}
._24{width:183.005280px;}
._3d{width:187.394040px;}
._3e{width:188.536320px;}
._21{width:198.215640px;}
._3b{width:211.562280px;}
._2e{width:264.648240px;}
._26{width:266.331600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:7.830000px;}
.ybf{bottom:7.920000px;}
.y121{bottom:25.380000px;}
.ybe{bottom:25.470000px;}
.y11e{bottom:25.500000px;}
.yc1{bottom:43.020000px;}
.ybd{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y1ea{bottom:111.270000px;}
.yf4{bottom:113.880000px;}
.y11c{bottom:115.680000px;}
.y1ae{bottom:119.550000px;}
.y82{bottom:120.270000px;}
.y20d{bottom:125.580000px;}
.y1d8{bottom:128.460000px;}
.y97{bottom:128.910000px;}
.y11b{bottom:133.320000px;}
.y1ad{bottom:137.190000px;}
.yb9{bottom:137.460000px;}
.y81{bottom:137.910000px;}
.y13d{bottom:139.350000px;}
.y179{bottom:139.620000px;}
.y1bc{bottom:143.040000px;}
.y20c{bottom:143.130000px;}
.y1d7{bottom:146.100000px;}
.y96{bottom:146.550000px;}
.y58{bottom:148.710000px;}
.yf3{bottom:149.430000px;}
.y11a{bottom:150.870000px;}
.y21f{bottom:152.130000px;}
.y1ac{bottom:154.740000px;}
.yb8{bottom:155.100000px;}
.y80{bottom:155.460000px;}
.y13c{bottom:156.900000px;}
.y178{bottom:157.260000px;}
.y27{bottom:157.800000px;}
.y194{bottom:159.870000px;}
.y1bb{bottom:160.590000px;}
.yd9{bottom:160.950000px;}
.y57{bottom:167.250000px;}
.y119{bottom:168.510000px;}
.y20b{bottom:169.680000px;}
.y1ab{bottom:172.380000px;}
.yb7{bottom:172.650000px;}
.y7f{bottom:173.100000px;}
.y177{bottom:174.810000px;}
.y26{bottom:175.350000px;}
.y162{bottom:175.800000px;}
.y193{bottom:177.510000px;}
.y1ba{bottom:178.230000px;}
.yf2{bottom:181.650000px;}
.y95{bottom:182.100000px;}
.y56{bottom:184.800000px;}
.y118{bottom:186.060000px;}
.y20a{bottom:187.320000px;}
.yb6{bottom:190.200000px;}
.y176{bottom:192.360000px;}
.y13b{bottom:192.450000px;}
.y25{bottom:192.990000px;}
.y192{bottom:195.060000px;}
.y1b9{bottom:195.780000px;}
.y21e{bottom:196.320000px;}
.yd8{bottom:196.590000px;}
.y1aa{bottom:198.930000px;}
.y1d6{bottom:199.200000px;}
.y94{bottom:199.650000px;}
.y55{bottom:203.160000px;}
.y209{bottom:204.870000px;}
.y7e{bottom:208.650000px;}
.y13a{bottom:210.090000px;}
.y24{bottom:210.540000px;}
.y161{bottom:211.440000px;}
.y191{bottom:212.610000px;}
.y21d{bottom:213.870000px;}
.yd7{bottom:214.140000px;}
.y1d5{bottom:216.840000px;}
.y1e9{bottom:217.200000px;}
.y93{bottom:217.290000px;}
.y175{bottom:219.000000px;}
.y117{bottom:221.610000px;}
.y208{bottom:222.510000px;}
.yb5{bottom:225.840000px;}
.y7d{bottom:226.200000px;}
.y139{bottom:227.640000px;}
.y23{bottom:228.090000px;}
.y160{bottom:228.990000px;}
.y1b8{bottom:231.330000px;}
.y21c{bottom:231.510000px;}
.yd6{bottom:231.780000px;}
.y1d4{bottom:234.390000px;}
.y1a9{bottom:234.480000px;}
.y92{bottom:234.840000px;}
.y116{bottom:239.250000px;}
.y54{bottom:239.610000px;}
.yb4{bottom:243.390000px;}
.y7c{bottom:243.840000px;}
.y138{bottom:245.190000px;}
.y22{bottom:245.730000px;}
.y15f{bottom:246.540000px;}
.y190{bottom:248.250000px;}
.y1b7{bottom:248.970000px;}
.y207{bottom:249.060000px;}
.yd5{bottom:249.330000px;}
.y1a8{bottom:252.120000px;}
.y91{bottom:252.480000px;}
.y174{bottom:254.550000px;}
.y115{bottom:256.800000px;}
.y53{bottom:257.250000px;}
.yb3{bottom:260.940000px;}
.y7b{bottom:261.390000px;}
.y137{bottom:262.830000px;}
.y21{bottom:263.280000px;}
.y15e{bottom:264.180000px;}
.y18f{bottom:265.800000px;}
.y1b6{bottom:266.520000px;}
.y206{bottom:266.610000px;}
.y1a7{bottom:269.670000px;}
.y1d3{bottom:269.940000px;}
.y173{bottom:272.190000px;}
.y114{bottom:274.440000px;}
.y52{bottom:274.800000px;}
.y21b{bottom:275.610000px;}
.yb2{bottom:278.580000px;}
.y7a{bottom:278.940000px;}
.y20{bottom:280.920000px;}
.y18e{bottom:283.440000px;}
.y1b5{bottom:284.160000px;}
.y205{bottom:284.250000px;}
.yd4{bottom:284.880000px;}
.y1a6{bottom:287.310000px;}
.y1d2{bottom:287.580000px;}
.y1e8{bottom:287.940000px;}
.y90{bottom:288.030000px;}
.y172{bottom:289.740000px;}
.y113{bottom:291.990000px;}
.y21a{bottom:293.250000px;}
.y136{bottom:298.380000px;}
.y15d{bottom:299.730000px;}
.y18d{bottom:300.990000px;}
.y51{bottom:301.440000px;}
.yd3{bottom:302.520000px;}
.y1d1{bottom:305.130000px;}
.y79{bottom:305.580000px;}
.y171{bottom:307.290000px;}
.y1f{bottom:307.470000px;}
.y112{bottom:309.540000px;}
.y204{bottom:310.800000px;}
.yb1{bottom:314.130000px;}
.y135{bottom:316.020000px;}
.y15c{bottom:317.370000px;}
.y18c{bottom:318.540000px;}
.y1b4{bottom:319.710000px;}
.y219{bottom:319.800000px;}
.yd2{bottom:320.070000px;}
.y1d0{bottom:322.770000px;}
.y1a5{bottom:322.860000px;}
.y1e7{bottom:323.130000px;}
.y8f{bottom:323.220000px;}
.y203{bottom:328.440000px;}
.yb0{bottom:331.770000px;}
.y134{bottom:333.570000px;}
.y15b{bottom:334.920000px;}
.y50{bottom:336.990000px;}
.y218{bottom:337.440000px;}
.yd1{bottom:337.620000px;}
.y1a4{bottom:340.410000px;}
.y8e{bottom:340.770000px;}
.y78{bottom:341.130000px;}
.y170{bottom:342.930000px;}
.y1e{bottom:343.380000px;}
.y111{bottom:345.180000px;}
.yaf{bottom:349.320000px;}
.y1e6{bottom:349.770000px;}
.y133{bottom:351.120000px;}
.y1b3{bottom:351.930000px;}
.y15a{bottom:352.470000px;}
.y18b{bottom:354.180000px;}
.y4f{bottom:354.540000px;}
.y202{bottom:354.990000px;}
.y1a3{bottom:358.050000px;}
.y8d{bottom:358.410000px;}
.y77{bottom:358.770000px;}
.y16f{bottom:360.480000px;}
.y110{bottom:362.730000px;}
.yae{bottom:366.870000px;}
.y1e5{bottom:367.320000px;}
.y132{bottom:368.760000px;}
.y159{bottom:370.110000px;}
.y18a{bottom:371.730000px;}
.y4e{bottom:372.180000px;}
.y201{bottom:372.540000px;}
.yd0{bottom:373.260000px;}
.y1a2{bottom:375.600000px;}
.y76{bottom:376.320000px;}
.y16e{bottom:378.120000px;}
.y10f{bottom:380.370000px;}
.y217{bottom:381.540000px;}
.y1cf{bottom:384.870000px;}
.y189{bottom:389.370000px;}
.y4d{bottom:389.730000px;}
.ycf{bottom:390.810000px;}
.y1d{bottom:391.980000px;}
.y1e4{bottom:393.870000px;}
.y8c{bottom:393.960000px;}
.y16d{bottom:395.670000px;}
.y10e{bottom:397.920000px;}
.y200{bottom:399.180000px;}
.yad{bottom:402.510000px;}
.y131{bottom:404.310000px;}
.y158{bottom:405.660000px;}
.y188{bottom:406.920000px;}
.yce{bottom:408.450000px;}
.y1a1{bottom:411.240000px;}
.y8b{bottom:411.510000px;}
.y75{bottom:411.870000px;}
.y10d{bottom:415.470000px;}
.y1ff{bottom:416.730000px;}
.yac{bottom:420.060000px;}
.y130{bottom:421.950000px;}
.y157{bottom:423.300000px;}
.y4c{bottom:425.370000px;}
.ycd{bottom:426.000000px;}
.y16c{bottom:428.610000px;}
.y1a0{bottom:428.790000px;}
.y1c{bottom:428.970000px;}
.y8a{bottom:429.150000px;}
.y74{bottom:429.510000px;}
.y1fe{bottom:434.370000px;}
.y1ce{bottom:437.700000px;}
.y1e3{bottom:438.420000px;}
.y12f{bottom:439.500000px;}
.y156{bottom:440.850000px;}
.y187{bottom:442.470000px;}
.y4b{bottom:442.920000px;}
.y216{bottom:443.370000px;}
.y19f{bottom:446.340000px;}
.y1b{bottom:446.610000px;}
.y89{bottom:446.700000px;}
.y73{bottom:447.060000px;}
.y10c{bottom:451.110000px;}
.y1cd{bottom:455.250000px;}
.y16b{bottom:455.970000px;}
.y12e{bottom:457.050000px;}
.y155{bottom:458.400000px;}
.y186{bottom:460.110000px;}
.y4a{bottom:460.470000px;}
.y1fd{bottom:460.920000px;}
.ycc{bottom:461.550000px;}
.y19e{bottom:463.980000px;}
.y1a{bottom:464.160000px;}
.y88{bottom:464.250000px;}
.y72{bottom:464.700000px;}
.y10b{bottom:468.660000px;}
.y12d{bottom:474.720000px;}
.y185{bottom:477.690000px;}
.y49{bottom:478.140000px;}
.y1fc{bottom:478.500000px;}
.ycb{bottom:479.220000px;}
.y19{bottom:481.830000px;}
.yab{bottom:482.280000px;}
.y16a{bottom:483.360000px;}
.y10a{bottom:486.330000px;}
.y1e2{bottom:486.690000px;}
.y1cc{bottom:490.830000px;}
.y87{bottom:490.920000px;}
.y154{bottom:494.070000px;}
.y184{bottom:495.330000px;}
.y48{bottom:495.690000px;}
.y1fb{bottom:496.140000px;}
.yca{bottom:496.770000px;}
.y18{bottom:499.380000px;}
.y19d{bottom:499.560000px;}
.yaa{bottom:499.830000px;}
.y71{bottom:500.280000px;}
.y12c{bottom:501.270000px;}
.y1e1{bottom:504.330000px;}
.y215{bottom:505.140000px;}
.y1cb{bottom:508.470000px;}
.y169{bottom:510.630000px;}
.y153{bottom:511.620000px;}
.y109{bottom:512.880000px;}
.y47{bottom:513.330000px;}
.yc9{bottom:514.410000px;}
.y17{bottom:516.930000px;}
.y19c{bottom:517.200000px;}
.ya9{bottom:517.470000px;}
.y70{bottom:517.830000px;}
.y1e0{bottom:521.880000px;}
.y1fa{bottom:522.690000px;}
.y1ca{bottom:526.020000px;}
.y86{bottom:526.470000px;}
.y152{bottom:529.260000px;}
.y183{bottom:530.880000px;}
.yc8{bottom:531.960000px;}
.y16{bottom:534.570000px;}
.y19b{bottom:534.750000px;}
.ya8{bottom:535.020000px;}
.y6f{bottom:535.470000px;}
.y12b{bottom:537.180000px;}
.y168{bottom:537.990000px;}
.y1df{bottom:539.430000px;}
.y1f9{bottom:540.330000px;}
.y1c9{bottom:543.660000px;}
.y151{bottom:546.810000px;}
.y108{bottom:548.430000px;}
.y46{bottom:548.880000px;}
.y15{bottom:552.120000px;}
.y19a{bottom:552.300000px;}
.ya7{bottom:552.660000px;}
.y6e{bottom:553.020000px;}
.y1f8{bottom:557.880000px;}
.yc7{bottom:558.510000px;}
.y85{bottom:558.690000px;}
.y167{bottom:565.350000px;}
.y107{bottom:566.070000px;}
.y45{bottom:566.430000px;}
.y214{bottom:566.880000px;}
.y14{bottom:569.670000px;}
.y199{bottom:569.940000px;}
.y6d{bottom:570.660000px;}
.y1de{bottom:575.070000px;}
.y1c8{bottom:579.210000px;}
.y150{bottom:582.360000px;}
.y106{bottom:583.620000px;}
.y44{bottom:584.070000px;}
.y1f7{bottom:584.430000px;}
.y12a{bottom:585.510000px;}
.y13{bottom:587.310000px;}
.ya6{bottom:588.210000px;}
.yc6{bottom:591.540000px;}
.y1dd{bottom:592.620000px;}
.y166{bottom:592.710000px;}
.y198{bottom:596.490000px;}
.y1c7{bottom:596.760000px;}
.y14f{bottom:600.000000px;}
.y43{bottom:601.620000px;}
.y1f6{bottom:602.070000px;}
.y129{bottom:603.060000px;}
.y12{bottom:604.860000px;}
.ya5{bottom:605.760000px;}
.y6c{bottom:606.210000px;}
.y182{bottom:610.260000px;}
.y1c6{bottom:614.400000px;}
.y14e{bottom:617.550000px;}
.y42{bottom:619.260000px;}
.y1f5{bottom:619.620000px;}
.y128{bottom:620.610000px;}
.y11{bottom:622.500000px;}
.ya4{bottom:623.400000px;}
.y6b{bottom:623.760000px;}
.y1dc{bottom:627.810000px;}
.y213{bottom:628.620000px;}
.y1c5{bottom:631.950000px;}
.y197{bottom:632.400000px;}
.y14d{bottom:635.190000px;}
.y105{bottom:636.810000px;}
.y127{bottom:638.250000px;}
.y10{bottom:640.050000px;}
.ya3{bottom:640.950000px;}
.y6a{bottom:641.400000px;}
.yf1{bottom:641.760000px;}
.y41{bottom:645.810000px;}
.y1f4{bottom:646.260000px;}
.y14c{bottom:652.740000px;}
.yc5{bottom:654.000000px;}
.y104{bottom:654.360000px;}
.yf{bottom:657.600000px;}
.y1c4{bottom:658.590000px;}
.y69{bottom:658.950000px;}
.yf0{bottom:659.400000px;}
.y181{bottom:663.360000px;}
.y1f3{bottom:663.810000px;}
.y14b{bottom:670.290000px;}
.y126{bottom:671.190000px;}
.y212{bottom:672.810000px;}
.ye{bottom:675.240000px;}
.y68{bottom:676.590000px;}
.yef{bottom:676.950000px;}
.y196{bottom:680.640000px;}
.y180{bottom:681.000000px;}
.y40{bottom:681.360000px;}
.y14a{bottom:688.740000px;}
.y103{bottom:690.000000px;}
.y211{bottom:690.360000px;}
.yd{bottom:692.790000px;}
.y67{bottom:694.140000px;}
.yee{bottom:694.590000px;}
.y1db{bottom:698.550000px;}
.y3f{bottom:699.000000px;}
.y149{bottom:706.290000px;}
.y102{bottom:707.550000px;}
.y1f2{bottom:708.000000px;}
.yc{bottom:710.430000px;}
.y66{bottom:711.690000px;}
.yed{bottom:712.140000px;}
.y195{bottom:712.860000px;}
.y125{bottom:716.100000px;}
.y1da{bottom:716.190000px;}
.y3e{bottom:716.550000px;}
.y148{bottom:723.930000px;}
.y101{bottom:725.190000px;}
.y1f1{bottom:725.550000px;}
.yb{bottom:727.980000px;}
.ya2{bottom:729.330000px;}
.y165{bottom:729.690000px;}
.y3d{bottom:734.190000px;}
.y210{bottom:734.550000px;}
.y65{bottom:738.330000px;}
.y147{bottom:741.480000px;}
.y100{bottom:742.740000px;}
.yec{bottom:747.690000px;}
.y1b2{bottom:751.290000px;}
.y3c{bottom:751.740000px;}
.y1f0{bottom:752.190000px;}
.ya{bottom:754.890000px;}
.y146{bottom:759.120000px;}
.y124{bottom:761.010000px;}
.ya1{bottom:764.880000px;}
.yeb{bottom:765.330000px;}
.y3b{bottom:769.290000px;}
.y1ef{bottom:769.740000px;}
.y64{bottom:774.240000px;}
.y145{bottom:776.670000px;}
.yff{bottom:778.290000px;}
.yc4{bottom:779.010000px;}
.ya0{bottom:782.520000px;}
.yea{bottom:782.880000px;}
.y1b1{bottom:786.930000px;}
.y17f{bottom:787.290000px;}
.y144{bottom:795.120000px;}
.yfe{bottom:795.930000px;}
.y20f{bottom:796.290000px;}
.y22e{bottom:796.650000px;}
.y9f{bottom:800.070000px;}
.ye9{bottom:800.520000px;}
.y9{bottom:803.130000px;}
.y1b0{bottom:804.480000px;}
.y3a{bottom:804.930000px;}
.y123{bottom:805.920000px;}
.y143{bottom:812.670000px;}
.yfd{bottom:813.480000px;}
.y1ee{bottom:813.930000px;}
.y22d{bottom:814.200000px;}
.y9e{bottom:817.620000px;}
.ye8{bottom:818.070000px;}
.y1af{bottom:822.030000px;}
.y39{bottom:822.480000px;}
.y142{bottom:830.220000px;}
.yfc{bottom:831.030000px;}
.y1ed{bottom:831.480000px;}
.y9d{bottom:835.260000px;}
.y164{bottom:835.620000px;}
.y8{bottom:838.950000px;}
.y38{bottom:840.030000px;}
.y22c{bottom:840.840000px;}
.yc3{bottom:841.560000px;}
.y141{bottom:847.860000px;}
.y1d9{bottom:848.670000px;}
.y1ec{bottom:849.030000px;}
.y122{bottom:850.920000px;}
.ye7{bottom:853.620000px;}
.y37{bottom:857.670000px;}
.y20e{bottom:858.030000px;}
.y22b{bottom:858.390000px;}
.y9c{bottom:861.810000px;}
.y140{bottom:865.410000px;}
.yfb{bottom:866.670000px;}
.y1c3{bottom:870.810000px;}
.ye6{bottom:871.260000px;}
.y7{bottom:874.950000px;}
.y36{bottom:875.220000px;}
.y17e{bottom:875.670000px;}
.y22a{bottom:876.030000px;}
.y13f{bottom:882.960000px;}
.yfa{bottom:884.220000px;}
.y1c2{bottom:888.450000px;}
.ye5{bottom:888.810000px;}
.y84{bottom:892.860000px;}
.y17d{bottom:893.220000px;}
.y120{bottom:895.830000px;}
.y9b{bottom:897.720000px;}
.y35{bottom:901.860000px;}
.y229{bottom:902.580000px;}
.yc2{bottom:904.020000px;}
.y1c1{bottom:906.000000px;}
.ye4{bottom:906.450000px;}
.y83{bottom:910.410000px;}
.y63{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.yf9{bottom:919.410000px;}
.y1eb{bottom:919.860000px;}
.y228{bottom:920.130000px;}
.y1c0{bottom:923.550000px;}
.ye3{bottom:924.000000px;}
.y62{bottom:928.410000px;}
.yf8{bottom:936.960000px;}
.y34{bottom:937.410000px;}
.y227{bottom:937.770000px;}
.y11f{bottom:940.740000px;}
.y1bf{bottom:941.190000px;}
.ye2{bottom:941.550000px;}
.y61{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y13e{bottom:954.600000px;}
.y33{bottom:954.960000px;}
.y163{bottom:959.190000px;}
.y60{bottom:963.600000px;}
.y226{bottom:964.320000px;}
.yc0{bottom:966.570000px;}
.y1be{bottom:967.740000px;}
.y32{bottom:972.600000px;}
.ye1{bottom:977.190000px;}
.y5f{bottom:981.150000px;}
.y17c{bottom:981.600000px;}
.y225{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y11d{bottom:985.650000px;}
.y31{bottom:990.150000px;}
.ye0{bottom:994.740000px;}
.y9a{bottom:998.790000px;}
.y17b{bottom:999.150000px;}
.y224{bottom:999.510000px;}
.y1bd{bottom:1003.650000px;}
.yf7{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.ydf{bottom:1012.320000px;}
.y5e{bottom:1016.820000px;}
.yf6{bottom:1025.370000px;}
.y30{bottom:1025.820000px;}
.y223{bottom:1026.090000px;}
.ybc{bottom:1029.060000px;}
.yde{bottom:1029.960000px;}
.y5d{bottom:1034.370000px;}
.yf5{bottom:1042.920000px;}
.y2f{bottom:1043.370000px;}
.y222{bottom:1043.730000px;}
.ydd{bottom:1047.510000px;}
.y5c{bottom:1051.920000px;}
.y2e{bottom:1060.920000px;}
.y221{bottom:1061.280000px;}
.ydc{bottom:1065.150000px;}
.y99{bottom:1069.560000px;}
.y17a{bottom:1069.920000px;}
.y2d{bottom:1078.560000px;}
.y98{bottom:1087.110000px;}
.y5b{bottom:1087.560000px;}
.y220{bottom:1087.740000px;}
.yba{bottom:1091.610000px;}
.ydb{bottom:1091.700000px;}
.y2c{bottom:1096.110000px;}
.y5a{bottom:1105.110000px;}
.y2b{bottom:1113.750000px;}
.y59{bottom:1122.750000px;}
.yda{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.he{height:26.550000px;}
.h16{height:26.580000px;}
.h15{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:39.155273px;}
.h14{height:44.100000px;}
.h13{height:44.190000px;}
.h12{height:44.220000px;}
.h17{height:44.502891px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:59.004492px;}
.h9{height:60.960938px;}
.h11{height:61.740000px;}
.h10{height:61.770000px;}
.hb{height:61.793886px;}
.hf{height:61.830000px;}
.ha{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:95.160000px;}
.w8{width:126.720000px;}
.w5{width:140.520000px;}
.w4{width:150.120000px;}
.wa{width:162.480000px;}
.w3{width:180.120000px;}
.w9{width:181.260000px;}
.wb{width:187.110000px;}
.we{width:202.680000px;}
.wd{width:248.160000px;}
.wc{width:270.300000px;}
.w6{width:282.780000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x11{left:85.320000px;}
.x4{left:95.039987px;}
.x18{left:111.239987px;}
.x5{left:122.039987px;}
.x7{left:159.749987px;}
.xd{left:164.640000px;}
.x15{left:193.349987px;}
.x17{left:195.149987px;}
.x2{left:209.819987px;}
.x9{left:249.600000px;}
.xe{left:292.080000px;}
.x12{left:356.340000px;}
.xa{left:400.440000px;}
.xf{left:474.150000px;}
.xb{left:541.680000px;}
.x13{left:605.220000px;}
.x14{left:609.809987px;}
.xc{left:617.639987px;}
.x10{left:637.350000px;}
.x6{left:700.889987px;}
.x16{left:787.559987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls1b{letter-spacing:-0.141867pt;}
.lsa{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls13{letter-spacing:-0.082133pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.034560pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls6{letter-spacing:0.043733pt;}
.ls10{letter-spacing:0.057600pt;}
.ls4{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.102933pt;}
.ls16{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.ls18{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.177067pt;}
.ls1d{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1c{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws11{word-spacing:-13.360000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsb{word-spacing:-11.933867pt;}
.wse{word-spacing:-11.932800pt;}
.wsf{word-spacing:-11.917867pt;}
.ws3{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.859733pt;}
.ws7{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.722240pt;}
.ws10{word-spacing:-11.614933pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._f{margin-left:-3.206400pt;}
._d{margin-left:-2.166400pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.907189pt;}
._8{width:2.269028pt;}
._5{width:3.473600pt;}
._e{width:4.370118pt;}
._7{width:5.316269pt;}
._6{width:6.252266pt;}
._10{width:7.317654pt;}
._9{width:8.603733pt;}
._c{width:9.833067pt;}
._4{width:10.819734pt;}
._2{width:12.439424pt;}
._1{width:13.349227pt;}
._18{width:14.940907pt;}
._17{width:15.925120pt;}
._14{width:17.018667pt;}
._13{width:18.169600pt;}
._22{width:19.131520pt;}
._16{width:20.734720pt;}
._15{width:21.643200pt;}
._29{width:22.605120pt;}
._32{width:23.866880pt;}
._19{width:24.767467pt;}
._11{width:26.094080pt;}
._12{width:27.217067pt;}
._33{width:28.421878pt;}
._a{width:29.338667pt;}
._b{width:30.339199pt;}
._2d{width:40.154560pt;}
._40{width:41.736640pt;}
._28{width:44.034560pt;}
._41{width:45.263680pt;}
._2a{width:47.426027pt;}
._1d{width:49.432000pt;}
._23{width:50.500800pt;}
._1a{width:51.676480pt;}
._2c{width:53.012480pt;}
._1c{width:54.722560pt;}
._2b{width:58.997760pt;}
._3a{width:60.066560pt;}
._25{width:61.081920pt;}
._1f{width:62.257600pt;}
._31{width:65.677760pt;}
._37{width:70.380480pt;}
._2f{width:77.167360pt;}
._3f{width:80.854720pt;}
._34{width:83.125760pt;}
._39{width:85.664320pt;}
._30{width:91.916800pt;}
._42{width:95.817920pt;}
._43{width:96.813547pt;}
._1e{width:99.665600pt;}
._20{width:108.376320pt;}
._27{width:110.460480pt;}
._38{width:119.972800pt;}
._35{width:130.072960pt;}
._36{width:131.034880pt;}
._3c{width:133.867200pt;}
._1b{width:154.067520pt;}
._24{width:162.671360pt;}
._3d{width:166.572480pt;}
._3e{width:167.587840pt;}
._21{width:176.191680pt;}
._3b{width:188.055360pt;}
._2e{width:235.242880pt;}
._26{width:236.739200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:6.960000pt;}
.ybf{bottom:7.040000pt;}
.y121{bottom:22.560000pt;}
.ybe{bottom:22.640000pt;}
.y11e{bottom:22.666667pt;}
.yc1{bottom:38.240000pt;}
.ybd{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y1ea{bottom:98.906667pt;}
.yf4{bottom:101.226667pt;}
.y11c{bottom:102.826667pt;}
.y1ae{bottom:106.266667pt;}
.y82{bottom:106.906667pt;}
.y20d{bottom:111.626667pt;}
.y1d8{bottom:114.186667pt;}
.y97{bottom:114.586667pt;}
.y11b{bottom:118.506667pt;}
.y1ad{bottom:121.946667pt;}
.yb9{bottom:122.186667pt;}
.y81{bottom:122.586667pt;}
.y13d{bottom:123.866667pt;}
.y179{bottom:124.106667pt;}
.y1bc{bottom:127.146667pt;}
.y20c{bottom:127.226667pt;}
.y1d7{bottom:129.866667pt;}
.y96{bottom:130.266667pt;}
.y58{bottom:132.186667pt;}
.yf3{bottom:132.826667pt;}
.y11a{bottom:134.106667pt;}
.y21f{bottom:135.226667pt;}
.y1ac{bottom:137.546667pt;}
.yb8{bottom:137.866667pt;}
.y80{bottom:138.186667pt;}
.y13c{bottom:139.466667pt;}
.y178{bottom:139.786667pt;}
.y27{bottom:140.266667pt;}
.y194{bottom:142.106667pt;}
.y1bb{bottom:142.746667pt;}
.yd9{bottom:143.066667pt;}
.y57{bottom:148.666667pt;}
.y119{bottom:149.786667pt;}
.y20b{bottom:150.826667pt;}
.y1ab{bottom:153.226667pt;}
.yb7{bottom:153.466667pt;}
.y7f{bottom:153.866667pt;}
.y177{bottom:155.386667pt;}
.y26{bottom:155.866667pt;}
.y162{bottom:156.266667pt;}
.y193{bottom:157.786667pt;}
.y1ba{bottom:158.426667pt;}
.yf2{bottom:161.466667pt;}
.y95{bottom:161.866667pt;}
.y56{bottom:164.266667pt;}
.y118{bottom:165.386667pt;}
.y20a{bottom:166.506667pt;}
.yb6{bottom:169.066667pt;}
.y176{bottom:170.986667pt;}
.y13b{bottom:171.066667pt;}
.y25{bottom:171.546667pt;}
.y192{bottom:173.386667pt;}
.y1b9{bottom:174.026667pt;}
.y21e{bottom:174.506667pt;}
.yd8{bottom:174.746667pt;}
.y1aa{bottom:176.826667pt;}
.y1d6{bottom:177.066667pt;}
.y94{bottom:177.466667pt;}
.y55{bottom:180.586667pt;}
.y209{bottom:182.106667pt;}
.y7e{bottom:185.466667pt;}
.y13a{bottom:186.746667pt;}
.y24{bottom:187.146667pt;}
.y161{bottom:187.946667pt;}
.y191{bottom:188.986667pt;}
.y21d{bottom:190.106667pt;}
.yd7{bottom:190.346667pt;}
.y1d5{bottom:192.746667pt;}
.y1e9{bottom:193.066667pt;}
.y93{bottom:193.146667pt;}
.y175{bottom:194.666667pt;}
.y117{bottom:196.986667pt;}
.y208{bottom:197.786667pt;}
.yb5{bottom:200.746667pt;}
.y7d{bottom:201.066667pt;}
.y139{bottom:202.346667pt;}
.y23{bottom:202.746667pt;}
.y160{bottom:203.546667pt;}
.y1b8{bottom:205.626667pt;}
.y21c{bottom:205.786667pt;}
.yd6{bottom:206.026667pt;}
.y1d4{bottom:208.346667pt;}
.y1a9{bottom:208.426667pt;}
.y92{bottom:208.746667pt;}
.y116{bottom:212.666667pt;}
.y54{bottom:212.986667pt;}
.yb4{bottom:216.346667pt;}
.y7c{bottom:216.746667pt;}
.y138{bottom:217.946667pt;}
.y22{bottom:218.426667pt;}
.y15f{bottom:219.146667pt;}
.y190{bottom:220.666667pt;}
.y1b7{bottom:221.306667pt;}
.y207{bottom:221.386667pt;}
.yd5{bottom:221.626667pt;}
.y1a8{bottom:224.106667pt;}
.y91{bottom:224.426667pt;}
.y174{bottom:226.266667pt;}
.y115{bottom:228.266667pt;}
.y53{bottom:228.666667pt;}
.yb3{bottom:231.946667pt;}
.y7b{bottom:232.346667pt;}
.y137{bottom:233.626667pt;}
.y21{bottom:234.026667pt;}
.y15e{bottom:234.826667pt;}
.y18f{bottom:236.266667pt;}
.y1b6{bottom:236.906667pt;}
.y206{bottom:236.986667pt;}
.y1a7{bottom:239.706667pt;}
.y1d3{bottom:239.946667pt;}
.y173{bottom:241.946667pt;}
.y114{bottom:243.946667pt;}
.y52{bottom:244.266667pt;}
.y21b{bottom:244.986667pt;}
.yb2{bottom:247.626667pt;}
.y7a{bottom:247.946667pt;}
.y20{bottom:249.706667pt;}
.y18e{bottom:251.946667pt;}
.y1b5{bottom:252.586667pt;}
.y205{bottom:252.666667pt;}
.yd4{bottom:253.226667pt;}
.y1a6{bottom:255.386667pt;}
.y1d2{bottom:255.626667pt;}
.y1e8{bottom:255.946667pt;}
.y90{bottom:256.026667pt;}
.y172{bottom:257.546667pt;}
.y113{bottom:259.546667pt;}
.y21a{bottom:260.666667pt;}
.y136{bottom:265.226667pt;}
.y15d{bottom:266.426667pt;}
.y18d{bottom:267.546667pt;}
.y51{bottom:267.946667pt;}
.yd3{bottom:268.906667pt;}
.y1d1{bottom:271.226667pt;}
.y79{bottom:271.626667pt;}
.y171{bottom:273.146667pt;}
.y1f{bottom:273.306667pt;}
.y112{bottom:275.146667pt;}
.y204{bottom:276.266667pt;}
.yb1{bottom:279.226667pt;}
.y135{bottom:280.906667pt;}
.y15c{bottom:282.106667pt;}
.y18c{bottom:283.146667pt;}
.y1b4{bottom:284.186667pt;}
.y219{bottom:284.266667pt;}
.yd2{bottom:284.506667pt;}
.y1d0{bottom:286.906667pt;}
.y1a5{bottom:286.986667pt;}
.y1e7{bottom:287.226667pt;}
.y8f{bottom:287.306667pt;}
.y203{bottom:291.946667pt;}
.yb0{bottom:294.906667pt;}
.y134{bottom:296.506667pt;}
.y15b{bottom:297.706667pt;}
.y50{bottom:299.546667pt;}
.y218{bottom:299.946667pt;}
.yd1{bottom:300.106667pt;}
.y1a4{bottom:302.586667pt;}
.y8e{bottom:302.906667pt;}
.y78{bottom:303.226667pt;}
.y170{bottom:304.826667pt;}
.y1e{bottom:305.226667pt;}
.y111{bottom:306.826667pt;}
.yaf{bottom:310.506667pt;}
.y1e6{bottom:310.906667pt;}
.y133{bottom:312.106667pt;}
.y1b3{bottom:312.826667pt;}
.y15a{bottom:313.306667pt;}
.y18b{bottom:314.826667pt;}
.y4f{bottom:315.146667pt;}
.y202{bottom:315.546667pt;}
.y1a3{bottom:318.266667pt;}
.y8d{bottom:318.586667pt;}
.y77{bottom:318.906667pt;}
.y16f{bottom:320.426667pt;}
.y110{bottom:322.426667pt;}
.yae{bottom:326.106667pt;}
.y1e5{bottom:326.506667pt;}
.y132{bottom:327.786667pt;}
.y159{bottom:328.986667pt;}
.y18a{bottom:330.426667pt;}
.y4e{bottom:330.826667pt;}
.y201{bottom:331.146667pt;}
.yd0{bottom:331.786667pt;}
.y1a2{bottom:333.866667pt;}
.y76{bottom:334.506667pt;}
.y16e{bottom:336.106667pt;}
.y10f{bottom:338.106667pt;}
.y217{bottom:339.146667pt;}
.y1cf{bottom:342.106667pt;}
.y189{bottom:346.106667pt;}
.y4d{bottom:346.426667pt;}
.ycf{bottom:347.386667pt;}
.y1d{bottom:348.426667pt;}
.y1e4{bottom:350.106667pt;}
.y8c{bottom:350.186667pt;}
.y16d{bottom:351.706667pt;}
.y10e{bottom:353.706667pt;}
.y200{bottom:354.826667pt;}
.yad{bottom:357.786667pt;}
.y131{bottom:359.386667pt;}
.y158{bottom:360.586667pt;}
.y188{bottom:361.706667pt;}
.yce{bottom:363.066667pt;}
.y1a1{bottom:365.546667pt;}
.y8b{bottom:365.786667pt;}
.y75{bottom:366.106667pt;}
.y10d{bottom:369.306667pt;}
.y1ff{bottom:370.426667pt;}
.yac{bottom:373.386667pt;}
.y130{bottom:375.066667pt;}
.y157{bottom:376.266667pt;}
.y4c{bottom:378.106667pt;}
.ycd{bottom:378.666667pt;}
.y16c{bottom:380.986667pt;}
.y1a0{bottom:381.146667pt;}
.y1c{bottom:381.306667pt;}
.y8a{bottom:381.466667pt;}
.y74{bottom:381.786667pt;}
.y1fe{bottom:386.106667pt;}
.y1ce{bottom:389.066667pt;}
.y1e3{bottom:389.706667pt;}
.y12f{bottom:390.666667pt;}
.y156{bottom:391.866667pt;}
.y187{bottom:393.306667pt;}
.y4b{bottom:393.706667pt;}
.y216{bottom:394.106667pt;}
.y19f{bottom:396.746667pt;}
.y1b{bottom:396.986667pt;}
.y89{bottom:397.066667pt;}
.y73{bottom:397.386667pt;}
.y10c{bottom:400.986667pt;}
.y1cd{bottom:404.666667pt;}
.y16b{bottom:405.306667pt;}
.y12e{bottom:406.266667pt;}
.y155{bottom:407.466667pt;}
.y186{bottom:408.986667pt;}
.y4a{bottom:409.306667pt;}
.y1fd{bottom:409.706667pt;}
.ycc{bottom:410.266667pt;}
.y19e{bottom:412.426667pt;}
.y1a{bottom:412.586667pt;}
.y88{bottom:412.666667pt;}
.y72{bottom:413.066667pt;}
.y10b{bottom:416.586667pt;}
.y12d{bottom:421.973333pt;}
.y185{bottom:424.613333pt;}
.y49{bottom:425.013333pt;}
.y1fc{bottom:425.333333pt;}
.ycb{bottom:425.973333pt;}
.y19{bottom:428.293333pt;}
.yab{bottom:428.693333pt;}
.y16a{bottom:429.653333pt;}
.y10a{bottom:432.293333pt;}
.y1e2{bottom:432.613333pt;}
.y1cc{bottom:436.293333pt;}
.y87{bottom:436.373333pt;}
.y154{bottom:439.173333pt;}
.y184{bottom:440.293333pt;}
.y48{bottom:440.613333pt;}
.y1fb{bottom:441.013333pt;}
.yca{bottom:441.573333pt;}
.y18{bottom:443.893333pt;}
.y19d{bottom:444.053333pt;}
.yaa{bottom:444.293333pt;}
.y71{bottom:444.693333pt;}
.y12c{bottom:445.573333pt;}
.y1e1{bottom:448.293333pt;}
.y215{bottom:449.013333pt;}
.y1cb{bottom:451.973333pt;}
.y169{bottom:453.893333pt;}
.y153{bottom:454.773333pt;}
.y109{bottom:455.893333pt;}
.y47{bottom:456.293333pt;}
.yc9{bottom:457.253333pt;}
.y17{bottom:459.493333pt;}
.y19c{bottom:459.733333pt;}
.ya9{bottom:459.973333pt;}
.y70{bottom:460.293333pt;}
.y1e0{bottom:463.893333pt;}
.y1fa{bottom:464.613333pt;}
.y1ca{bottom:467.573333pt;}
.y86{bottom:467.973333pt;}
.y152{bottom:470.453333pt;}
.y183{bottom:471.893333pt;}
.yc8{bottom:472.853333pt;}
.y16{bottom:475.173333pt;}
.y19b{bottom:475.333333pt;}
.ya8{bottom:475.573333pt;}
.y6f{bottom:475.973333pt;}
.y12b{bottom:477.493333pt;}
.y168{bottom:478.213333pt;}
.y1df{bottom:479.493333pt;}
.y1f9{bottom:480.293333pt;}
.y1c9{bottom:483.253333pt;}
.y151{bottom:486.053333pt;}
.y108{bottom:487.493333pt;}
.y46{bottom:487.893333pt;}
.y15{bottom:490.773333pt;}
.y19a{bottom:490.933333pt;}
.ya7{bottom:491.253333pt;}
.y6e{bottom:491.573333pt;}
.y1f8{bottom:495.893333pt;}
.yc7{bottom:496.453333pt;}
.y85{bottom:496.613333pt;}
.y167{bottom:502.533333pt;}
.y107{bottom:503.173333pt;}
.y45{bottom:503.493333pt;}
.y214{bottom:503.893333pt;}
.y14{bottom:506.373333pt;}
.y199{bottom:506.613333pt;}
.y6d{bottom:507.253333pt;}
.y1de{bottom:511.173333pt;}
.y1c8{bottom:514.853333pt;}
.y150{bottom:517.653333pt;}
.y106{bottom:518.773333pt;}
.y44{bottom:519.173333pt;}
.y1f7{bottom:519.493333pt;}
.y12a{bottom:520.453333pt;}
.y13{bottom:522.053333pt;}
.ya6{bottom:522.853333pt;}
.yc6{bottom:525.813333pt;}
.y1dd{bottom:526.773333pt;}
.y166{bottom:526.853333pt;}
.y198{bottom:530.213333pt;}
.y1c7{bottom:530.453333pt;}
.y14f{bottom:533.333333pt;}
.y43{bottom:534.773333pt;}
.y1f6{bottom:535.173333pt;}
.y129{bottom:536.053333pt;}
.y12{bottom:537.653333pt;}
.ya5{bottom:538.453333pt;}
.y6c{bottom:538.853333pt;}
.y182{bottom:542.453333pt;}
.y1c6{bottom:546.133333pt;}
.y14e{bottom:548.933333pt;}
.y42{bottom:550.453333pt;}
.y1f5{bottom:550.773333pt;}
.y128{bottom:551.653333pt;}
.y11{bottom:553.333333pt;}
.ya4{bottom:554.133333pt;}
.y6b{bottom:554.453333pt;}
.y1dc{bottom:558.053333pt;}
.y213{bottom:558.773333pt;}
.y1c5{bottom:561.733333pt;}
.y197{bottom:562.133333pt;}
.y14d{bottom:564.613333pt;}
.y105{bottom:566.053333pt;}
.y127{bottom:567.333333pt;}
.y10{bottom:568.933333pt;}
.ya3{bottom:569.733333pt;}
.y6a{bottom:570.133333pt;}
.yf1{bottom:570.453333pt;}
.y41{bottom:574.053333pt;}
.y1f4{bottom:574.453333pt;}
.y14c{bottom:580.213333pt;}
.yc5{bottom:581.333333pt;}
.y104{bottom:581.653333pt;}
.yf{bottom:584.533333pt;}
.y1c4{bottom:585.413333pt;}
.y69{bottom:585.733333pt;}
.yf0{bottom:586.133333pt;}
.y181{bottom:589.653333pt;}
.y1f3{bottom:590.053333pt;}
.y14b{bottom:595.813333pt;}
.y126{bottom:596.613333pt;}
.y212{bottom:598.053333pt;}
.ye{bottom:600.213333pt;}
.y68{bottom:601.413333pt;}
.yef{bottom:601.733333pt;}
.y196{bottom:605.013333pt;}
.y180{bottom:605.333333pt;}
.y40{bottom:605.653333pt;}
.y14a{bottom:612.213333pt;}
.y103{bottom:613.333333pt;}
.y211{bottom:613.653333pt;}
.yd{bottom:615.813333pt;}
.y67{bottom:617.013333pt;}
.yee{bottom:617.413333pt;}
.y1db{bottom:620.933333pt;}
.y3f{bottom:621.333333pt;}
.y149{bottom:627.813333pt;}
.y102{bottom:628.933333pt;}
.y1f2{bottom:629.333333pt;}
.yc{bottom:631.493333pt;}
.y66{bottom:632.613333pt;}
.yed{bottom:633.013333pt;}
.y195{bottom:633.653333pt;}
.y125{bottom:636.533333pt;}
.y1da{bottom:636.613333pt;}
.y3e{bottom:636.933333pt;}
.y148{bottom:643.493333pt;}
.y101{bottom:644.613333pt;}
.y1f1{bottom:644.933333pt;}
.yb{bottom:647.093333pt;}
.ya2{bottom:648.293333pt;}
.y165{bottom:648.613333pt;}
.y3d{bottom:652.613333pt;}
.y210{bottom:652.933333pt;}
.y65{bottom:656.293333pt;}
.y147{bottom:659.093333pt;}
.y100{bottom:660.213333pt;}
.yec{bottom:664.613333pt;}
.y1b2{bottom:667.813333pt;}
.y3c{bottom:668.213333pt;}
.y1f0{bottom:668.613333pt;}
.ya{bottom:671.013333pt;}
.y146{bottom:674.773333pt;}
.y124{bottom:676.453333pt;}
.ya1{bottom:679.893333pt;}
.yeb{bottom:680.293333pt;}
.y3b{bottom:683.813333pt;}
.y1ef{bottom:684.213333pt;}
.y64{bottom:688.213333pt;}
.y145{bottom:690.373333pt;}
.yff{bottom:691.813333pt;}
.yc4{bottom:692.453333pt;}
.ya0{bottom:695.573333pt;}
.yea{bottom:695.893333pt;}
.y1b1{bottom:699.493333pt;}
.y17f{bottom:699.813333pt;}
.y144{bottom:706.773333pt;}
.yfe{bottom:707.493333pt;}
.y20f{bottom:707.813333pt;}
.y22e{bottom:708.133333pt;}
.y9f{bottom:711.173333pt;}
.ye9{bottom:711.573333pt;}
.y9{bottom:713.893333pt;}
.y1b0{bottom:715.093333pt;}
.y3a{bottom:715.493333pt;}
.y123{bottom:716.373333pt;}
.y143{bottom:722.373333pt;}
.yfd{bottom:723.093333pt;}
.y1ee{bottom:723.493333pt;}
.y22d{bottom:723.733333pt;}
.y9e{bottom:726.773333pt;}
.ye8{bottom:727.173333pt;}
.y1af{bottom:730.693333pt;}
.y39{bottom:731.093333pt;}
.y142{bottom:737.973333pt;}
.yfc{bottom:738.693333pt;}
.y1ed{bottom:739.093333pt;}
.y9d{bottom:742.453333pt;}
.y164{bottom:742.773333pt;}
.y8{bottom:745.733333pt;}
.y38{bottom:746.693333pt;}
.y22c{bottom:747.413333pt;}
.yc3{bottom:748.053333pt;}
.y141{bottom:753.653333pt;}
.y1d9{bottom:754.373333pt;}
.y1ec{bottom:754.693333pt;}
.y122{bottom:756.373333pt;}
.ye7{bottom:758.773333pt;}
.y37{bottom:762.373333pt;}
.y20e{bottom:762.693333pt;}
.y22b{bottom:763.013333pt;}
.y9c{bottom:766.053333pt;}
.y140{bottom:769.253333pt;}
.yfb{bottom:770.373333pt;}
.y1c3{bottom:774.053333pt;}
.ye6{bottom:774.453333pt;}
.y7{bottom:777.733333pt;}
.y36{bottom:777.973333pt;}
.y17e{bottom:778.373333pt;}
.y22a{bottom:778.693333pt;}
.y13f{bottom:784.853333pt;}
.yfa{bottom:785.973333pt;}
.y1c2{bottom:789.733333pt;}
.ye5{bottom:790.053333pt;}
.y84{bottom:793.653333pt;}
.y17d{bottom:793.973333pt;}
.y120{bottom:796.293333pt;}
.y9b{bottom:797.973333pt;}
.y35{bottom:801.653333pt;}
.y229{bottom:802.293333pt;}
.yc2{bottom:803.573333pt;}
.y1c1{bottom:805.333333pt;}
.ye4{bottom:805.733333pt;}
.y83{bottom:809.253333pt;}
.y63{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.yf9{bottom:817.253333pt;}
.y1eb{bottom:817.653333pt;}
.y228{bottom:817.893333pt;}
.y1c0{bottom:820.933333pt;}
.ye3{bottom:821.333333pt;}
.y62{bottom:825.253333pt;}
.yf8{bottom:832.853333pt;}
.y34{bottom:833.253333pt;}
.y227{bottom:833.573333pt;}
.y11f{bottom:836.213333pt;}
.y1bf{bottom:836.613333pt;}
.ye2{bottom:836.933333pt;}
.y61{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y13e{bottom:848.533333pt;}
.y33{bottom:848.853333pt;}
.y163{bottom:852.613333pt;}
.y60{bottom:856.533333pt;}
.y226{bottom:857.173333pt;}
.yc0{bottom:859.173333pt;}
.y1be{bottom:860.213333pt;}
.y32{bottom:864.533333pt;}
.ye1{bottom:868.613333pt;}
.y5f{bottom:872.133333pt;}
.y17c{bottom:872.533333pt;}
.y225{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y11d{bottom:876.133333pt;}
.y31{bottom:880.133333pt;}
.ye0{bottom:884.213333pt;}
.y9a{bottom:887.813333pt;}
.y17b{bottom:888.133333pt;}
.y224{bottom:888.453333pt;}
.y1bd{bottom:892.133333pt;}
.yf7{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.ydf{bottom:899.840000pt;}
.y5e{bottom:903.840000pt;}
.yf6{bottom:911.440000pt;}
.y30{bottom:911.840000pt;}
.y223{bottom:912.080000pt;}
.ybc{bottom:914.720000pt;}
.yde{bottom:915.520000pt;}
.y5d{bottom:919.440000pt;}
.yf5{bottom:927.040000pt;}
.y2f{bottom:927.440000pt;}
.y222{bottom:927.760000pt;}
.ydd{bottom:931.120000pt;}
.y5c{bottom:935.040000pt;}
.y2e{bottom:943.040000pt;}
.y221{bottom:943.360000pt;}
.ydc{bottom:946.800000pt;}
.y99{bottom:950.720000pt;}
.y17a{bottom:951.040000pt;}
.y2d{bottom:958.720000pt;}
.y98{bottom:966.320000pt;}
.y5b{bottom:966.720000pt;}
.y220{bottom:966.880000pt;}
.yba{bottom:970.320000pt;}
.ydb{bottom:970.400000pt;}
.y2c{bottom:974.320000pt;}
.y5a{bottom:982.320000pt;}
.y2b{bottom:990.000000pt;}
.y59{bottom:998.000000pt;}
.yda{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h16{height:23.626667pt;}
.h15{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:34.804688pt;}
.h14{height:39.200000pt;}
.h13{height:39.280000pt;}
.h12{height:39.306667pt;}
.h17{height:39.558125pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:52.448437pt;}
.h9{height:54.187500pt;}
.h11{height:54.880000pt;}
.h10{height:54.906667pt;}
.hb{height:54.927899pt;}
.hf{height:54.960000pt;}
.ha{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:84.586667pt;}
.w8{width:112.640000pt;}
.w5{width:124.906667pt;}
.w4{width:133.440000pt;}
.wa{width:144.426667pt;}
.w3{width:160.106667pt;}
.w9{width:161.120000pt;}
.wb{width:166.320000pt;}
.we{width:180.160000pt;}
.wd{width:220.586667pt;}
.wc{width:240.266667pt;}
.w6{width:251.360000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x11{left:75.840000pt;}
.x4{left:84.479988pt;}
.x18{left:98.879988pt;}
.x5{left:108.479988pt;}
.x7{left:141.999988pt;}
.xd{left:146.346667pt;}
.x15{left:171.866655pt;}
.x17{left:173.466655pt;}
.x2{left:186.506655pt;}
.x9{left:221.866667pt;}
.xe{left:259.626667pt;}
.x12{left:316.746667pt;}
.xa{left:355.946667pt;}
.xf{left:421.466667pt;}
.xb{left:481.493333pt;}
.x13{left:537.973333pt;}
.x14{left:542.053322pt;}
.xc{left:549.013322pt;}
.x10{left:566.533333pt;}
.x6{left:623.013322pt;}
.x16{left:700.053322pt;}
.x3{left:711.413322pt;}
}




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