
    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_348149df151b4c9c2d645300.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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2e8bbcda3dca18e9ec125f59.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_89b692c6472aa1a3b75b8516.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_cf65c13354a55e13871d236f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ca087c449a4e2431441d5302.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d0e9bb61f01743c3cb346bde.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b042fb59db29b1757626b031.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-2.280000px;}
.lsc{letter-spacing:-1.980000px;}
.lsf{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.780000px;}
.ls8{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.060000px;}
.lse{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.420000px;}
.ls4{letter-spacing:0.600000px;}
.ls13{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.620000px;}
.ls1{letter-spacing:2.520000px;}
.ls9{letter-spacing:45.690000px;}
.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;}
}
.ws0{word-spacing:-17.520000px;}
.ws6{word-spacing:-16.620000px;}
.wsf{word-spacing:-16.440000px;}
.wsa{word-spacing:-16.200000px;}
.wse{word-spacing:-16.080000px;}
.ws4{word-spacing:-15.240000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.880000px;}
.ws3{word-spacing:-14.760000px;}
.ws10{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.460000px;}
.ws9{word-spacing:-14.220000px;}
.wsb{word-spacing:-13.920000px;}
.wsd{word-spacing:-13.800000px;}
.ws8{word-spacing:-13.020000px;}
.wsc{word-spacing:-12.720000px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-3.960000px;}
._2{margin-left:-2.280000px;}
._1{margin-left:-1.260000px;}
._0{width:1.260000px;}
._3{width:2.880000px;}
._4{width:4.380000px;}
._5{width:5.460000px;}
._8{width:6.840000px;}
._6{width:8.070000px;}
._7{width:9.180000px;}
._9{width:10.230000px;}
._10{width:11.820000px;}
._11{width:12.960000px;}
._e{width:13.980000px;}
._d{width:16.110000px;}
._12{width:18.180000px;}
._b{width:19.500000px;}
._a{width:20.520000px;}
._c{width:21.600000px;}
._15{width:22.620000px;}
._13{width:23.640000px;}
._14{width:25.290000px;}
._16{width:27.090000px;}
._17{width:28.560000px;}
._25{width:30.060000px;}
._1a{width:33.000000px;}
._29{width:34.140000px;}
._32{width:35.400000px;}
._34{width:37.380000px;}
._28{width:46.620000px;}
._27{width:48.000000px;}
._2d{width:50.100000px;}
._24{width:51.600000px;}
._2c{width:52.980000px;}
._1c{width:56.160000px;}
._1b{width:57.600000px;}
._1d{width:59.670000px;}
._30{width:62.940000px;}
._31{width:64.140000px;}
._22{width:67.560000px;}
._23{width:68.760000px;}
._2a{width:72.540000px;}
._37{width:78.360000px;}
._2b{width:83.880000px;}
._21{width:87.660000px;}
._1e{width:100.020000px;}
._1f{width:101.850000px;}
._2f{width:103.200000px;}
._18{width:104.700000px;}
._26{width:106.080000px;}
._19{width:116.940000px;}
._36{width:120.540000px;}
._33{width:124.740000px;}
._2e{width:141.180000px;}
._35{width:254.460000px;}
._20{width:849.330000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:15.285000px;}
.ycc{bottom:15.300000px;}
.y51{bottom:15.315000px;}
.y65{bottom:15.585000px;}
.y63{bottom:15.600000px;}
.y55{bottom:15.615000px;}
.y88{bottom:15.630000px;}
.y59{bottom:15.645000px;}
.y57{bottom:15.885000px;}
.y53{bottom:15.900000px;}
.y176{bottom:15.915000px;}
.y114{bottom:15.930000px;}
.y18b{bottom:15.945000px;}
.ya5{bottom:16.200000px;}
.ya0{bottom:16.800000px;}
.ya2{bottom:17.100000px;}
.y1b1{bottom:24.285000px;}
.yfb{bottom:24.300000px;}
.yf6{bottom:24.315000px;}
.y1a8{bottom:24.330000px;}
.y100{bottom:24.345000px;}
.y17d{bottom:24.585000px;}
.y1c3{bottom:24.592500px;}
.y16e{bottom:24.600000px;}
.y177{bottom:24.615000px;}
.y115{bottom:24.630000px;}
.y18a{bottom:24.645000px;}
.y174{bottom:32.685000px;}
.yf7{bottom:32.700000px;}
.y110{bottom:32.715000px;}
.y1b2{bottom:32.985000px;}
.y172{bottom:32.992500px;}
.yfa{bottom:33.000000px;}
.y1c4{bottom:33.007500px;}
.y191{bottom:33.015000px;}
.y1a6{bottom:33.030000px;}
.yff{bottom:33.045000px;}
.y1a7{bottom:41.730000px;}
.y1af{bottom:41.745000px;}
.y169{bottom:50.100000px;}
.y1a5{bottom:50.130000px;}
.y1c5{bottom:50.145000px;}
.y2{bottom:57.337500px;}
.y1{bottom:76.837500px;}
.y83{bottom:111.637500px;}
.y1b8{bottom:111.937500px;}
.y34{bottom:112.237500px;}
.y18c{bottom:112.537500px;}
.yae{bottom:116.137500px;}
.y61{bottom:116.437500px;}
.y171{bottom:117.937500px;}
.yf4{bottom:119.737500px;}
.y11b{bottom:122.437500px;}
.y82{bottom:128.737500px;}
.y1c2{bottom:129.037500px;}
.y33{bottom:129.337500px;}
.yd0{bottom:129.637500px;}
.y1a0{bottom:131.437500px;}
.y14c{bottom:134.137500px;}
.yf3{bottom:137.137500px;}
.y1ad{bottom:141.937500px;}
.yad{bottom:145.237500px;}
.y60{bottom:146.137500px;}
.y32{bottom:146.737500px;}
.y14b{bottom:151.230000px;}
.y11a{bottom:152.145000px;}
.yf2{bottom:154.245000px;}
.y81{bottom:157.830000px;}
.y1ac{bottom:159.030000px;}
.y1b7{bottom:162.930000px;}
.y189{bottom:163.530000px;}
.y31{bottom:163.830000px;}
.y19f{bottom:165.030000px;}
.y170{bottom:168.930000px;}
.yf1{bottom:171.675000px;}
.yac{bottom:174.675000px;}
.y5f{bottom:174.975000px;}
.ycf{bottom:175.875000px;}
.y1c1{bottom:180.075000px;}
.y14a{bottom:180.675000px;}
.y119{bottom:180.975000px;}
.y30{bottom:181.275000px;}
.y80{bottom:187.275000px;}
.yf0{bottom:188.775000px;}
.yab{bottom:191.775000px;}
.yce{bottom:192.975000px;}
.y149{bottom:197.775000px;}
.y19e{bottom:198.975000px;}
.y12c{bottom:201.675000px;}
.y5e{bottom:204.675000px;}
.yaa{bottom:209.175000px;}
.y2f{bottom:210.075000px;}
.y118{bottom:210.375000px;}
.y1b6{bottom:213.975000px;}
.y188{bottom:214.575000px;}
.yef{bottom:217.875000px;}
.y16f{bottom:219.975000px;}
.y5d{bottom:221.775000px;}
.ya9{bottom:226.275000px;}
.ycd{bottom:226.575000px;}
.y148{bottom:227.175000px;}
.y1c0{bottom:231.075000px;}
.y19d{bottom:232.575000px;}
.y7f{bottom:233.775000px;}
.y2e{bottom:239.775000px;}
.ya8{bottom:243.675000px;}
.y147{bottom:244.275000px;}
.yee{bottom:247.275000px;}
.y5c{bottom:251.175000px;}
.y16d{bottom:253.575000px;}
.y117{bottom:256.575000px;}
.y2d{bottom:256.875000px;}
.ycb{bottom:260.475000px;}
.ya7{bottom:260.775000px;}
.y146{bottom:261.675000px;}
.yed{bottom:264.675000px;}
.y1b5{bottom:264.975000px;}
.y187{bottom:265.575000px;}
.y19c{bottom:266.475000px;}
.y5b{bottom:268.275000px;}
.y2c{bottom:274.275000px;}
.y7e{bottom:279.975000px;}
.yec{bottom:281.775000px;}
.y1bf{bottom:282.075000px;}
.ya6{bottom:289.875000px;}
.y116{bottom:290.475000px;}
.y145{bottom:290.775000px;}
.y2b{bottom:291.375000px;}
.y7d{bottom:297.075000px;}
.y5a{bottom:297.375000px;}
.yeb{bottom:299.175000px;}
.y186{bottom:299.475000px;}
.y19b{bottom:300.075000px;}
.y16c{bottom:304.575000px;}
.ya4{bottom:306.975000px;}
.yca{bottom:308.475000px;}
.y2a{bottom:308.775000px;}
.y58{bottom:314.475000px;}
.y1b4{bottom:315.975000px;}
.yea{bottom:316.275000px;}
.y144{bottom:320.175000px;}
.y113{bottom:324.075000px;}
.y29{bottom:325.875000px;}
.y7c{bottom:331.005000px;}
.y185{bottom:333.120000px;}
.ye9{bottom:333.705000px;}
.y19a{bottom:334.005000px;}
.y143{bottom:337.320000px;}
.y1ab{bottom:337.920000px;}
.yc9{bottom:338.205000px;}
.y16b{bottom:338.505000px;}
.ya3{bottom:341.820000px;}
.y28{bottom:343.320000px;}
.y56{bottom:348.120000px;}
.ye8{bottom:350.820000px;}
.yc8{bottom:355.320000px;}
.y27{bottom:360.420000px;}
.y7b{bottom:364.620000px;}
.y142{bottom:366.705000px;}
.y1aa{bottom:367.005000px;}
.y199{bottom:367.620000px;}
.y112{bottom:375.120000px;}
.ya1{bottom:378.120000px;}
.ye7{bottom:379.920000px;}
.y54{bottom:382.005000px;}
.y141{bottom:383.820000px;}
.y184{bottom:384.120000px;}
.yc7{bottom:384.405000px;}
.y16a{bottom:389.505000px;}
.y26{bottom:389.820000px;}
.y7a{bottom:398.505000px;}
.y198{bottom:401.505000px;}
.y25{bottom:406.920000px;}
.y111{bottom:409.005000px;}
.ye6{bottom:409.320000px;}
.y140{bottom:412.920000px;}
.yc6{bottom:413.820000px;}
.y9f{bottom:414.405000px;}
.y52{bottom:415.620000px;}
.y183{bottom:418.005000px;}
.y168{bottom:423.105000px;}
.y24{bottom:424.320000px;}
.y79{bottom:432.105000px;}
.y1be{bottom:435.105000px;}
.ye5{bottom:438.720000px;}
.y23{bottom:441.420000px;}
.y13f{bottom:442.320000px;}
.y10f{bottom:442.605000px;}
.yc5{bottom:443.220000px;}
.y50{bottom:449.505000px;}
.y9e{bottom:450.720000px;}
.y197{bottom:452.505000px;}
.y22{bottom:458.820000px;}
.y13e{bottom:459.705000px;}
.yc4{bottom:460.320000px;}
.y78{bottom:466.005000px;}
.ye4{bottom:467.820000px;}
.y182{bottom:469.005000px;}
.y21{bottom:475.905000px;}
.y13d{bottom:476.820000px;}
.yc3{bottom:477.720000px;}
.y1bd{bottom:486.150000px;}
.y20{bottom:493.350000px;}
.y13c{bottom:494.250000px;}
.ye3{bottom:497.250000px;}
.y4f{bottom:497.550000px;}
.y9d{bottom:499.950000px;}
.y196{bottom:503.550000px;}
.y167{bottom:505.950000px;}
.yc2{bottom:506.850000px;}
.y10e{bottom:508.050000px;}
.y1f{bottom:510.450000px;}
.y13b{bottom:511.050000px;}
.y77{bottom:514.050000px;}
.y181{bottom:520.050000px;}
.ye2{bottom:526.350000px;}
.y4e{bottom:527.250000px;}
.y1e{bottom:527.850000px;}
.y9c{bottom:529.350000px;}
.y166{bottom:535.050000px;}
.yc1{bottom:536.250000px;}
.y1bc{bottom:537.150000px;}
.y10d{bottom:537.750000px;}
.y13a{bottom:540.750000px;}
.y76{bottom:543.750000px;}
.y4d{bottom:544.350000px;}
.y9b{bottom:546.750000px;}
.y165{bottom:552.750000px;}
.yc0{bottom:553.350000px;}
.y195{bottom:554.550000px;}
.y10c{bottom:554.850000px;}
.y1d{bottom:556.950000px;}
.y139{bottom:557.850000px;}
.y75{bottom:560.850000px;}
.y12b{bottom:561.450000px;}
.y9a{bottom:563.850000px;}
.y164{bottom:569.850000px;}
.ybf{bottom:570.750000px;}
.y180{bottom:571.050000px;}
.y10b{bottom:572.250000px;}
.y4c{bottom:573.450000px;}
.y1c{bottom:574.350000px;}
.y138{bottom:575.250000px;}
.y99{bottom:581.250000px;}
.y163{bottom:587.250000px;}
.ybe{bottom:587.850000px;}
.y194{bottom:588.150000px;}
.y10a{bottom:589.350000px;}
.y74{bottom:589.950000px;}
.ye1{bottom:590.250000px;}
.y12a{bottom:590.850000px;}
.y1b{bottom:591.450000px;}
.y137{bottom:592.350000px;}
.y98{bottom:598.350000px;}
.y4b{bottom:602.850000px;}
.y17f{bottom:604.650000px;}
.ybd{bottom:605.250000px;}
.y73{bottom:607.350000px;}
.y129{bottom:608.250000px;}
.y1a{bottom:608.850000px;}
.y136{bottom:609.750000px;}
.y162{bottom:616.050000px;}
.y109{bottom:618.450000px;}
.y4a{bottom:620.250000px;}
.y1b3{bottom:622.050000px;}
.ybc{bottom:622.350000px;}
.ye0{bottom:624.750000px;}
.y128{bottom:625.350000px;}
.y19{bottom:625.950000px;}
.y135{bottom:626.850000px;}
.y97{bottom:627.450000px;}
.y72{bottom:636.750000px;}
.y193{bottom:639.150000px;}
.ydf{bottom:641.880000px;}
.y127{bottom:642.780000px;}
.y18{bottom:643.380000px;}
.y134{bottom:644.280000px;}
.y161{bottom:645.795000px;}
.y108{bottom:647.880000px;}
.y49{bottom:649.095000px;}
.ybb{bottom:651.495000px;}
.y71{bottom:653.880000px;}
.y17e{bottom:655.695000px;}
.y96{bottom:656.880000px;}
.yde{bottom:659.295000px;}
.y17{bottom:660.480000px;}
.y133{bottom:661.380000px;}
.y160{bottom:662.895000px;}
.y156{bottom:664.995000px;}
.y107{bottom:665.280000px;}
.yba{bottom:668.595000px;}
.y126{bottom:671.880000px;}
.y1b0{bottom:673.095000px;}
.y95{bottom:674.295000px;}
.ydd{bottom:676.395000px;}
.y16{bottom:677.895000px;}
.y48{bottom:678.780000px;}
.y15f{bottom:680.280000px;}
.y106{bottom:682.380000px;}
.y70{bottom:682.995000px;}
.y125{bottom:689.295000px;}
.y192{bottom:690.195000px;}
.y132{bottom:690.480000px;}
.y94{bottom:691.395000px;}
.y155{bottom:694.380000px;}
.y47{bottom:695.880000px;}
.y15e{bottom:697.380000px;}
.y105{bottom:699.795000px;}
.y6f{bottom:700.095000px;}
.yb9{bottom:702.195000px;}
.ydc{bottom:705.495000px;}
.y17c{bottom:706.695000px;}
.y15{bottom:706.995000px;}
.y93{bottom:708.780000px;}
.y154{bottom:711.780000px;}
.y46{bottom:713.295000px;}
.y104{bottom:716.895000px;}
.y124{bottom:718.080000px;}
.y131{bottom:719.895000px;}
.ydb{bottom:722.595000px;}
.y190{bottom:724.080000px;}
.y14{bottom:724.380000px;}
.y92{bottom:725.880000px;}
.y15d{bottom:726.495000px;}
.y6e{bottom:733.695000px;}
.y103{bottom:734.280000px;}
.yb8{bottom:736.095000px;}
.y130{bottom:737.280000px;}
.y153{bottom:740.880000px;}
.y1a9{bottom:741.180000px;}
.y1bb{bottom:741.195000px;}
.y13{bottom:741.480000px;}
.y45{bottom:742.095000px;}
.y91{bottom:743.295000px;}
.y123{bottom:747.780000px;}
.y102{bottom:751.380000px;}
.y12f{bottom:754.380000px;}
.y15c{bottom:755.595000px;}
.yda{bottom:756.180000px;}
.y17b{bottom:757.695000px;}
.y12{bottom:758.880000px;}
.y90{bottom:760.395000px;}
.y122{bottom:764.880000px;}
.yb7{bottom:769.695000px;}
.y152{bottom:770.295000px;}
.y44{bottom:771.795000px;}
.y15b{bottom:772.695000px;}
.y18f{bottom:775.080000px;}
.y1a4{bottom:775.095000px;}
.y11{bottom:775.995000px;}
.y101{bottom:780.495000px;}
.y6d{bottom:781.980000px;}
.y121{bottom:782.295000px;}
.y151{bottom:787.395000px;}
.y43{bottom:788.880000px;}
.y8f{bottom:789.495000px;}
.y1ba{bottom:792.195000px;}
.y10{bottom:793.380000px;}
.yfe{bottom:797.580000px;}
.yb6{bottom:803.625000px;}
.yd9{bottom:804.525000px;}
.y42{bottom:806.325000px;}
.y15a{bottom:806.625000px;}
.y8e{bottom:806.925000px;}
.y17a{bottom:808.725000px;}
.yf{bottom:810.525000px;}
.y120{bottom:811.125000px;}
.y6c{bottom:811.425000px;}
.y150{bottom:816.825000px;}
.y41{bottom:823.425000px;}
.y8d{bottom:824.325000px;}
.y18e{bottom:826.125000px;}
.yd8{bottom:833.925000px;}
.yb5{bottom:837.225000px;}
.ye{bottom:839.625000px;}
.y159{bottom:840.225000px;}
.y6b{bottom:840.525000px;}
.y40{bottom:840.825000px;}
.y1a3{bottom:843.225000px;}
.yfd{bottom:848.625000px;}
.yd7{bottom:851.325000px;}
.y8c{bottom:853.425000px;}
.y3f{bottom:857.925000px;}
.y179{bottom:859.725000px;}
.y14f{bottom:863.325000px;}
.yd{bottom:868.725000px;}
.y6a{bottom:869.925000px;}
.y8b{bottom:870.825000px;}
.y158{bottom:874.125000px;}
.y3e{bottom:875.325000px;}
.y18d{bottom:877.125000px;}
.yd6{bottom:880.125000px;}
.y14e{bottom:880.425000px;}
.yfc{bottom:882.225000px;}
.yb4{bottom:885.525000px;}
.yc{bottom:886.425000px;}
.y12e{bottom:887.025000px;}
.y69{bottom:887.325000px;}
.y11f{bottom:892.425000px;}
.y1a2{bottom:894.225000px;}
.y8a{bottom:899.625000px;}
.yb{bottom:903.525000px;}
.y3d{bottom:904.125000px;}
.y157{bottom:907.725000px;}
.yd5{bottom:909.825000px;}
.y178{bottom:910.725000px;}
.yb3{bottom:914.925000px;}
.yf9{bottom:916.125000px;}
.y68{bottom:916.425000px;}
.y89{bottom:916.725000px;}
.ya{bottom:920.625000px;}
.y11e{bottom:921.825000px;}
.y14d{bottom:926.925000px;}
.y1a1{bottom:928.125000px;}
.yb2{bottom:932.325000px;}
.y3c{bottom:933.825000px;}
.yd4{bottom:938.925000px;}
.y1b9{bottom:945.225000px;}
.yb1{bottom:949.425000px;}
.y87{bottom:950.625000px;}
.y3b{bottom:950.925000px;}
.y9{bottom:956.025000px;}
.yd3{bottom:956.325000px;}
.y175{bottom:961.755000px;}
.y67{bottom:962.670000px;}
.yf8{bottom:967.170000px;}
.y3a{bottom:968.370000px;}
.y8{bottom:973.170000px;}
.y11d{bottom:973.455000px;}
.yb0{bottom:978.570000px;}
.y66{bottom:979.770000px;}
.y86{bottom:984.270000px;}
.y39{bottom:985.455000px;}
.y7{bottom:990.255000px;}
.y11c{bottom:990.870000px;}
.y1ae{bottom:996.255000px;}
.yf5{bottom:1000.755000px;}
.y38{bottom:1002.870000px;}
.y6{bottom:1007.955000px;}
.y173{bottom:1012.770000px;}
.y64{bottom:1013.670000px;}
.y12d{bottom:1014.870000px;}
.y84{bottom:1018.170000px;}
.y37{bottom:1019.955000px;}
.y5{bottom:1025.070000px;}
.yd2{bottom:1031.955000px;}
.y36{bottom:1037.370000px;}
.y4{bottom:1042.755000px;}
.y62{bottom:1047.270000px;}
.yd1{bottom:1049.370000px;}
.y3{bottom:1063.455000px;}
.y35{bottom:1066.170000px;}
.yaf{bottom:1066.455000px;}
.hb{height:29.085000px;}
.h6{height:29.100000px;}
.h8{height:29.137500px;}
.h7{height:29.385000px;}
.ha{height:29.400000px;}
.h13{height:29.437500px;}
.hc{height:30.285000px;}
.hf{height:30.337500px;}
.he{height:31.785000px;}
.hd{height:31.800000px;}
.h17{height:46.485000px;}
.h11{height:46.500000px;}
.h16{height:46.522500px;}
.h12{height:46.537500px;}
.h5{height:53.789062px;}
.h9{height:58.857422px;}
.h1{height:58.886719px;}
.h4{height:60.468750px;}
.h10{height:61.670545px;}
.h19{height:63.600000px;}
.h18{height:63.622500px;}
.h1a{height:63.637500px;}
.h15{height:63.900000px;}
.h14{height:63.937500px;}
.h2{height:65.645508px;}
.h3{height:72.562500px;}
.h0{height:1188.000000px;}
.w1b{width:23.700000px;}
.w33{width:24.600000px;}
.we{width:37.800000px;}
.w10{width:37.837500px;}
.w30{width:43.537500px;}
.w28{width:44.400000px;}
.w29{width:47.137500px;}
.w1c{width:57.600000px;}
.w2c{width:61.200000px;}
.w26{width:63.037500px;}
.w35{width:64.500000px;}
.w13{width:73.237500px;}
.w17{width:84.937500px;}
.w21{width:88.837500px;}
.w34{width:89.737500px;}
.w16{width:92.100000px;}
.w22{width:92.122500px;}
.w14{width:102.637500px;}
.w1f{width:106.537500px;}
.wd{width:120.637500px;}
.w2{width:120.937500px;}
.w11{width:122.737500px;}
.w1e{width:131.737500px;}
.w20{width:132.937500px;}
.w23{width:133.837500px;}
.w31{width:145.537500px;}
.w36{width:155.175000px;}
.w2f{width:157.230000px;}
.w2b{width:159.675000px;}
.wf{width:163.845000px;}
.w1d{width:166.575000px;}
.w27{width:169.230000px;}
.w2e{width:169.845000px;}
.w24{width:175.545000px;}
.w25{width:187.275000px;}
.w1a{width:200.775000px;}
.wc{width:201.075000px;}
.w15{width:207.975000px;}
.w5{width:221.775000px;}
.wb{width:224.475000px;}
.w3{width:235.575000px;}
.w4{width:235.875000px;}
.w19{width:240.375000px;}
.w2d{width:256.905000px;}
.w8{width:282.075000px;}
.w18{width:306.105000px;}
.w7{width:318.720000px;}
.w37{width:354.405000px;}
.w6{width:376.620000px;}
.w9{width:413.550000px;}
.wa{width:470.850000px;}
.w12{width:517.050000px;}
.w2a{width:535.950000px;}
.w32{width:549.795000px;}
.w1{width:574.395000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:1.200000px;}
.x2{left:108.037500px;}
.x7{left:110.437500px;}
.x14{left:135.037500px;}
.x2f{left:137.437500px;}
.x17{left:162.030000px;}
.x2a{left:173.745000px;}
.x3{left:177.375000px;}
.x30{left:229.575000px;}
.x1e{left:244.275000px;}
.x2e{left:258.375000px;}
.x21{left:288.075000px;}
.x26{left:295.875000px;}
.x5{left:302.820000px;}
.xf{left:313.620000px;}
.x18{left:320.520000px;}
.x9{left:348.420000px;}
.x1b{left:353.220000px;}
.x4{left:381.705000px;}
.x6{left:387.405000px;}
.xd{left:394.620000px;}
.x19{left:414.720000px;}
.x2b{left:432.750000px;}
.x10{left:436.350000px;}
.x31{left:453.750000px;}
.x11{left:476.550000px;}
.x22{left:477.750000px;}
.xc{left:489.450000px;}
.x1a{left:502.050000px;}
.x23{left:542.895000px;}
.x1c{left:556.095000px;}
.x1f{left:579.795000px;}
.x1d{left:581.895000px;}
.xe{left:583.695000px;}
.xb{left:586.395000px;}
.x2c{left:604.995000px;}
.x15{left:629.895000px;}
.x12{left:642.495000px;}
.x29{left:648.495000px;}
.x20{left:674.325000px;}
.x13{left:682.725000px;}
.x8{left:687.225000px;}
.x27{left:698.925000px;}
.x16{left:705.525000px;}
.x24{left:714.225000px;}
.x25{left:761.025000px;}
.x2d{left:764.625000px;}
.x28{left:772.725000px;}
.x1{left:780.255000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.026667pt;}
.lsc{letter-spacing:-1.760000pt;}
.lsf{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.053333pt;}
.lse{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.373333pt;}
.ls4{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls1{letter-spacing:2.240000pt;}
.ls9{letter-spacing:40.613333pt;}
.ws0{word-spacing:-15.573333pt;}
.ws6{word-spacing:-14.773333pt;}
.wsf{word-spacing:-14.613333pt;}
.wsa{word-spacing:-14.400000pt;}
.wse{word-spacing:-14.293333pt;}
.ws4{word-spacing:-13.546667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.226667pt;}
.ws3{word-spacing:-13.120000pt;}
.ws10{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.853333pt;}
.ws9{word-spacing:-12.640000pt;}
.wsb{word-spacing:-12.373333pt;}
.wsd{word-spacing:-12.266667pt;}
.ws8{word-spacing:-11.573333pt;}
.wsc{word-spacing:-11.306667pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-3.520000pt;}
._2{margin-left:-2.026667pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.120000pt;}
._3{width:2.560000pt;}
._4{width:3.893333pt;}
._5{width:4.853333pt;}
._8{width:6.080000pt;}
._6{width:7.173333pt;}
._7{width:8.160000pt;}
._9{width:9.093333pt;}
._10{width:10.506667pt;}
._11{width:11.520000pt;}
._e{width:12.426667pt;}
._d{width:14.320000pt;}
._12{width:16.160000pt;}
._b{width:17.333333pt;}
._a{width:18.240000pt;}
._c{width:19.200000pt;}
._15{width:20.106667pt;}
._13{width:21.013333pt;}
._14{width:22.480000pt;}
._16{width:24.080000pt;}
._17{width:25.386667pt;}
._25{width:26.720000pt;}
._1a{width:29.333333pt;}
._29{width:30.346667pt;}
._32{width:31.466667pt;}
._34{width:33.226667pt;}
._28{width:41.440000pt;}
._27{width:42.666667pt;}
._2d{width:44.533333pt;}
._24{width:45.866667pt;}
._2c{width:47.093333pt;}
._1c{width:49.920000pt;}
._1b{width:51.200000pt;}
._1d{width:53.040000pt;}
._30{width:55.946667pt;}
._31{width:57.013333pt;}
._22{width:60.053333pt;}
._23{width:61.120000pt;}
._2a{width:64.480000pt;}
._37{width:69.653333pt;}
._2b{width:74.560000pt;}
._21{width:77.920000pt;}
._1e{width:88.906667pt;}
._1f{width:90.533333pt;}
._2f{width:91.733333pt;}
._18{width:93.066667pt;}
._26{width:94.293333pt;}
._19{width:103.946667pt;}
._36{width:107.146667pt;}
._33{width:110.880000pt;}
._2e{width:125.493333pt;}
._35{width:226.186667pt;}
._20{width:754.960000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:13.586667pt;}
.ycc{bottom:13.600000pt;}
.y51{bottom:13.613333pt;}
.y65{bottom:13.853333pt;}
.y63{bottom:13.866667pt;}
.y55{bottom:13.880000pt;}
.y88{bottom:13.893333pt;}
.y59{bottom:13.906667pt;}
.y57{bottom:14.120000pt;}
.y53{bottom:14.133333pt;}
.y176{bottom:14.146667pt;}
.y114{bottom:14.160000pt;}
.y18b{bottom:14.173333pt;}
.ya5{bottom:14.400000pt;}
.ya0{bottom:14.933333pt;}
.ya2{bottom:15.200000pt;}
.y1b1{bottom:21.586667pt;}
.yfb{bottom:21.600000pt;}
.yf6{bottom:21.613333pt;}
.y1a8{bottom:21.626667pt;}
.y100{bottom:21.640000pt;}
.y17d{bottom:21.853333pt;}
.y1c3{bottom:21.860000pt;}
.y16e{bottom:21.866667pt;}
.y177{bottom:21.880000pt;}
.y115{bottom:21.893333pt;}
.y18a{bottom:21.906667pt;}
.y174{bottom:29.053333pt;}
.yf7{bottom:29.066667pt;}
.y110{bottom:29.080000pt;}
.y1b2{bottom:29.320000pt;}
.y172{bottom:29.326667pt;}
.yfa{bottom:29.333333pt;}
.y1c4{bottom:29.340000pt;}
.y191{bottom:29.346667pt;}
.y1a6{bottom:29.360000pt;}
.yff{bottom:29.373333pt;}
.y1a7{bottom:37.093333pt;}
.y1af{bottom:37.106667pt;}
.y169{bottom:44.533333pt;}
.y1a5{bottom:44.560000pt;}
.y1c5{bottom:44.573333pt;}
.y2{bottom:50.966667pt;}
.y1{bottom:68.300000pt;}
.y83{bottom:99.233333pt;}
.y1b8{bottom:99.500000pt;}
.y34{bottom:99.766667pt;}
.y18c{bottom:100.033333pt;}
.yae{bottom:103.233333pt;}
.y61{bottom:103.500000pt;}
.y171{bottom:104.833333pt;}
.yf4{bottom:106.433333pt;}
.y11b{bottom:108.833333pt;}
.y82{bottom:114.433333pt;}
.y1c2{bottom:114.700000pt;}
.y33{bottom:114.966667pt;}
.yd0{bottom:115.233333pt;}
.y1a0{bottom:116.833333pt;}
.y14c{bottom:119.233333pt;}
.yf3{bottom:121.900000pt;}
.y1ad{bottom:126.166667pt;}
.yad{bottom:129.100000pt;}
.y60{bottom:129.900000pt;}
.y32{bottom:130.433333pt;}
.y14b{bottom:134.426667pt;}
.y11a{bottom:135.240000pt;}
.yf2{bottom:137.106667pt;}
.y81{bottom:140.293333pt;}
.y1ac{bottom:141.360000pt;}
.y1b7{bottom:144.826667pt;}
.y189{bottom:145.360000pt;}
.y31{bottom:145.626667pt;}
.y19f{bottom:146.693333pt;}
.y170{bottom:150.160000pt;}
.yf1{bottom:152.600000pt;}
.yac{bottom:155.266667pt;}
.y5f{bottom:155.533333pt;}
.ycf{bottom:156.333333pt;}
.y1c1{bottom:160.066667pt;}
.y14a{bottom:160.600000pt;}
.y119{bottom:160.866667pt;}
.y30{bottom:161.133333pt;}
.y80{bottom:166.466667pt;}
.yf0{bottom:167.800000pt;}
.yab{bottom:170.466667pt;}
.yce{bottom:171.533333pt;}
.y149{bottom:175.800000pt;}
.y19e{bottom:176.866667pt;}
.y12c{bottom:179.266667pt;}
.y5e{bottom:181.933333pt;}
.yaa{bottom:185.933333pt;}
.y2f{bottom:186.733333pt;}
.y118{bottom:187.000000pt;}
.y1b6{bottom:190.200000pt;}
.y188{bottom:190.733333pt;}
.yef{bottom:193.666667pt;}
.y16f{bottom:195.533333pt;}
.y5d{bottom:197.133333pt;}
.ya9{bottom:201.133333pt;}
.ycd{bottom:201.400000pt;}
.y148{bottom:201.933333pt;}
.y1c0{bottom:205.400000pt;}
.y19d{bottom:206.733333pt;}
.y7f{bottom:207.800000pt;}
.y2e{bottom:213.133333pt;}
.ya8{bottom:216.600000pt;}
.y147{bottom:217.133333pt;}
.yee{bottom:219.800000pt;}
.y5c{bottom:223.266667pt;}
.y16d{bottom:225.400000pt;}
.y117{bottom:228.066667pt;}
.y2d{bottom:228.333333pt;}
.ycb{bottom:231.533333pt;}
.ya7{bottom:231.800000pt;}
.y146{bottom:232.600000pt;}
.yed{bottom:235.266667pt;}
.y1b5{bottom:235.533333pt;}
.y187{bottom:236.066667pt;}
.y19c{bottom:236.866667pt;}
.y5b{bottom:238.466667pt;}
.y2c{bottom:243.800000pt;}
.y7e{bottom:248.866667pt;}
.yec{bottom:250.466667pt;}
.y1bf{bottom:250.733333pt;}
.ya6{bottom:257.666667pt;}
.y116{bottom:258.200000pt;}
.y145{bottom:258.466667pt;}
.y2b{bottom:259.000000pt;}
.y7d{bottom:264.066667pt;}
.y5a{bottom:264.333333pt;}
.yeb{bottom:265.933333pt;}
.y186{bottom:266.200000pt;}
.y19b{bottom:266.733333pt;}
.y16c{bottom:270.733333pt;}
.ya4{bottom:272.866667pt;}
.yca{bottom:274.200000pt;}
.y2a{bottom:274.466667pt;}
.y58{bottom:279.533333pt;}
.y1b4{bottom:280.866667pt;}
.yea{bottom:281.133333pt;}
.y144{bottom:284.600000pt;}
.y113{bottom:288.066667pt;}
.y29{bottom:289.666667pt;}
.y7c{bottom:294.226667pt;}
.y185{bottom:296.106667pt;}
.ye9{bottom:296.626667pt;}
.y19a{bottom:296.893333pt;}
.y143{bottom:299.840000pt;}
.y1ab{bottom:300.373333pt;}
.yc9{bottom:300.626667pt;}
.y16b{bottom:300.893333pt;}
.ya3{bottom:303.840000pt;}
.y28{bottom:305.173333pt;}
.y56{bottom:309.440000pt;}
.ye8{bottom:311.840000pt;}
.yc8{bottom:315.840000pt;}
.y27{bottom:320.373333pt;}
.y7b{bottom:324.106667pt;}
.y142{bottom:325.960000pt;}
.y1aa{bottom:326.226667pt;}
.y199{bottom:326.773333pt;}
.y112{bottom:333.440000pt;}
.ya1{bottom:336.106667pt;}
.ye7{bottom:337.706667pt;}
.y54{bottom:339.560000pt;}
.y141{bottom:341.173333pt;}
.y184{bottom:341.440000pt;}
.yc7{bottom:341.693333pt;}
.y16a{bottom:346.226667pt;}
.y26{bottom:346.506667pt;}
.y7a{bottom:354.226667pt;}
.y198{bottom:356.893333pt;}
.y25{bottom:361.706667pt;}
.y111{bottom:363.560000pt;}
.ye6{bottom:363.840000pt;}
.y140{bottom:367.040000pt;}
.yc6{bottom:367.840000pt;}
.y9f{bottom:368.360000pt;}
.y52{bottom:369.440000pt;}
.y183{bottom:371.560000pt;}
.y168{bottom:376.093333pt;}
.y24{bottom:377.173333pt;}
.y79{bottom:384.093333pt;}
.y1be{bottom:386.760000pt;}
.ye5{bottom:389.973333pt;}
.y23{bottom:392.373333pt;}
.y13f{bottom:393.173333pt;}
.y10f{bottom:393.426667pt;}
.yc5{bottom:393.973333pt;}
.y50{bottom:399.560000pt;}
.y9e{bottom:400.640000pt;}
.y197{bottom:402.226667pt;}
.y22{bottom:407.840000pt;}
.y13e{bottom:408.626667pt;}
.yc4{bottom:409.173333pt;}
.y78{bottom:414.226667pt;}
.ye4{bottom:415.840000pt;}
.y182{bottom:416.893333pt;}
.y21{bottom:423.026667pt;}
.y13d{bottom:423.840000pt;}
.yc3{bottom:424.640000pt;}
.y1bd{bottom:432.133333pt;}
.y20{bottom:438.533333pt;}
.y13c{bottom:439.333333pt;}
.ye3{bottom:442.000000pt;}
.y4f{bottom:442.266667pt;}
.y9d{bottom:444.400000pt;}
.y196{bottom:447.600000pt;}
.y167{bottom:449.733333pt;}
.yc2{bottom:450.533333pt;}
.y10e{bottom:451.600000pt;}
.y1f{bottom:453.733333pt;}
.y13b{bottom:454.266667pt;}
.y77{bottom:456.933333pt;}
.y181{bottom:462.266667pt;}
.ye2{bottom:467.866667pt;}
.y4e{bottom:468.666667pt;}
.y1e{bottom:469.200000pt;}
.y9c{bottom:470.533333pt;}
.y166{bottom:475.600000pt;}
.yc1{bottom:476.666667pt;}
.y1bc{bottom:477.466667pt;}
.y10d{bottom:478.000000pt;}
.y13a{bottom:480.666667pt;}
.y76{bottom:483.333333pt;}
.y4d{bottom:483.866667pt;}
.y9b{bottom:486.000000pt;}
.y165{bottom:491.333333pt;}
.yc0{bottom:491.866667pt;}
.y195{bottom:492.933333pt;}
.y10c{bottom:493.200000pt;}
.y1d{bottom:495.066667pt;}
.y139{bottom:495.866667pt;}
.y75{bottom:498.533333pt;}
.y12b{bottom:499.066667pt;}
.y9a{bottom:501.200000pt;}
.y164{bottom:506.533333pt;}
.ybf{bottom:507.333333pt;}
.y180{bottom:507.600000pt;}
.y10b{bottom:508.666667pt;}
.y4c{bottom:509.733333pt;}
.y1c{bottom:510.533333pt;}
.y138{bottom:511.333333pt;}
.y99{bottom:516.666667pt;}
.y163{bottom:522.000000pt;}
.ybe{bottom:522.533333pt;}
.y194{bottom:522.800000pt;}
.y10a{bottom:523.866667pt;}
.y74{bottom:524.400000pt;}
.ye1{bottom:524.666667pt;}
.y12a{bottom:525.200000pt;}
.y1b{bottom:525.733333pt;}
.y137{bottom:526.533333pt;}
.y98{bottom:531.866667pt;}
.y4b{bottom:535.866667pt;}
.y17f{bottom:537.466667pt;}
.ybd{bottom:538.000000pt;}
.y73{bottom:539.866667pt;}
.y129{bottom:540.666667pt;}
.y1a{bottom:541.200000pt;}
.y136{bottom:542.000000pt;}
.y162{bottom:547.600000pt;}
.y109{bottom:549.733333pt;}
.y4a{bottom:551.333333pt;}
.y1b3{bottom:552.933333pt;}
.ybc{bottom:553.200000pt;}
.ye0{bottom:555.333333pt;}
.y128{bottom:555.866667pt;}
.y19{bottom:556.400000pt;}
.y135{bottom:557.200000pt;}
.y97{bottom:557.733333pt;}
.y72{bottom:566.000000pt;}
.y193{bottom:568.133333pt;}
.ydf{bottom:570.560000pt;}
.y127{bottom:571.360000pt;}
.y18{bottom:571.893333pt;}
.y134{bottom:572.693333pt;}
.y161{bottom:574.040000pt;}
.y108{bottom:575.893333pt;}
.y49{bottom:576.973333pt;}
.ybb{bottom:579.106667pt;}
.y71{bottom:581.226667pt;}
.y17e{bottom:582.840000pt;}
.y96{bottom:583.893333pt;}
.yde{bottom:586.040000pt;}
.y17{bottom:587.093333pt;}
.y133{bottom:587.893333pt;}
.y160{bottom:589.240000pt;}
.y156{bottom:591.106667pt;}
.y107{bottom:591.360000pt;}
.yba{bottom:594.306667pt;}
.y126{bottom:597.226667pt;}
.y1b0{bottom:598.306667pt;}
.y95{bottom:599.373333pt;}
.ydd{bottom:601.240000pt;}
.y16{bottom:602.573333pt;}
.y48{bottom:603.360000pt;}
.y15f{bottom:604.693333pt;}
.y106{bottom:606.560000pt;}
.y70{bottom:607.106667pt;}
.y125{bottom:612.706667pt;}
.y192{bottom:613.506667pt;}
.y132{bottom:613.760000pt;}
.y94{bottom:614.573333pt;}
.y155{bottom:617.226667pt;}
.y47{bottom:618.560000pt;}
.y15e{bottom:619.893333pt;}
.y105{bottom:622.040000pt;}
.y6f{bottom:622.306667pt;}
.yb9{bottom:624.173333pt;}
.ydc{bottom:627.106667pt;}
.y17c{bottom:628.173333pt;}
.y15{bottom:628.440000pt;}
.y93{bottom:630.026667pt;}
.y154{bottom:632.693333pt;}
.y46{bottom:634.040000pt;}
.y104{bottom:637.240000pt;}
.y124{bottom:638.293333pt;}
.y131{bottom:639.906667pt;}
.ydb{bottom:642.306667pt;}
.y190{bottom:643.626667pt;}
.y14{bottom:643.893333pt;}
.y92{bottom:645.226667pt;}
.y15d{bottom:645.773333pt;}
.y6e{bottom:652.173333pt;}
.y103{bottom:652.693333pt;}
.yb8{bottom:654.306667pt;}
.y130{bottom:655.360000pt;}
.y153{bottom:658.560000pt;}
.y1a9{bottom:658.826667pt;}
.y1bb{bottom:658.840000pt;}
.y13{bottom:659.093333pt;}
.y45{bottom:659.640000pt;}
.y91{bottom:660.706667pt;}
.y123{bottom:664.693333pt;}
.y102{bottom:667.893333pt;}
.y12f{bottom:670.560000pt;}
.y15c{bottom:671.640000pt;}
.yda{bottom:672.160000pt;}
.y17b{bottom:673.506667pt;}
.y12{bottom:674.560000pt;}
.y90{bottom:675.906667pt;}
.y122{bottom:679.893333pt;}
.yb7{bottom:684.173333pt;}
.y152{bottom:684.706667pt;}
.y44{bottom:686.040000pt;}
.y15b{bottom:686.840000pt;}
.y18f{bottom:688.960000pt;}
.y1a4{bottom:688.973333pt;}
.y11{bottom:689.773333pt;}
.y101{bottom:693.773333pt;}
.y6d{bottom:695.093333pt;}
.y121{bottom:695.373333pt;}
.y151{bottom:699.906667pt;}
.y43{bottom:701.226667pt;}
.y8f{bottom:701.773333pt;}
.y1ba{bottom:704.173333pt;}
.y10{bottom:705.226667pt;}
.yfe{bottom:708.960000pt;}
.yb6{bottom:714.333333pt;}
.yd9{bottom:715.133333pt;}
.y42{bottom:716.733333pt;}
.y15a{bottom:717.000000pt;}
.y8e{bottom:717.266667pt;}
.y17a{bottom:718.866667pt;}
.yf{bottom:720.466667pt;}
.y120{bottom:721.000000pt;}
.y6c{bottom:721.266667pt;}
.y150{bottom:726.066667pt;}
.y41{bottom:731.933333pt;}
.y8d{bottom:732.733333pt;}
.y18e{bottom:734.333333pt;}
.yd8{bottom:741.266667pt;}
.yb5{bottom:744.200000pt;}
.ye{bottom:746.333333pt;}
.y159{bottom:746.866667pt;}
.y6b{bottom:747.133333pt;}
.y40{bottom:747.400000pt;}
.y1a3{bottom:749.533333pt;}
.yfd{bottom:754.333333pt;}
.yd7{bottom:756.733333pt;}
.y8c{bottom:758.600000pt;}
.y3f{bottom:762.600000pt;}
.y179{bottom:764.200000pt;}
.y14f{bottom:767.400000pt;}
.yd{bottom:772.200000pt;}
.y6a{bottom:773.266667pt;}
.y8b{bottom:774.066667pt;}
.y158{bottom:777.000000pt;}
.y3e{bottom:778.066667pt;}
.y18d{bottom:779.666667pt;}
.yd6{bottom:782.333333pt;}
.y14e{bottom:782.600000pt;}
.yfc{bottom:784.200000pt;}
.yb4{bottom:787.133333pt;}
.yc{bottom:787.933333pt;}
.y12e{bottom:788.466667pt;}
.y69{bottom:788.733333pt;}
.y11f{bottom:793.266667pt;}
.y1a2{bottom:794.866667pt;}
.y8a{bottom:799.666667pt;}
.yb{bottom:803.133333pt;}
.y3d{bottom:803.666667pt;}
.y157{bottom:806.866667pt;}
.yd5{bottom:808.733333pt;}
.y178{bottom:809.533333pt;}
.yb3{bottom:813.266667pt;}
.yf9{bottom:814.333333pt;}
.y68{bottom:814.600000pt;}
.y89{bottom:814.866667pt;}
.ya{bottom:818.333333pt;}
.y11e{bottom:819.400000pt;}
.y14d{bottom:823.933333pt;}
.y1a1{bottom:825.000000pt;}
.yb2{bottom:828.733333pt;}
.y3c{bottom:830.066667pt;}
.yd4{bottom:834.600000pt;}
.y1b9{bottom:840.200000pt;}
.yb1{bottom:843.933333pt;}
.y87{bottom:845.000000pt;}
.y3b{bottom:845.266667pt;}
.y9{bottom:849.800000pt;}
.yd3{bottom:850.066667pt;}
.y175{bottom:854.893333pt;}
.y67{bottom:855.706667pt;}
.yf8{bottom:859.706667pt;}
.y3a{bottom:860.773333pt;}
.y8{bottom:865.040000pt;}
.y11d{bottom:865.293333pt;}
.yb0{bottom:869.840000pt;}
.y66{bottom:870.906667pt;}
.y86{bottom:874.906667pt;}
.y39{bottom:875.960000pt;}
.y7{bottom:880.226667pt;}
.y11c{bottom:880.773333pt;}
.y1ae{bottom:885.560000pt;}
.yf5{bottom:889.560000pt;}
.y38{bottom:891.440000pt;}
.y6{bottom:895.960000pt;}
.y173{bottom:900.240000pt;}
.y64{bottom:901.040000pt;}
.y12d{bottom:902.106667pt;}
.y84{bottom:905.040000pt;}
.y37{bottom:906.626667pt;}
.y5{bottom:911.173333pt;}
.yd2{bottom:917.293333pt;}
.y36{bottom:922.106667pt;}
.y4{bottom:926.893333pt;}
.y62{bottom:930.906667pt;}
.yd1{bottom:932.773333pt;}
.y3{bottom:945.293333pt;}
.y35{bottom:947.706667pt;}
.yaf{bottom:947.960000pt;}
.hb{height:25.853333pt;}
.h6{height:25.866667pt;}
.h8{height:25.900000pt;}
.h7{height:26.120000pt;}
.ha{height:26.133333pt;}
.h13{height:26.166667pt;}
.hc{height:26.920000pt;}
.hf{height:26.966667pt;}
.he{height:28.253333pt;}
.hd{height:28.266667pt;}
.h17{height:41.320000pt;}
.h11{height:41.333333pt;}
.h16{height:41.353333pt;}
.h12{height:41.366667pt;}
.h5{height:47.812500pt;}
.h9{height:52.317708pt;}
.h1{height:52.343750pt;}
.h4{height:53.750000pt;}
.h10{height:54.818262pt;}
.h19{height:56.533333pt;}
.h18{height:56.553333pt;}
.h1a{height:56.566667pt;}
.h15{height:56.800000pt;}
.h14{height:56.833333pt;}
.h2{height:58.351562pt;}
.h3{height:64.500000pt;}
.h0{height:1056.000000pt;}
.w1b{width:21.066667pt;}
.w33{width:21.866667pt;}
.we{width:33.600000pt;}
.w10{width:33.633333pt;}
.w30{width:38.700000pt;}
.w28{width:39.466667pt;}
.w29{width:41.900000pt;}
.w1c{width:51.200000pt;}
.w2c{width:54.400000pt;}
.w26{width:56.033333pt;}
.w35{width:57.333333pt;}
.w13{width:65.100000pt;}
.w17{width:75.500000pt;}
.w21{width:78.966667pt;}
.w34{width:79.766667pt;}
.w16{width:81.866667pt;}
.w22{width:81.886667pt;}
.w14{width:91.233333pt;}
.w1f{width:94.700000pt;}
.wd{width:107.233333pt;}
.w2{width:107.500000pt;}
.w11{width:109.100000pt;}
.w1e{width:117.100000pt;}
.w20{width:118.166667pt;}
.w23{width:118.966667pt;}
.w31{width:129.366667pt;}
.w36{width:137.933333pt;}
.w2f{width:139.760000pt;}
.w2b{width:141.933333pt;}
.wf{width:145.640000pt;}
.w1d{width:148.066667pt;}
.w27{width:150.426667pt;}
.w2e{width:150.973333pt;}
.w24{width:156.040000pt;}
.w25{width:166.466667pt;}
.w1a{width:178.466667pt;}
.wc{width:178.733333pt;}
.w15{width:184.866667pt;}
.w5{width:197.133333pt;}
.wb{width:199.533333pt;}
.w3{width:209.400000pt;}
.w4{width:209.666667pt;}
.w19{width:213.666667pt;}
.w2d{width:228.360000pt;}
.w8{width:250.733333pt;}
.w18{width:272.093333pt;}
.w7{width:283.306667pt;}
.w37{width:315.026667pt;}
.w6{width:334.773333pt;}
.w9{width:367.600000pt;}
.wa{width:418.533333pt;}
.w12{width:459.600000pt;}
.w2a{width:476.400000pt;}
.w32{width:488.706667pt;}
.w1{width:510.573333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.066667pt;}
.x2{left:96.033333pt;}
.x7{left:98.166667pt;}
.x14{left:120.033333pt;}
.x2f{left:122.166667pt;}
.x17{left:144.026667pt;}
.x2a{left:154.440000pt;}
.x3{left:157.666667pt;}
.x30{left:204.066667pt;}
.x1e{left:217.133333pt;}
.x2e{left:229.666667pt;}
.x21{left:256.066667pt;}
.x26{left:263.000000pt;}
.x5{left:269.173333pt;}
.xf{left:278.773333pt;}
.x18{left:284.906667pt;}
.x9{left:309.706667pt;}
.x1b{left:313.973333pt;}
.x4{left:339.293333pt;}
.x6{left:344.360000pt;}
.xd{left:350.773333pt;}
.x19{left:368.640000pt;}
.x2b{left:384.666667pt;}
.x10{left:387.866667pt;}
.x31{left:403.333333pt;}
.x11{left:423.600000pt;}
.x22{left:424.666667pt;}
.xc{left:435.066667pt;}
.x1a{left:446.266667pt;}
.x23{left:482.573333pt;}
.x1c{left:494.306667pt;}
.x1f{left:515.373333pt;}
.x1d{left:517.240000pt;}
.xe{left:518.840000pt;}
.xb{left:521.240000pt;}
.x2c{left:537.773333pt;}
.x15{left:559.906667pt;}
.x12{left:571.106667pt;}
.x29{left:576.440000pt;}
.x20{left:599.400000pt;}
.x13{left:606.866667pt;}
.x8{left:610.866667pt;}
.x27{left:621.266667pt;}
.x16{left:627.133333pt;}
.x24{left:634.866667pt;}
.x25{left:676.466667pt;}
.x2d{left:679.666667pt;}
.x28{left:686.866667pt;}
.x1{left:693.560000pt;}
}




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