
    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_7fcbf47a165e1363e352b534.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_0a9efb061275b70e710f72f4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_1095cf172da329721c5aec2e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_56efb82c9684a6d9e4a86e0e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_6feadd5b4ee941d7fa10b4cb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_b5342ce6c99c888794affc3e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_a58eebd1a4de7c703aec3818.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_b3dccae993a96d0b60eb9bc3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_8db9da7545d992eae76a9162.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_ee378185f575bfa348adc7c2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1203cd03e733005e094798fc.woff')format("woff");}.fff{font-family:fff;line-height:0.933594;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:ff10;src:url('chunks/assets/font_4df3ebfe13447ec73d1001d9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d7cba4e0af553144e8b32f8f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls8{letter-spacing:-2.724000px;}
.ls9{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.780000px;}
.ls7{letter-spacing:-0.378000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.690000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls10{letter-spacing:1.740000px;}
.ls3{letter-spacing:1.966500px;}
.ls2{letter-spacing:2.034000px;}
.lsd{letter-spacing:2.164500px;}
.ls4{letter-spacing:2.250000px;}
.lse{letter-spacing:3.990000px;}
.ls5{letter-spacing:4.779000px;}
.lsf{letter-spacing:15.387000px;}
.lsc{letter-spacing:46.887000px;}
.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;}
}
.ws5{word-spacing:-16.875000px;}
.ws8{word-spacing:-16.789500px;}
.ws9{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws4{word-spacing:-14.625000px;}
.ws6{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-11.205300px;}
._a{margin-left:-10.091100px;}
._c{margin-left:-8.131500px;}
._b{margin-left:-7.041450px;}
._9{margin-left:-5.950050px;}
._2{margin-left:-4.104000px;}
._3{margin-left:-2.358000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._5{width:3.006000px;}
._6{width:4.566000px;}
._4{width:5.832000px;}
._11{width:6.962100px;}
._f{width:8.237400px;}
._7{width:10.032000px;}
._16{width:11.722950px;}
._d{width:12.914550px;}
._10{width:16.290900px;}
._e{width:17.557500px;}
._17{width:20.487600px;}
._14{width:22.150500px;}
._18{width:24.820500px;}
._12{width:26.244000px;}
._13{width:30.087600px;}
._15{width:31.276500px;}
._1b{width:35.028000px;}
._1d{width:39.169500px;}
._1a{width:40.252500px;}
._1c{width:43.353000px;}
._19{width:66.493500px;}
._1e{width:224.358000px;}
._1f{width:722.658000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.yd2{bottom:3.390000px;}
.yc3{bottom:3.412500px;}
.ya6{bottom:3.420000px;}
.y17{bottom:4.500000px;}
.yb2{bottom:4.515000px;}
.y97{bottom:4.545000px;}
.ya4{bottom:7.875000px;}
.yab{bottom:7.920000px;}
.ya9{bottom:9.000000px;}
.yad{bottom:9.015000px;}
.ya7{bottom:9.045000px;}
.y48{bottom:10.125000px;}
.ye{bottom:11.280000px;}
.y19{bottom:12.375000px;}
.yd0{bottom:12.390000px;}
.yd8{bottom:12.405000px;}
.y98{bottom:12.420000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.912500px;}
.y2{bottom:19.162500px;}
.y93{bottom:20.250000px;}
.y45{bottom:21.375000px;}
.yd1{bottom:21.390000px;}
.yd7{bottom:21.405000px;}
.y96{bottom:21.420000px;}
.y47{bottom:24.750000px;}
.y16{bottom:25.905000px;}
.yb{bottom:30.405000px;}
.y44{bottom:38.250000px;}
.y5{bottom:38.287500px;}
.y15{bottom:42.780000px;}
.ya{bottom:46.155000px;}
.y43{bottom:55.155000px;}
.y14{bottom:60.825000px;}
.y1{bottom:61.912500px;}
.y42{bottom:73.170000px;}
.y9{bottom:73.200000px;}
.y13{bottom:78.825000px;}
.y41{bottom:90.075000px;}
.y8{bottom:93.450000px;}
.y12{bottom:97.980000px;}
.y40{bottom:106.950000px;}
.y7{bottom:110.355000px;}
.y91{bottom:114.825000px;}
.y57{bottom:117.075000px;}
.y11{bottom:123.855000px;}
.y3f{bottom:124.980000px;}
.y90{bottom:131.737500px;}
.y56{bottom:133.987500px;}
.yc2{bottom:139.612500px;}
.y3e{bottom:141.855000px;}
.y10{bottom:148.650000px;}
.y8f{bottom:149.737500px;}
.y55{bottom:151.995000px;}
.y3d{bottom:158.730000px;}
.yc1{bottom:163.275000px;}
.y8e{bottom:166.650000px;}
.y2b{bottom:167.775000px;}
.y54{bottom:168.900000px;}
.y3c{bottom:176.775000px;}
.y2a{bottom:182.400000px;}
.y8d{bottom:183.525000px;}
.y53{bottom:185.775000px;}
.y3b{bottom:193.650000px;}
.y29{bottom:201.525000px;}
.y8c{bottom:201.570000px;}
.y52{bottom:203.820000px;}
.yc0{bottom:206.070000px;}
.y3a{bottom:210.570000px;}
.y28{bottom:218.445000px;}
.y51{bottom:220.695000px;}
.ybf{bottom:224.070000px;}
.y39{bottom:228.570000px;}
.y27{bottom:235.320000px;}
.y50{bottom:237.570000px;}
.ybe{bottom:240.945000px;}
.y38{bottom:245.445000px;}
.y26{bottom:253.350000px;}
.y4f{bottom:255.600000px;}
.ybd{bottom:257.850000px;}
.y37{bottom:262.350000px;}
.y25{bottom:270.225000px;}
.y4e{bottom:272.475000px;}
.ybc{bottom:275.850000px;}
.y36{bottom:280.350000px;}
.y8b{bottom:287.130000px;}
.y24{bottom:288.225000px;}
.y4d{bottom:289.380000px;}
.ybb{bottom:292.755000px;}
.y35{bottom:297.255000px;}
.y23{bottom:305.130000px;}
.y8a{bottom:305.145000px;}
.y4c{bottom:307.380000px;}
.yba{bottom:309.630000px;}
.y34{bottom:314.130000px;}
.y89{bottom:322.020000px;}
.y22{bottom:323.145000px;}
.y4b{bottom:324.255000px;}
.yb9{bottom:327.675000px;}
.y33{bottom:332.130000px;}
.y88{bottom:338.925000px;}
.y21{bottom:340.050000px;}
.y4a{bottom:341.175000px;}
.yb8{bottom:344.550000px;}
.y32{bottom:349.050000px;}
.y20{bottom:356.925000px;}
.y49{bottom:359.175000px;}
.yb7{bottom:361.425000px;}
.y31{bottom:365.925000px;}
.y46{bottom:373.830000px;}
.y1f{bottom:374.925000px;}
.yed{bottom:376.095000px;}
.yb6{bottom:379.470000px;}
.y30{bottom:383.955000px;}
.y87{bottom:390.705000px;}
.y1e{bottom:391.830000px;}
.yec{bottom:392.970000px;}
.yb5{bottom:396.345000px;}
.y2f{bottom:400.830000px;}
.y86{bottom:408.705000px;}
.y1d{bottom:409.830000px;}
.y1a{bottom:409.875000px;}
.yeb{bottom:411.000000px;}
.yb4{bottom:413.250000px;}
.y2e{bottom:417.750000px;}
.y85{bottom:425.625000px;}
.yea{bottom:427.875000px;}
.yb3{bottom:432.375000px;}
.y2d{bottom:435.750000px;}
.y1c{bottom:436.875000px;}
.y84{bottom:442.500000px;}
.ye9{bottom:444.750000px;}
.y2c{bottom:452.625000px;}
.y1b{bottom:454.875000px;}
.yb1{bottom:454.905000px;}
.y83{bottom:460.545000px;}
.ye8{bottom:462.795000px;}
.y82{bottom:477.420000px;}
.yb0{bottom:478.530000px;}
.ye7{bottom:479.670000px;}
.y81{bottom:494.325000px;}
.ye6{bottom:496.575000px;}
.yaf{bottom:502.200000px;}
.y80{bottom:512.325000px;}
.ye5{bottom:515.700000px;}
.yae{bottom:524.700000px;}
.y7f{bottom:529.200000px;}
.ye4{bottom:538.230000px;}
.y7e{bottom:546.120000px;}
.yac{bottom:548.355000px;}
.ye3{bottom:561.855000px;}
.y7d{bottom:564.120000px;}
.yaa{bottom:571.980000px;}
.y7c{bottom:581.025000px;}
.ye2{bottom:585.525000px;}
.ya8{bottom:594.525000px;}
.y7b{bottom:597.900000px;}
.ye1{bottom:608.025000px;}
.y7a{bottom:615.900000px;}
.ya5{bottom:618.150000px;}
.y79{bottom:632.820000px;}
.ye0{bottom:633.945000px;}
.ya3{bottom:641.820000px;}
.y78{bottom:649.695000px;}
.ydf{bottom:651.945000px;}
.ya2{bottom:664.350000px;}
.y77{bottom:667.725000px;}
.yde{bottom:668.850000px;}
.y76{bottom:684.600000px;}
.ydd{bottom:685.725000px;}
.yf2{bottom:686.850000px;}
.ya1{bottom:690.225000px;}
.y75{bottom:701.475000px;}
.ydc{bottom:703.755000px;}
.ya0{bottom:708.255000px;}
.y74{bottom:719.520000px;}
.ydb{bottom:720.630000px;}
.yf1{bottom:724.005000px;}
.y9f{bottom:725.130000px;}
.y73{bottom:736.395000px;}
.yda{bottom:737.505000px;}
.y9e{bottom:742.005000px;}
.y72{bottom:753.300000px;}
.yd9{bottom:755.550000px;}
.y9d{bottom:760.050000px;}
.yf0{bottom:761.175000px;}
.y71{bottom:771.300000px;}
.yd6{bottom:773.550000px;}
.y9c{bottom:776.925000px;}
.y70{bottom:788.205000px;}
.y9b{bottom:794.955000px;}
.yef{bottom:799.455000px;}
.y6f{bottom:805.080000px;}
.yd5{bottom:814.080000px;}
.y9a{bottom:818.580000px;}
.y6e{bottom:823.080000px;}
.yee{bottom:836.625000px;}
.yd4{bottom:837.750000px;}
.y6d{bottom:840.000000px;}
.y99{bottom:842.250000px;}
.y6c{bottom:856.875000px;}
.yd3{bottom:860.250000px;}
.y95{bottom:864.750000px;}
.y6b{bottom:874.920000px;}
.y18{bottom:876.045000px;}
.ycf{bottom:883.905000px;}
.y6a{bottom:891.795000px;}
.yf{bottom:905.295000px;}
.y69{bottom:908.670000px;}
.y68{bottom:926.700000px;}
.y94{bottom:928.950000px;}
.y67{bottom:943.575000px;}
.yce{bottom:944.700000px;}
.y92{bottom:952.620000px;}
.y66{bottom:960.495000px;}
.ycd{bottom:961.620000px;}
.y65{bottom:978.495000px;}
.y64{bottom:995.400000px;}
.ycc{bottom:996.525000px;}
.y63{bottom:1012.275000px;}
.ycb{bottom:1013.400000px;}
.y62{bottom:1030.275000px;}
.y61{bottom:1047.195000px;}
.yca{bottom:1048.320000px;}
.y60{bottom:1064.070000px;}
.yc9{bottom:1065.195000px;}
.yd{bottom:1068.570000px;}
.y5f{bottom:1082.100000px;}
.yc8{bottom:1083.225000px;}
.y6{bottom:1094.475000px;}
.y5e{bottom:1098.975000px;}
.yc7{bottom:1106.850000px;}
.y5d{bottom:1115.850000px;}
.yc6{bottom:1130.505000px;}
.y5c{bottom:1133.880000px;}
.y5b{bottom:1150.755000px;}
.yc5{bottom:1153.005000px;}
.y5a{bottom:1167.675000px;}
.yc4{bottom:1176.675000px;}
.y59{bottom:1185.675000px;}
.y58{bottom:1202.580000px;}
.h1e{height:16.875000px;}
.h21{height:16.912500px;}
.h22{height:18.000000px;}
.h1f{height:18.022500px;}
.h23{height:18.037500px;}
.hb{height:25.912500px;}
.h12{height:29.250000px;}
.h2{height:32.662500px;}
.h1d{height:33.735000px;}
.h24{height:34.875000px;}
.h20{height:34.912500px;}
.h1a{height:36.037500px;}
.h8{height:37.125000px;}
.h18{height:39.832031px;}
.h1b{height:41.275635px;}
.h17{height:41.389893px;}
.h19{height:41.989746px;}
.h1c{height:42.589600px;}
.hd{height:43.075195px;}
.h11{height:43.453125px;}
.ha{height:43.875000px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:163.275000px;}
.h14{height:466.155000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.wd{width:49.575000px;}
.w11{width:50.700000px;}
.w2{width:73.237500px;}
.w16{width:77.737500px;}
.we{width:94.612500px;}
.w1d{width:94.650000px;}
.w12{width:96.862500px;}
.w17{width:131.775000px;}
.w4{width:152.055000px;}
.w9{width:158.805000px;}
.wa{width:165.600000px;}
.wc{width:166.725000px;}
.wb{width:170.100000px;}
.w18{width:175.680000px;}
.w1a{width:175.725000px;}
.w15{width:176.850000px;}
.w13{width:177.975000px;}
.w19{width:179.100000px;}
.w14{width:181.380000px;}
.wf{width:187.005000px;}
.w10{width:190.350000px;}
.w7{width:224.145000px;}
.w1b{width:234.300000px;}
.w1c{width:388.620000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:1.125000px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x10{left:12.405000px;}
.xc{left:68.700000px;}
.x1{left:81.112500px;}
.x13{left:84.487500px;}
.x5{left:97.987500px;}
.x11{left:108.149987px;}
.x2a{left:135.187487px;}
.x1a{left:183.600000px;}
.x1f{left:184.725000px;}
.xd{left:211.762500px;}
.xe{left:214.012500px;}
.x27{left:218.519987px;}
.x24{left:219.675000px;}
.x12{left:224.174987px;}
.x6{left:233.175000px;}
.x15{left:247.800000px;}
.x23{left:269.219987px;}
.x9{left:273.705000px;}
.x1e{left:283.874987px;}
.x19{left:290.624987px;}
.xf{left:305.250000px;}
.x28{left:322.170000px;}
.x7{left:328.920000px;}
.x8{left:348.075000px;}
.xb{left:364.957500px;}
.x20{left:366.075000px;}
.x1b{left:373.995000px;}
.x25{left:398.775000px;}
.x16{left:416.775000px;}
.xa{left:437.055000px;}
.x21{left:550.845000px;}
.x1c{left:568.845000px;}
.x26{left:581.250000px;}
.x17{left:590.250000px;}
.x29{left:715.275000px;}
.x22{left:732.195000px;}
.x3{left:740.070000px;}
.x1d{left:759.225000px;}
.x18{left:760.350000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls8{letter-spacing:-2.421333pt;}
.ls9{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.693333pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.613333pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls10{letter-spacing:1.546667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls2{letter-spacing:1.808000pt;}
.lsd{letter-spacing:1.924000pt;}
.ls4{letter-spacing:2.000000pt;}
.lse{letter-spacing:3.546667pt;}
.ls5{letter-spacing:4.248000pt;}
.lsf{letter-spacing:13.677333pt;}
.lsc{letter-spacing:41.677333pt;}
.ws5{word-spacing:-15.000000pt;}
.ws8{word-spacing:-14.924000pt;}
.ws9{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws4{word-spacing:-13.000000pt;}
.ws6{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-9.960267pt;}
._a{margin-left:-8.969867pt;}
._c{margin-left:-7.228000pt;}
._b{margin-left:-6.259067pt;}
._9{margin-left:-5.288933pt;}
._2{margin-left:-3.648000pt;}
._3{margin-left:-2.096000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._5{width:2.672000pt;}
._6{width:4.058667pt;}
._4{width:5.184000pt;}
._11{width:6.188533pt;}
._f{width:7.322133pt;}
._7{width:8.917333pt;}
._16{width:10.420400pt;}
._d{width:11.479600pt;}
._10{width:14.480800pt;}
._e{width:15.606667pt;}
._17{width:18.211200pt;}
._14{width:19.689333pt;}
._18{width:22.062667pt;}
._12{width:23.328000pt;}
._13{width:26.744533pt;}
._15{width:27.801333pt;}
._1b{width:31.136000pt;}
._1d{width:34.817333pt;}
._1a{width:35.780000pt;}
._1c{width:38.536000pt;}
._19{width:59.105333pt;}
._1e{width:199.429333pt;}
._1f{width:642.362667pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.yd2{bottom:3.013333pt;}
.yc3{bottom:3.033333pt;}
.ya6{bottom:3.040000pt;}
.y17{bottom:4.000000pt;}
.yb2{bottom:4.013333pt;}
.y97{bottom:4.040000pt;}
.ya4{bottom:7.000000pt;}
.yab{bottom:7.040000pt;}
.ya9{bottom:8.000000pt;}
.yad{bottom:8.013333pt;}
.ya7{bottom:8.040000pt;}
.y48{bottom:9.000000pt;}
.ye{bottom:10.026667pt;}
.y19{bottom:11.000000pt;}
.yd0{bottom:11.013333pt;}
.yd8{bottom:11.026667pt;}
.y98{bottom:11.040000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.033333pt;}
.y2{bottom:17.033333pt;}
.y93{bottom:18.000000pt;}
.y45{bottom:19.000000pt;}
.yd1{bottom:19.013333pt;}
.yd7{bottom:19.026667pt;}
.y96{bottom:19.040000pt;}
.y47{bottom:22.000000pt;}
.y16{bottom:23.026667pt;}
.yb{bottom:27.026667pt;}
.y44{bottom:34.000000pt;}
.y5{bottom:34.033333pt;}
.y15{bottom:38.026667pt;}
.ya{bottom:41.026667pt;}
.y43{bottom:49.026667pt;}
.y14{bottom:54.066667pt;}
.y1{bottom:55.033333pt;}
.y42{bottom:65.040000pt;}
.y9{bottom:65.066667pt;}
.y13{bottom:70.066667pt;}
.y41{bottom:80.066667pt;}
.y8{bottom:83.066667pt;}
.y12{bottom:87.093333pt;}
.y40{bottom:95.066667pt;}
.y7{bottom:98.093333pt;}
.y91{bottom:102.066667pt;}
.y57{bottom:104.066667pt;}
.y11{bottom:110.093333pt;}
.y3f{bottom:111.093333pt;}
.y90{bottom:117.100000pt;}
.y56{bottom:119.100000pt;}
.yc2{bottom:124.100000pt;}
.y3e{bottom:126.093333pt;}
.y10{bottom:132.133333pt;}
.y8f{bottom:133.100000pt;}
.y55{bottom:135.106667pt;}
.y3d{bottom:141.093333pt;}
.yc1{bottom:145.133333pt;}
.y8e{bottom:148.133333pt;}
.y2b{bottom:149.133333pt;}
.y54{bottom:150.133333pt;}
.y3c{bottom:157.133333pt;}
.y2a{bottom:162.133333pt;}
.y8d{bottom:163.133333pt;}
.y53{bottom:165.133333pt;}
.y3b{bottom:172.133333pt;}
.y29{bottom:179.133333pt;}
.y8c{bottom:179.173333pt;}
.y52{bottom:181.173333pt;}
.yc0{bottom:183.173333pt;}
.y3a{bottom:187.173333pt;}
.y28{bottom:194.173333pt;}
.y51{bottom:196.173333pt;}
.ybf{bottom:199.173333pt;}
.y39{bottom:203.173333pt;}
.y27{bottom:209.173333pt;}
.y50{bottom:211.173333pt;}
.ybe{bottom:214.173333pt;}
.y38{bottom:218.173333pt;}
.y26{bottom:225.200000pt;}
.y4f{bottom:227.200000pt;}
.ybd{bottom:229.200000pt;}
.y37{bottom:233.200000pt;}
.y25{bottom:240.200000pt;}
.y4e{bottom:242.200000pt;}
.ybc{bottom:245.200000pt;}
.y36{bottom:249.200000pt;}
.y8b{bottom:255.226667pt;}
.y24{bottom:256.200000pt;}
.y4d{bottom:257.226667pt;}
.ybb{bottom:260.226667pt;}
.y35{bottom:264.226667pt;}
.y23{bottom:271.226667pt;}
.y8a{bottom:271.240000pt;}
.y4c{bottom:273.226667pt;}
.yba{bottom:275.226667pt;}
.y34{bottom:279.226667pt;}
.y89{bottom:286.240000pt;}
.y22{bottom:287.240000pt;}
.y4b{bottom:288.226667pt;}
.yb9{bottom:291.266667pt;}
.y33{bottom:295.226667pt;}
.y88{bottom:301.266667pt;}
.y21{bottom:302.266667pt;}
.y4a{bottom:303.266667pt;}
.yb8{bottom:306.266667pt;}
.y32{bottom:310.266667pt;}
.y20{bottom:317.266667pt;}
.y49{bottom:319.266667pt;}
.yb7{bottom:321.266667pt;}
.y31{bottom:325.266667pt;}
.y46{bottom:332.293333pt;}
.y1f{bottom:333.266667pt;}
.yed{bottom:334.306667pt;}
.yb6{bottom:337.306667pt;}
.y30{bottom:341.293333pt;}
.y87{bottom:347.293333pt;}
.y1e{bottom:348.293333pt;}
.yec{bottom:349.306667pt;}
.yb5{bottom:352.306667pt;}
.y2f{bottom:356.293333pt;}
.y86{bottom:363.293333pt;}
.y1d{bottom:364.293333pt;}
.y1a{bottom:364.333333pt;}
.yeb{bottom:365.333333pt;}
.yb4{bottom:367.333333pt;}
.y2e{bottom:371.333333pt;}
.y85{bottom:378.333333pt;}
.yea{bottom:380.333333pt;}
.yb3{bottom:384.333333pt;}
.y2d{bottom:387.333333pt;}
.y1c{bottom:388.333333pt;}
.y84{bottom:393.333333pt;}
.ye9{bottom:395.333333pt;}
.y2c{bottom:402.333333pt;}
.y1b{bottom:404.333333pt;}
.yb1{bottom:404.360000pt;}
.y83{bottom:409.373333pt;}
.ye8{bottom:411.373333pt;}
.y82{bottom:424.373333pt;}
.yb0{bottom:425.360000pt;}
.ye7{bottom:426.373333pt;}
.y81{bottom:439.400000pt;}
.ye6{bottom:441.400000pt;}
.yaf{bottom:446.400000pt;}
.y80{bottom:455.400000pt;}
.ye5{bottom:458.400000pt;}
.yae{bottom:466.400000pt;}
.y7f{bottom:470.400000pt;}
.ye4{bottom:478.426667pt;}
.y7e{bottom:485.440000pt;}
.yac{bottom:487.426667pt;}
.ye3{bottom:499.426667pt;}
.y7d{bottom:501.440000pt;}
.yaa{bottom:508.426667pt;}
.y7c{bottom:516.466667pt;}
.ye2{bottom:520.466667pt;}
.ya8{bottom:528.466667pt;}
.y7b{bottom:531.466667pt;}
.ye1{bottom:540.466667pt;}
.y7a{bottom:547.466667pt;}
.ya5{bottom:549.466667pt;}
.y79{bottom:562.506667pt;}
.ye0{bottom:563.506667pt;}
.ya3{bottom:570.506667pt;}
.y78{bottom:577.506667pt;}
.ydf{bottom:579.506667pt;}
.ya2{bottom:590.533333pt;}
.y77{bottom:593.533333pt;}
.yde{bottom:594.533333pt;}
.y76{bottom:608.533333pt;}
.ydd{bottom:609.533333pt;}
.yf2{bottom:610.533333pt;}
.ya1{bottom:613.533333pt;}
.y75{bottom:623.533333pt;}
.ydc{bottom:625.560000pt;}
.ya0{bottom:629.560000pt;}
.y74{bottom:639.573333pt;}
.ydb{bottom:640.560000pt;}
.yf1{bottom:643.560000pt;}
.y9f{bottom:644.560000pt;}
.y73{bottom:654.573333pt;}
.yda{bottom:655.560000pt;}
.y9e{bottom:659.560000pt;}
.y72{bottom:669.600000pt;}
.yd9{bottom:671.600000pt;}
.y9d{bottom:675.600000pt;}
.yf0{bottom:676.600000pt;}
.y71{bottom:685.600000pt;}
.yd6{bottom:687.600000pt;}
.y9c{bottom:690.600000pt;}
.y70{bottom:700.626667pt;}
.y9b{bottom:706.626667pt;}
.yef{bottom:710.626667pt;}
.y6f{bottom:715.626667pt;}
.yd5{bottom:723.626667pt;}
.y9a{bottom:727.626667pt;}
.y6e{bottom:731.626667pt;}
.yee{bottom:743.666667pt;}
.yd4{bottom:744.666667pt;}
.y6d{bottom:746.666667pt;}
.y99{bottom:748.666667pt;}
.y6c{bottom:761.666667pt;}
.yd3{bottom:764.666667pt;}
.y95{bottom:768.666667pt;}
.y6b{bottom:777.706667pt;}
.y18{bottom:778.706667pt;}
.ycf{bottom:785.693333pt;}
.y6a{bottom:792.706667pt;}
.yf{bottom:804.706667pt;}
.y69{bottom:807.706667pt;}
.y68{bottom:823.733333pt;}
.y94{bottom:825.733333pt;}
.y67{bottom:838.733333pt;}
.yce{bottom:839.733333pt;}
.y92{bottom:846.773333pt;}
.y66{bottom:853.773333pt;}
.ycd{bottom:854.773333pt;}
.y65{bottom:869.773333pt;}
.y64{bottom:884.800000pt;}
.ycc{bottom:885.800000pt;}
.y63{bottom:899.800000pt;}
.ycb{bottom:900.800000pt;}
.y62{bottom:915.800000pt;}
.y61{bottom:930.840000pt;}
.yca{bottom:931.840000pt;}
.y60{bottom:945.840000pt;}
.yc9{bottom:946.840000pt;}
.yd{bottom:949.840000pt;}
.y5f{bottom:961.866667pt;}
.yc8{bottom:962.866667pt;}
.y6{bottom:972.866667pt;}
.y5e{bottom:976.866667pt;}
.yc7{bottom:983.866667pt;}
.y5d{bottom:991.866667pt;}
.yc6{bottom:1004.893333pt;}
.y5c{bottom:1007.893333pt;}
.y5b{bottom:1022.893333pt;}
.yc5{bottom:1024.893333pt;}
.y5a{bottom:1037.933333pt;}
.yc4{bottom:1045.933333pt;}
.y59{bottom:1053.933333pt;}
.y58{bottom:1068.960000pt;}
.h1e{height:15.000000pt;}
.h21{height:15.033333pt;}
.h22{height:16.000000pt;}
.h1f{height:16.020000pt;}
.h23{height:16.033333pt;}
.hb{height:23.033333pt;}
.h12{height:26.000000pt;}
.h2{height:29.033333pt;}
.h1d{height:29.986667pt;}
.h24{height:31.000000pt;}
.h20{height:31.033333pt;}
.h1a{height:32.033333pt;}
.h8{height:33.000000pt;}
.h18{height:35.406250pt;}
.h1b{height:36.689453pt;}
.h17{height:36.791016pt;}
.h19{height:37.324219pt;}
.h1c{height:37.857422pt;}
.hd{height:38.289062pt;}
.h11{height:38.625000pt;}
.ha{height:39.000000pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:145.133333pt;}
.h14{height:414.360000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.wd{width:44.066667pt;}
.w11{width:45.066667pt;}
.w2{width:65.100000pt;}
.w16{width:69.100000pt;}
.we{width:84.100000pt;}
.w1d{width:84.133333pt;}
.w12{width:86.100000pt;}
.w17{width:117.133333pt;}
.w4{width:135.160000pt;}
.w9{width:141.160000pt;}
.wa{width:147.200000pt;}
.wc{width:148.200000pt;}
.wb{width:151.200000pt;}
.w18{width:156.160000pt;}
.w1a{width:156.200000pt;}
.w15{width:157.200000pt;}
.w13{width:158.200000pt;}
.w19{width:159.200000pt;}
.w14{width:161.226667pt;}
.wf{width:166.226667pt;}
.w10{width:169.200000pt;}
.w7{width:199.240000pt;}
.w1b{width:208.266667pt;}
.w1c{width:345.440000pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:1.000000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x10{left:11.026667pt;}
.xc{left:61.066667pt;}
.x1{left:72.100000pt;}
.x13{left:75.100000pt;}
.x5{left:87.100000pt;}
.x11{left:96.133322pt;}
.x2a{left:120.166655pt;}
.x1a{left:163.200000pt;}
.x1f{left:164.200000pt;}
.xd{left:188.233333pt;}
.xe{left:190.233333pt;}
.x27{left:194.239988pt;}
.x24{left:195.266667pt;}
.x12{left:199.266655pt;}
.x6{left:207.266667pt;}
.x15{left:220.266667pt;}
.x23{left:239.306655pt;}
.x9{left:243.293333pt;}
.x1e{left:252.333322pt;}
.x19{left:258.333322pt;}
.xf{left:271.333333pt;}
.x28{left:286.373333pt;}
.x7{left:292.373333pt;}
.x8{left:309.400000pt;}
.xb{left:324.406667pt;}
.x20{left:325.400000pt;}
.x1b{left:332.440000pt;}
.x25{left:354.466667pt;}
.x16{left:370.466667pt;}
.xa{left:388.493333pt;}
.x21{left:489.640000pt;}
.x1c{left:505.640000pt;}
.x26{left:516.666667pt;}
.x17{left:524.666667pt;}
.x29{left:635.800000pt;}
.x22{left:650.840000pt;}
.x3{left:657.840000pt;}
.x1d{left:674.866667pt;}
.x18{left:675.866667pt;}
}




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