
    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_6d68f82f11530d9e11815258.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_16f7655d69487a9e0a7834fe.woff')format("woff");}.ff2{font-family:ff2;line-height:0.979980;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_d36f2bc60782b2fd78c8677e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979004;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_50fc738f091da052e86828e7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56ef909c7f9882dd2db52110.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_3094d6f483c2d382864e57d8.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b0e8308d25befeaa8db923ae.woff')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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_3d94a9c12e6e04aa8f9a4455.woff')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_6914e614784f92da86044f57.woff')format("woff");}.ff9{font-family:ff9;line-height:1.098000;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_ef1f6f98ad6915f897c0e9f0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.155000;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_633c0099ffe6e564f2bb3742.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948242;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_7408899ab18ab27ca8726512.woff')format("woff");}.ffc{font-family:ffc;line-height:0.962402;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_4065ba297e338987e9881105.woff')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_8c4147b1ca29f6cd66307cd0.woff')format("woff");}.ffe{font-family:ffe;line-height:1.030273;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_c936e78b8c7c809f02a674b7.woff')format("woff");}.fff{font-family:fff;line-height:1.030273;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_3ae95d57d45fe92f5ed619e1.woff')format("woff");}.ff10{font-family:ff10;line-height:1.085938;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_6b5dc5c5be4a5ad00438e3a7.woff')format("woff");}.ff11{font-family:ff11;line-height:0.720000;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;}
