
    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_0d570afae002daf004ed20b7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_a0ed51ad242309ebf518f2e0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_bdec7298cf3a40e2c2302abd.woff')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_54e5b57272620d690572397f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_f6e80a1dbb91d5a5d223d18c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_7afa0bfc4750a837777df829.woff')format("woff");}.ff6{font-family:ff6;line-height:0.822754;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_4ae0be28366dc34feae5d9e7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.012207;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_a8c1741c3ac77be02fcb87f1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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_26b4212569441cbcffe3b4b1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.128906;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_21fd10ebf4dc5a9a89212597.woff')format("woff");}.ffa{font-family:ffa;line-height:0.707520;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_32ec4bcfa753d49aab93313d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.906738;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_d25a400d0b7321c2427f7eeb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.827637;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_af41dbff9d6355d372d2743f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.128906;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_f3f151e08e1c8f1fed65fef8.woff')format("woff");}.ffe{font-family:ffe;line-height:1.128906;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_ae798dcfe5e559fb33a0d22c.woff')format("woff");}.fff{font-family:fff;line-height:0.884277;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_6b267cb35226c4b5fc728f71.woff')format("woff");}.ff10{font-family:ff10;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f62e54d19a123e458070a3d5.woff')format("woff");}.ff11{font-family:ff11;line-height:1.128906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4bbc2088fec2ccd2b1ffd154.woff')format("woff");}.ff12{font-family:ff12;line-height:1.128906;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:ff13;src:url('chunks/assets/font_79e2b840bdfe60dfe1b2f2a2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.884277;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:ff14;src:url('chunks/assets/font_7046a0fe26f3b18817b0da70.woff')format("woff");}.ff14{font-family:ff14;line-height:1.128906;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:ff15;src:url('chunks/assets/font_f40502646bd6898353974891.woff')format("woff");}.ff15{font-family:ff15;line-height:1.012207;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:ff16;src:url('chunks/assets/font_b3ba33277d36628bca1a1d89.woff')format("woff");}.ff16{font-family:ff16;line-height:0.769043;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:ff17;src:url('chunks/assets/font_dba5c6d9876c6e282ac30fb7.woff')format("woff");}.ff17{font-family:ff17;line-height:1.012207;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:ff18;src:url('chunks/assets/font_08200e7a40e15ea4b713a72e.woff')format("woff");}.ff18{font-family:ff18;line-height:1.128906;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:ff19;src:url('chunks/assets/font_d4d8e362b8128d4d1ea3bc58.woff')format("woff");}.ff19{font-family:ff19;line-height:1.128906;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.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,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);}
.m4{transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264150,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v13{vertical-align:-43.200000px;}
.v11{vertical-align:-13.199400px;}
.v10{vertical-align:-11.700000px;}
.vb{vertical-align:-8.700000px;}
.ve{vertical-align:-7.200000px;}
.vc{vertical-align:-4.200060px;}
.v9{vertical-align:-2.699700px;}
.v8{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.500000px;}
.v2{vertical-align:3.000000px;}
.v6{vertical-align:4.199700px;}
.v1{vertical-align:5.700060px;}
.v3{vertical-align:7.199400px;}
.vd{vertical-align:10.200000px;}
.va{vertical-align:14.399400px;}
.v7{vertical-align:27.299400px;}
.v4{vertical-align:37.200000px;}
.vf{vertical-align:44.700000px;}
.v12{vertical-align:61.800000px;}
.ls9{letter-spacing:-6.000000px;}
.ls8{letter-spacing:-3.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:5.225400px;}
.ls2{letter-spacing:6.000000px;}
.lsa{letter-spacing:13.374000px;}
.lsb{letter-spacing:13.470000px;}
.ls6{letter-spacing:15.057000px;}
.ls7{letter-spacing:24.000000px;}
.ls0{letter-spacing:66.210000px;}
.ls3{letter-spacing:99.306000px;}
.ls5{letter-spacing:118.644000px;}
.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;}
}
.ws7{word-spacing:-68.694000px;}
.wse{word-spacing:-51.570000px;}
.ws1{word-spacing:-27.690000px;}
.ws2{word-spacing:-23.352000px;}
.ws0{word-spacing:-21.690000px;}
.ws6{word-spacing:-19.608000px;}
.wsa{word-spacing:-7.686000px;}
.wsc{word-spacing:-6.507000px;}
.wsd{word-spacing:-4.686000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:2.808000px;}
.ws4{word-spacing:13.860000px;}
.ws8{word-spacing:62.550000px;}
.ws5{word-spacing:71.664000px;}
.wsb{word-spacing:1256.010000px;}
._51{margin-left:-56.196000px;}
._5e{margin-left:-48.756000px;}
._46{margin-left:-43.200000px;}
._58{margin-left:-41.112000px;}
._2e{margin-left:-36.540000px;}
._49{margin-left:-34.830000px;}
._45{margin-left:-32.040000px;}
._44{margin-left:-29.700000px;}
._2f{margin-left:-27.450000px;}
._2c{margin-left:-26.262000px;}
._2d{margin-left:-23.844600px;}
._29{margin-left:-21.822000px;}
._36{margin-left:-19.620000px;}
._3a{margin-left:-18.558000px;}
._25{margin-left:-17.214000px;}
._42{margin-left:-15.522000px;}
._2a{margin-left:-14.238000px;}
._37{margin-left:-13.188000px;}
._19{margin-left:-12.030000px;}
._18{margin-left:-10.440000px;}
._1c{margin-left:-9.180000px;}
._15{margin-left:-7.470000px;}
._1d{margin-left:-6.126000px;}
._12{margin-left:-4.680000px;}
._f{margin-left:-3.420000px;}
._10{margin-left:-1.620000px;}
._8{width:1.350000px;}
._7{width:3.060000px;}
._e{width:4.500000px;}
._1a{width:5.874000px;}
._31{width:6.990000px;}
._d{width:8.010000px;}
._b{width:9.630000px;}
._a{width:10.890000px;}
._5a{width:11.922000px;}
._3{width:13.050000px;}
._35{width:14.436000px;}
._2{width:15.840000px;}
._5{width:17.280000px;}
._33{width:18.372000px;}
._4{width:19.530000px;}
._2b{width:20.964000px;}
._28{width:22.302000px;}
._39{width:23.382000px;}
._1b{width:24.390000px;}
._14{width:25.470000px;}
._11{width:26.910000px;}
._17{width:28.350000px;}
._26{width:29.448000px;}
._13{width:30.780000px;}
._23{width:31.806000px;}
._21{width:33.570000px;}
._16{width:34.740000px;}
._34{width:35.754000px;}
._20{width:37.266000px;}
._22{width:39.150000px;}
._60{width:40.170000px;}
._32{width:41.328000px;}
._4f{width:42.684000px;}
._24{width:43.746000px;}
._6{width:44.910000px;}
._1e{width:46.530000px;}
._27{width:48.108000px;}
._63{width:49.266000px;}
._c{width:50.310000px;}
._40{width:51.684000px;}
._62{width:53.022000px;}
._1f{width:54.450000px;}
._5f{width:56.670000px;}
._69{width:57.696000px;}
._3c{width:59.094000px;}
._68{width:60.648000px;}
._0{width:61.920000px;}
._61{width:63.348000px;}
._64{width:66.486000px;}
._6a{width:70.956000px;}
._1{width:72.360000px;}
._9{width:75.870000px;}
._65{width:84.240000px;}
._38{width:90.930600px;}
._30{width:93.150000px;}
._66{width:94.860000px;}
._5d{width:96.324000px;}
._4e{width:109.230000px;}
._67{width:110.724000px;}
._54{width:128.126400px;}
._47{width:132.767400px;}
._3b{width:281.910000px;}
._3d{width:287.658000px;}
._4d{width:369.648000px;}
._41{width:376.536000px;}
._59{width:453.498000px;}
._43{width:454.776000px;}
._50{width:460.488000px;}
._4c{width:463.194600px;}
._48{width:466.380000px;}
._57{width:470.682000px;}
._3e{width:477.582000px;}
._3f{width:486.216000px;}
._56{width:521.058000px;}
._53{width:529.662000px;}
._55{width:538.230000px;}
._5b{width:540.042000px;}
._4a{width:552.480000px;}
._5c{width:555.330000px;}
._4b{width:570.783000px;}
._52{width:575.370000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs4{font-size:21.000000px;}
.fsa{font-size:27.000000px;}
.fs7{font-size:39.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:57.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fsd{font-size:96.000000px;}
.fsb{font-size:102.000000px;}
.fs9{font-size:120.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y56{bottom:72.750000px;}
.y55{bottom:80.325000px;}
.y54{bottom:80.355105px;}
.y51{bottom:116.728605px;}
.y79{bottom:120.994500px;}
.ybe{bottom:121.371000px;}
.y53{bottom:128.955105px;}
.y9d{bottom:131.419650px;}
.y50{bottom:134.353455px;}
.y43{bottom:135.020955px;}
.y1f{bottom:141.546000px;}
.y78{bottom:150.918000px;}
.ybd{bottom:152.721000px;}
.y52{bottom:160.978605px;}
.y9c{bottom:162.394650px;}
.y42{bottom:163.820955px;}
.y1e{bottom:171.021000px;}
.y77{bottom:179.718000px;}
.ybc{bottom:180.394500px;}
.y4f{bottom:187.978455px;}
.y9b{bottom:189.769650px;}
.y41{bottom:192.620955px;}
.y1d{bottom:199.146000px;}
.y76{bottom:209.566500px;}
.ybb{bottom:209.943000px;}
.y4e{bottom:216.401955px;}
.y9a{bottom:218.568150px;}
.y40{bottom:221.794455px;}
.y1c{bottom:229.371000px;}
.y75{bottom:237.991500px;}
.yba{bottom:238.368000px;}
.y4d{bottom:247.376955px;}
.y99{bottom:248.118150px;}
.y3f{bottom:250.217955px;}
.y1b{bottom:258.919500px;}
.y74{bottom:266.790000px;}
.yb9{bottom:267.166500px;}
.y4c{bottom:275.800455px;}
.y98{bottom:276.916650px;}
.y3e{bottom:279.766455px;}
.y1a{bottom:288.018000px;}
.y73{bottom:297.013500px;}
.yb8{bottom:297.765000px;}
.y4b{bottom:304.973955px;}
.y97{bottom:306.015150px;}
.y3d{bottom:308.564955px;}
.y19{bottom:317.191500px;}
.y72{bottom:325.138500px;}
.yb7{bottom:325.140000px;}
.y45{bottom:326.570955px;}
.y4a{bottom:333.772455px;}
.y46{bottom:334.145955px;}
.y96{bottom:335.563650px;}
.y3c{bottom:337.739955px;}
.y44{bottom:339.920955px;}
.y18{bottom:345.991500px;}
.y71{bottom:354.613500px;}
.yb6{bottom:354.615000px;}
.y49{bottom:363.997455px;}
.y95{bottom:364.738650px;}
.y3b{bottom:366.913455px;}
.y17{bottom:375.165000px;}
.y70{bottom:383.113500px;}
.yb5{bottom:383.413500px;}
.y48{bottom:392.420955px;}
.y94{bottom:393.537150px;}
.y3a{bottom:396.013455px;}
.y16{bottom:404.338500px;}
.y6f{bottom:411.912000px;}
.y47{bottom:421.220955px;}
.y93{bottom:422.337150px;}
.y39{bottom:424.811955px;}
.y15{bottom:433.513500px;}
.y6e{bottom:442.512000px;}
.yb4{bottom:442.812000px;}
.y92{bottom:453.612150px;}
.y38{bottom:454.361970px;}
.y14{bottom:462.612000px;}
.y6d{bottom:470.560500px;}
.yb3{bottom:470.562000px;}
.y91{bottom:481.362150px;}
.y37{bottom:483.911820px;}
.y13{bottom:491.785500px;}
.yb2{bottom:499.362000px;}
.y6c{bottom:499.734000px;}
.y90{bottom:510.910650px;}
.y36{bottom:514.511820px;}
.y12{bottom:520.585500px;}
.yb1{bottom:527.785500px;}
.y6b{bottom:528.534000px;}
.y8f{bottom:541.510650px;}
.y35{bottom:541.810320px;}
.y11{bottom:550.510500px;}
.yb0{bottom:556.960500px;}
.y6a{bottom:557.334000px;}
.y8e{bottom:569.934150px;}
.y34{bottom:571.735320px;}
.y10{bottom:579.984000px;}
.y69{bottom:585.759000px;}
.yaf{bottom:585.760500px;}
.y8d{bottom:598.734150px;}
.y33{bottom:600.160320px;}
.yf{bottom:608.784000px;}
.yae{bottom:618.160500px;}
.y68{bottom:618.534000px;}
.y8c{bottom:627.909150px;}
.y32{bottom:630.385185px;}
.ye{bottom:637.207500px;}
.yad{bottom:644.109000px;}
.y67{bottom:644.784000px;}
.y8b{bottom:658.132650px;}
.y31{bottom:659.183685px;}
.yd{bottom:667.806000px;}
.yac{bottom:673.207500px;}
.y66{bottom:673.582500px;}
.y8a{bottom:686.632650px;}
.y30{bottom:688.358685px;}
.yc{bottom:696.981000px;}
.yab{bottom:702.007500px;}
.y65{bottom:703.132500px;}
.y89{bottom:716.106150px;}
.y2f{bottom:717.158700px;}
.yb{bottom:726.906000px;}
.yaa{bottom:730.507500px;}
.y64{bottom:731.556000px;}
.y2e{bottom:743.782350px;}
.y88{bottom:745.579650px;}
.ya{bottom:755.704500px;}
.ya9{bottom:759.606000px;}
.y63{bottom:760.356000px;}
.ycb{bottom:767.557500px;}
.y87{bottom:774.754650px;}
.y2d{bottom:775.805865px;}
.y9{bottom:785.929500px;}
.ya8{bottom:788.779500px;}
.y62{bottom:789.904500px;}
.yca{bottom:796.731000px;}
.y86{bottom:803.929650px;}
.y2c{bottom:804.605790px;}
.ya7{bottom:818.329500px;}
.y61{bottom:819.004500px;}
.y85{bottom:833.103150px;}
.y2b{bottom:833.780790px;}
.ya6{bottom:846.379500px;}
.y60{bottom:847.129500px;}
.yc9{bottom:849.306000px;}
.y84{bottom:862.203150px;}
.y2a{bottom:862.580790px;}
.y8{bottom:873.753000px;}
.ya5{bottom:878.403000px;}
.y5f{bottom:879.153000px;}
.yc8{bottom:882.004500px;}
.y83{bottom:883.803150px;}
.y29{bottom:885.980940px;}
.y82{bottom:891.003000px;}
.y28{bottom:892.130790px;}
.y7{bottom:903.978000px;}
.ya4{bottom:905.403000px;}
.y5e{bottom:906.528000px;}
.yc7{bottom:911.929500px;}
.y81{bottom:920.553000px;}
.y27{bottom:920.930790px;}
.y6{bottom:933.151500px;}
.ya3{bottom:934.203000px;}
.y5d{bottom:934.953000px;}
.yc6{bottom:938.179500px;}
.y26{bottom:948.979365px;}
.y80{bottom:950.103000px;}
.y5{bottom:962.326500px;}
.y5c{bottom:963.003000px;}
.yc5{bottom:970.203000px;}
.y7f{bottom:978.526500px;}
.y25{bottom:978.902865px;}
.y4{bottom:991.501500px;}
.ya2{bottom:992.553000px;}
.y5b{bottom:992.928000px;}
.yc4{bottom:999.753000px;}
.y24{bottom:1007.327865px;}
.y7e{bottom:1008.376500px;}
.ya1{bottom:1020.978000px;}
.y3{bottom:1021.351500px;}
.y5a{bottom:1021.728000px;}
.yc3{bottom:1028.928000px;}
.y23{bottom:1036.802865px;}
.y7d{bottom:1037.551500px;}
.ya0{bottom:1048.728000px;}
.y59{bottom:1050.151500px;}
.y2{bottom:1050.525000px;}
.yc2{bottom:1058.401500px;}
.y22{bottom:1065.976515px;}
.y7c{bottom:1066.726500px;}
.y1{bottom:1080.375000px;}
.y9f{bottom:1080.751500px;}
.y58{bottom:1081.801500px;}
.yc1{bottom:1085.101500px;}
.y21{bottom:1095.150015px;}
.y7b{bottom:1095.525000px;}
.y57{bottom:1098.750000px;}
.y9e{bottom:1105.575000px;}
.yc0{bottom:1117.125000px;}
.y20{bottom:1124.325000px;}
.y7a{bottom:1125.000000px;}
.ybf{bottom:1163.550000px;}
.h14{height:26.622070px;}
.h12{height:34.390137px;}
.h15{height:35.572266px;}
.h18{height:57.014648px;}
.h10{height:62.841797px;}
.h17{height:77.097656px;}
.h3{height:82.089844px;}
.hc{height:83.589844px;}
.h5{height:85.089844px;}
.ha{height:87.789544px;}
.h4{height:87.789904px;}
.h7{height:88.089844px;}
.h11{height:88.422070px;}
.h6{height:89.289244px;}
.h8{height:89.289844px;}
.he{height:92.289844px;}
.h16{height:93.035156px;}
.hd{height:96.489244px;}
.hb{height:109.389244px;}
.h13{height:109.453125px;}
.h9{height:119.289844px;}
.hf{height:126.789844px;}
.h2{height:131.343750px;}
.h0{height:1237.350000px;}
.h1{height:1237.500000px;}
.w2{width:902.850000px;}
.w3{width:903.000000px;}
.w0{width:912.600000px;}
.w1{width:912.750000px;}
.x0{left:0.000000px;}
.x48{left:64.800000px;}
.x1{left:93.975000px;}
.xa{left:101.158470px;}
.xc{left:107.983320px;}
.x10{left:112.333170px;}
.x2{left:123.825000px;}
.x3{left:124.948500px;}
.x4{left:125.982000px;}
.x5{left:127.032000px;}
.x6{left:128.532000px;}
.x1f{left:129.591900px;}
.x1e{left:131.032200px;}
.x23{left:132.141900px;}
.x1a{left:133.585200px;}
.x1c{left:134.633700px;}
.x18{left:136.423350px;}
.x2f{left:138.600000px;}
.x31{left:141.825000px;}
.x35{left:143.249895px;}
.x33{left:145.800045px;}
.x46{left:147.600030px;}
.x44{left:149.400030px;}
.x32{left:151.200000px;}
.x43{left:153.000015px;}
.x30{left:154.050000px;}
.x42{left:155.548530px;}
.x34{left:156.599895px;}
.x7{left:158.382000px;}
.x8{left:159.431985px;}
.x9{left:161.231970px;}
.x4b{left:162.397500px;}
.xb{left:163.408320px;}
.x45{left:165.600030px;}
.xd{left:167.756820px;}
.xe{left:168.806820px;}
.xf{left:170.606670px;}
.x12{left:172.406670px;}
.x11{left:173.531670px;}
.x13{left:174.581655px;}
.x15{left:177.131655px;}
.x36{left:182.549910px;}
.x21{left:185.766900px;}
.x20{left:186.816900px;}
.x1d{left:187.957200px;}
.x1b{left:189.758700px;}
.x4a{left:190.825500px;}
.x14{left:192.206655px;}
.x17{left:193.648350px;}
.x16{left:195.450000px;}
.x24{left:201.966900px;}
.x47{left:204.450030px;}
.x3f{left:211.653000px;}
.x41{left:212.778150px;}
.x3d{left:213.827865px;}
.x3c{left:216.001365px;}
.x39{left:218.550015px;}
.x38{left:219.600015px;}
.x37{left:221.400000px;}
.x3e{left:229.352865px;}
.x3a{left:234.375015px;}
.x22{left:245.841900px;}
.x49{left:250.198500px;}
.x19{left:263.170200px;}
.x40{left:272.176500px;}
.x3b{left:289.425015px;}
.x25{left:429.441900px;}
.x26{left:485.238900px;}
.x2a{left:491.750400px;}
.x2d{left:492.800400px;}
.x2e{left:503.250000px;}
.x28{left:505.415400px;}
.x2b{left:506.823900px;}
.x2c{left:515.148900px;}
.x29{left:533.165400px;}
.x27{left:544.638900px;}
.x4c{left:545.799000px;}
.x4d{left:628.224000px;}
@media print{
.v13{vertical-align:-38.400000pt;}
.v11{vertical-align:-11.732800pt;}
.v10{vertical-align:-10.400000pt;}
.vb{vertical-align:-7.733333pt;}
.ve{vertical-align:-6.400000pt;}
.vc{vertical-align:-3.733387pt;}
.v9{vertical-align:-2.399733pt;}
.v8{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.333333pt;}
.v2{vertical-align:2.666667pt;}
.v6{vertical-align:3.733067pt;}
.v1{vertical-align:5.066720pt;}
.v3{vertical-align:6.399467pt;}
.vd{vertical-align:9.066667pt;}
.va{vertical-align:12.799467pt;}
.v7{vertical-align:24.266133pt;}
.v4{vertical-align:33.066667pt;}
.vf{vertical-align:39.733333pt;}
.v12{vertical-align:54.933333pt;}
.ls9{letter-spacing:-5.333333pt;}
.ls8{letter-spacing:-2.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:4.644800pt;}
.ls2{letter-spacing:5.333333pt;}
.lsa{letter-spacing:11.888000pt;}
.lsb{letter-spacing:11.973333pt;}
.ls6{letter-spacing:13.384000pt;}
.ls7{letter-spacing:21.333333pt;}
.ls0{letter-spacing:58.853333pt;}
.ls3{letter-spacing:88.272000pt;}
.ls5{letter-spacing:105.461333pt;}
.ws7{word-spacing:-61.061333pt;}
.wse{word-spacing:-45.840000pt;}
.ws1{word-spacing:-24.613333pt;}
.ws2{word-spacing:-20.757333pt;}
.ws0{word-spacing:-19.280000pt;}
.ws6{word-spacing:-17.429333pt;}
.wsa{word-spacing:-6.832000pt;}
.wsc{word-spacing:-5.784000pt;}
.wsd{word-spacing:-4.165333pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:2.496000pt;}
.ws4{word-spacing:12.320000pt;}
.ws8{word-spacing:55.600000pt;}
.ws5{word-spacing:63.701333pt;}
.wsb{word-spacing:1116.453333pt;}
._51{margin-left:-49.952000pt;}
._5e{margin-left:-43.338667pt;}
._46{margin-left:-38.400000pt;}
._58{margin-left:-36.544000pt;}
._2e{margin-left:-32.480000pt;}
._49{margin-left:-30.960000pt;}
._45{margin-left:-28.480000pt;}
._44{margin-left:-26.400000pt;}
._2f{margin-left:-24.400000pt;}
._2c{margin-left:-23.344000pt;}
._2d{margin-left:-21.195200pt;}
._29{margin-left:-19.397333pt;}
._36{margin-left:-17.440000pt;}
._3a{margin-left:-16.496000pt;}
._25{margin-left:-15.301333pt;}
._42{margin-left:-13.797333pt;}
._2a{margin-left:-12.656000pt;}
._37{margin-left:-11.722667pt;}
._19{margin-left:-10.693333pt;}
._18{margin-left:-9.280000pt;}
._1c{margin-left:-8.160000pt;}
._15{margin-left:-6.640000pt;}
._1d{margin-left:-5.445333pt;}
._12{margin-left:-4.160000pt;}
._f{margin-left:-3.040000pt;}
._10{margin-left:-1.440000pt;}
._8{width:1.200000pt;}
._7{width:2.720000pt;}
._e{width:4.000000pt;}
._1a{width:5.221333pt;}
._31{width:6.213333pt;}
._d{width:7.120000pt;}
._b{width:8.560000pt;}
._a{width:9.680000pt;}
._5a{width:10.597333pt;}
._3{width:11.600000pt;}
._35{width:12.832000pt;}
._2{width:14.080000pt;}
._5{width:15.360000pt;}
._33{width:16.330667pt;}
._4{width:17.360000pt;}
._2b{width:18.634667pt;}
._28{width:19.824000pt;}
._39{width:20.784000pt;}
._1b{width:21.680000pt;}
._14{width:22.640000pt;}
._11{width:23.920000pt;}
._17{width:25.200000pt;}
._26{width:26.176000pt;}
._13{width:27.360000pt;}
._23{width:28.272000pt;}
._21{width:29.840000pt;}
._16{width:30.880000pt;}
._34{width:31.781333pt;}
._20{width:33.125333pt;}
._22{width:34.800000pt;}
._60{width:35.706667pt;}
._32{width:36.736000pt;}
._4f{width:37.941333pt;}
._24{width:38.885333pt;}
._6{width:39.920000pt;}
._1e{width:41.360000pt;}
._27{width:42.762667pt;}
._63{width:43.792000pt;}
._c{width:44.720000pt;}
._40{width:45.941333pt;}
._62{width:47.130667pt;}
._1f{width:48.400000pt;}
._5f{width:50.373333pt;}
._69{width:51.285333pt;}
._3c{width:52.528000pt;}
._68{width:53.909333pt;}
._0{width:55.040000pt;}
._61{width:56.309333pt;}
._64{width:59.098667pt;}
._6a{width:63.072000pt;}
._1{width:64.320000pt;}
._9{width:67.440000pt;}
._65{width:74.880000pt;}
._38{width:80.827200pt;}
._30{width:82.800000pt;}
._66{width:84.320000pt;}
._5d{width:85.621333pt;}
._4e{width:97.093333pt;}
._67{width:98.421333pt;}
._54{width:113.890133pt;}
._47{width:118.015467pt;}
._3b{width:250.586667pt;}
._3d{width:255.696000pt;}
._4d{width:328.576000pt;}
._41{width:334.698667pt;}
._59{width:403.109333pt;}
._43{width:404.245333pt;}
._50{width:409.322667pt;}
._4c{width:411.728533pt;}
._48{width:414.560000pt;}
._57{width:418.384000pt;}
._3e{width:424.517333pt;}
._3f{width:432.192000pt;}
._56{width:463.162667pt;}
._53{width:470.810667pt;}
._55{width:478.426667pt;}
._5b{width:480.037333pt;}
._4a{width:491.093333pt;}
._5c{width:493.626667pt;}
._4b{width:507.362667pt;}
._52{width:511.440000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:18.666667pt;}
.fsa{font-size:24.000000pt;}
.fs7{font-size:34.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:50.666667pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fsd{font-size:85.333333pt;}
.fsb{font-size:90.666667pt;}
.fs9{font-size:106.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:64.666667pt;}
.y55{bottom:71.400000pt;}
.y54{bottom:71.426760pt;}
.y51{bottom:103.758760pt;}
.y79{bottom:107.550667pt;}
.ybe{bottom:107.885333pt;}
.y53{bottom:114.626760pt;}
.y9d{bottom:116.817467pt;}
.y50{bottom:119.425293pt;}
.y43{bottom:120.018627pt;}
.y1f{bottom:125.818667pt;}
.y78{bottom:134.149333pt;}
.ybd{bottom:135.752000pt;}
.y52{bottom:143.092093pt;}
.y9c{bottom:144.350800pt;}
.y42{bottom:145.618627pt;}
.y1e{bottom:152.018667pt;}
.y77{bottom:159.749333pt;}
.ybc{bottom:160.350667pt;}
.y4f{bottom:167.091960pt;}
.y9b{bottom:168.684133pt;}
.y41{bottom:171.218627pt;}
.y1d{bottom:177.018667pt;}
.y76{bottom:186.281333pt;}
.ybb{bottom:186.616000pt;}
.y4e{bottom:192.357293pt;}
.y9a{bottom:194.282800pt;}
.y40{bottom:197.150627pt;}
.y1c{bottom:203.885333pt;}
.y75{bottom:211.548000pt;}
.yba{bottom:211.882667pt;}
.y4d{bottom:219.890627pt;}
.y99{bottom:220.549467pt;}
.y3f{bottom:222.415960pt;}
.y1b{bottom:230.150667pt;}
.y74{bottom:237.146667pt;}
.yb9{bottom:237.481333pt;}
.y4c{bottom:245.155960pt;}
.y98{bottom:246.148133pt;}
.y3e{bottom:248.681293pt;}
.y1a{bottom:256.016000pt;}
.y73{bottom:264.012000pt;}
.yb8{bottom:264.680000pt;}
.y4b{bottom:271.087960pt;}
.y97{bottom:272.013467pt;}
.y3d{bottom:274.279960pt;}
.y19{bottom:281.948000pt;}
.y72{bottom:289.012000pt;}
.yb7{bottom:289.013333pt;}
.y45{bottom:290.285293pt;}
.y4a{bottom:296.686627pt;}
.y46{bottom:297.018627pt;}
.y96{bottom:298.278800pt;}
.y3c{bottom:300.213293pt;}
.y44{bottom:302.151960pt;}
.y18{bottom:307.548000pt;}
.y71{bottom:315.212000pt;}
.yb6{bottom:315.213333pt;}
.y49{bottom:323.553293pt;}
.y95{bottom:324.212133pt;}
.y3b{bottom:326.145293pt;}
.y17{bottom:333.480000pt;}
.y70{bottom:340.545333pt;}
.yb5{bottom:340.812000pt;}
.y48{bottom:348.818627pt;}
.y94{bottom:349.810800pt;}
.y3a{bottom:352.011960pt;}
.y16{bottom:359.412000pt;}
.y6f{bottom:366.144000pt;}
.y47{bottom:374.418627pt;}
.y93{bottom:375.410800pt;}
.y39{bottom:377.610627pt;}
.y15{bottom:385.345333pt;}
.y6e{bottom:393.344000pt;}
.yb4{bottom:393.610667pt;}
.y92{bottom:403.210800pt;}
.y38{bottom:403.877307pt;}
.y14{bottom:411.210667pt;}
.y6d{bottom:418.276000pt;}
.yb3{bottom:418.277333pt;}
.y91{bottom:427.877467pt;}
.y37{bottom:430.143840pt;}
.y13{bottom:437.142667pt;}
.yb2{bottom:443.877333pt;}
.y6c{bottom:444.208000pt;}
.y90{bottom:454.142800pt;}
.y36{bottom:457.343840pt;}
.y12{bottom:462.742667pt;}
.yb1{bottom:469.142667pt;}
.y6b{bottom:469.808000pt;}
.y8f{bottom:481.342800pt;}
.y35{bottom:481.609173pt;}
.y11{bottom:489.342667pt;}
.yb0{bottom:495.076000pt;}
.y6a{bottom:495.408000pt;}
.y8e{bottom:506.608133pt;}
.y34{bottom:508.209173pt;}
.y10{bottom:515.541333pt;}
.y69{bottom:520.674667pt;}
.yaf{bottom:520.676000pt;}
.y8d{bottom:532.208133pt;}
.y33{bottom:533.475840pt;}
.yf{bottom:541.141333pt;}
.yae{bottom:549.476000pt;}
.y68{bottom:549.808000pt;}
.y8c{bottom:558.141467pt;}
.y32{bottom:560.342387pt;}
.ye{bottom:566.406667pt;}
.yad{bottom:572.541333pt;}
.y67{bottom:573.141333pt;}
.y8b{bottom:585.006800pt;}
.y31{bottom:585.941053pt;}
.yd{bottom:593.605333pt;}
.yac{bottom:598.406667pt;}
.y66{bottom:598.740000pt;}
.y8a{bottom:610.340133pt;}
.y30{bottom:611.874387pt;}
.yc{bottom:619.538667pt;}
.yab{bottom:624.006667pt;}
.y65{bottom:625.006667pt;}
.y89{bottom:636.538800pt;}
.y2f{bottom:637.474400pt;}
.yb{bottom:646.138667pt;}
.yaa{bottom:649.340000pt;}
.y64{bottom:650.272000pt;}
.y2e{bottom:661.139867pt;}
.y88{bottom:662.737467pt;}
.ya{bottom:671.737333pt;}
.ya9{bottom:675.205333pt;}
.y63{bottom:675.872000pt;}
.ycb{bottom:682.273333pt;}
.y87{bottom:688.670800pt;}
.y2d{bottom:689.605213pt;}
.y9{bottom:698.604000pt;}
.ya8{bottom:701.137333pt;}
.y62{bottom:702.137333pt;}
.yca{bottom:708.205333pt;}
.y86{bottom:714.604133pt;}
.y2c{bottom:715.205147pt;}
.ya7{bottom:727.404000pt;}
.y61{bottom:728.004000pt;}
.y85{bottom:740.536133pt;}
.y2b{bottom:741.138480pt;}
.ya6{bottom:752.337333pt;}
.y60{bottom:753.004000pt;}
.yc9{bottom:754.938667pt;}
.y84{bottom:766.402800pt;}
.y2a{bottom:766.738480pt;}
.y8{bottom:776.669333pt;}
.ya5{bottom:780.802667pt;}
.y5f{bottom:781.469333pt;}
.yc8{bottom:784.004000pt;}
.y83{bottom:785.602800pt;}
.y29{bottom:787.538613pt;}
.y82{bottom:792.002667pt;}
.y28{bottom:793.005147pt;}
.y7{bottom:803.536000pt;}
.ya4{bottom:804.802667pt;}
.y5e{bottom:805.802667pt;}
.yc7{bottom:810.604000pt;}
.y81{bottom:818.269333pt;}
.y27{bottom:818.605147pt;}
.y6{bottom:829.468000pt;}
.ya3{bottom:830.402667pt;}
.y5d{bottom:831.069333pt;}
.yc6{bottom:833.937333pt;}
.y26{bottom:843.537213pt;}
.y80{bottom:844.536000pt;}
.y5{bottom:855.401333pt;}
.y5c{bottom:856.002667pt;}
.yc5{bottom:862.402667pt;}
.y7f{bottom:869.801333pt;}
.y25{bottom:870.135880pt;}
.y4{bottom:881.334667pt;}
.ya2{bottom:882.269333pt;}
.y5b{bottom:882.602667pt;}
.yc4{bottom:888.669333pt;}
.y24{bottom:895.402547pt;}
.y7e{bottom:896.334667pt;}
.ya1{bottom:907.536000pt;}
.y3{bottom:907.868000pt;}
.y5a{bottom:908.202667pt;}
.yc3{bottom:914.602667pt;}
.y23{bottom:921.602547pt;}
.y7d{bottom:922.268000pt;}
.ya0{bottom:932.202667pt;}
.y59{bottom:933.468000pt;}
.y2{bottom:933.800000pt;}
.yc2{bottom:940.801333pt;}
.y22{bottom:947.534680pt;}
.y7c{bottom:948.201333pt;}
.y1{bottom:960.333333pt;}
.y9f{bottom:960.668000pt;}
.y58{bottom:961.601333pt;}
.yc1{bottom:964.534667pt;}
.y21{bottom:973.466680pt;}
.y7b{bottom:973.800000pt;}
.y57{bottom:976.666667pt;}
.y9e{bottom:982.733333pt;}
.yc0{bottom:993.000000pt;}
.y20{bottom:999.400000pt;}
.y7a{bottom:1000.000000pt;}
.ybf{bottom:1034.266667pt;}
.h14{height:23.664062pt;}
.h12{height:30.569010pt;}
.h15{height:31.619792pt;}
.h18{height:50.679688pt;}
.h10{height:55.859375pt;}
.h17{height:68.531250pt;}
.h3{height:72.968750pt;}
.hc{height:74.302083pt;}
.h5{height:75.635417pt;}
.ha{height:78.035150pt;}
.h4{height:78.035470pt;}
.h7{height:78.302083pt;}
.h11{height:78.597396pt;}
.h6{height:79.368217pt;}
.h8{height:79.368750pt;}
.he{height:82.035417pt;}
.h16{height:82.697917pt;}
.hd{height:85.768217pt;}
.hb{height:97.234883pt;}
.h13{height:97.291667pt;}
.h9{height:106.035417pt;}
.hf{height:112.702083pt;}
.h2{height:116.750000pt;}
.h0{height:1099.866667pt;}
.h1{height:1100.000000pt;}
.w2{width:802.533333pt;}
.w3{width:802.666667pt;}
.w0{width:811.200000pt;}
.w1{width:811.333333pt;}
.x0{left:0.000000pt;}
.x48{left:57.600000pt;}
.x1{left:83.533333pt;}
.xa{left:89.918640pt;}
.xc{left:95.985173pt;}
.x10{left:99.851707pt;}
.x2{left:110.066667pt;}
.x3{left:111.065333pt;}
.x4{left:111.984000pt;}
.x5{left:112.917333pt;}
.x6{left:114.250667pt;}
.x1f{left:115.192800pt;}
.x1e{left:116.473067pt;}
.x23{left:117.459467pt;}
.x1a{left:118.742400pt;}
.x1c{left:119.674400pt;}
.x18{left:121.265200pt;}
.x2f{left:123.200000pt;}
.x31{left:126.066667pt;}
.x35{left:127.333240pt;}
.x33{left:129.600040pt;}
.x46{left:131.200027pt;}
.x44{left:132.800027pt;}
.x32{left:134.400000pt;}
.x43{left:136.000013pt;}
.x30{left:136.933333pt;}
.x42{left:138.265360pt;}
.x34{left:139.199907pt;}
.x7{left:140.784000pt;}
.x8{left:141.717320pt;}
.x9{left:143.317307pt;}
.x4b{left:144.353333pt;}
.xb{left:145.251840pt;}
.x45{left:147.200027pt;}
.xd{left:149.117173pt;}
.xe{left:150.050507pt;}
.xf{left:151.650373pt;}
.x12{left:153.250373pt;}
.x11{left:154.250373pt;}
.x13{left:155.183693pt;}
.x15{left:157.450360pt;}
.x36{left:162.266587pt;}
.x21{left:165.126133pt;}
.x20{left:166.059467pt;}
.x1d{left:167.073067pt;}
.x1b{left:168.674400pt;}
.x4a{left:169.622667pt;}
.x14{left:170.850360pt;}
.x17{left:172.131867pt;}
.x16{left:173.733333pt;}
.x24{left:179.526133pt;}
.x47{left:181.733360pt;}
.x3f{left:188.136000pt;}
.x41{left:189.136133pt;}
.x3d{left:190.069213pt;}
.x3c{left:192.001213pt;}
.x39{left:194.266680pt;}
.x38{left:195.200013pt;}
.x37{left:196.800000pt;}
.x3e{left:203.869213pt;}
.x3a{left:208.333347pt;}
.x22{left:218.526133pt;}
.x49{left:222.398667pt;}
.x19{left:233.929067pt;}
.x40{left:241.934667pt;}
.x3b{left:257.266680pt;}
.x25{left:381.726133pt;}
.x26{left:431.323467pt;}
.x2a{left:437.111467pt;}
.x2d{left:438.044800pt;}
.x2e{left:447.333333pt;}
.x28{left:449.258133pt;}
.x2b{left:450.510133pt;}
.x2c{left:457.910133pt;}
.x29{left:473.924800pt;}
.x27{left:484.123467pt;}
.x4c{left:485.154667pt;}
.x4d{left:558.421333pt;}
}




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