
    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_d56454be3f4841d99cfbbd16.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_d647d9a346ca58f6541f7551.woff')format("woff");}.ff2{font-family:ff2;line-height:0.964861;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_f84b60a0ae715744645c08e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_e31ec4e455b6a4b9ae1aa3c7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_39a24a5459b641d7c6dca1b0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_fa1f8b3f434ec25394176be5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_a1328a044c7b8bc0b18f2b8f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bd589a26fae92f43705dff08.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976111;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_6de3f55c96c4be1eb219c327.woff')format("woff");}.ff9{font-family:ff9;line-height:0.771120;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_66ca2d5d90e8479420b8783a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_18c072fd5fdbe8ecb8ea74f8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.964852;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_7f49fda2770ab244a48a8e3a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.031738;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_78f2bcb243afd36ed900bb3b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964844;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_be26acb1ef29bb87a38e0e93.woff')format("woff");}.ffe{font-family:ffe;line-height:0.770020;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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(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;}
.v1{vertical-align:21.978000px;}
.ls8{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.408000px;}
.ls3{letter-spacing:0.000000px;}
.lse{letter-spacing:0.007800px;}
.lsc{letter-spacing:0.010200px;}
.ls1{letter-spacing:0.012000px;}
.lsd{letter-spacing:0.015600px;}
.ls2{letter-spacing:0.025200px;}
.ls5{letter-spacing:0.408000px;}
.lsb{letter-spacing:0.946200px;}
.lsf{letter-spacing:3.015600px;}
.ls9{letter-spacing:4.222200px;}
.ls10{letter-spacing:19.377000px;}
.ls0{letter-spacing:43.181964px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.ws68{word-spacing:-16.434000px;}
.ws3{word-spacing:-14.940000px;}
.ws2b{word-spacing:-14.880000px;}
.ws2a{word-spacing:-14.700000px;}
.ws2c{word-spacing:-14.340000px;}
.ws4c{word-spacing:-14.280000px;}
.ws2d{word-spacing:-14.100000px;}
.ws7{word-spacing:-13.500000px;}
.ws49{word-spacing:-13.446000px;}
.ws69{word-spacing:-13.392000px;}
.ws5{word-spacing:-13.230000px;}
.ws4{word-spacing:-12.150000px;}
.ws8{word-spacing:-11.772000px;}
.ws1{word-spacing:-10.896000px;}
.ws29{word-spacing:-10.800000px;}
.ws9{word-spacing:-10.464000px;}
.ws0{word-spacing:-9.542544px;}
.ws2{word-spacing:-9.417600px;}
.ws77{word-spacing:-6.318000px;}
.ws5f{word-spacing:-5.460000px;}
.ws78{word-spacing:-4.806000px;}
.ws54{word-spacing:-3.540000px;}
.ws83{word-spacing:-2.592000px;}
.ws65{word-spacing:-2.400000px;}
.ws4d{word-spacing:-2.220000px;}
.ws8b{word-spacing:-2.214000px;}
.ws1b{word-spacing:-2.040000px;}
.ws91{word-spacing:-1.998000px;}
.ws57{word-spacing:-1.980000px;}
.ws88{word-spacing:-1.836000px;}
.ws53{word-spacing:-1.740000px;}
.ws41{word-spacing:-1.680000px;}
.ws39{word-spacing:-1.620000px;}
.ws40{word-spacing:-1.560000px;}
.ws4b{word-spacing:-1.296000px;}
.ws79{word-spacing:-0.864000px;}
.ws33{word-spacing:-0.660000px;}
.ws7e{word-spacing:-0.648000px;}
.ws3e{word-spacing:-0.540000px;}
.ws3d{word-spacing:-0.420000px;}
.wsc{word-spacing:-0.408000px;}
.ws24{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.300000px;}
.ws11{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.240000px;}
.wsd{word-spacing:-0.216000px;}
.ws21{word-spacing:-0.120000px;}
.ws13{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.ws58{word-spacing:0.180000px;}
.ws4e{word-spacing:0.240000px;}
.ws34{word-spacing:0.300000px;}
.ws87{word-spacing:0.324000px;}
.ws56{word-spacing:0.360000px;}
.wsb{word-spacing:0.408000px;}
.ws7b{word-spacing:0.486000px;}
.ws46{word-spacing:0.600000px;}
.wse{word-spacing:0.691200px;}
.ws3c{word-spacing:0.720000px;}
.ws28{word-spacing:0.900000px;}
.ws8a{word-spacing:0.918000px;}
.ws50{word-spacing:0.960000px;}
.ws4a{word-spacing:0.972000px;}
.ws32{word-spacing:1.020000px;}
.ws51{word-spacing:1.080000px;}
.ws16{word-spacing:1.200000px;}
.ws12{word-spacing:1.242000px;}
.ws25{word-spacing:1.260000px;}
.ws86{word-spacing:1.296000px;}
.ws85{word-spacing:1.350000px;}
.ws67{word-spacing:1.440000px;}
.ws66{word-spacing:1.500000px;}
.ws4f{word-spacing:1.680000px;}
.ws27{word-spacing:1.920000px;}
.ws59{word-spacing:2.040000px;}
.ws89{word-spacing:2.052000px;}
.ws48{word-spacing:2.100000px;}
.ws17{word-spacing:2.460000px;}
.ws61{word-spacing:2.520000px;}
.ws23{word-spacing:2.700000px;}
.ws43{word-spacing:2.880000px;}
.ws60{word-spacing:3.000000px;}
.ws14{word-spacing:3.060000px;}
.ws5e{word-spacing:3.120000px;}
.ws5d{word-spacing:3.180000px;}
.ws81{word-spacing:3.348000px;}
.ws20{word-spacing:3.360000px;}
.ws80{word-spacing:3.402000px;}
.ws1f{word-spacing:3.420000px;}
.ws42{word-spacing:3.540000px;}
.ws5c{word-spacing:3.600000px;}
.ws5a{word-spacing:3.660000px;}
.ws22{word-spacing:3.720000px;}
.ws26{word-spacing:3.780000px;}
.ws2e{word-spacing:3.900000px;}
.ws7a{word-spacing:3.942000px;}
.ws84{word-spacing:4.266000px;}
.ws15{word-spacing:4.440000px;}
.ws35{word-spacing:4.500000px;}
.ws44{word-spacing:4.800000px;}
.ws45{word-spacing:4.860000px;}
.ws31{word-spacing:5.340000px;}
.ws47{word-spacing:5.460000px;}
.ws90{word-spacing:5.508000px;}
.ws2f{word-spacing:5.520000px;}
.ws7c{word-spacing:5.832000px;}
.ws30{word-spacing:6.120000px;}
.ws1c{word-spacing:6.420000px;}
.ws74{word-spacing:6.600000px;}
.ws36{word-spacing:6.720000px;}
.ws3b{word-spacing:6.840000px;}
.ws3f{word-spacing:7.140000px;}
.ws52{word-spacing:7.260000px;}
.ws5b{word-spacing:7.440000px;}
.ws10{word-spacing:7.668000px;}
.wsf{word-spacing:7.722000px;}
.ws55{word-spacing:7.740000px;}
.ws7d{word-spacing:7.884000px;}
.ws18{word-spacing:8.100000px;}
.ws38{word-spacing:8.400000px;}
.ws1e{word-spacing:8.760000px;}
.ws1d{word-spacing:8.820000px;}
.ws82{word-spacing:9.126000px;}
.ws7f{word-spacing:9.342000px;}
.ws8d{word-spacing:9.504000px;}
.ws8c{word-spacing:9.612000px;}
.ws76{word-spacing:10.530000px;}
.ws37{word-spacing:10.740000px;}
.ws8f{word-spacing:11.394000px;}
.ws8e{word-spacing:11.502000px;}
.ws75{word-spacing:14.472000px;}
.ws63{word-spacing:19.200000px;}
.ws64{word-spacing:19.380000px;}
.ws62{word-spacing:19.500000px;}
.ws6f{word-spacing:304.200600px;}
.ws6b{word-spacing:342.441600px;}
.ws72{word-spacing:404.480400px;}
.ws6a{word-spacing:415.892400px;}
.ws73{word-spacing:444.147600px;}
.ws6d{word-spacing:450.001200px;}
.ws70{word-spacing:496.374600px;}
.ws71{word-spacing:559.669200px;}
.ws6c{word-spacing:590.378400px;}
.ws6e{word-spacing:620.162400px;}
._8{margin-left:-10.635600px;}
._7{margin-left:-7.530000px;}
._6{margin-left:-6.481800px;}
._0{margin-left:-4.957200px;}
._b{margin-left:-3.792600px;}
._5{margin-left:-2.769600px;}
._3{margin-left:-1.113600px;}
._2{width:1.203600px;}
._1{width:2.529600px;}
._9{width:3.834000px;}
._c{width:4.837200px;}
._d{width:6.654000px;}
._25{width:7.695600px;}
._a{width:8.736000px;}
._24{width:14.747400px;}
._4{width:36.624000px;}
._e{width:42.574800px;}
._20{width:132.454800px;}
._1a{width:135.426600px;}
._13{width:144.604200px;}
._1b{width:154.244400px;}
._23{width:186.882000px;}
._12{width:212.651400px;}
._22{width:221.529600px;}
._10{width:235.975200px;}
._11{width:263.247600px;}
._19{width:303.126600px;}
._16{width:314.318400px;}
._1d{width:329.710200px;}
._1c{width:337.219200px;}
._15{width:338.463600px;}
._21{width:339.479400px;}
._14{width:345.049800px;}
._f{width:370.818600px;}
._18{width:484.135200px;}
._17{width:485.606400px;}
._1f{width:623.656800px;}
._1e{width:714.927000px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y37{bottom:71.212050px;}
.y38{bottom:75.036150px;}
.y96{bottom:113.078700px;}
.y62{bottom:113.078850px;}
.y2a{bottom:117.212550px;}
.yd{bottom:117.875550px;}
.y65{bottom:120.500850px;}
.yc{bottom:132.275550px;}
.y95{bottom:134.078700px;}
.y61{bottom:134.078850px;}
.y29{bottom:138.212550px;}
.y64{bottom:140.300850px;}
.yb{bottom:146.675550px;}
.y94{bottom:155.078700px;}
.y60{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y63{bottom:160.100850px;}
.ya{bottom:161.075550px;}
.ya1{bottom:169.441050px;}
.y93{bottom:176.078700px;}
.y27{bottom:180.212550px;}
.y92{bottom:197.078700px;}
.y5f{bottom:197.078850px;}
.y26{bottom:201.212550px;}
.y34{bottom:203.413500px;}
.y91{bottom:218.078700px;}
.y5e{bottom:218.078850px;}
.y33{bottom:221.413500px;}
.y25{bottom:222.212550px;}
.y90{bottom:239.078700px;}
.y5d{bottom:239.078850px;}
.y32{bottom:239.413500px;}
.y24{bottom:243.212550px;}
.ya0{bottom:244.529400px;}
.y31{bottom:257.413500px;}
.y8f{bottom:260.078700px;}
.ybd{bottom:260.078850px;}
.y23{bottom:264.212550px;}
.y5c{bottom:274.441050px;}
.y30{bottom:275.413500px;}
.y8e{bottom:281.078700px;}
.y9f{bottom:281.078850px;}
.y22{bottom:285.212550px;}
.y2f{bottom:293.413500px;}
.y8d{bottom:302.078700px;}
.ybc{bottom:302.078850px;}
.y21{bottom:306.212550px;}
.y9e{bottom:307.529400px;}
.y8c{bottom:323.078700px;}
.y5b{bottom:323.078850px;}
.y20{bottom:327.212550px;}
.y2e{bottom:328.421400px;}
.y8b{bottom:344.078700px;}
.y5a{bottom:344.078850px;}
.y2d{bottom:346.421400px;}
.y1f{bottom:348.212550px;}
.y2c{bottom:364.421400px;}
.y8a{bottom:365.078700px;}
.y59{bottom:365.078850px;}
.y1e{bottom:369.212550px;}
.y2b{bottom:382.421400px;}
.y89{bottom:386.078700px;}
.y58{bottom:386.078850px;}
.y1d{bottom:390.212550px;}
.y9d{bottom:391.529400px;}
.y88{bottom:407.078700px;}
.y57{bottom:407.078850px;}
.y1c{bottom:411.212550px;}
.y87{bottom:428.078700px;}
.y56{bottom:428.078850px;}
.y1b{bottom:432.212550px;}
.y86{bottom:449.078700px;}
.y55{bottom:449.078850px;}
.y1a{bottom:453.212550px;}
.y85{bottom:470.078700px;}
.y54{bottom:470.078850px;}
.y19{bottom:474.212550px;}
.y84{bottom:491.078700px;}
.y53{bottom:491.078850px;}
.y18{bottom:495.212550px;}
.y9c{bottom:496.529400px;}
.y83{bottom:512.078700px;}
.y52{bottom:512.078850px;}
.y17{bottom:516.212550px;}
.y82{bottom:533.078700px;}
.y51{bottom:533.078850px;}
.y16{bottom:548.544450px;}
.y81{bottom:554.078700px;}
.ybb{bottom:554.078850px;}
.y9b{bottom:559.529400px;}
.y50{bottom:567.513600px;}
.y80{bottom:575.078700px;}
.yba{bottom:575.078850px;}
.y7f{bottom:596.078700px;}
.y9a{bottom:596.078850px;}
.y4f{bottom:599.811150px;}
.y7e{bottom:617.078700px;}
.yb9{bottom:617.078850px;}
.y99{bottom:622.937100px;}
.y7d{bottom:638.078700px;}
.yb8{bottom:638.078850px;}
.y15{bottom:641.827950px;}
.y98{bottom:652.441050px;}
.y7c{bottom:659.078700px;}
.y4e{bottom:659.078850px;}
.y7b{bottom:680.078700px;}
.y4d{bottom:680.078850px;}
.y14{bottom:682.887750px;}
.y7a{bottom:701.078700px;}
.y4c{bottom:701.078850px;}
.y13{bottom:702.687750px;}
.y79{bottom:722.078700px;}
.y4b{bottom:722.078850px;}
.y12{bottom:722.487750px;}
.y11{bottom:742.287750px;}
.y78{bottom:743.078700px;}
.y4a{bottom:743.078850px;}
.y97{bottom:756.106350px;}
.y10{bottom:762.087750px;}
.y77{bottom:764.078700px;}
.y49{bottom:764.078850px;}
.y76{bottom:785.078700px;}
.y48{bottom:785.078850px;}
.yf{bottom:793.185300px;}
.yb4{bottom:803.753700px;}
.y75{bottom:806.078700px;}
.y47{bottom:806.078850px;}
.yb3{bottom:821.257650px;}
.y74{bottom:827.078700px;}
.y46{bottom:827.078850px;}
.yb2{bottom:838.761600px;}
.y73{bottom:848.078700px;}
.yb7{bottom:848.078850px;}
.yb1{bottom:856.265400px;}
.y45{bottom:862.441050px;}
.y72{bottom:869.078700px;}
.yb6{bottom:869.078850px;}
.y9{bottom:872.466750px;}
.yb0{bottom:873.769350px;}
.yaf{bottom:888.769350px;}
.y71{bottom:890.078700px;}
.yb5{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.yae{bottom:906.273450px;}
.y7{bottom:908.466750px;}
.y70{bottom:911.078700px;}
.y44{bottom:911.078850px;}
.yad{bottom:923.777400px;}
.y6{bottom:926.466750px;}
.y6f{bottom:932.078700px;}
.y43{bottom:932.078850px;}
.yac{bottom:941.281200px;}
.y5{bottom:944.466750px;}
.y6e{bottom:953.078700px;}
.y42{bottom:953.078850px;}
.yab{bottom:956.281200px;}
.yaa{bottom:973.785150px;}
.y6d{bottom:974.078700px;}
.y41{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ya9{bottom:988.785150px;}
.y6c{bottom:995.078700px;}
.y40{bottom:995.078850px;}
.ya8{bottom:1006.289100px;}
.y6b{bottom:1016.078700px;}
.y3f{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ya7{bottom:1023.793050px;}
.y6a{bottom:1037.078700px;}
.y3e{bottom:1037.078850px;}
.ya6{bottom:1038.793050px;}
.y2{bottom:1049.282550px;}
.ya5{bottom:1056.297000px;}
.y69{bottom:1058.078700px;}
.y3d{bottom:1058.078850px;}
.ya4{bottom:1071.297000px;}
.y68{bottom:1079.078700px;}
.y3c{bottom:1079.078850px;}
.ya3{bottom:1088.800950px;}
.y67{bottom:1100.078700px;}
.y3b{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.ya2{bottom:1119.282900px;}
.y66{bottom:1121.078700px;}
.y3a{bottom:1121.078850px;}
.y36{bottom:1155.615300px;}
.y35{bottom:1175.115300px;}
.y39{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h12{height:36.492188px;}
.h2{height:38.039062px;}
.he{height:38.273438px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.h11{height:43.321289px;}
.h9{height:43.875000px;}
.h8{height:45.615234px;}
.hf{height:48.134766px;}
.hb{height:48.750000px;}
.h10{height:50.176758px;}
.h4{height:53.625000px;}
.ha{height:54.738281px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xb{left:108.286950px;}
.xe{left:112.251900px;}
.x5{left:119.496900px;}
.x6{left:120.968250px;}
.x7{left:123.341250px;}
.xd{left:143.369250px;}
.xf{left:263.881650px;}
.x10{left:265.261500px;}
.x1c{left:270.069600px;}
.x12{left:294.685800px;}
.x17{left:295.960200px;}
.x4{left:300.189000px;}
.xc{left:317.196900px;}
.x3{left:396.050700px;}
.x1d{left:445.588650px;}
.x13{left:451.169700px;}
.x1e{left:452.623200px;}
.x18{left:454.383900px;}
.x19{left:489.424650px;}
.x14{left:499.567800px;}
.x15{left:631.870800px;}
.x1f{left:634.566450px;}
.x1a{left:635.585700px;}
.x9{left:648.686550px;}
.x8{left:668.350500px;}
.x1b{left:681.188550px;}
.x16{left:691.331700px;}
.x11{left:703.249950px;}
.x1{left:801.339150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.362667pt;}
.ls3{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.006933pt;}
.lsc{letter-spacing:0.009067pt;}
.ls1{letter-spacing:0.010667pt;}
.lsd{letter-spacing:0.013867pt;}
.ls2{letter-spacing:0.022400pt;}
.ls5{letter-spacing:0.362667pt;}
.lsb{letter-spacing:0.841067pt;}
.lsf{letter-spacing:2.680533pt;}
.ls9{letter-spacing:3.753067pt;}
.ls10{letter-spacing:17.224000pt;}
.ls0{letter-spacing:38.383968pt;}
.ws6{word-spacing:-15.936000pt;}
.ws68{word-spacing:-14.608000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2b{word-spacing:-13.226667pt;}
.ws2a{word-spacing:-13.066667pt;}
.ws2c{word-spacing:-12.746667pt;}
.ws4c{word-spacing:-12.693333pt;}
.ws2d{word-spacing:-12.533333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws49{word-spacing:-11.952000pt;}
.ws69{word-spacing:-11.904000pt;}
.ws5{word-spacing:-11.760000pt;}
.ws4{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.464000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws29{word-spacing:-9.600000pt;}
.ws9{word-spacing:-9.301333pt;}
.ws0{word-spacing:-8.482261pt;}
.ws2{word-spacing:-8.371200pt;}
.ws77{word-spacing:-5.616000pt;}
.ws5f{word-spacing:-4.853333pt;}
.ws78{word-spacing:-4.272000pt;}
.ws54{word-spacing:-3.146667pt;}
.ws83{word-spacing:-2.304000pt;}
.ws65{word-spacing:-2.133333pt;}
.ws4d{word-spacing:-1.973333pt;}
.ws8b{word-spacing:-1.968000pt;}
.ws1b{word-spacing:-1.813333pt;}
.ws91{word-spacing:-1.776000pt;}
.ws57{word-spacing:-1.760000pt;}
.ws88{word-spacing:-1.632000pt;}
.ws53{word-spacing:-1.546667pt;}
.ws41{word-spacing:-1.493333pt;}
.ws39{word-spacing:-1.440000pt;}
.ws40{word-spacing:-1.386667pt;}
.ws4b{word-spacing:-1.152000pt;}
.ws79{word-spacing:-0.768000pt;}
.ws33{word-spacing:-0.586667pt;}
.ws7e{word-spacing:-0.576000pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws3d{word-spacing:-0.373333pt;}
.wsc{word-spacing:-0.362667pt;}
.ws24{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws11{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.213333pt;}
.wsd{word-spacing:-0.192000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws13{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.ws58{word-spacing:0.160000pt;}
.ws4e{word-spacing:0.213333pt;}
.ws34{word-spacing:0.266667pt;}
.ws87{word-spacing:0.288000pt;}
.ws56{word-spacing:0.320000pt;}
.wsb{word-spacing:0.362667pt;}
.ws7b{word-spacing:0.432000pt;}
.ws46{word-spacing:0.533333pt;}
.wse{word-spacing:0.614400pt;}
.ws3c{word-spacing:0.640000pt;}
.ws28{word-spacing:0.800000pt;}
.ws8a{word-spacing:0.816000pt;}
.ws50{word-spacing:0.853333pt;}
.ws4a{word-spacing:0.864000pt;}
.ws32{word-spacing:0.906667pt;}
.ws51{word-spacing:0.960000pt;}
.ws16{word-spacing:1.066667pt;}
.ws12{word-spacing:1.104000pt;}
.ws25{word-spacing:1.120000pt;}
.ws86{word-spacing:1.152000pt;}
.ws85{word-spacing:1.200000pt;}
.ws67{word-spacing:1.280000pt;}
.ws66{word-spacing:1.333333pt;}
.ws4f{word-spacing:1.493333pt;}
.ws27{word-spacing:1.706667pt;}
.ws59{word-spacing:1.813333pt;}
.ws89{word-spacing:1.824000pt;}
.ws48{word-spacing:1.866667pt;}
.ws17{word-spacing:2.186667pt;}
.ws61{word-spacing:2.240000pt;}
.ws23{word-spacing:2.400000pt;}
.ws43{word-spacing:2.560000pt;}
.ws60{word-spacing:2.666667pt;}
.ws14{word-spacing:2.720000pt;}
.ws5e{word-spacing:2.773333pt;}
.ws5d{word-spacing:2.826667pt;}
.ws81{word-spacing:2.976000pt;}
.ws20{word-spacing:2.986667pt;}
.ws80{word-spacing:3.024000pt;}
.ws1f{word-spacing:3.040000pt;}
.ws42{word-spacing:3.146667pt;}
.ws5c{word-spacing:3.200000pt;}
.ws5a{word-spacing:3.253333pt;}
.ws22{word-spacing:3.306667pt;}
.ws26{word-spacing:3.360000pt;}
.ws2e{word-spacing:3.466667pt;}
.ws7a{word-spacing:3.504000pt;}
.ws84{word-spacing:3.792000pt;}
.ws15{word-spacing:3.946667pt;}
.ws35{word-spacing:4.000000pt;}
.ws44{word-spacing:4.266667pt;}
.ws45{word-spacing:4.320000pt;}
.ws31{word-spacing:4.746667pt;}
.ws47{word-spacing:4.853333pt;}
.ws90{word-spacing:4.896000pt;}
.ws2f{word-spacing:4.906667pt;}
.ws7c{word-spacing:5.184000pt;}
.ws30{word-spacing:5.440000pt;}
.ws1c{word-spacing:5.706667pt;}
.ws74{word-spacing:5.866667pt;}
.ws36{word-spacing:5.973333pt;}
.ws3b{word-spacing:6.080000pt;}
.ws3f{word-spacing:6.346667pt;}
.ws52{word-spacing:6.453333pt;}
.ws5b{word-spacing:6.613333pt;}
.ws10{word-spacing:6.816000pt;}
.wsf{word-spacing:6.864000pt;}
.ws55{word-spacing:6.880000pt;}
.ws7d{word-spacing:7.008000pt;}
.ws18{word-spacing:7.200000pt;}
.ws38{word-spacing:7.466667pt;}
.ws1e{word-spacing:7.786667pt;}
.ws1d{word-spacing:7.840000pt;}
.ws82{word-spacing:8.112000pt;}
.ws7f{word-spacing:8.304000pt;}
.ws8d{word-spacing:8.448000pt;}
.ws8c{word-spacing:8.544000pt;}
.ws76{word-spacing:9.360000pt;}
.ws37{word-spacing:9.546667pt;}
.ws8f{word-spacing:10.128000pt;}
.ws8e{word-spacing:10.224000pt;}
.ws75{word-spacing:12.864000pt;}
.ws63{word-spacing:17.066667pt;}
.ws64{word-spacing:17.226667pt;}
.ws62{word-spacing:17.333333pt;}
.ws6f{word-spacing:270.400533pt;}
.ws6b{word-spacing:304.392533pt;}
.ws72{word-spacing:359.538133pt;}
.ws6a{word-spacing:369.682133pt;}
.ws73{word-spacing:394.797867pt;}
.ws6d{word-spacing:400.001067pt;}
.ws70{word-spacing:441.221867pt;}
.ws71{word-spacing:497.483733pt;}
.ws6c{word-spacing:524.780800pt;}
.ws6e{word-spacing:551.255467pt;}
._8{margin-left:-9.453867pt;}
._7{margin-left:-6.693333pt;}
._6{margin-left:-5.761600pt;}
._0{margin-left:-4.406400pt;}
._b{margin-left:-3.371200pt;}
._5{margin-left:-2.461867pt;}
._3{margin-left:-0.989867pt;}
._2{width:1.069867pt;}
._1{width:2.248533pt;}
._9{width:3.408000pt;}
._c{width:4.299733pt;}
._d{width:5.914667pt;}
._25{width:6.840533pt;}
._a{width:7.765333pt;}
._24{width:13.108800pt;}
._4{width:32.554667pt;}
._e{width:37.844267pt;}
._20{width:117.737600pt;}
._1a{width:120.379200pt;}
._13{width:128.537067pt;}
._1b{width:137.106133pt;}
._23{width:166.117333pt;}
._12{width:189.023467pt;}
._22{width:196.915200pt;}
._10{width:209.755733pt;}
._11{width:233.997867pt;}
._19{width:269.445867pt;}
._16{width:279.394133pt;}
._1d{width:293.075733pt;}
._1c{width:299.750400pt;}
._15{width:300.856533pt;}
._21{width:301.759467pt;}
._14{width:306.710933pt;}
._f{width:329.616533pt;}
._18{width:430.342400pt;}
._17{width:431.650133pt;}
._1f{width:554.361600pt;}
._1e{width:635.490667pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y37{bottom:63.299600pt;}
.y38{bottom:66.698800pt;}
.y96{bottom:100.514400pt;}
.y62{bottom:100.514533pt;}
.y2a{bottom:104.188933pt;}
.yd{bottom:104.778267pt;}
.y65{bottom:107.111867pt;}
.yc{bottom:117.578267pt;}
.y95{bottom:119.181067pt;}
.y61{bottom:119.181200pt;}
.y29{bottom:122.855600pt;}
.y64{bottom:124.711867pt;}
.yb{bottom:130.378267pt;}
.y94{bottom:137.847733pt;}
.y60{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y63{bottom:142.311867pt;}
.ya{bottom:143.178267pt;}
.ya1{bottom:150.614267pt;}
.y93{bottom:156.514400pt;}
.y27{bottom:160.188933pt;}
.y92{bottom:175.181067pt;}
.y5f{bottom:175.181200pt;}
.y26{bottom:178.855600pt;}
.y34{bottom:180.812000pt;}
.y91{bottom:193.847733pt;}
.y5e{bottom:193.847867pt;}
.y33{bottom:196.812000pt;}
.y25{bottom:197.522267pt;}
.y90{bottom:212.514400pt;}
.y5d{bottom:212.514533pt;}
.y32{bottom:212.812000pt;}
.y24{bottom:216.188933pt;}
.ya0{bottom:217.359467pt;}
.y31{bottom:228.812000pt;}
.y8f{bottom:231.181067pt;}
.ybd{bottom:231.181200pt;}
.y23{bottom:234.855600pt;}
.y5c{bottom:243.947600pt;}
.y30{bottom:244.812000pt;}
.y8e{bottom:249.847733pt;}
.y9f{bottom:249.847867pt;}
.y22{bottom:253.522267pt;}
.y2f{bottom:260.812000pt;}
.y8d{bottom:268.514400pt;}
.ybc{bottom:268.514533pt;}
.y21{bottom:272.188933pt;}
.y9e{bottom:273.359467pt;}
.y8c{bottom:287.181067pt;}
.y5b{bottom:287.181200pt;}
.y20{bottom:290.855600pt;}
.y2e{bottom:291.930133pt;}
.y8b{bottom:305.847733pt;}
.y5a{bottom:305.847867pt;}
.y2d{bottom:307.930133pt;}
.y1f{bottom:309.522267pt;}
.y2c{bottom:323.930133pt;}
.y8a{bottom:324.514400pt;}
.y59{bottom:324.514533pt;}
.y1e{bottom:328.188933pt;}
.y2b{bottom:339.930133pt;}
.y89{bottom:343.181067pt;}
.y58{bottom:343.181200pt;}
.y1d{bottom:346.855600pt;}
.y9d{bottom:348.026133pt;}
.y88{bottom:361.847733pt;}
.y57{bottom:361.847867pt;}
.y1c{bottom:365.522267pt;}
.y87{bottom:380.514400pt;}
.y56{bottom:380.514533pt;}
.y1b{bottom:384.188933pt;}
.y86{bottom:399.181067pt;}
.y55{bottom:399.181200pt;}
.y1a{bottom:402.855600pt;}
.y85{bottom:417.847733pt;}
.y54{bottom:417.847867pt;}
.y19{bottom:421.522267pt;}
.y84{bottom:436.514400pt;}
.y53{bottom:436.514533pt;}
.y18{bottom:440.188933pt;}
.y9c{bottom:441.359467pt;}
.y83{bottom:455.181067pt;}
.y52{bottom:455.181200pt;}
.y17{bottom:458.855600pt;}
.y82{bottom:473.847733pt;}
.y51{bottom:473.847867pt;}
.y16{bottom:487.595067pt;}
.y81{bottom:492.514400pt;}
.ybb{bottom:492.514533pt;}
.y9b{bottom:497.359467pt;}
.y50{bottom:504.456533pt;}
.y80{bottom:511.181067pt;}
.yba{bottom:511.181200pt;}
.y7f{bottom:529.847733pt;}
.y9a{bottom:529.847867pt;}
.y4f{bottom:533.165467pt;}
.y7e{bottom:548.514400pt;}
.yb9{bottom:548.514533pt;}
.y99{bottom:553.721867pt;}
.y7d{bottom:567.181067pt;}
.yb8{bottom:567.181200pt;}
.y15{bottom:570.513733pt;}
.y98{bottom:579.947600pt;}
.y7c{bottom:585.847733pt;}
.y4e{bottom:585.847867pt;}
.y7b{bottom:604.514400pt;}
.y4d{bottom:604.514533pt;}
.y14{bottom:607.011333pt;}
.y7a{bottom:623.181067pt;}
.y4c{bottom:623.181200pt;}
.y13{bottom:624.611333pt;}
.y79{bottom:641.847733pt;}
.y4b{bottom:641.847867pt;}
.y12{bottom:642.211333pt;}
.y11{bottom:659.811333pt;}
.y78{bottom:660.514400pt;}
.y4a{bottom:660.514533pt;}
.y97{bottom:672.094533pt;}
.y10{bottom:677.411333pt;}
.y77{bottom:679.181067pt;}
.y49{bottom:679.181200pt;}
.y76{bottom:697.847733pt;}
.y48{bottom:697.847867pt;}
.yf{bottom:705.053600pt;}
.yb4{bottom:714.447733pt;}
.y75{bottom:716.514400pt;}
.y47{bottom:716.514533pt;}
.yb3{bottom:730.006800pt;}
.y74{bottom:735.181067pt;}
.y46{bottom:735.181200pt;}
.yb2{bottom:745.565867pt;}
.y73{bottom:753.847733pt;}
.yb7{bottom:753.847867pt;}
.yb1{bottom:761.124800pt;}
.y45{bottom:766.614267pt;}
.y72{bottom:772.514400pt;}
.yb6{bottom:772.514533pt;}
.y9{bottom:775.526000pt;}
.yb0{bottom:776.683867pt;}
.yaf{bottom:790.017200pt;}
.y71{bottom:791.181067pt;}
.yb5{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.yae{bottom:805.576400pt;}
.y7{bottom:807.526000pt;}
.y70{bottom:809.847733pt;}
.y44{bottom:809.847867pt;}
.yad{bottom:821.135467pt;}
.y6{bottom:823.526000pt;}
.y6f{bottom:828.514400pt;}
.y43{bottom:828.514533pt;}
.yac{bottom:836.694400pt;}
.y5{bottom:839.526000pt;}
.y6e{bottom:847.181067pt;}
.y42{bottom:847.181200pt;}
.yab{bottom:850.027733pt;}
.yaa{bottom:865.586800pt;}
.y6d{bottom:865.847733pt;}
.y41{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ya9{bottom:878.920133pt;}
.y6c{bottom:884.514400pt;}
.y40{bottom:884.514533pt;}
.ya8{bottom:894.479200pt;}
.y6b{bottom:903.181067pt;}
.y3f{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ya7{bottom:910.038267pt;}
.y6a{bottom:921.847733pt;}
.y3e{bottom:921.847867pt;}
.ya6{bottom:923.371600pt;}
.y2{bottom:932.695600pt;}
.ya5{bottom:938.930667pt;}
.y69{bottom:940.514400pt;}
.y3d{bottom:940.514533pt;}
.ya4{bottom:952.264000pt;}
.y68{bottom:959.181067pt;}
.y3c{bottom:959.181200pt;}
.ya3{bottom:967.823067pt;}
.y67{bottom:977.847733pt;}
.y3b{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.ya2{bottom:994.918133pt;}
.y66{bottom:996.514400pt;}
.y3a{bottom:996.514533pt;}
.y36{bottom:1027.213600pt;}
.y35{bottom:1044.546933pt;}
.y39{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h12{height:32.437500pt;}
.h2{height:33.812500pt;}
.he{height:34.020833pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.h11{height:38.507812pt;}
.h9{height:39.000000pt;}
.h8{height:40.546875pt;}
.hf{height:42.786458pt;}
.hb{height:43.333333pt;}
.h10{height:44.601562pt;}
.h4{height:47.666667pt;}
.ha{height:48.656250pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xb{left:96.255067pt;}
.xe{left:99.779467pt;}
.x5{left:106.219467pt;}
.x6{left:107.527333pt;}
.x7{left:109.636667pt;}
.xd{left:127.439333pt;}
.xf{left:234.561467pt;}
.x10{left:235.788000pt;}
.x1c{left:240.061867pt;}
.x12{left:261.942933pt;}
.x17{left:263.075733pt;}
.x4{left:266.834667pt;}
.xc{left:281.952800pt;}
.x3{left:352.045067pt;}
.x1d{left:396.078800pt;}
.x13{left:401.039733pt;}
.x1e{left:402.331733pt;}
.x18{left:403.896800pt;}
.x19{left:435.044133pt;}
.x14{left:444.060267pt;}
.x15{left:561.662933pt;}
.x1f{left:564.059067pt;}
.x1a{left:564.965067pt;}
.x9{left:576.610267pt;}
.x8{left:594.089333pt;}
.x1b{left:605.500933pt;}
.x16{left:614.517067pt;}
.x11{left:625.111067pt;}
.x1{left:712.301467pt;}
}




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