.ls11{letter-spacing:-1.890000px;}
.ls10{letter-spacing:-1.632000px;}
.lsa{letter-spacing:-1.110000px;}
.ls2{letter-spacing:-0.580200px;}
.ls17{letter-spacing:-0.534600px;}
.ls1a{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.294600px;}
.lsb{letter-spacing:-0.090600px;}
.ls1{letter-spacing:-0.037500px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.249600px;}
.ls4{letter-spacing:0.325350px;}
.ls15{letter-spacing:0.444000px;}
.ls7{letter-spacing:0.474000px;}
.ls8{letter-spacing:0.510600px;}
.ls6{letter-spacing:0.567900px;}
.ls16{letter-spacing:0.888000px;}
.lsc{letter-spacing:1.146000px;}
.lsf{letter-spacing:1.296000px;}
.lsd{letter-spacing:1.350000px;}
.ls13{letter-spacing:1.698000px;}
.ls9{letter-spacing:1.740000px;}
.ls12{letter-spacing:1.848000px;}
.ls14{letter-spacing:3.132000px;}
.ls5{letter-spacing:76.447500px;}
.ls18{letter-spacing:111.645000px;}
.ls19{letter-spacing:111.697500px;}
.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;}
}
.wsc{word-spacing:-73.934100px;}
.ws26{word-spacing:-53.876400px;}
.ws27{word-spacing:-53.834700px;}
.ws28{word-spacing:-44.815800px;}
.ws0{word-spacing:-40.073700px;}
.ws23{word-spacing:-39.580800px;}
.wsb{word-spacing:-33.860400px;}
.ws9{word-spacing:-33.818700px;}
.wsa{word-spacing:-33.769800px;}
.ws24{word-spacing:-32.577900px;}
.ws1c{word-spacing:-30.065700px;}
.ws2a{word-spacing:-27.526800px;}
.ws6{word-spacing:-26.312700px;}
.ws1e{word-spacing:-25.061700px;}
.ws1d{word-spacing:-23.810700px;}
.ws4{word-spacing:-21.879600px;}
.ws5{word-spacing:-21.630000px;}
.ws22{word-spacing:-18.443700px;}
.ws21{word-spacing:-17.555700px;}
.ws3{word-spacing:-16.305900px;}
.ws8{word-spacing:-16.304700px;}
.ws20{word-spacing:-16.263000px;}
.ws2{word-spacing:-15.725700px;}
.ws7{word-spacing:-15.194700px;}
.ws25{word-spacing:-1.301400px;}
.ws29{word-spacing:-0.265950px;}
.ws19{word-spacing:-0.126150px;}
.ws1{word-spacing:0.000000px;}
.ws1a{word-spacing:24.974400px;}
.ws1b{word-spacing:26.862300px;}
.wse{word-spacing:27.493800px;}
.wsf{word-spacing:29.281800px;}
.ws11{word-spacing:29.465100px;}
.wsd{word-spacing:29.616300px;}
.ws12{word-spacing:31.548150px;}
.ws13{word-spacing:31.998300px;}
.ws15{word-spacing:32.155800px;}
.ws17{word-spacing:32.271900px;}
.ws16{word-spacing:32.397600px;}
.ws10{word-spacing:32.614950px;}
.ws14{word-spacing:33.165000px;}
.ws18{word-spacing:34.179900px;}
.ws1f{word-spacing:51.385800px;}
._14{margin-left:-24.661200px;}
._9{margin-left:-17.561250px;}
._5{margin-left:-12.124800px;}
._c{margin-left:-10.515900px;}
._8{margin-left:-9.081450px;}
._7{margin-left:-7.639950px;}
._b{margin-left:-5.653950px;}
._4{margin-left:-4.105500px;}
._3{margin-left:-2.499750px;}
._2{margin-left:-1.166550px;}
._0{width:1.666500px;}
._1{width:2.833050px;}
._6{width:4.092150px;}
._a{width:5.538450px;}
._15{width:8.225850px;}
._12{width:26.814150px;}
._13{width:28.093050px;}
._f{width:31.207200px;}
._10{width:32.971050px;}
._e{width:34.179300px;}
._11{width:35.580600px;}
._d{width:76.447500px;}
.fcc{color:transparent;}
.fca{color:rgb(0,111,183);}
.fcb{color:rgb(0,112,192);}
.fc6{color:rgb(31,73,125);}
.fc3{color:rgb(5,99,193);}
.fc9{color:rgb(51,51,51);}
.fc8{color:rgb(32,32,32);}
.fc7{color:rgb(63,63,63);}
.fc5{color:rgb(64,64,64);}
.fc4{color:rgb(58,58,58);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(34,34,34);}
.fsa{font-size:58.500000px;}
.fs9{font-size:58.650000px;}
.fs15{font-size:63.000000px;}
.fs16{font-size:63.150000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:72.150000px;}
.fs1a{font-size:85.500000px;}
.fs19{font-size:85.650000px;}
.fse{font-size:90.150000px;}
.fsf{font-size:94.500000px;}
.fs5{font-size:94.650000px;}
.fs7{font-size:108.150000px;}
.fs11{font-size:121.650000px;}
.fs12{font-size:121.800000px;}
.fs14{font-size:126.150000px;}
.fs13{font-size:126.300000px;}
.fs3{font-size:144.150000px;}
.fs2{font-size:144.300000px;}
.fs18{font-size:162.150000px;}
.fs17{font-size:162.300000px;}
.fs0{font-size:166.650000px;}
.fs1{font-size:166.800000px;}
.fsc{font-size:193.650000px;}
.fsb{font-size:193.800000px;}
.fs1c{font-size:198.300000px;}
.fs8{font-size:216.300000px;}
.fsd{font-size:265.800000px;}
.fs10{font-size:265.950000px;}
.fs1b{font-size:306.450000px;}
.y0{bottom:0.000000px;}
.y65{bottom:12.187500px;}
.y21{bottom:15.937500px;}
.y87{bottom:20.212500px;}
.y74{bottom:20.325000px;}
.y19{bottom:21.487500px;}
.y13{bottom:25.387500px;}
.ya{bottom:30.525000px;}
.y14{bottom:31.425000px;}
.y7f{bottom:34.875000px;}
.y86{bottom:38.250000px;}
.y8c{bottom:44.137500px;}
.y20{bottom:45.225000px;}
.y12{bottom:46.800000px;}
.y41{bottom:50.512500px;}
.y7e{bottom:52.912500px;}
.ybf{bottom:55.837500px;}
.y85{bottom:56.287500px;}
.ycb{bottom:61.650000px;}
.y8b{bottom:63.262500px;}
.ya0{bottom:65.287500px;}
.ya5{bottom:66.675000px;}
.y30{bottom:67.837500px;}
.y11{bottom:68.175000px;}
.y8f{bottom:70.800000px;}
.y7d{bottom:70.950000px;}
.y1f{bottom:73.387500px;}
.yb7{bottom:79.387500px;}
.y98{bottom:82.162500px;}
.y8a{bottom:82.425000px;}
.y2f{bottom:85.837500px;}
.y18{bottom:87.600000px;}
.y7c{bottom:88.950000px;}
.y9f{bottom:91.200000px;}
.ya4{bottom:92.587500px;}
.y8e{bottom:94.462500px;}
.y1e{bottom:103.237500px;}
.y2e{bottom:103.875000px;}
.y97{bottom:105.825000px;}
.y7b{bottom:106.987500px;}
.ybe{bottom:112.162500px;}
.y8d{bottom:117.000000px;}
.y9e{bottom:117.112500px;}
.ya3{bottom:118.500000px;}
.y17{bottom:119.175000px;}
.yb6{bottom:123.337500px;}
.y40{bottom:124.837500px;}
.y7a{bottom:125.025000px;}
.y96{bottom:128.362500px;}
.yca{bottom:133.762500px;}
.ye{bottom:136.425000px;}
.y79{bottom:143.025000px;}
.y55{bottom:154.545000px;}
.y5e{bottom:155.955000px;}
.y1d{bottom:160.725000px;}
.y78{bottom:161.055000px;}
.ybd{bottom:162.870000px;}
.yd{bottom:163.470000px;}
.y9{bottom:163.650000px;}
.yb5{bottom:166.125000px;}
.y3f{bottom:170.955000px;}
.y77{bottom:179.100000px;}
.yc{bottom:189.375000px;}
.y2d{bottom:196.275000px;}
.y69{bottom:199.470000px;}
.yc9{bottom:205.845000px;}
.y8{bottom:206.475000px;}
.y3e{bottom:207.000000px;}
.yb4{bottom:208.950000px;}
.yb{bottom:215.295000px;}
.y1c{bottom:219.300000px;}
.y68{bottom:222.000000px;}
.y2c{bottom:225.570000px;}
.y62{bottom:230.445000px;}
.yc8{bottom:241.905000px;}
.y3d{bottom:243.075000px;}
.y67{bottom:244.530000px;}
.y7{bottom:250.380000px;}
.y2b{bottom:253.725000px;}
.y76{bottom:257.130000px;}
.y5d{bottom:257.370000px;}
.y73{bottom:260.070000px;}
.yc7{bottom:277.950000px;}
.y3c{bottom:279.105000px;}
.y2a{bottom:283.020000px;}
.y72{bottom:287.100000px;}
.y4c{bottom:287.580000px;}
.y4f{bottom:287.625000px;}
.y75{bottom:289.800000px;}
.y6{bottom:293.220000px;}
.yb3{bottom:295.695000px;}
.y49{bottom:296.595000px;}
.yb9{bottom:298.755000px;}
.y5c{bottom:308.025000px;}
.y4b{bottom:310.095000px;}
.y4e{bottom:310.155000px;}
.y29{bottom:312.345000px;}
.y71{bottom:313.005000px;}
.yc6{bottom:313.995000px;}
.y3b{bottom:315.150000px;}
.y48{bottom:319.125000px;}
.y1b{bottom:327.495000px;}
.y4d{bottom:331.575000px;}
.y4a{bottom:334.875000px;}
.y5{bottom:336.030000px;}
.yb2{bottom:339.630000px;}
.y28{bottom:340.500000px;}
.y47{bottom:340.530000px;}
.y1a{bottom:345.525000px;}
.yc5{bottom:350.070000px;}
.y3a{bottom:351.225000px;}
.y70{bottom:365.970000px;}
.y4{bottom:379.950000px;}
.yb1{bottom:382.425000px;}
.y39{bottom:387.255000px;}
.yab{bottom:392.820000px;}
.y6f{bottom:393.000000px;}
.y6a{bottom:400.275000px;}
.y5b{bottom:408.300000px;}
.y46{bottom:420.150000px;}
.yc4{bottom:422.130000px;}
.y3{bottom:422.775000px;}
.y38{bottom:423.300000px;}
.yb0{bottom:425.250000px;}
.y42{bottom:425.820000px;}
.yaa{bottom:435.630000px;}
.y6e{bottom:445.950000px;}
.y92{bottom:447.045000px;}
.y45{bottom:458.475000px;}
.y5a{bottom:459.000000px;}
.y37{bottom:459.375000px;}
.yba{bottom:460.620000px;}
.y27{bottom:469.155000px;}
.y91{bottom:470.700000px;}
.y9d{bottom:470.925000px;}
.y61{bottom:472.245000px;}
.ya9{bottom:479.550000px;}
.y64{bottom:487.830000px;}
.y90{bottom:493.200000px;}
.y9c{bottom:493.470000px;}
.yc3{bottom:494.250000px;}
.y60{bottom:494.775000px;}
.y26{bottom:495.075000px;}
.y36{bottom:495.405000px;}
.y44{bottom:497.880000px;}
.y6d{bottom:498.900000px;}
.yaf{bottom:511.995000px;}
.y63{bottom:513.750000px;}
.y5f{bottom:517.320000px;}
.ya8{bottom:522.375000px;}
.y84{bottom:525.630000px;}
.y35{bottom:531.450000px;}
.y43{bottom:536.220000px;}
.y9b{bottom:548.925000px;}
.y25{bottom:550.275000px;}
.y83{bottom:551.550000px;}
.yae{bottom:555.900000px;}
.ya7{bottom:565.200000px;}
.yc2{bottom:566.370000px;}
.y34{bottom:567.525000px;}
.y10{bottom:571.455000px;}
.y9a{bottom:573.720000px;}
.ybc{bottom:579.495000px;}
.y24{bottom:579.570000px;}
.y6c{bottom:585.630000px;}
.yad{bottom:598.725000px;}
.y99{bottom:599.625000px;}
.y53{bottom:600.225000px;}
.yc1{bottom:602.400000px;}
.y33{bottom:603.570000px;}
.y23{bottom:608.850000px;}
.ya6{bottom:609.120000px;}
.y6b{bottom:613.800000px;}
.yf{bottom:622.155000px;}
.y95{bottom:627.780000px;}
.y59{bottom:628.905000px;}
.ybb{bottom:635.820000px;}
.y32{bottom:639.600000px;}
.y52{bottom:644.655000px;}
.y82{bottom:660.030000px;}
.y58{bottom:661.575000px;}
.ya2{bottom:665.625000px;}
.y94{bottom:670.575000px;}
.y16{bottom:677.250000px;}
.y51{bottom:677.325000px;}
.yac{bottom:677.505000px;}
.y89{bottom:685.800000px;}
.y22{bottom:687.450000px;}
.yc0{bottom:688.695000px;}
.y2{bottom:691.620000px;}
.y57{bottom:698.745000px;}
.y81{bottom:702.870000px;}
.y31{bottom:702.945000px;}
.y66{bottom:704.370000px;}
.y93{bottom:714.525000px;}
.ya1{bottom:716.325000px;}
.yb8{bottom:729.450000px;}
.y50{bottom:730.275000px;}
.y15{bottom:735.825000px;}
.y1{bottom:736.650000px;}
.y88{bottom:744.375000px;}
.y56{bottom:744.945000px;}
.y80{bottom:746.775000px;}
.y54{bottom:784.080000px;}
.h17{height:42.760986px;}
.he{height:42.870630px;}
.hf{height:43.160889px;}
.h18{height:43.271558px;}
.h1f{height:46.050293px;}
.h20{height:46.159937px;}
.h2c{height:46.591626px;}
.h1c{height:54.253418px;}
.h27{height:62.496826px;}
.h26{height:62.606470px;}
.h15{height:65.895776px;}
.h16{height:69.075439px;}
.h12{height:69.185083px;}
.h14{height:71.172363px;}
.h5{height:71.613281px;}
.h9{height:71.762476px;}
.ha{height:79.053003px;}
.h29{height:81.323730px;}
.h2e{height:81.408691px;}
.h2d{height:81.551514px;}
.h23{height:82.171729px;}
.h2f{height:89.978027px;}
.h6{height:90.120850px;}
.h1a{height:91.475098px;}
.h1b{height:91.587891px;}
.hd{height:93.333450px;}
.hc{height:94.523100px;}
.h30{height:105.367456px;}
.h31{height:105.477100px;}
.h1e{height:106.623853px;}
.h1d{height:106.750635px;}
.h4{height:108.112500px;}
.h3{height:108.225000px;}
.h24{height:108.394043px;}
.h2a{height:108.506836px;}
.h3b{height:120.996606px;}
.h3c{height:121.145801px;}
.h38{height:121.923633px;}
.h25{height:121.929199px;}
.h22{height:125.145850px;}
.h1{height:125.312988px;}
.h2{height:125.425781px;}
.h21{height:140.903027px;}
.h11{height:141.549829px;}
.h10{height:141.659473px;}
.h34{height:143.375757px;}
.h35{height:143.524951px;}
.h2b{height:145.728516px;}
.h32{height:147.598901px;}
.h33{height:147.752490px;}
.h8{height:170.637231px;}
.h7{height:170.790820px;}
.h3a{height:188.824500px;}
.h37{height:192.609888px;}
.h36{height:192.759082px;}
.h13{height:199.869141px;}
.h19{height:199.981934px;}
.h39{height:203.044482px;}
.hb{height:205.949707px;}
.h28{height:230.436035px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4a{left:14.437479px;}
.x3c{left:19.649979px;}
.x2c{left:24.487479px;}
.x55{left:25.799979px;}
.x33{left:36.412479px;}
.xf{left:40.312479px;}
.x1e{left:45.374979px;}
.x4c{left:46.649979px;}
.x4d{left:52.087479px;}
.x56{left:57.899979px;}
.x1a{left:60.637479px;}
.x23{left:63.524979px;}
.x46{left:64.537479px;}
.x3b{left:68.212479px;}
.x1c{left:75.524979px;}
.x4b{left:77.699979px;}
.x37{left:79.987479px;}
.x1b{left:96.674979px;}
.x1f{left:102.187479px;}
.x51{left:111.037479px;}
.x38{left:123.674979px;}
.x3e{left:128.812479px;}
.x52{left:151.574979px;}
.x22{left:161.324979px;}
.x25{left:163.529979px;}
.x3d{left:183.779979px;}
.x2b{left:205.499979px;}
.x53{left:293.744979px;}
.x11{left:350.699979px;}
.x4e{left:374.249979px;}
.x50{left:401.219979px;}
.x1{left:404.819979px;}
.x4f{left:406.994979px;}
.x12{left:414.524979px;}
.x27{left:426.899979px;}
.x26{left:435.074979px;}
.x28{left:449.669979px;}
.x3f{left:527.294979px;}
.x16{left:551.399979px;}
.x29{left:580.049979px;}
.x18{left:584.969979px;}
.x17{left:592.319979px;}
.x19{left:638.699979px;}
.x21{left:672.974979px;}
.x20{left:692.129979px;}
.xe{left:731.354979px;}
.x5{left:762.944979px;}
.x54{left:766.094979px;}
.x14{left:770.399979px;}
.x15{left:778.274979px;}
.xb{left:822.629979px;}
.x2a{left:832.544979px;}
.x1d{left:837.524979px;}
.x2e{left:849.974979px;}
.xc{left:887.024979px;}
.x2d{left:893.069979px;}
.x2f{left:916.799979px;}
.x3{left:928.124979px;}
.xd{left:939.344979px;}
.x8{left:949.244979px;}
.x2{left:956.324979px;}
.x32{left:959.849979px;}
.x39{left:963.044979px;}
.x6{left:986.594979px;}
.x13{left:1036.724979px;}
.x10{left:1044.329979px;}
.x48{left:1052.204979px;}
.x7{left:1066.199979px;}
.x3a{left:1091.744979px;}
.x4{left:1111.019979px;}
.x42{left:1123.424979px;}
.x24{left:1137.569979px;}
.x45{left:1141.394979px;}
.x9{left:1163.069979px;}
.x31{left:1183.079979px;}
.x35{left:1196.774979px;}
.x40{left:1201.124979px;}
.x30{left:1207.499979px;}
.x41{left:1209.119979px;}
.x34{left:1216.094979px;}
.x44{left:1231.724979px;}
.x47{left:1238.579979px;}
.x43{left:1260.674979px;}
.x36{left:1262.819979px;}
.x49{left:1312.694979px;}
.xa{left:1321.874979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-1.680000pt;}
.ls10{letter-spacing:-1.450667pt;}
.lsa{letter-spacing:-0.986667pt;}
.ls2{letter-spacing:-0.515733pt;}
.ls17{letter-spacing:-0.475200pt;}
.ls1a{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.261867pt;}
.lsb{letter-spacing:-0.080533pt;}
.ls1{letter-spacing:-0.033333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.221867pt;}
.ls4{letter-spacing:0.289200pt;}
.ls15{letter-spacing:0.394667pt;}
.ls7{letter-spacing:0.421333pt;}
.ls8{letter-spacing:0.453867pt;}
.ls6{letter-spacing:0.504800pt;}
.ls16{letter-spacing:0.789333pt;}
.lsc{letter-spacing:1.018667pt;}
.lsf{letter-spacing:1.152000pt;}
.lsd{letter-spacing:1.200000pt;}
.ls13{letter-spacing:1.509333pt;}
.ls9{letter-spacing:1.546667pt;}
.ls12{letter-spacing:1.642667pt;}
.ls14{letter-spacing:2.784000pt;}
.ls5{letter-spacing:67.953333pt;}
.ls18{letter-spacing:99.240000pt;}
.ls19{letter-spacing:99.286667pt;}
.wsc{word-spacing:-65.719200pt;}
.ws26{word-spacing:-47.890133pt;}
.ws27{word-spacing:-47.853067pt;}
.ws28{word-spacing:-39.836267pt;}
.ws0{word-spacing:-35.621067pt;}
.ws23{word-spacing:-35.182933pt;}
.wsb{word-spacing:-30.098133pt;}
.ws9{word-spacing:-30.061067pt;}
.wsa{word-spacing:-30.017600pt;}
.ws24{word-spacing:-28.958133pt;}
.ws1c{word-spacing:-26.725067pt;}
.ws2a{word-spacing:-24.468267pt;}
.ws6{word-spacing:-23.389067pt;}
.ws1e{word-spacing:-22.277067pt;}
.ws1d{word-spacing:-21.165067pt;}
.ws4{word-spacing:-19.448533pt;}
.ws5{word-spacing:-19.226667pt;}
.ws22{word-spacing:-16.394400pt;}
.ws21{word-spacing:-15.605067pt;}
.ws3{word-spacing:-14.494133pt;}
.ws8{word-spacing:-14.493067pt;}
.ws20{word-spacing:-14.456000pt;}
.ws2{word-spacing:-13.978400pt;}
.ws7{word-spacing:-13.506400pt;}
.ws25{word-spacing:-1.156800pt;}
.ws29{word-spacing:-0.236400pt;}
.ws19{word-spacing:-0.112133pt;}
.ws1{word-spacing:0.000000pt;}
.ws1a{word-spacing:22.199467pt;}
.ws1b{word-spacing:23.877600pt;}
.wse{word-spacing:24.438933pt;}
.wsf{word-spacing:26.028267pt;}
.ws11{word-spacing:26.191200pt;}
.wsd{word-spacing:26.325600pt;}
.ws12{word-spacing:28.042800pt;}
.ws13{word-spacing:28.442933pt;}
.ws15{word-spacing:28.582933pt;}
.ws17{word-spacing:28.686133pt;}
.ws16{word-spacing:28.797867pt;}
.ws10{word-spacing:28.991067pt;}
.ws14{word-spacing:29.480000pt;}
.ws18{word-spacing:30.382133pt;}
.ws1f{word-spacing:45.676267pt;}
._14{margin-left:-21.921067pt;}
._9{margin-left:-15.610000pt;}
._5{margin-left:-10.777600pt;}
._c{margin-left:-9.347467pt;}
._8{margin-left:-8.072400pt;}
._7{margin-left:-6.791067pt;}
._b{margin-left:-5.025733pt;}
._4{margin-left:-3.649333pt;}
._3{margin-left:-2.222000pt;}
._2{margin-left:-1.036933pt;}
._0{width:1.481333pt;}
._1{width:2.518267pt;}
._6{width:3.637467pt;}
._a{width:4.923067pt;}
._15{width:7.311867pt;}
._12{width:23.834800pt;}
._13{width:24.971600pt;}
._f{width:27.739733pt;}
._10{width:29.307600pt;}
._e{width:30.381600pt;}
._11{width:31.627200pt;}
._d{width:67.953333pt;}
.fsa{font-size:52.000000pt;}
.fs9{font-size:52.133333pt;}
.fs15{font-size:56.000000pt;}
.fs16{font-size:56.133333pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:64.133333pt;}
.fs1a{font-size:76.000000pt;}
.fs19{font-size:76.133333pt;}
.fse{font-size:80.133333pt;}
.fsf{font-size:84.000000pt;}
.fs5{font-size:84.133333pt;}
.fs7{font-size:96.133333pt;}
.fs11{font-size:108.133333pt;}
.fs12{font-size:108.266667pt;}
.fs14{font-size:112.133333pt;}
.fs13{font-size:112.266667pt;}
.fs3{font-size:128.133333pt;}
.fs2{font-size:128.266667pt;}
.fs18{font-size:144.133333pt;}
.fs17{font-size:144.266667pt;}
.fs0{font-size:148.133333pt;}
.fs1{font-size:148.266667pt;}
.fsc{font-size:172.133333pt;}
.fsb{font-size:172.266667pt;}
.fs1c{font-size:176.266667pt;}
.fs8{font-size:192.266667pt;}
.fsd{font-size:236.266667pt;}
.fs10{font-size:236.400000pt;}
.fs1b{font-size:272.400000pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:10.833333pt;}
.y21{bottom:14.166667pt;}
.y87{bottom:17.966667pt;}
.y74{bottom:18.066667pt;}
.y19{bottom:19.100000pt;}
.y13{bottom:22.566667pt;}
.ya{bottom:27.133333pt;}
.y14{bottom:27.933333pt;}
.y7f{bottom:31.000000pt;}
.y86{bottom:34.000000pt;}
.y8c{bottom:39.233333pt;}
.y20{bottom:40.200000pt;}
.y12{bottom:41.600000pt;}
.y41{bottom:44.900000pt;}
.y7e{bottom:47.033333pt;}
.ybf{bottom:49.633333pt;}
.y85{bottom:50.033333pt;}
.ycb{bottom:54.800000pt;}
.y8b{bottom:56.233333pt;}
.ya0{bottom:58.033333pt;}
.ya5{bottom:59.266667pt;}
.y30{bottom:60.300000pt;}
.y11{bottom:60.600000pt;}
.y8f{bottom:62.933333pt;}
.y7d{bottom:63.066667pt;}
.y1f{bottom:65.233333pt;}
.yb7{bottom:70.566667pt;}
.y98{bottom:73.033333pt;}
.y8a{bottom:73.266667pt;}
.y2f{bottom:76.300000pt;}
.y18{bottom:77.866667pt;}
.y7c{bottom:79.066667pt;}
.y9f{bottom:81.066667pt;}
.ya4{bottom:82.300000pt;}
.y8e{bottom:83.966667pt;}
.y1e{bottom:91.766667pt;}
.y2e{bottom:92.333333pt;}
.y97{bottom:94.066667pt;}
.y7b{bottom:95.100000pt;}
.ybe{bottom:99.700000pt;}
.y8d{bottom:104.000000pt;}
.y9e{bottom:104.100000pt;}
.ya3{bottom:105.333333pt;}
.y17{bottom:105.933333pt;}
.yb6{bottom:109.633333pt;}
.y40{bottom:110.966667pt;}
.y7a{bottom:111.133333pt;}
.y96{bottom:114.100000pt;}
.yca{bottom:118.900000pt;}
.ye{bottom:121.266667pt;}
.y79{bottom:127.133333pt;}
.y55{bottom:137.373333pt;}
.y5e{bottom:138.626667pt;}
.y1d{bottom:142.866667pt;}
.y78{bottom:143.160000pt;}
.ybd{bottom:144.773333pt;}
.yd{bottom:145.306667pt;}
.y9{bottom:145.466667pt;}
.yb5{bottom:147.666667pt;}
.y3f{bottom:151.960000pt;}
.y77{bottom:159.200000pt;}
.yc{bottom:168.333333pt;}
.y2d{bottom:174.466667pt;}
.y69{bottom:177.306667pt;}
.yc9{bottom:182.973333pt;}
.y8{bottom:183.533333pt;}
.y3e{bottom:184.000000pt;}
.yb4{bottom:185.733333pt;}
.yb{bottom:191.373333pt;}
.y1c{bottom:194.933333pt;}
.y68{bottom:197.333333pt;}
.y2c{bottom:200.506667pt;}
.y62{bottom:204.840000pt;}
.yc8{bottom:215.026667pt;}
.y3d{bottom:216.066667pt;}
.y67{bottom:217.360000pt;}
.y7{bottom:222.560000pt;}
.y2b{bottom:225.533333pt;}
.y76{bottom:228.560000pt;}
.y5d{bottom:228.773333pt;}
.y73{bottom:231.173333pt;}
.yc7{bottom:247.066667pt;}
.y3c{bottom:248.093333pt;}
.y2a{bottom:251.573333pt;}
.y72{bottom:255.200000pt;}
.y4c{bottom:255.626667pt;}
.y4f{bottom:255.666667pt;}
.y75{bottom:257.600000pt;}
.y6{bottom:260.640000pt;}
.yb3{bottom:262.840000pt;}
.y49{bottom:263.640000pt;}
.yb9{bottom:265.560000pt;}
.y5c{bottom:273.800000pt;}
.y4b{bottom:275.640000pt;}
.y4e{bottom:275.693333pt;}
.y29{bottom:277.640000pt;}
.y71{bottom:278.226667pt;}
.yc6{bottom:279.106667pt;}
.y3b{bottom:280.133333pt;}
.y48{bottom:283.666667pt;}
.y1b{bottom:291.106667pt;}
.y4d{bottom:294.733333pt;}
.y4a{bottom:297.666667pt;}
.y5{bottom:298.693333pt;}
.yb2{bottom:301.893333pt;}
.y28{bottom:302.666667pt;}
.y47{bottom:302.693333pt;}
.y1a{bottom:307.133333pt;}
.yc5{bottom:311.173333pt;}
.y3a{bottom:312.200000pt;}
.y70{bottom:325.306667pt;}
.y4{bottom:337.733333pt;}
.yb1{bottom:339.933333pt;}
.y39{bottom:344.226667pt;}
.yab{bottom:349.173333pt;}
.y6f{bottom:349.333333pt;}
.y6a{bottom:355.800000pt;}
.y5b{bottom:362.933333pt;}
.y46{bottom:373.466667pt;}
.yc4{bottom:375.226667pt;}
.y3{bottom:375.800000pt;}
.y38{bottom:376.266667pt;}
.yb0{bottom:378.000000pt;}
.y42{bottom:378.506667pt;}
.yaa{bottom:387.226667pt;}
.y6e{bottom:396.400000pt;}
.y92{bottom:397.373333pt;}
.y45{bottom:407.533333pt;}
.y5a{bottom:408.000000pt;}
.y37{bottom:408.333333pt;}
.yba{bottom:409.440000pt;}
.y27{bottom:417.026667pt;}
.y91{bottom:418.400000pt;}
.y9d{bottom:418.600000pt;}
.y61{bottom:419.773333pt;}
.ya9{bottom:426.266667pt;}
.y64{bottom:433.626667pt;}
.y90{bottom:438.400000pt;}
.y9c{bottom:438.640000pt;}
.yc3{bottom:439.333333pt;}
.y60{bottom:439.800000pt;}
.y26{bottom:440.066667pt;}
.y36{bottom:440.360000pt;}
.y44{bottom:442.560000pt;}
.y6d{bottom:443.466667pt;}
.yaf{bottom:455.106667pt;}
.y63{bottom:456.666667pt;}
.y5f{bottom:459.840000pt;}
.ya8{bottom:464.333333pt;}
.y84{bottom:467.226667pt;}
.y35{bottom:472.400000pt;}
.y43{bottom:476.640000pt;}
.y9b{bottom:487.933333pt;}
.y25{bottom:489.133333pt;}
.y83{bottom:490.266667pt;}
.yae{bottom:494.133333pt;}
.ya7{bottom:502.400000pt;}
.yc2{bottom:503.440000pt;}
.y34{bottom:504.466667pt;}
.y10{bottom:507.960000pt;}
.y9a{bottom:509.973333pt;}
.ybc{bottom:515.106667pt;}
.y24{bottom:515.173333pt;}
.y6c{bottom:520.560000pt;}
.yad{bottom:532.200000pt;}
.y99{bottom:533.000000pt;}
.y53{bottom:533.533333pt;}
.yc1{bottom:535.466667pt;}
.y33{bottom:536.506667pt;}
.y23{bottom:541.200000pt;}
.ya6{bottom:541.440000pt;}
.y6b{bottom:545.600000pt;}
.yf{bottom:553.026667pt;}
.y95{bottom:558.026667pt;}
.y59{bottom:559.026667pt;}
.ybb{bottom:565.173333pt;}
.y32{bottom:568.533333pt;}
.y52{bottom:573.026667pt;}
.y82{bottom:586.693333pt;}
.y58{bottom:588.066667pt;}
.ya2{bottom:591.666667pt;}
.y94{bottom:596.066667pt;}
.y16{bottom:602.000000pt;}
.y51{bottom:602.066667pt;}
.yac{bottom:602.226667pt;}
.y89{bottom:609.600000pt;}
.y22{bottom:611.066667pt;}
.yc0{bottom:612.173333pt;}
.y2{bottom:614.773333pt;}
.y57{bottom:621.106667pt;}
.y81{bottom:624.773333pt;}
.y31{bottom:624.840000pt;}
.y66{bottom:626.106667pt;}
.y93{bottom:635.133333pt;}
.ya1{bottom:636.733333pt;}
.yb8{bottom:648.400000pt;}
.y50{bottom:649.133333pt;}
.y15{bottom:654.066667pt;}
.y1{bottom:654.800000pt;}
.y88{bottom:661.666667pt;}
.y56{bottom:662.173333pt;}
.y80{bottom:663.800000pt;}
.y54{bottom:696.960000pt;}
.h17{height:38.009766pt;}
.he{height:38.107227pt;}
.hf{height:38.365234pt;}
.h18{height:38.463607pt;}
.h1f{height:40.933594pt;}
.h20{height:41.031055pt;}
.h2c{height:41.414779pt;}
.h1c{height:48.225260pt;}
.h27{height:55.552734pt;}
.h26{height:55.650195pt;}
.h15{height:58.574023pt;}
.h16{height:61.400391pt;}
.h12{height:61.497852pt;}
.h14{height:63.264323pt;}
.h5{height:63.656250pt;}
.h9{height:63.788867pt;}
.ha{height:70.269336pt;}
.h29{height:72.287760pt;}
.h2e{height:72.363281pt;}
.h2d{height:72.490234pt;}
.h23{height:73.041536pt;}
.h2f{height:79.980469pt;}
.h6{height:80.107422pt;}
.h1a{height:81.311198pt;}
.h1b{height:81.411458pt;}
.hd{height:82.963067pt;}
.hc{height:84.020533pt;}
.h30{height:93.659961pt;}
.h31{height:93.757422pt;}
.h1e{height:94.776758pt;}
.h1d{height:94.889453pt;}
.h4{height:96.100000pt;}
.h3{height:96.200000pt;}
.h24{height:96.350260pt;}
.h2a{height:96.450521pt;}
.h3b{height:107.552539pt;}
.h3c{height:107.685156pt;}
.h38{height:108.376562pt;}
.h25{height:108.381510pt;}
.h22{height:111.240755pt;}
.h1{height:111.389323pt;}
.h2{height:111.489583pt;}
.h21{height:125.247135pt;}
.h11{height:125.822070pt;}
.h10{height:125.919531pt;}
.h34{height:127.445117pt;}
.h35{height:127.577734pt;}
.h2b{height:129.536458pt;}
.h32{height:131.199023pt;}
.h33{height:131.335547pt;}
.h8{height:151.677539pt;}
.h7{height:151.814063pt;}
.h3a{height:167.844000pt;}
.h37{height:171.208789pt;}
.h36{height:171.341406pt;}
.h13{height:177.661458pt;}
.h19{height:177.761719pt;}
.h39{height:180.483984pt;}
.hb{height:183.066406pt;}
.h28{height:204.832031pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:12.833314pt;}
.x3c{left:17.466648pt;}
.x2c{left:21.766648pt;}
.x55{left:22.933314pt;}
.x33{left:32.366648pt;}
.xf{left:35.833314pt;}
.x1e{left:40.333314pt;}
.x4c{left:41.466648pt;}
.x4d{left:46.299981pt;}
.x56{left:51.466648pt;}
.x1a{left:53.899981pt;}
.x23{left:56.466648pt;}
.x46{left:57.366648pt;}
.x3b{left:60.633314pt;}
.x1c{left:67.133314pt;}
.x4b{left:69.066648pt;}
.x37{left:71.099981pt;}
.x1b{left:85.933314pt;}
.x1f{left:90.833314pt;}
.x51{left:98.699981pt;}
.x38{left:109.933314pt;}
.x3e{left:114.499981pt;}
.x52{left:134.733314pt;}
.x22{left:143.399981pt;}
.x25{left:145.359981pt;}
.x3d{left:163.359981pt;}
.x2b{left:182.666648pt;}
.x53{left:261.106648pt;}
.x11{left:311.733314pt;}
.x4e{left:332.666648pt;}
.x50{left:356.639981pt;}
.x1{left:359.839981pt;}
.x4f{left:361.773314pt;}
.x12{left:368.466648pt;}
.x27{left:379.466648pt;}
.x26{left:386.733314pt;}
.x28{left:399.706648pt;}
.x3f{left:468.706648pt;}
.x16{left:490.133314pt;}
.x29{left:515.599981pt;}
.x18{left:519.973314pt;}
.x17{left:526.506648pt;}
.x19{left:567.733314pt;}
.x21{left:598.199981pt;}
.x20{left:615.226648pt;}
.xe{left:650.093314pt;}
.x5{left:678.173314pt;}
.x54{left:680.973314pt;}
.x14{left:684.799981pt;}
.x15{left:691.799981pt;}
.xb{left:731.226648pt;}
.x2a{left:740.039981pt;}
.x1d{left:744.466648pt;}
.x2e{left:755.533314pt;}
.xc{left:788.466648pt;}
.x2d{left:793.839981pt;}
.x2f{left:814.933314pt;}
.x3{left:824.999981pt;}
.xd{left:834.973314pt;}
.x8{left:843.773314pt;}
.x2{left:850.066648pt;}
.x32{left:853.199981pt;}
.x39{left:856.039981pt;}
.x6{left:876.973314pt;}
.x13{left:921.533314pt;}
.x10{left:928.293314pt;}
.x48{left:935.293314pt;}
.x7{left:947.733314pt;}
.x3a{left:970.439981pt;}
.x4{left:987.573314pt;}
.x42{left:998.599981pt;}
.x24{left:1011.173314pt;}
.x45{left:1014.573314pt;}
.x9{left:1033.839981pt;}
.x31{left:1051.626648pt;}
.x35{left:1063.799981pt;}
.x40{left:1067.666648pt;}
.x30{left:1073.333314pt;}
.x41{left:1074.773314pt;}
.x34{left:1080.973314pt;}
.x44{left:1094.866648pt;}
.x47{left:1100.959981pt;}
.x43{left:1120.599981pt;}
.x36{left:1122.506648pt;}
.x49{left:1166.839981pt;}
.xa{left:1174.999981pt;}
}




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