
    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_163c64259bac0474ebc20eb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.687500;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_bc3a8eb6906f8aca69e8f1d5.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_745edfd8eec8f59ccb270551.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_67bd08194e34c1e3a9d019fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.677734;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_c8344f3301abb64d12f19deb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.689453;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_8baae8ae9989cf5c42f17e9f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_66dadb342efdcb0829acd52e.woff2')format("woff");}.ff7{font-family:ff7;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:30.240000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.051771px;}
.ls1{letter-spacing:0.064804px;}
.ls4{letter-spacing:0.087547px;}
.ls2{letter-spacing:1.613223px;}
.ls3{letter-spacing:2.378601px;}
.ls5{letter-spacing:21.229200px;}
.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;}
}
.ws4{word-spacing:-66.244500px;}
.wsc{word-spacing:-27.963234px;}
.ws7{word-spacing:-26.284284px;}
.wsd{word-spacing:-24.599394px;}
.ws13{word-spacing:-23.758434px;}
.ws3{word-spacing:-22.530208px;}
.ws6{word-spacing:-22.465404px;}
.ws12{word-spacing:-21.077085px;}
.ws11{word-spacing:-21.025314px;}
.ws14{word-spacing:-20.668284px;}
.ws5{word-spacing:-18.646524px;}
.wse{word-spacing:-0.704252px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.118857px;}
.ws0{word-spacing:1.094405px;}
.wsf{word-spacing:23.484608px;}
.ws10{word-spacing:72.151437px;}
.ws2{word-spacing:123.727830px;}
.ws8{word-spacing:459.877434px;}
.ws9{word-spacing:782.010177px;}
.wsb{word-spacing:2312.730177px;}
.wsa{word-spacing:2440.890177px;}
._36{margin-left:-6.652872px;}
._e{margin-left:-5.630584px;}
._d{margin-left:-4.513172px;}
._19{margin-left:-2.919263px;}
._2{margin-left:-1.580859px;}
._0{width:1.023339px;}
._1{width:2.075489px;}
._6{width:3.488784px;}
._9{width:4.542632px;}
._b{width:5.720806px;}
._a{width:6.972035px;}
._c{width:7.989692px;}
._1d{width:9.014077px;}
._15{width:10.189565px;}
._13{width:11.385496px;}
._56{width:12.390811px;}
._8{width:13.464857px;}
._7{width:14.755035px;}
._11{width:16.153666px;}
._f{width:18.078389px;}
._10{width:19.127304px;}
._23{width:20.600490px;}
._3{width:22.159448px;}
._21{width:24.330991px;}
._4{width:26.811203px;}
._31{width:28.052071px;}
._14{width:29.698004px;}
._26{width:31.685606px;}
._45{width:33.175702px;}
._30{width:34.251140px;}
._1c{width:35.361089px;}
._34{width:36.402534px;}
._54{width:38.179006px;}
._43{width:39.468619px;}
._62{width:41.204552px;}
._1b{width:42.701694px;}
._1a{width:43.774959px;}
._37{width:45.513260px;}
._5{width:47.631636px;}
._28{width:52.939569px;}
._16{width:54.042954px;}
._27{width:55.113930px;}
._40{width:56.776556px;}
._24{width:58.897352px;}
._25{width:60.089843px;}
._46{width:61.930062px;}
._50{width:66.182277px;}
._51{width:67.433294px;}
._41{width:69.271126px;}
._53{width:74.943868px;}
._47{width:76.955086px;}
._29{width:79.588487px;}
._4f{width:83.846504px;}
._4e{width:85.578212px;}
._55{width:88.443404px;}
._70{width:90.956849px;}
._48{width:97.106637px;}
._44{width:107.991474px;}
._17{width:112.136080px;}
._66{width:118.066787px;}
._49{width:123.984033px;}
._2f{width:128.030651px;}
._52{width:129.371805px;}
._18{width:130.587166px;}
._72{width:137.985931px;}
._71{width:139.367193px;}
._2e{width:142.437009px;}
._32{width:144.714159px;}
._6f{width:147.079138px;}
._2a{width:151.691064px;}
._42{width:156.921135px;}
._4d{width:159.894489px;}
._2b{width:171.307283px;}
._77{width:182.445579px;}
._78{width:200.290059px;}
._4a{width:212.367552px;}
._4c{width:218.210069px;}
._4b{width:219.506510px;}
._3d{width:225.966829px;}
._22{width:229.474076px;}
._3c{width:243.123874px;}
._2d{width:244.221336px;}
._79{width:248.893007px;}
._2c{width:259.665812px;}
._5f{width:268.877673px;}
._3e{width:273.129414px;}
._3b{width:279.091250px;}
._6b{width:298.981819px;}
._5a{width:364.919348px;}
._58{width:374.212579px;}
._6d{width:390.439138px;}
._33{width:399.542051px;}
._3a{width:404.524332px;}
._5b{width:406.391619px;}
._60{width:414.292208px;}
._5d{width:421.071606px;}
._67{width:430.948744px;}
._35{width:433.398037px;}
._3f{width:444.822157px;}
._59{width:447.045435px;}
._69{width:452.402037px;}
._38{width:454.690823px;}
._64{width:491.571909px;}
._68{width:523.057072px;}
._6c{width:543.666110px;}
._73{width:552.820834px;}
._61{width:555.014951px;}
._5e{width:557.477257px;}
._20{width:606.422381px;}
._5c{width:621.838161px;}
._57{width:628.241037px;}
._1e{width:708.428964px;}
._39{width:712.625238px;}
._1f{width:786.702403px;}
._65{width:789.711606px;}
._6a{width:850.468681px;}
._6e{width:954.066109px;}
._74{width:1093.276409px;}
._63{width:1239.265226px;}
._76{width:1329.502603px;}
._75{width:1410.324439px;}
._12{width:1652.685868px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.004500px;}
.fs3{font-size:59.764500px;}
.fs0{font-size:66.244500px;}
.fs5{font-size:72.004498px;}
.fs4{font-size:72.004500px;}
.fs9{font-size:77.764500px;}
.fs8{font-size:81.364500px;}
.fs2{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.ya3{bottom:3.779906px;}
.ya6{bottom:3.779907px;}
.yaa{bottom:3.779910px;}
.yaf{bottom:3.779912px;}
.yb3{bottom:3.779914px;}
.yb9{bottom:3.779916px;}
.ybd{bottom:3.779919px;}
.y92{bottom:3.779923px;}
.y96{bottom:3.779925px;}
.yc9{bottom:3.779926px;}
.y9b{bottom:3.779927px;}
.ycd{bottom:3.779929px;}
.ya0{bottom:3.779930px;}
.yad{bottom:3.780061px;}
.yd8{bottom:3.780063px;}
.yb7{bottom:3.780065px;}
.yc0{bottom:3.780070px;}
.yc4{bottom:3.780073px;}
.y98{bottom:3.780076px;}
.y9d{bottom:3.780078px;}
.ycf{bottom:3.780079px;}
.y1c{bottom:111.060000px;}
.yfe{bottom:120.420000px;}
.ye9{bottom:123.480000px;}
.y195{bottom:126.540000px;}
.y11a{bottom:126.900150px;}
.y1b{bottom:129.240000px;}
.y10b{bottom:133.560000px;}
.ya1{bottom:134.280066px;}
.y127{bottom:141.120000px;}
.yf0{bottom:141.300000px;}
.y34{bottom:144.540000px;}
.y1a{bottom:147.240000px;}
.y8c{bottom:149.220150px;}
.y10a{bottom:155.340000px;}
.yd0{bottom:155.520000px;}
.yfd{bottom:158.400000px;}
.y194{bottom:159.120150px;}
.ye8{bottom:161.460000px;}
.y185{bottom:162.000000px;}
.y126{bottom:162.900000px;}
.y119{bottom:164.880150px;}
.y19{bottom:165.420000px;}
.y33{bottom:166.320000px;}
.y9f{bottom:166.860066px;}
.y67{bottom:168.840150px;}
.yef{bottom:179.280000px;}
.y109{bottom:182.880000px;}
.y18{bottom:183.600150px;}
.yce{bottom:184.320066px;}
.y8b{bottom:187.200150px;}
.y32{bottom:188.100000px;}
.y193{bottom:191.700150px;}
.yfc{bottom:196.560000px;}
.ye7{bottom:199.440000px;}
.y108{bottom:199.440150px;}
.y82{bottom:200.520000px;}
.y17{bottom:201.600000px;}
.y184{bottom:201.960150px;}
.y4c{bottom:202.500150px;}
.y9e{bottom:203.400000px;}
.y125{bottom:205.560000px;}
.y66{bottom:207.000150px;}
.ycc{bottom:216.900066px;}
.yee{bottom:217.260000px;}
.y16{bottom:219.780000px;}
.y14d{bottom:221.040000px;}
.y118{bottom:221.580000px;}
.y8a{bottom:225.360150px;}
.y9c{bottom:232.200066px;}
.ye6{bottom:237.600000px;}
.y15{bottom:238.140000px;}
.y81{bottom:238.500000px;}
.y4b{bottom:240.480150px;}
.y183{bottom:242.100150px;}
.y31{bottom:243.900000px;}
.y65{bottom:244.980150px;}
.ycb{bottom:249.480066px;}
.y161{bottom:253.440150px;}
.yed{bottom:255.420000px;}
.yfb{bottom:255.600000px;}
.y14c{bottom:257.400000px;}
.y89{bottom:263.340150px;}
.y124{bottom:264.060000px;}
.y9a{bottom:264.780066px;}
.y107{bottom:269.100150px;}
.y13b{bottom:274.500000px;}
.y117{bottom:275.040000px;}
.y80{bottom:276.300000px;}
.y4a{bottom:278.460150px;}
.y30{bottom:281.880000px;}
.y64{bottom:282.960150px;}
.y14b{bottom:284.760000px;}
.yca{bottom:286.560000px;}
.y192{bottom:289.620000px;}
.y160{bottom:289.800150px;}
.y14{bottom:292.500000px;}
.y171{bottom:292.860000px;}
.yec{bottom:293.400000px;}
.yfa{bottom:293.580000px;}
.ye5{bottom:296.640000px;}
.y99{bottom:301.140000px;}
.y88{bottom:301.320150px;}
.y13a{bottom:301.680000px;}
.y106{bottom:307.080000px;}
.y14a{bottom:312.120000px;}
.y13{bottom:312.480000px;}
.y7f{bottom:314.280000px;}
.yc8{bottom:315.360066px;}
.y49{bottom:316.620000px;}
.y15f{bottom:317.160150px;}
.y2f{bottom:320.040000px;}
.y63{bottom:320.940150px;}
.y139{bottom:321.120000px;}
.y123{bottom:325.980000px;}
.y191{bottom:329.580000px;}
.y97{bottom:329.940066px;}
.y116{bottom:331.020000px;}
.yeb{bottom:331.380000px;}
.yf9{bottom:331.560000px;}
.y12{bottom:332.280000px;}
.ye4{bottom:334.620150px;}
.y15e{bottom:344.520150px;}
.y138{bottom:345.240000px;}
.y105{bottom:345.240150px;}
.y182{bottom:347.040000px;}
.yc7{bottom:347.940066px;}
.y11{bottom:352.260000px;}
.y7e{bottom:352.440000px;}
.y48{bottom:354.600000px;}
.y2e{bottom:358.020000px;}
.y62{bottom:359.100150px;}
.y87{bottom:360.360150px;}
.y95{bottom:362.520066px;}
.y137{bottom:363.420000px;}
.y122{bottom:363.960000px;}
.y170{bottom:366.840000px;}
.y115{bottom:369.000000px;}
.yf8{bottom:369.540000px;}
.y10{bottom:372.240000px;}
.ye3{bottom:372.600150px;}
.yc6{bottom:380.520066px;}
.y136{bottom:382.680000px;}
.y104{bottom:383.220150px;}
.y181{bottom:387.000000px;}
.y149{bottom:390.060000px;}
.y7d{bottom:390.420000px;}
.y47{bottom:392.580000px;}
.y2d{bottom:396.000000px;}
.y61{bottom:397.080150px;}
.y93{bottom:399.600150px;}
.y121{bottom:401.940000px;}
.y16f{bottom:403.020000px;}
.y114{bottom:407.160000px;}
.yf7{bottom:407.700000px;}
.y190{bottom:409.500000px;}
.ye2{bottom:410.580150px;}
.yf{bottom:413.100000px;}
.yc5{bottom:413.100066px;}
.y103{bottom:421.200150px;}
.y86{bottom:421.920000px;}
.y15d{bottom:422.280150px;}
.y135{bottom:424.980000px;}
.y148{bottom:426.240000px;}
.y180{bottom:426.960000px;}
.y7c{bottom:428.400000px;}
.y91{bottom:428.400066px;}
.y16e{bottom:430.380000px;}
.y46{bottom:430.560000px;}
.y90{bottom:432.180000px;}
.y94{bottom:432.180150px;}
.y18f{bottom:434.520000px;}
.y60{bottom:435.060150px;}
.y120{bottom:440.100000px;}
.y134{bottom:442.980000px;}
.yf6{bottom:445.680000px;}
.yc3{bottom:445.680066px;}
.ye1{bottom:448.560150px;}
.ye{bottom:453.960000px;}
.y2c{bottom:455.040000px;}
.y15c{bottom:458.640150px;}
.y18e{bottom:459.540000px;}
.y133{bottom:461.160000px;}
.y113{bottom:463.680000px;}
.y7b{bottom:466.380000px;}
.y17f{bottom:466.920000px;}
.y45{bottom:468.720000px;}
.y5f{bottom:473.040150px;}
.yd{bottom:473.940000px;}
.y102{bottom:477.900150px;}
.y11f{bottom:478.080000px;}
.yc2{bottom:482.760000px;}
.yf5{bottom:483.660000px;}
.y15b{bottom:486.000150px;}
.ye0{bottom:486.720150px;}
.y17e{bottom:491.940000px;}
.yc{bottom:493.920000px;}
.y18d{bottom:499.500000px;}
.y7a{bottom:504.540000px;}
.y147{bottom:505.980000px;}
.y44{bottom:506.700000px;}
.y16d{bottom:508.320000px;}
.y5e{bottom:511.020150px;}
.yc1{bottom:511.560066px;}
.y15a{bottom:513.360150px;}
.yb{bottom:513.720000px;}
.y11e{bottom:516.060000px;}
.y112{bottom:517.320150px;}
.yf4{bottom:521.640000px;}
.ydf{bottom:524.700150px;}
.y2b{bottom:531.180000px;}
.y101{bottom:531.360150px;}
.y17d{bottom:531.900000px;}
.ya{bottom:533.700000px;}
.y18c{bottom:538.740000px;}
.y159{bottom:540.720150px;}
.y8f{bottom:542.520000px;}
.y85{bottom:543.420000px;}
.ybf{bottom:544.320066px;}
.y16c{bottom:544.680000px;}
.y9{bottom:553.680000px;}
.y11d{bottom:554.040000px;}
.yf3{bottom:559.620000px;}
.yde{bottom:562.680150px;}
.y79{bottom:563.580000px;}
.y43{bottom:568.260000px;}
.y2a{bottom:569.160000px;}
.y84{bottom:570.420000px;}
.y17c{bottom:571.860150px;}
.y16b{bottom:572.040000px;}
.y111{bottom:573.300150px;}
.y8{bottom:573.480000px;}
.ybe{bottom:576.900066px;}
.y18b{bottom:577.260000px;}
.y8e{bottom:580.500000px;}
.y100{bottom:585.000000px;}
.y146{bottom:591.480000px;}
.y11c{bottom:592.020000px;}
.y7{bottom:593.460000px;}
.y83{bottom:597.600000px;}
.yf2{bottom:597.780000px;}
.ydd{bottom:600.660150px;}
.y78{bottom:601.560000px;}
.y18a{bottom:602.280000px;}
.y29{bottom:607.140000px;}
.ybc{bottom:609.480066px;}
.y110{bottom:611.280150px;}
.y17b{bottom:611.820000px;}
.y6{bottom:613.440000px;}
.y5a{bottom:618.480000px;}
.yea{bottom:618.480150px;}
.y158{bottom:620.460000px;}
.y5d{bottom:621.360150px;}
.y42{bottom:630.180000px;}
.y145{bottom:630.900000px;}
.yf1{bottom:635.580000px;}
.yff{bottom:638.640000px;}
.y77{bottom:639.540000px;}
.y28{bottom:645.120150px;}
.ybb{bottom:646.560000px;}
.y16a{bottom:649.800000px;}
.y17a{bottom:651.780000px;}
.y189{bottom:652.320150px;}
.y5c{bottom:653.940000px;}
.y59{bottom:656.640000px;}
.ydc{bottom:657.360150px;}
.y10f{bottom:667.980000px;}
.y41{bottom:668.160000px;}
.yba{bottom:675.360066px;}
.y179{bottom:676.800000px;}
.y76{bottom:677.520000px;}
.y27{bottom:683.100000px;}
.y169{bottom:686.160000px;}
.y5b{bottom:686.520000px;}
.y188{bottom:691.560000px;}
.y58{bottom:694.620000px;}
.y157{bottom:705.060000px;}
.y40{bottom:706.140000px;}
.yb8{bottom:707.940066px;}
.y144{bottom:709.560000px;}
.ydb{bottom:711.720000px;}
.y168{bottom:713.520000px;}
.y75{bottom:715.500000px;}
.y178{bottom:716.760000px;}
.y26{bottom:721.260000px;}
.y10e{bottom:721.620000px;}
.y187{bottom:729.540000px;}
.y8d{bottom:732.600000px;}
.y57{bottom:732.600150px;}
.y132{bottom:736.740000px;}
.yb6{bottom:740.520066px;}
.y167{bottom:740.880000px;}
.y156{bottom:741.420150px;}
.y3f{bottom:744.120000px;}
.y143{bottom:748.980000px;}
.y74{bottom:753.660000px;}
.y177{bottom:756.900000px;}
.y25{bottom:759.240000px;}
.y131{bottom:764.820000px;}
.y186{bottom:768.060000px;}
.y69{bottom:768.780000px;}
.y155{bottom:768.780150px;}
.y56{bottom:770.580000px;}
.yda{bottom:773.100066px;}
.y10d{bottom:775.080000px;}
.y142{bottom:776.340000px;}
.yb4{bottom:777.600150px;}
.y3e{bottom:782.280000px;}
.y73{bottom:791.640000px;}
.y130{bottom:793.080000px;}
.y154{bottom:796.140150px;}
.y176{bottom:796.860150px;}
.y24{bottom:797.220000px;}
.y141{bottom:803.700000px;}
.yd9{bottom:805.680066px;}
.yb2{bottom:806.400066px;}
.y55{bottom:808.560000px;}
.y166{bottom:818.640000px;}
.y3d{bottom:820.260000px;}
.y153{bottom:823.500150px;}
.y10c{bottom:828.720000px;}
.y72{bottom:829.620000px;}
.y23{bottom:835.200000px;}
.yd7{bottom:838.260066px;}
.yb1{bottom:838.980066px;}
.yb0{bottom:842.760000px;}
.y54{bottom:846.720000px;}
.y12f{bottom:849.420000px;}
.y152{bottom:850.860150px;}
.y165{bottom:855.000000px;}
.y3c{bottom:858.240000px;}
.y175{bottom:862.380000px;}
.y71{bottom:867.600000px;}
.yae{bottom:871.560066px;}
.y22{bottom:873.360000px;}
.yd6{bottom:874.620000px;}
.y12e{bottom:877.500000px;}
.y140{bottom:881.460000px;}
.y11b{bottom:881.820000px;}
.y164{bottom:882.360000px;}
.y53{bottom:884.700000px;}
.y3b{bottom:896.220000px;}
.yd5{bottom:903.420066px;}
.yac{bottom:904.140066px;}
.y70{bottom:905.760000px;}
.y13f{bottom:917.820000px;}
.y52{bottom:922.680000px;}
.y151{bottom:928.620000px;}
.y12d{bottom:933.840000px;}
.y21{bottom:934.920000px;}
.yd4{bottom:936.000066px;}
.yab{bottom:936.900066px;}
.y6f{bottom:943.740000px;}
.y13e{bottom:945.180000px;}
.y174{bottom:948.780000px;}
.y3a{bottom:955.260000px;}
.y51{bottom:960.660000px;}
.y12c{bottom:962.100000px;}
.y150{bottom:964.980000px;}
.ya9{bottom:969.480066px;}
.y13d{bottom:972.540000px;}
.yd3{bottom:973.260000px;}
.y6e{bottom:981.720000px;}
.y173{bottom:991.980000px;}
.y6b{bottom:992.340000px;}
.y39{bottom:993.240000px;}
.y50{bottom:998.820000px;}
.yd2{bottom:1002.060066px;}
.ya8{bottom:1005.840000px;}
.y68{bottom:1007.280000px;}
.y5{bottom:1013.220000px;}
.y6d{bottom:1019.700000px;}
.y6a{bottom:1026.180000px;}
.y12a{bottom:1029.060000px;}
.y38{bottom:1031.400000px;}
.yb5{bottom:1033.020150px;}
.yd1{bottom:1034.640066px;}
.y172{bottom:1035.000000px;}
.y12b{bottom:1035.540000px;}
.y4f{bottom:1036.800000px;}
.ya7{bottom:1038.420000px;}
.y163{bottom:1042.740000px;}
.y129{bottom:1050.840000px;}
.y13c{bottom:1051.200000px;}
.y20{bottom:1057.500000px;}
.y6c{bottom:1057.860000px;}
.ya5{bottom:1067.220066px;}
.y37{bottom:1069.380000px;}
.y14f{bottom:1070.100000px;}
.y128{bottom:1072.440000px;}
.y4{bottom:1075.140000px;}
.y162{bottom:1079.100000px;}
.y4e{bottom:1095.840000px;}
.y1f{bottom:1098.540000px;}
.ya4{bottom:1099.800066px;}
.y14e{bottom:1106.460000px;}
.y36{bottom:1115.100000px;}
.y1e{bottom:1118.520000px;}
.y3{bottom:1130.940000px;}
.ya2{bottom:1132.380066px;}
.y4d{bottom:1133.820000px;}
.y35{bottom:1136.880000px;}
.y1d{bottom:1138.320000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.he{height:21.780000px;}
.h9{height:40.533638px;}
.h11{height:44.094375px;}
.hc{height:44.152218px;}
.h2{height:44.928521px;}
.h8{height:54.628488px;}
.h7{height:56.291856px;}
.h6{height:60.551613px;}
.h5{height:62.395332px;}
.hf{height:65.816612px;}
.hb{height:65.816613px;}
.h12{height:65.817213px;}
.h13{height:67.820645px;}
.h14{height:68.643694px;}
.h16{height:73.245957px;}
.h15{height:76.636778px;}
.h4{height:77.004738px;}
.ha{height:77.005338px;}
.hd{height:79.349434px;}
.h10{height:79.603488px;}
.h3{height:90.200059px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:189.000000px;}
.w2{width:257.580000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x34{left:106.200000px;}
.x2{left:108.000000px;}
.x4{left:112.500000px;}
.x10{left:116.460000px;}
.x31{left:130.140000px;}
.x20{left:137.340000px;}
.x17{left:143.820000px;}
.x25{left:149.220000px;}
.xa{left:161.100000px;}
.x1b{left:163.440000px;}
.x9{left:164.880000px;}
.x19{left:169.560000px;}
.xb{left:180.180000px;}
.x23{left:187.920000px;}
.x2b{left:192.060000px;}
.x21{left:211.140000px;}
.x35{left:212.400000px;}
.x36{left:214.200000px;}
.x16{left:217.620000px;}
.x3{left:228.780000px;}
.xf{left:230.220000px;}
.x33{left:238.680000px;}
.x1e{left:254.700000px;}
.x18{left:258.480000px;}
.x27{left:290.700000px;}
.x1c{left:291.960000px;}
.x1a{left:299.880000px;}
.x2a{left:305.640000px;}
.x8{left:322.380000px;}
.x1d{left:324.000000px;}
.x2d{left:347.220000px;}
.x32{left:352.800000px;}
.x26{left:356.220000px;}
.x29{left:370.980000px;}
.x11{left:381.960000px;}
.x28{left:387.540000px;}
.x15{left:401.760000px;}
.x2c{left:419.760000px;}
.x24{left:422.640000px;}
.x22{left:426.240000px;}
.x1{left:433.980000px;}
.x2e{left:442.260000px;}
.x13{left:450.540000px;}
.x37{left:451.980000px;}
.x5{left:460.980000px;}
.xd{left:463.860000px;}
.xc{left:480.960000px;}
.x30{left:518.220000px;}
.x38{left:532.440000px;}
.x6{left:586.980000px;}
.x1f{left:607.320000px;}
.xe{left:618.660000px;}
.x12{left:647.640000px;}
.x39{left:690.840000px;}
.x7{left:702.900000px;}
.x14{left:708.660000px;}
.x2f{left:754.380000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.046019pt;}
.ls1{letter-spacing:0.057604pt;}
.ls4{letter-spacing:0.077820pt;}
.ls2{letter-spacing:1.433976pt;}
.ls3{letter-spacing:2.114312pt;}
.ls5{letter-spacing:18.870400pt;}
.ws4{word-spacing:-58.884000pt;}
.wsc{word-spacing:-24.856208pt;}
.ws7{word-spacing:-23.363808pt;}
.wsd{word-spacing:-21.866128pt;}
.ws13{word-spacing:-21.118608pt;}
.ws3{word-spacing:-20.026852pt;}
.ws6{word-spacing:-19.969248pt;}
.ws12{word-spacing:-18.735187pt;}
.ws11{word-spacing:-18.689168pt;}
.ws14{word-spacing:-18.371808pt;}
.ws5{word-spacing:-16.574688pt;}
.wse{word-spacing:-0.626002pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.105650pt;}
.ws0{word-spacing:0.972804pt;}
.wsf{word-spacing:20.875207pt;}
.ws10{word-spacing:64.134611pt;}
.ws2{word-spacing:109.980293pt;}
.ws8{word-spacing:408.779941pt;}
.ws9{word-spacing:695.120158pt;}
.wsb{word-spacing:2055.760158pt;}
.wsa{word-spacing:2169.680158pt;}
._36{margin-left:-5.913664pt;}
._e{margin-left:-5.004963pt;}
._d{margin-left:-4.011708pt;}
._19{margin-left:-2.594900pt;}
._2{margin-left:-1.405208pt;}
._0{width:0.909635pt;}
._1{width:1.844879pt;}
._6{width:3.101142pt;}
._9{width:4.037896pt;}
._b{width:5.085161pt;}
._a{width:6.197364pt;}
._c{width:7.101948pt;}
._1d{width:8.012513pt;}
._15{width:9.057391pt;}
._13{width:10.120441pt;}
._56{width:11.014054pt;}
._8{width:11.968762pt;}
._7{width:13.115587pt;}
._11{width:14.358814pt;}
._f{width:16.069679pt;}
._10{width:17.002048pt;}
._23{width:18.311547pt;}
._3{width:19.697287pt;}
._21{width:21.627548pt;}
._4{width:23.832180pt;}
._31{width:24.935174pt;}
._14{width:26.398226pt;}
._26{width:28.164983pt;}
._45{width:29.489513pt;}
._30{width:30.445458pt;}
._1c{width:31.432080pt;}
._34{width:32.357808pt;}
._54{width:33.936895pt;}
._43{width:35.083217pt;}
._62{width:36.626269pt;}
._1b{width:37.957062pt;}
._1a{width:38.911074pt;}
._37{width:40.456231pt;}
._5{width:42.339232pt;}
._28{width:47.057394pt;}
._16{width:48.038181pt;}
._27{width:48.990160pt;}
._40{width:50.468050pt;}
._24{width:52.353202pt;}
._25{width:53.413194pt;}
._46{width:55.048944pt;}
._50{width:58.828690pt;}
._51{width:59.940706pt;}
._41{width:61.574334pt;}
._53{width:66.616771pt;}
._47{width:68.404521pt;}
._29{width:70.745322pt;}
._4f{width:74.530226pt;}
._4e{width:76.069522pt;}
._55{width:78.616359pt;}
._70{width:80.850532pt;}
._48{width:86.317010pt;}
._44{width:95.992421pt;}
._17{width:99.676515pt;}
._66{width:104.948255pt;}
._49{width:110.208029pt;}
._2f{width:113.805023pt;}
._52{width:114.997160pt;}
._18{width:116.077481pt;}
._72{width:122.654161pt;}
._71{width:123.881949pt;}
._2e{width:126.610675pt;}
._32{width:128.634808pt;}
._6f{width:130.737012pt;}
._2a{width:134.836501pt;}
._42{width:139.485453pt;}
._4d{width:142.128434pt;}
._2b{width:152.273141pt;}
._77{width:162.173848pt;}
._78{width:178.035608pt;}
._4a{width:188.771157pt;}
._4c{width:193.964506pt;}
._4b{width:195.116898pt;}
._3d{width:200.859404pt;}
._22{width:203.976956pt;}
._3c{width:216.110110pt;}
._2d{width:217.085632pt;}
._79{width:221.238228pt;}
._2c{width:230.814055pt;}
._5f{width:239.002376pt;}
._3e{width:242.781701pt;}
._3b{width:248.081112pt;}
._6b{width:265.761617pt;}
._5a{width:324.372754pt;}
._58{width:332.633404pt;}
._6d{width:347.057012pt;}
._33{width:355.148489pt;}
._3a{width:359.577184pt;}
._5b{width:361.236995pt;}
._60{width:368.259740pt;}
._5d{width:374.285872pt;}
._67{width:383.065550pt;}
._35{width:385.242700pt;}
._3f{width:395.397473pt;}
._59{width:397.373720pt;}
._69{width:402.135144pt;}
._38{width:404.169620pt;}
._64{width:436.952808pt;}
._68{width:464.939620pt;}
._6c{width:483.258764pt;}
._73{width:491.396297pt;}
._61{width:493.346623pt;}
._5e{width:495.535340pt;}
._20{width:539.042116pt;}
._5c{width:552.745032pt;}
._57{width:558.436477pt;}
._1e{width:629.714635pt;}
._39{width:633.444656pt;}
._1f{width:699.291025pt;}
._65{width:701.965872pt;}
._6a{width:755.972161pt;}
._6e{width:848.058764pt;}
._74{width:971.801252pt;}
._63{width:1101.569090pt;}
._76{width:1181.780092pt;}
._75{width:1253.621724pt;}
._12{width:1469.054105pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.004000pt;}
.fs3{font-size:53.124000pt;}
.fs0{font-size:58.884000pt;}
.fs5{font-size:64.003998pt;}
.fs4{font-size:64.004000pt;}
.fs9{font-size:69.124000pt;}
.fs8{font-size:72.324000pt;}
.fs2{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:3.359916pt;}
.ya6{bottom:3.359918pt;}
.yaa{bottom:3.359920pt;}
.yaf{bottom:3.359922pt;}
.yb3{bottom:3.359923pt;}
.yb9{bottom:3.359926pt;}
.ybd{bottom:3.359928pt;}
.y92{bottom:3.359932pt;}
.y96{bottom:3.359933pt;}
.yc9{bottom:3.359934pt;}
.y9b{bottom:3.359935pt;}
.ycd{bottom:3.359936pt;}
.ya0{bottom:3.359938pt;}
.yad{bottom:3.360055pt;}
.yd8{bottom:3.360056pt;}
.yb7{bottom:3.360058pt;}
.yc0{bottom:3.360063pt;}
.yc4{bottom:3.360065pt;}
.y98{bottom:3.360067pt;}
.y9d{bottom:3.360069pt;}
.ycf{bottom:3.360071pt;}
.y1c{bottom:98.720000pt;}
.yfe{bottom:107.040000pt;}
.ye9{bottom:109.760000pt;}
.y195{bottom:112.480000pt;}
.y11a{bottom:112.800133pt;}
.y1b{bottom:114.880000pt;}
.y10b{bottom:118.720000pt;}
.ya1{bottom:119.360059pt;}
.y127{bottom:125.440000pt;}
.yf0{bottom:125.600000pt;}
.y34{bottom:128.480000pt;}
.y1a{bottom:130.880000pt;}
.y8c{bottom:132.640133pt;}
.y10a{bottom:138.080000pt;}
.yd0{bottom:138.240000pt;}
.yfd{bottom:140.800000pt;}
.y194{bottom:141.440133pt;}
.ye8{bottom:143.520000pt;}
.y185{bottom:144.000000pt;}
.y126{bottom:144.800000pt;}
.y119{bottom:146.560133pt;}
.y19{bottom:147.040000pt;}
.y33{bottom:147.840000pt;}
.y9f{bottom:148.320059pt;}
.y67{bottom:150.080133pt;}
.yef{bottom:159.360000pt;}
.y109{bottom:162.560000pt;}
.y18{bottom:163.200133pt;}
.yce{bottom:163.840059pt;}
.y8b{bottom:166.400133pt;}
.y32{bottom:167.200000pt;}
.y193{bottom:170.400133pt;}
.yfc{bottom:174.720000pt;}
.ye7{bottom:177.280000pt;}
.y108{bottom:177.280133pt;}
.y82{bottom:178.240000pt;}
.y17{bottom:179.200000pt;}
.y184{bottom:179.520133pt;}
.y4c{bottom:180.000133pt;}
.y9e{bottom:180.800000pt;}
.y125{bottom:182.720000pt;}
.y66{bottom:184.000133pt;}
.ycc{bottom:192.800059pt;}
.yee{bottom:193.120000pt;}
.y16{bottom:195.360000pt;}
.y14d{bottom:196.480000pt;}
.y118{bottom:196.960000pt;}
.y8a{bottom:200.320133pt;}
.y9c{bottom:206.400059pt;}
.ye6{bottom:211.200000pt;}
.y15{bottom:211.680000pt;}
.y81{bottom:212.000000pt;}
.y4b{bottom:213.760133pt;}
.y183{bottom:215.200133pt;}
.y31{bottom:216.800000pt;}
.y65{bottom:217.760133pt;}
.ycb{bottom:221.760059pt;}
.y161{bottom:225.280133pt;}
.yed{bottom:227.040000pt;}
.yfb{bottom:227.200000pt;}
.y14c{bottom:228.800000pt;}
.y89{bottom:234.080133pt;}
.y124{bottom:234.720000pt;}
.y9a{bottom:235.360059pt;}
.y107{bottom:239.200133pt;}
.y13b{bottom:244.000000pt;}
.y117{bottom:244.480000pt;}
.y80{bottom:245.600000pt;}
.y4a{bottom:247.520133pt;}
.y30{bottom:250.560000pt;}
.y64{bottom:251.520133pt;}
.y14b{bottom:253.120000pt;}
.yca{bottom:254.720000pt;}
.y192{bottom:257.440000pt;}
.y160{bottom:257.600133pt;}
.y14{bottom:260.000000pt;}
.y171{bottom:260.320000pt;}
.yec{bottom:260.800000pt;}
.yfa{bottom:260.960000pt;}
.ye5{bottom:263.680000pt;}
.y99{bottom:267.680000pt;}
.y88{bottom:267.840133pt;}
.y13a{bottom:268.160000pt;}
.y106{bottom:272.960000pt;}
.y14a{bottom:277.440000pt;}
.y13{bottom:277.760000pt;}
.y7f{bottom:279.360000pt;}
.yc8{bottom:280.320059pt;}
.y49{bottom:281.440000pt;}
.y15f{bottom:281.920133pt;}
.y2f{bottom:284.480000pt;}
.y63{bottom:285.280133pt;}
.y139{bottom:285.440000pt;}
.y123{bottom:289.760000pt;}
.y191{bottom:292.960000pt;}
.y97{bottom:293.280059pt;}
.y116{bottom:294.240000pt;}
.yeb{bottom:294.560000pt;}
.yf9{bottom:294.720000pt;}
.y12{bottom:295.360000pt;}
.ye4{bottom:297.440133pt;}
.y15e{bottom:306.240133pt;}
.y138{bottom:306.880000pt;}
.y105{bottom:306.880133pt;}
.y182{bottom:308.480000pt;}
.yc7{bottom:309.280059pt;}
.y11{bottom:313.120000pt;}
.y7e{bottom:313.280000pt;}
.y48{bottom:315.200000pt;}
.y2e{bottom:318.240000pt;}
.y62{bottom:319.200133pt;}
.y87{bottom:320.320133pt;}
.y95{bottom:322.240059pt;}
.y137{bottom:323.040000pt;}
.y122{bottom:323.520000pt;}
.y170{bottom:326.080000pt;}
.y115{bottom:328.000000pt;}
.yf8{bottom:328.480000pt;}
.y10{bottom:330.880000pt;}
.ye3{bottom:331.200133pt;}
.yc6{bottom:338.240059pt;}
.y136{bottom:340.160000pt;}
.y104{bottom:340.640133pt;}
.y181{bottom:344.000000pt;}
.y149{bottom:346.720000pt;}
.y7d{bottom:347.040000pt;}
.y47{bottom:348.960000pt;}
.y2d{bottom:352.000000pt;}
.y61{bottom:352.960133pt;}
.y93{bottom:355.200133pt;}
.y121{bottom:357.280000pt;}
.y16f{bottom:358.240000pt;}
.y114{bottom:361.920000pt;}
.yf7{bottom:362.400000pt;}
.y190{bottom:364.000000pt;}
.ye2{bottom:364.960133pt;}
.yf{bottom:367.200000pt;}
.yc5{bottom:367.200059pt;}
.y103{bottom:374.400133pt;}
.y86{bottom:375.040000pt;}
.y15d{bottom:375.360133pt;}
.y135{bottom:377.760000pt;}
.y148{bottom:378.880000pt;}
.y180{bottom:379.520000pt;}
.y7c{bottom:380.800000pt;}
.y91{bottom:380.800059pt;}
.y16e{bottom:382.560000pt;}
.y46{bottom:382.720000pt;}
.y90{bottom:384.160000pt;}
.y94{bottom:384.160133pt;}
.y18f{bottom:386.240000pt;}
.y60{bottom:386.720133pt;}
.y120{bottom:391.200000pt;}
.y134{bottom:393.760000pt;}
.yf6{bottom:396.160000pt;}
.yc3{bottom:396.160059pt;}
.ye1{bottom:398.720133pt;}
.ye{bottom:403.520000pt;}
.y2c{bottom:404.480000pt;}
.y15c{bottom:407.680133pt;}
.y18e{bottom:408.480000pt;}
.y133{bottom:409.920000pt;}
.y113{bottom:412.160000pt;}
.y7b{bottom:414.560000pt;}
.y17f{bottom:415.040000pt;}
.y45{bottom:416.640000pt;}
.y5f{bottom:420.480133pt;}
.yd{bottom:421.280000pt;}
.y102{bottom:424.800133pt;}
.y11f{bottom:424.960000pt;}
.yc2{bottom:429.120000pt;}
.yf5{bottom:429.920000pt;}
.y15b{bottom:432.000133pt;}
.ye0{bottom:432.640133pt;}
.y17e{bottom:437.280000pt;}
.yc{bottom:439.040000pt;}
.y18d{bottom:444.000000pt;}
.y7a{bottom:448.480000pt;}
.y147{bottom:449.760000pt;}
.y44{bottom:450.400000pt;}
.y16d{bottom:451.840000pt;}
.y5e{bottom:454.240133pt;}
.yc1{bottom:454.720059pt;}
.y15a{bottom:456.320133pt;}
.yb{bottom:456.640000pt;}
.y11e{bottom:458.720000pt;}
.y112{bottom:459.840133pt;}
.yf4{bottom:463.680000pt;}
.ydf{bottom:466.400133pt;}
.y2b{bottom:472.160000pt;}
.y101{bottom:472.320133pt;}
.y17d{bottom:472.800000pt;}
.ya{bottom:474.400000pt;}
.y18c{bottom:478.880000pt;}
.y159{bottom:480.640133pt;}
.y8f{bottom:482.240000pt;}
.y85{bottom:483.040000pt;}
.ybf{bottom:483.840059pt;}
.y16c{bottom:484.160000pt;}
.y9{bottom:492.160000pt;}
.y11d{bottom:492.480000pt;}
.yf3{bottom:497.440000pt;}
.yde{bottom:500.160133pt;}
.y79{bottom:500.960000pt;}
.y43{bottom:505.120000pt;}
.y2a{bottom:505.920000pt;}
.y84{bottom:507.040000pt;}
.y17c{bottom:508.320133pt;}
.y16b{bottom:508.480000pt;}
.y111{bottom:509.600133pt;}
.y8{bottom:509.760000pt;}
.ybe{bottom:512.800059pt;}
.y18b{bottom:513.120000pt;}
.y8e{bottom:516.000000pt;}
.y100{bottom:520.000000pt;}
.y146{bottom:525.760000pt;}
.y11c{bottom:526.240000pt;}
.y7{bottom:527.520000pt;}
.y83{bottom:531.200000pt;}
.yf2{bottom:531.360000pt;}
.ydd{bottom:533.920133pt;}
.y78{bottom:534.720000pt;}
.y18a{bottom:535.360000pt;}
.y29{bottom:539.680000pt;}
.ybc{bottom:541.760059pt;}
.y110{bottom:543.360133pt;}
.y17b{bottom:543.840000pt;}
.y6{bottom:545.280000pt;}
.y5a{bottom:549.760000pt;}
.yea{bottom:549.760133pt;}
.y158{bottom:551.520000pt;}
.y5d{bottom:552.320133pt;}
.y42{bottom:560.160000pt;}
.y145{bottom:560.800000pt;}
.yf1{bottom:564.960000pt;}
.yff{bottom:567.680000pt;}
.y77{bottom:568.480000pt;}
.y28{bottom:573.440133pt;}
.ybb{bottom:574.720000pt;}
.y16a{bottom:577.600000pt;}
.y17a{bottom:579.360000pt;}
.y189{bottom:579.840133pt;}
.y5c{bottom:581.280000pt;}
.y59{bottom:583.680000pt;}
.ydc{bottom:584.320133pt;}
.y10f{bottom:593.760000pt;}
.y41{bottom:593.920000pt;}
.yba{bottom:600.320059pt;}
.y179{bottom:601.600000pt;}
.y76{bottom:602.240000pt;}
.y27{bottom:607.200000pt;}
.y169{bottom:609.920000pt;}
.y5b{bottom:610.240000pt;}
.y188{bottom:614.720000pt;}
.y58{bottom:617.440000pt;}
.y157{bottom:626.720000pt;}
.y40{bottom:627.680000pt;}
.yb8{bottom:629.280059pt;}
.y144{bottom:630.720000pt;}
.ydb{bottom:632.640000pt;}
.y168{bottom:634.240000pt;}
.y75{bottom:636.000000pt;}
.y178{bottom:637.120000pt;}
.y26{bottom:641.120000pt;}
.y10e{bottom:641.440000pt;}
.y187{bottom:648.480000pt;}
.y8d{bottom:651.200000pt;}
.y57{bottom:651.200133pt;}
.y132{bottom:654.880000pt;}
.yb6{bottom:658.240059pt;}
.y167{bottom:658.560000pt;}
.y156{bottom:659.040133pt;}
.y3f{bottom:661.440000pt;}
.y143{bottom:665.760000pt;}
.y74{bottom:669.920000pt;}
.y177{bottom:672.800000pt;}
.y25{bottom:674.880000pt;}
.y131{bottom:679.840000pt;}
.y186{bottom:682.720000pt;}
.y69{bottom:683.360000pt;}
.y155{bottom:683.360133pt;}
.y56{bottom:684.960000pt;}
.yda{bottom:687.200059pt;}
.y10d{bottom:688.960000pt;}
.y142{bottom:690.080000pt;}
.yb4{bottom:691.200133pt;}
.y3e{bottom:695.360000pt;}
.y73{bottom:703.680000pt;}
.y130{bottom:704.960000pt;}
.y154{bottom:707.680133pt;}
.y176{bottom:708.320133pt;}
.y24{bottom:708.640000pt;}
.y141{bottom:714.400000pt;}
.yd9{bottom:716.160059pt;}
.yb2{bottom:716.800059pt;}
.y55{bottom:718.720000pt;}
.y166{bottom:727.680000pt;}
.y3d{bottom:729.120000pt;}
.y153{bottom:732.000133pt;}
.y10c{bottom:736.640000pt;}
.y72{bottom:737.440000pt;}
.y23{bottom:742.400000pt;}
.yd7{bottom:745.120059pt;}
.yb1{bottom:745.760059pt;}
.yb0{bottom:749.120000pt;}
.y54{bottom:752.640000pt;}
.y12f{bottom:755.040000pt;}
.y152{bottom:756.320133pt;}
.y165{bottom:760.000000pt;}
.y3c{bottom:762.880000pt;}
.y175{bottom:766.560000pt;}
.y71{bottom:771.200000pt;}
.yae{bottom:774.720059pt;}
.y22{bottom:776.320000pt;}
.yd6{bottom:777.440000pt;}
.y12e{bottom:780.000000pt;}
.y140{bottom:783.520000pt;}
.y11b{bottom:783.840000pt;}
.y164{bottom:784.320000pt;}
.y53{bottom:786.400000pt;}
.y3b{bottom:796.640000pt;}
.yd5{bottom:803.040059pt;}
.yac{bottom:803.680059pt;}
.y70{bottom:805.120000pt;}
.y13f{bottom:815.840000pt;}
.y52{bottom:820.160000pt;}
.y151{bottom:825.440000pt;}
.y12d{bottom:830.080000pt;}
.y21{bottom:831.040000pt;}
.yd4{bottom:832.000059pt;}
.yab{bottom:832.800059pt;}
.y6f{bottom:838.880000pt;}
.y13e{bottom:840.160000pt;}
.y174{bottom:843.360000pt;}
.y3a{bottom:849.120000pt;}
.y51{bottom:853.920000pt;}
.y12c{bottom:855.200000pt;}
.y150{bottom:857.760000pt;}
.ya9{bottom:861.760059pt;}
.y13d{bottom:864.480000pt;}
.yd3{bottom:865.120000pt;}
.y6e{bottom:872.640000pt;}
.y173{bottom:881.760000pt;}
.y6b{bottom:882.080000pt;}
.y39{bottom:882.880000pt;}
.y50{bottom:887.840000pt;}
.yd2{bottom:890.720059pt;}
.ya8{bottom:894.080000pt;}
.y68{bottom:895.360000pt;}
.y5{bottom:900.640000pt;}
.y6d{bottom:906.400000pt;}
.y6a{bottom:912.160000pt;}
.y12a{bottom:914.720000pt;}
.y38{bottom:916.800000pt;}
.yb5{bottom:918.240133pt;}
.yd1{bottom:919.680059pt;}
.y172{bottom:920.000000pt;}
.y12b{bottom:920.480000pt;}
.y4f{bottom:921.600000pt;}
.ya7{bottom:923.040000pt;}
.y163{bottom:926.880000pt;}
.y129{bottom:934.080000pt;}
.y13c{bottom:934.400000pt;}
.y20{bottom:940.000000pt;}
.y6c{bottom:940.320000pt;}
.ya5{bottom:948.640059pt;}
.y37{bottom:950.560000pt;}
.y14f{bottom:951.200000pt;}
.y128{bottom:953.280000pt;}
.y4{bottom:955.680000pt;}
.y162{bottom:959.200000pt;}
.y4e{bottom:974.080000pt;}
.y1f{bottom:976.480000pt;}
.ya4{bottom:977.600059pt;}
.y14e{bottom:983.520000pt;}
.y36{bottom:991.200000pt;}
.y1e{bottom:994.240000pt;}
.y3{bottom:1005.280000pt;}
.ya2{bottom:1006.560059pt;}
.y4d{bottom:1007.840000pt;}
.y35{bottom:1010.560000pt;}
.y1d{bottom:1011.840000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.he{height:19.360000pt;}
.h9{height:36.029900pt;}
.h11{height:39.195000pt;}
.hc{height:39.246416pt;}
.h2{height:39.936463pt;}
.h8{height:48.558656pt;}
.h7{height:50.037205pt;}
.h6{height:53.823656pt;}
.h5{height:55.462518pt;}
.hf{height:58.503655pt;}
.hb{height:58.503656pt;}
.h12{height:58.504190pt;}
.h13{height:60.285018pt;}
.h14{height:61.016617pt;}
.h16{height:65.107518pt;}
.h15{height:68.121580pt;}
.h4{height:68.448656pt;}
.ha{height:68.449190pt;}
.hd{height:70.532830pt;}
.h10{height:70.758656pt;}
.h3{height:80.177830pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:168.000000pt;}
.w2{width:228.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x34{left:94.400000pt;}
.x2{left:96.000000pt;}
.x4{left:100.000000pt;}
.x10{left:103.520000pt;}
.x31{left:115.680000pt;}
.x20{left:122.080000pt;}
.x17{left:127.840000pt;}
.x25{left:132.640000pt;}
.xa{left:143.200000pt;}
.x1b{left:145.280000pt;}
.x9{left:146.560000pt;}
.x19{left:150.720000pt;}
.xb{left:160.160000pt;}
.x23{left:167.040000pt;}
.x2b{left:170.720000pt;}
.x21{left:187.680000pt;}
.x35{left:188.800000pt;}
.x36{left:190.400000pt;}
.x16{left:193.440000pt;}
.x3{left:203.360000pt;}
.xf{left:204.640000pt;}
.x33{left:212.160000pt;}
.x1e{left:226.400000pt;}
.x18{left:229.760000pt;}
.x27{left:258.400000pt;}
.x1c{left:259.520000pt;}
.x1a{left:266.560000pt;}
.x2a{left:271.680000pt;}
.x8{left:286.560000pt;}
.x1d{left:288.000000pt;}
.x2d{left:308.640000pt;}
.x32{left:313.600000pt;}
.x26{left:316.640000pt;}
.x29{left:329.760000pt;}
.x11{left:339.520000pt;}
.x28{left:344.480000pt;}
.x15{left:357.120000pt;}
.x2c{left:373.120000pt;}
.x24{left:375.680000pt;}
.x22{left:378.880000pt;}
.x1{left:385.760000pt;}
.x2e{left:393.120000pt;}
.x13{left:400.480000pt;}
.x37{left:401.760000pt;}
.x5{left:409.760000pt;}
.xd{left:412.320000pt;}
.xc{left:427.520000pt;}
.x30{left:460.640000pt;}
.x38{left:473.280000pt;}
.x6{left:521.760000pt;}
.x1f{left:539.840000pt;}
.xe{left:549.920000pt;}
.x12{left:575.680000pt;}
.x39{left:614.080000pt;}
.x7{left:624.800000pt;}
.x14{left:629.920000pt;}
.x2f{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; }
  