
    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_63f725f6e30679aba2567d6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914551;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_61893e75808b99845fa0ac01.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b651e9fec7bb82bb6162f65c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_22b92463c3e4ff48d701836b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914551;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_39878925393eb1d41edfeb64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a777915822278633918c9800.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_474097571b418173fadb7f71.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.702000px;}
.ls8{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.269400px;}
.ls16{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.900000px;}
.ls10{letter-spacing:14.580000px;}
.ls11{letter-spacing:18.180000px;}
.ls14{letter-spacing:25.308000px;}
.ls13{letter-spacing:52.812000px;}
.lsf{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-59.760000px;}
.ws0{word-spacing:-32.940000px;}
.ws6{word-spacing:-19.457280px;}
.ws12{word-spacing:-19.440000px;}
.ws4{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.840000px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.479800px;}
.wsa{word-spacing:-13.860000px;}
.wsb{word-spacing:-13.644000px;}
.wsc{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.392000px;}
.ws13{word-spacing:-12.798000px;}
.ws10{word-spacing:-12.420000px;}
.wse{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.790600px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._9{margin-left:-3.376800px;}
._1{margin-left:-1.404000px;}
._0{width:1.116000px;}
._3{width:2.211120px;}
._4{width:3.224160px;}
._5{width:4.236000px;}
._8{width:5.307360px;}
._b{width:6.872400px;}
._11{width:7.913040px;}
._a{width:8.988960px;}
._d{width:10.422000px;}
._c{width:11.448000px;}
._1e{width:12.492000px;}
._e{width:14.688000px;}
._10{width:16.272000px;}
._17{width:18.144000px;}
._15{width:19.224000px;}
._7{width:20.497680px;}
._6{width:21.513600px;}
._1a{width:22.622400px;}
._f{width:24.192000px;}
._12{width:25.542000px;}
._1f{width:26.838000px;}
._20{width:27.864000px;}
._13{width:29.052000px;}
._14{width:30.312000px;}
._18{width:31.968000px;}
._19{width:33.336000px;}
._1c{width:34.506000px;}
._1b{width:35.856000px;}
._21{width:37.638000px;}
._22{width:38.844000px;}
._16{width:40.068000px;}
._1d{width:43.578000px;}
._26{width:46.908000px;}
._24{width:54.162000px;}
._25{width:78.300000px;}
._23{width:102.342000px;}
._28{width:349.326000px;}
._27{width:365.700000px;}
._2{width:1032.960000px;}
.fc7{color:rgb(0,175,239);}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:2.880000px;}
.fs6{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:131.760000px;}
.fs2{font-size:131.904000px;}
.y3e{bottom:-7.560000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y7{bottom:5.940000px;}
.y9{bottom:6.630000px;}
.y15f{bottom:9.000000px;}
.y165{bottom:9.180000px;}
.y16e{bottom:9.210000px;}
.y11f{bottom:9.720000px;}
.y11d{bottom:9.900000px;}
.y13b{bottom:9.930000px;}
.y146{bottom:14.220000px;}
.y11c{bottom:14.400000px;}
.y4{bottom:15.480000px;}
.y161{bottom:16.920000px;}
.y172{bottom:16.950000px;}
.y164{bottom:17.100000px;}
.y16c{bottom:17.130000px;}
.y2{bottom:18.540000px;}
.y147{bottom:19.620000px;}
.y3d{bottom:19.800000px;}
.y196{bottom:19.980000px;}
.y149{bottom:20.340000px;}
.y162{bottom:24.840000px;}
.y173{bottom:24.870000px;}
.y17a{bottom:24.885000px;}
.y15e{bottom:25.020000px;}
.y16d{bottom:25.050000px;}
.y12d{bottom:27.540000px;}
.y12b{bottom:32.040000px;}
.y11b{bottom:32.220000px;}
.y13a{bottom:32.250000px;}
.y14b{bottom:34.425000px;}
.y5{bottom:39.600000px;}
.y15d{bottom:40.860000px;}
.y3c{bottom:48.630000px;}
.y1{bottom:60.660000px;}
.y3b{bottom:68.610000px;}
.y3a{bottom:88.410000px;}
.y7a{bottom:107.820000px;}
.y39{bottom:108.210000px;}
.y113{bottom:110.880000px;}
.y13d{bottom:111.240000px;}
.y1af{bottom:113.220000px;}
.y193{bottom:115.560000px;}
.yb6{bottom:115.740000px;}
.yd4{bottom:116.640000px;}
.y20b{bottom:117.720000px;}
.y79{bottom:125.640000px;}
.y2d{bottom:126.000000px;}
.y1ae{bottom:131.040000px;}
.y1d5{bottom:131.400000px;}
.y16f{bottom:132.300000px;}
.y192{bottom:133.380000px;}
.yf2{bottom:133.560000px;}
.yb5{bottom:133.740000px;}
.yd3{bottom:134.640000px;}
.y20a{bottom:135.540000px;}
.y38{bottom:137.010000px;}
.y13c{bottom:138.780000px;}
.y112{bottom:143.280000px;}
.y78{bottom:143.640000px;}
.y1ad{bottom:148.860000px;}
.y1d4{bottom:149.400000px;}
.y191{bottom:151.200000px;}
.yf1{bottom:151.380000px;}
.yb4{bottom:151.560000px;}
.y2e{bottom:151.740000px;}
.yd2{bottom:152.460000px;}
.y209{bottom:153.360000px;}
.y37{bottom:156.810000px;}
.y2c{bottom:160.740000px;}
.y111{bottom:161.100000px;}
.y77{bottom:161.460000px;}
.y139{bottom:166.320000px;}
.y1ac{bottom:166.860000px;}
.y1d3{bottom:167.220000px;}
.y190{bottom:169.020000px;}
.yb3{bottom:169.380000px;}
.yd1{bottom:170.280000px;}
.y208{bottom:171.180000px;}
.y16b{bottom:173.700000px;}
.y36{bottom:176.790000px;}
.yf0{bottom:178.230000px;}
.y110{bottom:178.950000px;}
.y76{bottom:179.310000px;}
.y1ab{bottom:184.710000px;}
.y1d2{bottom:185.070000px;}
.y18f{bottom:187.050000px;}
.yb2{bottom:187.230000px;}
.yd0{bottom:188.130000px;}
.y207{bottom:189.030000px;}
.y2b{bottom:195.510000px;}
.yef{bottom:196.050000px;}
.y35{bottom:196.590000px;}
.y10f{bottom:196.950000px;}
.y75{bottom:197.130000px;}
.y1aa{bottom:202.530000px;}
.y1d1{bottom:202.890000px;}
.y18e{bottom:204.870000px;}
.yb1{bottom:205.050000px;}
.ycf{bottom:205.950000px;}
.y206{bottom:206.850000px;}
.yee{bottom:213.870000px;}
.y10e{bottom:214.770000px;}
.y74{bottom:214.950000px;}
.y16a{bottom:215.310000px;}
.y1a9{bottom:220.350000px;}
.y1d0{bottom:220.710000px;}
.y138{bottom:221.610000px;}
.yce{bottom:223.950000px;}
.y205{bottom:224.850000px;}
.y34{bottom:225.390000px;}
.y2a{bottom:230.430000px;}
.y18d{bottom:231.690000px;}
.yb0{bottom:231.870000px;}
.y10d{bottom:232.590000px;}
.y73{bottom:232.950000px;}
.y1a8{bottom:238.170000px;}
.y1cf{bottom:238.530000px;}
.y137{bottom:239.430000px;}
.ycd{bottom:241.770000px;}
.y204{bottom:242.670000px;}
.y33{bottom:245.190000px;}
.y18c{bottom:249.510000px;}
.yed{bottom:249.690000px;}
.yaf{bottom:249.870000px;}
.y72{bottom:250.770000px;}
.y1a7{bottom:256.170000px;}
.y1ce{bottom:256.530000px;}
.y169{bottom:256.710000px;}
.y10c{bottom:259.410000px;}
.ycc{bottom:259.590000px;}
.y203{bottom:260.490000px;}
.y32{bottom:264.990000px;}
.y29{bottom:265.170000px;}
.y136{bottom:266.250000px;}
.y18b{bottom:267.330000px;}
.yec{bottom:267.510000px;}
.yae{bottom:267.690000px;}
.y71{bottom:268.590000px;}
.y1a6{bottom:273.990000px;}
.y1cd{bottom:274.350000px;}
.y10b{bottom:277.230000px;}
.ycb{bottom:277.410000px;}
.y202{bottom:278.310000px;}
.y31{bottom:285.015000px;}
.y18a{bottom:285.150000px;}
.yeb{bottom:285.330000px;}
.yad{bottom:285.510000px;}
.y70{bottom:286.410000px;}
.y1a5{bottom:291.810000px;}
.y135{bottom:293.250000px;}
.y10a{bottom:295.050000px;}
.yca{bottom:295.230000px;}
.y201{bottom:296.130000px;}
.y168{bottom:298.290000px;}
.y27{bottom:299.910000px;}
.y1cc{bottom:301.170000px;}
.yea{bottom:303.150000px;}
.yac{bottom:303.330000px;}
.y6f{bottom:304.230000px;}
.y30{bottom:304.815000px;}
.y134{bottom:311.070000px;}
.yc9{bottom:313.050000px;}
.y200{bottom:314.130000px;}
.y1cb{bottom:318.990000px;}
.y189{bottom:320.970000px;}
.yab{bottom:321.150000px;}
.y6e{bottom:322.050000px;}
.y1a4{bottom:324.030000px;}
.y109{bottom:330.870000px;}
.yc8{bottom:331.050000px;}
.y1ff{bottom:331.950000px;}
.y26{bottom:334.650000px;}
.y2f{bottom:335.415000px;}
.y1ca{bottom:336.810000px;}
.y133{bottom:337.890000px;}
.y188{bottom:338.790000px;}
.ye9{bottom:338.970000px;}
.yaa{bottom:339.150000px;}
.y167{bottom:339.690000px;}
.y6d{bottom:340.050000px;}
.y28{bottom:340.230000px;}
.y1a3{bottom:347.430000px;}
.y108{bottom:348.690000px;}
.yc7{bottom:348.870000px;}
.y1fe{bottom:349.770000px;}
.y1c9{bottom:354.630000px;}
.y132{bottom:355.710000px;}
.y187{bottom:356.610000px;}
.ye8{bottom:356.790000px;}
.ya9{bottom:356.970000px;}
.y6c{bottom:357.870000px;}
.y107{bottom:366.510000px;}
.yc6{bottom:366.690000px;}
.y1fd{bottom:367.590000px;}
.y25{bottom:369.570000px;}
.y1a2{bottom:370.650000px;}
.y1c8{bottom:372.630000px;}
.y131{bottom:373.530000px;}
.ye7{bottom:374.610000px;}
.ya8{bottom:374.790000px;}
.y6b{bottom:375.690000px;}
.y186{bottom:378.930000px;}
.y166{bottom:381.270000px;}
.y106{bottom:384.330000px;}
.y1fc{bottom:385.410000px;}
.y1a1{bottom:386.490000px;}
.y1c7{bottom:390.450000px;}
.ya7{bottom:392.610000px;}
.y6a{bottom:393.510000px;}
.y130{bottom:396.030000px;}
.ye6{bottom:401.430000px;}
.y24{bottom:401.970000px;}
.y105{bottom:402.330000px;}
.y1fb{bottom:403.230000px;}
.y1c6{bottom:408.270000px;}
.ya6{bottom:410.430000px;}
.y69{bottom:411.330000px;}
.ye5{bottom:419.295000px;}
.y104{bottom:420.195000px;}
.y185{bottom:420.555000px;}
.y1fa{bottom:421.275000px;}
.y163{bottom:422.715000px;}
.y12f{bottom:423.615000px;}
.y1c5{bottom:426.135000px;}
.ya5{bottom:428.295000px;}
.y23{bottom:428.835000px;}
.y68{bottom:429.375000px;}
.ye4{bottom:437.295000px;}
.y103{bottom:438.015000px;}
.y1f9{bottom:439.095000px;}
.y1c4{bottom:443.955000px;}
.ya4{bottom:446.295000px;}
.y67{bottom:447.195000px;}
.y12e{bottom:451.155000px;}
.ye3{bottom:455.115000px;}
.y22{bottom:455.655000px;}
.y102{bottom:455.835000px;}
.y1f8{bottom:456.915000px;}
.y184{bottom:461.955000px;}
.ya3{bottom:464.115000px;}
.y160{bottom:464.295000px;}
.yc5{bottom:465.015000px;}
.ye2{bottom:472.935000px;}
.y66{bottom:474.015000px;}
.y1f7{bottom:474.735000px;}
.y12c{bottom:478.875000px;}
.ya2{bottom:481.935000px;}
.y21{bottom:482.475000px;}
.y101{bottom:482.655000px;}
.yc4{bottom:482.835000px;}
.y1c3{bottom:488.775000px;}
.ye1{bottom:490.755000px;}
.y65{bottom:491.835000px;}
.y1f6{bottom:492.555000px;}
.ya1{bottom:499.755000px;}
.y100{bottom:500.475000px;}
.yc3{bottom:500.655000px;}
.y183{bottom:503.535000px;}
.y15c{bottom:505.695000px;}
.y1c2{bottom:506.595000px;}
.ye0{bottom:508.575000px;}
.y20{bottom:509.475000px;}
.y64{bottom:509.655000px;}
.y1f5{bottom:510.555000px;}
.ya0{bottom:517.575000px;}
.yc2{bottom:518.475000px;}
.y12a{bottom:524.235000px;}
.y1c1{bottom:524.415000px;}
.ydf{bottom:526.575000px;}
.y63{bottom:527.475000px;}
.y1f4{bottom:528.375000px;}
.y9f{bottom:535.575000px;}
.y1f{bottom:536.295000px;}
.y220{bottom:537.915000px;}
.y1c0{bottom:542.235000px;}
.yde{bottom:544.395000px;}
.y182{bottom:544.935000px;}
.y62{bottom:545.475000px;}
.y1f3{bottom:546.195000px;}
.y9e{bottom:553.395000px;}
.y21f{bottom:553.575000px;}
.yff{bottom:554.115000px;}
.y1bf{bottom:560.055000px;}
.ydd{bottom:562.215000px;}
.y61{bottom:563.295000px;}
.y1f2{bottom:564.015000px;}
.y1e{bottom:564.195000px;}
.y15b{bottom:568.335000px;}
.y9d{bottom:571.215000px;}
.y21e{bottom:571.395000px;}
.yfe{bottom:571.935000px;}
.y1be{bottom:578.055000px;}
.y129{bottom:579.495000px;}
.ydc{bottom:580.035000px;}
.y60{bottom:581.115000px;}
.y1f1{bottom:581.835000px;}
.y181{bottom:586.515000px;}
.y9c{bottom:589.035000px;}
.y21d{bottom:589.215000px;}
.y1d{bottom:590.475000px;}
.y15a{bottom:595.155000px;}
.y1bd{bottom:595.875000px;}
.y128{bottom:597.315000px;}
.ydb{bottom:597.855000px;}
.yfd{bottom:598.755000px;}
.y5f{bottom:598.935000px;}
.y1f0{bottom:599.655000px;}
.y9b{bottom:606.855000px;}
.y21c{bottom:607.035000px;}
.y159{bottom:613.155000px;}
.yda{bottom:615.675000px;}
.y5e{bottom:616.755000px;}
.y1ef{bottom:617.655000px;}
.y1c{bottom:621.255000px;}
.y1bc{bottom:622.695000px;}
.y127{bottom:624.135000px;}
.y9a{bottom:624.675000px;}
.y21b{bottom:624.855000px;}
.y180{bottom:627.915000px;}
.y158{bottom:630.975000px;}
.yfc{bottom:634.575000px;}
.y5d{bottom:634.755000px;}
.y1ee{bottom:635.475000px;}
.y1bb{bottom:640.515000px;}
.y126{bottom:641.955000px;}
.y99{bottom:642.675000px;}
.y157{bottom:648.795000px;}
.yfb{bottom:652.395000px;}
.y5c{bottom:652.575000px;}
.y1ed{bottom:653.295000px;}
.y125{bottom:659.805000px;}
.y98{bottom:660.525000px;}
.y21a{bottom:660.705000px;}
.y156{bottom:666.645000px;}
.y17f{bottom:669.525000px;}
.y1ba{bottom:669.885000px;}
.yfa{bottom:670.245000px;}
.y5b{bottom:670.425000px;}
.y1ec{bottom:671.145000px;}
.y1b{bottom:676.185000px;}
.y124{bottom:677.805000px;}
.y97{bottom:678.345000px;}
.y219{bottom:678.525000px;}
.y155{bottom:684.465000px;}
.y1b9{bottom:687.705000px;}
.yf9{bottom:688.065000px;}
.y5a{bottom:688.245000px;}
.y1eb{bottom:688.965000px;}
.y123{bottom:695.625000px;}
.y96{bottom:696.165000px;}
.y218{bottom:696.345000px;}
.y154{bottom:702.285000px;}
.yf8{bottom:705.885000px;}
.y59{bottom:706.065000px;}
.y1a{bottom:706.965000px;}
.y17e{bottom:710.925000px;}
.yd9{bottom:713.985000px;}
.y217{bottom:714.165000px;}
.y1b8{bottom:717.045000px;}
.y122{bottom:717.945000px;}
.y153{bottom:720.285000px;}
.y95{bottom:722.985000px;}
.y58{bottom:723.885000px;}
.y1ea{bottom:724.785000px;}
.yd8{bottom:731.805000px;}
.y216{bottom:731.985000px;}
.y152{bottom:738.105000px;}
.y94{bottom:740.805000px;}
.y57{bottom:741.885000px;}
.y1e9{bottom:742.605000px;}
.y1b7{bottom:743.865000px;}
.yf7{bottom:744.045000px;}
.y121{bottom:745.485000px;}
.y19{bottom:749.805000px;}
.y17d{bottom:752.505000px;}
.y151{bottom:755.925000px;}
.y93{bottom:758.805000px;}
.y56{bottom:759.705000px;}
.y1e8{bottom:760.425000px;}
.y215{bottom:767.805000px;}
.y1b6{bottom:770.865000px;}
.y120{bottom:773.205000px;}
.y150{bottom:773.745000px;}
.yf6{bottom:776.445000px;}
.y92{bottom:776.625000px;}
.y55{bottom:777.525000px;}
.y1e7{bottom:778.245000px;}
.y214{bottom:785.625000px;}
.y1a0{bottom:787.785000px;}
.y1b5{bottom:788.685000px;}
.y17c{bottom:793.905000px;}
.yf5{bottom:794.265000px;}
.y91{bottom:794.445000px;}
.y54{bottom:795.345000px;}
.y1e6{bottom:796.065000px;}
.y18{bottom:800.385000px;}
.y14f{bottom:800.565000px;}
.y11e{bottom:800.745000px;}
.y213{bottom:803.445000px;}
.yc1{bottom:804.345000px;}
.y19f{bottom:805.785000px;}
.y1b4{bottom:806.505000px;}
.y90{bottom:812.265000px;}
.y53{bottom:813.165000px;}
.y1e5{bottom:814.065000px;}
.y14e{bottom:818.565000px;}
.yf4{bottom:821.085000px;}
.y212{bottom:821.265000px;}
.yc0{bottom:822.165000px;}
.y19e{bottom:823.605000px;}
.y1b3{bottom:824.325000px;}
.y17{bottom:828.285000px;}
.y8f{bottom:830.085000px;}
.y52{bottom:830.985000px;}
.y1e4{bottom:831.885000px;}
.y17b{bottom:835.485000px;}
.yf3{bottom:839.085000px;}
.ybf{bottom:839.985000px;}
.y14d{bottom:840.885000px;}
.y19d{bottom:841.425000px;}
.y8e{bottom:848.085000px;}
.y1e3{bottom:849.705000px;}
.y1b2{bottom:851.145000px;}
.y211{bottom:857.085000px;}
.y51{bottom:857.985000px;}
.y19c{bottom:859.245000px;}
.y8d{bottom:865.905000px;}
.y14a{bottom:868.425000px;}
.y1e2{bottom:869.865000px;}
.y14c{bottom:871.845000px;}
.y16{bottom:874.005000px;}
.y210{bottom:874.905000px;}
.y50{bottom:875.805000px;}
.y179{bottom:876.885000px;}
.y19b{bottom:877.065000px;}
.y1b1{bottom:878.145000px;}
.y11a{bottom:883.545000px;}
.y8c{bottom:883.725000px;}
.y20f{bottom:892.725000px;}
.y4f{bottom:893.625000px;}
.y15{bottom:899.385000px;}
.y119{bottom:901.410000px;}
.y8b{bottom:901.590000px;}
.y1e1{bottom:902.310000px;}
.y1b0{bottom:903.030000px;}
.y19a{bottom:904.110000px;}
.y20e{bottom:910.590000px;}
.y4e{bottom:911.490000px;}
.y178{bottom:918.510000px;}
.y14{bottom:919.230000px;}
.y8a{bottom:919.410000px;}
.y1e0{bottom:920.310000px;}
.y148{bottom:920.670000px;}
.y118{bottom:928.230000px;}
.y20d{bottom:928.410000px;}
.y4d{bottom:929.310000px;}
.y199{bottom:930.930000px;}
.y89{bottom:937.230000px;}
.y1df{bottom:938.130000px;}
.y13{bottom:939.210000px;}
.y117{bottom:946.230000px;}
.y4c{bottom:947.310000px;}
.y88{bottom:955.230000px;}
.y1de{bottom:955.950000px;}
.y12{bottom:959.010000px;}
.y177{bottom:959.910000px;}
.y198{bottom:963.150000px;}
.y116{bottom:964.050000px;}
.y20c{bottom:964.230000px;}
.y4b{bottom:965.130000px;}
.y87{bottom:973.050000px;}
.y11{bottom:978.810000px;}
.y115{bottom:981.870000px;}
.yd7{bottom:982.050000px;}
.y1dd{bottom:982.770000px;}
.y4a{bottom:982.950000px;}
.y197{bottom:986.370000px;}
.y86{bottom:990.870000px;}
.y145{bottom:996.450000px;}
.y114{bottom:999.690000px;}
.y10{bottom:999.870000px;}
.y1dc{bottom:1000.590000px;}
.y49{bottom:1000.770000px;}
.y176{bottom:1001.490000px;}
.y85{bottom:1008.690000px;}
.yd6{bottom:1017.690000px;}
.y1db{bottom:1018.410000px;}
.y48{bottom:1018.590000px;}
.yf{bottom:1018.950000px;}
.ybe{bottom:1020.930000px;}
.y84{bottom:1026.510000px;}
.ye{bottom:1031.010000px;}
.yd5{bottom:1035.510000px;}
.y47{bottom:1036.410000px;}
.y175{bottom:1042.890000px;}
.yd{bottom:1043.070000px;}
.y83{bottom:1044.510000px;}
.y195{bottom:1045.230000px;}
.y1da{bottom:1045.410000px;}
.y144{bottom:1051.710000px;}
.ybd{bottom:1053.510000px;}
.y46{bottom:1054.410000px;}
.yc{bottom:1055.130000px;}
.y82{bottom:1062.330000px;}
.y1d9{bottom:1063.230000px;}
.y143{bottom:1069.530000px;}
.yb{bottom:1069.710000px;}
.ybc{bottom:1071.330000px;}
.y45{bottom:1072.230000px;}
.y81{bottom:1080.150000px;}
.y1d8{bottom:1081.050000px;}
.y194{bottom:1083.030000px;}
.y174{bottom:1084.470000px;}
.ybb{bottom:1089.150000px;}
.y44{bottom:1090.050000px;}
.ya{bottom:1095.270000px;}
.y142{bottom:1096.350000px;}
.y80{bottom:1097.970000px;}
.y1d7{bottom:1098.870000px;}
.yba{bottom:1106.970000px;}
.y43{bottom:1107.870000px;}
.y141{bottom:1114.170000px;}
.y7f{bottom:1115.790000px;}
.y8{bottom:1124.460000px;}
.yb9{bottom:1124.790000px;}
.y42{bottom:1125.690000px;}
.y171{bottom:1125.870000px;}
.y7e{bottom:1133.610000px;}
.y140{bottom:1140.990000px;}
.yb8{bottom:1142.640000px;}
.y41{bottom:1143.720000px;}
.y1d6{bottom:1146.060000px;}
.y7d{bottom:1151.640000px;}
.y13f{bottom:1158.840000px;}
.yb7{bottom:1160.640000px;}
.y40{bottom:1161.540000px;}
.y6{bottom:1163.160000px;}
.y170{bottom:1167.480000px;}
.y7c{bottom:1178.460000px;}
.y13e{bottom:1181.340000px;}
.y3f{bottom:1181.700000px;}
.y7b{bottom:1196.280000px;}
.h25{height:2.012344px;}
.h1b{height:26.820000px;}
.h1f{height:26.856000px;}
.h1c{height:27.000000px;}
.h6{height:28.440000px;}
.h8{height:29.160000px;}
.hc{height:29.178984px;}
.h2{height:31.140000px;}
.h27{height:33.706758px;}
.h18{height:36.571289px;}
.h21{height:36.720000px;}
.h2c{height:37.080000px;}
.h22{height:37.440000px;}
.h3{height:37.731445px;}
.h4{height:38.100586px;}
.h2e{height:39.313477px;}
.h28{height:40.680000px;}
.h2a{height:40.716000px;}
.h29{height:40.860000px;}
.h2b{height:40.896000px;}
.h12{height:41.535703px;}
.he{height:41.756133px;}
.hf{height:42.164648px;}
.h2d{height:43.506914px;}
.h19{height:44.507812px;}
.h1e{height:44.640000px;}
.h24{height:44.676000px;}
.h14{height:46.283906px;}
.h13{height:46.736719px;}
.h1d{height:49.140000px;}
.h17{height:49.255313px;}
.h1a{height:49.320000px;}
.h20{height:49.356000px;}
.hd{height:50.800781px;}
.h23{height:51.516000px;}
.h11{height:53.224453px;}
.h15{height:54.864844px;}
.h26{height:56.700000px;}
.h10{height:58.861055px;}
.ha{height:59.436914px;}
.hb{height:63.500977px;}
.h5{height:65.884219px;}
.h9{height:92.965430px;}
.h7{height:93.067031px;}
.h16{height:362.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:29.376000px;}
.w1c{width:29.520000px;}
.w8{width:37.476000px;}
.w16{width:37.620000px;}
.wd{width:37.836000px;}
.w29{width:37.980000px;}
.w10{width:40.896000px;}
.w28{width:47.160000px;}
.w21{width:47.340000px;}
.w1f{width:52.920000px;}
.w26{width:53.100000px;}
.w24{width:54.900000px;}
.w1d{width:54.936000px;}
.w22{width:56.160000px;}
.w25{width:56.700000px;}
.w1e{width:56.880000px;}
.w20{width:61.776000px;}
.w27{width:61.956000px;}
.wb{width:74.700000px;}
.w13{width:77.040000px;}
.w3{width:78.480000px;}
.w11{width:86.040000px;}
.w19{width:87.300000px;}
.w2c{width:89.280000px;}
.w18{width:93.996000px;}
.w9{width:103.860000px;}
.w2b{width:104.436000px;}
.w1a{width:107.100000px;}
.wf{width:117.036000px;}
.w14{width:127.476000px;}
.w2a{width:129.816000px;}
.wc{width:142.236000px;}
.w17{width:142.956000px;}
.wa{width:145.476000px;}
.w12{width:154.470000px;}
.w15{width:154.650000px;}
.we{width:170.850000px;}
.w1b{width:181.290000px;}
.w6{width:202.860000px;}
.w2{width:706.650000px;}
.w5{width:762.660000px;}
.w7{width:811.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x7{left:-1.185000px;}
.x0{left:0.000000px;}
.x4d{left:7.560000px;}
.x3{left:8.640000px;}
.x15{left:10.800000px;}
.x23{left:11.880000px;}
.x20{left:13.860000px;}
.x1b{left:15.330000px;}
.x25{left:16.740000px;}
.x4a{left:18.900000px;}
.x26{left:20.520000px;}
.x46{left:22.320000px;}
.x39{left:23.616000px;}
.x21{left:25.560000px;}
.x1a{left:27.180000px;}
.x1d{left:28.800000px;}
.x1f{left:30.600000px;}
.x38{left:31.860000px;}
.x36{left:33.660000px;}
.x3d{left:35.280000px;}
.x37{left:36.720000px;}
.x14{left:38.340000px;}
.x17{left:40.500000px;}
.x3b{left:41.940000px;}
.x29{left:44.310000px;}
.x30{left:49.536000px;}
.x1{left:54.000000px;}
.x22{left:56.910000px;}
.x1e{left:62.325000px;}
.x5{left:64.800000px;}
.x2e{left:66.960000px;}
.x1c{left:69.165000px;}
.x2f{left:70.380000px;}
.x3c{left:71.490000px;}
.x27{left:75.240000px;}
.x3e{left:76.356000px;}
.x28{left:78.660000px;}
.x52{left:80.999987px;}
.x3f{left:84.960000px;}
.xd{left:91.079987px;}
.x33{left:93.060000px;}
.x3a{left:103.176000px;}
.x53{left:108.035987px;}
.x10{left:125.675987px;}
.x40{left:140.616000px;}
.x11{left:174.449987px;}
.x31{left:184.710000px;}
.x41{left:198.210000px;}
.xf{left:207.569987px;}
.x2{left:214.590000px;}
.x4b{left:224.130000px;}
.x34{left:236.730000px;}
.xe{left:247.169987px;}
.x42{left:252.030000px;}
.xa{left:281.729987px;}
.x9{left:285.689987px;}
.xb{left:297.794987px;}
.x12{left:314.354987px;}
.x4c{left:329.475000px;}
.x35{left:331.455000px;}
.x32{left:340.095000px;}
.x6{left:345.060000px;}
.x43{left:362.595000px;}
.x8{left:365.294987px;}
.xc{left:378.794987px;}
.x4e{left:414.074987px;}
.x13{left:473.474987px;}
.x2a{left:475.995000px;}
.x50{left:500.504987px;}
.x44{left:504.645000px;}
.x16{left:512.745000px;}
.x2b{left:517.605000px;}
.x51{left:527.504987px;}
.x45{left:560.265000px;}
.x24{left:592.125000px;}
.x2c{left:604.365000px;}
.x18{left:617.505000px;}
.x47{left:671.505000px;}
.x48{left:734.190000px;}
.x2d{left:759.570000px;}
.x4{left:760.650000px;}
.x19{left:763.710000px;}
.x49{left:782.250000px;}
.x4f{left:833.549987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.624000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.239467pt;}
.ls16{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.800000pt;}
.ls10{letter-spacing:12.960000pt;}
.ls11{letter-spacing:16.160000pt;}
.ls14{letter-spacing:22.496000pt;}
.ls13{letter-spacing:46.944000pt;}
.lsf{letter-spacing:56.912640pt;}
.ws11{word-spacing:-53.120000pt;}
.ws0{word-spacing:-29.280000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws12{word-spacing:-17.280000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.870933pt;}
.wsa{word-spacing:-12.320000pt;}
.wsb{word-spacing:-12.128000pt;}
.wsc{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.904000pt;}
.ws13{word-spacing:-11.376000pt;}
.ws10{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.480533pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._9{margin-left:-3.001600pt;}
._1{margin-left:-1.248000pt;}
._0{width:0.992000pt;}
._3{width:1.965440pt;}
._4{width:2.865920pt;}
._5{width:3.765333pt;}
._8{width:4.717653pt;}
._b{width:6.108800pt;}
._11{width:7.033813pt;}
._a{width:7.990187pt;}
._d{width:9.264000pt;}
._c{width:10.176000pt;}
._1e{width:11.104000pt;}
._e{width:13.056000pt;}
._10{width:14.464000pt;}
._17{width:16.128000pt;}
._15{width:17.088000pt;}
._7{width:18.220160pt;}
._6{width:19.123200pt;}
._1a{width:20.108800pt;}
._f{width:21.504000pt;}
._12{width:22.704000pt;}
._1f{width:23.856000pt;}
._20{width:24.768000pt;}
._13{width:25.824000pt;}
._14{width:26.944000pt;}
._18{width:28.416000pt;}
._19{width:29.632000pt;}
._1c{width:30.672000pt;}
._1b{width:31.872000pt;}
._21{width:33.456000pt;}
._22{width:34.528000pt;}
._16{width:35.616000pt;}
._1d{width:38.736000pt;}
._26{width:41.696000pt;}
._24{width:48.144000pt;}
._25{width:69.600000pt;}
._23{width:90.970667pt;}
._28{width:310.512000pt;}
._27{width:325.066667pt;}
._2{width:918.186667pt;}
.fsa{font-size:2.560000pt;}
.fs6{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:117.120000pt;}
.fs2{font-size:117.248000pt;}
.y3e{bottom:-6.720000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y7{bottom:5.280000pt;}
.y9{bottom:5.893333pt;}
.y15f{bottom:8.000000pt;}
.y165{bottom:8.160000pt;}
.y16e{bottom:8.186667pt;}
.y11f{bottom:8.640000pt;}
.y11d{bottom:8.800000pt;}
.y13b{bottom:8.826667pt;}
.y146{bottom:12.640000pt;}
.y11c{bottom:12.800000pt;}
.y4{bottom:13.760000pt;}
.y161{bottom:15.040000pt;}
.y172{bottom:15.066667pt;}
.y164{bottom:15.200000pt;}
.y16c{bottom:15.226667pt;}
.y2{bottom:16.480000pt;}
.y147{bottom:17.440000pt;}
.y3d{bottom:17.600000pt;}
.y196{bottom:17.760000pt;}
.y149{bottom:18.080000pt;}
.y162{bottom:22.080000pt;}
.y173{bottom:22.106667pt;}
.y17a{bottom:22.120000pt;}
.y15e{bottom:22.240000pt;}
.y16d{bottom:22.266667pt;}
.y12d{bottom:24.480000pt;}
.y12b{bottom:28.480000pt;}
.y11b{bottom:28.640000pt;}
.y13a{bottom:28.666667pt;}
.y14b{bottom:30.600000pt;}
.y5{bottom:35.200000pt;}
.y15d{bottom:36.320000pt;}
.y3c{bottom:43.226667pt;}
.y1{bottom:53.920000pt;}
.y3b{bottom:60.986667pt;}
.y3a{bottom:78.586667pt;}
.y7a{bottom:95.840000pt;}
.y39{bottom:96.186667pt;}
.y113{bottom:98.560000pt;}
.y13d{bottom:98.880000pt;}
.y1af{bottom:100.640000pt;}
.y193{bottom:102.720000pt;}
.yb6{bottom:102.880000pt;}
.yd4{bottom:103.680000pt;}
.y20b{bottom:104.640000pt;}
.y79{bottom:111.680000pt;}
.y2d{bottom:112.000000pt;}
.y1ae{bottom:116.480000pt;}
.y1d5{bottom:116.800000pt;}
.y16f{bottom:117.600000pt;}
.y192{bottom:118.560000pt;}
.yf2{bottom:118.720000pt;}
.yb5{bottom:118.880000pt;}
.yd3{bottom:119.680000pt;}
.y20a{bottom:120.480000pt;}
.y38{bottom:121.786667pt;}
.y13c{bottom:123.360000pt;}
.y112{bottom:127.360000pt;}
.y78{bottom:127.680000pt;}
.y1ad{bottom:132.320000pt;}
.y1d4{bottom:132.800000pt;}
.y191{bottom:134.400000pt;}
.yf1{bottom:134.560000pt;}
.yb4{bottom:134.720000pt;}
.y2e{bottom:134.880000pt;}
.yd2{bottom:135.520000pt;}
.y209{bottom:136.320000pt;}
.y37{bottom:139.386667pt;}
.y2c{bottom:142.880000pt;}
.y111{bottom:143.200000pt;}
.y77{bottom:143.520000pt;}
.y139{bottom:147.840000pt;}
.y1ac{bottom:148.320000pt;}
.y1d3{bottom:148.640000pt;}
.y190{bottom:150.240000pt;}
.yb3{bottom:150.560000pt;}
.yd1{bottom:151.360000pt;}
.y208{bottom:152.160000pt;}
.y16b{bottom:154.400000pt;}
.y36{bottom:157.146667pt;}
.yf0{bottom:158.426667pt;}
.y110{bottom:159.066667pt;}
.y76{bottom:159.386667pt;}
.y1ab{bottom:164.186667pt;}
.y1d2{bottom:164.506667pt;}
.y18f{bottom:166.266667pt;}
.yb2{bottom:166.426667pt;}
.yd0{bottom:167.226667pt;}
.y207{bottom:168.026667pt;}
.y2b{bottom:173.786667pt;}
.yef{bottom:174.266667pt;}
.y35{bottom:174.746667pt;}
.y10f{bottom:175.066667pt;}
.y75{bottom:175.226667pt;}
.y1aa{bottom:180.026667pt;}
.y1d1{bottom:180.346667pt;}
.y18e{bottom:182.106667pt;}
.yb1{bottom:182.266667pt;}
.ycf{bottom:183.066667pt;}
.y206{bottom:183.866667pt;}
.yee{bottom:190.106667pt;}
.y10e{bottom:190.906667pt;}
.y74{bottom:191.066667pt;}
.y16a{bottom:191.386667pt;}
.y1a9{bottom:195.866667pt;}
.y1d0{bottom:196.186667pt;}
.y138{bottom:196.986667pt;}
.yce{bottom:199.066667pt;}
.y205{bottom:199.866667pt;}
.y34{bottom:200.346667pt;}
.y2a{bottom:204.826667pt;}
.y18d{bottom:205.946667pt;}
.yb0{bottom:206.106667pt;}
.y10d{bottom:206.746667pt;}
.y73{bottom:207.066667pt;}
.y1a8{bottom:211.706667pt;}
.y1cf{bottom:212.026667pt;}
.y137{bottom:212.826667pt;}
.ycd{bottom:214.906667pt;}
.y204{bottom:215.706667pt;}
.y33{bottom:217.946667pt;}
.y18c{bottom:221.786667pt;}
.yed{bottom:221.946667pt;}
.yaf{bottom:222.106667pt;}
.y72{bottom:222.906667pt;}
.y1a7{bottom:227.706667pt;}
.y1ce{bottom:228.026667pt;}
.y169{bottom:228.186667pt;}
.y10c{bottom:230.586667pt;}
.ycc{bottom:230.746667pt;}
.y203{bottom:231.546667pt;}
.y32{bottom:235.546667pt;}
.y29{bottom:235.706667pt;}
.y136{bottom:236.666667pt;}
.y18b{bottom:237.626667pt;}
.yec{bottom:237.786667pt;}
.yae{bottom:237.946667pt;}
.y71{bottom:238.746667pt;}
.y1a6{bottom:243.546667pt;}
.y1cd{bottom:243.866667pt;}
.y10b{bottom:246.426667pt;}
.ycb{bottom:246.586667pt;}
.y202{bottom:247.386667pt;}
.y31{bottom:253.346667pt;}
.y18a{bottom:253.466667pt;}
.yeb{bottom:253.626667pt;}
.yad{bottom:253.786667pt;}
.y70{bottom:254.586667pt;}
.y1a5{bottom:259.386667pt;}
.y135{bottom:260.666667pt;}
.y10a{bottom:262.266667pt;}
.yca{bottom:262.426667pt;}
.y201{bottom:263.226667pt;}
.y168{bottom:265.146667pt;}
.y27{bottom:266.586667pt;}
.y1cc{bottom:267.706667pt;}
.yea{bottom:269.466667pt;}
.yac{bottom:269.626667pt;}
.y6f{bottom:270.426667pt;}
.y30{bottom:270.946667pt;}
.y134{bottom:276.506667pt;}
.yc9{bottom:278.266667pt;}
.y200{bottom:279.226667pt;}
.y1cb{bottom:283.546667pt;}
.y189{bottom:285.306667pt;}
.yab{bottom:285.466667pt;}
.y6e{bottom:286.266667pt;}
.y1a4{bottom:288.026667pt;}
.y109{bottom:294.106667pt;}
.yc8{bottom:294.266667pt;}
.y1ff{bottom:295.066667pt;}
.y26{bottom:297.466667pt;}
.y2f{bottom:298.146667pt;}
.y1ca{bottom:299.386667pt;}
.y133{bottom:300.346667pt;}
.y188{bottom:301.146667pt;}
.ye9{bottom:301.306667pt;}
.yaa{bottom:301.466667pt;}
.y167{bottom:301.946667pt;}
.y6d{bottom:302.266667pt;}
.y28{bottom:302.426667pt;}
.y1a3{bottom:308.826667pt;}
.y108{bottom:309.946667pt;}
.yc7{bottom:310.106667pt;}
.y1fe{bottom:310.906667pt;}
.y1c9{bottom:315.226667pt;}
.y132{bottom:316.186667pt;}
.y187{bottom:316.986667pt;}
.ye8{bottom:317.146667pt;}
.ya9{bottom:317.306667pt;}
.y6c{bottom:318.106667pt;}
.y107{bottom:325.786667pt;}
.yc6{bottom:325.946667pt;}
.y1fd{bottom:326.746667pt;}
.y25{bottom:328.506667pt;}
.y1a2{bottom:329.466667pt;}
.y1c8{bottom:331.226667pt;}
.y131{bottom:332.026667pt;}
.ye7{bottom:332.986667pt;}
.ya8{bottom:333.146667pt;}
.y6b{bottom:333.946667pt;}
.y186{bottom:336.826667pt;}
.y166{bottom:338.906667pt;}
.y106{bottom:341.626667pt;}
.y1fc{bottom:342.586667pt;}
.y1a1{bottom:343.546667pt;}
.y1c7{bottom:347.066667pt;}
.ya7{bottom:348.986667pt;}
.y6a{bottom:349.786667pt;}
.y130{bottom:352.026667pt;}
.ye6{bottom:356.826667pt;}
.y24{bottom:357.306667pt;}
.y105{bottom:357.626667pt;}
.y1fb{bottom:358.426667pt;}
.y1c6{bottom:362.906667pt;}
.ya6{bottom:364.826667pt;}
.y69{bottom:365.626667pt;}
.ye5{bottom:372.706667pt;}
.y104{bottom:373.506667pt;}
.y185{bottom:373.826667pt;}
.y1fa{bottom:374.466667pt;}
.y163{bottom:375.746667pt;}
.y12f{bottom:376.546667pt;}
.y1c5{bottom:378.786667pt;}
.ya5{bottom:380.706667pt;}
.y23{bottom:381.186667pt;}
.y68{bottom:381.666667pt;}
.ye4{bottom:388.706667pt;}
.y103{bottom:389.346667pt;}
.y1f9{bottom:390.306667pt;}
.y1c4{bottom:394.626667pt;}
.ya4{bottom:396.706667pt;}
.y67{bottom:397.506667pt;}
.y12e{bottom:401.026667pt;}
.ye3{bottom:404.546667pt;}
.y22{bottom:405.026667pt;}
.y102{bottom:405.186667pt;}
.y1f8{bottom:406.146667pt;}
.y184{bottom:410.626667pt;}
.ya3{bottom:412.546667pt;}
.y160{bottom:412.706667pt;}
.yc5{bottom:413.346667pt;}
.ye2{bottom:420.386667pt;}
.y66{bottom:421.346667pt;}
.y1f7{bottom:421.986667pt;}
.y12c{bottom:425.666667pt;}
.ya2{bottom:428.386667pt;}
.y21{bottom:428.866667pt;}
.y101{bottom:429.026667pt;}
.yc4{bottom:429.186667pt;}
.y1c3{bottom:434.466667pt;}
.ye1{bottom:436.226667pt;}
.y65{bottom:437.186667pt;}
.y1f6{bottom:437.826667pt;}
.ya1{bottom:444.226667pt;}
.y100{bottom:444.866667pt;}
.yc3{bottom:445.026667pt;}
.y183{bottom:447.586667pt;}
.y15c{bottom:449.506667pt;}
.y1c2{bottom:450.306667pt;}
.ye0{bottom:452.066667pt;}
.y20{bottom:452.866667pt;}
.y64{bottom:453.026667pt;}
.y1f5{bottom:453.826667pt;}
.ya0{bottom:460.066667pt;}
.yc2{bottom:460.866667pt;}
.y12a{bottom:465.986667pt;}
.y1c1{bottom:466.146667pt;}
.ydf{bottom:468.066667pt;}
.y63{bottom:468.866667pt;}
.y1f4{bottom:469.666667pt;}
.y9f{bottom:476.066667pt;}
.y1f{bottom:476.706667pt;}
.y220{bottom:478.146667pt;}
.y1c0{bottom:481.986667pt;}
.yde{bottom:483.906667pt;}
.y182{bottom:484.386667pt;}
.y62{bottom:484.866667pt;}
.y1f3{bottom:485.506667pt;}
.y9e{bottom:491.906667pt;}
.y21f{bottom:492.066667pt;}
.yff{bottom:492.546667pt;}
.y1bf{bottom:497.826667pt;}
.ydd{bottom:499.746667pt;}
.y61{bottom:500.706667pt;}
.y1f2{bottom:501.346667pt;}
.y1e{bottom:501.506667pt;}
.y15b{bottom:505.186667pt;}
.y9d{bottom:507.746667pt;}
.y21e{bottom:507.906667pt;}
.yfe{bottom:508.386667pt;}
.y1be{bottom:513.826667pt;}
.y129{bottom:515.106667pt;}
.ydc{bottom:515.586667pt;}
.y60{bottom:516.546667pt;}
.y1f1{bottom:517.186667pt;}
.y181{bottom:521.346667pt;}
.y9c{bottom:523.586667pt;}
.y21d{bottom:523.746667pt;}
.y1d{bottom:524.866667pt;}
.y15a{bottom:529.026667pt;}
.y1bd{bottom:529.666667pt;}
.y128{bottom:530.946667pt;}
.ydb{bottom:531.426667pt;}
.yfd{bottom:532.226667pt;}
.y5f{bottom:532.386667pt;}
.y1f0{bottom:533.026667pt;}
.y9b{bottom:539.426667pt;}
.y21c{bottom:539.586667pt;}
.y159{bottom:545.026667pt;}
.yda{bottom:547.266667pt;}
.y5e{bottom:548.226667pt;}
.y1ef{bottom:549.026667pt;}
.y1c{bottom:552.226667pt;}
.y1bc{bottom:553.506667pt;}
.y127{bottom:554.786667pt;}
.y9a{bottom:555.266667pt;}
.y21b{bottom:555.426667pt;}
.y180{bottom:558.146667pt;}
.y158{bottom:560.866667pt;}
.yfc{bottom:564.066667pt;}
.y5d{bottom:564.226667pt;}
.y1ee{bottom:564.866667pt;}
.y1bb{bottom:569.346667pt;}
.y126{bottom:570.626667pt;}
.y99{bottom:571.266667pt;}
.y157{bottom:576.706667pt;}
.yfb{bottom:579.906667pt;}
.y5c{bottom:580.066667pt;}
.y1ed{bottom:580.706667pt;}
.y125{bottom:586.493333pt;}
.y98{bottom:587.133333pt;}
.y21a{bottom:587.293333pt;}
.y156{bottom:592.573333pt;}
.y17f{bottom:595.133333pt;}
.y1ba{bottom:595.453333pt;}
.yfa{bottom:595.773333pt;}
.y5b{bottom:595.933333pt;}
.y1ec{bottom:596.573333pt;}
.y1b{bottom:601.053333pt;}
.y124{bottom:602.493333pt;}
.y97{bottom:602.973333pt;}
.y219{bottom:603.133333pt;}
.y155{bottom:608.413333pt;}
.y1b9{bottom:611.293333pt;}
.yf9{bottom:611.613333pt;}
.y5a{bottom:611.773333pt;}
.y1eb{bottom:612.413333pt;}
.y123{bottom:618.333333pt;}
.y96{bottom:618.813333pt;}
.y218{bottom:618.973333pt;}
.y154{bottom:624.253333pt;}
.yf8{bottom:627.453333pt;}
.y59{bottom:627.613333pt;}
.y1a{bottom:628.413333pt;}
.y17e{bottom:631.933333pt;}
.yd9{bottom:634.653333pt;}
.y217{bottom:634.813333pt;}
.y1b8{bottom:637.373333pt;}
.y122{bottom:638.173333pt;}
.y153{bottom:640.253333pt;}
.y95{bottom:642.653333pt;}
.y58{bottom:643.453333pt;}
.y1ea{bottom:644.253333pt;}
.yd8{bottom:650.493333pt;}
.y216{bottom:650.653333pt;}
.y152{bottom:656.093333pt;}
.y94{bottom:658.493333pt;}
.y57{bottom:659.453333pt;}
.y1e9{bottom:660.093333pt;}
.y1b7{bottom:661.213333pt;}
.yf7{bottom:661.373333pt;}
.y121{bottom:662.653333pt;}
.y19{bottom:666.493333pt;}
.y17d{bottom:668.893333pt;}
.y151{bottom:671.933333pt;}
.y93{bottom:674.493333pt;}
.y56{bottom:675.293333pt;}
.y1e8{bottom:675.933333pt;}
.y215{bottom:682.493333pt;}
.y1b6{bottom:685.213333pt;}
.y120{bottom:687.293333pt;}
.y150{bottom:687.773333pt;}
.yf6{bottom:690.173333pt;}
.y92{bottom:690.333333pt;}
.y55{bottom:691.133333pt;}
.y1e7{bottom:691.773333pt;}
.y214{bottom:698.333333pt;}
.y1a0{bottom:700.253333pt;}
.y1b5{bottom:701.053333pt;}
.y17c{bottom:705.693333pt;}
.yf5{bottom:706.013333pt;}
.y91{bottom:706.173333pt;}
.y54{bottom:706.973333pt;}
.y1e6{bottom:707.613333pt;}
.y18{bottom:711.453333pt;}
.y14f{bottom:711.613333pt;}
.y11e{bottom:711.773333pt;}
.y213{bottom:714.173333pt;}
.yc1{bottom:714.973333pt;}
.y19f{bottom:716.253333pt;}
.y1b4{bottom:716.893333pt;}
.y90{bottom:722.013333pt;}
.y53{bottom:722.813333pt;}
.y1e5{bottom:723.613333pt;}
.y14e{bottom:727.613333pt;}
.yf4{bottom:729.853333pt;}
.y212{bottom:730.013333pt;}
.yc0{bottom:730.813333pt;}
.y19e{bottom:732.093333pt;}
.y1b3{bottom:732.733333pt;}
.y17{bottom:736.253333pt;}
.y8f{bottom:737.853333pt;}
.y52{bottom:738.653333pt;}
.y1e4{bottom:739.453333pt;}
.y17b{bottom:742.653333pt;}
.yf3{bottom:745.853333pt;}
.ybf{bottom:746.653333pt;}
.y14d{bottom:747.453333pt;}
.y19d{bottom:747.933333pt;}
.y8e{bottom:753.853333pt;}
.y1e3{bottom:755.293333pt;}
.y1b2{bottom:756.573333pt;}
.y211{bottom:761.853333pt;}
.y51{bottom:762.653333pt;}
.y19c{bottom:763.773333pt;}
.y8d{bottom:769.693333pt;}
.y14a{bottom:771.933333pt;}
.y1e2{bottom:773.213333pt;}
.y14c{bottom:774.973333pt;}
.y16{bottom:776.893333pt;}
.y210{bottom:777.693333pt;}
.y50{bottom:778.493333pt;}
.y179{bottom:779.453333pt;}
.y19b{bottom:779.613333pt;}
.y1b1{bottom:780.573333pt;}
.y11a{bottom:785.373333pt;}
.y8c{bottom:785.533333pt;}
.y20f{bottom:793.533333pt;}
.y4f{bottom:794.333333pt;}
.y15{bottom:799.453333pt;}
.y119{bottom:801.253333pt;}
.y8b{bottom:801.413333pt;}
.y1e1{bottom:802.053333pt;}
.y1b0{bottom:802.693333pt;}
.y19a{bottom:803.653333pt;}
.y20e{bottom:809.413333pt;}
.y4e{bottom:810.213333pt;}
.y178{bottom:816.453333pt;}
.y14{bottom:817.093333pt;}
.y8a{bottom:817.253333pt;}
.y1e0{bottom:818.053333pt;}
.y148{bottom:818.373333pt;}
.y118{bottom:825.093333pt;}
.y20d{bottom:825.253333pt;}
.y4d{bottom:826.053333pt;}
.y199{bottom:827.493333pt;}
.y89{bottom:833.093333pt;}
.y1df{bottom:833.893333pt;}
.y13{bottom:834.853333pt;}
.y117{bottom:841.093333pt;}
.y4c{bottom:842.053333pt;}
.y88{bottom:849.093333pt;}
.y1de{bottom:849.733333pt;}
.y12{bottom:852.453333pt;}
.y177{bottom:853.253333pt;}
.y198{bottom:856.133333pt;}
.y116{bottom:856.933333pt;}
.y20c{bottom:857.093333pt;}
.y4b{bottom:857.893333pt;}
.y87{bottom:864.933333pt;}
.y11{bottom:870.053333pt;}
.y115{bottom:872.773333pt;}
.yd7{bottom:872.933333pt;}
.y1dd{bottom:873.573333pt;}
.y4a{bottom:873.733333pt;}
.y197{bottom:876.773333pt;}
.y86{bottom:880.773333pt;}
.y145{bottom:885.733333pt;}
.y114{bottom:888.613333pt;}
.y10{bottom:888.773333pt;}
.y1dc{bottom:889.413333pt;}
.y49{bottom:889.573333pt;}
.y176{bottom:890.213333pt;}
.y85{bottom:896.613333pt;}
.yd6{bottom:904.613333pt;}
.y1db{bottom:905.253333pt;}
.y48{bottom:905.413333pt;}
.yf{bottom:905.733333pt;}
.ybe{bottom:907.493333pt;}
.y84{bottom:912.453333pt;}
.ye{bottom:916.453333pt;}
.yd5{bottom:920.453333pt;}
.y47{bottom:921.253333pt;}
.y175{bottom:927.013333pt;}
.yd{bottom:927.173333pt;}
.y83{bottom:928.453333pt;}
.y195{bottom:929.093333pt;}
.y1da{bottom:929.253333pt;}
.y144{bottom:934.853333pt;}
.ybd{bottom:936.453333pt;}
.y46{bottom:937.253333pt;}
.yc{bottom:937.893333pt;}
.y82{bottom:944.293333pt;}
.y1d9{bottom:945.093333pt;}
.y143{bottom:950.693333pt;}
.yb{bottom:950.853333pt;}
.ybc{bottom:952.293333pt;}
.y45{bottom:953.093333pt;}
.y81{bottom:960.133333pt;}
.y1d8{bottom:960.933333pt;}
.y194{bottom:962.693333pt;}
.y174{bottom:963.973333pt;}
.ybb{bottom:968.133333pt;}
.y44{bottom:968.933333pt;}
.ya{bottom:973.573333pt;}
.y142{bottom:974.533333pt;}
.y80{bottom:975.973333pt;}
.y1d7{bottom:976.773333pt;}
.yba{bottom:983.973333pt;}
.y43{bottom:984.773333pt;}
.y141{bottom:990.373333pt;}
.y7f{bottom:991.813333pt;}
.y8{bottom:999.520000pt;}
.yb9{bottom:999.813333pt;}
.y42{bottom:1000.613333pt;}
.y171{bottom:1000.773333pt;}
.y7e{bottom:1007.653333pt;}
.y140{bottom:1014.213333pt;}
.yb8{bottom:1015.680000pt;}
.y41{bottom:1016.640000pt;}
.y1d6{bottom:1018.720000pt;}
.y7d{bottom:1023.680000pt;}
.y13f{bottom:1030.080000pt;}
.yb7{bottom:1031.680000pt;}
.y40{bottom:1032.480000pt;}
.y6{bottom:1033.920000pt;}
.y170{bottom:1037.760000pt;}
.y7c{bottom:1047.520000pt;}
.y13e{bottom:1050.080000pt;}
.y3f{bottom:1050.400000pt;}
.y7b{bottom:1063.360000pt;}
.h25{height:1.788750pt;}
.h1b{height:23.840000pt;}
.h1f{height:23.872000pt;}
.h1c{height:24.000000pt;}
.h6{height:25.280000pt;}
.h8{height:25.920000pt;}
.hc{height:25.936875pt;}
.h2{height:27.680000pt;}
.h27{height:29.961562pt;}
.h18{height:32.507812pt;}
.h21{height:32.640000pt;}
.h2c{height:32.960000pt;}
.h22{height:33.280000pt;}
.h3{height:33.539062pt;}
.h4{height:33.867188pt;}
.h2e{height:34.945312pt;}
.h28{height:36.160000pt;}
.h2a{height:36.192000pt;}
.h29{height:36.320000pt;}
.h2b{height:36.352000pt;}
.h12{height:36.920625pt;}
.he{height:37.116563pt;}
.hf{height:37.479688pt;}
.h2d{height:38.672812pt;}
.h19{height:39.562500pt;}
.h1e{height:39.680000pt;}
.h24{height:39.712000pt;}
.h14{height:41.141250pt;}
.h13{height:41.543750pt;}
.h1d{height:43.680000pt;}
.h17{height:43.782500pt;}
.h1a{height:43.840000pt;}
.h20{height:43.872000pt;}
.hd{height:45.156250pt;}
.h23{height:45.792000pt;}
.h11{height:47.310625pt;}
.h15{height:48.768750pt;}
.h26{height:50.400000pt;}
.h10{height:52.320937pt;}
.ha{height:52.832812pt;}
.hb{height:56.445312pt;}
.h5{height:58.563750pt;}
.h9{height:82.635937pt;}
.h7{height:82.726250pt;}
.h16{height:322.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:26.112000pt;}
.w1c{width:26.240000pt;}
.w8{width:33.312000pt;}
.w16{width:33.440000pt;}
.wd{width:33.632000pt;}
.w29{width:33.760000pt;}
.w10{width:36.352000pt;}
.w28{width:41.920000pt;}
.w21{width:42.080000pt;}
.w1f{width:47.040000pt;}
.w26{width:47.200000pt;}
.w24{width:48.800000pt;}
.w1d{width:48.832000pt;}
.w22{width:49.920000pt;}
.w25{width:50.400000pt;}
.w1e{width:50.560000pt;}
.w20{width:54.912000pt;}
.w27{width:55.072000pt;}
.wb{width:66.400000pt;}
.w13{width:68.480000pt;}
.w3{width:69.760000pt;}
.w11{width:76.480000pt;}
.w19{width:77.600000pt;}
.w2c{width:79.360000pt;}
.w18{width:83.552000pt;}
.w9{width:92.320000pt;}
.w2b{width:92.832000pt;}
.w1a{width:95.200000pt;}
.wf{width:104.032000pt;}
.w14{width:113.312000pt;}
.w2a{width:115.392000pt;}
.wc{width:126.432000pt;}
.w17{width:127.072000pt;}
.wa{width:129.312000pt;}
.w12{width:137.306667pt;}
.w15{width:137.466667pt;}
.we{width:151.866667pt;}
.w1b{width:161.146667pt;}
.w6{width:180.320000pt;}
.w2{width:628.133333pt;}
.w5{width:677.920000pt;}
.w7{width:721.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x7{left:-1.053333pt;}
.x0{left:0.000000pt;}
.x4d{left:6.720000pt;}
.x3{left:7.680000pt;}
.x15{left:9.600000pt;}
.x23{left:10.560000pt;}
.x20{left:12.320000pt;}
.x1b{left:13.626667pt;}
.x25{left:14.880000pt;}
.x4a{left:16.800000pt;}
.x26{left:18.240000pt;}
.x46{left:19.840000pt;}
.x39{left:20.992000pt;}
.x21{left:22.720000pt;}
.x1a{left:24.160000pt;}
.x1d{left:25.600000pt;}
.x1f{left:27.200000pt;}
.x38{left:28.320000pt;}
.x36{left:29.920000pt;}
.x3d{left:31.360000pt;}
.x37{left:32.640000pt;}
.x14{left:34.080000pt;}
.x17{left:36.000000pt;}
.x3b{left:37.280000pt;}
.x29{left:39.386667pt;}
.x30{left:44.032000pt;}
.x1{left:48.000000pt;}
.x22{left:50.586667pt;}
.x1e{left:55.400000pt;}
.x5{left:57.600000pt;}
.x2e{left:59.520000pt;}
.x1c{left:61.480000pt;}
.x2f{left:62.560000pt;}
.x3c{left:63.546667pt;}
.x27{left:66.880000pt;}
.x3e{left:67.872000pt;}
.x28{left:69.920000pt;}
.x52{left:71.999988pt;}
.x3f{left:75.520000pt;}
.xd{left:80.959988pt;}
.x33{left:82.720000pt;}
.x3a{left:91.712000pt;}
.x53{left:96.031988pt;}
.x10{left:111.711988pt;}
.x40{left:124.992000pt;}
.x11{left:155.066655pt;}
.x31{left:164.186667pt;}
.x41{left:176.186667pt;}
.xf{left:184.506655pt;}
.x2{left:190.746667pt;}
.x4b{left:199.226667pt;}
.x34{left:210.426667pt;}
.xe{left:219.706655pt;}
.x42{left:224.026667pt;}
.xa{left:250.426655pt;}
.x9{left:253.946655pt;}
.xb{left:264.706655pt;}
.x12{left:279.426655pt;}
.x4c{left:292.866667pt;}
.x35{left:294.626667pt;}
.x32{left:302.306667pt;}
.x6{left:306.720000pt;}
.x43{left:322.306667pt;}
.x8{left:324.706655pt;}
.xc{left:336.706655pt;}
.x4e{left:368.066655pt;}
.x13{left:420.866655pt;}
.x2a{left:423.106667pt;}
.x50{left:444.893322pt;}
.x44{left:448.573333pt;}
.x16{left:455.773333pt;}
.x2b{left:460.093333pt;}
.x51{left:468.893322pt;}
.x45{left:498.013333pt;}
.x24{left:526.333333pt;}
.x2c{left:537.213333pt;}
.x18{left:548.893333pt;}
.x47{left:596.893333pt;}
.x48{left:652.613333pt;}
.x2d{left:675.173333pt;}
.x4{left:676.133333pt;}
.x19{left:678.853333pt;}
.x49{left:695.333333pt;}
.x4f{left:740.933322pt;}
}




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