
    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_d137ac7bc81b7b70d8c930cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_a28e17326afae5694b481579.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_48a72687d14e26d15bf5eaff.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_82b0204f6dd11fe120f64918.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.672852;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_5c30f66834cdf1ad807ee383.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.965820;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_ed99a9c76da3a361060c3b80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966309;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_c23c8bd896ec8cc0524dc3d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.939941;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_637abdaa3f4243772a49e04a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.051771px;}
.ls2{letter-spacing:0.064804px;}
.ls3{letter-spacing:0.219600px;}
.ls1{letter-spacing:4.000743px;}
.ls4{letter-spacing:38.509200px;}
.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;}
}
.ws7{word-spacing:-72.004500px;}
.wse{word-spacing:-46.882245px;}
.ws0{word-spacing:-27.963234px;}
.ws5{word-spacing:-26.284284px;}
.ws13{word-spacing:-24.599394px;}
.ws12{word-spacing:-24.262524px;}
.ws19{word-spacing:-23.758434px;}
.ws9{word-spacing:-22.530208px;}
.ws6{word-spacing:-22.465404px;}
.ws18{word-spacing:-21.077085px;}
.ws17{word-spacing:-21.025314px;}
.ws1a{word-spacing:-20.668284px;}
.ws8{word-spacing:-16.273017px;}
.ws14{word-spacing:-0.704252px;}
.wsc{word-spacing:-0.287946px;}
.wsf{word-spacing:-0.071932px;}
.ws3{word-spacing:0.000000px;}
.wsb{word-spacing:0.000072px;}
.ws1b{word-spacing:0.118857px;}
.wsa{word-spacing:0.918508px;}
.ws2{word-spacing:12.855958px;}
.ws15{word-spacing:23.484608px;}
.ws11{word-spacing:39.589200px;}
.ws1{word-spacing:70.188232px;}
.ws16{word-spacing:72.151437px;}
.ws10{word-spacing:92.728521px;}
.ws4{word-spacing:123.727830px;}
.wsd{word-spacing:130.673318px;}
._43{margin-left:-6.906838px;}
._36{margin-left:-5.853457px;}
._35{margin-left:-4.834539px;}
._13{margin-left:-3.680381px;}
._12{margin-left:-2.434252px;}
._1{margin-left:-1.179914px;}
._0{width:1.068349px;}
._2{width:2.119364px;}
._11{width:3.130489px;}
._7{width:4.350707px;}
._4{width:5.942993px;}
._5{width:7.616064px;}
._1a{width:9.204891px;}
._f{width:10.686496px;}
._10{width:11.706529px;}
._2d{width:13.548523px;}
._b{width:14.699655px;}
._c{width:15.878030px;}
._23{width:17.204205px;}
._4b{width:18.339178px;}
._6{width:19.407221px;}
._15{width:20.540543px;}
._16{width:21.675015px;}
._9{width:22.797880px;}
._8{width:24.028934px;}
._d{width:25.399201px;}
._1e{width:27.499757px;}
._19{width:29.453394px;}
._18{width:30.602741px;}
._1b{width:32.201196px;}
._24{width:34.151416px;}
._a{width:35.536978px;}
._40{width:37.300455px;}
._3e{width:38.403324px;}
._20{width:39.424750px;}
._44{width:41.154955px;}
._3{width:42.292179px;}
._17{width:43.759847px;}
._1f{width:44.796448px;}
._22{width:46.908340px;}
._21{width:48.005904px;}
._28{width:50.024524px;}
._27{width:51.263958px;}
._3d{width:52.927361px;}
._34{width:55.073241px;}
._33{width:57.033948px;}
._30{width:58.835601px;}
._31{width:60.141922px;}
._39{width:61.630833px;}
._42{width:62.928704px;}
._3b{width:64.836168px;}
._3c{width:65.879199px;}
._1c{width:67.303521px;}
._e{width:69.141307px;}
._50{width:70.375292px;}
._57{width:71.575475px;}
._56{width:75.018511px;}
._55{width:76.104712px;}
._51{width:77.167040px;}
._37{width:78.345363px;}
._38{width:79.557473px;}
._25{width:80.856944px;}
._32{width:82.277393px;}
._1d{width:83.477592px;}
._52{width:86.108915px;}
._2b{width:88.492918px;}
._2c{width:90.032598px;}
._4d{width:93.963774px;}
._4e{width:95.973209px;}
._54{width:97.438705px;}
._53{width:98.543495px;}
._45{width:100.324992px;}
._49{width:106.063573px;}
._4a{width:107.159257px;}
._41{width:120.370648px;}
._2a{width:126.650822px;}
._29{width:127.981956px;}
._3f{width:129.339203px;}
._3a{width:151.691064px;}
._4c{width:156.836552px;}
._2e{width:177.491283px;}
._2f{width:179.286377px;}
._5c{width:182.445579px;}
._5d{width:200.290059px;}
._4f{width:223.724302px;}
._5f{width:229.955373px;}
._60{width:245.220777px;}
._5e{width:248.893007px;}
._47{width:257.904293px;}
._46{width:293.909785px;}
._48{width:295.692399px;}
._26{width:660.328169px;}
._59{width:1068.371069px;}
._5b{width:1329.502603px;}
._5a{width:1410.324439px;}
._58{width:1478.128585px;}
._14{width:1865.396359px;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs3{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs4{font-size:72.004500px;}
.fs5{font-size:77.764500px;}
.fs8{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y28{bottom:111.060000px;}
.y165{bottom:111.780000px;}
.y112{bottom:112.500150px;}
.y117{bottom:113.400000px;}
.y40{bottom:116.280000px;}
.yde{bottom:117.720150px;}
.y1e3{bottom:126.540000px;}
.yfe{bottom:128.880000px;}
.y27{bottom:129.240000px;}
.y104{bottom:134.460000px;}
.y93{bottom:134.460150px;}
.ydd{bottom:139.320150px;}
.y164{bottom:139.500000px;}
.yc5{bottom:144.180000px;}
.y97{bottom:145.440000px;}
.y26{bottom:147.240000px;}
.yf0{bottom:149.580000px;}
.y111{bottom:150.480150px;}
.y116{bottom:151.380000px;}
.ya5{bottom:152.460000px;}
.y3f{bottom:154.260000px;}
.y15c{bottom:155.160000px;}
.y163{bottom:156.060000px;}
.y1e2{bottom:159.120150px;}
.ydc{bottom:161.100150px;}
.y1d2{bottom:162.000000px;}
.yc4{bottom:165.960000px;}
.yfd{bottom:167.040000px;}
.y5c{bottom:170.460150px;}
.y103{bottom:172.440000px;}
.y92{bottom:172.440150px;}
.ya4{bottom:174.240000px;}
.y145{bottom:176.580000px;}
.y11c{bottom:177.120000px;}
.ydb{bottom:182.880150px;}
.y96{bottom:183.420000px;}
.y25{bottom:183.600150px;}
.yc3{bottom:187.740000px;}
.y110{bottom:188.460000px;}
.y115{bottom:189.360000px;}
.y15b{bottom:190.620000px;}
.y1e1{bottom:191.700150px;}
.y3e{bottom:192.420000px;}
.ya3{bottom:195.840000px;}
.y11b{bottom:198.000000px;}
.y24{bottom:201.600150px;}
.y1d1{bottom:201.960150px;}
.yda{bottom:204.660150px;}
.yfc{bottom:205.020000px;}
.y5b{bottom:208.260150px;}
.yc2{bottom:209.340000px;}
.y102{bottom:210.420000px;}
.y91{bottom:210.420150px;}
.ya2{bottom:217.620000px;}
.y23{bottom:219.780150px;}
.y199{bottom:221.040000px;}
.y95{bottom:221.400000px;}
.yef{bottom:223.380000px;}
.y144{bottom:223.920000px;}
.y15a{bottom:225.900000px;}
.yd9{bottom:226.260150px;}
.y10f{bottom:226.440000px;}
.y114{bottom:227.340000px;}
.y3d{bottom:230.400000px;}
.yc1{bottom:231.120000px;}
.y22{bottom:237.960150px;}
.y11a{bottom:241.380000px;}
.y1d0{bottom:242.100150px;}
.yfb{bottom:243.000000px;}
.y5a{bottom:246.240150px;}
.y178{bottom:246.420000px;}
.y101{bottom:248.400000px;}
.y90{bottom:248.400150px;}
.yc0{bottom:252.900000px;}
.yee{bottom:253.440000px;}
.y1ae{bottom:253.440150px;}
.y198{bottom:257.400000px;}
.y143{bottom:259.200000px;}
.y94{bottom:259.560000px;}
.y119{bottom:263.160000px;}
.y10e{bottom:264.420000px;}
.y3c{bottom:268.380000px;}
.y159{bottom:273.060000px;}
.ybf{bottom:274.500000px;}
.yfa{bottom:280.980000px;}
.yd8{bottom:282.960000px;}
.y59{bottom:284.220150px;}
.y197{bottom:284.760000px;}
.y100{bottom:286.560000px;}
.y8f{bottom:286.560150px;}
.y87{bottom:286.740000px;}
.yed{bottom:287.820000px;}
.y113{bottom:289.080000px;}
.y1e0{bottom:289.620000px;}
.y1ad{bottom:289.800150px;}
.ya1{bottom:291.240000px;}
.y1be{bottom:292.860000px;}
.y177{bottom:293.760000px;}
.ybe{bottom:296.280000px;}
.y72{bottom:297.540000px;}
.y187{bottom:301.680000px;}
.y142{bottom:306.540000px;}
.y1cf{bottom:307.080000px;}
.y158{bottom:308.520000px;}
.y196{bottom:312.120000px;}
.ya0{bottom:313.020000px;}
.y1ac{bottom:317.160150px;}
.ybd{bottom:318.060000px;}
.yf9{bottom:319.140000px;}
.yd7{bottom:320.940000px;}
.y186{bottom:321.120000px;}
.y58{bottom:322.200150px;}
.y8e{bottom:324.540150px;}
.y86{bottom:324.720000px;}
.y176{bottom:329.040000px;}
.y1df{bottom:329.580000px;}
.y134{bottom:331.380000px;}
.y71{bottom:335.520000px;}
.y10d{bottom:338.220000px;}
.ybc{bottom:339.660000px;}
.y118{bottom:344.160000px;}
.y3b{bottom:344.340000px;}
.y1ab{bottom:344.520150px;}
.y185{bottom:345.240000px;}
.y1ce{bottom:347.040000px;}
.y21{bottom:348.120000px;}
.y133{bottom:353.160150px;}
.y141{bottom:353.700000px;}
.y157{bottom:355.680000px;}
.yf8{bottom:357.120000px;}
.y10c{bottom:357.660000px;}
.yd6{bottom:358.920000px;}
.y57{bottom:360.360150px;}
.ybb{bottom:361.440000px;}
.y8d{bottom:362.520150px;}
.y85{bottom:362.700000px;}
.y184{bottom:363.420000px;}
.y175{bottom:364.320000px;}
.yff{bottom:365.040000px;}
.y1bd{bottom:366.840000px;}
.y20{bottom:368.100000px;}
.y1de{bottom:369.540000px;}
.y70{bottom:373.500000px;}
.y132{bottom:374.760150px;}
.y10b{bottom:379.260000px;}
.y3a{bottom:382.500000px;}
.y183{bottom:382.680000px;}
.yba{bottom:383.220000px;}
.y9f{bottom:386.640000px;}
.y1cd{bottom:387.000000px;}
.y1f{bottom:387.900000px;}
.y140{bottom:389.160000px;}
.y195{bottom:390.060000px;}
.y156{bottom:391.140000px;}
.yf7{bottom:395.100000px;}
.y131{bottom:396.540150px;}
.yd5{bottom:397.080000px;}
.y56{bottom:398.340150px;}
.y8c{bottom:400.500150px;}
.y84{bottom:400.680000px;}
.y10a{bottom:401.040000px;}
.y1bc{bottom:403.020000px;}
.yb9{bottom:405.000000px;}
.y1e{bottom:407.880000px;}
.y9e{bottom:408.420000px;}
.y1dd{bottom:409.500000px;}
.y6f{bottom:411.660000px;}
.y39{bottom:420.300000px;}
.y1aa{bottom:422.280150px;}
.y109{bottom:422.820000px;}
.y182{bottom:424.980000px;}
.y194{bottom:426.240000px;}
.yb8{bottom:426.600000px;}
.y1cc{bottom:426.960000px;}
.y1d{bottom:427.860000px;}
.y1bb{bottom:430.380000px;}
.yf6{bottom:433.080000px;}
.y1dc{bottom:434.520000px;}
.yd4{bottom:435.060000px;}
.y13f{bottom:436.320000px;}
.y55{bottom:436.320150px;}
.y155{bottom:438.300000px;}
.y8b{bottom:438.480150px;}
.y83{bottom:438.660000px;}
.y130{bottom:440.100150px;}
.y181{bottom:442.980000px;}
.y108{bottom:444.420000px;}
.y1c{bottom:447.660000px;}
.yb7{bottom:448.380000px;}
.y6e{bottom:449.640000px;}
.y38{bottom:458.280000px;}
.y1a9{bottom:458.640150px;}
.y174{bottom:459.000000px;}
.y1db{bottom:459.540000px;}
.y180{bottom:461.160000px;}
.y1cb{bottom:466.920000px;}
.y1b{bottom:467.640000px;}
.yf5{bottom:471.240000px;}
.yd3{bottom:473.040000px;}
.y154{bottom:473.760000px;}
.y54{bottom:474.300150px;}
.y8a{bottom:476.640150px;}
.y82{bottom:476.820000px;}
.y9d{bottom:482.040150px;}
.y12f{bottom:483.480150px;}
.y13e{bottom:483.660000px;}
.y1a8{bottom:486.000150px;}
.y1a{bottom:487.620000px;}
.y1ca{bottom:491.940000px;}
.y37{bottom:496.260000px;}
.y1da{bottom:499.500000px;}
.y9c{bottom:503.820150px;}
.y193{bottom:505.980000px;}
.y173{bottom:506.340000px;}
.y19{bottom:507.420000px;}
.y1ba{bottom:508.320000px;}
.y153{bottom:509.040000px;}
.yf4{bottom:509.220000px;}
.yd2{bottom:511.020000px;}
.y53{bottom:512.460150px;}
.y1a7{bottom:513.360150px;}
.y89{bottom:514.620150px;}
.y81{bottom:514.800000px;}
.y107{bottom:517.500000px;}
.y13d{bottom:518.940000px;}
.yb6{bottom:521.280000px;}
.y6d{bottom:525.600000px;}
.y18{bottom:527.400000px;}
.y1c9{bottom:531.900000px;}
.y36{bottom:534.420000px;}
.y1d9{bottom:538.740000px;}
.y1a6{bottom:540.720150px;}
.y1b9{bottom:544.680000px;}
.yf3{bottom:547.200000px;}
.y17{bottom:547.380000px;}
.y12e{bottom:548.640150px;}
.yd1{bottom:549.180000px;}
.y52{bottom:550.440150px;}
.y80{bottom:552.600000px;}
.y88{bottom:552.600150px;}
.y172{bottom:553.500000px;}
.y106{bottom:555.480000px;}
.y152{bottom:556.200000px;}
.yb5{bottom:559.260000px;}
.y6c{bottom:563.760000px;}
.y13c{bottom:566.280000px;}
.y162{bottom:568.260000px;}
.y12d{bottom:570.420150px;}
.y1c8{bottom:571.860150px;}
.y1b8{bottom:572.040000px;}
.y35{bottom:572.400000px;}
.y1d8{bottom:577.260000px;}
.y9b{bottom:577.440000px;}
.yd0{bottom:587.160000px;}
.y51{bottom:588.420150px;}
.y7f{bottom:590.580000px;}
.y192{bottom:591.480000px;}
.y12c{bottom:592.200150px;}
.y16{bottom:597.060000px;}
.yb4{bottom:597.420000px;}
.y9a{bottom:599.220000px;}
.y171{bottom:600.840000px;}
.y6b{bottom:601.740000px;}
.y1d7{bottom:602.280000px;}
.y151{bottom:603.540000px;}
.y34{bottom:610.380000px;}
.y1c7{bottom:611.820000px;}
.y13b{bottom:613.620000px;}
.y161{bottom:615.600000px;}
.y15{bottom:617.040000px;}
.y1a5{bottom:620.460000px;}
.y99{bottom:621.000000px;}
.ycf{bottom:625.140000px;}
.yec{bottom:625.680000px;}
.y50{bottom:626.400150px;}
.y7e{bottom:628.740000px;}
.y191{bottom:630.900000px;}
.yf2{bottom:631.260000px;}
.yb3{bottom:635.400000px;}
.y12b{bottom:635.940000px;}
.y6a{bottom:639.540000px;}
.y98{bottom:642.600000px;}
.y170{bottom:648.180000px;}
.y33{bottom:648.360000px;}
.y13a{bottom:648.900000px;}
.y105{bottom:649.260000px;}
.y1b7{bottom:649.800000px;}
.y150{bottom:650.880000px;}
.y1c6{bottom:651.780000px;}
.y1d6{bottom:652.320150px;}
.y14{bottom:657.000000px;}
.y12a{bottom:657.540150px;}
.y160{bottom:662.940000px;}
.yeb{bottom:663.660000px;}
.y4f{bottom:664.560150px;}
.y7d{bottom:666.720000px;}
.yb2{bottom:673.380000px;}
.yf1{bottom:674.640000px;}
.y1c5{bottom:676.800000px;}
.y13{bottom:676.980000px;}
.y69{bottom:677.520000px;}
.y129{bottom:679.320150px;}
.y1b6{bottom:686.160000px;}
.y32{bottom:686.520000px;}
.y1d5{bottom:691.560000px;}
.y16f{bottom:695.520000px;}
.y12{bottom:696.780000px;}
.y14f{bottom:698.220000px;}
.yea{bottom:701.640000px;}
.y4e{bottom:702.540150px;}
.yce{bottom:702.900000px;}
.y7c{bottom:704.700000px;}
.y1a4{bottom:705.060000px;}
.y190{bottom:709.560000px;}
.y15f{bottom:710.280000px;}
.yb1{bottom:711.360000px;}
.y1b5{bottom:713.520000px;}
.y68{bottom:715.500000px;}
.y11{bottom:716.760000px;}
.y128{bottom:722.700150px;}
.y31{bottom:724.500000px;}
.ycd{bottom:724.680000px;}
.y1d4{bottom:729.540000px;}
.y139{bottom:731.520000px;}
.y10{bottom:736.740000px;}
.ye9{bottom:739.620000px;}
.y4d{bottom:740.520000px;}
.y1b4{bottom:740.880000px;}
.y1a3{bottom:741.420150px;}
.y7b{bottom:742.680000px;}
.y16e{bottom:742.860000px;}
.y127{bottom:744.480150px;}
.y14e{bottom:745.560000px;}
.y18f{bottom:748.980000px;}
.yb0{bottom:749.520000px;}
.y67{bottom:753.660000px;}
.yf{bottom:756.540000px;}
.y1c4{bottom:756.900000px;}
.y30{bottom:762.480000px;}
.y17f{bottom:764.820000px;}
.y126{bottom:766.260150px;}
.y1d3{bottom:768.060000px;}
.y1a2{bottom:768.780150px;}
.y18e{bottom:776.340000px;}
.ye{bottom:776.520000px;}
.ye8{bottom:777.780000px;}
.y4c{bottom:778.500000px;}
.y138{bottom:778.860000px;}
.y7a{bottom:780.840000px;}
.yaf{bottom:787.500150px;}
.y125{bottom:787.860150px;}
.y16d{bottom:790.020000px;}
.y66{bottom:791.640000px;}
.y14d{bottom:792.900000px;}
.y17e{bottom:793.080000px;}
.y1a1{bottom:796.140150px;}
.yd{bottom:796.500000px;}
.y1c3{bottom:796.860150px;}
.y2f{bottom:800.460000px;}
.y18d{bottom:803.700000px;}
.ye7{bottom:815.760000px;}
.yc{bottom:816.300000px;}
.y4b{bottom:816.480000px;}
.y1b3{bottom:818.640000px;}
.y79{bottom:818.820000px;}
.y1a0{bottom:823.500150px;}
.yae{bottom:825.480000px;}
.y137{bottom:826.200000px;}
.y65{bottom:829.620000px;}
.y124{bottom:831.420150px;}
.yb{bottom:836.280000px;}
.y16c{bottom:837.360000px;}
.y2e{bottom:838.440000px;}
.y14c{bottom:840.060000px;}
.y17d{bottom:849.420000px;}
.y19f{bottom:850.860150px;}
.ye6{bottom:853.740000px;}
.y4a{bottom:854.640000px;}
.y1b2{bottom:855.000000px;}
.ya{bottom:856.260000px;}
.y78{bottom:856.800000px;}
.y1c2{bottom:862.380000px;}
.yad{bottom:863.460000px;}
.y64{bottom:867.600000px;}
.y16b{bottom:872.640000px;}
.y123{bottom:874.800150px;}
.y14b{bottom:875.340000px;}
.y9{bottom:876.060000px;}
.y2d{bottom:876.600000px;}
.y17c{bottom:877.500000px;}
.y18c{bottom:881.460000px;}
.y1b1{bottom:882.360000px;}
.ye5{bottom:891.720000px;}
.y77{bottom:894.780000px;}
.y8{bottom:896.040000px;}
.y122{bottom:896.580000px;}
.yac{bottom:901.440000px;}
.y63{bottom:905.760000px;}
.y16a{bottom:908.100000px;}
.y136{bottom:914.040000px;}
.y2c{bottom:914.580000px;}
.y18b{bottom:917.820000px;}
.y14a{bottom:922.680000px;}
.y49{bottom:925.020000px;}
.y19e{bottom:928.620000px;}
.ye4{bottom:929.880000px;}
.y76{bottom:932.760000px;}
.y17b{bottom:933.840000px;}
.yab{bottom:939.600000px;}
.y62{bottom:943.740000px;}
.ycc{bottom:945.000000px;}
.y18a{bottom:945.180000px;}
.y48{bottom:946.800000px;}
.y1c1{bottom:948.780000px;}
.y169{bottom:955.260000px;}
.y7{bottom:959.400000px;}
.y121{bottom:961.740000px;}
.y17a{bottom:962.100000px;}
.y19d{bottom:964.980000px;}
.ye3{bottom:967.860000px;}
.y47{bottom:968.580000px;}
.y149{bottom:970.020000px;}
.y75{bottom:970.920000px;}
.y189{bottom:972.540000px;}
.yaa{bottom:977.580000px;}
.y61{bottom:981.720000px;}
.ycb{bottom:982.980000px;}
.y120{bottom:983.520000px;}
.y46{bottom:990.360000px;}
.y168{bottom:990.540000px;}
.y1c0{bottom:991.980000px;}
.y19c{bottom:992.340000px;}
.y2b{bottom:998.640000px;}
.y6{bottom:1000.440000px;}
.y135{bottom:1003.500000px;}
.y11f{bottom:1005.300000px;}
.ye2{bottom:1005.840000px;}
.y74{bottom:1008.900000px;}
.y45{bottom:1011.960000px;}
.ya9{bottom:1015.560000px;}
.y60{bottom:1019.700000px;}
.yca{bottom:1020.960000px;}
.y44{bottom:1033.740000px;}
.y1bf{bottom:1035.000000px;}
.y179{bottom:1035.540000px;}
.y167{bottom:1037.880000px;}
.y15e{bottom:1040.580000px;}
.y1b0{bottom:1042.740000px;}
.ye1{bottom:1043.820000px;}
.y5{bottom:1044.000000px;}
.y73{bottom:1046.880000px;}
.y188{bottom:1051.200000px;}
.y148{bottom:1052.640000px;}
.y43{bottom:1055.520000px;}
.y5f{bottom:1057.860000px;}
.yc9{bottom:1059.120000px;}
.y19b{bottom:1070.100000px;}
.y11e{bottom:1071.540000px;}
.ya8{bottom:1071.720000px;}
.y42{bottom:1077.120000px;}
.y1af{bottom:1079.100000px;}
.ye0{bottom:1081.800000px;}
.y166{bottom:1085.220000px;}
.y4{bottom:1087.560000px;}
.y15d{bottom:1087.920000px;}
.ya7{bottom:1093.500000px;}
.y11d{bottom:1094.400000px;}
.yc8{bottom:1094.580000px;}
.y5e{bottom:1095.840000px;}
.y41{bottom:1098.900000px;}
.y147{bottom:1099.980000px;}
.y19a{bottom:1106.460000px;}
.yc7{bottom:1114.020000px;}
.y2a{bottom:1115.100000px;}
.ya6{bottom:1115.280000px;}
.ydf{bottom:1117.440000px;}
.y3{bottom:1130.940000px;}
.y5d{bottom:1133.820000px;}
.y146{bottom:1135.260000px;}
.yc6{bottom:1136.880000px;}
.y29{bottom:1137.060000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.h11{height:44.094375px;}
.h2{height:47.548542px;}
.hc{height:51.682917px;}
.h8{height:54.628488px;}
.hd{height:55.058128px;}
.h7{height:56.291856px;}
.h6{height:60.551613px;}
.h5{height:62.395332px;}
.ha{height:65.816613px;}
.h9{height:67.820645px;}
.h13{height:68.643694px;}
.hf{height:71.081613px;}
.h12{height:73.245957px;}
.h10{height:74.086875px;}
.h14{height:76.636778px;}
.h4{height:77.004738px;}
.hb{height:77.005338px;}
.he{height:79.349434px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:106.200000px;}
.x2{left:108.000000px;}
.x6{left:127.260000px;}
.x20{left:130.140000px;}
.x4{left:134.280000px;}
.xe{left:137.340000px;}
.x13{left:149.220000px;}
.xc{left:161.100000px;}
.x9{left:171.900000px;}
.xa{left:185.760000px;}
.x11{left:187.920000px;}
.x1a{left:192.060000px;}
.xf{left:211.140000px;}
.x24{left:212.400000px;}
.x27{left:214.200000px;}
.x22{left:238.680000px;}
.x1f{left:255.240000px;}
.x5{left:270.900000px;}
.xb{left:274.140000px;}
.x15{left:290.700000px;}
.x7{left:303.840000px;}
.x19{left:305.640000px;}
.x3{left:315.000000px;}
.xd{left:324.000000px;}
.x1c{left:347.220000px;}
.x21{left:352.800000px;}
.x14{left:356.220000px;}
.x17{left:370.980000px;}
.x16{left:387.540000px;}
.x18{left:402.480000px;}
.x1b{left:419.760000px;}
.x12{left:422.640000px;}
.x10{left:426.240000px;}
.x25{left:433.080000px;}
.x1{left:438.120000px;}
.x1d{left:442.260000px;}
.x26{left:451.260000px;}
.x8{left:517.320000px;}
.x28{left:532.440000px;}
.x29{left:690.840000px;}
.x1e{left:754.380000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.046019pt;}
.ls2{letter-spacing:0.057604pt;}
.ls3{letter-spacing:0.195200pt;}
.ls1{letter-spacing:3.556216pt;}
.ls4{letter-spacing:34.230400pt;}
.ws7{word-spacing:-64.004000pt;}
.wse{word-spacing:-41.673107pt;}
.ws0{word-spacing:-24.856208pt;}
.ws5{word-spacing:-23.363808pt;}
.ws13{word-spacing:-21.866128pt;}
.ws12{word-spacing:-21.566688pt;}
.ws19{word-spacing:-21.118608pt;}
.ws9{word-spacing:-20.026852pt;}
.ws6{word-spacing:-19.969248pt;}
.ws18{word-spacing:-18.735187pt;}
.ws17{word-spacing:-18.689168pt;}
.ws1a{word-spacing:-18.371808pt;}
.ws8{word-spacing:-14.464904pt;}
.ws14{word-spacing:-0.626002pt;}
.wsc{word-spacing:-0.255952pt;}
.wsf{word-spacing:-0.063940pt;}
.ws3{word-spacing:0.000000pt;}
.wsb{word-spacing:0.000064pt;}
.ws1b{word-spacing:0.105650pt;}
.wsa{word-spacing:0.816452pt;}
.ws2{word-spacing:11.427518pt;}
.ws15{word-spacing:20.875207pt;}
.ws11{word-spacing:35.190400pt;}
.ws1{word-spacing:62.389540pt;}
.ws16{word-spacing:64.134611pt;}
.ws10{word-spacing:82.425352pt;}
.ws4{word-spacing:109.980293pt;}
.wsd{word-spacing:116.154060pt;}
._43{margin-left:-6.139411pt;}
._36{margin-left:-5.203073pt;}
._35{margin-left:-4.297368pt;}
._13{margin-left:-3.271450pt;}
._12{margin-left:-2.163780pt;}
._1{margin-left:-1.048813pt;}
._0{width:0.949643pt;}
._2{width:1.883879pt;}
._11{width:2.782657pt;}
._7{width:3.867295pt;}
._4{width:5.282660pt;}
._5{width:6.769835pt;}
._1a{width:8.182125pt;}
._f{width:9.499108pt;}
._10{width:10.405804pt;}
._2d{width:12.043131pt;}
._b{width:13.066360pt;}
._c{width:14.113804pt;}
._23{width:15.292627pt;}
._4b{width:16.301491pt;}
._6{width:17.250863pt;}
._15{width:18.258260pt;}
._16{width:19.266680pt;}
._9{width:20.264782pt;}
._8{width:21.359052pt;}
._d{width:22.577068pt;}
._1e{width:24.444228pt;}
._19{width:26.180794pt;}
._18{width:27.202437pt;}
._1b{width:28.623286pt;}
._24{width:30.356814pt;}
._a{width:31.588425pt;}
._40{width:33.155960pt;}
._3e{width:34.136288pt;}
._20{width:35.044222pt;}
._44{width:36.582182pt;}
._3{width:37.593048pt;}
._17{width:38.897642pt;}
._1f{width:39.819065pt;}
._22{width:41.696302pt;}
._21{width:42.671915pt;}
._28{width:44.466244pt;}
._27{width:45.567962pt;}
._3d{width:47.046543pt;}
._34{width:48.953992pt;}
._33{width:50.696842pt;}
._30{width:52.298312pt;}
._31{width:53.459486pt;}
._39{width:54.782963pt;}
._42{width:55.936626pt;}
._3b{width:57.632149pt;}
._3c{width:58.559288pt;}
._1c{width:59.825352pt;}
._e{width:61.458939pt;}
._50{width:62.555815pt;}
._57{width:63.622645pt;}
._56{width:66.683121pt;}
._55{width:67.648633pt;}
._51{width:68.592925pt;}
._37{width:69.640323pt;}
._38{width:70.717754pt;}
._25{width:71.872839pt;}
._32{width:73.135460pt;}
._1d{width:74.202304pt;}
._52{width:76.541258pt;}
._2b{width:78.660371pt;}
._2c{width:80.028976pt;}
._4d{width:83.523355pt;}
._4e{width:85.309519pt;}
._54{width:86.612182pt;}
._53{width:87.594217pt;}
._45{width:89.177771pt;}
._49{width:94.278731pt;}
._4a{width:95.252673pt;}
._41{width:106.996131pt;}
._2a{width:112.578509pt;}
._29{width:113.761738pt;}
._3f{width:114.968180pt;}
._3a{width:134.836501pt;}
._4c{width:139.410268pt;}
._2e{width:157.770029pt;}
._2f{width:159.365668pt;}
._5c{width:162.173848pt;}
._5d{width:178.035608pt;}
._4f{width:198.866046pt;}
._5f{width:204.404776pt;}
._60{width:217.974024pt;}
._5e{width:221.238228pt;}
._47{width:229.248261pt;}
._46{width:261.253142pt;}
._48{width:262.837688pt;}
._26{width:586.958373pt;}
._59{width:949.663172pt;}
._5b{width:1181.780092pt;}
._5a{width:1253.621724pt;}
._58{width:1313.892075pt;}
._14{width:1658.130097pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs3{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs4{font-size:64.004000pt;}
.fs5{font-size:69.124000pt;}
.fs8{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:98.720000pt;}
.y165{bottom:99.360000pt;}
.y112{bottom:100.000133pt;}
.y117{bottom:100.800000pt;}
.y40{bottom:103.360000pt;}
.yde{bottom:104.640133pt;}
.y1e3{bottom:112.480000pt;}
.yfe{bottom:114.560000pt;}
.y27{bottom:114.880000pt;}
.y104{bottom:119.520000pt;}
.y93{bottom:119.520133pt;}
.ydd{bottom:123.840133pt;}
.y164{bottom:124.000000pt;}
.yc5{bottom:128.160000pt;}
.y97{bottom:129.280000pt;}
.y26{bottom:130.880000pt;}
.yf0{bottom:132.960000pt;}
.y111{bottom:133.760133pt;}
.y116{bottom:134.560000pt;}
.ya5{bottom:135.520000pt;}
.y3f{bottom:137.120000pt;}
.y15c{bottom:137.920000pt;}
.y163{bottom:138.720000pt;}
.y1e2{bottom:141.440133pt;}
.ydc{bottom:143.200133pt;}
.y1d2{bottom:144.000000pt;}
.yc4{bottom:147.520000pt;}
.yfd{bottom:148.480000pt;}
.y5c{bottom:151.520133pt;}
.y103{bottom:153.280000pt;}
.y92{bottom:153.280133pt;}
.ya4{bottom:154.880000pt;}
.y145{bottom:156.960000pt;}
.y11c{bottom:157.440000pt;}
.ydb{bottom:162.560133pt;}
.y96{bottom:163.040000pt;}
.y25{bottom:163.200133pt;}
.yc3{bottom:166.880000pt;}
.y110{bottom:167.520000pt;}
.y115{bottom:168.320000pt;}
.y15b{bottom:169.440000pt;}
.y1e1{bottom:170.400133pt;}
.y3e{bottom:171.040000pt;}
.ya3{bottom:174.080000pt;}
.y11b{bottom:176.000000pt;}
.y24{bottom:179.200133pt;}
.y1d1{bottom:179.520133pt;}
.yda{bottom:181.920133pt;}
.yfc{bottom:182.240000pt;}
.y5b{bottom:185.120133pt;}
.yc2{bottom:186.080000pt;}
.y102{bottom:187.040000pt;}
.y91{bottom:187.040133pt;}
.ya2{bottom:193.440000pt;}
.y23{bottom:195.360133pt;}
.y199{bottom:196.480000pt;}
.y95{bottom:196.800000pt;}
.yef{bottom:198.560000pt;}
.y144{bottom:199.040000pt;}
.y15a{bottom:200.800000pt;}
.yd9{bottom:201.120133pt;}
.y10f{bottom:201.280000pt;}
.y114{bottom:202.080000pt;}
.y3d{bottom:204.800000pt;}
.yc1{bottom:205.440000pt;}
.y22{bottom:211.520133pt;}
.y11a{bottom:214.560000pt;}
.y1d0{bottom:215.200133pt;}
.yfb{bottom:216.000000pt;}
.y5a{bottom:218.880133pt;}
.y178{bottom:219.040000pt;}
.y101{bottom:220.800000pt;}
.y90{bottom:220.800133pt;}
.yc0{bottom:224.800000pt;}
.yee{bottom:225.280000pt;}
.y1ae{bottom:225.280133pt;}
.y198{bottom:228.800000pt;}
.y143{bottom:230.400000pt;}
.y94{bottom:230.720000pt;}
.y119{bottom:233.920000pt;}
.y10e{bottom:235.040000pt;}
.y3c{bottom:238.560000pt;}
.y159{bottom:242.720000pt;}
.ybf{bottom:244.000000pt;}
.yfa{bottom:249.760000pt;}
.yd8{bottom:251.520000pt;}
.y59{bottom:252.640133pt;}
.y197{bottom:253.120000pt;}
.y100{bottom:254.720000pt;}
.y8f{bottom:254.720133pt;}
.y87{bottom:254.880000pt;}
.yed{bottom:255.840000pt;}
.y113{bottom:256.960000pt;}
.y1e0{bottom:257.440000pt;}
.y1ad{bottom:257.600133pt;}
.ya1{bottom:258.880000pt;}
.y1be{bottom:260.320000pt;}
.y177{bottom:261.120000pt;}
.ybe{bottom:263.360000pt;}
.y72{bottom:264.480000pt;}
.y187{bottom:268.160000pt;}
.y142{bottom:272.480000pt;}
.y1cf{bottom:272.960000pt;}
.y158{bottom:274.240000pt;}
.y196{bottom:277.440000pt;}
.ya0{bottom:278.240000pt;}
.y1ac{bottom:281.920133pt;}
.ybd{bottom:282.720000pt;}
.yf9{bottom:283.680000pt;}
.yd7{bottom:285.280000pt;}
.y186{bottom:285.440000pt;}
.y58{bottom:286.400133pt;}
.y8e{bottom:288.480133pt;}
.y86{bottom:288.640000pt;}
.y176{bottom:292.480000pt;}
.y1df{bottom:292.960000pt;}
.y134{bottom:294.560000pt;}
.y71{bottom:298.240000pt;}
.y10d{bottom:300.640000pt;}
.ybc{bottom:301.920000pt;}
.y118{bottom:305.920000pt;}
.y3b{bottom:306.080000pt;}
.y1ab{bottom:306.240133pt;}
.y185{bottom:306.880000pt;}
.y1ce{bottom:308.480000pt;}
.y21{bottom:309.440000pt;}
.y133{bottom:313.920133pt;}
.y141{bottom:314.400000pt;}
.y157{bottom:316.160000pt;}
.yf8{bottom:317.440000pt;}
.y10c{bottom:317.920000pt;}
.yd6{bottom:319.040000pt;}
.y57{bottom:320.320133pt;}
.ybb{bottom:321.280000pt;}
.y8d{bottom:322.240133pt;}
.y85{bottom:322.400000pt;}
.y184{bottom:323.040000pt;}
.y175{bottom:323.840000pt;}
.yff{bottom:324.480000pt;}
.y1bd{bottom:326.080000pt;}
.y20{bottom:327.200000pt;}
.y1de{bottom:328.480000pt;}
.y70{bottom:332.000000pt;}
.y132{bottom:333.120133pt;}
.y10b{bottom:337.120000pt;}
.y3a{bottom:340.000000pt;}
.y183{bottom:340.160000pt;}
.yba{bottom:340.640000pt;}
.y9f{bottom:343.680000pt;}
.y1cd{bottom:344.000000pt;}
.y1f{bottom:344.800000pt;}
.y140{bottom:345.920000pt;}
.y195{bottom:346.720000pt;}
.y156{bottom:347.680000pt;}
.yf7{bottom:351.200000pt;}
.y131{bottom:352.480133pt;}
.yd5{bottom:352.960000pt;}
.y56{bottom:354.080133pt;}
.y8c{bottom:356.000133pt;}
.y84{bottom:356.160000pt;}
.y10a{bottom:356.480000pt;}
.y1bc{bottom:358.240000pt;}
.yb9{bottom:360.000000pt;}
.y1e{bottom:362.560000pt;}
.y9e{bottom:363.040000pt;}
.y1dd{bottom:364.000000pt;}
.y6f{bottom:365.920000pt;}
.y39{bottom:373.600000pt;}
.y1aa{bottom:375.360133pt;}
.y109{bottom:375.840000pt;}
.y182{bottom:377.760000pt;}
.y194{bottom:378.880000pt;}
.yb8{bottom:379.200000pt;}
.y1cc{bottom:379.520000pt;}
.y1d{bottom:380.320000pt;}
.y1bb{bottom:382.560000pt;}
.yf6{bottom:384.960000pt;}
.y1dc{bottom:386.240000pt;}
.yd4{bottom:386.720000pt;}
.y13f{bottom:387.840000pt;}
.y55{bottom:387.840133pt;}
.y155{bottom:389.600000pt;}
.y8b{bottom:389.760133pt;}
.y83{bottom:389.920000pt;}
.y130{bottom:391.200133pt;}
.y181{bottom:393.760000pt;}
.y108{bottom:395.040000pt;}
.y1c{bottom:397.920000pt;}
.yb7{bottom:398.560000pt;}
.y6e{bottom:399.680000pt;}
.y38{bottom:407.360000pt;}
.y1a9{bottom:407.680133pt;}
.y174{bottom:408.000000pt;}
.y1db{bottom:408.480000pt;}
.y180{bottom:409.920000pt;}
.y1cb{bottom:415.040000pt;}
.y1b{bottom:415.680000pt;}
.yf5{bottom:418.880000pt;}
.yd3{bottom:420.480000pt;}
.y154{bottom:421.120000pt;}
.y54{bottom:421.600133pt;}
.y8a{bottom:423.680133pt;}
.y82{bottom:423.840000pt;}
.y9d{bottom:428.480133pt;}
.y12f{bottom:429.760133pt;}
.y13e{bottom:429.920000pt;}
.y1a8{bottom:432.000133pt;}
.y1a{bottom:433.440000pt;}
.y1ca{bottom:437.280000pt;}
.y37{bottom:441.120000pt;}
.y1da{bottom:444.000000pt;}
.y9c{bottom:447.840133pt;}
.y193{bottom:449.760000pt;}
.y173{bottom:450.080000pt;}
.y19{bottom:451.040000pt;}
.y1ba{bottom:451.840000pt;}
.y153{bottom:452.480000pt;}
.yf4{bottom:452.640000pt;}
.yd2{bottom:454.240000pt;}
.y53{bottom:455.520133pt;}
.y1a7{bottom:456.320133pt;}
.y89{bottom:457.440133pt;}
.y81{bottom:457.600000pt;}
.y107{bottom:460.000000pt;}
.y13d{bottom:461.280000pt;}
.yb6{bottom:463.360000pt;}
.y6d{bottom:467.200000pt;}
.y18{bottom:468.800000pt;}
.y1c9{bottom:472.800000pt;}
.y36{bottom:475.040000pt;}
.y1d9{bottom:478.880000pt;}
.y1a6{bottom:480.640133pt;}
.y1b9{bottom:484.160000pt;}
.yf3{bottom:486.400000pt;}
.y17{bottom:486.560000pt;}
.y12e{bottom:487.680133pt;}
.yd1{bottom:488.160000pt;}
.y52{bottom:489.280133pt;}
.y80{bottom:491.200000pt;}
.y88{bottom:491.200133pt;}
.y172{bottom:492.000000pt;}
.y106{bottom:493.760000pt;}
.y152{bottom:494.400000pt;}
.yb5{bottom:497.120000pt;}
.y6c{bottom:501.120000pt;}
.y13c{bottom:503.360000pt;}
.y162{bottom:505.120000pt;}
.y12d{bottom:507.040133pt;}
.y1c8{bottom:508.320133pt;}
.y1b8{bottom:508.480000pt;}
.y35{bottom:508.800000pt;}
.y1d8{bottom:513.120000pt;}
.y9b{bottom:513.280000pt;}
.yd0{bottom:521.920000pt;}
.y51{bottom:523.040133pt;}
.y7f{bottom:524.960000pt;}
.y192{bottom:525.760000pt;}
.y12c{bottom:526.400133pt;}
.y16{bottom:530.720000pt;}
.yb4{bottom:531.040000pt;}
.y9a{bottom:532.640000pt;}
.y171{bottom:534.080000pt;}
.y6b{bottom:534.880000pt;}
.y1d7{bottom:535.360000pt;}
.y151{bottom:536.480000pt;}
.y34{bottom:542.560000pt;}
.y1c7{bottom:543.840000pt;}
.y13b{bottom:545.440000pt;}
.y161{bottom:547.200000pt;}
.y15{bottom:548.480000pt;}
.y1a5{bottom:551.520000pt;}
.y99{bottom:552.000000pt;}
.ycf{bottom:555.680000pt;}
.yec{bottom:556.160000pt;}
.y50{bottom:556.800133pt;}
.y7e{bottom:558.880000pt;}
.y191{bottom:560.800000pt;}
.yf2{bottom:561.120000pt;}
.yb3{bottom:564.800000pt;}
.y12b{bottom:565.280000pt;}
.y6a{bottom:568.480000pt;}
.y98{bottom:571.200000pt;}
.y170{bottom:576.160000pt;}
.y33{bottom:576.320000pt;}
.y13a{bottom:576.800000pt;}
.y105{bottom:577.120000pt;}
.y1b7{bottom:577.600000pt;}
.y150{bottom:578.560000pt;}
.y1c6{bottom:579.360000pt;}
.y1d6{bottom:579.840133pt;}
.y14{bottom:584.000000pt;}
.y12a{bottom:584.480133pt;}
.y160{bottom:589.280000pt;}
.yeb{bottom:589.920000pt;}
.y4f{bottom:590.720133pt;}
.y7d{bottom:592.640000pt;}
.yb2{bottom:598.560000pt;}
.yf1{bottom:599.680000pt;}
.y1c5{bottom:601.600000pt;}
.y13{bottom:601.760000pt;}
.y69{bottom:602.240000pt;}
.y129{bottom:603.840133pt;}
.y1b6{bottom:609.920000pt;}
.y32{bottom:610.240000pt;}
.y1d5{bottom:614.720000pt;}
.y16f{bottom:618.240000pt;}
.y12{bottom:619.360000pt;}
.y14f{bottom:620.640000pt;}
.yea{bottom:623.680000pt;}
.y4e{bottom:624.480133pt;}
.yce{bottom:624.800000pt;}
.y7c{bottom:626.400000pt;}
.y1a4{bottom:626.720000pt;}
.y190{bottom:630.720000pt;}
.y15f{bottom:631.360000pt;}
.yb1{bottom:632.320000pt;}
.y1b5{bottom:634.240000pt;}
.y68{bottom:636.000000pt;}
.y11{bottom:637.120000pt;}
.y128{bottom:642.400133pt;}
.y31{bottom:644.000000pt;}
.ycd{bottom:644.160000pt;}
.y1d4{bottom:648.480000pt;}
.y139{bottom:650.240000pt;}
.y10{bottom:654.880000pt;}
.ye9{bottom:657.440000pt;}
.y4d{bottom:658.240000pt;}
.y1b4{bottom:658.560000pt;}
.y1a3{bottom:659.040133pt;}
.y7b{bottom:660.160000pt;}
.y16e{bottom:660.320000pt;}
.y127{bottom:661.760133pt;}
.y14e{bottom:662.720000pt;}
.y18f{bottom:665.760000pt;}
.yb0{bottom:666.240000pt;}
.y67{bottom:669.920000pt;}
.yf{bottom:672.480000pt;}
.y1c4{bottom:672.800000pt;}
.y30{bottom:677.760000pt;}
.y17f{bottom:679.840000pt;}
.y126{bottom:681.120133pt;}
.y1d3{bottom:682.720000pt;}
.y1a2{bottom:683.360133pt;}
.y18e{bottom:690.080000pt;}
.ye{bottom:690.240000pt;}
.ye8{bottom:691.360000pt;}
.y4c{bottom:692.000000pt;}
.y138{bottom:692.320000pt;}
.y7a{bottom:694.080000pt;}
.yaf{bottom:700.000133pt;}
.y125{bottom:700.320133pt;}
.y16d{bottom:702.240000pt;}
.y66{bottom:703.680000pt;}
.y14d{bottom:704.800000pt;}
.y17e{bottom:704.960000pt;}
.y1a1{bottom:707.680133pt;}
.yd{bottom:708.000000pt;}
.y1c3{bottom:708.320133pt;}
.y2f{bottom:711.520000pt;}
.y18d{bottom:714.400000pt;}
.ye7{bottom:725.120000pt;}
.yc{bottom:725.600000pt;}
.y4b{bottom:725.760000pt;}
.y1b3{bottom:727.680000pt;}
.y79{bottom:727.840000pt;}
.y1a0{bottom:732.000133pt;}
.yae{bottom:733.760000pt;}
.y137{bottom:734.400000pt;}
.y65{bottom:737.440000pt;}
.y124{bottom:739.040133pt;}
.yb{bottom:743.360000pt;}
.y16c{bottom:744.320000pt;}
.y2e{bottom:745.280000pt;}
.y14c{bottom:746.720000pt;}
.y17d{bottom:755.040000pt;}
.y19f{bottom:756.320133pt;}
.ye6{bottom:758.880000pt;}
.y4a{bottom:759.680000pt;}
.y1b2{bottom:760.000000pt;}
.ya{bottom:761.120000pt;}
.y78{bottom:761.600000pt;}
.y1c2{bottom:766.560000pt;}
.yad{bottom:767.520000pt;}
.y64{bottom:771.200000pt;}
.y16b{bottom:775.680000pt;}
.y123{bottom:777.600133pt;}
.y14b{bottom:778.080000pt;}
.y9{bottom:778.720000pt;}
.y2d{bottom:779.200000pt;}
.y17c{bottom:780.000000pt;}
.y18c{bottom:783.520000pt;}
.y1b1{bottom:784.320000pt;}
.ye5{bottom:792.640000pt;}
.y77{bottom:795.360000pt;}
.y8{bottom:796.480000pt;}
.y122{bottom:796.960000pt;}
.yac{bottom:801.280000pt;}
.y63{bottom:805.120000pt;}
.y16a{bottom:807.200000pt;}
.y136{bottom:812.480000pt;}
.y2c{bottom:812.960000pt;}
.y18b{bottom:815.840000pt;}
.y14a{bottom:820.160000pt;}
.y49{bottom:822.240000pt;}
.y19e{bottom:825.440000pt;}
.ye4{bottom:826.560000pt;}
.y76{bottom:829.120000pt;}
.y17b{bottom:830.080000pt;}
.yab{bottom:835.200000pt;}
.y62{bottom:838.880000pt;}
.ycc{bottom:840.000000pt;}
.y18a{bottom:840.160000pt;}
.y48{bottom:841.600000pt;}
.y1c1{bottom:843.360000pt;}
.y169{bottom:849.120000pt;}
.y7{bottom:852.800000pt;}
.y121{bottom:854.880000pt;}
.y17a{bottom:855.200000pt;}
.y19d{bottom:857.760000pt;}
.ye3{bottom:860.320000pt;}
.y47{bottom:860.960000pt;}
.y149{bottom:862.240000pt;}
.y75{bottom:863.040000pt;}
.y189{bottom:864.480000pt;}
.yaa{bottom:868.960000pt;}
.y61{bottom:872.640000pt;}
.ycb{bottom:873.760000pt;}
.y120{bottom:874.240000pt;}
.y46{bottom:880.320000pt;}
.y168{bottom:880.480000pt;}
.y1c0{bottom:881.760000pt;}
.y19c{bottom:882.080000pt;}
.y2b{bottom:887.680000pt;}
.y6{bottom:889.280000pt;}
.y135{bottom:892.000000pt;}
.y11f{bottom:893.600000pt;}
.ye2{bottom:894.080000pt;}
.y74{bottom:896.800000pt;}
.y45{bottom:899.520000pt;}
.ya9{bottom:902.720000pt;}
.y60{bottom:906.400000pt;}
.yca{bottom:907.520000pt;}
.y44{bottom:918.880000pt;}
.y1bf{bottom:920.000000pt;}
.y179{bottom:920.480000pt;}
.y167{bottom:922.560000pt;}
.y15e{bottom:924.960000pt;}
.y1b0{bottom:926.880000pt;}
.ye1{bottom:927.840000pt;}
.y5{bottom:928.000000pt;}
.y73{bottom:930.560000pt;}
.y188{bottom:934.400000pt;}
.y148{bottom:935.680000pt;}
.y43{bottom:938.240000pt;}
.y5f{bottom:940.320000pt;}
.yc9{bottom:941.440000pt;}
.y19b{bottom:951.200000pt;}
.y11e{bottom:952.480000pt;}
.ya8{bottom:952.640000pt;}
.y42{bottom:957.440000pt;}
.y1af{bottom:959.200000pt;}
.ye0{bottom:961.600000pt;}
.y166{bottom:964.640000pt;}
.y4{bottom:966.720000pt;}
.y15d{bottom:967.040000pt;}
.ya7{bottom:972.000000pt;}
.y11d{bottom:972.800000pt;}
.yc8{bottom:972.960000pt;}
.y5e{bottom:974.080000pt;}
.y41{bottom:976.800000pt;}
.y147{bottom:977.760000pt;}
.y19a{bottom:983.520000pt;}
.yc7{bottom:990.240000pt;}
.y2a{bottom:991.200000pt;}
.ya6{bottom:991.360000pt;}
.ydf{bottom:993.280000pt;}
.y3{bottom:1005.280000pt;}
.y5d{bottom:1007.840000pt;}
.y146{bottom:1009.120000pt;}
.yc6{bottom:1010.560000pt;}
.y29{bottom:1010.720000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.h11{height:39.195000pt;}
.h2{height:42.265371pt;}
.hc{height:45.940371pt;}
.h8{height:48.558656pt;}
.hd{height:48.940559pt;}
.h7{height:50.037205pt;}
.h6{height:53.823656pt;}
.h5{height:55.462518pt;}
.ha{height:58.503656pt;}
.h9{height:60.285018pt;}
.h13{height:61.016617pt;}
.hf{height:63.183656pt;}
.h12{height:65.107518pt;}
.h10{height:65.855000pt;}
.h14{height:68.121580pt;}
.h4{height:68.448656pt;}
.hb{height:68.449190pt;}
.he{height:70.532830pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:94.400000pt;}
.x2{left:96.000000pt;}
.x6{left:113.120000pt;}
.x20{left:115.680000pt;}
.x4{left:119.360000pt;}
.xe{left:122.080000pt;}
.x13{left:132.640000pt;}
.xc{left:143.200000pt;}
.x9{left:152.800000pt;}
.xa{left:165.120000pt;}
.x11{left:167.040000pt;}
.x1a{left:170.720000pt;}
.xf{left:187.680000pt;}
.x24{left:188.800000pt;}
.x27{left:190.400000pt;}
.x22{left:212.160000pt;}
.x1f{left:226.880000pt;}
.x5{left:240.800000pt;}
.xb{left:243.680000pt;}
.x15{left:258.400000pt;}
.x7{left:270.080000pt;}
.x19{left:271.680000pt;}
.x3{left:280.000000pt;}
.xd{left:288.000000pt;}
.x1c{left:308.640000pt;}
.x21{left:313.600000pt;}
.x14{left:316.640000pt;}
.x17{left:329.760000pt;}
.x16{left:344.480000pt;}
.x18{left:357.760000pt;}
.x1b{left:373.120000pt;}
.x12{left:375.680000pt;}
.x10{left:378.880000pt;}
.x25{left:384.960000pt;}
.x1{left:389.440000pt;}
.x1d{left:393.120000pt;}
.x26{left:401.120000pt;}
.x8{left:459.840000pt;}
.x28{left:473.280000pt;}
.x29{left:614.080000pt;}
.x1e{left:670.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; }
  