
    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_5b23cb9935866b1a2c2a7dfd.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_76e98477b7e28ba51689d137.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_71b0411dccd98a4d2805c2cb.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9f0cffae5f0252ac1f96045d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_cb6818c5460cf96d6cf34f17.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0edbae5f006ac2f9e5e273f4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b0d2df505313b60201e171bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969238;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1e{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.413400px;}
.ls11{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls16{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.360000px;}
.ls13{letter-spacing:2.340000px;}
.ls7{letter-spacing:3.546720px;}
.ls14{letter-spacing:3.780000px;}
.ls8{letter-spacing:6.426720px;}
.ls1d{letter-spacing:10.980000px;}
.ls1f{letter-spacing:11.466720px;}
.ls6{letter-spacing:20.106720px;}
.ls1a{letter-spacing:21.546720px;}
.ls1b{letter-spacing:25.146720px;}
.ls5{letter-spacing:36.666720px;}
.ls19{letter-spacing:38.106720px;}
.ls1c{letter-spacing:41.850720px;}
.ls18{letter-spacing:54.666720px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.400000px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-2176.197840px;}
._3{margin-left:-1406.208960px;}
._5{margin-left:-999.429120px;}
._4{margin-left:-975.715200px;}
._6{margin-left:-515.148480px;}
._7{margin-left:-5.950080px;}
._8{margin-left:-4.504320px;}
._13{margin-left:-3.467520px;}
._12{margin-left:-2.150640px;}
._2{margin-left:-1.059840px;}
._0{width:1.244880px;}
._b{width:2.416800px;}
._c{width:4.183200px;}
._10{width:5.348400px;}
._e{width:7.320720px;}
._f{width:8.784720px;}
._15{width:10.816560px;}
._16{width:11.852640px;}
._14{width:13.565520px;}
._11{width:16.613280px;}
._d{width:18.226800px;}
._1e{width:24.441840px;}
._1a{width:27.429840px;}
._19{width:29.282400px;}
._1f{width:30.955680px;}
._18{width:34.215120px;}
._17{width:35.460000px;}
._9{width:44.911440px;}
._a{width:46.060560px;}
._1d{width:59.760000px;}
._1b{width:62.987040px;}
._1c{width:68.724000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,35,35);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:3.240000px;}
.y111{bottom:3.420000px;}
.yef{bottom:3.600000px;}
.y13b{bottom:3.780000px;}
.y1f{bottom:3.960000px;}
.yf5{bottom:4.140000px;}
.y158{bottom:4.320000px;}
.y17d{bottom:4.500000px;}
.y18b{bottom:4.545000px;}
.yb0{bottom:4.860000px;}
.y155{bottom:5.250000px;}
.y1b5{bottom:5.760000px;}
.y1a9{bottom:5.940000px;}
.yf{bottom:6.300000px;}
.yac{bottom:6.480000px;}
.y1af{bottom:6.654000px;}
.yfb{bottom:6.840000px;}
.ya6{bottom:7.020000px;}
.yb3{bottom:7.560000px;}
.y181{bottom:7.740000px;}
.yb5{bottom:7.920000px;}
.y183{bottom:8.100000px;}
.y138{bottom:8.280000px;}
.yf1{bottom:8.460000px;}
.yb7{bottom:9.180000px;}
.yfe{bottom:9.540000px;}
.y190{bottom:9.900000px;}
.y15c{bottom:14.580000px;}
.yc6{bottom:20.340000px;}
.ya1{bottom:20.520000px;}
.y9f{bottom:20.550000px;}
.yee{bottom:20.880000px;}
.y153{bottom:23.250000px;}
.y2b{bottom:28.110000px;}
.y1e{bottom:32.790000px;}
.yc5{bottom:37.620000px;}
.y9e{bottom:37.650000px;}
.y10f{bottom:37.800000px;}
.y2a{bottom:50.070000px;}
.y10e{bottom:55.080000px;}
.y1d{bottom:61.590000px;}
.y6{bottom:66.816000px;}
.y29{bottom:71.850000px;}
.y9c{bottom:72.930000px;}
.yec{bottom:73.260000px;}
.y1c{bottom:81.390000px;}
.y28{bottom:93.630000px;}
.y41{bottom:95.976000px;}
.y9a{bottom:100.476000px;}
.y185{bottom:100.656000px;}
.y1b{bottom:101.190000px;}
.ybc{bottom:107.136000px;}
.y151{bottom:107.316000px;}
.y12c{bottom:107.676000px;}
.y1e2{bottom:110.196000px;}
.y1fb{bottom:110.556000px;}
.y1b1{bottom:110.916000px;}
.y27{bottom:115.410000px;}
.y184{bottom:115.416000px;}
.y40{bottom:115.776000px;}
.yf3{bottom:119.916000px;}
.y99{bottom:120.276000px;}
.y1a{bottom:121.170000px;}
.ybb{bottom:125.136000px;}
.y150{bottom:127.116000px;}
.y12b{bottom:127.656000px;}
.y1b0{bottom:128.916000px;}
.y1e1{bottom:129.996000px;}
.y77{bottom:133.056000px;}
.y3f{bottom:135.756000px;}
.y182{bottom:137.016000px;}
.y26{bottom:137.190000px;}
.yf2{bottom:137.916000px;}
.y98{bottom:140.256000px;}
.y19{bottom:140.970000px;}
.y1fa{bottom:141.336000px;}
.yba{bottom:143.136000px;}
.y14f{bottom:146.916000px;}
.y12a{bottom:147.456000px;}
.y1e0{bottom:149.976000px;}
.y76{bottom:152.850000px;}
.y3e{bottom:155.550000px;}
.yf0{bottom:155.910000px;}
.y25{bottom:159.150000px;}
.y180{bottom:159.870000px;}
.y97{bottom:160.050000px;}
.y18{bottom:160.770000px;}
.yb9{bottom:161.130000px;}
.y14e{bottom:166.890000px;}
.y129{bottom:167.250000px;}
.y1ae{bottom:168.330000px;}
.y1df{bottom:169.770000px;}
.y1f9{bottom:171.930000px;}
.y75{bottom:172.650000px;}
.y3d{bottom:175.350000px;}
.yb8{bottom:179.130000px;}
.y96{bottom:179.850000px;}
.y17{bottom:180.570000px;}
.y24{bottom:180.930000px;}
.y17f{bottom:182.370000px;}
.y1ad{bottom:186.330000px;}
.y14d{bottom:186.690000px;}
.y128{bottom:187.050000px;}
.y1de{bottom:189.570000px;}
.y74{bottom:192.450000px;}
.y3c{bottom:195.150000px;}
.yb6{bottom:197.130000px;}
.y95{bottom:199.650000px;}
.y16{bottom:200.370000px;}
.y1f8{bottom:202.530000px;}
.y1ac{bottom:204.330000px;}
.y14c{bottom:206.490000px;}
.y127{bottom:206.850000px;}
.y1dd{bottom:209.370000px;}
.y73{bottom:212.430000px;}
.yed{bottom:214.770000px;}
.y3b{bottom:214.950000px;}
.y23{bottom:217.650000px;}
.y17e{bottom:218.370000px;}
.y94{bottom:219.450000px;}
.y15{bottom:220.350000px;}
.yb4{bottom:221.070000px;}
.y1ab{bottom:222.330000px;}
.y14b{bottom:226.290000px;}
.y126{bottom:226.830000px;}
.y1dc{bottom:229.170000px;}
.y72{bottom:232.230000px;}
.y1f7{bottom:233.130000px;}
.y3a{bottom:234.930000px;}
.y17c{bottom:236.370000px;}
.y93{bottom:239.430000px;}
.y14{bottom:240.150000px;}
.y1aa{bottom:240.330000px;}
.yb2{bottom:243.750000px;}
.y14a{bottom:246.090000px;}
.y125{bottom:246.630000px;}
.y1db{bottom:249.150000px;}
.y71{bottom:252.030000px;}
.y22{bottom:254.550000px;}
.y39{bottom:254.730000px;}
.y17b{bottom:255.630000px;}
.y1a8{bottom:258.690000px;}
.y92{bottom:259.230000px;}
.y13{bottom:259.950000px;}
.y1f6{bottom:263.730000px;}
.yb1{bottom:266.070000px;}
.y124{bottom:266.430000px;}
.y1da{bottom:268.950000px;}
.y70{bottom:271.830000px;}
.yeb{bottom:272.955000px;}
.y38{bottom:274.575000px;}
.y21{bottom:276.330000px;}
.y91{bottom:279.075000px;}
.y17a{bottom:279.435000px;}
.y12{bottom:279.750000px;}
.yaf{bottom:284.115000px;}
.y149{bottom:285.915000px;}
.y123{bottom:286.275000px;}
.y1d9{bottom:288.795000px;}
.y6f{bottom:291.675000px;}
.yea{bottom:292.935000px;}
.y37{bottom:294.375000px;}
.y1a7{bottom:297.435000px;}
.y20{bottom:298.110000px;}
.y90{bottom:298.875000px;}
.y179{bottom:299.235000px;}
.y11{bottom:299.550000px;}
.yae{bottom:303.735000px;}
.y148{bottom:305.715000px;}
.y122{bottom:306.075000px;}
.y1d8{bottom:308.595000px;}
.y6e{bottom:311.655000px;}
.ye9{bottom:312.735000px;}
.y36{bottom:314.175000px;}
.y1a6{bottom:315.435000px;}
.y8f{bottom:318.675000px;}
.y178{bottom:319.035000px;}
.y1f5{bottom:324.975000px;}
.yad{bottom:325.515000px;}
.y121{bottom:326.055000px;}
.y1d7{bottom:328.395000px;}
.y6d{bottom:331.455000px;}
.ye8{bottom:332.535000px;}
.y1a5{bottom:333.435000px;}
.y35{bottom:334.155000px;}
.y8e{bottom:338.655000px;}
.y177{bottom:339.015000px;}
.yab{bottom:343.515000px;}
.y147{bottom:345.315000px;}
.y120{bottom:345.855000px;}
.y1d6{bottom:348.375000px;}
.y6c{bottom:351.255000px;}
.y1a4{bottom:351.435000px;}
.ye7{bottom:352.335000px;}
.y34{bottom:353.955000px;}
.y1f4{bottom:355.575000px;}
.y8d{bottom:358.455000px;}
.y176{bottom:358.815000px;}
.yaa{bottom:364.755000px;}
.y146{bottom:365.295000px;}
.y11f{bottom:365.655000px;}
.y1d5{bottom:368.175000px;}
.y1a3{bottom:369.435000px;}
.y6b{bottom:371.055000px;}
.ye6{bottom:372.135000px;}
.y33{bottom:373.755000px;}
.y8c{bottom:378.255000px;}
.y175{bottom:378.615000px;}
.ya9{bottom:382.755000px;}
.y145{bottom:385.095000px;}
.y11e{bottom:385.455000px;}
.y1f3{bottom:386.175000px;}
.y1a2{bottom:387.435000px;}
.y1d4{bottom:387.975000px;}
.y6a{bottom:390.855000px;}
.ye5{bottom:392.115000px;}
.y32{bottom:393.555000px;}
.y8b{bottom:398.055000px;}
.y174{bottom:398.415000px;}
.ya8{bottom:400.755000px;}
.y144{bottom:404.895000px;}
.y11d{bottom:405.255000px;}
.y1a1{bottom:405.435000px;}
.y1d3{bottom:407.775000px;}
.y69{bottom:410.835000px;}
.ye4{bottom:411.915000px;}
.y31{bottom:413.355000px;}
.y1f2{bottom:416.775000px;}
.y8a{bottom:417.855000px;}
.y173{bottom:418.215000px;}
.ya7{bottom:418.755000px;}
.y1a0{bottom:423.435000px;}
.y143{bottom:424.695000px;}
.y11c{bottom:425.235000px;}
.y1d2{bottom:427.575000px;}
.y68{bottom:430.635000px;}
.ye3{bottom:431.715000px;}
.y30{bottom:433.335000px;}
.y89{bottom:435.135000px;}
.ya5{bottom:436.755000px;}
.y172{bottom:438.015000px;}
.y142{bottom:444.495000px;}
.y11b{bottom:445.035000px;}
.y19f{bottom:445.755000px;}
.y1f1{bottom:447.375000px;}
.y1d1{bottom:447.555000px;}
.y67{bottom:450.435000px;}
.ye2{bottom:451.515000px;}
.y2f{bottom:453.135000px;}
.y171{bottom:457.995000px;}
.ya4{bottom:458.535000px;}
.y88{bottom:461.415000px;}
.y141{bottom:464.475000px;}
.y11a{bottom:464.835000px;}
.y1d0{bottom:467.355000px;}
.y66{bottom:470.235000px;}
.ye1{bottom:471.315000px;}
.y2e{bottom:472.935000px;}
.ya3{bottom:476.535000px;}
.y170{bottom:477.795000px;}
.y1f0{bottom:477.975000px;}
.y87{bottom:478.695000px;}
.y140{bottom:479.235000px;}
.y19e{bottom:482.835000px;}
.y119{bottom:484.635000px;}
.y1cf{bottom:487.155000px;}
.y65{bottom:490.035000px;}
.ye0{bottom:491.295000px;}
.y2d{bottom:492.735000px;}
.ya2{bottom:494.535000px;}
.y86{bottom:495.975000px;}
.y16f{bottom:497.595000px;}
.y13f{bottom:501.915000px;}
.y118{bottom:504.435000px;}
.y19d{bottom:506.595000px;}
.y1ce{bottom:506.955000px;}
.y1ef{bottom:508.575000px;}
.y64{bottom:510.015000px;}
.ydf{bottom:511.095000px;}
.y2c{bottom:512.535000px;}
.y85{bottom:513.255000px;}
.y9b{bottom:515.595000px;}
.y16e{bottom:517.395000px;}
.y13e{bottom:519.915000px;}
.y117{bottom:524.415000px;}
.y19c{bottom:526.395000px;}
.y1cd{bottom:526.755000px;}
.y10{bottom:528.915000px;}
.y63{bottom:529.815000px;}
.y84{bottom:530.355000px;}
.yde{bottom:530.895000px;}
.y16d{bottom:537.195000px;}
.y13d{bottom:538.455000px;}
.y1ee{bottom:539.355000px;}
.y116{bottom:544.215000px;}
.y19b{bottom:546.195000px;}
.y1cc{bottom:546.735000px;}
.y83{bottom:547.635000px;}
.y62{bottom:549.615000px;}
.ydd{bottom:550.695000px;}
.y9d{bottom:550.875000px;}
.y13c{bottom:556.485000px;}
.y16c{bottom:557.205000px;}
.y115{bottom:564.045000px;}
.y19a{bottom:566.025000px;}
.y1cb{bottom:566.565000px;}
.y82{bottom:567.465000px;}
.y61{bottom:569.445000px;}
.y1ed{bottom:569.985000px;}
.ydc{bottom:570.525000px;}
.y16b{bottom:571.245000px;}
.y13a{bottom:574.485000px;}
.y114{bottom:583.845000px;}
.y199{bottom:586.005000px;}
.y1ca{bottom:586.365000px;}
.y81{bottom:587.445000px;}
.y60{bottom:589.245000px;}
.ydb{bottom:590.505000px;}
.y139{bottom:593.025000px;}
.y1ec{bottom:600.585000px;}
.y113{bottom:603.645000px;}
.y198{bottom:605.805000px;}
.y1c9{bottom:606.165000px;}
.y80{bottom:607.245000px;}
.y5f{bottom:609.225000px;}
.yda{bottom:610.305000px;}
.y137{bottom:611.025000px;}
.y112{bottom:618.585000px;}
.y197{bottom:625.605000px;}
.y1c8{bottom:625.965000px;}
.y7f{bottom:627.045000px;}
.y5e{bottom:629.025000px;}
.yd9{bottom:630.105000px;}
.y1eb{bottom:631.185000px;}
.y110{bottom:636.585000px;}
.y136{bottom:639.825000px;}
.y196{bottom:645.405000px;}
.y1c7{bottom:645.945000px;}
.y7e{bottom:646.845000px;}
.y5d{bottom:648.825000px;}
.yd8{bottom:649.905000px;}
.y10d{bottom:654.765000px;}
.y135{bottom:659.625000px;}
.y1ea{bottom:661.785000px;}
.y195{bottom:665.205000px;}
.y1c6{bottom:665.745000px;}
.y7d{bottom:666.645000px;}
.y5c{bottom:668.625000px;}
.yd7{bottom:669.705000px;}
.y134{bottom:679.425000px;}
.y194{bottom:685.185000px;}
.y1c5{bottom:685.545000px;}
.y7c{bottom:686.445000px;}
.y5b{bottom:688.425000px;}
.yd6{bottom:689.685000px;}
.y1e9{bottom:692.385000px;}
.y133{bottom:699.405000px;}
.y193{bottom:704.985000px;}
.y1c4{bottom:705.345000px;}
.y7b{bottom:706.425000px;}
.y16a{bottom:707.505000px;}
.y5a{bottom:708.405000px;}
.yd5{bottom:709.485000px;}
.y132{bottom:719.205000px;}
.y1e8{bottom:722.985000px;}
.y10c{bottom:724.605000px;}
.y192{bottom:724.785000px;}
.y1c3{bottom:725.145000px;}
.y7a{bottom:726.225000px;}
.y169{bottom:727.305000px;}
.y59{bottom:728.205000px;}
.yd4{bottom:729.285000px;}
.y131{bottom:739.005000px;}
.y10b{bottom:742.605000px;}
.y191{bottom:744.585000px;}
.y1c2{bottom:745.125000px;}
.y79{bottom:746.025000px;}
.y168{bottom:747.105000px;}
.y58{bottom:748.005000px;}
.yd3{bottom:749.085000px;}
.y1e7{bottom:753.585000px;}
.y130{bottom:758.805000px;}
.y18f{bottom:759.345000px;}
.y78{bottom:760.065000px;}
.y10a{bottom:760.605000px;}
.y1c1{bottom:764.925000px;}
.y167{bottom:766.905000px;}
.y57{bottom:767.805000px;}
.yd2{bottom:768.885000px;}
.y109{bottom:778.605000px;}
.y18e{bottom:784.005000px;}
.y1e6{bottom:784.185000px;}
.y1c0{bottom:784.725000px;}
.y166{bottom:786.885000px;}
.y56{bottom:787.605000px;}
.yd1{bottom:788.865000px;}
.y108{bottom:796.605000px;}
.y12f{bottom:798.585000px;}
.y18d{bottom:802.005000px;}
.y1bf{bottom:804.525000px;}
.y165{bottom:806.685000px;}
.y55{bottom:807.585000px;}
.yd0{bottom:808.665000px;}
.y107{bottom:814.605000px;}
.y1e5{bottom:814.785000px;}
.y12e{bottom:818.385000px;}
.y18c{bottom:820.005000px;}
.y1be{bottom:824.325000px;}
.y164{bottom:826.485000px;}
.y54{bottom:827.385000px;}
.ycf{bottom:828.465000px;}
.y106{bottom:832.605000px;}
.y18a{bottom:838.005000px;}
.y12d{bottom:838.185000px;}
.y1bd{bottom:844.350000px;}
.ye{bottom:844.890000px;}
.y1e4{bottom:845.430000px;}
.y163{bottom:846.330000px;}
.y53{bottom:847.230000px;}
.yce{bottom:848.310000px;}
.y105{bottom:850.650000px;}
.y189{bottom:857.310000px;}
.y1bc{bottom:864.150000px;}
.y162{bottom:866.130000px;}
.y52{bottom:867.030000px;}
.ycd{bottom:868.110000px;}
.y104{bottom:868.650000px;}
.yd{bottom:874.770000px;}
.y188{bottom:875.310000px;}
.y1e3{bottom:876.030000px;}
.y1bb{bottom:883.950000px;}
.y161{bottom:886.110000px;}
.y103{bottom:886.650000px;}
.y51{bottom:886.830000px;}
.ycc{bottom:888.090000px;}
.y187{bottom:893.850000px;}
.yc{bottom:899.790000px;}
.y1ba{bottom:903.750000px;}
.y102{bottom:904.650000px;}
.y160{bottom:905.910000px;}
.y50{bottom:906.810000px;}
.ycb{bottom:907.890000px;}
.y186{bottom:917.610000px;}
.yb{bottom:919.590000px;}
.y101{bottom:922.650000px;}
.y1b9{bottom:923.550000px;}
.y15f{bottom:925.710000px;}
.y4f{bottom:926.610000px;}
.yca{bottom:927.690000px;}
.ya{bottom:934.710000px;}
.y100{bottom:940.650000px;}
.y1b8{bottom:943.530000px;}
.y15e{bottom:945.510000px;}
.y4e{bottom:946.410000px;}
.yc9{bottom:947.490000px;}
.y9{bottom:956.130000px;}
.yff{bottom:958.650000px;}
.y1b7{bottom:963.330000px;}
.y15d{bottom:965.310000px;}
.y4d{bottom:966.210000px;}
.yc8{bottom:967.290000px;}
.yfd{bottom:976.650000px;}
.y1b6{bottom:978.090000px;}
.y8{bottom:979.530000px;}
.y15b{bottom:980.250000px;}
.yc7{bottom:982.230000px;}
.y4c{bottom:986.010000px;}
.y1b4{bottom:996.090000px;}
.yc4{bottom:1000.230000px;}
.yfc{bottom:1000.950000px;}
.y4b{bottom:1005.990000px;}
.y15a{bottom:1009.590000px;}
.y7{bottom:1011.210000px;}
.y1b3{bottom:1016.610000px;}
.yfa{bottom:1018.950000px;}
.y4a{bottom:1025.790000px;}
.y159{bottom:1027.590000px;}
.y1b2{bottom:1034.610000px;}
.yf9{bottom:1040.550000px;}
.y49{bottom:1045.590000px;}
.y5{bottom:1051.170000px;}
.yc3{bottom:1052.610000px;}
.y157{bottom:1063.950000px;}
.yf8{bottom:1064.490000px;}
.y48{bottom:1065.390000px;}
.yc2{bottom:1070.610000px;}
.y4{bottom:1081.950000px;}
.yf7{bottom:1082.490000px;}
.y156{bottom:1083.030000px;}
.y47{bottom:1085.190000px;}
.yc1{bottom:1088.610000px;}
.y152{bottom:1101.030000px;}
.y46{bottom:1104.990000px;}
.yf6{bottom:1105.710000px;}
.yc0{bottom:1106.610000px;}
.y3{bottom:1112.730000px;}
.y154{bottom:1119.030000px;}
.yf4{bottom:1123.740000px;}
.ybf{bottom:1124.640000px;}
.y45{bottom:1125.000000px;}
.ybe{bottom:1142.640000px;}
.y2{bottom:1143.720000px;}
.y44{bottom:1144.800000px;}
.ybd{bottom:1160.640000px;}
.y43{bottom:1164.600000px;}
.y1{bottom:1177.560000px;}
.y42{bottom:1193.400000px;}
.h16{height:17.100000px;}
.h14{height:17.280000px;}
.h18{height:17.316000px;}
.h26{height:17.460000px;}
.h2b{height:17.640000px;}
.h27{height:17.820000px;}
.h21{height:18.180000px;}
.h2a{height:18.360000px;}
.h2d{height:18.540000px;}
.h2f{height:18.576000px;}
.h17{height:18.900000px;}
.h29{height:19.296000px;}
.h33{height:19.800000px;}
.h31{height:19.836000px;}
.h13{height:20.340000px;}
.h32{height:20.520000px;}
.h23{height:20.700000px;}
.h15{height:21.060000px;}
.h19{height:21.600000px;}
.ha{height:21.780000px;}
.h1a{height:21.960000px;}
.h2e{height:22.140000px;}
.h20{height:22.320000px;}
.h22{height:22.500000px;}
.h1b{height:23.220000px;}
.h24{height:23.580000px;}
.h30{height:23.940000px;}
.h8{height:27.907031px;}
.h2c{height:28.620000px;}
.h12{height:34.560000px;}
.h1f{height:34.740000px;}
.h28{height:37.296000px;}
.h6{height:42.164648px;}
.h9{height:42.894141px;}
.hf{height:43.506914px;}
.h1d{height:45.024258px;}
.hd{height:46.736719px;}
.h4{height:47.545312px;}
.h34{height:48.787031px;}
.hc{height:49.255313px;}
.h1c{height:51.660000px;}
.h3{height:51.679688px;}
.h11{height:51.696000px;}
.h7{height:53.224453px;}
.he{height:65.884219px;}
.h5{height:67.565039px;}
.h25{height:69.120000px;}
.h2{height:76.201172px;}
.h10{height:86.976000px;}
.h1e{height:87.300000px;}
.hb{height:313.635000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3a{width:37.440000px;}
.w34{width:37.620000px;}
.w36{width:37.800000px;}
.w39{width:37.836000px;}
.w2b{width:46.440000px;}
.w29{width:46.620000px;}
.w2c{width:46.656000px;}
.w27{width:53.280000px;}
.w2d{width:62.820000px;}
.w26{width:66.780000px;}
.w2a{width:66.816000px;}
.w37{width:72.720000px;}
.w35{width:72.756000px;}
.w38{width:72.936000px;}
.w33{width:73.080000px;}
.w28{width:73.656000px;}
.w17{width:74.556000px;}
.wd{width:77.796000px;}
.w20{width:80.316000px;}
.w18{width:81.900000px;}
.w1f{width:82.080000px;}
.w19{width:82.116000px;}
.w1e{width:82.260000px;}
.w1d{width:82.296000px;}
.w2e{width:84.816000px;}
.we{width:85.320000px;}
.w1c{width:89.100000px;}
.w15{width:93.816000px;}
.w16{width:95.940000px;}
.wb{width:97.776000px;}
.wc{width:100.080000px;}
.w9{width:100.296000px;}
.w13{width:105.876000px;}
.w31{width:111.060000px;}
.w30{width:111.276000px;}
.w2f{width:111.420000px;}
.w32{width:112.680000px;}
.w23{width:114.120000px;}
.w24{width:114.156000px;}
.w14{width:114.300000px;}
.wa{width:119.160000px;}
.w21{width:120.960000px;}
.w22{width:120.996000px;}
.w40{width:121.320000px;}
.wf{width:126.936000px;}
.w41{width:128.196000px;}
.w25{width:130.320000px;}
.w5{width:142.236000px;}
.w3f{width:148.716000px;}
.w3b{width:152.850000px;}
.w12{width:157.170000px;}
.w8{width:163.830000px;}
.w4{width:169.950000px;}
.w11{width:190.470000px;}
.w3e{width:194.610000px;}
.w7{width:198.570000px;}
.w6{width:220.170000px;}
.w10{width:220.890000px;}
.w3d{width:222.330000px;}
.w1b{width:331.050000px;}
.w1a{width:351.795000px;}
.w3c{width:417.675000px;}
.w3{width:625.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x22{left:46.800000px;}
.x2{left:48.780000px;}
.x1{left:54.179987px;}
.x12{left:55.439987px;}
.x18{left:63.360000px;}
.x31{left:67.500000px;}
.x2e{left:68.759987px;}
.x30{left:70.559987px;}
.x5{left:75.239987px;}
.x42{left:79.199987px;}
.x43{left:80.999987px;}
.xc{left:82.980000px;}
.x21{left:93.419987px;}
.x6{left:96.479987px;}
.x13{left:97.560000px;}
.x7{left:108.035987px;}
.x3d{left:116.855987px;}
.x23{left:127.836000px;}
.x19{left:146.196000px;}
.x32{left:153.030000px;}
.x3a{left:160.950000px;}
.x3e{left:171.930000px;}
.x28{left:195.510000px;}
.xd{left:225.930000px;}
.xa{left:238.889987px;}
.x1b{left:243.030000px;}
.x24{left:249.510000px;}
.x33{left:265.170000px;}
.x3b{left:314.535000px;}
.x3f{left:321.375000px;}
.x29{left:323.895000px;}
.x1c{left:325.875000px;}
.xf{left:326.955000px;}
.x15{left:331.815000px;}
.x9{left:335.954987px;}
.x36{left:338.655000px;}
.x25{left:371.235000px;}
.x34{left:377.175000px;}
.x1d{left:415.695000px;}
.x2a{left:438.735000px;}
.x40{left:443.595000px;}
.xb{left:446.474987px;}
.x37{left:450.615000px;}
.x26{left:486.075000px;}
.x35{left:488.955000px;}
.x1a{left:498.705000px;}
.x3c{left:537.585000px;}
.x16{left:541.365000px;}
.x10{left:545.325000px;}
.x2b{left:553.785000px;}
.x38{left:562.605000px;}
.x41{left:572.505000px;}
.x1e{left:581.685000px;}
.x27{left:601.125000px;}
.x14{left:638.205000px;}
.xe{left:646.125000px;}
.x1f{left:664.485000px;}
.x2c{left:668.625000px;}
.x4{left:674.385000px;}
.x17{left:713.490000px;}
.x8{left:715.469987px;}
.x11{left:724.650000px;}
.x2f{left:730.049987px;}
.x20{left:747.510000px;}
.x2d{left:783.510000px;}
.x39{left:786.390000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1e{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.367467pt;}
.ls11{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls16{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls7{letter-spacing:3.152640pt;}
.ls14{letter-spacing:3.360000pt;}
.ls8{letter-spacing:5.712640pt;}
.ls1d{letter-spacing:9.760000pt;}
.ls1f{letter-spacing:10.192640pt;}
.ls6{letter-spacing:17.872640pt;}
.ls1a{letter-spacing:19.152640pt;}
.ls1b{letter-spacing:22.352640pt;}
.ls5{letter-spacing:32.592640pt;}
.ls19{letter-spacing:33.872640pt;}
.ls1c{letter-spacing:37.200640pt;}
.ls18{letter-spacing:48.592640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.800000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1934.398080pt;}
._3{margin-left:-1249.963520pt;}
._5{margin-left:-888.381440pt;}
._4{margin-left:-867.302400pt;}
._6{margin-left:-457.909760pt;}
._7{margin-left:-5.288960pt;}
._8{margin-left:-4.003840pt;}
._13{margin-left:-3.082240pt;}
._12{margin-left:-1.911680pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.106560pt;}
._b{width:2.148267pt;}
._c{width:3.718400pt;}
._10{width:4.754133pt;}
._e{width:6.507307pt;}
._f{width:7.808640pt;}
._15{width:9.614720pt;}
._16{width:10.535680pt;}
._14{width:12.058240pt;}
._11{width:14.767360pt;}
._d{width:16.201600pt;}
._1e{width:21.726080pt;}
._1a{width:24.382080pt;}
._19{width:26.028800pt;}
._1f{width:27.516160pt;}
._18{width:30.413440pt;}
._17{width:31.520000pt;}
._9{width:39.921280pt;}
._a{width:40.942720pt;}
._1d{width:53.120000pt;}
._1b{width:55.988480pt;}
._1c{width:61.088000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:2.880000pt;}
.y111{bottom:3.040000pt;}
.yef{bottom:3.200000pt;}
.y13b{bottom:3.360000pt;}
.y1f{bottom:3.520000pt;}
.yf5{bottom:3.680000pt;}
.y158{bottom:3.840000pt;}
.y17d{bottom:4.000000pt;}
.y18b{bottom:4.040000pt;}
.yb0{bottom:4.320000pt;}
.y155{bottom:4.666667pt;}
.y1b5{bottom:5.120000pt;}
.y1a9{bottom:5.280000pt;}
.yf{bottom:5.600000pt;}
.yac{bottom:5.760000pt;}
.y1af{bottom:5.914667pt;}
.yfb{bottom:6.080000pt;}
.ya6{bottom:6.240000pt;}
.yb3{bottom:6.720000pt;}
.y181{bottom:6.880000pt;}
.yb5{bottom:7.040000pt;}
.y183{bottom:7.200000pt;}
.y138{bottom:7.360000pt;}
.yf1{bottom:7.520000pt;}
.yb7{bottom:8.160000pt;}
.yfe{bottom:8.480000pt;}
.y190{bottom:8.800000pt;}
.y15c{bottom:12.960000pt;}
.yc6{bottom:18.080000pt;}
.ya1{bottom:18.240000pt;}
.y9f{bottom:18.266667pt;}
.yee{bottom:18.560000pt;}
.y153{bottom:20.666667pt;}
.y2b{bottom:24.986667pt;}
.y1e{bottom:29.146667pt;}
.yc5{bottom:33.440000pt;}
.y9e{bottom:33.466667pt;}
.y10f{bottom:33.600000pt;}
.y2a{bottom:44.506667pt;}
.y10e{bottom:48.960000pt;}
.y1d{bottom:54.746667pt;}
.y6{bottom:59.392000pt;}
.y29{bottom:63.866667pt;}
.y9c{bottom:64.826667pt;}
.yec{bottom:65.120000pt;}
.y1c{bottom:72.346667pt;}
.y28{bottom:83.226667pt;}
.y41{bottom:85.312000pt;}
.y9a{bottom:89.312000pt;}
.y185{bottom:89.472000pt;}
.y1b{bottom:89.946667pt;}
.ybc{bottom:95.232000pt;}
.y151{bottom:95.392000pt;}
.y12c{bottom:95.712000pt;}
.y1e2{bottom:97.952000pt;}
.y1fb{bottom:98.272000pt;}
.y1b1{bottom:98.592000pt;}
.y27{bottom:102.586667pt;}
.y184{bottom:102.592000pt;}
.y40{bottom:102.912000pt;}
.yf3{bottom:106.592000pt;}
.y99{bottom:106.912000pt;}
.y1a{bottom:107.706667pt;}
.ybb{bottom:111.232000pt;}
.y150{bottom:112.992000pt;}
.y12b{bottom:113.472000pt;}
.y1b0{bottom:114.592000pt;}
.y1e1{bottom:115.552000pt;}
.y77{bottom:118.272000pt;}
.y3f{bottom:120.672000pt;}
.y182{bottom:121.792000pt;}
.y26{bottom:121.946667pt;}
.yf2{bottom:122.592000pt;}
.y98{bottom:124.672000pt;}
.y19{bottom:125.306667pt;}
.y1fa{bottom:125.632000pt;}
.yba{bottom:127.232000pt;}
.y14f{bottom:130.592000pt;}
.y12a{bottom:131.072000pt;}
.y1e0{bottom:133.312000pt;}
.y76{bottom:135.866667pt;}
.y3e{bottom:138.266667pt;}
.yf0{bottom:138.586667pt;}
.y25{bottom:141.466667pt;}
.y180{bottom:142.106667pt;}
.y97{bottom:142.266667pt;}
.y18{bottom:142.906667pt;}
.yb9{bottom:143.226667pt;}
.y14e{bottom:148.346667pt;}
.y129{bottom:148.666667pt;}
.y1ae{bottom:149.626667pt;}
.y1df{bottom:150.906667pt;}
.y1f9{bottom:152.826667pt;}
.y75{bottom:153.466667pt;}
.y3d{bottom:155.866667pt;}
.yb8{bottom:159.226667pt;}
.y96{bottom:159.866667pt;}
.y17{bottom:160.506667pt;}
.y24{bottom:160.826667pt;}
.y17f{bottom:162.106667pt;}
.y1ad{bottom:165.626667pt;}
.y14d{bottom:165.946667pt;}
.y128{bottom:166.266667pt;}
.y1de{bottom:168.506667pt;}
.y74{bottom:171.066667pt;}
.y3c{bottom:173.466667pt;}
.yb6{bottom:175.226667pt;}
.y95{bottom:177.466667pt;}
.y16{bottom:178.106667pt;}
.y1f8{bottom:180.026667pt;}
.y1ac{bottom:181.626667pt;}
.y14c{bottom:183.546667pt;}
.y127{bottom:183.866667pt;}
.y1dd{bottom:186.106667pt;}
.y73{bottom:188.826667pt;}
.yed{bottom:190.906667pt;}
.y3b{bottom:191.066667pt;}
.y23{bottom:193.466667pt;}
.y17e{bottom:194.106667pt;}
.y94{bottom:195.066667pt;}
.y15{bottom:195.866667pt;}
.yb4{bottom:196.506667pt;}
.y1ab{bottom:197.626667pt;}
.y14b{bottom:201.146667pt;}
.y126{bottom:201.626667pt;}
.y1dc{bottom:203.706667pt;}
.y72{bottom:206.426667pt;}
.y1f7{bottom:207.226667pt;}
.y3a{bottom:208.826667pt;}
.y17c{bottom:210.106667pt;}
.y93{bottom:212.826667pt;}
.y14{bottom:213.466667pt;}
.y1aa{bottom:213.626667pt;}
.yb2{bottom:216.666667pt;}
.y14a{bottom:218.746667pt;}
.y125{bottom:219.226667pt;}
.y1db{bottom:221.466667pt;}
.y71{bottom:224.026667pt;}
.y22{bottom:226.266667pt;}
.y39{bottom:226.426667pt;}
.y17b{bottom:227.226667pt;}
.y1a8{bottom:229.946667pt;}
.y92{bottom:230.426667pt;}
.y13{bottom:231.066667pt;}
.y1f6{bottom:234.426667pt;}
.yb1{bottom:236.506667pt;}
.y124{bottom:236.826667pt;}
.y1da{bottom:239.066667pt;}
.y70{bottom:241.626667pt;}
.yeb{bottom:242.626667pt;}
.y38{bottom:244.066667pt;}
.y21{bottom:245.626667pt;}
.y91{bottom:248.066667pt;}
.y17a{bottom:248.386667pt;}
.y12{bottom:248.666667pt;}
.yaf{bottom:252.546667pt;}
.y149{bottom:254.146667pt;}
.y123{bottom:254.466667pt;}
.y1d9{bottom:256.706667pt;}
.y6f{bottom:259.266667pt;}
.yea{bottom:260.386667pt;}
.y37{bottom:261.666667pt;}
.y1a7{bottom:264.386667pt;}
.y20{bottom:264.986667pt;}
.y90{bottom:265.666667pt;}
.y179{bottom:265.986667pt;}
.y11{bottom:266.266667pt;}
.yae{bottom:269.986667pt;}
.y148{bottom:271.746667pt;}
.y122{bottom:272.066667pt;}
.y1d8{bottom:274.306667pt;}
.y6e{bottom:277.026667pt;}
.ye9{bottom:277.986667pt;}
.y36{bottom:279.266667pt;}
.y1a6{bottom:280.386667pt;}
.y8f{bottom:283.266667pt;}
.y178{bottom:283.586667pt;}
.y1f5{bottom:288.866667pt;}
.yad{bottom:289.346667pt;}
.y121{bottom:289.826667pt;}
.y1d7{bottom:291.906667pt;}
.y6d{bottom:294.626667pt;}
.ye8{bottom:295.586667pt;}
.y1a5{bottom:296.386667pt;}
.y35{bottom:297.026667pt;}
.y8e{bottom:301.026667pt;}
.y177{bottom:301.346667pt;}
.yab{bottom:305.346667pt;}
.y147{bottom:306.946667pt;}
.y120{bottom:307.426667pt;}
.y1d6{bottom:309.666667pt;}
.y6c{bottom:312.226667pt;}
.y1a4{bottom:312.386667pt;}
.ye7{bottom:313.186667pt;}
.y34{bottom:314.626667pt;}
.y1f4{bottom:316.066667pt;}
.y8d{bottom:318.626667pt;}
.y176{bottom:318.946667pt;}
.yaa{bottom:324.226667pt;}
.y146{bottom:324.706667pt;}
.y11f{bottom:325.026667pt;}
.y1d5{bottom:327.266667pt;}
.y1a3{bottom:328.386667pt;}
.y6b{bottom:329.826667pt;}
.ye6{bottom:330.786667pt;}
.y33{bottom:332.226667pt;}
.y8c{bottom:336.226667pt;}
.y175{bottom:336.546667pt;}
.ya9{bottom:340.226667pt;}
.y145{bottom:342.306667pt;}
.y11e{bottom:342.626667pt;}
.y1f3{bottom:343.266667pt;}
.y1a2{bottom:344.386667pt;}
.y1d4{bottom:344.866667pt;}
.y6a{bottom:347.426667pt;}
.ye5{bottom:348.546667pt;}
.y32{bottom:349.826667pt;}
.y8b{bottom:353.826667pt;}
.y174{bottom:354.146667pt;}
.ya8{bottom:356.226667pt;}
.y144{bottom:359.906667pt;}
.y11d{bottom:360.226667pt;}
.y1a1{bottom:360.386667pt;}
.y1d3{bottom:362.466667pt;}
.y69{bottom:365.186667pt;}
.ye4{bottom:366.146667pt;}
.y31{bottom:367.426667pt;}
.y1f2{bottom:370.466667pt;}
.y8a{bottom:371.426667pt;}
.y173{bottom:371.746667pt;}
.ya7{bottom:372.226667pt;}
.y1a0{bottom:376.386667pt;}
.y143{bottom:377.506667pt;}
.y11c{bottom:377.986667pt;}
.y1d2{bottom:380.066667pt;}
.y68{bottom:382.786667pt;}
.ye3{bottom:383.746667pt;}
.y30{bottom:385.186667pt;}
.y89{bottom:386.786667pt;}
.ya5{bottom:388.226667pt;}
.y172{bottom:389.346667pt;}
.y142{bottom:395.106667pt;}
.y11b{bottom:395.586667pt;}
.y19f{bottom:396.226667pt;}
.y1f1{bottom:397.666667pt;}
.y1d1{bottom:397.826667pt;}
.y67{bottom:400.386667pt;}
.ye2{bottom:401.346667pt;}
.y2f{bottom:402.786667pt;}
.y171{bottom:407.106667pt;}
.ya4{bottom:407.586667pt;}
.y88{bottom:410.146667pt;}
.y141{bottom:412.866667pt;}
.y11a{bottom:413.186667pt;}
.y1d0{bottom:415.426667pt;}
.y66{bottom:417.986667pt;}
.ye1{bottom:418.946667pt;}
.y2e{bottom:420.386667pt;}
.ya3{bottom:423.586667pt;}
.y170{bottom:424.706667pt;}
.y1f0{bottom:424.866667pt;}
.y87{bottom:425.506667pt;}
.y140{bottom:425.986667pt;}
.y19e{bottom:429.186667pt;}
.y119{bottom:430.786667pt;}
.y1cf{bottom:433.026667pt;}
.y65{bottom:435.586667pt;}
.ye0{bottom:436.706667pt;}
.y2d{bottom:437.986667pt;}
.ya2{bottom:439.586667pt;}
.y86{bottom:440.866667pt;}
.y16f{bottom:442.306667pt;}
.y13f{bottom:446.146667pt;}
.y118{bottom:448.386667pt;}
.y19d{bottom:450.306667pt;}
.y1ce{bottom:450.626667pt;}
.y1ef{bottom:452.066667pt;}
.y64{bottom:453.346667pt;}
.ydf{bottom:454.306667pt;}
.y2c{bottom:455.586667pt;}
.y85{bottom:456.226667pt;}
.y9b{bottom:458.306667pt;}
.y16e{bottom:459.906667pt;}
.y13e{bottom:462.146667pt;}
.y117{bottom:466.146667pt;}
.y19c{bottom:467.906667pt;}
.y1cd{bottom:468.226667pt;}
.y10{bottom:470.146667pt;}
.y63{bottom:470.946667pt;}
.y84{bottom:471.426667pt;}
.yde{bottom:471.906667pt;}
.y16d{bottom:477.506667pt;}
.y13d{bottom:478.626667pt;}
.y1ee{bottom:479.426667pt;}
.y116{bottom:483.746667pt;}
.y19b{bottom:485.506667pt;}
.y1cc{bottom:485.986667pt;}
.y83{bottom:486.786667pt;}
.y62{bottom:488.546667pt;}
.ydd{bottom:489.506667pt;}
.y9d{bottom:489.666667pt;}
.y13c{bottom:494.653333pt;}
.y16c{bottom:495.293333pt;}
.y115{bottom:501.373333pt;}
.y19a{bottom:503.133333pt;}
.y1cb{bottom:503.613333pt;}
.y82{bottom:504.413333pt;}
.y61{bottom:506.173333pt;}
.y1ed{bottom:506.653333pt;}
.ydc{bottom:507.133333pt;}
.y16b{bottom:507.773333pt;}
.y13a{bottom:510.653333pt;}
.y114{bottom:518.973333pt;}
.y199{bottom:520.893333pt;}
.y1ca{bottom:521.213333pt;}
.y81{bottom:522.173333pt;}
.y60{bottom:523.773333pt;}
.ydb{bottom:524.893333pt;}
.y139{bottom:527.133333pt;}
.y1ec{bottom:533.853333pt;}
.y113{bottom:536.573333pt;}
.y198{bottom:538.493333pt;}
.y1c9{bottom:538.813333pt;}
.y80{bottom:539.773333pt;}
.y5f{bottom:541.533333pt;}
.yda{bottom:542.493333pt;}
.y137{bottom:543.133333pt;}
.y112{bottom:549.853333pt;}
.y197{bottom:556.093333pt;}
.y1c8{bottom:556.413333pt;}
.y7f{bottom:557.373333pt;}
.y5e{bottom:559.133333pt;}
.yd9{bottom:560.093333pt;}
.y1eb{bottom:561.053333pt;}
.y110{bottom:565.853333pt;}
.y136{bottom:568.733333pt;}
.y196{bottom:573.693333pt;}
.y1c7{bottom:574.173333pt;}
.y7e{bottom:574.973333pt;}
.y5d{bottom:576.733333pt;}
.yd8{bottom:577.693333pt;}
.y10d{bottom:582.013333pt;}
.y135{bottom:586.333333pt;}
.y1ea{bottom:588.253333pt;}
.y195{bottom:591.293333pt;}
.y1c6{bottom:591.773333pt;}
.y7d{bottom:592.573333pt;}
.y5c{bottom:594.333333pt;}
.yd7{bottom:595.293333pt;}
.y134{bottom:603.933333pt;}
.y194{bottom:609.053333pt;}
.y1c5{bottom:609.373333pt;}
.y7c{bottom:610.173333pt;}
.y5b{bottom:611.933333pt;}
.yd6{bottom:613.053333pt;}
.y1e9{bottom:615.453333pt;}
.y133{bottom:621.693333pt;}
.y193{bottom:626.653333pt;}
.y1c4{bottom:626.973333pt;}
.y7b{bottom:627.933333pt;}
.y16a{bottom:628.893333pt;}
.y5a{bottom:629.693333pt;}
.yd5{bottom:630.653333pt;}
.y132{bottom:639.293333pt;}
.y1e8{bottom:642.653333pt;}
.y10c{bottom:644.093333pt;}
.y192{bottom:644.253333pt;}
.y1c3{bottom:644.573333pt;}
.y7a{bottom:645.533333pt;}
.y169{bottom:646.493333pt;}
.y59{bottom:647.293333pt;}
.yd4{bottom:648.253333pt;}
.y131{bottom:656.893333pt;}
.y10b{bottom:660.093333pt;}
.y191{bottom:661.853333pt;}
.y1c2{bottom:662.333333pt;}
.y79{bottom:663.133333pt;}
.y168{bottom:664.093333pt;}
.y58{bottom:664.893333pt;}
.yd3{bottom:665.853333pt;}
.y1e7{bottom:669.853333pt;}
.y130{bottom:674.493333pt;}
.y18f{bottom:674.973333pt;}
.y78{bottom:675.613333pt;}
.y10a{bottom:676.093333pt;}
.y1c1{bottom:679.933333pt;}
.y167{bottom:681.693333pt;}
.y57{bottom:682.493333pt;}
.yd2{bottom:683.453333pt;}
.y109{bottom:692.093333pt;}
.y18e{bottom:696.893333pt;}
.y1e6{bottom:697.053333pt;}
.y1c0{bottom:697.533333pt;}
.y166{bottom:699.453333pt;}
.y56{bottom:700.093333pt;}
.yd1{bottom:701.213333pt;}
.y108{bottom:708.093333pt;}
.y12f{bottom:709.853333pt;}
.y18d{bottom:712.893333pt;}
.y1bf{bottom:715.133333pt;}
.y165{bottom:717.053333pt;}
.y55{bottom:717.853333pt;}
.yd0{bottom:718.813333pt;}
.y107{bottom:724.093333pt;}
.y1e5{bottom:724.253333pt;}
.y12e{bottom:727.453333pt;}
.y18c{bottom:728.893333pt;}
.y1be{bottom:732.733333pt;}
.y164{bottom:734.653333pt;}
.y54{bottom:735.453333pt;}
.ycf{bottom:736.413333pt;}
.y106{bottom:740.093333pt;}
.y18a{bottom:744.893333pt;}
.y12d{bottom:745.053333pt;}
.y1bd{bottom:750.533333pt;}
.ye{bottom:751.013333pt;}
.y1e4{bottom:751.493333pt;}
.y163{bottom:752.293333pt;}
.y53{bottom:753.093333pt;}
.yce{bottom:754.053333pt;}
.y105{bottom:756.133333pt;}
.y189{bottom:762.053333pt;}
.y1bc{bottom:768.133333pt;}
.y162{bottom:769.893333pt;}
.y52{bottom:770.693333pt;}
.ycd{bottom:771.653333pt;}
.y104{bottom:772.133333pt;}
.yd{bottom:777.573333pt;}
.y188{bottom:778.053333pt;}
.y1e3{bottom:778.693333pt;}
.y1bb{bottom:785.733333pt;}
.y161{bottom:787.653333pt;}
.y103{bottom:788.133333pt;}
.y51{bottom:788.293333pt;}
.ycc{bottom:789.413333pt;}
.y187{bottom:794.533333pt;}
.yc{bottom:799.813333pt;}
.y1ba{bottom:803.333333pt;}
.y102{bottom:804.133333pt;}
.y160{bottom:805.253333pt;}
.y50{bottom:806.053333pt;}
.ycb{bottom:807.013333pt;}
.y186{bottom:815.653333pt;}
.yb{bottom:817.413333pt;}
.y101{bottom:820.133333pt;}
.y1b9{bottom:820.933333pt;}
.y15f{bottom:822.853333pt;}
.y4f{bottom:823.653333pt;}
.yca{bottom:824.613333pt;}
.ya{bottom:830.853333pt;}
.y100{bottom:836.133333pt;}
.y1b8{bottom:838.693333pt;}
.y15e{bottom:840.453333pt;}
.y4e{bottom:841.253333pt;}
.yc9{bottom:842.213333pt;}
.y9{bottom:849.893333pt;}
.yff{bottom:852.133333pt;}
.y1b7{bottom:856.293333pt;}
.y15d{bottom:858.053333pt;}
.y4d{bottom:858.853333pt;}
.yc8{bottom:859.813333pt;}
.yfd{bottom:868.133333pt;}
.y1b6{bottom:869.413333pt;}
.y8{bottom:870.693333pt;}
.y15b{bottom:871.333333pt;}
.yc7{bottom:873.093333pt;}
.y4c{bottom:876.453333pt;}
.y1b4{bottom:885.413333pt;}
.yc4{bottom:889.093333pt;}
.yfc{bottom:889.733333pt;}
.y4b{bottom:894.213333pt;}
.y15a{bottom:897.413333pt;}
.y7{bottom:898.853333pt;}
.y1b3{bottom:903.653333pt;}
.yfa{bottom:905.733333pt;}
.y4a{bottom:911.813333pt;}
.y159{bottom:913.413333pt;}
.y1b2{bottom:919.653333pt;}
.yf9{bottom:924.933333pt;}
.y49{bottom:929.413333pt;}
.y5{bottom:934.373333pt;}
.yc3{bottom:935.653333pt;}
.y157{bottom:945.733333pt;}
.yf8{bottom:946.213333pt;}
.y48{bottom:947.013333pt;}
.yc2{bottom:951.653333pt;}
.y4{bottom:961.733333pt;}
.yf7{bottom:962.213333pt;}
.y156{bottom:962.693333pt;}
.y47{bottom:964.613333pt;}
.yc1{bottom:967.653333pt;}
.y152{bottom:978.693333pt;}
.y46{bottom:982.213333pt;}
.yf6{bottom:982.853333pt;}
.yc0{bottom:983.653333pt;}
.y3{bottom:989.093333pt;}
.y154{bottom:994.693333pt;}
.yf4{bottom:998.880000pt;}
.ybf{bottom:999.680000pt;}
.y45{bottom:1000.000000pt;}
.ybe{bottom:1015.680000pt;}
.y2{bottom:1016.640000pt;}
.y44{bottom:1017.600000pt;}
.ybd{bottom:1031.680000pt;}
.y43{bottom:1035.200000pt;}
.y1{bottom:1046.720000pt;}
.y42{bottom:1060.800000pt;}
.h16{height:15.200000pt;}
.h14{height:15.360000pt;}
.h18{height:15.392000pt;}
.h26{height:15.520000pt;}
.h2b{height:15.680000pt;}
.h27{height:15.840000pt;}
.h21{height:16.160000pt;}
.h2a{height:16.320000pt;}
.h2d{height:16.480000pt;}
.h2f{height:16.512000pt;}
.h17{height:16.800000pt;}
.h29{height:17.152000pt;}
.h33{height:17.600000pt;}
.h31{height:17.632000pt;}
.h13{height:18.080000pt;}
.h32{height:18.240000pt;}
.h23{height:18.400000pt;}
.h15{height:18.720000pt;}
.h19{height:19.200000pt;}
.ha{height:19.360000pt;}
.h1a{height:19.520000pt;}
.h2e{height:19.680000pt;}
.h20{height:19.840000pt;}
.h22{height:20.000000pt;}
.h1b{height:20.640000pt;}
.h24{height:20.960000pt;}
.h30{height:21.280000pt;}
.h8{height:24.806250pt;}
.h2c{height:25.440000pt;}
.h12{height:30.720000pt;}
.h1f{height:30.880000pt;}
.h28{height:33.152000pt;}
.h6{height:37.479688pt;}
.h9{height:38.128125pt;}
.hf{height:38.672812pt;}
.h1d{height:40.021563pt;}
.hd{height:41.543750pt;}
.h4{height:42.262500pt;}
.h34{height:43.366250pt;}
.hc{height:43.782500pt;}
.h1c{height:45.920000pt;}
.h3{height:45.937500pt;}
.h11{height:45.952000pt;}
.h7{height:47.310625pt;}
.he{height:58.563750pt;}
.h5{height:60.057813pt;}
.h25{height:61.440000pt;}
.h2{height:67.734375pt;}
.h10{height:77.312000pt;}
.h1e{height:77.600000pt;}
.hb{height:278.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3a{width:33.280000pt;}
.w34{width:33.440000pt;}
.w36{width:33.600000pt;}
.w39{width:33.632000pt;}
.w2b{width:41.280000pt;}
.w29{width:41.440000pt;}
.w2c{width:41.472000pt;}
.w27{width:47.360000pt;}
.w2d{width:55.840000pt;}
.w26{width:59.360000pt;}
.w2a{width:59.392000pt;}
.w37{width:64.640000pt;}
.w35{width:64.672000pt;}
.w38{width:64.832000pt;}
.w33{width:64.960000pt;}
.w28{width:65.472000pt;}
.w17{width:66.272000pt;}
.wd{width:69.152000pt;}
.w20{width:71.392000pt;}
.w18{width:72.800000pt;}
.w1f{width:72.960000pt;}
.w19{width:72.992000pt;}
.w1e{width:73.120000pt;}
.w1d{width:73.152000pt;}
.w2e{width:75.392000pt;}
.we{width:75.840000pt;}
.w1c{width:79.200000pt;}
.w15{width:83.392000pt;}
.w16{width:85.280000pt;}
.wb{width:86.912000pt;}
.wc{width:88.960000pt;}
.w9{width:89.152000pt;}
.w13{width:94.112000pt;}
.w31{width:98.720000pt;}
.w30{width:98.912000pt;}
.w2f{width:99.040000pt;}
.w32{width:100.160000pt;}
.w23{width:101.440000pt;}
.w24{width:101.472000pt;}
.w14{width:101.600000pt;}
.wa{width:105.920000pt;}
.w21{width:107.520000pt;}
.w22{width:107.552000pt;}
.w40{width:107.840000pt;}
.wf{width:112.832000pt;}
.w41{width:113.952000pt;}
.w25{width:115.840000pt;}
.w5{width:126.432000pt;}
.w3f{width:132.192000pt;}
.w3b{width:135.866667pt;}
.w12{width:139.706667pt;}
.w8{width:145.626667pt;}
.w4{width:151.066667pt;}
.w11{width:169.306667pt;}
.w3e{width:172.986667pt;}
.w7{width:176.506667pt;}
.w6{width:195.706667pt;}
.w10{width:196.346667pt;}
.w3d{width:197.626667pt;}
.w1b{width:294.266667pt;}
.w1a{width:312.706667pt;}
.w3c{width:371.266667pt;}
.w3{width:556.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x22{left:41.600000pt;}
.x2{left:43.360000pt;}
.x1{left:48.159988pt;}
.x12{left:49.279988pt;}
.x18{left:56.320000pt;}
.x31{left:60.000000pt;}
.x2e{left:61.119988pt;}
.x30{left:62.719988pt;}
.x5{left:66.879988pt;}
.x42{left:70.399988pt;}
.x43{left:71.999988pt;}
.xc{left:73.760000pt;}
.x21{left:83.039988pt;}
.x6{left:85.759988pt;}
.x13{left:86.720000pt;}
.x7{left:96.031988pt;}
.x3d{left:103.871988pt;}
.x23{left:113.632000pt;}
.x19{left:129.952000pt;}
.x32{left:136.026667pt;}
.x3a{left:143.066667pt;}
.x3e{left:152.826667pt;}
.x28{left:173.786667pt;}
.xd{left:200.826667pt;}
.xa{left:212.346655pt;}
.x1b{left:216.026667pt;}
.x24{left:221.786667pt;}
.x33{left:235.706667pt;}
.x3b{left:279.586667pt;}
.x3f{left:285.666667pt;}
.x29{left:287.906667pt;}
.x1c{left:289.666667pt;}
.xf{left:290.626667pt;}
.x15{left:294.946667pt;}
.x9{left:298.626655pt;}
.x36{left:301.026667pt;}
.x25{left:329.986667pt;}
.x34{left:335.266667pt;}
.x1d{left:369.506667pt;}
.x2a{left:389.986667pt;}
.x40{left:394.306667pt;}
.xb{left:396.866655pt;}
.x37{left:400.546667pt;}
.x26{left:432.066667pt;}
.x35{left:434.626667pt;}
.x1a{left:443.293333pt;}
.x3c{left:477.853333pt;}
.x16{left:481.213333pt;}
.x10{left:484.733333pt;}
.x2b{left:492.253333pt;}
.x38{left:500.093333pt;}
.x41{left:508.893333pt;}
.x1e{left:517.053333pt;}
.x27{left:534.333333pt;}
.x14{left:567.293333pt;}
.xe{left:574.333333pt;}
.x1f{left:590.653333pt;}
.x2c{left:594.333333pt;}
.x4{left:599.453333pt;}
.x17{left:634.213333pt;}
.x8{left:635.973322pt;}
.x11{left:644.133333pt;}
.x2f{left:648.933322pt;}
.x20{left:664.453333pt;}
.x2d{left:696.453333pt;}
.x39{left:699.013333pt;}
}




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