
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d87fe72091f523e8b8ada5bd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b1d4a3d414b4d2805a084b92.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_e7cc550a4b10d4c9d75caf45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_9b70c9f43ac985869c03c05d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c3da06c755ff19e191b892a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_a341789e7eb60bbc4ca4886a.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_f00484118a07ebe672b829a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.370200px;}
.ls9{letter-spacing:-0.326400px;}
.ls1f{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.036000px;}
.ls17{letter-spacing:-0.015120px;}
.lsd{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.013200px;}
.lse{letter-spacing:0.063600px;}
.lsb{letter-spacing:0.079200px;}
.lsa{letter-spacing:0.100800px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.168480px;}
.ls20{letter-spacing:0.169200px;}
.ls18{letter-spacing:0.186480px;}
.ls4{letter-spacing:0.187200px;}
.ls12{letter-spacing:0.211680px;}
.ls19{letter-spacing:0.211800px;}
.ls1b{letter-spacing:0.223200px;}
.ls1d{letter-spacing:0.319680px;}
.ls1a{letter-spacing:0.330480px;}
.ls2{letter-spacing:0.351360px;}
.lsc{letter-spacing:0.351600px;}
.ls21{letter-spacing:0.357000px;}
.ls15{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.385800px;}
.ls16{letter-spacing:0.480000px;}
.ls13{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls22{letter-spacing:1.039680px;}
.ls1e{letter-spacing:47.466720px;}
.ls14{letter-spacing:64.026720px;}
.ls1c{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.wsb{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wse{word-spacing:-13.359000px;}
.ws10{word-spacing:-13.316400px;}
.ws4{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsd{word-spacing:-13.132080px;}
.ws8{word-spacing:-13.111200px;}
.wsf{word-spacing:-12.921000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
._c{margin-left:-3.655312px;}
._7{margin-left:-2.613121px;}
._0{margin-left:-1.159200px;}
._3{width:1.347960px;}
._4{width:3.344398px;}
._9{width:5.048641px;}
._2{width:6.405503px;}
._1{width:7.487280px;}
._8{width:8.495160px;}
._b{width:9.609474px;}
._6{width:10.662246px;}
._5{width:11.713199px;}
._11{width:14.844960px;}
._10{width:16.421760px;}
._18{width:17.559719px;}
._a{width:18.764401px;}
._d{width:23.273160px;}
._e{width:24.362281px;}
._17{width:38.511960px;}
._16{width:39.919680px;}
._15{width:42.310080px;}
._12{width:48.690000px;}
._14{width:85.778400px;}
._13{width:324.284280px;}
._f{width:851.152800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y52{bottom:7.740000px;}
.y51{bottom:7.920000px;}
.y9f{bottom:7.950000px;}
.ye6{bottom:9.180000px;}
.yac{bottom:17.640000px;}
.y66{bottom:25.560000px;}
.yca{bottom:29.874000px;}
.yae{bottom:29.880000px;}
.yc3{bottom:29.925000px;}
.yb3{bottom:30.060000px;}
.yb6{bottom:30.090000px;}
.y4f{bottom:35.100000px;}
.y63{bottom:35.280000px;}
.y65{bottom:52.740000px;}
.y62{bottom:52.920000px;}
.y2{bottom:78.876000px;}
.y29{bottom:79.776000px;}
.yc8{bottom:84.594000px;}
.yba{bottom:84.600000px;}
.yc1{bottom:84.645000px;}
.yb1{bottom:106.560000px;}
.yc0{bottom:106.605000px;}
.yc7{bottom:106.734000px;}
.yb9{bottom:106.740000px;}
.y1{bottom:106.956000px;}
.y107{bottom:116.856000px;}
.y135{bottom:117.396000px;}
.y151{bottom:117.756000px;}
.y79{bottom:126.936000px;}
.y9d{bottom:128.376000px;}
.yc6{bottom:128.694000px;}
.yb0{bottom:128.700000px;}
.ybf{bottom:128.745000px;}
.yb8{bottom:128.910000px;}
.y106{bottom:134.496000px;}
.y134{bottom:134.856000px;}
.y150{bottom:135.396000px;}
.yc5{bottom:135.576000px;}
.y78{bottom:144.576000px;}
.y105{bottom:151.950000px;}
.y133{bottom:152.490000px;}
.y17b{bottom:153.570000px;}
.y9c{bottom:155.730000px;}
.y14f{bottom:162.210000px;}
.y27{bottom:163.650000px;}
.y104{bottom:169.590000px;}
.y132{bottom:170.130000px;}
.y17a{bottom:171.210000px;}
.ye1{bottom:176.610000px;}
.y77{bottom:180.030000px;}
.y26{bottom:181.290000px;}
.y9b{bottom:183.090000px;}
.yc9{bottom:184.890000px;}
.y103{bottom:187.230000px;}
.y131{bottom:187.770000px;}
.y179{bottom:188.850000px;}
.y76{bottom:197.670000px;}
.y25{bottom:198.930000px;}
.y14e{bottom:199.290000px;}
.y130{bottom:205.230000px;}
.y9a{bottom:210.450000px;}
.ye0{bottom:212.250000px;}
.y75{bottom:215.310000px;}
.y24{bottom:216.390000px;}
.y102{bottom:222.690000px;}
.y14d{bottom:226.110000px;}
.y74{bottom:232.950000px;}
.y23{bottom:234.030000px;}
.yc4{bottom:234.390000px;}
.y99{bottom:237.630000px;}
.y101{bottom:240.330000px;}
.y12f{bottom:240.870000px;}
.ydf{bottom:247.890000px;}
.y73{bottom:250.410000px;}
.y100{bottom:257.970000px;}
.y12e{bottom:258.510000px;}
.y178{bottom:259.590000px;}
.y14c{bottom:263.190000px;}
.y98{bottom:264.990000px;}
.y72{bottom:268.050000px;}
.y22{bottom:269.490000px;}
.yff{bottom:275.610000px;}
.y12d{bottom:275.970000px;}
.y177{bottom:277.230000px;}
.y14b{bottom:280.830000px;}
.yde{bottom:283.350000px;}
.ybe{bottom:283.890000px;}
.y21{bottom:287.130000px;}
.y97{bottom:292.350000px;}
.yfe{bottom:293.070000px;}
.y12c{bottom:293.610000px;}
.ydd{bottom:298.470000px;}
.y71{bottom:303.510000px;}
.y176{bottom:303.690000px;}
.y20{bottom:304.770000px;}
.yfd{bottom:310.755000px;}
.y12b{bottom:311.295000px;}
.y70{bottom:318.675000px;}
.y96{bottom:319.755000px;}
.y175{bottom:321.375000px;}
.y1f{bottom:322.455000px;}
.y14a{bottom:325.335000px;}
.y4d{bottom:325.695000px;}
.yfc{bottom:328.395000px;}
.y12a{bottom:328.755000px;}
.yc2{bottom:333.255000px;}
.y174{bottom:339.015000px;}
.y1e{bottom:339.915000px;}
.y6f{bottom:345.855000px;}
.y129{bottom:346.395000px;}
.y95{bottom:347.115000px;}
.y4c{bottom:361.155000px;}
.y149{bottom:362.595000px;}
.yfb{bottom:363.495000px;}
.y128{bottom:364.035000px;}
.y173{bottom:365.475000px;}
.y1d{bottom:366.735000px;}
.y6e{bottom:373.215000px;}
.y94{bottom:374.475000px;}
.ydc{bottom:375.195000px;}
.y4b{bottom:378.795000px;}
.ybd{bottom:382.755000px;}
.yfa{bottom:389.955000px;}
.y127{bottom:390.495000px;}
.y172{bottom:392.115000px;}
.y4a{bottom:396.435000px;}
.y6d{bottom:400.575000px;}
.y93{bottom:401.835000px;}
.y171{bottom:409.755000px;}
.y148{bottom:411.015000px;}
.y49{bottom:414.075000px;}
.y1c{bottom:415.515000px;}
.ydb{bottom:424.695000px;}
.yf9{bottom:425.595000px;}
.y126{bottom:426.135000px;}
.y6c{bottom:427.935000px;}
.y147{bottom:428.655000px;}
.y92{bottom:429.195000px;}
.y48{bottom:431.535000px;}
.ybc{bottom:432.075000px;}
.y170{bottom:436.215000px;}
.yf8{bottom:443.235000px;}
.y125{bottom:443.775000px;}
.y146{bottom:446.115000px;}
.y47{bottom:449.175000px;}
.y1b{bottom:452.415000px;}
.y16f{bottom:453.855000px;}
.y6b{bottom:455.295000px;}
.y91{bottom:456.375000px;}
.yb7{bottom:459.435000px;}
.yf7{bottom:460.875000px;}
.y124{bottom:461.415000px;}
.y145{bottom:463.755000px;}
.y1a{bottom:470.055000px;}
.yd9{bottom:474.015000px;}
.y46{bottom:475.995000px;}
.yf6{bottom:478.515000px;}
.y123{bottom:478.875000px;}
.y16e{bottom:480.495000px;}
.y144{bottom:481.395000px;}
.y6a{bottom:482.655000px;}
.y90{bottom:483.735000px;}
.y19{bottom:487.695000px;}
.yf5{bottom:495.975000px;}
.y122{bottom:496.515000px;}
.y143{bottom:498.855000px;}
.yda{bottom:501.375000px;}
.y18{bottom:505.335000px;}
.y16d{bottom:506.955000px;}
.ybb{bottom:508.935000px;}
.y69{bottom:510.015000px;}
.y8f{bottom:511.095000px;}
.yf4{bottom:513.615000px;}
.y121{bottom:514.155000px;}
.y142{bottom:516.495000px;}
.y17{bottom:522.795000px;}
.y45{bottom:524.235000px;}
.y16c{bottom:524.595000px;}
.yf3{bottom:531.255000px;}
.y68{bottom:537.375000px;}
.y8e{bottom:538.455000px;}
.y16{bottom:540.435000px;}
.y44{bottom:541.875000px;}
.y16b{bottom:542.235000px;}
.y141{bottom:543.315000px;}
.yf2{bottom:548.715000px;}
.y120{bottom:549.615000px;}
.yd8{bottom:550.155000px;}
.y15{bottom:558.075000px;}
.yb5{bottom:558.255000px;}
.y43{bottom:559.515000px;}
.y67{bottom:564.555000px;}
.y8d{bottom:565.815000px;}
.yf1{bottom:566.355000px;}
.y11f{bottom:567.255000px;}
.y16a{bottom:568.875000px;}
.y14{bottom:575.535000px;}
.y42{bottom:577.155000px;}
.yf0{bottom:584.025000px;}
.y11e{bottom:584.925000px;}
.yd7{bottom:585.645000px;}
.y169{bottom:586.545000px;}
.y140{bottom:591.585000px;}
.y61{bottom:591.945000px;}
.y18d{bottom:593.025000px;}
.y13{bottom:593.205000px;}
.y41{bottom:594.825000px;}
.yef{bottom:601.485000px;}
.y11d{bottom:602.385000px;}
.y168{bottom:604.005000px;}
.yb4{bottom:607.785000px;}
.y13f{bottom:609.225000px;}
.yd6{bottom:609.585000px;}
.y18c{bottom:610.665000px;}
.y12{bottom:610.845000px;}
.y40{bottom:612.285000px;}
.y11c{bottom:620.025000px;}
.y8c{bottom:620.565000px;}
.y13e{bottom:626.865000px;}
.y18b{bottom:628.305000px;}
.y11{bottom:628.485000px;}
.y167{bottom:630.645000px;}
.yaf{bottom:635.145000px;}
.y64{bottom:636.945000px;}
.yee{bottom:637.125000px;}
.y11b{bottom:637.665000px;}
.y13d{bottom:644.505000px;}
.y10{bottom:645.945000px;}
.y8b{bottom:647.745000px;}
.y3f{bottom:647.925000px;}
.y166{bottom:648.285000px;}
.yed{bottom:654.765000px;}
.y11a{bottom:655.305000px;}
.yf{bottom:663.585000px;}
.yd5{bottom:664.305000px;}
.y3e{bottom:665.565000px;}
.y13c{bottom:671.325000px;}
.yec{bottom:672.405000px;}
.y119{bottom:672.765000px;}
.y165{bottom:674.745000px;}
.y8a{bottom:675.105000px;}
.ye{bottom:681.225000px;}
.y3d{bottom:683.025000px;}
.yb2{bottom:684.465000px;}
.y60{bottom:685.545000px;}
.yeb{bottom:689.865000px;}
.y118{bottom:690.405000px;}
.y164{bottom:692.385000px;}
.yd{bottom:698.685000px;}
.y18a{bottom:698.865000px;}
.y3c{bottom:700.665000px;}
.y89{bottom:702.465000px;}
.yea{bottom:707.505000px;}
.y117{bottom:708.045000px;}
.y13b{bottom:708.405000px;}
.yd4{bottom:713.805000px;}
.y189{bottom:716.505000px;}
.y3b{bottom:718.305000px;}
.y163{bottom:718.845000px;}
.y5f{bottom:721.185000px;}
.ye9{bottom:725.145000px;}
.yc{bottom:725.505000px;}
.y13a{bottom:726.045000px;}
.y88{bottom:729.825000px;}
.yad{bottom:733.965000px;}
.y188{bottom:734.145000px;}
.y3a{bottom:735.765000px;}
.y5e{bottom:736.125000px;}
.y162{bottom:736.485000px;}
.ye8{bottom:742.605000px;}
.y116{bottom:743.505000px;}
.y87{bottom:757.185000px;}
.y187{bottom:760.605000px;}
.y115{bottom:761.145000px;}
.yd3{bottom:763.125000px;}
.y5d{bottom:763.485000px;}
.ye7{bottom:769.425000px;}
.y39{bottom:771.225000px;}
.yb{bottom:772.305000px;}
.y186{bottom:778.245000px;}
.y114{bottom:778.785000px;}
.y161{bottom:780.765000px;}
.yaa{bottom:783.285000px;}
.y86{bottom:784.545000px;}
.y38{bottom:789.765000px;}
.y5c{bottom:790.845000px;}
.y185{bottom:795.885000px;}
.y113{bottom:796.245000px;}
.y160{bottom:807.225000px;}
.ya{bottom:808.125000px;}
.yab{bottom:810.645000px;}
.y85{bottom:811.905000px;}
.yd2{bottom:812.625000px;}
.y112{bottom:813.885000px;}
.ye5{bottom:815.145000px;}
.y5b{bottom:818.205000px;}
.y184{bottom:822.525000px;}
.y15f{bottom:824.865000px;}
.y111{bottom:831.525000px;}
.y37{bottom:835.665000px;}
.y84{bottom:839.085000px;}
.y183{bottom:840.165000px;}
.y15e{bottom:842.505000px;}
.y9{bottom:844.125000px;}
.y5a{bottom:845.565000px;}
.y110{bottom:849.165000px;}
.ya9{bottom:859.470000px;}
.yd0{bottom:861.990000px;}
.y83{bottom:866.490000px;}
.y10f{bottom:866.670000px;}
.y139{bottom:867.030000px;}
.y15d{bottom:869.010000px;}
.y36{bottom:871.170000px;}
.y59{bottom:872.970000px;}
.y8{bottom:883.950000px;}
.y182{bottom:884.310000px;}
.y138{bottom:884.670000px;}
.y15c{bottom:886.650000px;}
.y35{bottom:888.810000px;}
.y82{bottom:893.850000px;}
.ya8{bottom:894.930000px;}
.y58{bottom:900.150000px;}
.y7{bottom:901.950000px;}
.y10e{bottom:902.310000px;}
.y34{bottom:906.450000px;}
.yd1{bottom:906.990000px;}
.ya7{bottom:912.570000px;}
.y15b{bottom:913.290000px;}
.ye4{bottom:915.990000px;}
.y6{bottom:919.950000px;}
.y81{bottom:921.210000px;}
.y57{bottom:927.510000px;}
.y181{bottom:928.410000px;}
.y15a{bottom:930.930000px;}
.y33{bottom:933.270000px;}
.y10d{bottom:937.410000px;}
.y180{bottom:946.050000px;}
.ya6{bottom:948.210000px;}
.y159{bottom:948.390000px;}
.y80{bottom:948.570000px;}
.y5{bottom:952.350000px;}
.y56{bottom:954.870000px;}
.y10c{bottom:955.050000px;}
.ycf{bottom:955.590000px;}
.ya5{bottom:963.150000px;}
.ye3{bottom:965.310000px;}
.y17f{bottom:972.510000px;}
.y10b{bottom:972.690000px;}
.y158{bottom:975.030000px;}
.y7e{bottom:975.930000px;}
.y32{bottom:981.510000px;}
.y55{bottom:982.230000px;}
.y10a{bottom:990.150000px;}
.ya4{bottom:990.510000px;}
.y4{bottom:990.690000px;}
.yce{bottom:991.230000px;}
.y157{bottom:992.670000px;}
.y31{bottom:999.150000px;}
.y7f{bottom:1003.290000px;}
.ycc{bottom:1006.170000px;}
.y109{bottom:1007.790000px;}
.y54{bottom:1009.590000px;}
.ye2{bottom:1014.810000px;}
.y3{bottom:1015.350000px;}
.y30{bottom:1016.790000px;}
.ya3{bottom:1017.870000px;}
.y156{bottom:1019.130000px;}
.y137{bottom:1025.430000px;}
.y2f{bottom:1034.430000px;}
.y155{bottom:1036.770000px;}
.y53{bottom:1036.950000px;}
.y136{bottom:1043.070000px;}
.ya2{bottom:1045.230000px;}
.y7d{bottom:1051.890000px;}
.y2e{bottom:1052.070000px;}
.ycd{bottom:1055.670000px;}
.y17e{bottom:1060.890000px;}
.y154{bottom:1063.590000px;}
.y4e{bottom:1064.310000px;}
.y2d{bottom:1069.530000px;}
.y108{bottom:1069.890000px;}
.ya1{bottom:1072.410000px;}
.y17d{bottom:1078.530000px;}
.y2c{bottom:1087.170000px;}
.y7c{bottom:1087.530000px;}
.y50{bottom:1091.490000px;}
.y17c{bottom:1096.170000px;}
.ya0{bottom:1099.770000px;}
.ycb{bottom:1104.990000px;}
.y7b{bottom:1105.170000px;}
.y153{bottom:1112.010000px;}
.y2b{bottom:1122.630000px;}
.y7a{bottom:1122.810000px;}
.y9e{bottom:1127.130000px;}
.y152{bottom:1138.860000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1197.360000px;}
.h1b{height:23.220000px;}
.hd{height:26.460000px;}
.he{height:26.496000px;}
.hc{height:26.640000px;}
.h11{height:26.676000px;}
.h2{height:29.717578px;}
.h6{height:35.477578px;}
.h3{height:38.405391px;}
.h10{height:44.280000px;}
.h13{height:48.600000px;}
.h19{height:48.636000px;}
.h15{height:48.780000px;}
.h16{height:48.816000px;}
.h7{height:50.597578px;}
.hb{height:53.820000px;}
.h12{height:54.000000px;}
.h5{height:56.084062px;}
.ha{height:61.423863px;}
.h9{height:62.211094px;}
.h8{height:68.956875px;}
.h4{height:71.324297px;}
.hf{height:71.460000px;}
.h1a{height:71.640000px;}
.h14{height:147.420000px;}
.h18{height:147.456000px;}
.h17{height:147.636000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:25.560000px;}
.w1a{width:32.040000px;}
.w16{width:32.400000px;}
.w12{width:34.200000px;}
.w14{width:36.900000px;}
.w6{width:43.380000px;}
.w1f{width:43.560000px;}
.w10{width:43.776000px;}
.w29{width:56.376000px;}
.w19{width:56.880000px;}
.w1b{width:56.916000px;}
.w17{width:57.096000px;}
.w1e{width:60.120000px;}
.w5{width:60.300000px;}
.w23{width:60.660000px;}
.w13{width:64.296000px;}
.w15{width:65.160000px;}
.w2e{width:68.220000px;}
.w32{width:68.400000px;}
.w36{width:68.436000px;}
.w31{width:73.980000px;}
.w11{width:81.900000px;}
.w28{width:82.620000px;}
.wf{width:83.340000px;}
.wa{width:89.676000px;}
.we{width:90.216000px;}
.w26{width:91.620000px;}
.w2f{width:97.920000px;}
.wc{width:99.216000px;}
.w30{width:99.396000px;}
.w24{width:102.456000px;}
.wd{width:102.960000px;}
.w27{width:103.356000px;}
.w4{width:104.400000px;}
.w38{width:110.880000px;}
.w21{width:116.856000px;}
.w3{width:126.396000px;}
.wb{width:126.576000px;}
.w3a{width:127.440000px;}
.w25{width:136.836000px;}
.w37{width:144.216000px;}
.w8{width:158.970000px;}
.w34{width:168.870000px;}
.w1d{width:183.270000px;}
.w2c{width:196.410000px;}
.w7{width:231.510000px;}
.w2b{width:254.415000px;}
.w20{width:288.390000px;}
.w2a{width:346.755000px;}
.w2d{width:432.795000px;}
.w22{width:473.685000px;}
.w9{width:505.545000px;}
.w35{width:515.985000px;}
.w33{width:698.865000px;}
.w3b{width:713.490000px;}
.w39{width:754.920000px;}
.w1c{width:755.820000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:3.960000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x26{left:69.300000px;}
.x2d{left:90.036000px;}
.x4{left:95.075987px;}
.x20{left:97.236000px;}
.x33{left:111.275987px;}
.x19{left:186.330000px;}
.x2{left:210.989987px;}
.x2e{left:218.370000px;}
.x9{left:228.630000px;}
.x27{left:239.070000px;}
.xf{left:273.315000px;}
.x21{left:294.375000px;}
.x15{left:302.475000px;}
.x1c{left:323.895000px;}
.x5{left:330.915000px;}
.xb{left:356.115000px;}
.x2f{left:363.315000px;}
.x29{left:384.015000px;}
.x10{left:391.035000px;}
.x23{left:393.015000px;}
.x1d{left:416.235000px;}
.xc{left:456.045000px;}
.x7{left:458.025000px;}
.x30{left:463.425000px;}
.x2a{left:484.125000px;}
.x16{left:486.465000px;}
.x11{left:493.845000px;}
.x8{left:519.045000px;}
.x1e{left:520.305000px;}
.x17{left:547.305000px;}
.xd{left:559.725000px;}
.x24{left:567.825000px;}
.x31{left:575.205000px;}
.x12{left:592.845000px;}
.x2b{left:595.905000px;}
.x1f{left:603.645000px;}
.xe{left:650.850000px;}
.x25{left:658.770000px;}
.x1a{left:660.750000px;}
.x32{left:666.150000px;}
.x13{left:677.310000px;}
.x2c{left:686.850000px;}
.x1b{left:722.130000px;}
.x22{left:727.890000px;}
.xa{left:734.910000px;}
.x28{left:755.790000px;}
.x14{left:767.670000px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.329067pt;}
.ls9{letter-spacing:-0.290133pt;}
.ls1f{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls17{letter-spacing:-0.013440pt;}
.lsd{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.011733pt;}
.lse{letter-spacing:0.056533pt;}
.lsb{letter-spacing:0.070400pt;}
.lsa{letter-spacing:0.089600pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.149760pt;}
.ls20{letter-spacing:0.150400pt;}
.ls18{letter-spacing:0.165760pt;}
.ls4{letter-spacing:0.166400pt;}
.ls12{letter-spacing:0.188160pt;}
.ls19{letter-spacing:0.188267pt;}
.ls1b{letter-spacing:0.198400pt;}
.ls1d{letter-spacing:0.284160pt;}
.ls1a{letter-spacing:0.293760pt;}
.ls2{letter-spacing:0.312320pt;}
.lsc{letter-spacing:0.312533pt;}
.ls21{letter-spacing:0.317333pt;}
.ls15{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.342933pt;}
.ls16{letter-spacing:0.426667pt;}
.ls13{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.924160pt;}
.ls1e{letter-spacing:42.192640pt;}
.ls14{letter-spacing:56.912640pt;}
.ls1c{letter-spacing:72.272640pt;}
.wsc{word-spacing:-53.120000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wse{word-spacing:-11.874667pt;}
.ws10{word-spacing:-11.836800pt;}
.ws4{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsd{word-spacing:-11.672960pt;}
.ws8{word-spacing:-11.654400pt;}
.wsf{word-spacing:-11.485333pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
._c{margin-left:-3.249166pt;}
._7{margin-left:-2.322774pt;}
._0{margin-left:-1.030400pt;}
._3{width:1.198187pt;}
._4{width:2.972798pt;}
._9{width:4.487681pt;}
._2{width:5.693780pt;}
._1{width:6.655360pt;}
._8{width:7.551253pt;}
._b{width:8.541754pt;}
._6{width:9.477552pt;}
._5{width:10.411732pt;}
._11{width:13.195520pt;}
._10{width:14.597120pt;}
._18{width:15.608639pt;}
._a{width:16.679468pt;}
._d{width:20.687253pt;}
._e{width:21.655361pt;}
._17{width:34.232853pt;}
._16{width:35.484160pt;}
._15{width:37.608960pt;}
._12{width:43.280000pt;}
._14{width:76.247467pt;}
._13{width:288.252693pt;}
._f{width:756.580267pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:6.880000pt;}
.y51{bottom:7.040000pt;}
.y9f{bottom:7.066667pt;}
.ye6{bottom:8.160000pt;}
.yac{bottom:15.680000pt;}
.y66{bottom:22.720000pt;}
.yca{bottom:26.554667pt;}
.yae{bottom:26.560000pt;}
.yc3{bottom:26.600000pt;}
.yb3{bottom:26.720000pt;}
.yb6{bottom:26.746667pt;}
.y4f{bottom:31.200000pt;}
.y63{bottom:31.360000pt;}
.y65{bottom:46.880000pt;}
.y62{bottom:47.040000pt;}
.y2{bottom:70.112000pt;}
.y29{bottom:70.912000pt;}
.yc8{bottom:75.194667pt;}
.yba{bottom:75.200000pt;}
.yc1{bottom:75.240000pt;}
.yb1{bottom:94.720000pt;}
.yc0{bottom:94.760000pt;}
.yc7{bottom:94.874667pt;}
.yb9{bottom:94.880000pt;}
.y1{bottom:95.072000pt;}
.y107{bottom:103.872000pt;}
.y135{bottom:104.352000pt;}
.y151{bottom:104.672000pt;}
.y79{bottom:112.832000pt;}
.y9d{bottom:114.112000pt;}
.yc6{bottom:114.394667pt;}
.yb0{bottom:114.400000pt;}
.ybf{bottom:114.440000pt;}
.yb8{bottom:114.586667pt;}
.y106{bottom:119.552000pt;}
.y134{bottom:119.872000pt;}
.y150{bottom:120.352000pt;}
.yc5{bottom:120.512000pt;}
.y78{bottom:128.512000pt;}
.y105{bottom:135.066667pt;}
.y133{bottom:135.546667pt;}
.y17b{bottom:136.506667pt;}
.y9c{bottom:138.426667pt;}
.y14f{bottom:144.186667pt;}
.y27{bottom:145.466667pt;}
.y104{bottom:150.746667pt;}
.y132{bottom:151.226667pt;}
.y17a{bottom:152.186667pt;}
.ye1{bottom:156.986667pt;}
.y77{bottom:160.026667pt;}
.y26{bottom:161.146667pt;}
.y9b{bottom:162.746667pt;}
.yc9{bottom:164.346667pt;}
.y103{bottom:166.426667pt;}
.y131{bottom:166.906667pt;}
.y179{bottom:167.866667pt;}
.y76{bottom:175.706667pt;}
.y25{bottom:176.826667pt;}
.y14e{bottom:177.146667pt;}
.y130{bottom:182.426667pt;}
.y9a{bottom:187.066667pt;}
.ye0{bottom:188.666667pt;}
.y75{bottom:191.386667pt;}
.y24{bottom:192.346667pt;}
.y102{bottom:197.946667pt;}
.y14d{bottom:200.986667pt;}
.y74{bottom:207.066667pt;}
.y23{bottom:208.026667pt;}
.yc4{bottom:208.346667pt;}
.y99{bottom:211.226667pt;}
.y101{bottom:213.626667pt;}
.y12f{bottom:214.106667pt;}
.ydf{bottom:220.346667pt;}
.y73{bottom:222.586667pt;}
.y100{bottom:229.306667pt;}
.y12e{bottom:229.786667pt;}
.y178{bottom:230.746667pt;}
.y14c{bottom:233.946667pt;}
.y98{bottom:235.546667pt;}
.y72{bottom:238.266667pt;}
.y22{bottom:239.546667pt;}
.yff{bottom:244.986667pt;}
.y12d{bottom:245.306667pt;}
.y177{bottom:246.426667pt;}
.y14b{bottom:249.626667pt;}
.yde{bottom:251.866667pt;}
.ybe{bottom:252.346667pt;}
.y21{bottom:255.226667pt;}
.y97{bottom:259.866667pt;}
.yfe{bottom:260.506667pt;}
.y12c{bottom:260.986667pt;}
.ydd{bottom:265.306667pt;}
.y71{bottom:269.786667pt;}
.y176{bottom:269.946667pt;}
.y20{bottom:270.906667pt;}
.yfd{bottom:276.226667pt;}
.y12b{bottom:276.706667pt;}
.y70{bottom:283.266667pt;}
.y96{bottom:284.226667pt;}
.y175{bottom:285.666667pt;}
.y1f{bottom:286.626667pt;}
.y14a{bottom:289.186667pt;}
.y4d{bottom:289.506667pt;}
.yfc{bottom:291.906667pt;}
.y12a{bottom:292.226667pt;}
.yc2{bottom:296.226667pt;}
.y174{bottom:301.346667pt;}
.y1e{bottom:302.146667pt;}
.y6f{bottom:307.426667pt;}
.y129{bottom:307.906667pt;}
.y95{bottom:308.546667pt;}
.y4c{bottom:321.026667pt;}
.y149{bottom:322.306667pt;}
.yfb{bottom:323.106667pt;}
.y128{bottom:323.586667pt;}
.y173{bottom:324.866667pt;}
.y1d{bottom:325.986667pt;}
.y6e{bottom:331.746667pt;}
.y94{bottom:332.866667pt;}
.ydc{bottom:333.506667pt;}
.y4b{bottom:336.706667pt;}
.ybd{bottom:340.226667pt;}
.yfa{bottom:346.626667pt;}
.y127{bottom:347.106667pt;}
.y172{bottom:348.546667pt;}
.y4a{bottom:352.386667pt;}
.y6d{bottom:356.066667pt;}
.y93{bottom:357.186667pt;}
.y171{bottom:364.226667pt;}
.y148{bottom:365.346667pt;}
.y49{bottom:368.066667pt;}
.y1c{bottom:369.346667pt;}
.ydb{bottom:377.506667pt;}
.yf9{bottom:378.306667pt;}
.y126{bottom:378.786667pt;}
.y6c{bottom:380.386667pt;}
.y147{bottom:381.026667pt;}
.y92{bottom:381.506667pt;}
.y48{bottom:383.586667pt;}
.ybc{bottom:384.066667pt;}
.y170{bottom:387.746667pt;}
.yf8{bottom:393.986667pt;}
.y125{bottom:394.466667pt;}
.y146{bottom:396.546667pt;}
.y47{bottom:399.266667pt;}
.y1b{bottom:402.146667pt;}
.y16f{bottom:403.426667pt;}
.y6b{bottom:404.706667pt;}
.y91{bottom:405.666667pt;}
.yb7{bottom:408.386667pt;}
.yf7{bottom:409.666667pt;}
.y124{bottom:410.146667pt;}
.y145{bottom:412.226667pt;}
.y1a{bottom:417.826667pt;}
.yd9{bottom:421.346667pt;}
.y46{bottom:423.106667pt;}
.yf6{bottom:425.346667pt;}
.y123{bottom:425.666667pt;}
.y16e{bottom:427.106667pt;}
.y144{bottom:427.906667pt;}
.y6a{bottom:429.026667pt;}
.y90{bottom:429.986667pt;}
.y19{bottom:433.506667pt;}
.yf5{bottom:440.866667pt;}
.y122{bottom:441.346667pt;}
.y143{bottom:443.426667pt;}
.yda{bottom:445.666667pt;}
.y18{bottom:449.186667pt;}
.y16d{bottom:450.626667pt;}
.ybb{bottom:452.386667pt;}
.y69{bottom:453.346667pt;}
.y8f{bottom:454.306667pt;}
.yf4{bottom:456.546667pt;}
.y121{bottom:457.026667pt;}
.y142{bottom:459.106667pt;}
.y17{bottom:464.706667pt;}
.y45{bottom:465.986667pt;}
.y16c{bottom:466.306667pt;}
.yf3{bottom:472.226667pt;}
.y68{bottom:477.666667pt;}
.y8e{bottom:478.626667pt;}
.y16{bottom:480.386667pt;}
.y44{bottom:481.666667pt;}
.y16b{bottom:481.986667pt;}
.y141{bottom:482.946667pt;}
.yf2{bottom:487.746667pt;}
.y120{bottom:488.546667pt;}
.yd8{bottom:489.026667pt;}
.y15{bottom:496.066667pt;}
.yb5{bottom:496.226667pt;}
.y43{bottom:497.346667pt;}
.y67{bottom:501.826667pt;}
.y8d{bottom:502.946667pt;}
.yf1{bottom:503.426667pt;}
.y11f{bottom:504.226667pt;}
.y16a{bottom:505.666667pt;}
.y14{bottom:511.586667pt;}
.y42{bottom:513.026667pt;}
.yf0{bottom:519.133333pt;}
.y11e{bottom:519.933333pt;}
.yd7{bottom:520.573333pt;}
.y169{bottom:521.373333pt;}
.y140{bottom:525.853333pt;}
.y61{bottom:526.173333pt;}
.y18d{bottom:527.133333pt;}
.y13{bottom:527.293333pt;}
.y41{bottom:528.733333pt;}
.yef{bottom:534.653333pt;}
.y11d{bottom:535.453333pt;}
.y168{bottom:536.893333pt;}
.yb4{bottom:540.253333pt;}
.y13f{bottom:541.533333pt;}
.yd6{bottom:541.853333pt;}
.y18c{bottom:542.813333pt;}
.y12{bottom:542.973333pt;}
.y40{bottom:544.253333pt;}
.y11c{bottom:551.133333pt;}
.y8c{bottom:551.613333pt;}
.y13e{bottom:557.213333pt;}
.y18b{bottom:558.493333pt;}
.y11{bottom:558.653333pt;}
.y167{bottom:560.573333pt;}
.yaf{bottom:564.573333pt;}
.y64{bottom:566.173333pt;}
.yee{bottom:566.333333pt;}
.y11b{bottom:566.813333pt;}
.y13d{bottom:572.893333pt;}
.y10{bottom:574.173333pt;}
.y8b{bottom:575.773333pt;}
.y3f{bottom:575.933333pt;}
.y166{bottom:576.253333pt;}
.yed{bottom:582.013333pt;}
.y11a{bottom:582.493333pt;}
.yf{bottom:589.853333pt;}
.yd5{bottom:590.493333pt;}
.y3e{bottom:591.613333pt;}
.y13c{bottom:596.733333pt;}
.yec{bottom:597.693333pt;}
.y119{bottom:598.013333pt;}
.y165{bottom:599.773333pt;}
.y8a{bottom:600.093333pt;}
.ye{bottom:605.533333pt;}
.y3d{bottom:607.133333pt;}
.yb2{bottom:608.413333pt;}
.y60{bottom:609.373333pt;}
.yeb{bottom:613.213333pt;}
.y118{bottom:613.693333pt;}
.y164{bottom:615.453333pt;}
.yd{bottom:621.053333pt;}
.y18a{bottom:621.213333pt;}
.y3c{bottom:622.813333pt;}
.y89{bottom:624.413333pt;}
.yea{bottom:628.893333pt;}
.y117{bottom:629.373333pt;}
.y13b{bottom:629.693333pt;}
.yd4{bottom:634.493333pt;}
.y189{bottom:636.893333pt;}
.y3b{bottom:638.493333pt;}
.y163{bottom:638.973333pt;}
.y5f{bottom:641.053333pt;}
.ye9{bottom:644.573333pt;}
.yc{bottom:644.893333pt;}
.y13a{bottom:645.373333pt;}
.y88{bottom:648.733333pt;}
.yad{bottom:652.413333pt;}
.y188{bottom:652.573333pt;}
.y3a{bottom:654.013333pt;}
.y5e{bottom:654.333333pt;}
.y162{bottom:654.653333pt;}
.ye8{bottom:660.093333pt;}
.y116{bottom:660.893333pt;}
.y87{bottom:673.053333pt;}
.y187{bottom:676.093333pt;}
.y115{bottom:676.573333pt;}
.yd3{bottom:678.333333pt;}
.y5d{bottom:678.653333pt;}
.ye7{bottom:683.933333pt;}
.y39{bottom:685.533333pt;}
.yb{bottom:686.493333pt;}
.y186{bottom:691.773333pt;}
.y114{bottom:692.253333pt;}
.y161{bottom:694.013333pt;}
.yaa{bottom:696.253333pt;}
.y86{bottom:697.373333pt;}
.y38{bottom:702.013333pt;}
.y5c{bottom:702.973333pt;}
.y185{bottom:707.453333pt;}
.y113{bottom:707.773333pt;}
.y160{bottom:717.533333pt;}
.ya{bottom:718.333333pt;}
.yab{bottom:720.573333pt;}
.y85{bottom:721.693333pt;}
.yd2{bottom:722.333333pt;}
.y112{bottom:723.453333pt;}
.ye5{bottom:724.573333pt;}
.y5b{bottom:727.293333pt;}
.y184{bottom:731.133333pt;}
.y15f{bottom:733.213333pt;}
.y111{bottom:739.133333pt;}
.y37{bottom:742.813333pt;}
.y84{bottom:745.853333pt;}
.y183{bottom:746.813333pt;}
.y15e{bottom:748.893333pt;}
.y9{bottom:750.333333pt;}
.y5a{bottom:751.613333pt;}
.y110{bottom:754.813333pt;}
.ya9{bottom:763.973333pt;}
.yd0{bottom:766.213333pt;}
.y83{bottom:770.213333pt;}
.y10f{bottom:770.373333pt;}
.y139{bottom:770.693333pt;}
.y15d{bottom:772.453333pt;}
.y36{bottom:774.373333pt;}
.y59{bottom:775.973333pt;}
.y8{bottom:785.733333pt;}
.y182{bottom:786.053333pt;}
.y138{bottom:786.373333pt;}
.y15c{bottom:788.133333pt;}
.y35{bottom:790.053333pt;}
.y82{bottom:794.533333pt;}
.ya8{bottom:795.493333pt;}
.y58{bottom:800.133333pt;}
.y7{bottom:801.733333pt;}
.y10e{bottom:802.053333pt;}
.y34{bottom:805.733333pt;}
.yd1{bottom:806.213333pt;}
.ya7{bottom:811.173333pt;}
.y15b{bottom:811.813333pt;}
.ye4{bottom:814.213333pt;}
.y6{bottom:817.733333pt;}
.y81{bottom:818.853333pt;}
.y57{bottom:824.453333pt;}
.y181{bottom:825.253333pt;}
.y15a{bottom:827.493333pt;}
.y33{bottom:829.573333pt;}
.y10d{bottom:833.253333pt;}
.y180{bottom:840.933333pt;}
.ya6{bottom:842.853333pt;}
.y159{bottom:843.013333pt;}
.y80{bottom:843.173333pt;}
.y5{bottom:846.533333pt;}
.y56{bottom:848.773333pt;}
.y10c{bottom:848.933333pt;}
.ycf{bottom:849.413333pt;}
.ya5{bottom:856.133333pt;}
.ye3{bottom:858.053333pt;}
.y17f{bottom:864.453333pt;}
.y10b{bottom:864.613333pt;}
.y158{bottom:866.693333pt;}
.y7e{bottom:867.493333pt;}
.y32{bottom:872.453333pt;}
.y55{bottom:873.093333pt;}
.y10a{bottom:880.133333pt;}
.ya4{bottom:880.453333pt;}
.y4{bottom:880.613333pt;}
.yce{bottom:881.093333pt;}
.y157{bottom:882.373333pt;}
.y31{bottom:888.133333pt;}
.y7f{bottom:891.813333pt;}
.ycc{bottom:894.373333pt;}
.y109{bottom:895.813333pt;}
.y54{bottom:897.413333pt;}
.ye2{bottom:902.053333pt;}
.y3{bottom:902.533333pt;}
.y30{bottom:903.813333pt;}
.ya3{bottom:904.773333pt;}
.y156{bottom:905.893333pt;}
.y137{bottom:911.493333pt;}
.y2f{bottom:919.493333pt;}
.y155{bottom:921.573333pt;}
.y53{bottom:921.733333pt;}
.y136{bottom:927.173333pt;}
.ya2{bottom:929.093333pt;}
.y7d{bottom:935.013333pt;}
.y2e{bottom:935.173333pt;}
.ycd{bottom:938.373333pt;}
.y17e{bottom:943.013333pt;}
.y154{bottom:945.413333pt;}
.y4e{bottom:946.053333pt;}
.y2d{bottom:950.693333pt;}
.y108{bottom:951.013333pt;}
.ya1{bottom:953.253333pt;}
.y17d{bottom:958.693333pt;}
.y2c{bottom:966.373333pt;}
.y7c{bottom:966.693333pt;}
.y50{bottom:970.213333pt;}
.y17c{bottom:974.373333pt;}
.ya0{bottom:977.573333pt;}
.ycb{bottom:982.213333pt;}
.y7b{bottom:982.373333pt;}
.y153{bottom:988.453333pt;}
.y2b{bottom:997.893333pt;}
.y7a{bottom:998.053333pt;}
.y9e{bottom:1001.893333pt;}
.y152{bottom:1012.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1064.320000pt;}
.h1b{height:20.640000pt;}
.hd{height:23.520000pt;}
.he{height:23.552000pt;}
.hc{height:23.680000pt;}
.h11{height:23.712000pt;}
.h2{height:26.415625pt;}
.h6{height:31.535625pt;}
.h3{height:34.138125pt;}
.h10{height:39.360000pt;}
.h13{height:43.200000pt;}
.h19{height:43.232000pt;}
.h15{height:43.360000pt;}
.h16{height:43.392000pt;}
.h7{height:44.975625pt;}
.hb{height:47.840000pt;}
.h12{height:48.000000pt;}
.h5{height:49.852500pt;}
.ha{height:54.598989pt;}
.h9{height:55.298750pt;}
.h8{height:61.295000pt;}
.h4{height:63.399375pt;}
.hf{height:63.520000pt;}
.h1a{height:63.680000pt;}
.h14{height:131.040000pt;}
.h18{height:131.072000pt;}
.h17{height:131.232000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:22.720000pt;}
.w1a{width:28.480000pt;}
.w16{width:28.800000pt;}
.w12{width:30.400000pt;}
.w14{width:32.800000pt;}
.w6{width:38.560000pt;}
.w1f{width:38.720000pt;}
.w10{width:38.912000pt;}
.w29{width:50.112000pt;}
.w19{width:50.560000pt;}
.w1b{width:50.592000pt;}
.w17{width:50.752000pt;}
.w1e{width:53.440000pt;}
.w5{width:53.600000pt;}
.w23{width:53.920000pt;}
.w13{width:57.152000pt;}
.w15{width:57.920000pt;}
.w2e{width:60.640000pt;}
.w32{width:60.800000pt;}
.w36{width:60.832000pt;}
.w31{width:65.760000pt;}
.w11{width:72.800000pt;}
.w28{width:73.440000pt;}
.wf{width:74.080000pt;}
.wa{width:79.712000pt;}
.we{width:80.192000pt;}
.w26{width:81.440000pt;}
.w2f{width:87.040000pt;}
.wc{width:88.192000pt;}
.w30{width:88.352000pt;}
.w24{width:91.072000pt;}
.wd{width:91.520000pt;}
.w27{width:91.872000pt;}
.w4{width:92.800000pt;}
.w38{width:98.560000pt;}
.w21{width:103.872000pt;}
.w3{width:112.352000pt;}
.wb{width:112.512000pt;}
.w3a{width:113.280000pt;}
.w25{width:121.632000pt;}
.w37{width:128.192000pt;}
.w8{width:141.306667pt;}
.w34{width:150.106667pt;}
.w1d{width:162.906667pt;}
.w2c{width:174.586667pt;}
.w7{width:205.786667pt;}
.w2b{width:226.146667pt;}
.w20{width:256.346667pt;}
.w2a{width:308.226667pt;}
.w2d{width:384.706667pt;}
.w22{width:421.053333pt;}
.w9{width:449.373333pt;}
.w35{width:458.653333pt;}
.w33{width:621.213333pt;}
.w3b{width:634.213333pt;}
.w39{width:671.040000pt;}
.w1c{width:671.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:3.520000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x26{left:61.600000pt;}
.x2d{left:80.032000pt;}
.x4{left:84.511988pt;}
.x20{left:86.432000pt;}
.x33{left:98.911988pt;}
.x19{left:165.626667pt;}
.x2{left:187.546655pt;}
.x2e{left:194.106667pt;}
.x9{left:203.226667pt;}
.x27{left:212.506667pt;}
.xf{left:242.946667pt;}
.x21{left:261.666667pt;}
.x15{left:268.866667pt;}
.x1c{left:287.906667pt;}
.x5{left:294.146667pt;}
.xb{left:316.546667pt;}
.x2f{left:322.946667pt;}
.x29{left:341.346667pt;}
.x10{left:347.586667pt;}
.x23{left:349.346667pt;}
.x1d{left:369.986667pt;}
.xc{left:405.373333pt;}
.x7{left:407.133333pt;}
.x30{left:411.933333pt;}
.x2a{left:430.333333pt;}
.x16{left:432.413333pt;}
.x11{left:438.973333pt;}
.x8{left:461.373333pt;}
.x1e{left:462.493333pt;}
.x17{left:486.493333pt;}
.xd{left:497.533333pt;}
.x24{left:504.733333pt;}
.x31{left:511.293333pt;}
.x12{left:526.973333pt;}
.x2b{left:529.693333pt;}
.x1f{left:536.573333pt;}
.xe{left:578.533333pt;}
.x25{left:585.573333pt;}
.x1a{left:587.333333pt;}
.x32{left:592.133333pt;}
.x13{left:602.053333pt;}
.x2c{left:610.533333pt;}
.x1b{left:641.893333pt;}
.x22{left:647.013333pt;}
.xa{left:653.253333pt;}
.x28{left:671.813333pt;}
.x14{left:682.373333pt;}
.x3{left:711.493322pt;}
}




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