
    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_65a958b9aa80767c6067a4a6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e4346815047e6bd95a5dde88.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_c36d24f7cd0f9594b114dda1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_5fe9c3df91364406b45fbc6a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_69fd604872a671c2e0518516.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0e3ecad8156ca04b85044d39.woff')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_3758d965c76843d69d20052d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.944824;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_0cf1a5f9525c8629a33e6fae.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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:ff9;src:url('chunks/assets/font_4cc638428a71dfaae01f0329.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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:ffa;src:url('chunks/assets/font_02ca08124ba35140648e593b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.854492;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:ffb;src:url('chunks/assets/font_a0f5e77414da9d98a853b6c5.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_68efb54ab58494f215d59d33.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.270600px;}
.lsb{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.121200px;}
.ls10{letter-spacing:-0.097800px;}
.lsd{letter-spacing:-0.094800px;}
.ls6{letter-spacing:-0.085200px;}
.ls7{letter-spacing:-0.036000px;}
.lse{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls17{letter-spacing:0.157680px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.211800px;}
.ls12{letter-spacing:0.319680px;}
.lsc{letter-spacing:0.328200px;}
.ls16{letter-spacing:0.357000px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.388080px;}
.ls5{letter-spacing:0.636000px;}
.ls13{letter-spacing:1.080000px;}
.ls2{letter-spacing:22.132800px;}
.lsf{letter-spacing:41.682720px;}
.ls1{letter-spacing:201.060000px;}
.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:-13.783200px;}
.wsc{word-spacing:-13.504200px;}
.ws9{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.049400px;}
.wsb{word-spacing:-13.026000px;}
.ws0{word-spacing:-10.612800px;}
.ws3{word-spacing:-10.527600px;}
.ws7{word-spacing:-10.342200px;}
.ws8{word-spacing:-9.092400px;}
.ws4{word-spacing:-7.884000px;}
.ws5{word-spacing:-7.632000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-200.880000px;}
._5{margin-left:-38.067840px;}
._18{margin-left:-2.748960px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._4{width:2.214000px;}
._7{width:3.585600px;}
._11{width:4.668720px;}
._20{width:5.712960px;}
._f{width:6.760320px;}
._10{width:8.485920px;}
._14{width:9.509280px;}
._1a{width:10.876320px;}
._c{width:12.437520px;}
._17{width:13.476480px;}
._22{width:14.940000px;}
._19{width:16.553520px;}
._15{width:18.047520px;}
._16{width:19.152960px;}
._9{width:20.803920px;}
._8{width:22.410000px;}
._21{width:23.612640px;}
._1d{width:25.450320px;}
._d{width:26.660400px;}
._e{width:27.766080px;}
._1e{width:28.791600px;}
._b{width:29.872560px;}
._a{width:30.903360px;}
._12{width:32.337600px;}
._13{width:33.465600px;}
._1b{width:45.365280px;}
._1c{width:46.522560px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._1f{width:1070.062920px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:3.420000px;}
.y106{bottom:3.450000px;}
.y131{bottom:3.465000px;}
.y54{bottom:41.040000px;}
.y53{bottom:54.360000px;}
.y7{bottom:56.520000px;}
.y52{bottom:64.980000px;}
.y6{bottom:70.596000px;}
.y51{bottom:75.600000px;}
.y50{bottom:93.060000px;}
.y105{bottom:114.696000px;}
.ycc{bottom:118.296000px;}
.y8f{bottom:122.256000px;}
.y13c{bottom:122.796000px;}
.y104{bottom:133.056000px;}
.ycb{bottom:136.656000px;}
.y8e{bottom:139.896000px;}
.y13b{bottom:140.436000px;}
.y3f{bottom:142.236000px;}
.y4f{bottom:146.160000px;}
.y103{bottom:151.410000px;}
.yca{bottom:155.010000px;}
.y8d{bottom:157.350000px;}
.y13a{bottom:158.070000px;}
.y3e{bottom:159.690000px;}
.y4e{bottom:160.200000px;}
.y102{bottom:173.190000px;}
.yc9{bottom:173.370000px;}
.y4d{bottom:174.240000px;}
.y8c{bottom:174.990000px;}
.y139{bottom:175.530000px;}
.y3d{bottom:177.330000px;}
.y4c{bottom:188.280000px;}
.y101{bottom:190.650000px;}
.yc8{bottom:191.730000px;}
.y8b{bottom:192.630000px;}
.y138{bottom:193.170000px;}
.y3c{bottom:194.970000px;}
.y4b{bottom:202.320000px;}
.y100{bottom:208.290000px;}
.yc7{bottom:209.910000px;}
.y8a{bottom:210.270000px;}
.y137{bottom:210.810000px;}
.y3b{bottom:212.430000px;}
.y4a{bottom:216.360000px;}
.yff{bottom:225.930000px;}
.y89{bottom:227.730000px;}
.yc6{bottom:228.270000px;}
.y3a{bottom:230.070000px;}
.y49{bottom:230.400000px;}
.y136{bottom:243.210000px;}
.y48{bottom:243.225000px;}
.yfe{bottom:243.390000px;}
.y88{bottom:245.370000px;}
.yc5{bottom:246.630000px;}
.y39{bottom:247.710000px;}
.y47{bottom:251.685000px;}
.yfd{bottom:261.030000px;}
.y135{bottom:261.570000px;}
.y87{bottom:263.010000px;}
.yc4{bottom:264.990000px;}
.y38{bottom:265.350000px;}
.y46{bottom:265.725000px;}
.y148{bottom:277.410000px;}
.yfc{bottom:278.670000px;}
.y45{bottom:279.765000px;}
.y134{bottom:279.930000px;}
.y86{bottom:280.470000px;}
.y37{bottom:282.810000px;}
.yc3{bottom:283.350000px;}
.y44{bottom:293.805000px;}
.y147{bottom:295.050000px;}
.yfb{bottom:296.130000px;}
.y85{bottom:298.110000px;}
.y133{bottom:298.290000px;}
.y36{bottom:300.450000px;}
.yc2{bottom:301.710000px;}
.y43{bottom:307.845000px;}
.y146{bottom:312.510000px;}
.yfa{bottom:313.770000px;}
.y84{bottom:315.750000px;}
.y132{bottom:316.650000px;}
.y35{bottom:318.090000px;}
.yc1{bottom:320.070000px;}
.y42{bottom:320.445000px;}
.y145{bottom:330.150000px;}
.yf9{bottom:331.410000px;}
.y41{bottom:331.605000px;}
.y83{bottom:333.210000px;}
.y130{bottom:334.830000px;}
.y34{bottom:335.550000px;}
.yc0{bottom:338.295000px;}
.y144{bottom:347.835000px;}
.yf8{bottom:348.915000px;}
.y82{bottom:350.895000px;}
.y33{bottom:353.235000px;}
.ybf{bottom:356.655000px;}
.y143{bottom:365.295000px;}
.yf7{bottom:366.555000px;}
.y81{bottom:368.535000px;}
.y32{bottom:370.875000px;}
.y12f{bottom:371.595000px;}
.ybe{bottom:375.015000px;}
.y142{bottom:382.935000px;}
.yf6{bottom:384.195000px;}
.y80{bottom:386.175000px;}
.y31{bottom:388.335000px;}
.ybd{bottom:393.375000px;}
.y141{bottom:400.575000px;}
.yf5{bottom:401.835000px;}
.y7f{bottom:403.635000px;}
.y30{bottom:405.975000px;}
.y12e{bottom:411.015000px;}
.ybc{bottom:411.735000px;}
.y140{bottom:418.215000px;}
.yf4{bottom:419.295000px;}
.y7e{bottom:421.275000px;}
.y2f{bottom:423.615000px;}
.y12d{bottom:428.475000px;}
.ybb{bottom:430.095000px;}
.y13f{bottom:435.675000px;}
.yf3{bottom:436.935000px;}
.y7d{bottom:438.915000px;}
.y2e{bottom:441.255000px;}
.y12c{bottom:446.115000px;}
.yba{bottom:448.455000px;}
.y13e{bottom:453.315000px;}
.yf2{bottom:454.575000px;}
.y7c{bottom:456.375000px;}
.y2d{bottom:458.535000px;}
.y12b{bottom:463.755000px;}
.yb8{bottom:466.815000px;}
.y13d{bottom:470.955000px;}
.yf1{bottom:472.035000px;}
.y7b{bottom:474.015000px;}
.y2c{bottom:475.995000px;}
.y12a{bottom:481.395000px;}
.yb7{bottom:488.415000px;}
.yf0{bottom:489.675000px;}
.y7a{bottom:491.655000px;}
.y2b{bottom:493.635000px;}
.y129{bottom:498.855000px;}
.yb6{bottom:506.055000px;}
.yef{bottom:507.315000px;}
.y79{bottom:509.115000px;}
.y2a{bottom:511.095000px;}
.y128{bottom:516.495000px;}
.yb5{bottom:523.695000px;}
.yee{bottom:524.775000px;}
.y78{bottom:526.755000px;}
.y29{bottom:528.555000px;}
.y127{bottom:534.135000px;}
.yed{bottom:539.715000px;}
.yb4{bottom:541.155000px;}
.y77{bottom:544.395000px;}
.y28{bottom:545.835000px;}
.y126{bottom:551.595000px;}
.yec{bottom:558.075000px;}
.yb3{bottom:558.795000px;}
.y76{bottom:561.855000px;}
.y27{bottom:563.115000px;}
.y125{bottom:566.535000px;}
.yb2{bottom:576.435000px;}
.y75{bottom:579.495000px;}
.y26{bottom:580.395000px;}
.y124{bottom:584.895000px;}
.yb1{bottom:594.075000px;}
.yeb{bottom:594.795000px;}
.y74{bottom:597.135000px;}
.y25{bottom:597.495000px;}
.y123{bottom:603.255000px;}
.yb0{bottom:611.565000px;}
.yea{bottom:613.185000px;}
.y24{bottom:614.805000px;}
.y122{bottom:621.645000px;}
.y40{bottom:628.845000px;}
.yaf{bottom:629.205000px;}
.ye9{bottom:631.545000px;}
.y23{bottom:632.085000px;}
.y73{bottom:632.265000px;}
.y121{bottom:640.005000px;}
.yae{bottom:646.845000px;}
.y22{bottom:649.365000px;}
.ye8{bottom:649.725000px;}
.y72{bottom:649.905000px;}
.y120{bottom:658.365000px;}
.yad{bottom:664.305000px;}
.y21{bottom:666.645000px;}
.y71{bottom:667.545000px;}
.ye7{bottom:668.085000px;}
.y11f{bottom:676.545000px;}
.yac{bottom:681.945000px;}
.y20{bottom:683.925000px;}
.y70{bottom:685.005000px;}
.ye6{bottom:686.445000px;}
.y11e{bottom:694.905000px;}
.yab{bottom:699.585000px;}
.y1f{bottom:701.025000px;}
.y6f{bottom:702.645000px;}
.ye5{bottom:708.225000px;}
.y11d{bottom:713.265000px;}
.yaa{bottom:717.045000px;}
.y1e{bottom:718.305000px;}
.y6e{bottom:720.285000px;}
.ye4{bottom:725.865000px;}
.y11c{bottom:731.625000px;}
.ya9{bottom:734.685000px;}
.y1d{bottom:735.585000px;}
.y6d{bottom:737.745000px;}
.ye3{bottom:743.325000px;}
.y11b{bottom:749.985000px;}
.ya8{bottom:752.325000px;}
.y1c{bottom:755.025000px;}
.y6c{bottom:755.385000px;}
.ye2{bottom:760.965000px;}
.y11a{bottom:768.345000px;}
.ya7{bottom:769.965000px;}
.y1b{bottom:772.305000px;}
.y6b{bottom:773.025000px;}
.ye1{bottom:778.605000px;}
.y119{bottom:786.705000px;}
.ya6{bottom:787.425000px;}
.y1a{bottom:789.585000px;}
.y6a{bottom:790.665000px;}
.ye0{bottom:796.245000px;}
.y118{bottom:804.885000px;}
.ya5{bottom:805.065000px;}
.y19{bottom:806.865000px;}
.y69{bottom:808.125000px;}
.ydf{bottom:813.705000px;}
.ya4{bottom:822.705000px;}
.y117{bottom:823.245000px;}
.y18{bottom:824.145000px;}
.y68{bottom:825.765000px;}
.yde{bottom:831.345000px;}
.ya3{bottom:840.165000px;}
.y17{bottom:841.245000px;}
.y116{bottom:841.605000px;}
.y67{bottom:843.405000px;}
.ydd{bottom:848.985000px;}
.ya2{bottom:857.805000px;}
.y16{bottom:858.525000px;}
.y115{bottom:859.965000px;}
.y66{bottom:860.865000px;}
.ydc{bottom:866.445000px;}
.ya1{bottom:875.490000px;}
.y15{bottom:875.850000px;}
.y114{bottom:878.370000px;}
.y65{bottom:878.550000px;}
.ydb{bottom:881.430000px;}
.ya0{bottom:892.950000px;}
.y14{bottom:893.130000px;}
.y64{bottom:896.190000px;}
.y113{bottom:896.730000px;}
.yda{bottom:899.790000px;}
.y13{bottom:910.410000px;}
.y9f{bottom:910.590000px;}
.y63{bottom:913.650000px;}
.y112{bottom:915.090000px;}
.yd9{bottom:918.150000px;}
.y12{bottom:927.690000px;}
.y9e{bottom:928.230000px;}
.y62{bottom:931.290000px;}
.y111{bottom:933.270000px;}
.yd8{bottom:936.510000px;}
.y11{bottom:944.790000px;}
.y9d{bottom:945.690000px;}
.y61{bottom:948.930000px;}
.y110{bottom:951.630000px;}
.yd7{bottom:954.870000px;}
.y10{bottom:962.070000px;}
.y9c{bottom:963.330000px;}
.y60{bottom:966.570000px;}
.y10f{bottom:969.990000px;}
.yd6{bottom:973.230000px;}
.yf{bottom:979.350000px;}
.y9b{bottom:980.970000px;}
.y5f{bottom:984.030000px;}
.y10e{bottom:988.350000px;}
.yd5{bottom:991.410000px;}
.ye{bottom:996.630000px;}
.y9a{bottom:998.610000px;}
.y5e{bottom:1001.670000px;}
.y10d{bottom:1006.710000px;}
.yd4{bottom:1009.770000px;}
.yd{bottom:1013.730000px;}
.y99{bottom:1016.070000px;}
.y5d{bottom:1019.310000px;}
.y10c{bottom:1025.070000px;}
.yd3{bottom:1028.130000px;}
.yc{bottom:1030.110000px;}
.y98{bottom:1033.710000px;}
.y5c{bottom:1036.770000px;}
.y10b{bottom:1043.430000px;}
.yd2{bottom:1046.490000px;}
.yb{bottom:1049.550000px;}
.y97{bottom:1051.350000px;}
.y5b{bottom:1054.410000px;}
.y10a{bottom:1061.790000px;}
.yd1{bottom:1064.850000px;}
.y96{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.y5a{bottom:1072.050000px;}
.y109{bottom:1079.970000px;}
.yd0{bottom:1083.210000px;}
.y95{bottom:1086.450000px;}
.y59{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.y108{bottom:1098.330000px;}
.ycf{bottom:1101.570000px;}
.y94{bottom:1104.090000px;}
.y58{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y107{bottom:1116.690000px;}
.yce{bottom:1119.750000px;}
.y93{bottom:1121.550000px;}
.y57{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.ycd{bottom:1138.140000px;}
.y92{bottom:1139.220000px;}
.y56{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y91{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y90{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y55{bottom:1197.540000px;}
.h13{height:17.460000px;}
.h15{height:17.496000px;}
.h14{height:17.640000px;}
.h16{height:17.676000px;}
.hf{height:20.117109px;}
.h11{height:30.480469px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.hb{height:41.726953px;}
.h9{height:42.164648px;}
.hc{height:43.302656px;}
.hd{height:45.549492px;}
.h8{height:45.720703px;}
.ha{height:50.273438px;}
.h5{height:50.597578px;}
.h7{height:56.084062px;}
.h12{height:58.819922px;}
.h10{height:60.960938px;}
.h6{height:65.837812px;}
.he{height:344.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:53.460000px;}
.w4{width:59.580000px;}
.wc{width:205.770000px;}
.w7{width:205.950000px;}
.w8{width:215.310000px;}
.w9{width:216.210000px;}
.w3{width:221.970000px;}
.w6{width:288.210000px;}
.w5{width:289.515000px;}
.wb{width:295.635000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x29{left:17.454000px;}
.xf{left:20.514000px;}
.x2b{left:22.494000px;}
.x14{left:25.554000px;}
.x2d{left:26.634000px;}
.x16{left:29.694000px;}
.x13{left:47.700000px;}
.x20{left:70.020000px;}
.x1e{left:72.900000px;}
.x1c{left:75.234000px;}
.x26{left:79.554000px;}
.x21{left:83.694000px;}
.x23{left:87.345000px;}
.x25{left:91.485000px;}
.x24{left:93.105000px;}
.x22{left:97.245000px;}
.x11{left:103.545000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x17{left:111.645000px;}
.x19{left:114.705000px;}
.x2e{left:117.765000px;}
.x3{left:121.355987px;}
.x1a{left:125.820000px;}
.x18{left:127.260000px;}
.xc{left:133.415987px;}
.xa{left:134.994000px;}
.x15{left:136.845000px;}
.x2c{left:139.905000px;}
.xe{left:147.096000px;}
.x7{left:158.609987px;}
.x2f{left:170.309987px;}
.x6{left:179.129987px;}
.x2a{left:201.270000px;}
.x4{left:203.789987px;}
.x10{left:207.390000px;}
.xd{left:288.254987px;}
.x1b{left:295.814987px;}
.x8{left:322.454987px;}
.x9{left:342.614987px;}
.x1d{left:353.775000px;}
.x28{left:355.574987px;}
.x27{left:369.434987px;}
.x5{left:446.654987px;}
.x12{left:497.805000px;}
.xb{left:550.904987px;}
.x1f{left:569.805000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.240533pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.107733pt;}
.ls10{letter-spacing:-0.086933pt;}
.lsd{letter-spacing:-0.084267pt;}
.ls6{letter-spacing:-0.075733pt;}
.ls7{letter-spacing:-0.032000pt;}
.lse{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls17{letter-spacing:0.140160pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.188267pt;}
.ls12{letter-spacing:0.284160pt;}
.lsc{letter-spacing:0.291733pt;}
.ls16{letter-spacing:0.317333pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.344960pt;}
.ls5{letter-spacing:0.565333pt;}
.ls13{letter-spacing:0.960000pt;}
.ls2{letter-spacing:19.673600pt;}
.lsf{letter-spacing:37.051307pt;}
.ls1{letter-spacing:178.720000pt;}
.ws2{word-spacing:-12.251733pt;}
.wsc{word-spacing:-12.003733pt;}
.ws9{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.599467pt;}
.wsb{word-spacing:-11.578667pt;}
.ws0{word-spacing:-9.433600pt;}
.ws3{word-spacing:-9.357867pt;}
.ws7{word-spacing:-9.193067pt;}
.ws8{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.008000pt;}
.ws5{word-spacing:-6.784000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-178.560000pt;}
._5{margin-left:-33.838080pt;}
._18{margin-left:-2.443520pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._4{width:1.968000pt;}
._7{width:3.187200pt;}
._11{width:4.149973pt;}
._20{width:5.078187pt;}
._f{width:6.009173pt;}
._10{width:7.543040pt;}
._14{width:8.452693pt;}
._1a{width:9.667840pt;}
._c{width:11.055573pt;}
._17{width:11.979093pt;}
._22{width:13.280000pt;}
._19{width:14.714240pt;}
._15{width:16.042240pt;}
._16{width:17.024853pt;}
._9{width:18.492373pt;}
._8{width:19.920000pt;}
._21{width:20.989013pt;}
._1d{width:22.622507pt;}
._d{width:23.698133pt;}
._e{width:24.680960pt;}
._1e{width:25.592533pt;}
._b{width:26.553387pt;}
._a{width:27.469653pt;}
._12{width:28.744533pt;}
._13{width:29.747200pt;}
._1b{width:40.324693pt;}
._1c{width:41.353387pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._1f{width:951.167040pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:3.040000pt;}
.y106{bottom:3.066667pt;}
.y131{bottom:3.080000pt;}
.y54{bottom:36.480000pt;}
.y53{bottom:48.320000pt;}
.y7{bottom:50.240000pt;}
.y52{bottom:57.760000pt;}
.y6{bottom:62.752000pt;}
.y51{bottom:67.200000pt;}
.y50{bottom:82.720000pt;}
.y105{bottom:101.952000pt;}
.ycc{bottom:105.152000pt;}
.y8f{bottom:108.672000pt;}
.y13c{bottom:109.152000pt;}
.y104{bottom:118.272000pt;}
.ycb{bottom:121.472000pt;}
.y8e{bottom:124.352000pt;}
.y13b{bottom:124.832000pt;}
.y3f{bottom:126.432000pt;}
.y4f{bottom:129.920000pt;}
.y103{bottom:134.586667pt;}
.yca{bottom:137.786667pt;}
.y8d{bottom:139.866667pt;}
.y13a{bottom:140.506667pt;}
.y3e{bottom:141.946667pt;}
.y4e{bottom:142.400000pt;}
.y102{bottom:153.946667pt;}
.yc9{bottom:154.106667pt;}
.y4d{bottom:154.880000pt;}
.y8c{bottom:155.546667pt;}
.y139{bottom:156.026667pt;}
.y3d{bottom:157.626667pt;}
.y4c{bottom:167.360000pt;}
.y101{bottom:169.466667pt;}
.yc8{bottom:170.426667pt;}
.y8b{bottom:171.226667pt;}
.y138{bottom:171.706667pt;}
.y3c{bottom:173.306667pt;}
.y4b{bottom:179.840000pt;}
.y100{bottom:185.146667pt;}
.yc7{bottom:186.586667pt;}
.y8a{bottom:186.906667pt;}
.y137{bottom:187.386667pt;}
.y3b{bottom:188.826667pt;}
.y4a{bottom:192.320000pt;}
.yff{bottom:200.826667pt;}
.y89{bottom:202.426667pt;}
.yc6{bottom:202.906667pt;}
.y3a{bottom:204.506667pt;}
.y49{bottom:204.800000pt;}
.y136{bottom:216.186667pt;}
.y48{bottom:216.200000pt;}
.yfe{bottom:216.346667pt;}
.y88{bottom:218.106667pt;}
.yc5{bottom:219.226667pt;}
.y39{bottom:220.186667pt;}
.y47{bottom:223.720000pt;}
.yfd{bottom:232.026667pt;}
.y135{bottom:232.506667pt;}
.y87{bottom:233.786667pt;}
.yc4{bottom:235.546667pt;}
.y38{bottom:235.866667pt;}
.y46{bottom:236.200000pt;}
.y148{bottom:246.586667pt;}
.yfc{bottom:247.706667pt;}
.y45{bottom:248.680000pt;}
.y134{bottom:248.826667pt;}
.y86{bottom:249.306667pt;}
.y37{bottom:251.386667pt;}
.yc3{bottom:251.866667pt;}
.y44{bottom:261.160000pt;}
.y147{bottom:262.266667pt;}
.yfb{bottom:263.226667pt;}
.y85{bottom:264.986667pt;}
.y133{bottom:265.146667pt;}
.y36{bottom:267.066667pt;}
.yc2{bottom:268.186667pt;}
.y43{bottom:273.640000pt;}
.y146{bottom:277.786667pt;}
.yfa{bottom:278.906667pt;}
.y84{bottom:280.666667pt;}
.y132{bottom:281.466667pt;}
.y35{bottom:282.746667pt;}
.yc1{bottom:284.506667pt;}
.y42{bottom:284.840000pt;}
.y145{bottom:293.466667pt;}
.yf9{bottom:294.586667pt;}
.y41{bottom:294.760000pt;}
.y83{bottom:296.186667pt;}
.y130{bottom:297.626667pt;}
.y34{bottom:298.266667pt;}
.yc0{bottom:300.706667pt;}
.y144{bottom:309.186667pt;}
.yf8{bottom:310.146667pt;}
.y82{bottom:311.906667pt;}
.y33{bottom:313.986667pt;}
.ybf{bottom:317.026667pt;}
.y143{bottom:324.706667pt;}
.yf7{bottom:325.826667pt;}
.y81{bottom:327.586667pt;}
.y32{bottom:329.666667pt;}
.y12f{bottom:330.306667pt;}
.ybe{bottom:333.346667pt;}
.y142{bottom:340.386667pt;}
.yf6{bottom:341.506667pt;}
.y80{bottom:343.266667pt;}
.y31{bottom:345.186667pt;}
.ybd{bottom:349.666667pt;}
.y141{bottom:356.066667pt;}
.yf5{bottom:357.186667pt;}
.y7f{bottom:358.786667pt;}
.y30{bottom:360.866667pt;}
.y12e{bottom:365.346667pt;}
.ybc{bottom:365.986667pt;}
.y140{bottom:371.746667pt;}
.yf4{bottom:372.706667pt;}
.y7e{bottom:374.466667pt;}
.y2f{bottom:376.546667pt;}
.y12d{bottom:380.866667pt;}
.ybb{bottom:382.306667pt;}
.y13f{bottom:387.266667pt;}
.yf3{bottom:388.386667pt;}
.y7d{bottom:390.146667pt;}
.y2e{bottom:392.226667pt;}
.y12c{bottom:396.546667pt;}
.yba{bottom:398.626667pt;}
.y13e{bottom:402.946667pt;}
.yf2{bottom:404.066667pt;}
.y7c{bottom:405.666667pt;}
.y2d{bottom:407.586667pt;}
.y12b{bottom:412.226667pt;}
.yb8{bottom:414.946667pt;}
.y13d{bottom:418.626667pt;}
.yf1{bottom:419.586667pt;}
.y7b{bottom:421.346667pt;}
.y2c{bottom:423.106667pt;}
.y12a{bottom:427.906667pt;}
.yb7{bottom:434.146667pt;}
.yf0{bottom:435.266667pt;}
.y7a{bottom:437.026667pt;}
.y2b{bottom:438.786667pt;}
.y129{bottom:443.426667pt;}
.yb6{bottom:449.826667pt;}
.yef{bottom:450.946667pt;}
.y79{bottom:452.546667pt;}
.y2a{bottom:454.306667pt;}
.y128{bottom:459.106667pt;}
.yb5{bottom:465.506667pt;}
.yee{bottom:466.466667pt;}
.y78{bottom:468.226667pt;}
.y29{bottom:469.826667pt;}
.y127{bottom:474.786667pt;}
.yed{bottom:479.746667pt;}
.yb4{bottom:481.026667pt;}
.y77{bottom:483.906667pt;}
.y28{bottom:485.186667pt;}
.y126{bottom:490.306667pt;}
.yec{bottom:496.066667pt;}
.yb3{bottom:496.706667pt;}
.y76{bottom:499.426667pt;}
.y27{bottom:500.546667pt;}
.y125{bottom:503.586667pt;}
.yb2{bottom:512.386667pt;}
.y75{bottom:515.106667pt;}
.y26{bottom:515.906667pt;}
.y124{bottom:519.906667pt;}
.yb1{bottom:528.066667pt;}
.yeb{bottom:528.706667pt;}
.y74{bottom:530.786667pt;}
.y25{bottom:531.106667pt;}
.y123{bottom:536.226667pt;}
.yb0{bottom:543.613333pt;}
.yea{bottom:545.053333pt;}
.y24{bottom:546.493333pt;}
.y122{bottom:552.573333pt;}
.y40{bottom:558.973333pt;}
.yaf{bottom:559.293333pt;}
.ye9{bottom:561.373333pt;}
.y23{bottom:561.853333pt;}
.y73{bottom:562.013333pt;}
.y121{bottom:568.893333pt;}
.yae{bottom:574.973333pt;}
.y22{bottom:577.213333pt;}
.ye8{bottom:577.533333pt;}
.y72{bottom:577.693333pt;}
.y120{bottom:585.213333pt;}
.yad{bottom:590.493333pt;}
.y21{bottom:592.573333pt;}
.y71{bottom:593.373333pt;}
.ye7{bottom:593.853333pt;}
.y11f{bottom:601.373333pt;}
.yac{bottom:606.173333pt;}
.y20{bottom:607.933333pt;}
.y70{bottom:608.893333pt;}
.ye6{bottom:610.173333pt;}
.y11e{bottom:617.693333pt;}
.yab{bottom:621.853333pt;}
.y1f{bottom:623.133333pt;}
.y6f{bottom:624.573333pt;}
.ye5{bottom:629.533333pt;}
.y11d{bottom:634.013333pt;}
.yaa{bottom:637.373333pt;}
.y1e{bottom:638.493333pt;}
.y6e{bottom:640.253333pt;}
.ye4{bottom:645.213333pt;}
.y11c{bottom:650.333333pt;}
.ya9{bottom:653.053333pt;}
.y1d{bottom:653.853333pt;}
.y6d{bottom:655.773333pt;}
.ye3{bottom:660.733333pt;}
.y11b{bottom:666.653333pt;}
.ya8{bottom:668.733333pt;}
.y1c{bottom:671.133333pt;}
.y6c{bottom:671.453333pt;}
.ye2{bottom:676.413333pt;}
.y11a{bottom:682.973333pt;}
.ya7{bottom:684.413333pt;}
.y1b{bottom:686.493333pt;}
.y6b{bottom:687.133333pt;}
.ye1{bottom:692.093333pt;}
.y119{bottom:699.293333pt;}
.ya6{bottom:699.933333pt;}
.y1a{bottom:701.853333pt;}
.y6a{bottom:702.813333pt;}
.ye0{bottom:707.773333pt;}
.y118{bottom:715.453333pt;}
.ya5{bottom:715.613333pt;}
.y19{bottom:717.213333pt;}
.y69{bottom:718.333333pt;}
.ydf{bottom:723.293333pt;}
.ya4{bottom:731.293333pt;}
.y117{bottom:731.773333pt;}
.y18{bottom:732.573333pt;}
.y68{bottom:734.013333pt;}
.yde{bottom:738.973333pt;}
.ya3{bottom:746.813333pt;}
.y17{bottom:747.773333pt;}
.y116{bottom:748.093333pt;}
.y67{bottom:749.693333pt;}
.ydd{bottom:754.653333pt;}
.ya2{bottom:762.493333pt;}
.y16{bottom:763.133333pt;}
.y115{bottom:764.413333pt;}
.y66{bottom:765.213333pt;}
.ydc{bottom:770.173333pt;}
.ya1{bottom:778.213333pt;}
.y15{bottom:778.533333pt;}
.y114{bottom:780.773333pt;}
.y65{bottom:780.933333pt;}
.ydb{bottom:783.493333pt;}
.ya0{bottom:793.733333pt;}
.y14{bottom:793.893333pt;}
.y64{bottom:796.613333pt;}
.y113{bottom:797.093333pt;}
.yda{bottom:799.813333pt;}
.y13{bottom:809.253333pt;}
.y9f{bottom:809.413333pt;}
.y63{bottom:812.133333pt;}
.y112{bottom:813.413333pt;}
.yd9{bottom:816.133333pt;}
.y12{bottom:824.613333pt;}
.y9e{bottom:825.093333pt;}
.y62{bottom:827.813333pt;}
.y111{bottom:829.573333pt;}
.yd8{bottom:832.453333pt;}
.y11{bottom:839.813333pt;}
.y9d{bottom:840.613333pt;}
.y61{bottom:843.493333pt;}
.y110{bottom:845.893333pt;}
.yd7{bottom:848.773333pt;}
.y10{bottom:855.173333pt;}
.y9c{bottom:856.293333pt;}
.y60{bottom:859.173333pt;}
.y10f{bottom:862.213333pt;}
.yd6{bottom:865.093333pt;}
.yf{bottom:870.533333pt;}
.y9b{bottom:871.973333pt;}
.y5f{bottom:874.693333pt;}
.y10e{bottom:878.533333pt;}
.yd5{bottom:881.253333pt;}
.ye{bottom:885.893333pt;}
.y9a{bottom:887.653333pt;}
.y5e{bottom:890.373333pt;}
.y10d{bottom:894.853333pt;}
.yd4{bottom:897.573333pt;}
.yd{bottom:901.093333pt;}
.y99{bottom:903.173333pt;}
.y5d{bottom:906.053333pt;}
.y10c{bottom:911.173333pt;}
.yd3{bottom:913.893333pt;}
.yc{bottom:915.653333pt;}
.y98{bottom:918.853333pt;}
.y5c{bottom:921.573333pt;}
.y10b{bottom:927.493333pt;}
.yd2{bottom:930.213333pt;}
.yb{bottom:932.933333pt;}
.y97{bottom:934.533333pt;}
.y5b{bottom:937.253333pt;}
.y10a{bottom:943.813333pt;}
.yd1{bottom:946.533333pt;}
.y96{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.y5a{bottom:952.933333pt;}
.y109{bottom:959.973333pt;}
.yd0{bottom:962.853333pt;}
.y95{bottom:965.733333pt;}
.y59{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.y108{bottom:976.293333pt;}
.ycf{bottom:979.173333pt;}
.y94{bottom:981.413333pt;}
.y58{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y107{bottom:992.613333pt;}
.yce{bottom:995.333333pt;}
.y93{bottom:996.933333pt;}
.y57{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.ycd{bottom:1011.680000pt;}
.y92{bottom:1012.640000pt;}
.y56{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y91{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y90{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y55{bottom:1064.480000pt;}
.h13{height:15.520000pt;}
.h15{height:15.552000pt;}
.h14{height:15.680000pt;}
.h16{height:15.712000pt;}
.hf{height:17.881875pt;}
.h11{height:27.093750pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.hb{height:37.090625pt;}
.h9{height:37.479688pt;}
.hc{height:38.491250pt;}
.hd{height:40.488438pt;}
.h8{height:40.640625pt;}
.ha{height:44.687500pt;}
.h5{height:44.975625pt;}
.h7{height:49.852500pt;}
.h12{height:52.284375pt;}
.h10{height:54.187500pt;}
.h6{height:58.522500pt;}
.he{height:306.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:47.520000pt;}
.w4{width:52.960000pt;}
.wc{width:182.906667pt;}
.w7{width:183.066667pt;}
.w8{width:191.386667pt;}
.w9{width:192.186667pt;}
.w3{width:197.306667pt;}
.w6{width:256.186667pt;}
.w5{width:257.346667pt;}
.wb{width:262.786667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x29{left:15.514667pt;}
.xf{left:18.234667pt;}
.x2b{left:19.994667pt;}
.x14{left:22.714667pt;}
.x2d{left:23.674667pt;}
.x16{left:26.394667pt;}
.x13{left:42.400000pt;}
.x20{left:62.240000pt;}
.x1e{left:64.800000pt;}
.x1c{left:66.874667pt;}
.x26{left:70.714667pt;}
.x21{left:74.394667pt;}
.x23{left:77.640000pt;}
.x25{left:81.320000pt;}
.x24{left:82.760000pt;}
.x22{left:86.440000pt;}
.x11{left:92.040000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x17{left:99.240000pt;}
.x19{left:101.960000pt;}
.x2e{left:104.680000pt;}
.x3{left:107.871988pt;}
.x1a{left:111.840000pt;}
.x18{left:113.120000pt;}
.xc{left:118.591988pt;}
.xa{left:119.994667pt;}
.x15{left:121.640000pt;}
.x2c{left:124.360000pt;}
.xe{left:130.752000pt;}
.x7{left:140.986655pt;}
.x2f{left:151.386655pt;}
.x6{left:159.226655pt;}
.x2a{left:178.906667pt;}
.x4{left:181.146655pt;}
.x10{left:184.346667pt;}
.xd{left:256.226655pt;}
.x1b{left:262.946655pt;}
.x8{left:286.626655pt;}
.x9{left:304.546655pt;}
.x1d{left:314.466667pt;}
.x28{left:316.066655pt;}
.x27{left:328.386655pt;}
.x5{left:397.026655pt;}
.x12{left:442.493333pt;}
.xb{left:489.693322pt;}
.x1f{left:506.493333pt;}
}




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