
    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_dd0214752441a8ca80748c54.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b78e84779c167b64105e4dab.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_99f535e90f6e8a5598d455f8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_feeaf4f26fcedf2b978d9cbf.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_651318d06fbbcd359b4be854.woff')format("woff");}.ff5{font-family:ff5;line-height:1.042480;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_44b8eff6553b6610cec33c30.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a365410977ae227998fd8a17.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_71020565847c157071a7a515.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_cb762b764d63311b82575351.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_c98db47ee9a528a637ab67e4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5a2ad88b98d046aa5f32dc05.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_f05a9712960d9efb3d6da8a9.woff')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_56454cd1d4fd8aa079ad5b86.woff')format("woff");}.ffd{font-family:ffd;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls11{letter-spacing:-6.240000px;}
.ls7{letter-spacing:-5.256000px;}
.ls18{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.864000px;}
.ls1a{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.160000px;}
.ls13{letter-spacing:3.168000px;}
.ls16{letter-spacing:5.040000px;}
.ls17{letter-spacing:18.000000px;}
.ls12{letter-spacing:28.224000px;}
.lsb{letter-spacing:33.960000px;}
.ls8{letter-spacing:33.984000px;}
.ls19{letter-spacing:38.160000px;}
.ls9{letter-spacing:141.960000px;}
.lsd{letter-spacing:143.976000px;}
.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;}
}
.wsa{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.496000px;}
.ws0{word-spacing:-16.613280px;}
.ws1{word-spacing:-16.506480px;}
.ws3{word-spacing:-16.272000px;}
.ws7{word-spacing:-11.760000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-190.296000px;}
._3{margin-left:-14.112000px;}
._16{margin-left:-8.352000px;}
._18{margin-left:-6.978240px;}
._5{margin-left:-5.688000px;}
._4{margin-left:-4.464000px;}
._1{margin-left:-2.736000px;}
._2{margin-left:-1.152000px;}
._0{width:1.434240px;}
._6{width:2.627520px;}
._f{width:4.284480px;}
._7{width:6.120000px;}
._8{width:7.853760px;}
._10{width:9.366240px;}
._9{width:10.512000px;}
._d{width:12.024000px;}
._c{width:13.032000px;}
._14{width:14.112000px;}
._e{width:15.192000px;}
._15{width:16.200000px;}
._12{width:19.944000px;}
._13{width:21.240000px;}
._17{width:22.968000px;}
._1f{width:24.048000px;}
._a{width:25.560000px;}
._b{width:26.640000px;}
._11{width:28.421760px;}
._1e{width:29.808000px;}
._1c{width:30.960000px;}
._1d{width:32.544000px;}
._2d{width:34.746240px;}
._2c{width:40.013760px;}
._2e{width:41.328000px;}
._19{width:42.816000px;}
._31{width:45.000000px;}
._24{width:47.160000px;}
._32{width:48.312000px;}
._33{width:49.488000px;}
._36{width:52.853760px;}
._43{width:54.624000px;}
._42{width:56.352000px;}
._35{width:58.464000px;}
._34{width:59.544000px;}
._2b{width:63.360000px;}
._22{width:66.960000px;}
._2a{width:68.112000px;}
._29{width:70.056000px;}
._28{width:71.136000px;}
._23{width:73.800000px;}
._2f{width:76.752000px;}
._30{width:77.837760px;}
._27{width:80.429760px;}
._37{width:82.440000px;}
._26{width:85.032000px;}
._25{width:86.328000px;}
._20{width:88.560000px;}
._21{width:96.120000px;}
._41{width:117.720000px;}
._3f{width:122.039520px;}
._3e{width:123.048480px;}
._3d{width:124.416000px;}
._40{width:125.573760px;}
._3c{width:127.667520px;}
._3b{width:128.952000px;}
._3a{width:130.320000px;}
._1b{width:149.184000px;}
._38{width:171.864000px;}
._39{width:179.136000px;}
.fc3{color:rgb(19,19,20);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(31,56,99);}
.fc0{color:rgb(31,56,100);}
.fs2{font-size:30.240000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:1.979850px;}
.y3{bottom:4.320000px;}
.y4{bottom:4.680000px;}
.y2{bottom:9.000000px;}
.y68{bottom:14.220000px;}
.y8d{bottom:14.400000px;}
.y6e{bottom:14.580000px;}
.y74{bottom:14.760000px;}
.ya2{bottom:26.280000px;}
.ya5{bottom:26.640000px;}
.yef{bottom:39.060000px;}
.y1d{bottom:43.380000px;}
.y67{bottom:45.360000px;}
.y8c{bottom:45.390000px;}
.y6d{bottom:45.720000px;}
.y7f{bottom:45.750000px;}
.y5f{bottom:54.180000px;}
.y3a{bottom:57.060000px;}
.ya1{bottom:57.240000px;}
.ya8{bottom:57.630000px;}
.ya4{bottom:57.780000px;}
.ybd{bottom:71.856000px;}
.yf5{bottom:72.036000px;}
.y6c{bottom:76.680000px;}
.y7e{bottom:76.710000px;}
.y7a{bottom:76.854000px;}
.y73{bottom:76.905000px;}
.yd0{bottom:79.776000px;}
.yee{bottom:80.496000px;}
.y75{bottom:80.676000px;}
.y1c{bottom:84.816000px;}
.y99{bottom:90.216000px;}
.y41{bottom:95.616000px;}
.ydd{bottom:98.136000px;}
.y39{bottom:98.496000px;}
.y6a{bottom:107.460000px;}
.y7c{bottom:107.490000px;}
.y79{bottom:107.814000px;}
.y6b{bottom:107.820000px;}
.y7d{bottom:107.850000px;}
.y72{bottom:107.865000px;}
.yb2{bottom:111.096000px;}
.ybc{bottom:113.256000px;}
.yf4{bottom:113.436000px;}
.ycf{bottom:121.176000px;}
.yed{bottom:121.896000px;}
.y1b{bottom:126.216000px;}
.y98{bottom:131.616000px;}
.y40{bottom:137.016000px;}
.y70{bottom:138.645000px;}
.y78{bottom:138.774000px;}
.y71{bottom:139.005000px;}
.ydc{bottom:139.356000px;}
.y38{bottom:139.896000px;}
.yb1{bottom:152.490000px;}
.ybb{bottom:154.650000px;}
.yf3{bottom:154.830000px;}
.yce{bottom:162.570000px;}
.yec{bottom:163.290000px;}
.y1a{bottom:167.610000px;}
.y76{bottom:169.554000px;}
.y77{bottom:169.914000px;}
.y97{bottom:173.010000px;}
.y3f{bottom:177.870000px;}
.y4d{bottom:178.230000px;}
.ydb{bottom:180.750000px;}
.y37{bottom:181.290000px;}
.yb0{bottom:193.890000px;}
.yba{bottom:196.050000px;}
.yf2{bottom:196.230000px;}
.ycd{bottom:203.970000px;}
.yeb{bottom:204.690000px;}
.y19{bottom:209.010000px;}
.y96{bottom:214.410000px;}
.y3e{bottom:219.270000px;}
.y4c{bottom:219.630000px;}
.yda{bottom:222.150000px;}
.y36{bottom:222.690000px;}
.yaf{bottom:235.290000px;}
.yb9{bottom:237.450000px;}
.ycc{bottom:245.370000px;}
.yea{bottom:246.090000px;}
.y18{bottom:250.410000px;}
.yf1{bottom:251.310000px;}
.y95{bottom:255.810000px;}
.y4b{bottom:261.030000px;}
.yd9{bottom:263.550000px;}
.y35{bottom:264.090000px;}
.y6f{bottom:267.690000px;}
.y94{bottom:272.730000px;}
.yae{bottom:276.690000px;}
.yb8{bottom:278.850000px;}
.ycb{bottom:286.770000px;}
.ye9{bottom:287.490000px;}
.y17{bottom:291.810000px;}
.y4a{bottom:302.430000px;}
.y93{bottom:304.590000px;}
.yd8{bottom:304.950000px;}
.y34{bottom:305.490000px;}
.yad{bottom:318.090000px;}
.yb7{bottom:320.250000px;}
.yca{bottom:328.170000px;}
.ye8{bottom:328.890000px;}
.y16{bottom:333.210000px;}
.y92{bottom:336.495000px;}
.y49{bottom:343.875000px;}
.yd7{bottom:346.395000px;}
.ybe{bottom:346.575000px;}
.y33{bottom:346.935000px;}
.yac{bottom:359.535000px;}
.yb6{bottom:361.695000px;}
.y91{bottom:368.175000px;}
.yc9{bottom:369.615000px;}
.ye7{bottom:370.335000px;}
.y15{bottom:374.655000px;}
.y48{bottom:385.275000px;}
.yd6{bottom:387.795000px;}
.y32{bottom:388.335000px;}
.y90{bottom:400.035000px;}
.yab{bottom:400.935000px;}
.yb5{bottom:403.095000px;}
.yc8{bottom:411.015000px;}
.ye6{bottom:411.735000px;}
.y14{bottom:416.055000px;}
.yaa{bottom:417.855000px;}
.y69{bottom:423.795000px;}
.y47{bottom:426.675000px;}
.yd5{bottom:429.195000px;}
.y31{bottom:429.735000px;}
.yb4{bottom:440.175000px;}
.yc7{bottom:452.415000px;}
.ye5{bottom:453.135000px;}
.y13{bottom:457.455000px;}
.y8f{bottom:462.855000px;}
.y46{bottom:468.075000px;}
.yd4{bottom:470.595000px;}
.y60{bottom:470.775000px;}
.y30{bottom:471.135000px;}
.ya9{bottom:492.735000px;}
.yc6{bottom:493.815000px;}
.ye4{bottom:494.535000px;}
.y12{bottom:498.855000px;}
.y64{bottom:509.115000px;}
.y45{bottom:509.475000px;}
.yd3{bottom:511.995000px;}
.y2f{bottom:512.535000px;}
.y8e{bottom:525.675000px;}
.yc5{bottom:535.215000px;}
.ye3{bottom:535.935000px;}
.y11{bottom:540.255000px;}
.y66{bottom:548.715000px;}
.y44{bottom:550.875000px;}
.yd2{bottom:553.395000px;}
.y2e{bottom:553.935000px;}
.ya7{bottom:567.615000px;}
.yc4{bottom:576.615000px;}
.ye2{bottom:577.335000px;}
.y10{bottom:581.655000px;}
.y8b{bottom:588.495000px;}
.yd1{bottom:590.475000px;}
.y43{bottom:591.915000px;}
.y5d{bottom:592.275000px;}
.yf0{bottom:594.975000px;}
.y2d{bottom:595.335000px;}
.yc3{bottom:618.045000px;}
.ye1{bottom:618.765000px;}
.yf{bottom:623.085000px;}
.y5c{bottom:633.705000px;}
.y2c{bottom:636.765000px;}
.ya6{bottom:642.525000px;}
.yc2{bottom:659.445000px;}
.ye0{bottom:660.165000px;}
.ye{bottom:664.485000px;}
.y5b{bottom:675.105000px;}
.y8a{bottom:676.725000px;}
.y2b{bottom:678.165000px;}
.ya3{bottom:686.265000px;}
.ydf{bottom:697.245000px;}
.yc1{bottom:700.845000px;}
.yd{bottom:705.525000px;}
.y5a{bottom:716.505000px;}
.y89{bottom:718.125000px;}
.y2a{bottom:719.565000px;}
.yc0{bottom:742.245000px;}
.yc{bottom:748.905000px;}
.y59{bottom:757.905000px;}
.y88{bottom:759.525000px;}
.y29{bottom:760.965000px;}
.ya0{bottom:761.145000px;}
.ybf{bottom:779.325000px;}
.yb{bottom:791.205000px;}
.y58{bottom:799.305000px;}
.y87{bottom:800.925000px;}
.yb3{bottom:802.005000px;}
.y28{bottom:802.365000px;}
.ya{bottom:835.665000px;}
.y57{bottom:840.705000px;}
.y86{bottom:842.325000px;}
.y65{bottom:843.405000px;}
.y27{bottom:843.765000px;}
.y9f{bottom:873.150000px;}
.y9{bottom:876.930000px;}
.y56{bottom:882.150000px;}
.y85{bottom:883.230000px;}
.y61{bottom:884.850000px;}
.y26{bottom:885.210000px;}
.y9e{bottom:914.550000px;}
.y8{bottom:922.470000px;}
.y55{bottom:923.550000px;}
.y84{bottom:924.990000px;}
.y25{bottom:926.610000px;}
.y9d{bottom:955.950000px;}
.y7{bottom:963.870000px;}
.y63{bottom:964.590000px;}
.y54{bottom:964.950000px;}
.y83{bottom:966.390000px;}
.y42{bottom:967.650000px;}
.y24{bottom:968.010000px;}
.y9c{bottom:997.350000px;}
.y6{bottom:1005.270000px;}
.y53{bottom:1006.350000px;}
.y82{bottom:1007.790000px;}
.y62{bottom:1009.050000px;}
.y23{bottom:1009.410000px;}
.y9b{bottom:1038.750000px;}
.y52{bottom:1047.750000px;}
.y81{bottom:1049.190000px;}
.y3d{bottom:1050.450000px;}
.y22{bottom:1050.810000px;}
.y9a{bottom:1079.790000px;}
.y51{bottom:1089.150000px;}
.y80{bottom:1090.590000px;}
.y21{bottom:1091.850000px;}
.y3c{bottom:1092.210000px;}
.y7b{bottom:1107.690000px;}
.y5e{bottom:1130.190000px;}
.y50{bottom:1130.550000px;}
.y20{bottom:1133.250000px;}
.y3b{bottom:1133.610000px;}
.y4f{bottom:1171.620000px;}
.y1f{bottom:1175.040000px;}
.yde{bottom:1215.900000px;}
.y4e{bottom:1216.080000px;}
.y1e{bottom:1216.440000px;}
.y1{bottom:1238.220000px;}
.h3{height:18.540000px;}
.h5{height:30.077578px;}
.h17{height:30.960000px;}
.h16{height:31.140000px;}
.h1a{height:43.020000px;}
.h10{height:50.800781px;}
.hc{height:54.878906px;}
.hb{height:59.519531px;}
.h15{height:62.100000px;}
.hf{height:62.136000px;}
.h4{height:62.327813px;}
.h2{height:69.086250px;}
.ha{height:71.613281px;}
.hd{height:71.824219px;}
.h8{height:72.562500px;}
.h18{height:73.980000px;}
.h9{height:74.004654px;}
.h1b{height:74.016000px;}
.h19{height:74.160000px;}
.he{height:75.093750px;}
.h6{height:101.601562px;}
.h11{height:124.200000px;}
.h14{height:124.236000px;}
.h7{height:145.125000px;}
.h12{height:155.370000px;}
.h13{height:186.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:57.960000px;}
.w11{width:70.380000px;}
.w14{width:95.760000px;}
.w13{width:95.976000px;}
.wb{width:117.396000px;}
.w6{width:117.756000px;}
.wd{width:122.436000px;}
.w8{width:123.156000px;}
.w12{width:128.736000px;}
.w3{width:129.816000px;}
.wf{width:135.540000px;}
.wa{width:135.900000px;}
.we{width:161.850000px;}
.w9{width:162.570000px;}
.w16{width:163.650000px;}
.wc{width:192.270000px;}
.w7{width:193.170000px;}
.w15{width:200.550000px;}
.w17{width:200.730000px;}
.w18{width:216.570000px;}
.w10{width:281.730000px;}
.w4{width:550.545000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.x5{left:9.540000px;}
.x3{left:14.256000px;}
.x7{left:16.200000px;}
.x1{left:53.999987px;}
.x25{left:71.639987px;}
.x2d{left:75.239987px;}
.x2{left:76.680000px;}
.x11{left:79.559987px;}
.x2c{left:80.819987px;}
.x28{left:84.059987px;}
.xe{left:88.199987px;}
.xa{left:90.755987px;}
.x8{left:100.835987px;}
.xc{left:105.335987px;}
.x12{left:106.595987px;}
.x10{left:108.035987px;}
.x24{left:113.255987px;}
.x9{left:114.515987px;}
.x13{left:126.395987px;}
.x14{left:133.595987px;}
.xd{left:140.435987px;}
.x21{left:160.589987px;}
.x15{left:182.009987px;}
.x17{left:198.030000px;}
.x4{left:207.210000px;}
.x1e{left:255.990000px;}
.x29{left:292.574987px;}
.x26{left:345.314987px;}
.xb{left:349.454987px;}
.x18{left:391.215000px;}
.x2b{left:415.334987px;}
.x1f{left:420.375000px;}
.xf{left:444.314987px;}
.x1b{left:462.315000px;}
.x19{left:514.365000px;}
.x1c{left:591.945000px;}
.x20{left:621.825000px;}
.x1a{left:676.950000px;}
.x1d{left:688.650000px;}
.x6{left:758.490000px;}
.x22{left:767.129987px;}
.x23{left:775.049987px;}
.x27{left:788.549987px;}
.x2a{left:799.709987px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls11{letter-spacing:-5.546667pt;}
.ls7{letter-spacing:-4.672000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.920000pt;}
.ls13{letter-spacing:2.816000pt;}
.ls16{letter-spacing:4.480000pt;}
.ls17{letter-spacing:16.000000pt;}
.ls12{letter-spacing:25.088000pt;}
.lsb{letter-spacing:30.186667pt;}
.ls8{letter-spacing:30.208000pt;}
.ls19{letter-spacing:33.920000pt;}
.ls9{letter-spacing:126.186667pt;}
.lsd{letter-spacing:127.978667pt;}
.wsa{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.552000pt;}
.ws0{word-spacing:-14.767360pt;}
.ws1{word-spacing:-14.672427pt;}
.ws3{word-spacing:-14.464000pt;}
.ws7{word-spacing:-10.453333pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-169.152000pt;}
._3{margin-left:-12.544000pt;}
._16{margin-left:-7.424000pt;}
._18{margin-left:-6.202880pt;}
._5{margin-left:-5.056000pt;}
._4{margin-left:-3.968000pt;}
._1{margin-left:-2.432000pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.274880pt;}
._6{width:2.335573pt;}
._f{width:3.808427pt;}
._7{width:5.440000pt;}
._8{width:6.981120pt;}
._10{width:8.325547pt;}
._9{width:9.344000pt;}
._d{width:10.688000pt;}
._c{width:11.584000pt;}
._14{width:12.544000pt;}
._e{width:13.504000pt;}
._15{width:14.400000pt;}
._12{width:17.728000pt;}
._13{width:18.880000pt;}
._17{width:20.416000pt;}
._1f{width:21.376000pt;}
._a{width:22.720000pt;}
._b{width:23.680000pt;}
._11{width:25.263787pt;}
._1e{width:26.496000pt;}
._1c{width:27.520000pt;}
._1d{width:28.928000pt;}
._2d{width:30.885547pt;}
._2c{width:35.567787pt;}
._2e{width:36.736000pt;}
._19{width:38.058667pt;}
._31{width:40.000000pt;}
._24{width:41.920000pt;}
._32{width:42.944000pt;}
._33{width:43.989333pt;}
._36{width:46.981120pt;}
._43{width:48.554667pt;}
._42{width:50.090667pt;}
._35{width:51.968000pt;}
._34{width:52.928000pt;}
._2b{width:56.320000pt;}
._22{width:59.520000pt;}
._2a{width:60.544000pt;}
._29{width:62.272000pt;}
._28{width:63.232000pt;}
._23{width:65.600000pt;}
._2f{width:68.224000pt;}
._30{width:69.189120pt;}
._27{width:71.493120pt;}
._37{width:73.280000pt;}
._26{width:75.584000pt;}
._25{width:76.736000pt;}
._20{width:78.720000pt;}
._21{width:85.440000pt;}
._41{width:104.640000pt;}
._3f{width:108.479573pt;}
._3e{width:109.376427pt;}
._3d{width:110.592000pt;}
._40{width:111.621120pt;}
._3c{width:113.482240pt;}
._3b{width:114.624000pt;}
._3a{width:115.840000pt;}
._1b{width:132.608000pt;}
._38{width:152.768000pt;}
._39{width:159.232000pt;}
.fs2{font-size:26.880000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:1.759867pt;}
.y3{bottom:3.840000pt;}
.y4{bottom:4.160000pt;}
.y2{bottom:8.000000pt;}
.y68{bottom:12.640000pt;}
.y8d{bottom:12.800000pt;}
.y6e{bottom:12.960000pt;}
.y74{bottom:13.120000pt;}
.ya2{bottom:23.360000pt;}
.ya5{bottom:23.680000pt;}
.yef{bottom:34.720000pt;}
.y1d{bottom:38.560000pt;}
.y67{bottom:40.320000pt;}
.y8c{bottom:40.346667pt;}
.y6d{bottom:40.640000pt;}
.y7f{bottom:40.666667pt;}
.y5f{bottom:48.160000pt;}
.y3a{bottom:50.720000pt;}
.ya1{bottom:50.880000pt;}
.ya8{bottom:51.226667pt;}
.ya4{bottom:51.360000pt;}
.ybd{bottom:63.872000pt;}
.yf5{bottom:64.032000pt;}
.y6c{bottom:68.160000pt;}
.y7e{bottom:68.186667pt;}
.y7a{bottom:68.314667pt;}
.y73{bottom:68.360000pt;}
.yd0{bottom:70.912000pt;}
.yee{bottom:71.552000pt;}
.y75{bottom:71.712000pt;}
.y1c{bottom:75.392000pt;}
.y99{bottom:80.192000pt;}
.y41{bottom:84.992000pt;}
.ydd{bottom:87.232000pt;}
.y39{bottom:87.552000pt;}
.y6a{bottom:95.520000pt;}
.y7c{bottom:95.546667pt;}
.y79{bottom:95.834667pt;}
.y6b{bottom:95.840000pt;}
.y7d{bottom:95.866667pt;}
.y72{bottom:95.880000pt;}
.yb2{bottom:98.752000pt;}
.ybc{bottom:100.672000pt;}
.yf4{bottom:100.832000pt;}
.ycf{bottom:107.712000pt;}
.yed{bottom:108.352000pt;}
.y1b{bottom:112.192000pt;}
.y98{bottom:116.992000pt;}
.y40{bottom:121.792000pt;}
.y70{bottom:123.240000pt;}
.y78{bottom:123.354667pt;}
.y71{bottom:123.560000pt;}
.ydc{bottom:123.872000pt;}
.y38{bottom:124.352000pt;}
.yb1{bottom:135.546667pt;}
.ybb{bottom:137.466667pt;}
.yf3{bottom:137.626667pt;}
.yce{bottom:144.506667pt;}
.yec{bottom:145.146667pt;}
.y1a{bottom:148.986667pt;}
.y76{bottom:150.714667pt;}
.y77{bottom:151.034667pt;}
.y97{bottom:153.786667pt;}
.y3f{bottom:158.106667pt;}
.y4d{bottom:158.426667pt;}
.ydb{bottom:160.666667pt;}
.y37{bottom:161.146667pt;}
.yb0{bottom:172.346667pt;}
.yba{bottom:174.266667pt;}
.yf2{bottom:174.426667pt;}
.ycd{bottom:181.306667pt;}
.yeb{bottom:181.946667pt;}
.y19{bottom:185.786667pt;}
.y96{bottom:190.586667pt;}
.y3e{bottom:194.906667pt;}
.y4c{bottom:195.226667pt;}
.yda{bottom:197.466667pt;}
.y36{bottom:197.946667pt;}
.yaf{bottom:209.146667pt;}
.yb9{bottom:211.066667pt;}
.ycc{bottom:218.106667pt;}
.yea{bottom:218.746667pt;}
.y18{bottom:222.586667pt;}
.yf1{bottom:223.386667pt;}
.y95{bottom:227.386667pt;}
.y4b{bottom:232.026667pt;}
.yd9{bottom:234.266667pt;}
.y35{bottom:234.746667pt;}
.y6f{bottom:237.946667pt;}
.y94{bottom:242.426667pt;}
.yae{bottom:245.946667pt;}
.yb8{bottom:247.866667pt;}
.ycb{bottom:254.906667pt;}
.ye9{bottom:255.546667pt;}
.y17{bottom:259.386667pt;}
.y4a{bottom:268.826667pt;}
.y93{bottom:270.746667pt;}
.yd8{bottom:271.066667pt;}
.y34{bottom:271.546667pt;}
.yad{bottom:282.746667pt;}
.yb7{bottom:284.666667pt;}
.yca{bottom:291.706667pt;}
.ye8{bottom:292.346667pt;}
.y16{bottom:296.186667pt;}
.y92{bottom:299.106667pt;}
.y49{bottom:305.666667pt;}
.yd7{bottom:307.906667pt;}
.ybe{bottom:308.066667pt;}
.y33{bottom:308.386667pt;}
.yac{bottom:319.586667pt;}
.yb6{bottom:321.506667pt;}
.y91{bottom:327.266667pt;}
.yc9{bottom:328.546667pt;}
.ye7{bottom:329.186667pt;}
.y15{bottom:333.026667pt;}
.y48{bottom:342.466667pt;}
.yd6{bottom:344.706667pt;}
.y32{bottom:345.186667pt;}
.y90{bottom:355.586667pt;}
.yab{bottom:356.386667pt;}
.yb5{bottom:358.306667pt;}
.yc8{bottom:365.346667pt;}
.ye6{bottom:365.986667pt;}
.y14{bottom:369.826667pt;}
.yaa{bottom:371.426667pt;}
.y69{bottom:376.706667pt;}
.y47{bottom:379.266667pt;}
.yd5{bottom:381.506667pt;}
.y31{bottom:381.986667pt;}
.yb4{bottom:391.266667pt;}
.yc7{bottom:402.146667pt;}
.ye5{bottom:402.786667pt;}
.y13{bottom:406.626667pt;}
.y8f{bottom:411.426667pt;}
.y46{bottom:416.066667pt;}
.yd4{bottom:418.306667pt;}
.y60{bottom:418.466667pt;}
.y30{bottom:418.786667pt;}
.ya9{bottom:437.986667pt;}
.yc6{bottom:438.946667pt;}
.ye4{bottom:439.586667pt;}
.y12{bottom:443.426667pt;}
.y64{bottom:452.546667pt;}
.y45{bottom:452.866667pt;}
.yd3{bottom:455.106667pt;}
.y2f{bottom:455.586667pt;}
.y8e{bottom:467.266667pt;}
.yc5{bottom:475.746667pt;}
.ye3{bottom:476.386667pt;}
.y11{bottom:480.226667pt;}
.y66{bottom:487.746667pt;}
.y44{bottom:489.666667pt;}
.yd2{bottom:491.906667pt;}
.y2e{bottom:492.386667pt;}
.ya7{bottom:504.546667pt;}
.yc4{bottom:512.546667pt;}
.ye2{bottom:513.186667pt;}
.y10{bottom:517.026667pt;}
.y8b{bottom:523.106667pt;}
.yd1{bottom:524.866667pt;}
.y43{bottom:526.146667pt;}
.y5d{bottom:526.466667pt;}
.yf0{bottom:528.866667pt;}
.y2d{bottom:529.186667pt;}
.yc3{bottom:549.373333pt;}
.ye1{bottom:550.013333pt;}
.yf{bottom:553.853333pt;}
.y5c{bottom:563.293333pt;}
.y2c{bottom:566.013333pt;}
.ya6{bottom:571.133333pt;}
.yc2{bottom:586.173333pt;}
.ye0{bottom:586.813333pt;}
.ye{bottom:590.653333pt;}
.y5b{bottom:600.093333pt;}
.y8a{bottom:601.533333pt;}
.y2b{bottom:602.813333pt;}
.ya3{bottom:610.013333pt;}
.ydf{bottom:619.773333pt;}
.yc1{bottom:622.973333pt;}
.yd{bottom:627.133333pt;}
.y5a{bottom:636.893333pt;}
.y89{bottom:638.333333pt;}
.y2a{bottom:639.613333pt;}
.yc0{bottom:659.773333pt;}
.yc{bottom:665.693333pt;}
.y59{bottom:673.693333pt;}
.y88{bottom:675.133333pt;}
.y29{bottom:676.413333pt;}
.ya0{bottom:676.573333pt;}
.ybf{bottom:692.733333pt;}
.yb{bottom:703.293333pt;}
.y58{bottom:710.493333pt;}
.y87{bottom:711.933333pt;}
.yb3{bottom:712.893333pt;}
.y28{bottom:713.213333pt;}
.ya{bottom:742.813333pt;}
.y57{bottom:747.293333pt;}
.y86{bottom:748.733333pt;}
.y65{bottom:749.693333pt;}
.y27{bottom:750.013333pt;}
.y9f{bottom:776.133333pt;}
.y9{bottom:779.493333pt;}
.y56{bottom:784.133333pt;}
.y85{bottom:785.093333pt;}
.y61{bottom:786.533333pt;}
.y26{bottom:786.853333pt;}
.y9e{bottom:812.933333pt;}
.y8{bottom:819.973333pt;}
.y55{bottom:820.933333pt;}
.y84{bottom:822.213333pt;}
.y25{bottom:823.653333pt;}
.y9d{bottom:849.733333pt;}
.y7{bottom:856.773333pt;}
.y63{bottom:857.413333pt;}
.y54{bottom:857.733333pt;}
.y83{bottom:859.013333pt;}
.y42{bottom:860.133333pt;}
.y24{bottom:860.453333pt;}
.y9c{bottom:886.533333pt;}
.y6{bottom:893.573333pt;}
.y53{bottom:894.533333pt;}
.y82{bottom:895.813333pt;}
.y62{bottom:896.933333pt;}
.y23{bottom:897.253333pt;}
.y9b{bottom:923.333333pt;}
.y52{bottom:931.333333pt;}
.y81{bottom:932.613333pt;}
.y3d{bottom:933.733333pt;}
.y22{bottom:934.053333pt;}
.y9a{bottom:959.813333pt;}
.y51{bottom:968.133333pt;}
.y80{bottom:969.413333pt;}
.y21{bottom:970.533333pt;}
.y3c{bottom:970.853333pt;}
.y7b{bottom:984.613333pt;}
.y5e{bottom:1004.613333pt;}
.y50{bottom:1004.933333pt;}
.y20{bottom:1007.333333pt;}
.y3b{bottom:1007.653333pt;}
.y4f{bottom:1041.440000pt;}
.y1f{bottom:1044.480000pt;}
.yde{bottom:1080.800000pt;}
.y4e{bottom:1080.960000pt;}
.y1e{bottom:1081.280000pt;}
.y1{bottom:1100.640000pt;}
.h3{height:16.480000pt;}
.h5{height:26.735625pt;}
.h17{height:27.520000pt;}
.h16{height:27.680000pt;}
.h1a{height:38.240000pt;}
.h10{height:45.156250pt;}
.hc{height:48.781250pt;}
.hb{height:52.906250pt;}
.h15{height:55.200000pt;}
.hf{height:55.232000pt;}
.h4{height:55.402500pt;}
.h2{height:61.410000pt;}
.ha{height:63.656250pt;}
.hd{height:63.843750pt;}
.h8{height:64.500000pt;}
.h18{height:65.760000pt;}
.h9{height:65.781915pt;}
.h1b{height:65.792000pt;}
.h19{height:65.920000pt;}
.he{height:66.750000pt;}
.h6{height:90.312500pt;}
.h11{height:110.400000pt;}
.h14{height:110.432000pt;}
.h7{height:129.000000pt;}
.h12{height:138.106667pt;}
.h13{height:165.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:51.520000pt;}
.w11{width:62.560000pt;}
.w14{width:85.120000pt;}
.w13{width:85.312000pt;}
.wb{width:104.352000pt;}
.w6{width:104.672000pt;}
.wd{width:108.832000pt;}
.w8{width:109.472000pt;}
.w12{width:114.432000pt;}
.w3{width:115.392000pt;}
.wf{width:120.480000pt;}
.wa{width:120.800000pt;}
.we{width:143.866667pt;}
.w9{width:144.506667pt;}
.w16{width:145.466667pt;}
.wc{width:170.906667pt;}
.w7{width:171.706667pt;}
.w15{width:178.266667pt;}
.w17{width:178.426667pt;}
.w18{width:192.506667pt;}
.w10{width:250.426667pt;}
.w4{width:489.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.x5{left:8.480000pt;}
.x3{left:12.672000pt;}
.x7{left:14.400000pt;}
.x1{left:47.999988pt;}
.x25{left:63.679988pt;}
.x2d{left:66.879988pt;}
.x2{left:68.160000pt;}
.x11{left:70.719988pt;}
.x2c{left:71.839988pt;}
.x28{left:74.719988pt;}
.xe{left:78.399988pt;}
.xa{left:80.671988pt;}
.x8{left:89.631988pt;}
.xc{left:93.631988pt;}
.x12{left:94.751988pt;}
.x10{left:96.031988pt;}
.x24{left:100.671988pt;}
.x9{left:101.791988pt;}
.x13{left:112.351988pt;}
.x14{left:118.751988pt;}
.xd{left:124.831988pt;}
.x21{left:142.746655pt;}
.x15{left:161.786655pt;}
.x17{left:176.026667pt;}
.x4{left:184.186667pt;}
.x1e{left:227.546667pt;}
.x29{left:260.066655pt;}
.x26{left:306.946655pt;}
.xb{left:310.626655pt;}
.x18{left:347.746667pt;}
.x2b{left:369.186655pt;}
.x1f{left:373.666667pt;}
.xf{left:394.946655pt;}
.x1b{left:410.946667pt;}
.x19{left:457.213333pt;}
.x1c{left:526.173333pt;}
.x20{left:552.733333pt;}
.x1a{left:601.733333pt;}
.x1d{left:612.133333pt;}
.x6{left:674.213333pt;}
.x22{left:681.893322pt;}
.x23{left:688.933322pt;}
.x27{left:700.933322pt;}
.x2a{left:710.853322pt;}
}




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