
    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_3b880b81ff69bf33ce10991e.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_147db1a6c72ddefddaaa3cd3.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_b8dca11435cbda4e5405acc6.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_a1c6a4e05b643ad9d045c686.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_7552f057634158a77caf9990.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1f039661180bc31085041b3a.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_40340d3c71587afc9667ff03.woff')format("woff");}.ff9{font-family:ff9;line-height:0.754395;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_0e7c5b871dcd91741088d72b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_aab0487d83d2ff45145402bc.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c528fb3352a712359c6190a5.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_238d57d334d111f56aff7d2d.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7c8a0430bf07176eee139653.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.m2{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,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;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls10{letter-spacing:-2.766000px;}
.lsc{letter-spacing:-2.724000px;}
.ls23{letter-spacing:-2.052000px;}
.ls1a{letter-spacing:-1.740000px;}
.ls1f{letter-spacing:-1.482000px;}
.ls14{letter-spacing:-1.224000px;}
.ls1e{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.852000px;}
.lsd{letter-spacing:-0.792000px;}
.lsb{letter-spacing:-0.378000px;}
.ls21{letter-spacing:-0.304200px;}
.ls22{letter-spacing:-0.228000px;}
.lsa{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045000px;}
.ls12{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.279000px;}
.ls5{letter-spacing:0.864000px;}
.ls27{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls18{letter-spacing:1.482000px;}
.ls15{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.966500px;}
.ls19{letter-spacing:1.992000px;}
.ls3{letter-spacing:2.026500px;}
.ls9{letter-spacing:2.164500px;}
.ls6{letter-spacing:2.250000px;}
.ls1c{letter-spacing:2.310000px;}
.ls7{letter-spacing:2.322000px;}
.ls20{letter-spacing:2.328000px;}
.ls1d{letter-spacing:2.370000px;}
.ls16{letter-spacing:3.018000px;}
.ls24{letter-spacing:3.375000px;}
.ls25{letter-spacing:3.555000px;}
.ls17{letter-spacing:5.526000px;}
.ls29{letter-spacing:15.387000px;}
.ls1b{letter-spacing:42.387000px;}
.ls26{letter-spacing:46.887000px;}
.ls28{letter-spacing:52.875000px;}
.ls13{letter-spacing:64.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;}
}
.ws1b{word-spacing:-58.500000px;}
.wsf{word-spacing:-20.151000px;}
.wse{word-spacing:-17.643000px;}
.ws15{word-spacing:-16.990500px;}
.ws7{word-spacing:-16.875000px;}
.ws11{word-spacing:-16.617000px;}
.wsd{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.ws10{word-spacing:-16.107000px;}
.ws1c{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws13{word-spacing:-13.599000px;}
.wsc{word-spacing:-13.401000px;}
.ws9{word-spacing:-13.266000px;}
.ws8{word-spacing:-13.221000px;}
.ws14{word-spacing:-13.143000px;}
.ws12{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws4{word-spacing:-12.369000px;}
.ws18{word-spacing:-12.237900px;}
.ws19{word-spacing:-12.204000px;}
.ws17{word-spacing:-11.976000px;}
.ws16{word-spacing:-11.933700px;}
.wsa{word-spacing:-11.859000px;}
.ws0{word-spacing:-11.826000px;}
.ws1a{word-spacing:-10.152000px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-6.127500px;}
._8{margin-left:-4.930500px;}
._2{margin-left:-2.862000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.024000px;}
._4{width:4.734000px;}
._a{width:6.138000px;}
._9{width:7.590000px;}
._7{width:8.599500px;}
._5{width:9.870000px;}
._d{width:11.533500px;}
._c{width:13.239000px;}
._e{width:15.795000px;}
._b{width:16.897500px;}
._f{width:20.839500px;}
._10{width:21.928500px;}
._13{width:25.366500px;}
._12{width:26.784000px;}
._11{width:30.195000px;}
._23{width:34.006500px;}
._22{width:35.248500px;}
._21{width:39.348000px;}
._31{width:43.059000px;}
._32{width:44.319000px;}
._2c{width:48.193500px;}
._2d{width:49.242000px;}
._26{width:52.336500px;}
._27{width:54.001500px;}
._25{width:56.955000px;}
._18{width:61.626000px;}
._19{width:62.818500px;}
._16{width:66.249000px;}
._17{width:67.294500px;}
._15{width:70.290000px;}
._14{width:71.983500px;}
._1f{width:75.064500px;}
._20{width:76.441500px;}
._24{width:79.600500px;}
._2e{width:89.358000px;}
._2b{width:93.217500px;}
._2a{width:98.347500px;}
._2f{width:101.977500px;}
._30{width:103.324500px;}
._38{width:115.384500px;}
._37{width:116.397000px;}
._39{width:117.954000px;}
._35{width:129.010500px;}
._36{width:130.248000px;}
._33{width:132.979500px;}
._34{width:134.226000px;}
._1d{width:151.942500px;}
._1e{width:152.982000px;}
._1a{width:156.141000px;}
._1b{width:157.486500px;}
._1c{width:158.836500px;}
._29{width:165.874500px;}
._28{width:170.154000px;}
.fc6{color:rgb(68,83,106);}
.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);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:54.150000px;}
.fs4{font-size:58.500000px;}
.fs8{font-size:58.650000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.125000px;}
.y115{bottom:2.625000px;}
.y110{bottom:2.670000px;}
.y10e{bottom:2.700000px;}
.y10c{bottom:2.775000px;}
.y100{bottom:2.850000px;}
.y3{bottom:3.375000px;}
.ybe{bottom:3.390000px;}
.yb6{bottom:3.420000px;}
.y10a{bottom:3.825000px;}
.yd0{bottom:4.492500px;}
.y19{bottom:4.500000px;}
.yb9{bottom:4.515000px;}
.yc4{bottom:4.545000px;}
.y113{bottom:4.905000px;}
.y11f{bottom:5.625000px;}
.yd8{bottom:5.655000px;}
.ye{bottom:11.250000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.530000px;}
.y4{bottom:18.000000px;}
.yff{bottom:19.770000px;}
.y2{bottom:20.250000px;}
.y4a{bottom:20.280000px;}
.y4d{bottom:22.530000px;}
.y112{bottom:24.045000px;}
.y109{bottom:24.075000px;}
.y11b{bottom:25.200000px;}
.y4c{bottom:25.905000px;}
.y18{bottom:28.170000px;}
.y5{bottom:29.250000px;}
.yb{bottom:30.405000px;}
.y49{bottom:38.280000px;}
.y108{bottom:44.370000px;}
.y17{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y11c{bottom:48.855000px;}
.y1{bottom:50.662500px;}
.y48{bottom:55.155000px;}
.y16{bottom:60.795000px;}
.y107{bottom:64.620000px;}
.y47{bottom:72.075000px;}
.y9{bottom:73.185000px;}
.y15{bottom:77.700000px;}
.y106{bottom:84.900000px;}
.y46{bottom:90.075000px;}
.y14{bottom:91.200000px;}
.y8{bottom:93.480000px;}
.y92{bottom:99.075000px;}
.y105{bottom:104.025000px;}
.y145{bottom:105.825000px;}
.yfd{bottom:106.950000px;}
.y45{bottom:106.995000px;}
.yd2{bottom:108.075000px;}
.y13{bottom:109.245000px;}
.y7{bottom:110.355000px;}
.y54{bottom:111.450000px;}
.y91{bottom:117.075000px;}
.y144{bottom:123.862500px;}
.y44{bottom:123.870000px;}
.y104{bottom:124.320000px;}
.yfc{bottom:124.987500px;}
.yd1{bottom:128.362500px;}
.y12{bottom:128.370000px;}
.y53{bottom:129.487500px;}
.y118{bottom:132.195000px;}
.y90{bottom:135.112500px;}
.y143{bottom:140.737500px;}
.y43{bottom:141.855000px;}
.yfb{bottom:141.862500px;}
.y103{bottom:144.570000px;}
.y52{bottom:146.362500px;}
.ycf{bottom:148.612500px;}
.y8f{bottom:153.105000px;}
.y11{bottom:154.275000px;}
.y142{bottom:157.620000px;}
.yfa{bottom:158.745000px;}
.y42{bottom:158.775000px;}
.y51{bottom:163.275000px;}
.y102{bottom:163.725000px;}
.yce{bottom:167.775000px;}
.y8e{bottom:170.025000px;}
.yf9{bottom:174.525000px;}
.y41{bottom:175.650000px;}
.y10{bottom:179.025000px;}
.y50{bottom:181.275000px;}
.y8d{bottom:186.900000px;}
.yf8{bottom:192.525000px;}
.y40{bottom:193.695000px;}
.y4f{bottom:198.150000px;}
.y8c{bottom:204.945000px;}
.ycd{bottom:209.445000px;}
.y3f{bottom:210.570000px;}
.yf7{bottom:211.695000px;}
.y4e{bottom:215.070000px;}
.y8b{bottom:221.820000px;}
.ycc{bottom:226.320000px;}
.y141{bottom:227.445000px;}
.y3e{bottom:227.475000px;}
.y4b{bottom:228.570000px;}
.yf6{bottom:230.820000px;}
.y8a{bottom:238.695000px;}
.ycb{bottom:243.225000px;}
.y140{bottom:244.350000px;}
.y3d{bottom:245.475000px;}
.yf5{bottom:248.850000px;}
.y89{bottom:256.725000px;}
.yca{bottom:261.225000px;}
.y3c{bottom:262.350000px;}
.y1d{bottom:265.725000px;}
.yf4{bottom:271.350000px;}
.y88{bottom:273.600000px;}
.yc9{bottom:278.100000px;}
.y13f{bottom:279.225000px;}
.y3b{bottom:279.255000px;}
.yf3{bottom:288.270000px;}
.y87{bottom:291.645000px;}
.yc8{bottom:295.020000px;}
.y13e{bottom:296.130000px;}
.y3a{bottom:297.270000px;}
.y2b{bottom:305.145000px;}
.yf2{bottom:306.255000px;}
.y86{bottom:309.630000px;}
.yc7{bottom:313.005000px;}
.y39{bottom:314.175000px;}
.y2a{bottom:319.800000px;}
.yf1{bottom:323.130000px;}
.y85{bottom:327.675000px;}
.yc6{bottom:329.925000px;}
.y38{bottom:331.050000px;}
.y29{bottom:338.925000px;}
.yf0{bottom:340.050000px;}
.yc5{bottom:344.550000px;}
.y84{bottom:345.675000px;}
.y13d{bottom:347.925000px;}
.y37{bottom:349.050000px;}
.y28{bottom:355.845000px;}
.yef{bottom:358.050000px;}
.y83{bottom:363.675000px;}
.yc3{bottom:364.800000px;}
.y36{bottom:365.970000px;}
.y27{bottom:372.720000px;}
.yee{bottom:374.955000px;}
.y82{bottom:381.705000px;}
.y35{bottom:382.845000px;}
.yc2{bottom:383.955000px;}
.y26{bottom:390.720000px;}
.yed{bottom:391.830000px;}
.y81{bottom:398.580000px;}
.y13c{bottom:399.720000px;}
.y34{bottom:400.875000px;}
.yc1{bottom:403.080000px;}
.yec{bottom:405.330000px;}
.y25{bottom:407.625000px;}
.y80{bottom:415.500000px;}
.y13b{bottom:416.625000px;}
.y33{bottom:417.750000px;}
.y114{bottom:421.875000px;}
.yc0{bottom:422.250000px;}
.y24{bottom:423.375000px;}
.y7f{bottom:433.500000px;}
.y32{bottom:434.625000px;}
.ybf{bottom:440.250000px;}
.y23{bottom:440.295000px;}
.y7e{bottom:450.375000px;}
.y13a{bottom:451.530000px;}
.y31{bottom:452.655000px;}
.y22{bottom:458.280000px;}
.ybd{bottom:459.405000px;}
.y111{bottom:460.125000px;}
.y7d{bottom:467.295000px;}
.y139{bottom:468.405000px;}
.y30{bottom:469.530000px;}
.y21{bottom:475.155000px;}
.ybc{bottom:478.530000px;}
.y10f{bottom:481.500000px;}
.y7c{bottom:485.280000px;}
.y138{bottom:486.420000px;}
.y2f{bottom:486.450000px;}
.y20{bottom:495.450000px;}
.ybb{bottom:496.575000px;}
.y101{bottom:498.375000px;}
.y7b{bottom:502.200000px;}
.y137{bottom:503.325000px;}
.y2e{bottom:504.450000px;}
.y117{bottom:506.250000px;}
.y11a{bottom:507.375000px;}
.y10d{bottom:513.000000px;}
.yba{bottom:516.825000px;}
.y7a{bottom:519.075000px;}
.y136{bottom:520.200000px;}
.y2d{bottom:521.355000px;}
.y1f{bottom:522.480000px;}
.y119{bottom:532.575000px;}
.yb8{bottom:535.980000px;}
.y79{bottom:537.120000px;}
.y2c{bottom:538.230000px;}
.y1e{bottom:540.480000px;}
.y78{bottom:553.995000px;}
.yb7{bottom:555.105000px;}
.y77{bottom:570.870000px;}
.y135{bottom:571.980000px;}
.yb5{bottom:574.230000px;}
.y76{bottom:588.900000px;}
.y134{bottom:590.025000px;}
.yb4{bottom:592.275000px;}
.y10b{bottom:600.750000px;}
.y75{bottom:605.775000px;}
.y133{bottom:606.900000px;}
.yb3{bottom:611.400000px;}
.y74{bottom:622.695000px;}
.y132{bottom:623.820000px;}
.yb2{bottom:633.945000px;}
.y116{bottom:638.445000px;}
.y73{bottom:640.695000px;}
.yb1{bottom:650.820000px;}
.y72{bottom:657.570000px;}
.y131{bottom:658.695000px;}
.yb0{bottom:668.850000px;}
.y71{bottom:674.475000px;}
.y130{bottom:675.600000px;}
.yaf{bottom:685.725000px;}
.yfe{bottom:686.250000px;}
.y70{bottom:692.475000px;}
.yae{bottom:702.645000px;}
.y6f{bottom:709.395000px;}
.y12f{bottom:710.505000px;}
.yad{bottom:720.630000px;}
.y6e{bottom:726.270000px;}
.y12e{bottom:727.380000px;}
.yeb{bottom:736.395000px;}
.yac{bottom:737.505000px;}
.y6d{bottom:744.300000px;}
.yea{bottom:753.300000px;}
.yab{bottom:754.425000px;}
.y6c{bottom:761.175000px;}
.y12d{bottom:762.300000px;}
.ye9{bottom:770.175000px;}
.yaa{bottom:772.425000px;}
.y6b{bottom:778.050000px;}
.y12c{bottom:779.175000px;}
.ye8{bottom:788.205000px;}
.ya9{bottom:789.330000px;}
.y6a{bottom:796.080000px;}
.ye7{bottom:805.080000px;}
.ya8{bottom:806.205000px;}
.y69{bottom:812.955000px;}
.y12b{bottom:814.080000px;}
.y1a{bottom:817.455000px;}
.ye6{bottom:821.955000px;}
.ya7{bottom:824.205000px;}
.y68{bottom:829.875000px;}
.y12a{bottom:831.000000px;}
.ye5{bottom:837.750000px;}
.ya6{bottom:841.125000px;}
.yf{bottom:847.875000px;}
.ye4{bottom:855.750000px;}
.ya5{bottom:858.000000px;}
.y67{bottom:864.750000px;}
.y129{bottom:865.875000px;}
.ye3{bottom:874.920000px;}
.ya4{bottom:876.045000px;}
.y66{bottom:881.670000px;}
.y128{bottom:882.795000px;}
.ya3{bottom:892.920000px;}
.ye2{bottom:894.030000px;}
.y65{bottom:899.670000px;}
.ya2{bottom:909.795000px;}
.ye1{bottom:912.075000px;}
.y64{bottom:916.575000px;}
.y127{bottom:917.700000px;}
.ya1{bottom:927.825000px;}
.ye0{bottom:931.200000px;}
.y63{bottom:933.450000px;}
.y126{bottom:934.575000px;}
.ya0{bottom:944.700000px;}
.y62{bottom:951.450000px;}
.ydf{bottom:953.745000px;}
.y9f{bottom:961.620000px;}
.y61{bottom:968.370000px;}
.y125{bottom:969.495000px;}
.yde{bottom:970.620000px;}
.y9e{bottom:979.620000px;}
.y60{bottom:985.245000px;}
.y124{bottom:986.370000px;}
.ydd{bottom:988.620000px;}
.y9d{bottom:996.525000px;}
.y5f{bottom:1003.275000px;}
.ydc{bottom:1005.525000px;}
.y9c{bottom:1013.400000px;}
.y5e{bottom:1020.150000px;}
.y123{bottom:1021.275000px;}
.ydb{bottom:1022.400000px;}
.y9b{bottom:1032.525000px;}
.y122{bottom:1035.945000px;}
.y5d{bottom:1037.070000px;}
.yda{bottom:1040.445000px;}
.yd{bottom:1041.570000px;}
.y9a{bottom:1050.570000px;}
.y5c{bottom:1055.070000px;}
.y121{bottom:1056.195000px;}
.yd9{bottom:1057.320000px;}
.y6{bottom:1067.445000px;}
.y99{bottom:1068.570000px;}
.y5b{bottom:1071.945000px;}
.y120{bottom:1076.445000px;}
.y98{bottom:1085.475000px;}
.y5a{bottom:1088.850000px;}
.yd7{bottom:1092.225000px;}
.y11e{bottom:1096.725000px;}
.y97{bottom:1103.475000px;}
.y59{bottom:1106.850000px;}
.yd6{bottom:1112.475000px;}
.y11d{bottom:1116.975000px;}
.y96{bottom:1120.380000px;}
.y58{bottom:1123.755000px;}
.yd5{bottom:1131.630000px;}
.y95{bottom:1137.255000px;}
.y57{bottom:1140.630000px;}
.yd4{bottom:1151.880000px;}
.y94{bottom:1156.380000px;}
.y56{bottom:1158.630000px;}
.yd3{bottom:1169.925000px;}
.y93{bottom:1174.425000px;}
.y55{bottom:1175.550000px;}
.h29{height:14.625000px;}
.h24{height:16.860000px;}
.h21{height:16.875000px;}
.h1f{height:16.912500px;}
.h20{height:18.000000px;}
.h22{height:18.037500px;}
.h2f{height:19.125000px;}
.h23{height:19.147500px;}
.h2e{height:19.162500px;}
.hc{height:25.875000px;}
.h13{height:29.953125px;}
.h14{height:30.412500px;}
.h2{height:32.662500px;}
.h25{height:34.875000px;}
.h12{height:35.806641px;}
.h2a{height:36.000000px;}
.h9{height:37.125000px;}
.h1d{height:37.162500px;}
.h1a{height:39.832031px;}
.h1c{height:40.847168px;}
.h1b{height:41.275635px;}
.h26{height:41.381470px;}
.h18{height:41.389893px;}
.h1e{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h19{height:47.074219px;}
.h6{height:47.131348px;}
.h2c{height:47.250000px;}
.h17{height:49.234131px;}
.h4{height:53.709961px;}
.h28{height:53.859155px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:63.066504px;}
.h5{height:69.114990px;}
.h2d{height:69.750000px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.597500px;}
.h2b{height:153.000000px;}
.h27{height:175.500000px;}
.hd{height:193.680000px;}
.h16{height:551.745000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w19{width:9.000000px;}
.w16{width:16.875000px;}
.w18{width:20.250000px;}
.w17{width:27.000000px;}
.w1e{width:50.625000px;}
.w1d{width:51.750000px;}
.w2{width:74.362500px;}
.w1b{width:95.625000px;}
.w1c{width:127.125000px;}
.w1a{width:137.250000px;}
.w20{width:143.062500px;}
.w12{width:147.562500px;}
.w4{width:152.055000px;}
.w10{width:176.850000px;}
.w9{width:177.975000px;}
.wc{width:202.770000px;}
.wf{width:221.895000px;}
.w7{width:223.020000px;}
.wd{width:259.080000px;}
.wb{width:264.720000px;}
.we{width:266.970000px;}
.w13{width:274.845000px;}
.w21{width:278.250000px;}
.wa{width:285.000000px;}
.w14{width:305.280000px;}
.w1f{width:308.625000px;}
.w11{width:330.075000px;}
.w15{width:401.625000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:1.425000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x16{left:12.420000px;}
.xf{left:18.000000px;}
.x32{left:24.780000px;}
.x30{left:33.787500px;}
.x50{left:37.530000px;}
.x4d{left:38.895000px;}
.x1e{left:54.075000px;}
.x25{left:55.200000px;}
.x57{left:57.450000px;}
.x19{left:60.825000px;}
.x3a{left:61.995000px;}
.x35{left:64.245000px;}
.x48{left:65.820000px;}
.x10{left:68.700000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x38{left:74.370000px;}
.x23{left:77.692500px;}
.x5c{left:79.987500px;}
.x4{left:81.112487px;}
.x29{left:85.605000px;}
.x26{left:87.855000px;}
.x20{left:88.987500px;}
.x27{left:91.230000px;}
.x5a{left:93.495000px;}
.x39{left:94.612500px;}
.x6{left:97.987500px;}
.x5b{left:99.112500px;}
.x56{left:100.237500px;}
.x59{left:101.362500px;}
.x58{left:103.650000px;}
.x21{left:104.730000px;}
.x34{left:106.987500px;}
.x17{left:108.149987px;}
.x13{left:111.487500px;}
.x1b{left:112.650000px;}
.x1d{left:113.775000px;}
.x28{left:118.275000px;}
.x2b{left:119.400000px;}
.x12{left:120.532500px;}
.x1f{left:122.775000px;}
.x2a{left:126.150000px;}
.x24{left:127.275000px;}
.x22{left:130.650000px;}
.x37{left:137.430000px;}
.x3b{left:138.570000px;}
.x11{left:140.782500px;}
.x42{left:143.370000px;}
.x6d{left:145.312487px;}
.x36{left:150.975000px;}
.x2f{left:158.804987px;}
.x3d{left:168.974987px;}
.x6e{left:173.474987px;}
.x43{left:184.500000px;}
.x2c{left:198.269987px;}
.x14{left:214.012500px;}
.x7{left:225.300000px;}
.x3e{left:230.925000px;}
.x52{left:237.375000px;}
.x40{left:245.250000px;}
.x51{left:251.219987px;}
.x1a{left:261.345000px;}
.x53{left:269.219987px;}
.x18{left:278.219987px;}
.x2d{left:286.125000px;}
.xb{left:290.625000px;}
.x15{left:296.250000px;}
.x4f{left:299.250000px;}
.x31{left:305.250000px;}
.x4e{left:313.154987px;}
.x4a{left:329.625000px;}
.x9{left:344.670000px;}
.xa{left:364.950000px;}
.xd{left:366.075000px;}
.xe{left:373.957500px;}
.x47{left:388.125000px;}
.x54{left:390.870000px;}
.x6c{left:397.649987px;}
.x44{left:411.750000px;}
.x5d{left:417.899987px;}
.x5e{left:426.944987px;}
.x5f{left:439.319987px;}
.x60{left:448.319987px;}
.xc{left:453.945000px;}
.x4c{left:460.125000px;}
.x4b{left:475.349987px;}
.x33{left:483.225000px;}
.x3f{left:508.020000px;}
.x61{left:523.799987px;}
.x62{left:532.799987px;}
.x55{left:535.050000px;}
.x2e{left:546.345000px;}
.x1c{left:548.595000px;}
.x63{left:556.469987px;}
.x64{left:564.329987px;}
.x45{left:578.250000px;}
.x65{left:601.499987px;}
.x66{left:610.529987px;}
.x49{left:615.375000px;}
.x46{left:640.125000px;}
.x67{left:706.274987px;}
.x68{left:714.149987px;}
.x3c{left:718.649987px;}
.x3{left:746.820000px;}
.x69{left:768.224987px;}
.x6a{left:777.224987px;}
.x6b{left:813.299987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls10{letter-spacing:-2.458667pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls23{letter-spacing:-1.824000pt;}
.ls1a{letter-spacing:-1.546667pt;}
.ls1f{letter-spacing:-1.317333pt;}
.ls14{letter-spacing:-1.088000pt;}
.ls1e{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.757333pt;}
.lsd{letter-spacing:-0.704000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls21{letter-spacing:-0.270400pt;}
.ls22{letter-spacing:-0.202667pt;}
.lsa{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040000pt;}
.ls12{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.248000pt;}
.ls5{letter-spacing:0.768000pt;}
.ls27{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls18{letter-spacing:1.317333pt;}
.ls15{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.748000pt;}
.ls19{letter-spacing:1.770667pt;}
.ls3{letter-spacing:1.801333pt;}
.ls9{letter-spacing:1.924000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls1c{letter-spacing:2.053333pt;}
.ls7{letter-spacing:2.064000pt;}
.ls20{letter-spacing:2.069333pt;}
.ls1d{letter-spacing:2.106667pt;}
.ls16{letter-spacing:2.682667pt;}
.ls24{letter-spacing:3.000000pt;}
.ls25{letter-spacing:3.160000pt;}
.ls17{letter-spacing:4.912000pt;}
.ls29{letter-spacing:13.677333pt;}
.ls1b{letter-spacing:37.677333pt;}
.ls26{letter-spacing:41.677333pt;}
.ls28{letter-spacing:47.000000pt;}
.ls13{letter-spacing:57.677333pt;}
.ws1b{word-spacing:-52.000000pt;}
.wsf{word-spacing:-17.912000pt;}
.wse{word-spacing:-15.682667pt;}
.ws15{word-spacing:-15.102667pt;}
.ws7{word-spacing:-15.000000pt;}
.ws11{word-spacing:-14.770667pt;}
.wsd{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws10{word-spacing:-14.317333pt;}
.ws1c{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws13{word-spacing:-12.088000pt;}
.wsc{word-spacing:-11.912000pt;}
.ws9{word-spacing:-11.792000pt;}
.ws8{word-spacing:-11.752000pt;}
.ws14{word-spacing:-11.682667pt;}
.ws12{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws4{word-spacing:-10.994667pt;}
.ws18{word-spacing:-10.878133pt;}
.ws19{word-spacing:-10.848000pt;}
.ws17{word-spacing:-10.645333pt;}
.ws16{word-spacing:-10.607733pt;}
.wsa{word-spacing:-10.541333pt;}
.ws0{word-spacing:-10.512000pt;}
.ws1a{word-spacing:-9.024000pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-5.446667pt;}
._8{margin-left:-4.382667pt;}
._2{margin-left:-2.544000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.688000pt;}
._4{width:4.208000pt;}
._a{width:5.456000pt;}
._9{width:6.746667pt;}
._7{width:7.644000pt;}
._5{width:8.773333pt;}
._d{width:10.252000pt;}
._c{width:11.768000pt;}
._e{width:14.040000pt;}
._b{width:15.020000pt;}
._f{width:18.524000pt;}
._10{width:19.492000pt;}
._13{width:22.548000pt;}
._12{width:23.808000pt;}
._11{width:26.840000pt;}
._23{width:30.228000pt;}
._22{width:31.332000pt;}
._21{width:34.976000pt;}
._31{width:38.274667pt;}
._32{width:39.394667pt;}
._2c{width:42.838667pt;}
._2d{width:43.770667pt;}
._26{width:46.521333pt;}
._27{width:48.001333pt;}
._25{width:50.626667pt;}
._18{width:54.778667pt;}
._19{width:55.838667pt;}
._16{width:58.888000pt;}
._17{width:59.817333pt;}
._15{width:62.480000pt;}
._14{width:63.985333pt;}
._1f{width:66.724000pt;}
._20{width:67.948000pt;}
._24{width:70.756000pt;}
._2e{width:79.429333pt;}
._2b{width:82.860000pt;}
._2a{width:87.420000pt;}
._2f{width:90.646667pt;}
._30{width:91.844000pt;}
._38{width:102.564000pt;}
._37{width:103.464000pt;}
._39{width:104.848000pt;}
._35{width:114.676000pt;}
._36{width:115.776000pt;}
._33{width:118.204000pt;}
._34{width:119.312000pt;}
._1d{width:135.060000pt;}
._1e{width:135.984000pt;}
._1a{width:138.792000pt;}
._1b{width:139.988000pt;}
._1c{width:141.188000pt;}
._29{width:147.444000pt;}
._28{width:151.248000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:48.133333pt;}
.fs4{font-size:52.000000pt;}
.fs8{font-size:52.133333pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:1.000000pt;}
.y115{bottom:2.333333pt;}
.y110{bottom:2.373333pt;}
.y10e{bottom:2.400000pt;}
.y10c{bottom:2.466667pt;}
.y100{bottom:2.533333pt;}
.y3{bottom:3.000000pt;}
.ybe{bottom:3.013333pt;}
.yb6{bottom:3.040000pt;}
.y10a{bottom:3.400000pt;}
.yd0{bottom:3.993333pt;}
.y19{bottom:4.000000pt;}
.yb9{bottom:4.013333pt;}
.yc4{bottom:4.040000pt;}
.y113{bottom:4.360000pt;}
.y11f{bottom:5.000000pt;}
.yd8{bottom:5.026667pt;}
.ye{bottom:10.000000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.026667pt;}
.y4{bottom:16.000000pt;}
.yff{bottom:17.573333pt;}
.y2{bottom:18.000000pt;}
.y4a{bottom:18.026667pt;}
.y4d{bottom:20.026667pt;}
.y112{bottom:21.373333pt;}
.y109{bottom:21.400000pt;}
.y11b{bottom:22.400000pt;}
.y4c{bottom:23.026667pt;}
.y18{bottom:25.040000pt;}
.y5{bottom:26.000000pt;}
.yb{bottom:27.026667pt;}
.y49{bottom:34.026667pt;}
.y108{bottom:39.440000pt;}
.y17{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y11c{bottom:43.426667pt;}
.y1{bottom:45.033333pt;}
.y48{bottom:49.026667pt;}
.y16{bottom:54.040000pt;}
.y107{bottom:57.440000pt;}
.y47{bottom:64.066667pt;}
.y9{bottom:65.053333pt;}
.y15{bottom:69.066667pt;}
.y106{bottom:75.466667pt;}
.y46{bottom:80.066667pt;}
.y14{bottom:81.066667pt;}
.y8{bottom:83.093333pt;}
.y92{bottom:88.066667pt;}
.y105{bottom:92.466667pt;}
.y145{bottom:94.066667pt;}
.yfd{bottom:95.066667pt;}
.y45{bottom:95.106667pt;}
.yd2{bottom:96.066667pt;}
.y13{bottom:97.106667pt;}
.y7{bottom:98.093333pt;}
.y54{bottom:99.066667pt;}
.y91{bottom:104.066667pt;}
.y144{bottom:110.100000pt;}
.y44{bottom:110.106667pt;}
.y104{bottom:110.506667pt;}
.yfc{bottom:111.100000pt;}
.yd1{bottom:114.100000pt;}
.y12{bottom:114.106667pt;}
.y53{bottom:115.100000pt;}
.y118{bottom:117.506667pt;}
.y90{bottom:120.100000pt;}
.y143{bottom:125.100000pt;}
.y43{bottom:126.093333pt;}
.yfb{bottom:126.100000pt;}
.y103{bottom:128.506667pt;}
.y52{bottom:130.100000pt;}
.ycf{bottom:132.100000pt;}
.y8f{bottom:136.093333pt;}
.y11{bottom:137.133333pt;}
.y142{bottom:140.106667pt;}
.yfa{bottom:141.106667pt;}
.y42{bottom:141.133333pt;}
.y51{bottom:145.133333pt;}
.y102{bottom:145.533333pt;}
.yce{bottom:149.133333pt;}
.y8e{bottom:151.133333pt;}
.yf9{bottom:155.133333pt;}
.y41{bottom:156.133333pt;}
.y10{bottom:159.133333pt;}
.y50{bottom:161.133333pt;}
.y8d{bottom:166.133333pt;}
.yf8{bottom:171.133333pt;}
.y40{bottom:172.173333pt;}
.y4f{bottom:176.133333pt;}
.y8c{bottom:182.173333pt;}
.ycd{bottom:186.173333pt;}
.y3f{bottom:187.173333pt;}
.yf7{bottom:188.173333pt;}
.y4e{bottom:191.173333pt;}
.y8b{bottom:197.173333pt;}
.ycc{bottom:201.173333pt;}
.y141{bottom:202.173333pt;}
.y3e{bottom:202.200000pt;}
.y4b{bottom:203.173333pt;}
.yf6{bottom:205.173333pt;}
.y8a{bottom:212.173333pt;}
.ycb{bottom:216.200000pt;}
.y140{bottom:217.200000pt;}
.y3d{bottom:218.200000pt;}
.yf5{bottom:221.200000pt;}
.y89{bottom:228.200000pt;}
.yca{bottom:232.200000pt;}
.y3c{bottom:233.200000pt;}
.y1d{bottom:236.200000pt;}
.yf4{bottom:241.200000pt;}
.y88{bottom:243.200000pt;}
.yc9{bottom:247.200000pt;}
.y13f{bottom:248.200000pt;}
.y3b{bottom:248.226667pt;}
.yf3{bottom:256.240000pt;}
.y87{bottom:259.240000pt;}
.yc8{bottom:262.240000pt;}
.y13e{bottom:263.226667pt;}
.y3a{bottom:264.240000pt;}
.y2b{bottom:271.240000pt;}
.yf2{bottom:272.226667pt;}
.y86{bottom:275.226667pt;}
.yc7{bottom:278.226667pt;}
.y39{bottom:279.266667pt;}
.y2a{bottom:284.266667pt;}
.yf1{bottom:287.226667pt;}
.y85{bottom:291.266667pt;}
.yc6{bottom:293.266667pt;}
.y38{bottom:294.266667pt;}
.y29{bottom:301.266667pt;}
.yf0{bottom:302.266667pt;}
.yc5{bottom:306.266667pt;}
.y84{bottom:307.266667pt;}
.y13d{bottom:309.266667pt;}
.y37{bottom:310.266667pt;}
.y28{bottom:316.306667pt;}
.yef{bottom:318.266667pt;}
.y83{bottom:323.266667pt;}
.yc3{bottom:324.266667pt;}
.y36{bottom:325.306667pt;}
.y27{bottom:331.306667pt;}
.yee{bottom:333.293333pt;}
.y82{bottom:339.293333pt;}
.y35{bottom:340.306667pt;}
.yc2{bottom:341.293333pt;}
.y26{bottom:347.306667pt;}
.yed{bottom:348.293333pt;}
.y81{bottom:354.293333pt;}
.y13c{bottom:355.306667pt;}
.y34{bottom:356.333333pt;}
.yc1{bottom:358.293333pt;}
.yec{bottom:360.293333pt;}
.y25{bottom:362.333333pt;}
.y80{bottom:369.333333pt;}
.y13b{bottom:370.333333pt;}
.y33{bottom:371.333333pt;}
.y114{bottom:375.000000pt;}
.yc0{bottom:375.333333pt;}
.y24{bottom:376.333333pt;}
.y7f{bottom:385.333333pt;}
.y32{bottom:386.333333pt;}
.ybf{bottom:391.333333pt;}
.y23{bottom:391.373333pt;}
.y7e{bottom:400.333333pt;}
.y13a{bottom:401.360000pt;}
.y31{bottom:402.360000pt;}
.y22{bottom:407.360000pt;}
.ybd{bottom:408.360000pt;}
.y111{bottom:409.000000pt;}
.y7d{bottom:415.373333pt;}
.y139{bottom:416.360000pt;}
.y30{bottom:417.360000pt;}
.y21{bottom:422.360000pt;}
.ybc{bottom:425.360000pt;}
.y10f{bottom:428.000000pt;}
.y7c{bottom:431.360000pt;}
.y138{bottom:432.373333pt;}
.y2f{bottom:432.400000pt;}
.y20{bottom:440.400000pt;}
.ybb{bottom:441.400000pt;}
.y101{bottom:443.000000pt;}
.y7b{bottom:446.400000pt;}
.y137{bottom:447.400000pt;}
.y2e{bottom:448.400000pt;}
.y117{bottom:450.000000pt;}
.y11a{bottom:451.000000pt;}
.y10d{bottom:456.000000pt;}
.yba{bottom:459.400000pt;}
.y7a{bottom:461.400000pt;}
.y136{bottom:462.400000pt;}
.y2d{bottom:463.426667pt;}
.y1f{bottom:464.426667pt;}
.y119{bottom:473.400000pt;}
.yb8{bottom:476.426667pt;}
.y79{bottom:477.440000pt;}
.y2c{bottom:478.426667pt;}
.y1e{bottom:480.426667pt;}
.y78{bottom:492.440000pt;}
.yb7{bottom:493.426667pt;}
.y77{bottom:507.440000pt;}
.y135{bottom:508.426667pt;}
.yb5{bottom:510.426667pt;}
.y76{bottom:523.466667pt;}
.y134{bottom:524.466667pt;}
.yb4{bottom:526.466667pt;}
.y10b{bottom:534.000000pt;}
.y75{bottom:538.466667pt;}
.y133{bottom:539.466667pt;}
.yb3{bottom:543.466667pt;}
.y74{bottom:553.506667pt;}
.y132{bottom:554.506667pt;}
.yb2{bottom:563.506667pt;}
.y116{bottom:567.506667pt;}
.y73{bottom:569.506667pt;}
.yb1{bottom:578.506667pt;}
.y72{bottom:584.506667pt;}
.y131{bottom:585.506667pt;}
.yb0{bottom:594.533333pt;}
.y71{bottom:599.533333pt;}
.y130{bottom:600.533333pt;}
.yaf{bottom:609.533333pt;}
.yfe{bottom:610.000000pt;}
.y70{bottom:615.533333pt;}
.yae{bottom:624.573333pt;}
.y6f{bottom:630.573333pt;}
.y12f{bottom:631.560000pt;}
.yad{bottom:640.560000pt;}
.y6e{bottom:645.573333pt;}
.y12e{bottom:646.560000pt;}
.yeb{bottom:654.573333pt;}
.yac{bottom:655.560000pt;}
.y6d{bottom:661.600000pt;}
.yea{bottom:669.600000pt;}
.yab{bottom:670.600000pt;}
.y6c{bottom:676.600000pt;}
.y12d{bottom:677.600000pt;}
.ye9{bottom:684.600000pt;}
.yaa{bottom:686.600000pt;}
.y6b{bottom:691.600000pt;}
.y12c{bottom:692.600000pt;}
.ye8{bottom:700.626667pt;}
.ya9{bottom:701.626667pt;}
.y6a{bottom:707.626667pt;}
.ye7{bottom:715.626667pt;}
.ya8{bottom:716.626667pt;}
.y69{bottom:722.626667pt;}
.y12b{bottom:723.626667pt;}
.y1a{bottom:726.626667pt;}
.ye6{bottom:730.626667pt;}
.ya7{bottom:732.626667pt;}
.y68{bottom:737.666667pt;}
.y12a{bottom:738.666667pt;}
.ye5{bottom:744.666667pt;}
.ya6{bottom:747.666667pt;}
.yf{bottom:753.666667pt;}
.ye4{bottom:760.666667pt;}
.ya5{bottom:762.666667pt;}
.y67{bottom:768.666667pt;}
.y129{bottom:769.666667pt;}
.ye3{bottom:777.706667pt;}
.ya4{bottom:778.706667pt;}
.y66{bottom:783.706667pt;}
.y128{bottom:784.706667pt;}
.ya3{bottom:793.706667pt;}
.ye2{bottom:794.693333pt;}
.y65{bottom:799.706667pt;}
.ya2{bottom:808.706667pt;}
.ye1{bottom:810.733333pt;}
.y64{bottom:814.733333pt;}
.y127{bottom:815.733333pt;}
.ya1{bottom:824.733333pt;}
.ye0{bottom:827.733333pt;}
.y63{bottom:829.733333pt;}
.y126{bottom:830.733333pt;}
.ya0{bottom:839.733333pt;}
.y62{bottom:845.733333pt;}
.ydf{bottom:847.773333pt;}
.y9f{bottom:854.773333pt;}
.y61{bottom:860.773333pt;}
.y125{bottom:861.773333pt;}
.yde{bottom:862.773333pt;}
.y9e{bottom:870.773333pt;}
.y60{bottom:875.773333pt;}
.y124{bottom:876.773333pt;}
.ydd{bottom:878.773333pt;}
.y9d{bottom:885.800000pt;}
.y5f{bottom:891.800000pt;}
.ydc{bottom:893.800000pt;}
.y9c{bottom:900.800000pt;}
.y5e{bottom:906.800000pt;}
.y123{bottom:907.800000pt;}
.ydb{bottom:908.800000pt;}
.y9b{bottom:917.800000pt;}
.y122{bottom:920.840000pt;}
.y5d{bottom:921.840000pt;}
.yda{bottom:924.840000pt;}
.yd{bottom:925.840000pt;}
.y9a{bottom:933.840000pt;}
.y5c{bottom:937.840000pt;}
.y121{bottom:938.840000pt;}
.yd9{bottom:939.840000pt;}
.y6{bottom:948.840000pt;}
.y99{bottom:949.840000pt;}
.y5b{bottom:952.840000pt;}
.y120{bottom:956.840000pt;}
.y98{bottom:964.866667pt;}
.y5a{bottom:967.866667pt;}
.yd7{bottom:970.866667pt;}
.y11e{bottom:974.866667pt;}
.y97{bottom:980.866667pt;}
.y59{bottom:983.866667pt;}
.yd6{bottom:988.866667pt;}
.y11d{bottom:992.866667pt;}
.y96{bottom:995.893333pt;}
.y58{bottom:998.893333pt;}
.yd5{bottom:1005.893333pt;}
.y95{bottom:1010.893333pt;}
.y57{bottom:1013.893333pt;}
.yd4{bottom:1023.893333pt;}
.y94{bottom:1027.893333pt;}
.y56{bottom:1029.893333pt;}
.yd3{bottom:1039.933333pt;}
.y93{bottom:1043.933333pt;}
.y55{bottom:1044.933333pt;}
.h29{height:13.000000pt;}
.h24{height:14.986667pt;}
.h21{height:15.000000pt;}
.h1f{height:15.033333pt;}
.h20{height:16.000000pt;}
.h22{height:16.033333pt;}
.h2f{height:17.000000pt;}
.h23{height:17.020000pt;}
.h2e{height:17.033333pt;}
.hc{height:23.000000pt;}
.h13{height:26.625000pt;}
.h14{height:27.033333pt;}
.h2{height:29.033333pt;}
.h25{height:31.000000pt;}
.h12{height:31.828125pt;}
.h2a{height:32.000000pt;}
.h9{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1a{height:35.406250pt;}
.h1c{height:36.308594pt;}
.h1b{height:36.689453pt;}
.h26{height:36.783529pt;}
.h18{height:36.791016pt;}
.h1e{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h19{height:41.843750pt;}
.h6{height:41.894531pt;}
.h2c{height:42.000000pt;}
.h17{height:43.763672pt;}
.h4{height:47.742188pt;}
.h28{height:47.874805pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:56.059115pt;}
.h5{height:61.435547pt;}
.h2d{height:62.000000pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.086667pt;}
.h2b{height:136.000000pt;}
.h27{height:156.000000pt;}
.hd{height:172.160000pt;}
.h16{height:490.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w19{width:8.000000pt;}
.w16{width:15.000000pt;}
.w18{width:18.000000pt;}
.w17{width:24.000000pt;}
.w1e{width:45.000000pt;}
.w1d{width:46.000000pt;}
.w2{width:66.100000pt;}
.w1b{width:85.000000pt;}
.w1c{width:113.000000pt;}
.w1a{width:122.000000pt;}
.w20{width:127.166667pt;}
.w12{width:131.166667pt;}
.w4{width:135.160000pt;}
.w10{width:157.200000pt;}
.w9{width:158.200000pt;}
.wc{width:180.240000pt;}
.wf{width:197.240000pt;}
.w7{width:198.240000pt;}
.wd{width:230.293333pt;}
.wb{width:235.306667pt;}
.we{width:237.306667pt;}
.w13{width:244.306667pt;}
.w21{width:247.333333pt;}
.wa{width:253.333333pt;}
.w14{width:271.360000pt;}
.w1f{width:274.333333pt;}
.w11{width:293.400000pt;}
.w15{width:357.000000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:1.266667pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x16{left:11.040000pt;}
.xf{left:16.000000pt;}
.x32{left:22.026667pt;}
.x30{left:30.033333pt;}
.x50{left:33.360000pt;}
.x4d{left:34.573333pt;}
.x1e{left:48.066667pt;}
.x25{left:49.066667pt;}
.x57{left:51.066667pt;}
.x19{left:54.066667pt;}
.x3a{left:55.106667pt;}
.x35{left:57.106667pt;}
.x48{left:58.506667pt;}
.x10{left:61.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x38{left:66.106667pt;}
.x23{left:69.060000pt;}
.x5c{left:71.100000pt;}
.x4{left:72.099988pt;}
.x29{left:76.093333pt;}
.x26{left:78.093333pt;}
.x20{left:79.100000pt;}
.x27{left:81.093333pt;}
.x5a{left:83.106667pt;}
.x39{left:84.100000pt;}
.x6{left:87.100000pt;}
.x5b{left:88.100000pt;}
.x56{left:89.100000pt;}
.x59{left:90.100000pt;}
.x58{left:92.133333pt;}
.x21{left:93.093333pt;}
.x34{left:95.100000pt;}
.x17{left:96.133322pt;}
.x13{left:99.100000pt;}
.x1b{left:100.133333pt;}
.x1d{left:101.133333pt;}
.x28{left:105.133333pt;}
.x2b{left:106.133333pt;}
.x12{left:107.140000pt;}
.x1f{left:109.133333pt;}
.x2a{left:112.133333pt;}
.x24{left:113.133333pt;}
.x22{left:116.133333pt;}
.x37{left:122.160000pt;}
.x3b{left:123.173333pt;}
.x11{left:125.140000pt;}
.x42{left:127.440000pt;}
.x6d{left:129.166655pt;}
.x36{left:134.200000pt;}
.x2f{left:141.159988pt;}
.x3d{left:150.199988pt;}
.x6e{left:154.199988pt;}
.x43{left:164.000000pt;}
.x2c{left:176.239988pt;}
.x14{left:190.233333pt;}
.x7{left:200.266667pt;}
.x3e{left:205.266667pt;}
.x52{left:211.000000pt;}
.x40{left:218.000000pt;}
.x51{left:223.306655pt;}
.x1a{left:232.306667pt;}
.x53{left:239.306655pt;}
.x18{left:247.306655pt;}
.x2d{left:254.333333pt;}
.xb{left:258.333333pt;}
.x15{left:263.333333pt;}
.x4f{left:266.000000pt;}
.x31{left:271.333333pt;}
.x4e{left:278.359988pt;}
.x4a{left:293.000000pt;}
.x9{left:306.373333pt;}
.xa{left:324.400000pt;}
.xd{left:325.400000pt;}
.xe{left:332.406667pt;}
.x47{left:345.000000pt;}
.x54{left:347.440000pt;}
.x6c{left:353.466655pt;}
.x44{left:366.000000pt;}
.x5d{left:371.466655pt;}
.x5e{left:379.506655pt;}
.x5f{left:390.506655pt;}
.x60{left:398.506655pt;}
.xc{left:403.506667pt;}
.x4c{left:409.000000pt;}
.x4b{left:422.533322pt;}
.x33{left:429.533333pt;}
.x3f{left:451.573333pt;}
.x61{left:465.599988pt;}
.x62{left:473.599988pt;}
.x55{left:475.600000pt;}
.x2e{left:485.640000pt;}
.x1c{left:487.640000pt;}
.x63{left:494.639988pt;}
.x64{left:501.626655pt;}
.x45{left:514.000000pt;}
.x65{left:534.666655pt;}
.x66{left:542.693322pt;}
.x49{left:547.000000pt;}
.x46{left:569.000000pt;}
.x67{left:627.799988pt;}
.x68{left:634.799988pt;}
.x3c{left:638.799988pt;}
.x3{left:663.840000pt;}
.x69{left:682.866655pt;}
.x6a{left:690.866655pt;}
.x6b{left:722.933322pt;}
}




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