
    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_e51c0820121a67064a7077eb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_5764cc80fa48c103c3a12fbf.woff')format("woff");}.ff2{font-family:ff2;line-height:0.912598;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_563166b969e1090b1051aa3b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1795b6dc2b42b50d1ebc02a9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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;}
.m1{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.054824px;}
.lsc{letter-spacing:0.064679px;}
.lse{letter-spacing:0.109648px;}
.ls0{letter-spacing:0.188241px;}
.ls1{letter-spacing:0.385918px;}
.lsd{letter-spacing:0.523293px;}
.lsa{letter-spacing:0.526728px;}
.ls6{letter-spacing:0.530770px;}
.lsb{letter-spacing:0.590192px;}
.ls9{letter-spacing:0.591302px;}
.ls3{letter-spacing:0.772083px;}
.ls7{letter-spacing:0.996862px;}
.ls8{letter-spacing:3.882344px;}
.ls4{letter-spacing:5.435636px;}
.ls5{letter-spacing:6.878377px;}
.lsf{letter-spacing:12.297565px;}
.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;}
}
.ws2{word-spacing:-24.119850px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.920000px;}
.ws0{word-spacing:-15.120000px;}
.ws15{word-spacing:-14.400000px;}
.wsa{word-spacing:-13.320000px;}
.ws13{word-spacing:-12.600000px;}
.wsd{word-spacing:-12.240000px;}
.ws14{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.360000px;}
.ws12{word-spacing:-0.285674px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:23.989152px;}
.ws11{word-spacing:36.200108px;}
.ws7{word-spacing:44.005220px;}
.ws9{word-spacing:45.940025px;}
.ws8{word-spacing:198.321312px;}
.wse{word-spacing:982.858192px;}
.ws10{word-spacing:1148.011308px;}
.wsf{word-spacing:1182.916908px;}
.wsc{word-spacing:1278.442864px;}
.wsb{word-spacing:1393.548345px;}
._4{margin-left:-10.333393px;}
._15{margin-left:-8.092348px;}
._8{margin-left:-7.076160px;}
._5{margin-left:-5.610221px;}
._13{margin-left:-3.732480px;}
._a{margin-left:-2.721600px;}
._9{margin-left:-1.321920px;}
._2{width:1.503360px;}
._7{width:2.557440px;}
._3{width:3.841903px;}
._b{width:5.132160px;}
._c{width:6.910301px;}
._d{width:7.916356px;}
._6{width:9.581760px;}
._26{width:10.844615px;}
._1{width:11.943360px;}
._2b{width:12.985920px;}
._10{width:14.669280px;}
._11{width:16.476463px;}
._24{width:18.042854px;}
._e{width:19.322354px;}
._f{width:20.633517px;}
._0{width:22.089774px;}
._27{width:25.344052px;}
._28{width:26.501621px;}
._1c{width:30.167183px;}
._2f{width:34.897530px;}
._30{width:36.642879px;}
._2d{width:39.250408px;}
._2e{width:41.362560px;}
._1b{width:53.480108px;}
._12{width:54.922849px;}
._1e{width:61.606601px;}
._23{width:179.213416px;}
._19{width:208.083474px;}
._25{width:222.715188px;}
._2a{width:391.135248px;}
._2c{width:465.313968px;}
._20{width:512.769759px;}
._1a{width:522.913968px;}
._21{width:557.758534px;}
._29{width:633.677225px;}
._18{width:688.579513px;}
._16{width:707.359528px;}
._17{width:727.482016px;}
._22{width:739.745388px;}
._1f{width:790.205885px;}
._14{width:938.946035px;}
._1d{width:1003.406525px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:37.440000px;}
.fsf{font-size:41.760000px;}
.fsc{font-size:48.960000px;}
.fsa{font-size:50.400000px;}
.fs8{font-size:53.280000px;}
.fsd{font-size:57.600000px;}
.fs4{font-size:60.480000px;}
.fs7{font-size:67.680000px;}
.fsb{font-size:69.120000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fs2{font-size:89.280000px;}
.fs6{font-size:96.479400px;}
.fse{font-size:108.000000px;}
.fs1{font-size:132.479400px;}
.y0{bottom:0.000000px;}
.y153{bottom:203.760000px;}
.yd8{bottom:209.160000px;}
.y4f{bottom:212.400000px;}
.y174{bottom:216.000000px;}
.yf5{bottom:216.360000px;}
.y119{bottom:219.240000px;}
.y152{bottom:221.040000px;}
.y112{bottom:221.760000px;}
.y6c{bottom:222.120000px;}
.y86{bottom:224.640000px;}
.y145{bottom:225.360000px;}
.ya4{bottom:226.080000px;}
.yc2{bottom:229.680000px;}
.yd7{bottom:230.760000px;}
.y35{bottom:231.840000px;}
.y173{bottom:232.920000px;}
.y4e{bottom:233.280000px;}
.y12c{bottom:235.080000px;}
.yf4{bottom:237.960000px;}
.y103{bottom:240.840000px;}
.y6b{bottom:242.640000px;}
.y111{bottom:243.360000px;}
.y137{bottom:244.080000px;}
.y85{bottom:246.240000px;}
.y144{bottom:246.960000px;}
.ya3{bottom:247.680000px;}
.y34{bottom:248.040000px;}
.yc1{bottom:251.280000px;}
.yd6{bottom:252.360000px;}
.y172{bottom:253.080000px;}
.y4d{bottom:253.800000px;}
.y151{bottom:255.240000px;}
.y12b{bottom:256.680000px;}
.yf3{bottom:259.560000px;}
.y102{bottom:262.440000px;}
.y33{bottom:264.240000px;}
.y110{bottom:264.960000px;}
.y136{bottom:265.680000px;}
.y143{bottom:268.560000px;}
.ya2{bottom:269.280000px;}
.y171{bottom:270.360000px;}
.y6a{bottom:272.520000px;}
.yc0{bottom:272.880000px;}
.yd5{bottom:273.960000px;}
.y150{bottom:275.400000px;}
.y84{bottom:276.840000px;}
.y12a{bottom:278.280000px;}
.y32{bottom:280.440000px;}
.yf2{bottom:281.160000px;}
.y4c{bottom:283.680000px;}
.y101{bottom:284.040000px;}
.y10f{bottom:286.560000px;}
.y135{bottom:287.280000px;}
.y118{bottom:290.160000px;}
.ya1{bottom:290.880000px;}
.y14f{bottom:292.320000px;}
.y69{bottom:293.040000px;}
.y83{bottom:293.760000px;}
.ybf{bottom:294.480000px;}
.yd4{bottom:295.560000px;}
.y31{bottom:296.640000px;}
.y129{bottom:299.880000px;}
.yf1{bottom:302.760000px;}
.y4b{bottom:304.200000px;}
.y100{bottom:305.640000px;}
.y170{bottom:307.440000px;}
.y10e{bottom:308.160000px;}
.y14e{bottom:309.600000px;}
.y117{bottom:311.760000px;}
.ya0{bottom:312.480000px;}
.y30{bottom:312.840000px;}
.y68{bottom:313.920000px;}
.y134{bottom:314.640000px;}
.ybe{bottom:316.080000px;}
.yd3{bottom:317.160000px;}
.y82{bottom:321.480000px;}
.yf0{bottom:324.360000px;}
.yff{bottom:327.240000px;}
.y17f{bottom:327.600000px;}
.y10d{bottom:329.760000px;}
.y14a{bottom:332.640000px;}
.y116{bottom:333.360000px;}
.y4a{bottom:334.080000px;}
.y67{bottom:334.440000px;}
.y133{bottom:336.240000px;}
.ybd{bottom:337.680000px;}
.y2f{bottom:338.040000px;}
.yd2{bottom:338.760000px;}
.y16f{bottom:341.640000px;}
.y17e{bottom:344.520000px;}
.yef{bottom:345.960000px;}
.y14d{bottom:346.680000px;}
.y10c{bottom:351.360000px;}
.y128{bottom:352.080000px;}
.y149{bottom:354.240000px;}
.y49{bottom:354.600000px;}
.yfe{bottom:354.960000px;}
.y9f{bottom:355.680000px;}
.y132{bottom:357.840000px;}
.ybc{bottom:359.280000px;}
.yd1{bottom:360.360000px;}
.y16e{bottom:361.800000px;}
.y2e{bottom:363.240000px;}
.y81{bottom:363.960000px;}
.y66{bottom:364.320000px;}
.y17d{bottom:364.680000px;}
.yee{bottom:367.560000px;}
.y10b{bottom:372.960000px;}
.y48{bottom:375.480000px;}
.y148{bottom:375.840000px;}
.yfd{bottom:376.560000px;}
.y9e{bottom:377.280000px;}
.y16d{bottom:378.720000px;}
.y2d{bottom:379.440000px;}
.ybb{bottom:380.880000px;}
.y80{bottom:381.240000px;}
.yd0{bottom:381.960000px;}
.y14c{bottom:383.760000px;}
.y65{bottom:384.840000px;}
.y131{bottom:385.560000px;}
.yed{bottom:389.160000px;}
.y127{bottom:391.680000px;}
.y10a{bottom:394.560000px;}
.y2c{bottom:395.640000px;}
.y16c{bottom:396.000000px;}
.y147{bottom:397.440000px;}
.yfc{bottom:398.160000px;}
.y9d{bottom:398.880000px;}
.y14b{bottom:401.040000px;}
.yba{bottom:402.480000px;}
.ycf{bottom:403.560000px;}
.y142{bottom:404.280000px;}
.y47{bottom:405.000000px;}
.y130{bottom:407.160000px;}
.yd{bottom:407.520000px;}
.yec{bottom:410.760000px;}
.y2b{bottom:411.840000px;}
.y7f{bottom:413.280000px;}
.y64{bottom:414.720000px;}
.y109{bottom:416.160000px;}
.y146{bottom:419.040000px;}
.yfb{bottom:419.760000px;}
.y9c{bottom:420.480000px;}
.yce{bottom:425.160000px;}
.y46{bottom:425.880000px;}
.y2a{bottom:428.040000px;}
.y12f{bottom:428.760000px;}
.y7e{bottom:430.560000px;}
.yeb{bottom:432.360000px;}
.y16b{bottom:433.080000px;}
.y126{bottom:434.880000px;}
.y17c{bottom:435.960000px;}
.yc{bottom:436.320000px;}
.y108{bottom:437.760000px;}
.yfa{bottom:441.360000px;}
.y9b{bottom:442.080000px;}
.y29{bottom:444.240000px;}
.yb9{bottom:444.960000px;}
.y45{bottom:446.400000px;}
.ycd{bottom:446.760000px;}
.y7d{bottom:447.480000px;}
.y63{bottom:453.240000px;}
.yea{bottom:453.960000px;}
.y125{bottom:456.480000px;}
.y107{bottom:459.360000px;}
.yf9{bottom:462.960000px;}
.yb{bottom:463.680000px;}
.y7c{bottom:464.760000px;}
.y28{bottom:465.120000px;}
.y44{bottom:467.280000px;}
.ycc{bottom:468.360000px;}
.y141{bottom:469.080000px;}
.y16a{bottom:470.160000px;}
.y17b{bottom:473.400000px;}
.y62{bottom:474.120000px;}
.ye9{bottom:475.560000px;}
.y124{bottom:478.080000px;}
.y106{bottom:480.960000px;}
.y7b{bottom:481.680000px;}
.yb8{bottom:484.560000px;}
.y9a{bottom:485.280000px;}
.y169{bottom:487.440000px;}
.ycb{bottom:489.960000px;}
.y17a{bottom:490.320000px;}
.y140{bottom:490.680000px;}
.y27{bottom:494.640000px;}
.ya{bottom:496.440000px;}
.y43{bottom:496.800000px;}
.y7a{bottom:498.960000px;}
.y123{bottom:499.680000px;}
.y105{bottom:502.560000px;}
.yb7{bottom:506.160000px;}
.y99{bottom:506.880000px;}
.y168{bottom:507.600000px;}
.y26{bottom:510.840000px;}
.yca{bottom:511.560000px;}
.y13f{bottom:512.280000px;}
.y79{bottom:515.880000px;}
.y42{bottom:517.680000px;}
.y122{bottom:521.280000px;}
.y9{bottom:523.800000px;}
.y104{bottom:524.160000px;}
.y61{bottom:524.520000px;}
.y25{bottom:527.040000px;}
.yb6{bottom:527.760000px;}
.y98{bottom:528.480000px;}
.y78{bottom:533.160000px;}
.y41{bottom:538.200000px;}
.y13e{bottom:539.640000px;}
.y179{bottom:541.800000px;}
.y12e{bottom:542.880000px;}
.y24{bottom:543.240000px;}
.y167{bottom:544.680000px;}
.y60{bottom:545.040000px;}
.ye8{bottom:545.760000px;}
.y121{bottom:548.640000px;}
.yb5{bottom:549.360000px;}
.y77{bottom:550.080000px;}
.yc9{bottom:554.760000px;}
.y40{bottom:559.080000px;}
.y23{bottom:559.440000px;}
.y13d{bottom:561.240000px;}
.y166{bottom:561.960000px;}
.y12d{bottom:564.480000px;}
.y5f{bottom:565.920000px;}
.y8{bottom:566.640000px;}
.y76{bottom:567.360000px;}
.y120{bottom:570.240000px;}
.yb4{bottom:570.960000px;}
.y97{bottom:571.680000px;}
.y22{bottom:575.640000px;}
.yc8{bottom:576.360000px;}
.y165{bottom:578.880000px;}
.y13c{bottom:582.840000px;}
.y3f{bottom:588.600000px;}
.ye7{bottom:588.960000px;}
.y21{bottom:591.840000px;}
.yb3{bottom:592.560000px;}
.y96{bottom:593.640000px;}
.y5e{bottom:595.440000px;}
.y178{bottom:596.160000px;}
.yc7{bottom:597.960000px;}
.y164{bottom:599.040000px;}
.y75{bottom:599.400000px;}
.y13b{bottom:604.440000px;}
.y20{bottom:608.040000px;}
.y3e{bottom:609.480000px;}
.ye6{bottom:610.560000px;}
.y11f{bottom:613.440000px;}
.yb2{bottom:614.160000px;}
.y95{bottom:615.240000px;}
.y5d{bottom:616.320000px;}
.yc6{bottom:619.560000px;}
.y1f{bottom:624.240000px;}
.y13a{bottom:626.040000px;}
.y3d{bottom:630.000000px;}
.ye5{bottom:632.160000px;}
.y7{bottom:632.520000px;}
.y163{bottom:633.240000px;}
.y11e{bottom:635.040000px;}
.yb1{bottom:635.760000px;}
.y5c{bottom:636.840000px;}
.y1e{bottom:640.440000px;}
.yc5{bottom:641.160000px;}
.y139{bottom:647.640000px;}
.y177{bottom:650.520000px;}
.y3c{bottom:650.880000px;}
.y162{bottom:653.400000px;}
.ye4{bottom:653.760000px;}
.y1d{bottom:656.640000px;}
.yf8{bottom:657.360000px;}
.y94{bottom:658.440000px;}
.yc4{bottom:662.760000px;}
.yb0{bottom:666.360000px;}
.y5b{bottom:666.720000px;}
.y138{bottom:669.240000px;}
.y161{bottom:670.320000px;}
.y1c{bottom:672.840000px;}
.y74{bottom:674.280000px;}
.ye3{bottom:675.360000px;}
.y11d{bottom:678.240000px;}
.yf7{bottom:678.960000px;}
.y93{bottom:680.040000px;}
.y3b{bottom:680.400000px;}
.yc3{bottom:684.360000px;}
.y5a{bottom:687.240000px;}
.y160{bottom:687.600000px;}
.y1b{bottom:689.040000px;}
.y6{bottom:693.000000px;}
.y73{bottom:694.080000px;}
.ye2{bottom:696.960000px;}
.y11c{bottom:699.840000px;}
.y115{bottom:700.560000px;}
.y3a{bottom:701.280000px;}
.y1a{bottom:705.240000px;}
.yaf{bottom:705.960000px;}
.y92{bottom:707.400000px;}
.y15f{bottom:707.760000px;}
.y59{bottom:708.120000px;}
.yf6{bottom:709.560000px;}
.ye1{bottom:718.560000px;}
.y19{bottom:721.440000px;}
.y39{bottom:721.800000px;}
.y114{bottom:722.160000px;}
.y72{bottom:722.520000px;}
.y5{bottom:724.320000px;}
.y15e{bottom:724.680000px;}
.yae{bottom:727.560000px;}
.y91{bottom:729.000000px;}
.y18{bottom:737.640000px;}
.ye0{bottom:740.160000px;}
.y15d{bottom:741.960000px;}
.y11b{bottom:743.040000px;}
.y71{bottom:748.800000px;}
.yad{bottom:749.160000px;}
.y90{bottom:750.600000px;}
.y38{bottom:751.680000px;}
.y113{bottom:752.760000px;}
.y17{bottom:753.840000px;}
.y58{bottom:758.520000px;}
.ydf{bottom:761.760000px;}
.y15c{bottom:762.120000px;}
.y4{bottom:763.920000px;}
.y11a{bottom:764.640000px;}
.y16{bottom:770.040000px;}
.yac{bottom:770.760000px;}
.y8f{bottom:772.200000px;}
.y70{bottom:775.800000px;}
.y57{bottom:779.040000px;}
.y37{bottom:781.200000px;}
.yde{bottom:783.360000px;}
.y15{bottom:786.240000px;}
.yab{bottom:792.360000px;}
.y8e{bottom:793.800000px;}
.y15b{bottom:796.320000px;}
.y176{bottom:799.200000px;}
.y6f{bottom:802.800000px;}
.y3{bottom:803.520000px;}
.ydd{bottom:804.960000px;}
.y14{bottom:808.560000px;}
.y56{bottom:808.920000px;}
.yaa{bottom:813.960000px;}
.y8d{bottom:815.400000px;}
.y15a{bottom:816.120000px;}
.ydc{bottom:826.560000px;}
.y55{bottom:829.440000px;}
.y6e{bottom:829.800000px;}
.y159{bottom:833.400000px;}
.y13{bottom:833.760000px;}
.ya9{bottom:835.560000px;}
.y175{bottom:836.280000px;}
.y8c{bottom:837.000000px;}
.y2{bottom:843.120000px;}
.ydb{bottom:848.160000px;}
.y12{bottom:849.960000px;}
.y54{bottom:850.320000px;}
.y158{bottom:853.560000px;}
.ya8{bottom:857.160000px;}
.y36{bottom:857.880000px;}
.y8b{bottom:858.600000px;}
.y6d{bottom:863.640000px;}
.yda{bottom:869.760000px;}
.y157{bottom:870.480000px;}
.y53{bottom:870.840000px;}
.y11{bottom:872.280000px;}
.ya7{bottom:878.760000px;}
.y8a{bottom:880.200000px;}
.y156{bottom:890.640000px;}
.yd9{bottom:891.360000px;}
.y10{bottom:892.800000px;}
.ya6{bottom:900.360000px;}
.y52{bottom:900.720000px;}
.y89{bottom:901.800000px;}
.y155{bottom:907.920000px;}
.yf{bottom:909.000000px;}
.y1{bottom:914.040000px;}
.y51{bottom:921.240000px;}
.ya5{bottom:921.960000px;}
.y88{bottom:923.400000px;}
.y154{bottom:924.840000px;}
.ye{bottom:925.200000px;}
.y87{bottom:960.120000px;}
.y50{bottom:961.200000px;}
.h9{height:34.157813px;}
.h8{height:36.109687px;}
.h12{height:39.993750px;}
.ha{height:44.434688px;}
.hc{height:46.845000px;}
.hd{height:48.037500px;}
.hf{height:48.796875px;}
.h6{height:49.992188px;}
.h10{height:50.439375px;}
.h4{height:52.700625px;}
.h5{height:55.666406px;}
.h1{height:56.604375px;}
.hb{height:57.645000px;}
.h11{height:60.046875px;}
.h3{height:60.508125px;}
.h7{height:65.387406px;}
.he{height:73.195312px;}
.h2{height:89.785843px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xe{left:243.000000px;}
.x16{left:244.440000px;}
.x15{left:245.520000px;}
.x11{left:252.720000px;}
.x13{left:254.160000px;}
.x6{left:258.120000px;}
.x1e{left:259.200000px;}
.xf{left:262.440000px;}
.x1d{left:265.320000px;}
.x1c{left:275.040000px;}
.x20{left:278.280000px;}
.x12{left:279.360000px;}
.x14{left:280.440000px;}
.x18{left:281.520000px;}
.x19{left:282.600000px;}
.x1a{left:296.280000px;}
.x7{left:321.120000px;}
.xd{left:329.760000px;}
.x5{left:333.360000px;}
.x8{left:340.560000px;}
.xc{left:358.920000px;}
.xa{left:363.240000px;}
.x1b{left:371.160000px;}
.x3{left:373.680000px;}
.x1{left:379.800000px;}
.x2{left:384.840000px;}
.x9{left:408.600000px;}
.x10{left:413.280000px;}
.x1f{left:426.960000px;}
.x4{left:432.000000px;}
.xb{left:434.880000px;}
.x17{left:453.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.048733pt;}
.lsc{letter-spacing:0.057492pt;}
.lse{letter-spacing:0.097465pt;}
.ls0{letter-spacing:0.167325pt;}
.ls1{letter-spacing:0.343038pt;}
.lsd{letter-spacing:0.465149pt;}
.lsa{letter-spacing:0.468202pt;}
.ls6{letter-spacing:0.471796pt;}
.lsb{letter-spacing:0.524615pt;}
.ls9{letter-spacing:0.525602pt;}
.ls3{letter-spacing:0.686296pt;}
.ls7{letter-spacing:0.886099pt;}
.ls8{letter-spacing:3.450973pt;}
.ls4{letter-spacing:4.831676pt;}
.ls5{letter-spacing:6.114113pt;}
.lsf{letter-spacing:10.931169pt;}
.ws2{word-spacing:-21.439867pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.040000pt;}
.ws0{word-spacing:-13.440000pt;}
.ws15{word-spacing:-12.800000pt;}
.wsa{word-spacing:-11.840000pt;}
.ws13{word-spacing:-11.200000pt;}
.wsd{word-spacing:-10.880000pt;}
.ws14{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.320000pt;}
.ws12{word-spacing:-0.253933pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:21.323690pt;}
.ws11{word-spacing:32.177874pt;}
.ws7{word-spacing:39.115751pt;}
.ws9{word-spacing:40.835578pt;}
.ws8{word-spacing:176.285610pt;}
.wse{word-spacing:873.651727pt;}
.ws10{word-spacing:1020.454496pt;}
.wsf{word-spacing:1051.481696pt;}
.wsc{word-spacing:1136.393657pt;}
.wsb{word-spacing:1238.709640pt;}
._4{margin-left:-9.185238pt;}
._15{margin-left:-7.193198pt;}
._8{margin-left:-6.289920pt;}
._5{margin-left:-4.986863pt;}
._13{margin-left:-3.317760pt;}
._a{margin-left:-2.419200pt;}
._9{margin-left:-1.175040pt;}
._2{width:1.336320pt;}
._7{width:2.273280pt;}
._3{width:3.415025pt;}
._b{width:4.561920pt;}
._c{width:6.142490pt;}
._d{width:7.036761pt;}
._6{width:8.517120pt;}
._26{width:9.639658pt;}
._1{width:10.616320pt;}
._2b{width:11.543040pt;}
._10{width:13.039360pt;}
._11{width:14.645745pt;}
._24{width:16.038092pt;}
._e{width:17.175426pt;}
._f{width:18.340904pt;}
._0{width:19.635355pt;}
._27{width:22.528046pt;}
._28{width:23.556996pt;}
._1c{width:26.815274pt;}
._2f{width:31.020026pt;}
._30{width:32.571448pt;}
._2d{width:34.889252pt;}
._2e{width:36.766720pt;}
._1b{width:47.537874pt;}
._12{width:48.820311pt;}
._1e{width:54.761423pt;}
._23{width:159.300814pt;}
._19{width:184.963088pt;}
._25{width:197.969056pt;}
._2a{width:347.675776pt;}
._2c{width:413.612416pt;}
._20{width:455.795341pt;}
._1a{width:464.812416pt;}
._21{width:495.785363pt;}
._29{width:563.268644pt;}
._18{width:612.070678pt;}
._16{width:628.764025pt;}
._17{width:646.650681pt;}
._22{width:657.551456pt;}
._1f{width:702.405231pt;}
._14{width:834.618698pt;}
._1d{width:891.916911pt;}
.fs9{font-size:33.280000pt;}
.fsf{font-size:37.120000pt;}
.fsc{font-size:43.520000pt;}
.fsa{font-size:44.800000pt;}
.fs8{font-size:47.360000pt;}
.fsd{font-size:51.200000pt;}
.fs4{font-size:53.760000pt;}
.fs7{font-size:60.160000pt;}
.fsb{font-size:61.440000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fs2{font-size:79.360000pt;}
.fs6{font-size:85.759467pt;}
.fse{font-size:96.000000pt;}
.fs1{font-size:117.759467pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:181.120000pt;}
.yd8{bottom:185.920000pt;}
.y4f{bottom:188.800000pt;}
.y174{bottom:192.000000pt;}
.yf5{bottom:192.320000pt;}
.y119{bottom:194.880000pt;}
.y152{bottom:196.480000pt;}
.y112{bottom:197.120000pt;}
.y6c{bottom:197.440000pt;}
.y86{bottom:199.680000pt;}
.y145{bottom:200.320000pt;}
.ya4{bottom:200.960000pt;}
.yc2{bottom:204.160000pt;}
.yd7{bottom:205.120000pt;}
.y35{bottom:206.080000pt;}
.y173{bottom:207.040000pt;}
.y4e{bottom:207.360000pt;}
.y12c{bottom:208.960000pt;}
.yf4{bottom:211.520000pt;}
.y103{bottom:214.080000pt;}
.y6b{bottom:215.680000pt;}
.y111{bottom:216.320000pt;}
.y137{bottom:216.960000pt;}
.y85{bottom:218.880000pt;}
.y144{bottom:219.520000pt;}
.ya3{bottom:220.160000pt;}
.y34{bottom:220.480000pt;}
.yc1{bottom:223.360000pt;}
.yd6{bottom:224.320000pt;}
.y172{bottom:224.960000pt;}
.y4d{bottom:225.600000pt;}
.y151{bottom:226.880000pt;}
.y12b{bottom:228.160000pt;}
.yf3{bottom:230.720000pt;}
.y102{bottom:233.280000pt;}
.y33{bottom:234.880000pt;}
.y110{bottom:235.520000pt;}
.y136{bottom:236.160000pt;}
.y143{bottom:238.720000pt;}
.ya2{bottom:239.360000pt;}
.y171{bottom:240.320000pt;}
.y6a{bottom:242.240000pt;}
.yc0{bottom:242.560000pt;}
.yd5{bottom:243.520000pt;}
.y150{bottom:244.800000pt;}
.y84{bottom:246.080000pt;}
.y12a{bottom:247.360000pt;}
.y32{bottom:249.280000pt;}
.yf2{bottom:249.920000pt;}
.y4c{bottom:252.160000pt;}
.y101{bottom:252.480000pt;}
.y10f{bottom:254.720000pt;}
.y135{bottom:255.360000pt;}
.y118{bottom:257.920000pt;}
.ya1{bottom:258.560000pt;}
.y14f{bottom:259.840000pt;}
.y69{bottom:260.480000pt;}
.y83{bottom:261.120000pt;}
.ybf{bottom:261.760000pt;}
.yd4{bottom:262.720000pt;}
.y31{bottom:263.680000pt;}
.y129{bottom:266.560000pt;}
.yf1{bottom:269.120000pt;}
.y4b{bottom:270.400000pt;}
.y100{bottom:271.680000pt;}
.y170{bottom:273.280000pt;}
.y10e{bottom:273.920000pt;}
.y14e{bottom:275.200000pt;}
.y117{bottom:277.120000pt;}
.ya0{bottom:277.760000pt;}
.y30{bottom:278.080000pt;}
.y68{bottom:279.040000pt;}
.y134{bottom:279.680000pt;}
.ybe{bottom:280.960000pt;}
.yd3{bottom:281.920000pt;}
.y82{bottom:285.760000pt;}
.yf0{bottom:288.320000pt;}
.yff{bottom:290.880000pt;}
.y17f{bottom:291.200000pt;}
.y10d{bottom:293.120000pt;}
.y14a{bottom:295.680000pt;}
.y116{bottom:296.320000pt;}
.y4a{bottom:296.960000pt;}
.y67{bottom:297.280000pt;}
.y133{bottom:298.880000pt;}
.ybd{bottom:300.160000pt;}
.y2f{bottom:300.480000pt;}
.yd2{bottom:301.120000pt;}
.y16f{bottom:303.680000pt;}
.y17e{bottom:306.240000pt;}
.yef{bottom:307.520000pt;}
.y14d{bottom:308.160000pt;}
.y10c{bottom:312.320000pt;}
.y128{bottom:312.960000pt;}
.y149{bottom:314.880000pt;}
.y49{bottom:315.200000pt;}
.yfe{bottom:315.520000pt;}
.y9f{bottom:316.160000pt;}
.y132{bottom:318.080000pt;}
.ybc{bottom:319.360000pt;}
.yd1{bottom:320.320000pt;}
.y16e{bottom:321.600000pt;}
.y2e{bottom:322.880000pt;}
.y81{bottom:323.520000pt;}
.y66{bottom:323.840000pt;}
.y17d{bottom:324.160000pt;}
.yee{bottom:326.720000pt;}
.y10b{bottom:331.520000pt;}
.y48{bottom:333.760000pt;}
.y148{bottom:334.080000pt;}
.yfd{bottom:334.720000pt;}
.y9e{bottom:335.360000pt;}
.y16d{bottom:336.640000pt;}
.y2d{bottom:337.280000pt;}
.ybb{bottom:338.560000pt;}
.y80{bottom:338.880000pt;}
.yd0{bottom:339.520000pt;}
.y14c{bottom:341.120000pt;}
.y65{bottom:342.080000pt;}
.y131{bottom:342.720000pt;}
.yed{bottom:345.920000pt;}
.y127{bottom:348.160000pt;}
.y10a{bottom:350.720000pt;}
.y2c{bottom:351.680000pt;}
.y16c{bottom:352.000000pt;}
.y147{bottom:353.280000pt;}
.yfc{bottom:353.920000pt;}
.y9d{bottom:354.560000pt;}
.y14b{bottom:356.480000pt;}
.yba{bottom:357.760000pt;}
.ycf{bottom:358.720000pt;}
.y142{bottom:359.360000pt;}
.y47{bottom:360.000000pt;}
.y130{bottom:361.920000pt;}
.yd{bottom:362.240000pt;}
.yec{bottom:365.120000pt;}
.y2b{bottom:366.080000pt;}
.y7f{bottom:367.360000pt;}
.y64{bottom:368.640000pt;}
.y109{bottom:369.920000pt;}
.y146{bottom:372.480000pt;}
.yfb{bottom:373.120000pt;}
.y9c{bottom:373.760000pt;}
.yce{bottom:377.920000pt;}
.y46{bottom:378.560000pt;}
.y2a{bottom:380.480000pt;}
.y12f{bottom:381.120000pt;}
.y7e{bottom:382.720000pt;}
.yeb{bottom:384.320000pt;}
.y16b{bottom:384.960000pt;}
.y126{bottom:386.560000pt;}
.y17c{bottom:387.520000pt;}
.yc{bottom:387.840000pt;}
.y108{bottom:389.120000pt;}
.yfa{bottom:392.320000pt;}
.y9b{bottom:392.960000pt;}
.y29{bottom:394.880000pt;}
.yb9{bottom:395.520000pt;}
.y45{bottom:396.800000pt;}
.ycd{bottom:397.120000pt;}
.y7d{bottom:397.760000pt;}
.y63{bottom:402.880000pt;}
.yea{bottom:403.520000pt;}
.y125{bottom:405.760000pt;}
.y107{bottom:408.320000pt;}
.yf9{bottom:411.520000pt;}
.yb{bottom:412.160000pt;}
.y7c{bottom:413.120000pt;}
.y28{bottom:413.440000pt;}
.y44{bottom:415.360000pt;}
.ycc{bottom:416.320000pt;}
.y141{bottom:416.960000pt;}
.y16a{bottom:417.920000pt;}
.y17b{bottom:420.800000pt;}
.y62{bottom:421.440000pt;}
.ye9{bottom:422.720000pt;}
.y124{bottom:424.960000pt;}
.y106{bottom:427.520000pt;}
.y7b{bottom:428.160000pt;}
.yb8{bottom:430.720000pt;}
.y9a{bottom:431.360000pt;}
.y169{bottom:433.280000pt;}
.ycb{bottom:435.520000pt;}
.y17a{bottom:435.840000pt;}
.y140{bottom:436.160000pt;}
.y27{bottom:439.680000pt;}
.ya{bottom:441.280000pt;}
.y43{bottom:441.600000pt;}
.y7a{bottom:443.520000pt;}
.y123{bottom:444.160000pt;}
.y105{bottom:446.720000pt;}
.yb7{bottom:449.920000pt;}
.y99{bottom:450.560000pt;}
.y168{bottom:451.200000pt;}
.y26{bottom:454.080000pt;}
.yca{bottom:454.720000pt;}
.y13f{bottom:455.360000pt;}
.y79{bottom:458.560000pt;}
.y42{bottom:460.160000pt;}
.y122{bottom:463.360000pt;}
.y9{bottom:465.600000pt;}
.y104{bottom:465.920000pt;}
.y61{bottom:466.240000pt;}
.y25{bottom:468.480000pt;}
.yb6{bottom:469.120000pt;}
.y98{bottom:469.760000pt;}
.y78{bottom:473.920000pt;}
.y41{bottom:478.400000pt;}
.y13e{bottom:479.680000pt;}
.y179{bottom:481.600000pt;}
.y12e{bottom:482.560000pt;}
.y24{bottom:482.880000pt;}
.y167{bottom:484.160000pt;}
.y60{bottom:484.480000pt;}
.ye8{bottom:485.120000pt;}
.y121{bottom:487.680000pt;}
.yb5{bottom:488.320000pt;}
.y77{bottom:488.960000pt;}
.yc9{bottom:493.120000pt;}
.y40{bottom:496.960000pt;}
.y23{bottom:497.280000pt;}
.y13d{bottom:498.880000pt;}
.y166{bottom:499.520000pt;}
.y12d{bottom:501.760000pt;}
.y5f{bottom:503.040000pt;}
.y8{bottom:503.680000pt;}
.y76{bottom:504.320000pt;}
.y120{bottom:506.880000pt;}
.yb4{bottom:507.520000pt;}
.y97{bottom:508.160000pt;}
.y22{bottom:511.680000pt;}
.yc8{bottom:512.320000pt;}
.y165{bottom:514.560000pt;}
.y13c{bottom:518.080000pt;}
.y3f{bottom:523.200000pt;}
.ye7{bottom:523.520000pt;}
.y21{bottom:526.080000pt;}
.yb3{bottom:526.720000pt;}
.y96{bottom:527.680000pt;}
.y5e{bottom:529.280000pt;}
.y178{bottom:529.920000pt;}
.yc7{bottom:531.520000pt;}
.y164{bottom:532.480000pt;}
.y75{bottom:532.800000pt;}
.y13b{bottom:537.280000pt;}
.y20{bottom:540.480000pt;}
.y3e{bottom:541.760000pt;}
.ye6{bottom:542.720000pt;}
.y11f{bottom:545.280000pt;}
.yb2{bottom:545.920000pt;}
.y95{bottom:546.880000pt;}
.y5d{bottom:547.840000pt;}
.yc6{bottom:550.720000pt;}
.y1f{bottom:554.880000pt;}
.y13a{bottom:556.480000pt;}
.y3d{bottom:560.000000pt;}
.ye5{bottom:561.920000pt;}
.y7{bottom:562.240000pt;}
.y163{bottom:562.880000pt;}
.y11e{bottom:564.480000pt;}
.yb1{bottom:565.120000pt;}
.y5c{bottom:566.080000pt;}
.y1e{bottom:569.280000pt;}
.yc5{bottom:569.920000pt;}
.y139{bottom:575.680000pt;}
.y177{bottom:578.240000pt;}
.y3c{bottom:578.560000pt;}
.y162{bottom:580.800000pt;}
.ye4{bottom:581.120000pt;}
.y1d{bottom:583.680000pt;}
.yf8{bottom:584.320000pt;}
.y94{bottom:585.280000pt;}
.yc4{bottom:589.120000pt;}
.yb0{bottom:592.320000pt;}
.y5b{bottom:592.640000pt;}
.y138{bottom:594.880000pt;}
.y161{bottom:595.840000pt;}
.y1c{bottom:598.080000pt;}
.y74{bottom:599.360000pt;}
.ye3{bottom:600.320000pt;}
.y11d{bottom:602.880000pt;}
.yf7{bottom:603.520000pt;}
.y93{bottom:604.480000pt;}
.y3b{bottom:604.800000pt;}
.yc3{bottom:608.320000pt;}
.y5a{bottom:610.880000pt;}
.y160{bottom:611.200000pt;}
.y1b{bottom:612.480000pt;}
.y6{bottom:616.000000pt;}
.y73{bottom:616.960000pt;}
.ye2{bottom:619.520000pt;}
.y11c{bottom:622.080000pt;}
.y115{bottom:622.720000pt;}
.y3a{bottom:623.360000pt;}
.y1a{bottom:626.880000pt;}
.yaf{bottom:627.520000pt;}
.y92{bottom:628.800000pt;}
.y15f{bottom:629.120000pt;}
.y59{bottom:629.440000pt;}
.yf6{bottom:630.720000pt;}
.ye1{bottom:638.720000pt;}
.y19{bottom:641.280000pt;}
.y39{bottom:641.600000pt;}
.y114{bottom:641.920000pt;}
.y72{bottom:642.240000pt;}
.y5{bottom:643.840000pt;}
.y15e{bottom:644.160000pt;}
.yae{bottom:646.720000pt;}
.y91{bottom:648.000000pt;}
.y18{bottom:655.680000pt;}
.ye0{bottom:657.920000pt;}
.y15d{bottom:659.520000pt;}
.y11b{bottom:660.480000pt;}
.y71{bottom:665.600000pt;}
.yad{bottom:665.920000pt;}
.y90{bottom:667.200000pt;}
.y38{bottom:668.160000pt;}
.y113{bottom:669.120000pt;}
.y17{bottom:670.080000pt;}
.y58{bottom:674.240000pt;}
.ydf{bottom:677.120000pt;}
.y15c{bottom:677.440000pt;}
.y4{bottom:679.040000pt;}
.y11a{bottom:679.680000pt;}
.y16{bottom:684.480000pt;}
.yac{bottom:685.120000pt;}
.y8f{bottom:686.400000pt;}
.y70{bottom:689.600000pt;}
.y57{bottom:692.480000pt;}
.y37{bottom:694.400000pt;}
.yde{bottom:696.320000pt;}
.y15{bottom:698.880000pt;}
.yab{bottom:704.320000pt;}
.y8e{bottom:705.600000pt;}
.y15b{bottom:707.840000pt;}
.y176{bottom:710.400000pt;}
.y6f{bottom:713.600000pt;}
.y3{bottom:714.240000pt;}
.ydd{bottom:715.520000pt;}
.y14{bottom:718.720000pt;}
.y56{bottom:719.040000pt;}
.yaa{bottom:723.520000pt;}
.y8d{bottom:724.800000pt;}
.y15a{bottom:725.440000pt;}
.ydc{bottom:734.720000pt;}
.y55{bottom:737.280000pt;}
.y6e{bottom:737.600000pt;}
.y159{bottom:740.800000pt;}
.y13{bottom:741.120000pt;}
.ya9{bottom:742.720000pt;}
.y175{bottom:743.360000pt;}
.y8c{bottom:744.000000pt;}
.y2{bottom:749.440000pt;}
.ydb{bottom:753.920000pt;}
.y12{bottom:755.520000pt;}
.y54{bottom:755.840000pt;}
.y158{bottom:758.720000pt;}
.ya8{bottom:761.920000pt;}
.y36{bottom:762.560000pt;}
.y8b{bottom:763.200000pt;}
.y6d{bottom:767.680000pt;}
.yda{bottom:773.120000pt;}
.y157{bottom:773.760000pt;}
.y53{bottom:774.080000pt;}
.y11{bottom:775.360000pt;}
.ya7{bottom:781.120000pt;}
.y8a{bottom:782.400000pt;}
.y156{bottom:791.680000pt;}
.yd9{bottom:792.320000pt;}
.y10{bottom:793.600000pt;}
.ya6{bottom:800.320000pt;}
.y52{bottom:800.640000pt;}
.y89{bottom:801.600000pt;}
.y155{bottom:807.040000pt;}
.yf{bottom:808.000000pt;}
.y1{bottom:812.480000pt;}
.y51{bottom:818.880000pt;}
.ya5{bottom:819.520000pt;}
.y88{bottom:820.800000pt;}
.y154{bottom:822.080000pt;}
.ye{bottom:822.400000pt;}
.y87{bottom:853.440000pt;}
.y50{bottom:854.400000pt;}
.h9{height:30.362500pt;}
.h8{height:32.097500pt;}
.h12{height:35.550000pt;}
.ha{height:39.497500pt;}
.hc{height:41.640000pt;}
.hd{height:42.700000pt;}
.hf{height:43.375000pt;}
.h6{height:44.437500pt;}
.h10{height:44.835000pt;}
.h4{height:46.845000pt;}
.h5{height:49.481250pt;}
.h1{height:50.315000pt;}
.hb{height:51.240000pt;}
.h11{height:53.375000pt;}
.h3{height:53.785000pt;}
.h7{height:58.122139pt;}
.he{height:65.062500pt;}
.h2{height:79.809639pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xe{left:216.000000pt;}
.x16{left:217.280000pt;}
.x15{left:218.240000pt;}
.x11{left:224.640000pt;}
.x13{left:225.920000pt;}
.x6{left:229.440000pt;}
.x1e{left:230.400000pt;}
.xf{left:233.280000pt;}
.x1d{left:235.840000pt;}
.x1c{left:244.480000pt;}
.x20{left:247.360000pt;}
.x12{left:248.320000pt;}
.x14{left:249.280000pt;}
.x18{left:250.240000pt;}
.x19{left:251.200000pt;}
.x1a{left:263.360000pt;}
.x7{left:285.440000pt;}
.xd{left:293.120000pt;}
.x5{left:296.320000pt;}
.x8{left:302.720000pt;}
.xc{left:319.040000pt;}
.xa{left:322.880000pt;}
.x1b{left:329.920000pt;}
.x3{left:332.160000pt;}
.x1{left:337.600000pt;}
.x2{left:342.080000pt;}
.x9{left:363.200000pt;}
.x10{left:367.360000pt;}
.x1f{left:379.520000pt;}
.x4{left:384.000000pt;}
.xb{left:386.560000pt;}
.x17{left:403.200000pt;}
}




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