
    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_93312d82553006252ab7addf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d34bcd83d4948d11efef2ac3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_de010ed26e630287d07b98f5.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_a06354c93d41e27addb26694.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_9f588b8b7c93df7e37eda60a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.401855;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_dffc5dd1407228b3ecd2e034.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_66d4e46c48408677cbf74400.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9240567ad90b39fd67d8fd25.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-76.320000px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.lsf{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.149760px;}
.lsd{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.720000px;}
.ls9{letter-spacing:13.140000px;}
.lse{letter-spacing:25.308000px;}
.lsc{letter-spacing:52.668000px;}
.ls1{letter-spacing:1234.740000px;}
.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;}
}
.ws3{word-spacing:-19.457280px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.wsa{word-spacing:-13.140000px;}
.ws8{word-spacing:-12.672000px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-14.185440px;}
._8{margin-left:-4.918080px;}
._3f{margin-left:-2.258160px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._6{width:2.867760px;}
._13{width:4.028784px;}
._f{width:5.226240px;}
._10{width:6.451440px;}
._a{width:7.459440px;}
._9{width:8.559600px;}
._e{width:10.292640px;}
._14{width:11.880000px;}
._12{width:13.924080px;}
._15{width:15.066000px;}
._d{width:16.236720px;}
._11{width:17.408160px;}
._1a{width:18.913680px;}
._1b{width:19.926000px;}
._b{width:21.206016px;}
._c{width:22.300656px;}
._16{width:23.760000px;}
._17{width:24.810000px;}
._18{width:26.568000px;}
._29{width:27.648000px;}
._24{width:28.836000px;}
._21{width:30.564000px;}
._1e{width:31.698000px;}
._1f{width:32.940000px;}
._23{width:34.128000px;}
._2c{width:35.154000px;}
._26{width:36.234000px;}
._19{width:38.178000px;}
._1c{width:39.984000px;}
._1d{width:41.958000px;}
._28{width:43.290000px;}
._2a{width:44.424000px;}
._22{width:46.224000px;}
._20{width:47.628000px;}
._25{width:48.816000px;}
._27{width:50.598000px;}
._2b{width:51.738000px;}
._2d{width:54.702000px;}
._2e{width:56.430000px;}
._30{width:57.672000px;}
._2f{width:58.752000px;}
._40{width:60.396000px;}
._37{width:64.530000px;}
._38{width:65.880000px;}
._43{width:67.248000px;}
._3a{width:68.376000px;}
._3e{width:69.450000px;}
._31{width:70.752000px;}
._3{width:73.152000px;}
._4{width:76.500000px;}
._36{width:79.866000px;}
._35{width:81.156000px;}
._32{width:89.040000px;}
._39{width:90.810000px;}
._3d{width:105.192000px;}
._3c{width:106.218000px;}
._41{width:107.514000px;}
._42{width:108.540000px;}
._3b{width:142.722000px;}
._33{width:149.094000px;}
._34{width:150.174000px;}
._5{width:202.500000px;}
._2{width:1037.280000px;}
.fc7{color:transparent;}
.fc6{color:rgb(54,95,145);}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc9{color:rgb(34,34,34);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y121{bottom:5.565000px;}
.y128{bottom:5.580000px;}
.y12e{bottom:5.760000px;}
.ye8{bottom:9.885000px;}
.yec{bottom:10.065000px;}
.yf5{bottom:10.080000px;}
.yf0{bottom:10.260000px;}
.y11b{bottom:15.105000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y12c{bottom:19.080000px;}
.y11c{bottom:19.605000px;}
.y120{bottom:23.385000px;}
.y127{bottom:23.580000px;}
.yeb{bottom:27.885000px;}
.yf4{bottom:27.900000px;}
.yee{bottom:28.065000px;}
.y129{bottom:28.110000px;}
.y122{bottom:36.885000px;}
.y4a{bottom:37.800000px;}
.y5{bottom:39.780000px;}
.y11f{bottom:41.205000px;}
.y126{bottom:41.430000px;}
.yea{bottom:45.885000px;}
.yf3{bottom:45.900000px;}
.y11e{bottom:59.025000px;}
.y124{bottom:59.205000px;}
.y1{bottom:60.660000px;}
.y47{bottom:86.580000px;}
.yf2{bottom:102.420000px;}
.y46{bottom:106.410000px;}
.y36{bottom:106.920000px;}
.y1af{bottom:107.460000px;}
.y87{bottom:108.180000px;}
.y190{bottom:108.360000px;}
.y163{bottom:110.160000px;}
.y37{bottom:114.120000px;}
.y12b{bottom:115.920000px;}
.y178{bottom:117.000000px;}
.y30{bottom:119.340000px;}
.y116{bottom:125.100000px;}
.y1ae{bottom:125.280000px;}
.y86{bottom:126.000000px;}
.y18f{bottom:126.180000px;}
.y45{bottom:126.210000px;}
.y35{bottom:127.080000px;}
.y162{bottom:127.980000px;}
.y4b{bottom:131.760000px;}
.y177{bottom:135.000000px;}
.y2f{bottom:139.500000px;}
.y115{bottom:143.100000px;}
.ybe{bottom:144.000000px;}
.y161{bottom:145.800000px;}
.y44{bottom:146.010000px;}
.y34{bottom:147.240000px;}
.y49{bottom:151.920000px;}
.y176{bottom:152.820000px;}
.y85{bottom:153.000000px;}
.y12a{bottom:156.960000px;}
.y2e{bottom:159.660000px;}
.y114{bottom:160.920000px;}
.y1ad{bottom:161.100000px;}
.ybd{bottom:161.820000px;}
.y18e{bottom:162.000000px;}
.y160{bottom:163.800000px;}
.yf1{bottom:164.160000px;}
.y43{bottom:165.810000px;}
.y33{bottom:167.400000px;}
.y175{bottom:170.640000px;}
.y84{bottom:170.820000px;}
.y113{bottom:178.740000px;}
.y1ac{bottom:178.920000px;}
.ybc{bottom:179.640000px;}
.y2d{bottom:179.820000px;}
.y125{bottom:180.000000px;}
.y48{bottom:180.720000px;}
.y15f{bottom:181.620000px;}
.y42{bottom:185.790000px;}
.y32{bottom:187.380000px;}
.y174{bottom:188.460000px;}
.y83{bottom:188.640000px;}
.yef{bottom:190.260000px;}
.y112{bottom:196.560000px;}
.y1ab{bottom:196.740000px;}
.ybb{bottom:197.460000px;}
.y18d{bottom:197.640000px;}
.y15e{bottom:199.440000px;}
.y2c{bottom:203.580000px;}
.y41{bottom:205.590000px;}
.y173{bottom:206.310000px;}
.y82{bottom:206.490000px;}
.y31{bottom:207.570000px;}
.y111{bottom:214.410000px;}
.y1aa{bottom:214.590000px;}
.yba{bottom:215.310000px;}
.y18c{bottom:215.490000px;}
.yed{bottom:216.405000px;}
.y15d{bottom:217.290000px;}
.y81{bottom:224.310000px;}
.y40{bottom:225.390000px;}
.y2b{bottom:226.110000px;}
.y110{bottom:232.230000px;}
.y1a9{bottom:232.410000px;}
.yb9{bottom:233.310000px;}
.y15c{bottom:235.110000px;}
.y123{bottom:238.905000px;}
.y172{bottom:242.130000px;}
.y80{bottom:242.310000px;}
.y2a{bottom:243.930000px;}
.y3f{bottom:245.190000px;}
.y10f{bottom:250.230000px;}
.yb8{bottom:251.130000px;}
.y18b{bottom:251.310000px;}
.y15b{bottom:252.930000px;}
.y171{bottom:259.950000px;}
.y7f{bottom:260.130000px;}
.ye9{bottom:260.325000px;}
.y3e{bottom:264.990000px;}
.y10e{bottom:268.050000px;}
.y1a8{bottom:268.230000px;}
.yb7{bottom:268.950000px;}
.y18a{bottom:269.130000px;}
.y15a{bottom:270.930000px;}
.y170{bottom:277.770000px;}
.y7e{bottom:277.950000px;}
.y3d{bottom:284.970000px;}
.y10d{bottom:285.870000px;}
.y1a7{bottom:286.050000px;}
.yb6{bottom:286.770000px;}
.y189{bottom:286.950000px;}
.y29{bottom:288.750000px;}
.y16f{bottom:295.590000px;}
.y7d{bottom:295.770000px;}
.y10c{bottom:303.690000px;}
.y1a6{bottom:303.870000px;}
.yb5{bottom:304.590000px;}
.y3c{bottom:304.770000px;}
.y28{bottom:306.570000px;}
.y16e{bottom:313.410000px;}
.y7c{bottom:313.590000px;}
.y11d{bottom:315.585000px;}
.y10b{bottom:321.510000px;}
.y1a5{bottom:321.690000px;}
.ye7{bottom:322.065000px;}
.yb4{bottom:322.410000px;}
.y188{bottom:322.590000px;}
.y27{bottom:324.390000px;}
.y3b{bottom:324.570000px;}
.y7b{bottom:331.410000px;}
.y10a{bottom:339.510000px;}
.yb3{bottom:340.410000px;}
.y159{bottom:342.210000px;}
.y26{bottom:342.390000px;}
.y3a{bottom:344.415000px;}
.y16d{bottom:349.230000px;}
.y7a{bottom:349.410000px;}
.ye6{bottom:351.210000px;}
.y109{bottom:357.330000px;}
.y1a4{bottom:357.510000px;}
.yb2{bottom:358.230000px;}
.y187{bottom:358.410000px;}
.y25{bottom:360.210000px;}
.y39{bottom:364.215000px;}
.ye5{bottom:366.690000px;}
.y79{bottom:367.230000px;}
.y16c{bottom:369.030000px;}
.y158{bottom:369.210000px;}
.y108{bottom:375.150000px;}
.y1a3{bottom:375.330000px;}
.yb1{bottom:376.050000px;}
.y186{bottom:376.230000px;}
.y24{bottom:378.030000px;}
.y78{bottom:385.050000px;}
.ye4{bottom:386.850000px;}
.y157{bottom:387.030000px;}
.y11a{bottom:392.265000px;}
.y107{bottom:392.970000px;}
.y1a2{bottom:393.150000px;}
.y185{bottom:394.050000px;}
.y38{bottom:394.635000px;}
.y23{bottom:397.650000px;}
.y16b{bottom:401.790000px;}
.y77{bottom:402.870000px;}
.y156{bottom:404.850000px;}
.y1a1{bottom:410.970000px;}
.y184{bottom:411.870000px;}
.ye3{bottom:419.610000px;}
.y106{bottom:419.790000px;}
.y76{bottom:420.690000px;}
.y22{bottom:421.410000px;}
.y155{bottom:422.670000px;}
.y119{bottom:428.250000px;}
.y1a0{bottom:428.790000px;}
.y183{bottom:429.690000px;}
.ye2{bottom:437.610000px;}
.y75{bottom:438.690000px;}
.y154{bottom:440.535000px;}
.y21{bottom:445.395000px;}
.y19f{bottom:446.655000px;}
.y182{bottom:447.735000px;}
.ye1{bottom:455.475000px;}
.y105{bottom:455.655000px;}
.yb0{bottom:456.555000px;}
.y153{bottom:458.355000px;}
.y19e{bottom:464.655000px;}
.y74{bottom:465.555000px;}
.y20{bottom:469.155000px;}
.ye0{bottom:473.295000px;}
.y104{bottom:473.475000px;}
.yaf{bottom:474.375000px;}
.y152{bottom:476.355000px;}
.y19d{bottom:482.475000px;}
.y73{bottom:483.375000px;}
.ydf{bottom:491.115000px;}
.y103{bottom:491.295000px;}
.yae{bottom:492.195000px;}
.y1f{bottom:492.915000px;}
.y151{bottom:494.175000px;}
.y19c{bottom:500.295000px;}
.y72{bottom:501.195000px;}
.yde{bottom:508.935000px;}
.y102{bottom:509.115000px;}
.yad{bottom:510.015000px;}
.y150{bottom:511.995000px;}
.y1e{bottom:516.675000px;}
.y16a{bottom:517.935000px;}
.y19b{bottom:518.115000px;}
.y71{bottom:519.015000px;}
.ydd{bottom:526.935000px;}
.yac{bottom:527.835000px;}
.y14f{bottom:529.815000px;}
.y169{bottom:535.935000px;}
.y70{bottom:536.835000px;}
.y1d{bottom:540.435000px;}
.ydc{bottom:544.755000px;}
.y101{bottom:544.935000px;}
.yab{bottom:545.835000px;}
.y14e{bottom:547.635000px;}
.y168{bottom:553.755000px;}
.y19a{bottom:553.935000px;}
.y6f{bottom:554.835000px;}
.y1c{bottom:562.215000px;}
.ydb{bottom:562.575000px;}
.y100{bottom:562.755000px;}
.yaa{bottom:563.655000px;}
.y14d{bottom:565.635000px;}
.y167{bottom:571.575000px;}
.y199{bottom:571.755000px;}
.y6e{bottom:572.655000px;}
.yda{bottom:580.395000px;}
.yff{bottom:580.575000px;}
.ya9{bottom:583.455000px;}
.y1b{bottom:588.495000px;}
.y166{bottom:589.395000px;}
.y198{bottom:589.575000px;}
.y6d{bottom:590.475000px;}
.yd9{bottom:598.215000px;}
.yfe{bottom:598.395000px;}
.y14c{bottom:601.275000px;}
.y165{bottom:607.215000px;}
.y197{bottom:607.395000px;}
.y6c{bottom:608.295000px;}
.yd8{bottom:616.035000px;}
.ya8{bottom:616.215000px;}
.y1a{bottom:616.395000px;}
.y14b{bottom:619.095000px;}
.y164{bottom:625.035000px;}
.y196{bottom:625.215000px;}
.y6b{bottom:626.115000px;}
.ya7{bottom:634.035000px;}
.y14a{bottom:636.915000px;}
.y118{bottom:643.035000px;}
.y6a{bottom:644.115000px;}
.y19{bottom:644.475000px;}
.yd7{bottom:651.855000px;}
.ya6{bottom:652.035000px;}
.y149{bottom:654.735000px;}
.y117{bottom:660.855000px;}
.y195{bottom:661.035000px;}
.y69{bottom:661.935000px;}
.y18{bottom:663.375000px;}
.ya5{bottom:669.855000px;}
.y148{bottom:672.735000px;}
.yd6{bottom:678.705000px;}
.y194{bottom:678.885000px;}
.y68{bottom:679.785000px;}
.y17{bottom:682.305000px;}
.ya4{bottom:687.705000px;}
.y147{bottom:690.585000px;}
.yd5{bottom:696.525000px;}
.y193{bottom:696.705000px;}
.y67{bottom:697.605000px;}
.ya3{bottom:705.525000px;}
.y146{bottom:708.405000px;}
.yd4{bottom:714.345000px;}
.y192{bottom:714.525000px;}
.y66{bottom:715.425000px;}
.ya2{bottom:723.345000px;}
.y16{bottom:726.225000px;}
.yd3{bottom:732.165000px;}
.y191{bottom:732.345000px;}
.y65{bottom:733.245000px;}
.ya1{bottom:741.165000px;}
.yd2{bottom:750.165000px;}
.y64{bottom:751.245000px;}
.y145{bottom:753.045000px;}
.ya0{bottom:759.165000px;}
.yd1{bottom:767.985000px;}
.yfd{bottom:768.165000px;}
.y63{bottom:769.065000px;}
.y144{bottom:771.045000px;}
.y15{bottom:772.485000px;}
.y9f{bottom:776.985000px;}
.yd0{bottom:785.805000px;}
.yfc{bottom:785.985000px;}
.y62{bottom:786.885000px;}
.y143{bottom:788.865000px;}
.y9e{bottom:794.805000px;}
.y14{bottom:800.205000px;}
.ycf{bottom:803.625000px;}
.yfb{bottom:803.805000px;}
.y61{bottom:804.705000px;}
.y142{bottom:806.685000px;}
.y9d{bottom:812.625000px;}
.yce{bottom:821.445000px;}
.yfa{bottom:821.625000px;}
.y60{bottom:822.525000px;}
.y141{bottom:824.505000px;}
.y9c{bottom:830.445000px;}
.ycd{bottom:839.445000px;}
.y181{bottom:840.345000px;}
.y140{bottom:842.325000px;}
.y13{bottom:846.465000px;}
.y9b{bottom:848.445000px;}
.y5f{bottom:849.345000px;}
.yf9{bottom:857.445000px;}
.y180{bottom:858.345000px;}
.y13f{bottom:860.145000px;}
.y9a{bottom:866.265000px;}
.y5e{bottom:867.345000px;}
.y12{bottom:869.145000px;}
.yf8{bottom:875.265000px;}
.y17f{bottom:876.165000px;}
.y13e{bottom:878.145000px;}
.y99{bottom:884.085000px;}
.y5d{bottom:885.165000px;}
.y1b1{bottom:889.665000px;}
.y11{bottom:890.925000px;}
.yf7{bottom:893.085000px;}
.y17e{bottom:893.985000px;}
.y13d{bottom:895.965000px;}
.y98{bottom:901.905000px;}
.y5c{bottom:902.985000px;}
.yf6{bottom:910.950000px;}
.y17d{bottom:911.850000px;}
.y10{bottom:913.110000px;}
.y13c{bottom:913.830000px;}
.y1b0{bottom:919.410000px;}
.ycc{bottom:919.770000px;}
.y5b{bottom:920.850000px;}
.y97{bottom:928.770000px;}
.y17c{bottom:929.670000px;}
.y13b{bottom:931.650000px;}
.yf{bottom:935.970000px;}
.ycb{bottom:937.590000px;}
.y5a{bottom:938.670000px;}
.y96{bottom:946.590000px;}
.y17b{bottom:947.670000px;}
.y13a{bottom:949.470000px;}
.yca{bottom:955.590000px;}
.y59{bottom:956.670000px;}
.ye{bottom:957.930000px;}
.y95{bottom:964.590000px;}
.y17a{bottom:965.490000px;}
.y139{bottom:967.470000px;}
.yc9{bottom:973.410000px;}
.y58{bottom:974.490000px;}
.y94{bottom:982.410000px;}
.y179{bottom:983.310000px;}
.y138{bottom:985.290000px;}
.yc8{bottom:991.230000px;}
.y57{bottom:992.310000px;}
.yd{bottom:999.150000px;}
.y93{bottom:1000.230000px;}
.y137{bottom:1003.110000px;}
.yc7{bottom:1009.050000px;}
.y56{bottom:1010.130000px;}
.yc{bottom:1011.390000px;}
.y92{bottom:1018.050000px;}
.y136{bottom:1020.930000px;}
.yb{bottom:1023.450000px;}
.yc6{bottom:1026.870000px;}
.y55{bottom:1027.950000px;}
.ya{bottom:1035.510000px;}
.y91{bottom:1035.870000px;}
.y135{bottom:1038.750000px;}
.yc5{bottom:1044.870000px;}
.y54{bottom:1045.770000px;}
.y9{bottom:1047.570000px;}
.y90{bottom:1053.870000px;}
.y134{bottom:1056.570000px;}
.y8{bottom:1059.630000px;}
.yc4{bottom:1062.690000px;}
.y53{bottom:1063.770000px;}
.y8f{bottom:1071.690000px;}
.y7{bottom:1074.210000px;}
.y133{bottom:1074.570000px;}
.yc3{bottom:1080.510000px;}
.y52{bottom:1081.590000px;}
.y8e{bottom:1089.510000px;}
.y132{bottom:1092.390000px;}
.yc2{bottom:1098.330000px;}
.y51{bottom:1099.410000px;}
.y6{bottom:1099.770000px;}
.y8d{bottom:1107.330000px;}
.y131{bottom:1110.210000px;}
.yc1{bottom:1116.150000px;}
.y50{bottom:1117.230000px;}
.y8c{bottom:1125.150000px;}
.y130{bottom:1128.030000px;}
.yc0{bottom:1133.970000px;}
.y4f{bottom:1135.050000px;}
.y8b{bottom:1142.970000px;}
.y12f{bottom:1145.880000px;}
.ybf{bottom:1152.000000px;}
.y4e{bottom:1153.080000px;}
.y8a{bottom:1161.000000px;}
.y12d{bottom:1167.840000px;}
.y4d{bottom:1170.900000px;}
.y89{bottom:1178.820000px;}
.y4c{bottom:1190.700000px;}
.y88{bottom:1196.640000px;}
.h1e{height:22.320000px;}
.h14{height:25.365000px;}
.h18{height:25.380000px;}
.h17{height:25.416000px;}
.h2{height:31.135500px;}
.h1a{height:32.205000px;}
.h1f{height:40.315500px;}
.h20{height:40.320000px;}
.h7{height:40.985156px;}
.h16{height:43.185000px;}
.h13{height:48.410156px;}
.h22{height:52.971680px;}
.h3{height:52.998047px;}
.he{height:54.421875px;}
.h21{height:55.503491px;}
.h1d{height:58.176000px;}
.h11{height:58.621992px;}
.h8{height:58.651172px;}
.h12{height:58.763250px;}
.h9{height:60.226875px;}
.h15{height:61.005000px;}
.h19{height:61.015500px;}
.ha{height:65.010937px;}
.h4{height:65.884219px;}
.hc{height:66.757500px;}
.hd{height:72.562500px;}
.h1b{height:75.765000px;}
.h1c{height:75.945000px;}
.h10{height:78.367500px;}
.hb{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.hf{height:421.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:76.890000px;}
.w8{width:77.040000px;}
.w6{width:80.280000px;}
.w3{width:80.310000px;}
.w5{width:290.950500px;}
.w9{width:294.135000px;}
.w7{width:294.190500px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:7.545000px;}
.x3{left:8.635500px;}
.x14{left:10.800000px;}
.x19{left:31.680000px;}
.x1a{left:35.100000px;}
.x13{left:39.240000px;}
.x1{left:45.364500px;}
.x15{left:50.040000px;}
.x6{left:54.000000px;}
.xc{left:68.580000px;}
.x16{left:80.856000px;}
.x10{left:84.240000px;}
.x20{left:108.036000px;}
.xd{left:201.990000px;}
.x2{left:222.370500px;}
.xf{left:261.750000px;}
.x9{left:277.095000px;}
.xa{left:295.995000px;}
.x7{left:312.915000px;}
.x11{left:324.075000px;}
.x17{left:342.435000px;}
.x18{left:345.675000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.xe{left:392.115000px;}
.x5{left:446.505000px;}
.x1b{left:470.460000px;}
.x12{left:473.505000px;}
.x1e{left:500.505000px;}
.x1f{left:527.505000px;}
.x1d{left:765.330000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.lsf{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsd{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls9{letter-spacing:11.680000pt;}
.lse{letter-spacing:22.496000pt;}
.lsc{letter-spacing:46.816000pt;}
.ls1{letter-spacing:1097.546667pt;}
.ws3{word-spacing:-17.295360pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws8{word-spacing:-11.264000pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-12.609280pt;}
._8{margin-left:-4.371627pt;}
._3f{margin-left:-2.007253pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._6{width:2.549120pt;}
._13{width:3.581141pt;}
._f{width:4.645547pt;}
._10{width:5.734613pt;}
._a{width:6.630613pt;}
._9{width:7.608533pt;}
._e{width:9.149013pt;}
._14{width:10.560000pt;}
._12{width:12.376960pt;}
._15{width:13.392000pt;}
._d{width:14.432640pt;}
._11{width:15.473920pt;}
._1a{width:16.812160pt;}
._1b{width:17.712000pt;}
._b{width:18.849792pt;}
._c{width:19.822805pt;}
._16{width:21.120000pt;}
._17{width:22.053333pt;}
._18{width:23.616000pt;}
._29{width:24.576000pt;}
._24{width:25.632000pt;}
._21{width:27.168000pt;}
._1e{width:28.176000pt;}
._1f{width:29.280000pt;}
._23{width:30.336000pt;}
._2c{width:31.248000pt;}
._26{width:32.208000pt;}
._19{width:33.936000pt;}
._1c{width:35.541333pt;}
._1d{width:37.296000pt;}
._28{width:38.480000pt;}
._2a{width:39.488000pt;}
._22{width:41.088000pt;}
._20{width:42.336000pt;}
._25{width:43.392000pt;}
._27{width:44.976000pt;}
._2b{width:45.989333pt;}
._2d{width:48.624000pt;}
._2e{width:50.160000pt;}
._30{width:51.264000pt;}
._2f{width:52.224000pt;}
._40{width:53.685333pt;}
._37{width:57.360000pt;}
._38{width:58.560000pt;}
._43{width:59.776000pt;}
._3a{width:60.778667pt;}
._3e{width:61.733333pt;}
._31{width:62.890667pt;}
._3{width:65.024000pt;}
._4{width:68.000000pt;}
._36{width:70.992000pt;}
._35{width:72.138667pt;}
._32{width:79.146667pt;}
._39{width:80.720000pt;}
._3d{width:93.504000pt;}
._3c{width:94.416000pt;}
._41{width:95.568000pt;}
._42{width:96.480000pt;}
._3b{width:126.864000pt;}
._33{width:132.528000pt;}
._34{width:133.488000pt;}
._5{width:180.000000pt;}
._2{width:922.026667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y121{bottom:4.946667pt;}
.y128{bottom:4.960000pt;}
.y12e{bottom:5.120000pt;}
.ye8{bottom:8.786667pt;}
.yec{bottom:8.946667pt;}
.yf5{bottom:8.960000pt;}
.yf0{bottom:9.120000pt;}
.y11b{bottom:13.426667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y12c{bottom:16.960000pt;}
.y11c{bottom:17.426667pt;}
.y120{bottom:20.786667pt;}
.y127{bottom:20.960000pt;}
.yeb{bottom:24.786667pt;}
.yf4{bottom:24.800000pt;}
.yee{bottom:24.946667pt;}
.y129{bottom:24.986667pt;}
.y122{bottom:32.786667pt;}
.y4a{bottom:33.600000pt;}
.y5{bottom:35.360000pt;}
.y11f{bottom:36.626667pt;}
.y126{bottom:36.826667pt;}
.yea{bottom:40.786667pt;}
.yf3{bottom:40.800000pt;}
.y11e{bottom:52.466667pt;}
.y124{bottom:52.626667pt;}
.y1{bottom:53.920000pt;}
.y47{bottom:76.960000pt;}
.yf2{bottom:91.040000pt;}
.y46{bottom:94.586667pt;}
.y36{bottom:95.040000pt;}
.y1af{bottom:95.520000pt;}
.y87{bottom:96.160000pt;}
.y190{bottom:96.320000pt;}
.y163{bottom:97.920000pt;}
.y37{bottom:101.440000pt;}
.y12b{bottom:103.040000pt;}
.y178{bottom:104.000000pt;}
.y30{bottom:106.080000pt;}
.y116{bottom:111.200000pt;}
.y1ae{bottom:111.360000pt;}
.y86{bottom:112.000000pt;}
.y18f{bottom:112.160000pt;}
.y45{bottom:112.186667pt;}
.y35{bottom:112.960000pt;}
.y162{bottom:113.760000pt;}
.y4b{bottom:117.120000pt;}
.y177{bottom:120.000000pt;}
.y2f{bottom:124.000000pt;}
.y115{bottom:127.200000pt;}
.ybe{bottom:128.000000pt;}
.y161{bottom:129.600000pt;}
.y44{bottom:129.786667pt;}
.y34{bottom:130.880000pt;}
.y49{bottom:135.040000pt;}
.y176{bottom:135.840000pt;}
.y85{bottom:136.000000pt;}
.y12a{bottom:139.520000pt;}
.y2e{bottom:141.920000pt;}
.y114{bottom:143.040000pt;}
.y1ad{bottom:143.200000pt;}
.ybd{bottom:143.840000pt;}
.y18e{bottom:144.000000pt;}
.y160{bottom:145.600000pt;}
.yf1{bottom:145.920000pt;}
.y43{bottom:147.386667pt;}
.y33{bottom:148.800000pt;}
.y175{bottom:151.680000pt;}
.y84{bottom:151.840000pt;}
.y113{bottom:158.880000pt;}
.y1ac{bottom:159.040000pt;}
.ybc{bottom:159.680000pt;}
.y2d{bottom:159.840000pt;}
.y125{bottom:160.000000pt;}
.y48{bottom:160.640000pt;}
.y15f{bottom:161.440000pt;}
.y42{bottom:165.146667pt;}
.y32{bottom:166.560000pt;}
.y174{bottom:167.520000pt;}
.y83{bottom:167.680000pt;}
.yef{bottom:169.120000pt;}
.y112{bottom:174.720000pt;}
.y1ab{bottom:174.880000pt;}
.ybb{bottom:175.520000pt;}
.y18d{bottom:175.680000pt;}
.y15e{bottom:177.280000pt;}
.y2c{bottom:180.960000pt;}
.y41{bottom:182.746667pt;}
.y173{bottom:183.386667pt;}
.y82{bottom:183.546667pt;}
.y31{bottom:184.506667pt;}
.y111{bottom:190.586667pt;}
.y1aa{bottom:190.746667pt;}
.yba{bottom:191.386667pt;}
.y18c{bottom:191.546667pt;}
.yed{bottom:192.360000pt;}
.y15d{bottom:193.146667pt;}
.y81{bottom:199.386667pt;}
.y40{bottom:200.346667pt;}
.y2b{bottom:200.986667pt;}
.y110{bottom:206.426667pt;}
.y1a9{bottom:206.586667pt;}
.yb9{bottom:207.386667pt;}
.y15c{bottom:208.986667pt;}
.y123{bottom:212.360000pt;}
.y172{bottom:215.226667pt;}
.y80{bottom:215.386667pt;}
.y2a{bottom:216.826667pt;}
.y3f{bottom:217.946667pt;}
.y10f{bottom:222.426667pt;}
.yb8{bottom:223.226667pt;}
.y18b{bottom:223.386667pt;}
.y15b{bottom:224.826667pt;}
.y171{bottom:231.066667pt;}
.y7f{bottom:231.226667pt;}
.ye9{bottom:231.400000pt;}
.y3e{bottom:235.546667pt;}
.y10e{bottom:238.266667pt;}
.y1a8{bottom:238.426667pt;}
.yb7{bottom:239.066667pt;}
.y18a{bottom:239.226667pt;}
.y15a{bottom:240.826667pt;}
.y170{bottom:246.906667pt;}
.y7e{bottom:247.066667pt;}
.y3d{bottom:253.306667pt;}
.y10d{bottom:254.106667pt;}
.y1a7{bottom:254.266667pt;}
.yb6{bottom:254.906667pt;}
.y189{bottom:255.066667pt;}
.y29{bottom:256.666667pt;}
.y16f{bottom:262.746667pt;}
.y7d{bottom:262.906667pt;}
.y10c{bottom:269.946667pt;}
.y1a6{bottom:270.106667pt;}
.yb5{bottom:270.746667pt;}
.y3c{bottom:270.906667pt;}
.y28{bottom:272.506667pt;}
.y16e{bottom:278.586667pt;}
.y7c{bottom:278.746667pt;}
.y11d{bottom:280.520000pt;}
.y10b{bottom:285.786667pt;}
.y1a5{bottom:285.946667pt;}
.ye7{bottom:286.280000pt;}
.yb4{bottom:286.586667pt;}
.y188{bottom:286.746667pt;}
.y27{bottom:288.346667pt;}
.y3b{bottom:288.506667pt;}
.y7b{bottom:294.586667pt;}
.y10a{bottom:301.786667pt;}
.yb3{bottom:302.586667pt;}
.y159{bottom:304.186667pt;}
.y26{bottom:304.346667pt;}
.y3a{bottom:306.146667pt;}
.y16d{bottom:310.426667pt;}
.y7a{bottom:310.586667pt;}
.ye6{bottom:312.186667pt;}
.y109{bottom:317.626667pt;}
.y1a4{bottom:317.786667pt;}
.yb2{bottom:318.426667pt;}
.y187{bottom:318.586667pt;}
.y25{bottom:320.186667pt;}
.y39{bottom:323.746667pt;}
.ye5{bottom:325.946667pt;}
.y79{bottom:326.426667pt;}
.y16c{bottom:328.026667pt;}
.y158{bottom:328.186667pt;}
.y108{bottom:333.466667pt;}
.y1a3{bottom:333.626667pt;}
.yb1{bottom:334.266667pt;}
.y186{bottom:334.426667pt;}
.y24{bottom:336.026667pt;}
.y78{bottom:342.266667pt;}
.ye4{bottom:343.866667pt;}
.y157{bottom:344.026667pt;}
.y11a{bottom:348.680000pt;}
.y107{bottom:349.306667pt;}
.y1a2{bottom:349.466667pt;}
.y185{bottom:350.266667pt;}
.y38{bottom:350.786667pt;}
.y23{bottom:353.466667pt;}
.y16b{bottom:357.146667pt;}
.y77{bottom:358.106667pt;}
.y156{bottom:359.866667pt;}
.y1a1{bottom:365.306667pt;}
.y184{bottom:366.106667pt;}
.ye3{bottom:372.986667pt;}
.y106{bottom:373.146667pt;}
.y76{bottom:373.946667pt;}
.y22{bottom:374.586667pt;}
.y155{bottom:375.706667pt;}
.y119{bottom:380.666667pt;}
.y1a0{bottom:381.146667pt;}
.y183{bottom:381.946667pt;}
.ye2{bottom:388.986667pt;}
.y75{bottom:389.946667pt;}
.y154{bottom:391.586667pt;}
.y21{bottom:395.906667pt;}
.y19f{bottom:397.026667pt;}
.y182{bottom:397.986667pt;}
.ye1{bottom:404.866667pt;}
.y105{bottom:405.026667pt;}
.yb0{bottom:405.826667pt;}
.y153{bottom:407.426667pt;}
.y19e{bottom:413.026667pt;}
.y74{bottom:413.826667pt;}
.y20{bottom:417.026667pt;}
.ye0{bottom:420.706667pt;}
.y104{bottom:420.866667pt;}
.yaf{bottom:421.666667pt;}
.y152{bottom:423.426667pt;}
.y19d{bottom:428.866667pt;}
.y73{bottom:429.666667pt;}
.ydf{bottom:436.546667pt;}
.y103{bottom:436.706667pt;}
.yae{bottom:437.506667pt;}
.y1f{bottom:438.146667pt;}
.y151{bottom:439.266667pt;}
.y19c{bottom:444.706667pt;}
.y72{bottom:445.506667pt;}
.yde{bottom:452.386667pt;}
.y102{bottom:452.546667pt;}
.yad{bottom:453.346667pt;}
.y150{bottom:455.106667pt;}
.y1e{bottom:459.266667pt;}
.y16a{bottom:460.386667pt;}
.y19b{bottom:460.546667pt;}
.y71{bottom:461.346667pt;}
.ydd{bottom:468.386667pt;}
.yac{bottom:469.186667pt;}
.y14f{bottom:470.946667pt;}
.y169{bottom:476.386667pt;}
.y70{bottom:477.186667pt;}
.y1d{bottom:480.386667pt;}
.ydc{bottom:484.226667pt;}
.y101{bottom:484.386667pt;}
.yab{bottom:485.186667pt;}
.y14e{bottom:486.786667pt;}
.y168{bottom:492.226667pt;}
.y19a{bottom:492.386667pt;}
.y6f{bottom:493.186667pt;}
.y1c{bottom:499.746667pt;}
.ydb{bottom:500.066667pt;}
.y100{bottom:500.226667pt;}
.yaa{bottom:501.026667pt;}
.y14d{bottom:502.786667pt;}
.y167{bottom:508.066667pt;}
.y199{bottom:508.226667pt;}
.y6e{bottom:509.026667pt;}
.yda{bottom:515.906667pt;}
.yff{bottom:516.066667pt;}
.ya9{bottom:518.626667pt;}
.y1b{bottom:523.106667pt;}
.y166{bottom:523.906667pt;}
.y198{bottom:524.066667pt;}
.y6d{bottom:524.866667pt;}
.yd9{bottom:531.746667pt;}
.yfe{bottom:531.906667pt;}
.y14c{bottom:534.466667pt;}
.y165{bottom:539.746667pt;}
.y197{bottom:539.906667pt;}
.y6c{bottom:540.706667pt;}
.yd8{bottom:547.586667pt;}
.ya8{bottom:547.746667pt;}
.y1a{bottom:547.906667pt;}
.y14b{bottom:550.306667pt;}
.y164{bottom:555.586667pt;}
.y196{bottom:555.746667pt;}
.y6b{bottom:556.546667pt;}
.ya7{bottom:563.586667pt;}
.y14a{bottom:566.146667pt;}
.y118{bottom:571.586667pt;}
.y6a{bottom:572.546667pt;}
.y19{bottom:572.866667pt;}
.yd7{bottom:579.426667pt;}
.ya6{bottom:579.586667pt;}
.y149{bottom:581.986667pt;}
.y117{bottom:587.426667pt;}
.y195{bottom:587.586667pt;}
.y69{bottom:588.386667pt;}
.y18{bottom:589.666667pt;}
.ya5{bottom:595.426667pt;}
.y148{bottom:597.986667pt;}
.yd6{bottom:603.293333pt;}
.y194{bottom:603.453333pt;}
.y68{bottom:604.253333pt;}
.y17{bottom:606.493333pt;}
.ya4{bottom:611.293333pt;}
.y147{bottom:613.853333pt;}
.yd5{bottom:619.133333pt;}
.y193{bottom:619.293333pt;}
.y67{bottom:620.093333pt;}
.ya3{bottom:627.133333pt;}
.y146{bottom:629.693333pt;}
.yd4{bottom:634.973333pt;}
.y192{bottom:635.133333pt;}
.y66{bottom:635.933333pt;}
.ya2{bottom:642.973333pt;}
.y16{bottom:645.533333pt;}
.yd3{bottom:650.813333pt;}
.y191{bottom:650.973333pt;}
.y65{bottom:651.773333pt;}
.ya1{bottom:658.813333pt;}
.yd2{bottom:666.813333pt;}
.y64{bottom:667.773333pt;}
.y145{bottom:669.373333pt;}
.ya0{bottom:674.813333pt;}
.yd1{bottom:682.653333pt;}
.yfd{bottom:682.813333pt;}
.y63{bottom:683.613333pt;}
.y144{bottom:685.373333pt;}
.y15{bottom:686.653333pt;}
.y9f{bottom:690.653333pt;}
.yd0{bottom:698.493333pt;}
.yfc{bottom:698.653333pt;}
.y62{bottom:699.453333pt;}
.y143{bottom:701.213333pt;}
.y9e{bottom:706.493333pt;}
.y14{bottom:711.293333pt;}
.ycf{bottom:714.333333pt;}
.yfb{bottom:714.493333pt;}
.y61{bottom:715.293333pt;}
.y142{bottom:717.053333pt;}
.y9d{bottom:722.333333pt;}
.yce{bottom:730.173333pt;}
.yfa{bottom:730.333333pt;}
.y60{bottom:731.133333pt;}
.y141{bottom:732.893333pt;}
.y9c{bottom:738.173333pt;}
.ycd{bottom:746.173333pt;}
.y181{bottom:746.973333pt;}
.y140{bottom:748.733333pt;}
.y13{bottom:752.413333pt;}
.y9b{bottom:754.173333pt;}
.y5f{bottom:754.973333pt;}
.yf9{bottom:762.173333pt;}
.y180{bottom:762.973333pt;}
.y13f{bottom:764.573333pt;}
.y9a{bottom:770.013333pt;}
.y5e{bottom:770.973333pt;}
.y12{bottom:772.573333pt;}
.yf8{bottom:778.013333pt;}
.y17f{bottom:778.813333pt;}
.y13e{bottom:780.573333pt;}
.y99{bottom:785.853333pt;}
.y5d{bottom:786.813333pt;}
.y1b1{bottom:790.813333pt;}
.y11{bottom:791.933333pt;}
.yf7{bottom:793.853333pt;}
.y17e{bottom:794.653333pt;}
.y13d{bottom:796.413333pt;}
.y98{bottom:801.693333pt;}
.y5c{bottom:802.653333pt;}
.yf6{bottom:809.733333pt;}
.y17d{bottom:810.533333pt;}
.y10{bottom:811.653333pt;}
.y13c{bottom:812.293333pt;}
.y1b0{bottom:817.253333pt;}
.ycc{bottom:817.573333pt;}
.y5b{bottom:818.533333pt;}
.y97{bottom:825.573333pt;}
.y17c{bottom:826.373333pt;}
.y13b{bottom:828.133333pt;}
.yf{bottom:831.973333pt;}
.ycb{bottom:833.413333pt;}
.y5a{bottom:834.373333pt;}
.y96{bottom:841.413333pt;}
.y17b{bottom:842.373333pt;}
.y13a{bottom:843.973333pt;}
.yca{bottom:849.413333pt;}
.y59{bottom:850.373333pt;}
.ye{bottom:851.493333pt;}
.y95{bottom:857.413333pt;}
.y17a{bottom:858.213333pt;}
.y139{bottom:859.973333pt;}
.yc9{bottom:865.253333pt;}
.y58{bottom:866.213333pt;}
.y94{bottom:873.253333pt;}
.y179{bottom:874.053333pt;}
.y138{bottom:875.813333pt;}
.yc8{bottom:881.093333pt;}
.y57{bottom:882.053333pt;}
.yd{bottom:888.133333pt;}
.y93{bottom:889.093333pt;}
.y137{bottom:891.653333pt;}
.yc7{bottom:896.933333pt;}
.y56{bottom:897.893333pt;}
.yc{bottom:899.013333pt;}
.y92{bottom:904.933333pt;}
.y136{bottom:907.493333pt;}
.yb{bottom:909.733333pt;}
.yc6{bottom:912.773333pt;}
.y55{bottom:913.733333pt;}
.ya{bottom:920.453333pt;}
.y91{bottom:920.773333pt;}
.y135{bottom:923.333333pt;}
.yc5{bottom:928.773333pt;}
.y54{bottom:929.573333pt;}
.y9{bottom:931.173333pt;}
.y90{bottom:936.773333pt;}
.y134{bottom:939.173333pt;}
.y8{bottom:941.893333pt;}
.yc4{bottom:944.613333pt;}
.y53{bottom:945.573333pt;}
.y8f{bottom:952.613333pt;}
.y7{bottom:954.853333pt;}
.y133{bottom:955.173333pt;}
.yc3{bottom:960.453333pt;}
.y52{bottom:961.413333pt;}
.y8e{bottom:968.453333pt;}
.y132{bottom:971.013333pt;}
.yc2{bottom:976.293333pt;}
.y51{bottom:977.253333pt;}
.y6{bottom:977.573333pt;}
.y8d{bottom:984.293333pt;}
.y131{bottom:986.853333pt;}
.yc1{bottom:992.133333pt;}
.y50{bottom:993.093333pt;}
.y8c{bottom:1000.133333pt;}
.y130{bottom:1002.693333pt;}
.yc0{bottom:1007.973333pt;}
.y4f{bottom:1008.933333pt;}
.y8b{bottom:1015.973333pt;}
.y12f{bottom:1018.560000pt;}
.ybf{bottom:1024.000000pt;}
.y4e{bottom:1024.960000pt;}
.y8a{bottom:1032.000000pt;}
.y12d{bottom:1038.080000pt;}
.y4d{bottom:1040.800000pt;}
.y89{bottom:1047.840000pt;}
.y4c{bottom:1058.400000pt;}
.y88{bottom:1063.680000pt;}
.h1e{height:19.840000pt;}
.h14{height:22.546667pt;}
.h18{height:22.560000pt;}
.h17{height:22.592000pt;}
.h2{height:27.676000pt;}
.h1a{height:28.626667pt;}
.h1f{height:35.836000pt;}
.h20{height:35.840000pt;}
.h7{height:36.431250pt;}
.h16{height:38.386667pt;}
.h13{height:43.031250pt;}
.h22{height:47.085938pt;}
.h3{height:47.109375pt;}
.he{height:48.375000pt;}
.h21{height:49.336436pt;}
.h1d{height:51.712000pt;}
.h11{height:52.108438pt;}
.h8{height:52.134375pt;}
.h12{height:52.234000pt;}
.h9{height:53.535000pt;}
.h15{height:54.226667pt;}
.h19{height:54.236000pt;}
.ha{height:57.787500pt;}
.h4{height:58.563750pt;}
.hc{height:59.340000pt;}
.hd{height:64.500000pt;}
.h1b{height:67.346667pt;}
.h1c{height:67.506667pt;}
.h10{height:69.660000pt;}
.hb{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.hf{height:375.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:68.346667pt;}
.w8{width:68.480000pt;}
.w6{width:71.360000pt;}
.w3{width:71.386667pt;}
.w5{width:258.622667pt;}
.w9{width:261.453333pt;}
.w7{width:261.502667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:6.706667pt;}
.x3{left:7.676000pt;}
.x14{left:9.600000pt;}
.x19{left:28.160000pt;}
.x1a{left:31.200000pt;}
.x13{left:34.880000pt;}
.x1{left:40.324000pt;}
.x15{left:44.480000pt;}
.x6{left:48.000000pt;}
.xc{left:60.960000pt;}
.x16{left:71.872000pt;}
.x10{left:74.880000pt;}
.x20{left:96.032000pt;}
.xd{left:179.546667pt;}
.x2{left:197.662667pt;}
.xf{left:232.666667pt;}
.x9{left:246.306667pt;}
.xa{left:263.106667pt;}
.x7{left:278.146667pt;}
.x11{left:288.066667pt;}
.x17{left:304.386667pt;}
.x18{left:307.266667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.xe{left:348.546667pt;}
.x5{left:396.893333pt;}
.x1b{left:418.186667pt;}
.x12{left:420.893333pt;}
.x1e{left:444.893333pt;}
.x1f{left:468.893333pt;}
.x1d{left:680.293333pt;}
.x4{left:682.213333pt;}
}




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