
    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_9c9c5ff68a3a13bf8665a915.woff2')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_03303ac2e68f71a93059faf5.woff2')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_f433309603480d4687b8d5a7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ca8b134518a13901a19bb909.woff2')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_6cc4531ac9709a5c12b33a52.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6d6fa2ffd399d11f16cef0f9.woff2')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_ff37d820db6fc12eced7872a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e02adc9a740d21282693fb97.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.725586;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_ec8f16e9769ae88e32be9b20.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d4bcebfd5168177f839673d5.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls19{letter-spacing:-13.200000px;}
.ls27{letter-spacing:-0.513600px;}
.ls1f{letter-spacing:-0.310800px;}
.ls18{letter-spacing:-0.243600px;}
.ls14{letter-spacing:-0.186600px;}
.ls28{letter-spacing:-0.164400px;}
.lsd{letter-spacing:-0.160800px;}
.ls15{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.ls16{letter-spacing:-0.125400px;}
.lse{letter-spacing:-0.121200px;}
.ls25{letter-spacing:-0.093600px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls20{letter-spacing:-0.078000px;}
.ls21{letter-spacing:-0.068400px;}
.lsf{letter-spacing:-0.066000px;}
.ls26{letter-spacing:-0.023400px;}
.ls1b{letter-spacing:-0.011160px;}
.lsa{letter-spacing:-0.008400px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.074160px;}
.ls1e{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.092160px;}
.ls2f{letter-spacing:0.092400px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.098400px;}
.ls24{letter-spacing:0.108600px;}
.ls23{letter-spacing:0.115800px;}
.ls1d{letter-spacing:0.116400px;}
.ls7{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.160800px;}
.ls13{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls17{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls2d{letter-spacing:0.813600px;}
.ls29{letter-spacing:1.893600px;}
.ls2c{letter-spacing:5.133600px;}
.ls5{letter-spacing:7.653600px;}
.ls2e{letter-spacing:8.733600px;}
.ls2a{letter-spacing:11.973600px;}
.ls31{letter-spacing:47.726640px;}
.ls30{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;}
}
.ws14{word-spacing:-60.120000px;}
.ws6{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws1e{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws18{word-spacing:-13.387200px;}
.ws15{word-spacing:-13.342800px;}
.ws19{word-spacing:-13.342200px;}
.ws1a{word-spacing:-13.335000px;}
.ws12{word-spacing:-13.324800px;}
.ws10{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.215240px;}
.ws1b{word-spacing:-13.203000px;}
.ws7{word-spacing:-13.160400px;}
.ws17{word-spacing:-13.158000px;}
.ws16{word-spacing:-13.148400px;}
.wsc{word-spacing:-13.101000px;}
.wsb{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.065600px;}
.ws1d{word-spacing:-13.062000px;}
.wsa{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.982800px;}
.ws1c{word-spacing:-12.712800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws13{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._14{margin-left:-13.471920px;}
._d{margin-left:-6.161281px;}
._f{margin-left:-5.122919px;}
._e{margin-left:-3.303961px;}
._c{margin-left:-2.224200px;}
._0{margin-left:-1.110000px;}
._3{width:1.004579px;}
._5{width:2.687642px;}
._9{width:4.389000px;}
._a{width:6.119754px;}
._6{width:7.875600px;}
._7{width:8.958000px;}
._b{width:10.280040px;}
._4{width:11.390760px;}
._11{width:14.549040px;}
._1d{width:15.631200px;}
._10{width:16.833600px;}
._17{width:18.706320px;}
._18{width:20.251440px;}
._8{width:21.402600px;}
._1e{width:23.780160px;}
._1f{width:24.835200px;}
._15{width:30.011808px;}
._2{width:31.037832px;}
._1{width:32.123640px;}
._16{width:33.198480px;}
._12{width:42.325320px;}
._20{width:54.919440px;}
._1b{width:75.029760px;}
._1c{width:95.530680px;}
._13{width:112.244040px;}
._19{width:126.521280px;}
._1a{width:162.684720px;}
.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;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ycf{bottom:6.300000px;}
.yef{bottom:6.330000px;}
.yd9{bottom:6.390000px;}
.ydd{bottom:6.570000px;}
.y6b{bottom:7.830000px;}
.y140{bottom:7.860000px;}
.y6f{bottom:7.920000px;}
.y11a{bottom:25.380000px;}
.y7c{bottom:25.470000px;}
.ya8{bottom:29.970000px;}
.yd1{bottom:30.600000px;}
.y6d{bottom:35.190000px;}
.y128{bottom:35.280000px;}
.y11c{bottom:43.020000px;}
.y8a{bottom:43.110000px;}
.y15d{bottom:52.830000px;}
.yec{bottom:54.930000px;}
.ye4{bottom:61.650000px;}
.y14f{bottom:62.460000px;}
.y122{bottom:62.550000px;}
.y8d{bottom:72.300000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.ye3{bottom:79.290000px;}
.ydf{bottom:79.380000px;}
.yb1{bottom:89.820000px;}
.y8c{bottom:89.850000px;}
.yaa{bottom:89.910000px;}
.y13c{bottom:89.940000px;}
.y1{bottom:101.640000px;}
.y1d5{bottom:114.060000px;}
.ye2{bottom:118.560000px;}
.y1bd{bottom:118.650000px;}
.y15c{bottom:120.180000px;}
.y5c{bottom:121.170000px;}
.y189{bottom:125.310000px;}
.y115{bottom:126.930000px;}
.y10f{bottom:132.330000px;}
.yb0{bottom:132.870000px;}
.y78{bottom:134.850000px;}
.y1bc{bottom:136.200000px;}
.y5b{bottom:138.720000px;}
.y29{bottom:141.240000px;}
.y88{bottom:141.330000px;}
.ye7{bottom:142.860000px;}
.y71{bottom:144.540000px;}
.yb9{bottom:144.570000px;}
.y15b{bottom:147.540000px;}
.y1d4{bottom:149.610000px;}
.y1bb{bottom:153.840000px;}
.y5a{bottom:156.270000px;}
.y28{bottom:158.790000px;}
.y114{bottom:159.690000px;}
.yb4{bottom:160.230000px;}
.y188{bottom:160.500000px;}
.ye6{bottom:167.250000px;}
.y7e{bottom:168.690000px;}
.y27{bottom:176.340000px;}
.y1d3{bottom:176.520000px;}
.yd4{bottom:176.700000px;}
.y139{bottom:178.050000px;}
.y80{bottom:181.620000px;}
.y59{bottom:182.910000px;}
.y113{bottom:187.050000px;}
.yb3{bottom:187.500000px;}
.y1ba{bottom:189.390000px;}
.ye5{bottom:191.550000px;}
.y15a{bottom:192.450000px;}
.y26{bottom:193.980000px;}
.y187{bottom:195.690000px;}
.y87{bottom:196.050000px;}
.y7f{bottom:199.260000px;}
.y105{bottom:199.290000px;}
.y1b9{bottom:206.940000px;}
.y25{bottom:211.530000px;}
.y186{bottom:213.240000px;}
.y1d2{bottom:213.510000px;}
.y138{bottom:213.690000px;}
.y112{bottom:214.410000px;}
.yb2{bottom:214.860000px;}
.yde{bottom:215.850000px;}
.y58{bottom:218.460000px;}
.y86{bottom:223.410000px;}
.y1b8{bottom:224.580000px;}
.y24{bottom:229.170000px;}
.y185{bottom:230.790000px;}
.y1d1{bottom:231.150000px;}
.y57{bottom:236.100000px;}
.y159{bottom:237.360000px;}
.y118{bottom:237.690000px;}
.ye1{bottom:240.240000px;}
.y111{bottom:241.680000px;}
.y1b7{bottom:242.130000px;}
.yae{bottom:242.220000px;}
.y23{bottom:246.720000px;}
.y137{bottom:249.240000px;}
.y85{bottom:250.680000px;}
.y56{bottom:253.650000px;}
.y144{bottom:253.890000px;}
.y1d0{bottom:258.060000px;}
.y1b6{bottom:259.680000px;}
.y117{bottom:259.740000px;}
.y22{bottom:264.270000px;}
.ye0{bottom:264.540000px;}
.y158{bottom:264.720000px;}
.y184{bottom:266.430000px;}
.y136{bottom:266.790000px;}
.y1fb{bottom:268.230000px;}
.y110{bottom:269.040000px;}
.yaf{bottom:269.490000px;}
.y55{bottom:271.200000px;}
.y1b5{bottom:277.320000px;}
.y84{bottom:278.040000px;}
.y21{bottom:281.910000px;}
.y183{bottom:283.980000px;}
.y135{bottom:284.430000px;}
.y1fa{bottom:285.780000px;}
.y54{bottom:288.840000px;}
.y157{bottom:292.080000px;}
.y1b4{bottom:294.870000px;}
.y1cf{bottom:295.410000px;}
.y10d{bottom:296.400000px;}
.ya9{bottom:296.850000px;}
.y182{bottom:301.620000px;}
.y134{bottom:301.980000px;}
.y1f9{bottom:303.420000px;}
.y83{bottom:305.400000px;}
.y20{bottom:308.820000px;}
.y1b3{bottom:312.510000px;}
.yd3{bottom:313.230000px;}
.y53{bottom:315.750000px;}
.y181{bottom:319.170000px;}
.y133{bottom:319.620000px;}
.y10e{bottom:323.760000px;}
.yad{bottom:324.210000px;}
.y1f8{bottom:329.970000px;}
.y1b2{bottom:330.060000px;}
.y82{bottom:332.760000px;}
.y180{bottom:336.720000px;}
.y156{bottom:336.990000px;}
.y132{bottom:337.170000px;}
.ydc{bottom:337.530000px;}
.y1ce{bottom:343.650000px;}
.y1b1{bottom:347.610000px;}
.y104{bottom:351.030000px;}
.yac{bottom:351.570000px;}
.y17f{bottom:354.360000px;}
.y131{bottom:354.720000px;}
.y1f{bottom:357.420000px;}
.y81{bottom:360.030000px;}
.y1cd{bottom:361.200000px;}
.ydb{bottom:361.920000px;}
.y52{bottom:363.990000px;}
.y155{bottom:364.350000px;}
.y1b0{bottom:365.250000px;}
.y17e{bottom:371.910000px;}
.y130{bottom:372.360000px;}
.y1f7{bottom:374.160000px;}
.y10c{bottom:378.390000px;}
.yab{bottom:378.840000px;}
.y51{bottom:381.540000px;}
.y1af{bottom:382.800000px;}
.yda{bottom:386.220000px;}
.y77{bottom:387.390000px;}
.y17d{bottom:389.550000px;}
.y12f{bottom:389.910000px;}
.y154{bottom:391.620000px;}
.y1f6{bottom:391.710000px;}
.y1e{bottom:394.410000px;}
.y1cc{bottom:396.390000px;}
.y50{bottom:399.180000px;}
.y1ae{bottom:400.440000px;}
.y10b{bottom:405.750000px;}
.ya1{bottom:406.200000px;}
.y17c{bottom:407.100000px;}
.y12e{bottom:407.550000px;}
.yd8{bottom:410.520000px;}
.y1d{bottom:412.050000px;}
.y1cb{bottom:413.940000px;}
.y7d{bottom:414.750000px;}
.y4f{bottom:416.730000px;}
.y1f5{bottom:418.350000px;}
.y17b{bottom:424.650000px;}
.y12d{bottom:425.100000px;}
.y1c{bottom:429.600000px;}
.y1ca{bottom:431.580000px;}
.y10a{bottom:433.020000px;}
.y4e{bottom:434.370000px;}
.yd7{bottom:434.910000px;}
.y1f4{bottom:435.900000px;}
.y1ad{bottom:435.990000px;}
.y7b{bottom:442.020000px;}
.y17a{bottom:442.290000px;}
.y12c{bottom:442.650000px;}
.y1b{bottom:447.150000px;}
.y1c9{bottom:449.130000px;}
.y4d{bottom:451.920000px;}
.y1ac{bottom:453.540000px;}
.ya7{bottom:455.610000px;}
.y153{bottom:457.950000px;}
.yd6{bottom:459.210000px;}
.y179{bottom:459.840000px;}
.y12b{bottom:460.290000px;}
.y109{bottom:460.380000px;}
.y1f3{bottom:462.450000px;}
.y1a{bottom:464.790000px;}
.y1c8{bottom:466.770000px;}
.y4c{bottom:469.470000px;}
.y1ab{bottom:471.210000px;}
.y178{bottom:477.510000px;}
.y1f2{bottom:480.120000px;}
.y19{bottom:482.370000px;}
.ya6{bottom:483.000000px;}
.yd5{bottom:483.630000px;}
.y1c7{bottom:484.350000px;}
.y152{bottom:484.530000px;}
.y12a{bottom:486.870000px;}
.y7a{bottom:487.050000px;}
.y108{bottom:487.770000px;}
.y1aa{bottom:488.760000px;}
.y18{bottom:499.920000px;}
.y1c6{bottom:501.900000px;}
.y177{bottom:504.420000px;}
.y4b{bottom:505.140000px;}
.y1a9{bottom:506.400000px;}
.y1f1{bottom:506.670000px;}
.yd0{bottom:507.930000px;}
.ya5{bottom:510.360000px;}
.y79{bottom:514.320000px;}
.y107{bottom:515.130000px;}
.y17{bottom:517.560000px;}
.y1c5{bottom:519.540000px;}
.y127{bottom:519.810000px;}
.y4a{bottom:522.690000px;}
.y1a8{bottom:523.950000px;}
.y1f0{bottom:524.310000px;}
.yd2{bottom:532.230000px;}
.y16{bottom:535.110000px;}
.ya4{bottom:537.630000px;}
.y49{bottom:540.330000px;}
.y1a7{bottom:541.500000px;}
.y70{bottom:541.680000px;}
.y106{bottom:542.400000px;}
.y151{bottom:544.830000px;}
.y1c4{bottom:546.450000px;}
.y129{bottom:547.170000px;}
.y176{bottom:550.050000px;}
.y1ef{bottom:550.860000px;}
.y15{bottom:552.750000px;}
.yce{bottom:556.620000px;}
.y48{bottom:557.880000px;}
.y1a6{bottom:559.140000px;}
.ya3{bottom:564.990000px;}
.y1ee{bottom:568.410000px;}
.y76{bottom:569.040000px;}
.y103{bottom:569.760000px;}
.y14{bottom:570.300000px;}
.y150{bottom:572.190000px;}
.y125{bottom:574.530000px;}
.y1a5{bottom:576.690000px;}
.y175{bottom:577.410000px;}
.y13{bottom:587.850000px;}
.ya2{bottom:592.350000px;}
.y47{bottom:593.430000px;}
.y1c3{bottom:594.690000px;}
.y1ed{bottom:595.050000px;}
.y75{bottom:596.310000px;}
.y14d{bottom:599.550000px;}
.y126{bottom:601.890000px;}
.ycd{bottom:602.340000px;}
.y174{bottom:604.680000px;}
.y12{bottom:605.490000px;}
.y46{bottom:611.070000px;}
.y1a4{bottom:612.330000px;}
.y1ec{bottom:612.600000px;}
.y102{bottom:618.450000px;}
.y9f{bottom:619.710000px;}
.y11{bottom:623.040000px;}
.y74{bottom:623.670000px;}
.y14e{bottom:626.910000px;}
.y45{bottom:628.620000px;}
.y121{bottom:629.160000px;}
.y1a3{bottom:629.880000px;}
.y173{bottom:632.040000px;}
.ycc{bottom:637.890000px;}
.y1eb{bottom:639.240000px;}
.y10{bottom:640.680000px;}
.y44{bottom:646.260000px;}
.ya0{bottom:646.980000px;}
.y1a2{bottom:647.430000px;}
.y73{bottom:651.030000px;}
.y101{bottom:654.090000px;}
.y143{bottom:654.180000px;}
.ycb{bottom:655.440000px;}
.y124{bottom:656.520000px;}
.y1ea{bottom:656.790000px;}
.yf{bottom:658.230000px;}
.y172{bottom:659.400000px;}
.y43{bottom:663.810000px;}
.y1a1{bottom:665.070000px;}
.y100{bottom:671.640000px;}
.yca{bottom:673.080000px;}
.y9e{bottom:674.340000px;}
.y72{bottom:678.390000px;}
.y42{bottom:681.360000px;}
.y14c{bottom:681.540000px;}
.y1a0{bottom:682.620000px;}
.y1e9{bottom:683.340000px;}
.y123{bottom:683.880000px;}
.ye{bottom:685.140000px;}
.yff{bottom:689.190000px;}
.yc9{bottom:690.630000px;}
.y19f{bottom:700.260000px;}
.y1e8{bottom:700.980000px;}
.y9d{bottom:705.030000px;}
.y6c{bottom:705.660000px;}
.yfe{bottom:706.830000px;}
.y171{bottom:708.090000px;}
.yc8{bottom:708.270000px;}
.y14b{bottom:708.900000px;}
.y116{bottom:711.240000px;}
.y41{bottom:717.000000px;}
.y19e{bottom:717.810000px;}
.yfd{bottom:724.380000px;}
.y170{bottom:725.640000px;}
.yc7{bottom:725.820000px;}
.y1e7{bottom:727.530000px;}
.y9c{bottom:729.240000px;}
.y6e{bottom:733.020000px;}
.yd{bottom:733.380000px;}
.y40{bottom:734.550000px;}
.y19d{bottom:735.360000px;}
.y14a{bottom:736.170000px;}
.y120{bottom:738.510000px;}
.yfc{bottom:742.020000px;}
.yc6{bottom:743.370000px;}
.y1e6{bottom:745.170000px;}
.y3f{bottom:752.190000px;}
.y19c{bottom:753.000000px;}
.yfb{bottom:759.570000px;}
.y6a{bottom:760.380000px;}
.yc5{bottom:761.010000px;}
.y16f{bottom:761.280000px;}
.y149{bottom:763.530000px;}
.y9b{bottom:764.790000px;}
.y11f{bottom:765.870000px;}
.yc{bottom:769.200000px;}
.y3e{bottom:769.740000px;}
.y19b{bottom:770.550000px;}
.y1e5{bottom:771.720000px;}
.yfa{bottom:777.120000px;}
.yc4{bottom:778.560000px;}
.y16e{bottom:778.830000px;}
.y9a{bottom:782.430000px;}
.y3d{bottom:787.290000px;}
.y19a{bottom:788.190000px;}
.y1e4{bottom:789.270000px;}
.y148{bottom:790.890000px;}
.yf9{bottom:794.760000px;}
.yc3{bottom:796.200000px;}
.y16d{bottom:796.380000px;}
.y99{bottom:799.980000px;}
.y3c{bottom:804.930000px;}
.yb{bottom:805.200000px;}
.y199{bottom:805.740000px;}
.y69{bottom:809.070000px;}
.y11e{bottom:810.780000px;}
.yf8{bottom:812.310000px;}
.yc2{bottom:813.750000px;}
.y16c{bottom:814.020000px;}
.y1e3{bottom:815.910000px;}
.y98{bottom:817.530000px;}
.y147{bottom:818.250000px;}
.y198{bottom:823.290000px;}
.yf7{bottom:829.950000px;}
.yc1{bottom:831.300000px;}
.y16b{bottom:831.570000px;}
.y1e2{bottom:833.460000px;}
.y97{bottom:835.170000px;}
.y11d{bottom:838.140000px;}
.y3b{bottom:840.480000px;}
.y197{bottom:840.930000px;}
.y68{bottom:844.620000px;}
.ya{bottom:844.980000px;}
.y146{bottom:845.520000px;}
.yf6{bottom:847.500000px;}
.yc0{bottom:848.940000px;}
.y16a{bottom:849.210000px;}
.y1e1{bottom:851.100000px;}
.y96{bottom:852.720000px;}
.y3a{bottom:858.030000px;}
.y196{bottom:858.480000px;}
.y9{bottom:859.200000px;}
.y67{bottom:862.260000px;}
.yf5{bottom:865.050000px;}
.y169{bottom:866.760000px;}
.y95{bottom:870.360000px;}
.y145{bottom:872.880000px;}
.ybf{bottom:875.490000px;}
.y39{bottom:875.670000px;}
.y1c2{bottom:876.030000px;}
.y1e0{bottom:877.650000px;}
.y66{bottom:879.810000px;}
.y8{bottom:880.980000px;}
.yf4{bottom:882.690000px;}
.y11b{bottom:883.050000px;}
.y94{bottom:887.910000px;}
.y38{bottom:893.220000px;}
.y1c1{bottom:893.670000px;}
.y195{bottom:894.030000px;}
.y1df{bottom:895.200000px;}
.y65{bottom:897.450000px;}
.y7{bottom:898.980000px;}
.yf3{bottom:900.240000px;}
.y168{bottom:902.310000px;}
.y93{bottom:905.460000px;}
.yb8{bottom:908.430000px;}
.y37{bottom:910.860000px;}
.y1c0{bottom:911.220000px;}
.y194{bottom:911.670000px;}
.y64{bottom:915.000000px;}
.y6{bottom:916.980000px;}
.y167{bottom:919.950000px;}
.y1de{bottom:921.840000px;}
.y92{bottom:923.100000px;}
.yf2{bottom:926.880000px;}
.y141{bottom:927.600000px;}
.y36{bottom:928.410000px;}
.y1bf{bottom:928.860000px;}
.y193{bottom:929.220000px;}
.y63{bottom:932.550000px;}
.ybe{bottom:935.790000px;}
.y166{bottom:937.500000px;}
.y1dd{bottom:939.390000px;}
.y119{bottom:945.600000px;}
.y35{bottom:945.960000px;}
.y1be{bottom:946.410000px;}
.y192{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.y91{bottom:949.650000px;}
.y62{bottom:950.190000px;}
.y142{bottom:954.870000px;}
.y165{bottom:955.140000px;}
.yf0{bottom:959.820000px;}
.ybd{bottom:963.150000px;}
.y191{bottom:964.410000px;}
.y1dc{bottom:966.030000px;}
.y61{bottom:967.740000px;}
.y164{bottom:972.690000px;}
.y34{bottom:981.600000px;}
.y190{bottom:981.960000px;}
.y13b{bottom:982.230000px;}
.y8b{bottom:982.680000px;}
.yf1{bottom:984.120000px;}
.y60{bottom:985.290000px;}
.y4{bottom:987.630000px;}
.y163{bottom:990.240000px;}
.ybc{bottom:990.510000px;}
.y1db{bottom:992.580000px;}
.y33{bottom:999.150000px;}
.y18f{bottom:999.600000px;}
.y162{bottom:1007.880000px;}
.yeb{bottom:1008.510000px;}
.y13f{bottom:1009.590000px;}
.y90{bottom:1009.980000px;}
.y1da{bottom:1010.160000px;}
.y3{bottom:1012.320000px;}
.y32{bottom:1016.820000px;}
.y18e{bottom:1017.180000px;}
.ybb{bottom:1017.810000px;}
.y5f{bottom:1020.960000px;}
.yee{bottom:1032.840000px;}
.y31{bottom:1034.370000px;}
.y18d{bottom:1034.820000px;}
.y1d9{bottom:1036.800000px;}
.y13e{bottom:1036.890000px;}
.y8f{bottom:1037.340000px;}
.y161{bottom:1042.740000px;}
.yba{bottom:1045.170000px;}
.y30{bottom:1051.920000px;}
.y18c{bottom:1052.370000px;}
.y160{bottom:1054.890000px;}
.y5e{bottom:1056.870000px;}
.yed{bottom:1057.140000px;}
.y1d8{bottom:1063.710000px;}
.y13d{bottom:1064.250000px;}
.y8e{bottom:1064.700000px;}
.y2f{bottom:1069.560000px;}
.y18b{bottom:1069.920000px;}
.yb7{bottom:1072.530000px;}
.yea{bottom:1081.530000px;}
.y15f{bottom:1082.250000px;}
.y2e{bottom:1087.110000px;}
.y18a{bottom:1087.560000px;}
.y13a{bottom:1091.610000px;}
.y89{bottom:1091.970000px;}
.yb6{bottom:1099.890000px;}
.y5d{bottom:1105.110000px;}
.ye9{bottom:1105.830000px;}
.y15e{bottom:1109.610000px;}
.y1d7{bottom:1111.950000px;}
.y2d{bottom:1122.750000px;}
.yb5{bottom:1127.160000px;}
.ye8{bottom:1130.220000px;}
.y1d6{bottom:1138.860000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h1a{height:23.580000px;}
.h1d{height:23.610000px;}
.h1e{height:23.670000px;}
.ha{height:26.550000px;}
.h19{height:26.580000px;}
.hc{height:26.640000px;}
.h14{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h2e{height:40.539023px;}
.h25{height:44.100000px;}
.h27{height:44.190000px;}
.hf{height:44.220000px;}
.h1b{height:47.880000px;}
.h15{height:48.690000px;}
.h7{height:50.902383px;}
.hb{height:53.910000px;}
.h29{height:54.000000px;}
.h5{height:55.779258px;}
.h1f{height:59.004492px;}
.h26{height:61.740000px;}
.h2f{height:61.793886px;}
.h11{height:61.830000px;}
.h9{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h2d{height:71.550000px;}
.h22{height:72.210000px;}
.h2c{height:81.180000px;}
.h28{height:81.270000px;}
.h21{height:96.570000px;}
.h20{height:96.660000px;}
.h17{height:108.540000px;}
.h12{height:108.570000px;}
.h16{height:108.630000px;}
.h2a{height:108.660000px;}
.he{height:153.570000px;}
.hd{height:163.260000px;}
.h18{height:163.290000px;}
.h1c{height:193.980000px;}
.h13{height:212.700000px;}
.h10{height:217.980000px;}
.h23{height:218.010000px;}
.h2b{height:272.610000px;}
.h24{height:278.460000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1c{width:46.920000px;}
.w20{width:51.750000px;}
.w22{width:80.820000px;}
.w18{width:81.000000px;}
.w1b{width:88.110000px;}
.w17{width:88.470000px;}
.w5{width:88.500000px;}
.wf{width:88.560000px;}
.wa{width:88.590000px;}
.wb{width:92.880000px;}
.w6{width:92.970000px;}
.w13{width:93.780000px;}
.wc{width:100.620000px;}
.w21{width:103.890000px;}
.w14{width:108.000000px;}
.w7{width:112.680000px;}
.w10{width:114.660000px;}
.w19{width:119.640000px;}
.w9{width:119.790000px;}
.w1a{width:124.830000px;}
.w1e{width:128.340000px;}
.w3{width:129.720000px;}
.w8{width:130.320000px;}
.w15{width:138.360000px;}
.w1f{width:153.360000px;}
.w1d{width:162.270000px;}
.w11{width:214.950000px;}
.we{width:215.040000px;}
.wd{width:241.590000px;}
.w12{width:247.530000px;}
.w4{width:265.230000px;}
.w16{width:273.450000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.650000px;}
.x1{left:68.040000px;}
.x16{left:98.190000px;}
.x4{left:100.530000px;}
.x25{left:111.239987px;}
.x1b{left:150.570000px;}
.xa{left:179.040000px;}
.x2{left:202.799987px;}
.x6{left:231.060000px;}
.x17{left:237.270000px;}
.x21{left:250.590000px;}
.x1c{left:270.930000px;}
.x12{left:284.430000px;}
.xb{left:310.080000px;}
.x20{left:332.849987px;}
.x1d{left:396.480000px;}
.x22{left:404.670000px;}
.xc{left:430.590000px;}
.x23{left:457.230000px;}
.x1e{left:485.400000px;}
.x7{left:497.100000px;}
.x18{left:511.440000px;}
.xd{left:519.900000px;}
.xf{left:526.830000px;}
.x13{left:532.680000px;}
.x24{left:561.840000px;}
.x8{left:586.320000px;}
.x19{left:600.720000px;}
.xe{left:613.590000px;}
.x10{left:616.110000px;}
.x14{left:621.960000px;}
.x9{left:680.010000px;}
.x1a{left:694.410000px;}
.x1f{left:696.120000px;}
.x11{left:709.800000px;}
.x15{left:716.460000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls19{letter-spacing:-11.733333pt;}
.ls27{letter-spacing:-0.456533pt;}
.ls1f{letter-spacing:-0.276267pt;}
.ls18{letter-spacing:-0.216533pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls28{letter-spacing:-0.146133pt;}
.lsd{letter-spacing:-0.142933pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls16{letter-spacing:-0.111467pt;}
.lse{letter-spacing:-0.107733pt;}
.ls25{letter-spacing:-0.083200pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls20{letter-spacing:-0.069333pt;}
.ls21{letter-spacing:-0.060800pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls26{letter-spacing:-0.020800pt;}
.ls1b{letter-spacing:-0.009920pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.065920pt;}
.ls1e{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.081920pt;}
.ls2f{letter-spacing:0.082133pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls24{letter-spacing:0.096533pt;}
.ls23{letter-spacing:0.102933pt;}
.ls1d{letter-spacing:0.103467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.142933pt;}
.ls13{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls17{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls2d{letter-spacing:0.723200pt;}
.ls29{letter-spacing:1.683200pt;}
.ls2c{letter-spacing:4.563200pt;}
.ls5{letter-spacing:6.803200pt;}
.ls2e{letter-spacing:7.763200pt;}
.ls2a{letter-spacing:10.643200pt;}
.ls31{letter-spacing:42.423680pt;}
.ls30{letter-spacing:71.863680pt;}
.ws14{word-spacing:-53.440000pt;}
.ws6{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws1e{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws18{word-spacing:-11.899733pt;}
.ws15{word-spacing:-11.860267pt;}
.ws19{word-spacing:-11.859733pt;}
.ws1a{word-spacing:-11.853333pt;}
.ws12{word-spacing:-11.844267pt;}
.ws10{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.746880pt;}
.ws1b{word-spacing:-11.736000pt;}
.ws7{word-spacing:-11.698133pt;}
.ws17{word-spacing:-11.696000pt;}
.ws16{word-spacing:-11.687467pt;}
.wsc{word-spacing:-11.645333pt;}
.wsb{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.613867pt;}
.ws1d{word-spacing:-11.610667pt;}
.wsa{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.540267pt;}
.ws1c{word-spacing:-11.300267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws13{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._14{margin-left:-11.975040pt;}
._d{margin-left:-5.476695pt;}
._f{margin-left:-4.553706pt;}
._e{margin-left:-2.936854pt;}
._c{margin-left:-1.977066pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.892959pt;}
._5{width:2.389015pt;}
._9{width:3.901334pt;}
._a{width:5.439782pt;}
._6{width:7.000533pt;}
._7{width:7.962667pt;}
._b{width:9.137813pt;}
._4{width:10.125120pt;}
._11{width:12.932480pt;}
._1d{width:13.894400pt;}
._10{width:14.963200pt;}
._17{width:16.627840pt;}
._18{width:18.001280pt;}
._8{width:19.024533pt;}
._1e{width:21.137920pt;}
._1f{width:22.075733pt;}
._15{width:26.677162pt;}
._2{width:27.589184pt;}
._1{width:28.554347pt;}
._16{width:29.509760pt;}
._12{width:37.622507pt;}
._20{width:48.817280pt;}
._1b{width:66.693120pt;}
._1c{width:84.916160pt;}
._13{width:99.772480pt;}
._19{width:112.463360pt;}
._1a{width:144.608640pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ycf{bottom:5.600000pt;}
.yef{bottom:5.626667pt;}
.yd9{bottom:5.680000pt;}
.ydd{bottom:5.840000pt;}
.y6b{bottom:6.960000pt;}
.y140{bottom:6.986667pt;}
.y6f{bottom:7.040000pt;}
.y11a{bottom:22.560000pt;}
.y7c{bottom:22.640000pt;}
.ya8{bottom:26.640000pt;}
.yd1{bottom:27.200000pt;}
.y6d{bottom:31.280000pt;}
.y128{bottom:31.360000pt;}
.y11c{bottom:38.240000pt;}
.y8a{bottom:38.320000pt;}
.y15d{bottom:46.960000pt;}
.yec{bottom:48.826667pt;}
.ye4{bottom:54.800000pt;}
.y14f{bottom:55.520000pt;}
.y122{bottom:55.600000pt;}
.y8d{bottom:64.266667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.ye3{bottom:70.480000pt;}
.ydf{bottom:70.560000pt;}
.yb1{bottom:79.840000pt;}
.y8c{bottom:79.866667pt;}
.yaa{bottom:79.920000pt;}
.y13c{bottom:79.946667pt;}
.y1{bottom:90.346667pt;}
.y1d5{bottom:101.386667pt;}
.ye2{bottom:105.386667pt;}
.y1bd{bottom:105.466667pt;}
.y15c{bottom:106.826667pt;}
.y5c{bottom:107.706667pt;}
.y189{bottom:111.386667pt;}
.y115{bottom:112.826667pt;}
.y10f{bottom:117.626667pt;}
.yb0{bottom:118.106667pt;}
.y78{bottom:119.866667pt;}
.y1bc{bottom:121.066667pt;}
.y5b{bottom:123.306667pt;}
.y29{bottom:125.546667pt;}
.y88{bottom:125.626667pt;}
.ye7{bottom:126.986667pt;}
.y71{bottom:128.480000pt;}
.yb9{bottom:128.506667pt;}
.y15b{bottom:131.146667pt;}
.y1d4{bottom:132.986667pt;}
.y1bb{bottom:136.746667pt;}
.y5a{bottom:138.906667pt;}
.y28{bottom:141.146667pt;}
.y114{bottom:141.946667pt;}
.yb4{bottom:142.426667pt;}
.y188{bottom:142.666667pt;}
.ye6{bottom:148.666667pt;}
.y7e{bottom:149.946667pt;}
.y27{bottom:156.746667pt;}
.y1d3{bottom:156.906667pt;}
.yd4{bottom:157.066667pt;}
.y139{bottom:158.266667pt;}
.y80{bottom:161.440000pt;}
.y59{bottom:162.586667pt;}
.y113{bottom:166.266667pt;}
.yb3{bottom:166.666667pt;}
.y1ba{bottom:168.346667pt;}
.ye5{bottom:170.266667pt;}
.y15a{bottom:171.066667pt;}
.y26{bottom:172.426667pt;}
.y187{bottom:173.946667pt;}
.y87{bottom:174.266667pt;}
.y7f{bottom:177.120000pt;}
.y105{bottom:177.146667pt;}
.y1b9{bottom:183.946667pt;}
.y25{bottom:188.026667pt;}
.y186{bottom:189.546667pt;}
.y1d2{bottom:189.786667pt;}
.y138{bottom:189.946667pt;}
.y112{bottom:190.586667pt;}
.yb2{bottom:190.986667pt;}
.yde{bottom:191.866667pt;}
.y58{bottom:194.186667pt;}
.y86{bottom:198.586667pt;}
.y1b8{bottom:199.626667pt;}
.y24{bottom:203.706667pt;}
.y185{bottom:205.146667pt;}
.y1d1{bottom:205.466667pt;}
.y57{bottom:209.866667pt;}
.y159{bottom:210.986667pt;}
.y118{bottom:211.280000pt;}
.ye1{bottom:213.546667pt;}
.y111{bottom:214.826667pt;}
.y1b7{bottom:215.226667pt;}
.yae{bottom:215.306667pt;}
.y23{bottom:219.306667pt;}
.y137{bottom:221.546667pt;}
.y85{bottom:222.826667pt;}
.y56{bottom:225.466667pt;}
.y144{bottom:225.680000pt;}
.y1d0{bottom:229.386667pt;}
.y1b6{bottom:230.826667pt;}
.y117{bottom:230.880000pt;}
.y22{bottom:234.906667pt;}
.ye0{bottom:235.146667pt;}
.y158{bottom:235.306667pt;}
.y184{bottom:236.826667pt;}
.y136{bottom:237.146667pt;}
.y1fb{bottom:238.426667pt;}
.y110{bottom:239.146667pt;}
.yaf{bottom:239.546667pt;}
.y55{bottom:241.066667pt;}
.y1b5{bottom:246.506667pt;}
.y84{bottom:247.146667pt;}
.y21{bottom:250.586667pt;}
.y183{bottom:252.426667pt;}
.y135{bottom:252.826667pt;}
.y1fa{bottom:254.026667pt;}
.y54{bottom:256.746667pt;}
.y157{bottom:259.626667pt;}
.y1b4{bottom:262.106667pt;}
.y1cf{bottom:262.586667pt;}
.y10d{bottom:263.466667pt;}
.ya9{bottom:263.866667pt;}
.y182{bottom:268.106667pt;}
.y134{bottom:268.426667pt;}
.y1f9{bottom:269.706667pt;}
.y83{bottom:271.466667pt;}
.y20{bottom:274.506667pt;}
.y1b3{bottom:277.786667pt;}
.yd3{bottom:278.426667pt;}
.y53{bottom:280.666667pt;}
.y181{bottom:283.706667pt;}
.y133{bottom:284.106667pt;}
.y10e{bottom:287.786667pt;}
.yad{bottom:288.186667pt;}
.y1f8{bottom:293.306667pt;}
.y1b2{bottom:293.386667pt;}
.y82{bottom:295.786667pt;}
.y180{bottom:299.306667pt;}
.y156{bottom:299.546667pt;}
.y132{bottom:299.706667pt;}
.ydc{bottom:300.026667pt;}
.y1ce{bottom:305.466667pt;}
.y1b1{bottom:308.986667pt;}
.y104{bottom:312.026667pt;}
.yac{bottom:312.506667pt;}
.y17f{bottom:314.986667pt;}
.y131{bottom:315.306667pt;}
.y1f{bottom:317.706667pt;}
.y81{bottom:320.026667pt;}
.y1cd{bottom:321.066667pt;}
.ydb{bottom:321.706667pt;}
.y52{bottom:323.546667pt;}
.y155{bottom:323.866667pt;}
.y1b0{bottom:324.666667pt;}
.y17e{bottom:330.586667pt;}
.y130{bottom:330.986667pt;}
.y1f7{bottom:332.586667pt;}
.y10c{bottom:336.346667pt;}
.yab{bottom:336.746667pt;}
.y51{bottom:339.146667pt;}
.y1af{bottom:340.266667pt;}
.yda{bottom:343.306667pt;}
.y77{bottom:344.346667pt;}
.y17d{bottom:346.266667pt;}
.y12f{bottom:346.586667pt;}
.y154{bottom:348.106667pt;}
.y1f6{bottom:348.186667pt;}
.y1e{bottom:350.586667pt;}
.y1cc{bottom:352.346667pt;}
.y50{bottom:354.826667pt;}
.y1ae{bottom:355.946667pt;}
.y10b{bottom:360.666667pt;}
.ya1{bottom:361.066667pt;}
.y17c{bottom:361.866667pt;}
.y12e{bottom:362.266667pt;}
.yd8{bottom:364.906667pt;}
.y1d{bottom:366.266667pt;}
.y1cb{bottom:367.946667pt;}
.y7d{bottom:368.666667pt;}
.y4f{bottom:370.426667pt;}
.y1f5{bottom:371.866667pt;}
.y17b{bottom:377.466667pt;}
.y12d{bottom:377.866667pt;}
.y1c{bottom:381.866667pt;}
.y1ca{bottom:383.626667pt;}
.y10a{bottom:384.906667pt;}
.y4e{bottom:386.106667pt;}
.yd7{bottom:386.586667pt;}
.y1f4{bottom:387.466667pt;}
.y1ad{bottom:387.546667pt;}
.y7b{bottom:392.906667pt;}
.y17a{bottom:393.146667pt;}
.y12c{bottom:393.466667pt;}
.y1b{bottom:397.466667pt;}
.y1c9{bottom:399.226667pt;}
.y4d{bottom:401.706667pt;}
.y1ac{bottom:403.146667pt;}
.ya7{bottom:404.986667pt;}
.y153{bottom:407.066667pt;}
.yd6{bottom:408.186667pt;}
.y179{bottom:408.746667pt;}
.y12b{bottom:409.146667pt;}
.y109{bottom:409.226667pt;}
.y1f3{bottom:411.066667pt;}
.y1a{bottom:413.146667pt;}
.y1c8{bottom:414.906667pt;}
.y4c{bottom:417.306667pt;}
.y1ab{bottom:418.853333pt;}
.y178{bottom:424.453333pt;}
.y1f2{bottom:426.773333pt;}
.y19{bottom:428.773333pt;}
.ya6{bottom:429.333333pt;}
.yd5{bottom:429.893333pt;}
.y1c7{bottom:430.533333pt;}
.y152{bottom:430.693333pt;}
.y12a{bottom:432.773333pt;}
.y7a{bottom:432.933333pt;}
.y108{bottom:433.573333pt;}
.y1aa{bottom:434.453333pt;}
.y18{bottom:444.373333pt;}
.y1c6{bottom:446.133333pt;}
.y177{bottom:448.373333pt;}
.y4b{bottom:449.013333pt;}
.y1a9{bottom:450.133333pt;}
.y1f1{bottom:450.373333pt;}
.yd0{bottom:451.493333pt;}
.ya5{bottom:453.653333pt;}
.y79{bottom:457.173333pt;}
.y107{bottom:457.893333pt;}
.y17{bottom:460.053333pt;}
.y1c5{bottom:461.813333pt;}
.y127{bottom:462.053333pt;}
.y4a{bottom:464.613333pt;}
.y1a8{bottom:465.733333pt;}
.y1f0{bottom:466.053333pt;}
.yd2{bottom:473.093333pt;}
.y16{bottom:475.653333pt;}
.ya4{bottom:477.893333pt;}
.y49{bottom:480.293333pt;}
.y1a7{bottom:481.333333pt;}
.y70{bottom:481.493333pt;}
.y106{bottom:482.133333pt;}
.y151{bottom:484.293333pt;}
.y1c4{bottom:485.733333pt;}
.y129{bottom:486.373333pt;}
.y176{bottom:488.933333pt;}
.y1ef{bottom:489.653333pt;}
.y15{bottom:491.333333pt;}
.yce{bottom:494.773333pt;}
.y48{bottom:495.893333pt;}
.y1a6{bottom:497.013333pt;}
.ya3{bottom:502.213333pt;}
.y1ee{bottom:505.253333pt;}
.y76{bottom:505.813333pt;}
.y103{bottom:506.453333pt;}
.y14{bottom:506.933333pt;}
.y150{bottom:508.613333pt;}
.y125{bottom:510.693333pt;}
.y1a5{bottom:512.613333pt;}
.y175{bottom:513.253333pt;}
.y13{bottom:522.533333pt;}
.ya2{bottom:526.533333pt;}
.y47{bottom:527.493333pt;}
.y1c3{bottom:528.613333pt;}
.y1ed{bottom:528.933333pt;}
.y75{bottom:530.053333pt;}
.y14d{bottom:532.933333pt;}
.y126{bottom:535.013333pt;}
.ycd{bottom:535.413333pt;}
.y174{bottom:537.493333pt;}
.y12{bottom:538.213333pt;}
.y46{bottom:543.173333pt;}
.y1a4{bottom:544.293333pt;}
.y1ec{bottom:544.533333pt;}
.y102{bottom:549.733333pt;}
.y9f{bottom:550.853333pt;}
.y11{bottom:553.813333pt;}
.y74{bottom:554.373333pt;}
.y14e{bottom:557.253333pt;}
.y45{bottom:558.773333pt;}
.y121{bottom:559.253333pt;}
.y1a3{bottom:559.893333pt;}
.y173{bottom:561.813333pt;}
.ycc{bottom:567.013333pt;}
.y1eb{bottom:568.213333pt;}
.y10{bottom:569.493333pt;}
.y44{bottom:574.453333pt;}
.ya0{bottom:575.093333pt;}
.y1a2{bottom:575.493333pt;}
.y73{bottom:578.693333pt;}
.y101{bottom:581.413333pt;}
.y143{bottom:581.493333pt;}
.ycb{bottom:582.613333pt;}
.y124{bottom:583.573333pt;}
.y1ea{bottom:583.813333pt;}
.yf{bottom:585.093333pt;}
.y172{bottom:586.133333pt;}
.y43{bottom:590.053333pt;}
.y1a1{bottom:591.173333pt;}
.y100{bottom:597.013333pt;}
.yca{bottom:598.293333pt;}
.y9e{bottom:599.413333pt;}
.y72{bottom:603.013333pt;}
.y42{bottom:605.653333pt;}
.y14c{bottom:605.813333pt;}
.y1a0{bottom:606.773333pt;}
.y1e9{bottom:607.413333pt;}
.y123{bottom:607.893333pt;}
.ye{bottom:609.013333pt;}
.yff{bottom:612.613333pt;}
.yc9{bottom:613.893333pt;}
.y19f{bottom:622.453333pt;}
.y1e8{bottom:623.093333pt;}
.y9d{bottom:626.693333pt;}
.y6c{bottom:627.253333pt;}
.yfe{bottom:628.293333pt;}
.y171{bottom:629.413333pt;}
.yc8{bottom:629.573333pt;}
.y14b{bottom:630.133333pt;}
.y116{bottom:632.213333pt;}
.y41{bottom:637.333333pt;}
.y19e{bottom:638.053333pt;}
.yfd{bottom:643.893333pt;}
.y170{bottom:645.013333pt;}
.yc7{bottom:645.173333pt;}
.y1e7{bottom:646.693333pt;}
.y9c{bottom:648.213333pt;}
.y6e{bottom:651.573333pt;}
.yd{bottom:651.893333pt;}
.y40{bottom:652.933333pt;}
.y19d{bottom:653.653333pt;}
.y14a{bottom:654.373333pt;}
.y120{bottom:656.453333pt;}
.yfc{bottom:659.573333pt;}
.yc6{bottom:660.773333pt;}
.y1e6{bottom:662.373333pt;}
.y3f{bottom:668.613333pt;}
.y19c{bottom:669.333333pt;}
.yfb{bottom:675.173333pt;}
.y6a{bottom:675.893333pt;}
.yc5{bottom:676.453333pt;}
.y16f{bottom:676.693333pt;}
.y149{bottom:678.693333pt;}
.y9b{bottom:679.813333pt;}
.y11f{bottom:680.773333pt;}
.yc{bottom:683.733333pt;}
.y3e{bottom:684.213333pt;}
.y19b{bottom:684.933333pt;}
.y1e5{bottom:685.973333pt;}
.yfa{bottom:690.773333pt;}
.yc4{bottom:692.053333pt;}
.y16e{bottom:692.293333pt;}
.y9a{bottom:695.493333pt;}
.y3d{bottom:699.813333pt;}
.y19a{bottom:700.613333pt;}
.y1e4{bottom:701.573333pt;}
.y148{bottom:703.013333pt;}
.yf9{bottom:706.453333pt;}
.yc3{bottom:707.733333pt;}
.y16d{bottom:707.893333pt;}
.y99{bottom:711.093333pt;}
.y3c{bottom:715.493333pt;}
.yb{bottom:715.733333pt;}
.y199{bottom:716.213333pt;}
.y69{bottom:719.173333pt;}
.y11e{bottom:720.693333pt;}
.yf8{bottom:722.053333pt;}
.yc2{bottom:723.333333pt;}
.y16c{bottom:723.573333pt;}
.y1e3{bottom:725.253333pt;}
.y98{bottom:726.693333pt;}
.y147{bottom:727.333333pt;}
.y198{bottom:731.813333pt;}
.yf7{bottom:737.733333pt;}
.yc1{bottom:738.933333pt;}
.y16b{bottom:739.173333pt;}
.y1e2{bottom:740.853333pt;}
.y97{bottom:742.373333pt;}
.y11d{bottom:745.013333pt;}
.y3b{bottom:747.093333pt;}
.y197{bottom:747.493333pt;}
.y68{bottom:750.773333pt;}
.ya{bottom:751.093333pt;}
.y146{bottom:751.573333pt;}
.yf6{bottom:753.333333pt;}
.yc0{bottom:754.613333pt;}
.y16a{bottom:754.853333pt;}
.y1e1{bottom:756.533333pt;}
.y96{bottom:757.973333pt;}
.y3a{bottom:762.693333pt;}
.y196{bottom:763.093333pt;}
.y9{bottom:763.733333pt;}
.y67{bottom:766.453333pt;}
.yf5{bottom:768.933333pt;}
.y169{bottom:770.453333pt;}
.y95{bottom:773.653333pt;}
.y145{bottom:775.893333pt;}
.ybf{bottom:778.213333pt;}
.y39{bottom:778.373333pt;}
.y1c2{bottom:778.693333pt;}
.y1e0{bottom:780.133333pt;}
.y66{bottom:782.053333pt;}
.y8{bottom:783.093333pt;}
.yf4{bottom:784.613333pt;}
.y11b{bottom:784.933333pt;}
.y94{bottom:789.253333pt;}
.y38{bottom:793.973333pt;}
.y1c1{bottom:794.373333pt;}
.y195{bottom:794.693333pt;}
.y1df{bottom:795.733333pt;}
.y65{bottom:797.733333pt;}
.y7{bottom:799.093333pt;}
.yf3{bottom:800.213333pt;}
.y168{bottom:802.053333pt;}
.y93{bottom:804.853333pt;}
.yb8{bottom:807.493333pt;}
.y37{bottom:809.653333pt;}
.y1c0{bottom:809.973333pt;}
.y194{bottom:810.373333pt;}
.y64{bottom:813.333333pt;}
.y6{bottom:815.093333pt;}
.y167{bottom:817.733333pt;}
.y1de{bottom:819.413333pt;}
.y92{bottom:820.533333pt;}
.yf2{bottom:823.893333pt;}
.y141{bottom:824.533333pt;}
.y36{bottom:825.253333pt;}
.y1bf{bottom:825.653333pt;}
.y193{bottom:825.973333pt;}
.y63{bottom:828.933333pt;}
.ybe{bottom:831.813333pt;}
.y166{bottom:833.333333pt;}
.y1dd{bottom:835.013333pt;}
.y119{bottom:840.533333pt;}
.y35{bottom:840.853333pt;}
.y1be{bottom:841.253333pt;}
.y192{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.y91{bottom:844.133333pt;}
.y62{bottom:844.613333pt;}
.y142{bottom:848.773333pt;}
.y165{bottom:849.013333pt;}
.yf0{bottom:853.173333pt;}
.ybd{bottom:856.133333pt;}
.y191{bottom:857.253333pt;}
.y1dc{bottom:858.693333pt;}
.y61{bottom:860.213333pt;}
.y164{bottom:864.613333pt;}
.y34{bottom:872.533333pt;}
.y190{bottom:872.853333pt;}
.y13b{bottom:873.093333pt;}
.y8b{bottom:873.493333pt;}
.yf1{bottom:874.773333pt;}
.y60{bottom:875.813333pt;}
.y4{bottom:877.893333pt;}
.y163{bottom:880.213333pt;}
.ybc{bottom:880.453333pt;}
.y1db{bottom:882.293333pt;}
.y33{bottom:888.133333pt;}
.y18f{bottom:888.533333pt;}
.y162{bottom:895.893333pt;}
.yeb{bottom:896.453333pt;}
.y13f{bottom:897.413333pt;}
.y90{bottom:897.760000pt;}
.y1da{bottom:897.920000pt;}
.y3{bottom:899.840000pt;}
.y32{bottom:903.840000pt;}
.y18e{bottom:904.160000pt;}
.ybb{bottom:904.720000pt;}
.y5f{bottom:907.520000pt;}
.yee{bottom:918.080000pt;}
.y31{bottom:919.440000pt;}
.y18d{bottom:919.840000pt;}
.y1d9{bottom:921.600000pt;}
.y13e{bottom:921.680000pt;}
.y8f{bottom:922.080000pt;}
.y161{bottom:926.880000pt;}
.yba{bottom:929.040000pt;}
.y30{bottom:935.040000pt;}
.y18c{bottom:935.440000pt;}
.y160{bottom:937.680000pt;}
.y5e{bottom:939.440000pt;}
.yed{bottom:939.680000pt;}
.y1d8{bottom:945.520000pt;}
.y13d{bottom:946.000000pt;}
.y8e{bottom:946.400000pt;}
.y2f{bottom:950.720000pt;}
.y18b{bottom:951.040000pt;}
.yb7{bottom:953.360000pt;}
.yea{bottom:961.360000pt;}
.y15f{bottom:962.000000pt;}
.y2e{bottom:966.320000pt;}
.y18a{bottom:966.720000pt;}
.y13a{bottom:970.320000pt;}
.y89{bottom:970.640000pt;}
.yb6{bottom:977.680000pt;}
.y5d{bottom:982.320000pt;}
.ye9{bottom:982.960000pt;}
.y15e{bottom:986.320000pt;}
.y1d7{bottom:988.400000pt;}
.y2d{bottom:998.000000pt;}
.yb5{bottom:1001.920000pt;}
.ye8{bottom:1004.640000pt;}
.y1d6{bottom:1012.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h1a{height:20.960000pt;}
.h1d{height:20.986667pt;}
.h1e{height:21.040000pt;}
.ha{height:23.600000pt;}
.h19{height:23.626667pt;}
.hc{height:23.680000pt;}
.h14{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h2e{height:36.034687pt;}
.h25{height:39.200000pt;}
.h27{height:39.280000pt;}
.hf{height:39.306667pt;}
.h1b{height:42.560000pt;}
.h15{height:43.280000pt;}
.h7{height:45.246562pt;}
.hb{height:47.920000pt;}
.h29{height:48.000000pt;}
.h5{height:49.581562pt;}
.h1f{height:52.448437pt;}
.h26{height:54.880000pt;}
.h2f{height:54.927899pt;}
.h11{height:54.960000pt;}
.h9{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h2d{height:63.600000pt;}
.h22{height:64.186667pt;}
.h2c{height:72.160000pt;}
.h28{height:72.240000pt;}
.h21{height:85.840000pt;}
.h20{height:85.920000pt;}
.h17{height:96.480000pt;}
.h12{height:96.506667pt;}
.h16{height:96.560000pt;}
.h2a{height:96.586667pt;}
.he{height:136.506667pt;}
.hd{height:145.120000pt;}
.h18{height:145.146667pt;}
.h1c{height:172.426667pt;}
.h13{height:189.066667pt;}
.h10{height:193.760000pt;}
.h23{height:193.786667pt;}
.h2b{height:242.320000pt;}
.h24{height:247.520000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1c{width:41.706667pt;}
.w20{width:46.000000pt;}
.w22{width:71.840000pt;}
.w18{width:72.000000pt;}
.w1b{width:78.320000pt;}
.w17{width:78.640000pt;}
.w5{width:78.666667pt;}
.wf{width:78.720000pt;}
.wa{width:78.746667pt;}
.wb{width:82.560000pt;}
.w6{width:82.640000pt;}
.w13{width:83.360000pt;}
.wc{width:89.440000pt;}
.w21{width:92.346667pt;}
.w14{width:96.000000pt;}
.w7{width:100.160000pt;}
.w10{width:101.920000pt;}
.w19{width:106.346667pt;}
.w9{width:106.480000pt;}
.w1a{width:110.960000pt;}
.w1e{width:114.080000pt;}
.w3{width:115.306667pt;}
.w8{width:115.840000pt;}
.w15{width:122.986667pt;}
.w1f{width:136.320000pt;}
.w1d{width:144.240000pt;}
.w11{width:191.066667pt;}
.we{width:191.146667pt;}
.wd{width:214.746667pt;}
.w12{width:220.026667pt;}
.w4{width:235.760000pt;}
.w16{width:243.066667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.800000pt;}
.x1{left:60.480000pt;}
.x16{left:87.280000pt;}
.x4{left:89.360000pt;}
.x25{left:98.879988pt;}
.x1b{left:133.840000pt;}
.xa{left:159.146667pt;}
.x2{left:180.266655pt;}
.x6{left:205.386667pt;}
.x17{left:210.906667pt;}
.x21{left:222.746667pt;}
.x1c{left:240.826667pt;}
.x12{left:252.826667pt;}
.xb{left:275.626667pt;}
.x20{left:295.866655pt;}
.x1d{left:352.426667pt;}
.x22{left:359.706667pt;}
.xc{left:382.746667pt;}
.x23{left:406.426667pt;}
.x1e{left:431.466667pt;}
.x7{left:441.866667pt;}
.x18{left:454.613333pt;}
.xd{left:462.133333pt;}
.xf{left:468.293333pt;}
.x13{left:473.493333pt;}
.x24{left:499.413333pt;}
.x8{left:521.173333pt;}
.x19{left:533.973333pt;}
.xe{left:545.413333pt;}
.x10{left:547.653333pt;}
.x14{left:552.853333pt;}
.x9{left:604.453333pt;}
.x1a{left:617.253333pt;}
.x1f{left:618.773333pt;}
.x11{left:630.933333pt;}
.x15{left:636.853333pt;}
.x3{left:704.053322pt;}
}




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