
    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_31ebe0e3714a447ce65ae444.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_128925041a1f9c69a3b332df.woff')format("woff");}.ff2{font-family:ff2;line-height:1.171387;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_80f55cad643235c1135910ce.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_211e614f5ebb17e3249ca1ed.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_69f147b9db37a8ff9aa4b9b3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_58a6d83108ff3fe740fdd3d4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_55684bbbee6601395cdbf4cd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.881348;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_68543cd6a65b264dff0ad0d0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bd3d577c04c714f8bd1ca00e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d80720f3ce7c880a39594831.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9226c66c2a3df28f4bd9ab3e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b90998205d7fcd468b568067.woff')format("woff");}.ffc{font-family:ffc;line-height:0.881348;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_a6dc37befb3be581b4e8dd76.woff')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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_620fa5c64c7651b0df8ab423.woff')format("woff");}.fff{font-family:fff;line-height:1.151855;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_18a2278232b5943c920e1820.woff')format("woff");}.ff10{font-family:ff10;line-height:1.151855;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_e9b5d1ffd2bfa527850c15c8.woff')format("woff");}.ff11{font-family:ff11;line-height:1.104492;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_274f474c20f6427640fe1e9e.woff')format("woff");}.ff12{font-family:ff12;line-height:1.432129;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_c8d87ed8cb223467b7c35eac.woff')format("woff");}.ff13{font-family:ff13;line-height:1.432129;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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;}
.ls44{letter-spacing:-0.756000px;}
.ls47{letter-spacing:-0.445200px;}
.ls2f{letter-spacing:-0.359400px;}
.ls25{letter-spacing:-0.348600px;}
.lsf{letter-spacing:-0.303600px;}
.ls17{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.227400px;}
.ls13{letter-spacing:-0.204000px;}
.ls14{letter-spacing:-0.144000px;}
.ls30{letter-spacing:-0.139800px;}
.ls1f{letter-spacing:-0.119400px;}
.ls48{letter-spacing:-0.117600px;}
.ls18{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.042600px;}
.ls43{letter-spacing:-0.037440px;}
.ls45{letter-spacing:-0.028080px;}
.lsd{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.005040px;}
.ls6{letter-spacing:0.013248px;}
.ls11{letter-spacing:0.025920px;}
.ls8{letter-spacing:0.026496px;}
.ls3a{letter-spacing:0.028080px;}
.lse{letter-spacing:0.061200px;}
.ls15{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.080064px;}
.ls7{letter-spacing:0.116928px;}
.ls5{letter-spacing:0.149184px;}
.ls22{letter-spacing:0.153216px;}
.ls3{letter-spacing:0.185040px;}
.ls1e{letter-spacing:0.185760px;}
.lsa{letter-spacing:0.193248px;}
.ls39{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.228240px;}
.ls9{letter-spacing:0.252864px;}
.ls26{letter-spacing:0.255456px;}
.lsc{letter-spacing:0.257472px;}
.ls38{letter-spacing:0.274800px;}
.ls16{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.300240px;}
.ls19{letter-spacing:0.309600px;}
.ls24{letter-spacing:0.363000px;}
.ls41{letter-spacing:0.380160px;}
.ls35{letter-spacing:0.678240px;}
.ls46{letter-spacing:0.690000px;}
.ls31{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.905760px;}
.ls42{letter-spacing:1.820160px;}
.ls34{letter-spacing:2.118240px;}
.ls21{letter-spacing:3.065760px;}
.ls3e{letter-spacing:3.941280px;}
.ls3d{letter-spacing:4.661280px;}
.ls20{letter-spacing:5.225760px;}
.ls1b{letter-spacing:6.665760px;}
.ls1a{letter-spacing:7.385760px;}
.ls32{letter-spacing:7.878240px;}
.ls40{letter-spacing:14.021280px;}
.ls1c{letter-spacing:17.433216px;}
.ls3c{letter-spacing:22.661280px;}
.ls3f{letter-spacing:23.040000px;}
.ls3b{letter-spacing:23.381280px;}
.ls2{letter-spacing:32.698800px;}
.ls2e{letter-spacing:55.593216px;}
.ls29{letter-spacing:58.505760px;}
.ls28{letter-spacing:58.529760px;}
.ls37{letter-spacing:70.560000px;}
.ls1d{letter-spacing:76.505760px;}
.ls27{letter-spacing:80.105760px;}
.ls2b{letter-spacing:97.385760px;}
.ls2d{letter-spacing:119.865600px;}
.ls2a{letter-spacing:119.916000px;}
.ls36{letter-spacing:128.433600px;}
.ls33{letter-spacing:128.484000px;}
.ls23{letter-spacing:239.945760px;}
.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;}
}
.ws24{word-spacing:-120.240000px;}
.ws27{word-spacing:-95.760000px;}
.ws3e{word-spacing:-84.384000px;}
.ws2e{word-spacing:-84.240000px;}
.ws3a{word-spacing:-84.211920px;}
.ws31{word-spacing:-84.202560px;}
.ws30{word-spacing:-83.484000px;}
.ws3f{word-spacing:-68.739840px;}
.ws0{word-spacing:-59.379840px;}
.ws40{word-spacing:-54.849600px;}
.ws20{word-spacing:-46.837440px;}
.ws2b{word-spacing:-40.897200px;}
.ws3{word-spacing:-39.873600px;}
.wsa{word-spacing:-31.299840px;}
.ws5{word-spacing:-31.262400px;}
.ws2a{word-spacing:-28.080000px;}
.ws1d{word-spacing:-27.537240px;}
.ws18{word-spacing:-27.516384px;}
.ws1a{word-spacing:-27.206784px;}
.ws19{word-spacing:-27.174240px;}
.ws1b{word-spacing:-27.054840px;}
.ws1e{word-spacing:-26.825640px;}
.wsc{word-spacing:-24.935040px;}
.ws7{word-spacing:-24.897600px;}
.wse{word-spacing:-24.707640px;}
.ws39{word-spacing:-24.108720px;}
.ws3c{word-spacing:-23.458752px;}
.ws2f{word-spacing:-23.381280px;}
.ws3d{word-spacing:-23.341152px;}
.ws3b{word-spacing:-23.013552px;}
.ws29{word-spacing:-21.674304px;}
.ws28{word-spacing:-21.641760px;}
.ws2c{word-spacing:-19.038240px;}
.ws26{word-spacing:-19.008000px;}
.ws25{word-spacing:-18.648000px;}
.ws1c{word-spacing:-18.387360px;}
.ws21{word-spacing:-16.304544px;}
.ws1f{word-spacing:-16.272000px;}
.ws17{word-spacing:-16.200000px;}
.ws23{word-spacing:-16.164744px;}
.ws16{word-spacing:-15.984000px;}
.ws22{word-spacing:-15.945144px;}
.ws2d{word-spacing:-0.120240px;}
.ws34{word-spacing:-0.084240px;}
.ws38{word-spacing:-0.056160px;}
.ws15{word-spacing:0.000000px;}
.ws13{word-spacing:5.946624px;}
.ws12{word-spacing:6.738840px;}
.ws11{word-spacing:6.785280px;}
.ws9{word-spacing:6.837840px;}
.ws10{word-spacing:6.973344px;}
.ws4{word-spacing:7.035840px;}
.wsb{word-spacing:7.125600px;}
.wsd{word-spacing:7.327872px;}
.wsf{word-spacing:7.375968px;}
.ws8{word-spacing:7.948800px;}
.ws14{word-spacing:8.034912px;}
.ws6{word-spacing:8.722800px;}
.ws2{word-spacing:9.929280px;}
.ws1{word-spacing:12.689040px;}
.ws36{word-spacing:20.851200px;}
.ws37{word-spacing:20.871360px;}
.ws35{word-spacing:20.943840px;}
.ws32{word-spacing:27.248400px;}
.ws33{word-spacing:29.127600px;}
._f{margin-left:-24.930552px;}
._c{margin-left:-11.062080px;}
._e{margin-left:-8.522640px;}
._4{margin-left:-7.028640px;}
._8{margin-left:-4.803672px;}
._3{margin-left:-2.913960px;}
._1{margin-left:-1.463448px;}
._0{width:1.470768px;}
._2{width:2.646912px;}
._7{width:4.869384px;}
._d{width:8.053920px;}
._11{width:13.676112px;}
._5{width:17.021664px;}
._10{width:27.267048px;}
._b{width:58.866096px;}
._6{width:76.906800px;}
._a{width:80.362080px;}
._9{width:239.312136px;}
._12{width:388.358400px;}
.fc6{color:rgb(153,168,189);}
.fc5{color:transparent;}
.fc7{color:rgb(156,140,100);}
.fc4{color:rgb(0,35,70);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(255,192,0);}
.fsa{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fsb{font-size:81.360000px;}
.fsc{font-size:81.504000px;}
.fs13{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fsd{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fs10{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs7{font-size:120.384000px;}
.fs3{font-size:153.360000px;}
.fs12{font-size:156.240000px;}
.fs17{font-size:167.760000px;}
.fs9{font-size:180.000000px;}
.fse{font-size:180.144000px;}
.fs1{font-size:182.160000px;}
.fs2{font-size:192.240000px;}
.fs16{font-size:210.960000px;}
.fs0{font-size:228.384000px;}
.fs4{font-size:239.760000px;}
.fs15{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y8{bottom:28.260000px;}
.ya{bottom:46.548000px;}
.y60{bottom:61.272000px;}
.y4f{bottom:79.524000px;}
.y5f{bottom:86.472000px;}
.y5e{bottom:111.672000px;}
.y39{bottom:123.156000px;}
.y28{bottom:129.960000px;}
.y4e{bottom:131.184000px;}
.y1e{bottom:133.128000px;}
.y5d{bottom:136.908000px;}
.y11{bottom:138.744000px;}
.y2b{bottom:141.804000px;}
.y2d{bottom:148.248000px;}
.y59{bottom:154.470000px;}
.y4d{bottom:163.590000px;}
.y38{bottom:164.985000px;}
.y52{bottom:173.445000px;}
.y2a{bottom:177.810000px;}
.y58{bottom:179.670000px;}
.y36{bottom:182.370000px;}
.yd{bottom:194.940000px;}
.y4c{bottom:200.490000px;}
.y57{bottom:204.870000px;}
.y6{bottom:213.735000px;}
.y29{bottom:213.840000px;}
.y35{bottom:227.370000px;}
.y18{bottom:228.240000px;}
.y56{bottom:230.070000px;}
.y4b{bottom:232.890000px;}
.y1a{bottom:249.630000px;}
.y5{bottom:254.595000px;}
.y34{bottom:263.415000px;}
.y4a{bottom:269.820000px;}
.y19{bottom:273.960000px;}
.y74{bottom:276.090000px;}
.y27{bottom:287.640000px;}
.y16{bottom:292.425000px;}
.y4{bottom:295.635000px;}
.y1c{bottom:296.610000px;}
.y37{bottom:297.255000px;}
.y49{bottom:302.220000px;}
.y33{bottom:308.415000px;}
.y26{bottom:310.500000px;}
.y23{bottom:323.745000px;}
.y15{bottom:328.425000px;}
.y3{bottom:338.145000px;}
.y48{bottom:339.120000px;}
.y32{bottom:344.415000px;}
.y1d{bottom:352.005000px;}
.y73{bottom:352.620000px;}
.y69{bottom:355.395000px;}
.y22{bottom:359.745000px;}
.y17{bottom:360.720000px;}
.y62{bottom:361.440000px;}
.y14{bottom:364.425000px;}
.y47{bottom:371.520000px;}
.y31{bottom:380.415000px;}
.y61{bottom:386.640000px;}
.y68{bottom:391.395000px;}
.y2{bottom:393.225000px;}
.y21{bottom:395.745000px;}
.y13{bottom:400.470000px;}
.y1b{bottom:401.580000px;}
.y46{bottom:403.920000px;}
.y67{bottom:427.425000px;}
.y20{bottom:431.745000px;}
.y3f{bottom:435.930000px;}
.y12{bottom:436.470000px;}
.y72{bottom:436.890000px;}
.y45{bottom:440.850000px;}
.y30{bottom:452.445000px;}
.y7{bottom:455.325000px;}
.y1f{bottom:467.790000px;}
.y44{bottom:473.250000px;}
.y3e{bottom:473.730000px;}
.y25{bottom:482.220000px;}
.y2f{bottom:488.445000px;}
.y66{bottom:499.785000px;}
.y55{bottom:501.555000px;}
.y24{bottom:503.820000px;}
.y43{bottom:505.650000px;}
.y3d{bottom:511.530000px;}
.y65{bottom:519.015000px;}
.y2e{bottom:524.445000px;}
.y71{bottom:524.670000px;}
.y1{bottom:525.315000px;}
.y54{bottom:526.755000px;}
.y5c{bottom:537.810000px;}
.y3c{bottom:540.330000px;}
.y42{bottom:542.550000px;}
.y64{bottom:544.215000px;}
.y70{bottom:549.870000px;}
.y53{bottom:551.955000px;}
.y5b{bottom:563.010000px;}
.y63{bottom:569.415000px;}
.y41{bottom:574.995000px;}
.y6f{bottom:584.070000px;}
.yf{bottom:585.615000px;}
.y5a{bottom:588.210000px;}
.yc{bottom:590.040000px;}
.y10{bottom:595.005000px;}
.y3b{bottom:597.960000px;}
.y40{bottom:607.395000px;}
.y6e{bottom:609.270000px;}
.ye{bottom:621.645000px;}
.y3a{bottom:626.760000px;}
.y6d{bottom:634.470000px;}
.y6c{bottom:659.670000px;}
.y51{bottom:676.080000px;}
.y9{bottom:682.230000px;}
.yb{bottom:692.715000px;}
.y6b{bottom:693.900000px;}
.y2c{bottom:699.375000px;}
.y6a{bottom:728.640000px;}
.y50{bottom:733.140000px;}
.h7{height:67.042969px;}
.h8{height:68.554688px;}
.h11{height:71.613281px;}
.h14{height:71.756508px;}
.h18{height:72.381094px;}
.h4{height:73.363008px;}
.hf{height:73.722656px;}
.he{height:80.923008px;}
.hc{height:83.306602px;}
.hd{height:83.454047px;}
.h1d{height:83.787539px;}
.h1e{height:83.930766px;}
.h21{height:85.847344px;}
.h22{height:87.859687px;}
.h23{height:88.009875px;}
.h10{height:89.516602px;}
.h15{height:90.884531px;}
.h17{height:95.245664px;}
.h19{height:95.388891px;}
.h16{height:100.564453px;}
.h1a{height:100.698539px;}
.h20{height:110.904961px;}
.h1f{height:111.037781px;}
.h5{height:111.961758px;}
.h3{height:112.095844px;}
.ha{height:119.594180px;}
.h1c{height:119.697539px;}
.h12{height:119.737406px;}
.hb{height:123.116836px;}
.h9{height:123.264281px;}
.h1b{height:145.483242px;}
.h25{height:156.210117px;}
.h6{height:167.607422px;}
.h13{height:167.741508px;}
.h1{height:212.660297px;}
.h2{height:223.253086px;}
.h24{height:246.181781px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1d{left:43.883979px;}
.x1b{left:46.367979px;}
.x38{left:63.935979px;}
.x27{left:73.547979px;}
.x24{left:75.527979px;}
.x35{left:79.199979px;}
.x26{left:80.387979px;}
.x25{left:84.707979px;}
.x1c{left:86.867979px;}
.x1{left:96.299979px;}
.x19{left:98.279979px;}
.x5{left:100.763979px;}
.x34{left:104.759979px;}
.x2{left:109.799979px;}
.x6{left:113.327979px;}
.x23{left:125.603979px;}
.x28{left:127.403979px;}
.x36{left:130.679979px;}
.xe{left:160.589979px;}
.x10{left:166.169979px;}
.x37{left:171.929979px;}
.xf{left:174.809979px;}
.x9{left:179.099979px;}
.x33{left:257.969979px;}
.xa{left:281.159979px;}
.x3{left:298.079979px;}
.x8{left:368.969979px;}
.x4{left:372.164979px;}
.xc{left:382.574979px;}
.x11{left:443.849979px;}
.x29{left:472.319979px;}
.x2a{left:480.419979px;}
.x1a{left:495.209979px;}
.xd{left:505.109979px;}
.x1e{left:518.939979px;}
.x1f{left:594.614979px;}
.x17{left:673.889979px;}
.x20{left:731.084979px;}
.x12{left:787.169979px;}
.x13{left:789.839979px;}
.x15{left:807.764979px;}
.xb{left:849.989979px;}
.x7{left:852.629979px;}
.x16{left:861.404979px;}
.x18{left:893.549979px;}
.x14{left:901.004979px;}
.x2b{left:903.059979px;}
.x2d{left:907.919979px;}
.x2c{left:923.069979px;}
.x32{left:937.904979px;}
.x2e{left:940.709979px;}
.x21{left:942.689979px;}
.x31{left:968.324979px;}
.x22{left:976.529979px;}
.x2f{left:1091.954979px;}
.x30{left:1117.694979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls44{letter-spacing:-0.672000pt;}
.ls47{letter-spacing:-0.395733pt;}
.ls2f{letter-spacing:-0.319467pt;}
.ls25{letter-spacing:-0.309867pt;}
.lsf{letter-spacing:-0.269867pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.202133pt;}
.ls13{letter-spacing:-0.181333pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls30{letter-spacing:-0.124267pt;}
.ls1f{letter-spacing:-0.106133pt;}
.ls48{letter-spacing:-0.104533pt;}
.ls18{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.037867pt;}
.ls43{letter-spacing:-0.033280pt;}
.ls45{letter-spacing:-0.024960pt;}
.lsd{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.004480pt;}
.ls6{letter-spacing:0.011776pt;}
.ls11{letter-spacing:0.023040pt;}
.ls8{letter-spacing:0.023552pt;}
.ls3a{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.054400pt;}
.ls15{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.071168pt;}
.ls7{letter-spacing:0.103936pt;}
.ls5{letter-spacing:0.132608pt;}
.ls22{letter-spacing:0.136192pt;}
.ls3{letter-spacing:0.164480pt;}
.ls1e{letter-spacing:0.165120pt;}
.lsa{letter-spacing:0.171776pt;}
.ls39{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.202880pt;}
.ls9{letter-spacing:0.224768pt;}
.ls26{letter-spacing:0.227072pt;}
.lsc{letter-spacing:0.228864pt;}
.ls38{letter-spacing:0.244267pt;}
.ls16{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266880pt;}
.ls19{letter-spacing:0.275200pt;}
.ls24{letter-spacing:0.322667pt;}
.ls41{letter-spacing:0.337920pt;}
.ls35{letter-spacing:0.602880pt;}
.ls46{letter-spacing:0.613333pt;}
.ls31{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.805120pt;}
.ls42{letter-spacing:1.617920pt;}
.ls34{letter-spacing:1.882880pt;}
.ls21{letter-spacing:2.725120pt;}
.ls3e{letter-spacing:3.503360pt;}
.ls3d{letter-spacing:4.143360pt;}
.ls20{letter-spacing:4.645120pt;}
.ls1b{letter-spacing:5.925120pt;}
.ls1a{letter-spacing:6.565120pt;}
.ls32{letter-spacing:7.002880pt;}
.ls40{letter-spacing:12.463360pt;}
.ls1c{letter-spacing:15.496192pt;}
.ls3c{letter-spacing:20.143360pt;}
.ls3f{letter-spacing:20.480000pt;}
.ls3b{letter-spacing:20.783360pt;}
.ls2{letter-spacing:29.065600pt;}
.ls2e{letter-spacing:49.416192pt;}
.ls29{letter-spacing:52.005120pt;}
.ls28{letter-spacing:52.026453pt;}
.ls37{letter-spacing:62.720000pt;}
.ls1d{letter-spacing:68.005120pt;}
.ls27{letter-spacing:71.205120pt;}
.ls2b{letter-spacing:86.565120pt;}
.ls2d{letter-spacing:106.547200pt;}
.ls2a{letter-spacing:106.592000pt;}
.ls36{letter-spacing:114.163200pt;}
.ls33{letter-spacing:114.208000pt;}
.ls23{letter-spacing:213.285120pt;}
.ws24{word-spacing:-106.880000pt;}
.ws27{word-spacing:-85.120000pt;}
.ws3e{word-spacing:-75.008000pt;}
.ws2e{word-spacing:-74.880000pt;}
.ws3a{word-spacing:-74.855040pt;}
.ws31{word-spacing:-74.846720pt;}
.ws30{word-spacing:-74.208000pt;}
.ws3f{word-spacing:-61.102080pt;}
.ws0{word-spacing:-52.782080pt;}
.ws40{word-spacing:-48.755200pt;}
.ws20{word-spacing:-41.633280pt;}
.ws2b{word-spacing:-36.353067pt;}
.ws3{word-spacing:-35.443200pt;}
.wsa{word-spacing:-27.822080pt;}
.ws5{word-spacing:-27.788800pt;}
.ws2a{word-spacing:-24.960000pt;}
.ws1d{word-spacing:-24.477547pt;}
.ws18{word-spacing:-24.459008pt;}
.ws1a{word-spacing:-24.183808pt;}
.ws19{word-spacing:-24.154880pt;}
.ws1b{word-spacing:-24.048747pt;}
.ws1e{word-spacing:-23.845013pt;}
.wsc{word-spacing:-22.164480pt;}
.ws7{word-spacing:-22.131200pt;}
.wse{word-spacing:-21.962347pt;}
.ws39{word-spacing:-21.429973pt;}
.ws3c{word-spacing:-20.852224pt;}
.ws2f{word-spacing:-20.783360pt;}
.ws3d{word-spacing:-20.747691pt;}
.ws3b{word-spacing:-20.456491pt;}
.ws29{word-spacing:-19.266048pt;}
.ws28{word-spacing:-19.237120pt;}
.ws2c{word-spacing:-16.922880pt;}
.ws26{word-spacing:-16.896000pt;}
.ws25{word-spacing:-16.576000pt;}
.ws1c{word-spacing:-16.344320pt;}
.ws21{word-spacing:-14.492928pt;}
.ws1f{word-spacing:-14.464000pt;}
.ws17{word-spacing:-14.400000pt;}
.ws23{word-spacing:-14.368661pt;}
.ws16{word-spacing:-14.208000pt;}
.ws22{word-spacing:-14.173461pt;}
.ws2d{word-spacing:-0.106880pt;}
.ws34{word-spacing:-0.074880pt;}
.ws38{word-spacing:-0.049920pt;}
.ws15{word-spacing:0.000000pt;}
.ws13{word-spacing:5.285888pt;}
.ws12{word-spacing:5.990080pt;}
.ws11{word-spacing:6.031360pt;}
.ws9{word-spacing:6.078080pt;}
.ws10{word-spacing:6.198528pt;}
.ws4{word-spacing:6.254080pt;}
.wsb{word-spacing:6.333867pt;}
.wsd{word-spacing:6.513664pt;}
.wsf{word-spacing:6.556416pt;}
.ws8{word-spacing:7.065600pt;}
.ws14{word-spacing:7.142144pt;}
.ws6{word-spacing:7.753600pt;}
.ws2{word-spacing:8.826027pt;}
.ws1{word-spacing:11.279147pt;}
.ws36{word-spacing:18.534400pt;}
.ws37{word-spacing:18.552320pt;}
.ws35{word-spacing:18.616747pt;}
.ws32{word-spacing:24.220800pt;}
.ws33{word-spacing:25.891200pt;}
._f{margin-left:-22.160491pt;}
._c{margin-left:-9.832960pt;}
._e{margin-left:-7.575680pt;}
._4{margin-left:-6.247680pt;}
._8{margin-left:-4.269931pt;}
._3{margin-left:-2.590187pt;}
._1{margin-left:-1.300843pt;}
._0{width:1.307349pt;}
._2{width:2.352811pt;}
._7{width:4.328341pt;}
._d{width:7.159040pt;}
._11{width:12.156544pt;}
._5{width:15.130368pt;}
._10{width:24.237376pt;}
._b{width:52.325419pt;}
._6{width:68.361600pt;}
._a{width:71.432960pt;}
._9{width:212.721899pt;}
._12{width:345.207467pt;}
.fsa{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fsb{font-size:72.320000pt;}
.fsc{font-size:72.448000pt;}
.fs13{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fsd{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fs10{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs7{font-size:107.008000pt;}
.fs3{font-size:136.320000pt;}
.fs12{font-size:138.880000pt;}
.fs17{font-size:149.120000pt;}
.fs9{font-size:160.000000pt;}
.fse{font-size:160.128000pt;}
.fs1{font-size:161.920000pt;}
.fs2{font-size:170.880000pt;}
.fs16{font-size:187.520000pt;}
.fs0{font-size:203.008000pt;}
.fs4{font-size:213.120000pt;}
.fs15{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:25.120000pt;}
.ya{bottom:41.376000pt;}
.y60{bottom:54.464000pt;}
.y4f{bottom:70.688000pt;}
.y5f{bottom:76.864000pt;}
.y5e{bottom:99.264000pt;}
.y39{bottom:109.472000pt;}
.y28{bottom:115.520000pt;}
.y4e{bottom:116.608000pt;}
.y1e{bottom:118.336000pt;}
.y5d{bottom:121.696000pt;}
.y11{bottom:123.328000pt;}
.y2b{bottom:126.048000pt;}
.y2d{bottom:131.776000pt;}
.y59{bottom:137.306667pt;}
.y4d{bottom:145.413333pt;}
.y38{bottom:146.653333pt;}
.y52{bottom:154.173333pt;}
.y2a{bottom:158.053333pt;}
.y58{bottom:159.706667pt;}
.y36{bottom:162.106667pt;}
.yd{bottom:173.280000pt;}
.y4c{bottom:178.213333pt;}
.y57{bottom:182.106667pt;}
.y6{bottom:189.986667pt;}
.y29{bottom:190.080000pt;}
.y35{bottom:202.106667pt;}
.y18{bottom:202.880000pt;}
.y56{bottom:204.506667pt;}
.y4b{bottom:207.013333pt;}
.y1a{bottom:221.893333pt;}
.y5{bottom:226.306667pt;}
.y34{bottom:234.146667pt;}
.y4a{bottom:239.840000pt;}
.y19{bottom:243.520000pt;}
.y74{bottom:245.413333pt;}
.y27{bottom:255.680000pt;}
.y16{bottom:259.933333pt;}
.y4{bottom:262.786667pt;}
.y1c{bottom:263.653333pt;}
.y37{bottom:264.226667pt;}
.y49{bottom:268.640000pt;}
.y33{bottom:274.146667pt;}
.y26{bottom:276.000000pt;}
.y23{bottom:287.773333pt;}
.y15{bottom:291.933333pt;}
.y3{bottom:300.573333pt;}
.y48{bottom:301.440000pt;}
.y32{bottom:306.146667pt;}
.y1d{bottom:312.893333pt;}
.y73{bottom:313.440000pt;}
.y69{bottom:315.906667pt;}
.y22{bottom:319.773333pt;}
.y17{bottom:320.640000pt;}
.y62{bottom:321.280000pt;}
.y14{bottom:323.933333pt;}
.y47{bottom:330.240000pt;}
.y31{bottom:338.146667pt;}
.y61{bottom:343.680000pt;}
.y68{bottom:347.906667pt;}
.y2{bottom:349.533333pt;}
.y21{bottom:351.773333pt;}
.y13{bottom:355.973333pt;}
.y1b{bottom:356.960000pt;}
.y46{bottom:359.040000pt;}
.y67{bottom:379.933333pt;}
.y20{bottom:383.773333pt;}
.y3f{bottom:387.493333pt;}
.y12{bottom:387.973333pt;}
.y72{bottom:388.346667pt;}
.y45{bottom:391.866667pt;}
.y30{bottom:402.173333pt;}
.y7{bottom:404.733333pt;}
.y1f{bottom:415.813333pt;}
.y44{bottom:420.666667pt;}
.y3e{bottom:421.093333pt;}
.y25{bottom:428.640000pt;}
.y2f{bottom:434.173333pt;}
.y66{bottom:444.253333pt;}
.y55{bottom:445.826667pt;}
.y24{bottom:447.840000pt;}
.y43{bottom:449.466667pt;}
.y3d{bottom:454.693333pt;}
.y65{bottom:461.346667pt;}
.y2e{bottom:466.173333pt;}
.y71{bottom:466.373333pt;}
.y1{bottom:466.946667pt;}
.y54{bottom:468.226667pt;}
.y5c{bottom:478.053333pt;}
.y3c{bottom:480.293333pt;}
.y42{bottom:482.266667pt;}
.y64{bottom:483.746667pt;}
.y70{bottom:488.773333pt;}
.y53{bottom:490.626667pt;}
.y5b{bottom:500.453333pt;}
.y63{bottom:506.146667pt;}
.y41{bottom:511.106667pt;}
.y6f{bottom:519.173333pt;}
.yf{bottom:520.546667pt;}
.y5a{bottom:522.853333pt;}
.yc{bottom:524.480000pt;}
.y10{bottom:528.893333pt;}
.y3b{bottom:531.520000pt;}
.y40{bottom:539.906667pt;}
.y6e{bottom:541.573333pt;}
.ye{bottom:552.573333pt;}
.y3a{bottom:557.120000pt;}
.y6d{bottom:563.973333pt;}
.y6c{bottom:586.373333pt;}
.y51{bottom:600.960000pt;}
.y9{bottom:606.426667pt;}
.yb{bottom:615.746667pt;}
.y6b{bottom:616.800000pt;}
.y2c{bottom:621.666667pt;}
.y6a{bottom:647.680000pt;}
.y50{bottom:651.680000pt;}
.h7{height:59.593750pt;}
.h8{height:60.937500pt;}
.h11{height:63.656250pt;}
.h14{height:63.783562pt;}
.h18{height:64.338750pt;}
.h4{height:65.211562pt;}
.hf{height:65.531250pt;}
.he{height:71.931562pt;}
.hc{height:74.050313pt;}
.hd{height:74.181375pt;}
.h1d{height:74.477812pt;}
.h1e{height:74.605125pt;}
.h21{height:76.308750pt;}
.h22{height:78.097500pt;}
.h23{height:78.231000pt;}
.h10{height:79.570312pt;}
.h15{height:80.786250pt;}
.h17{height:84.662813pt;}
.h19{height:84.790125pt;}
.h16{height:89.390625pt;}
.h1a{height:89.509812pt;}
.h20{height:98.582187pt;}
.h1f{height:98.700250pt;}
.h5{height:99.521562pt;}
.h3{height:99.640750pt;}
.ha{height:106.305937pt;}
.h1c{height:106.397813pt;}
.h12{height:106.433250pt;}
.hb{height:109.437187pt;}
.h9{height:109.568250pt;}
.h1b{height:129.318437pt;}
.h25{height:138.853437pt;}
.h6{height:148.984375pt;}
.h13{height:149.103562pt;}
.h1{height:189.031375pt;}
.h2{height:198.447187pt;}
.h24{height:218.828250pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:39.007981pt;}
.x1b{left:41.215981pt;}
.x38{left:56.831981pt;}
.x27{left:65.375981pt;}
.x24{left:67.135981pt;}
.x35{left:70.399981pt;}
.x26{left:71.455981pt;}
.x25{left:75.295981pt;}
.x1c{left:77.215981pt;}
.x1{left:85.599981pt;}
.x19{left:87.359981pt;}
.x5{left:89.567981pt;}
.x34{left:93.119981pt;}
.x2{left:97.599981pt;}
.x6{left:100.735981pt;}
.x23{left:111.647981pt;}
.x28{left:113.247981pt;}
.x36{left:116.159981pt;}
.xe{left:142.746648pt;}
.x10{left:147.706648pt;}
.x37{left:152.826648pt;}
.xf{left:155.386648pt;}
.x9{left:159.199981pt;}
.x33{left:229.306648pt;}
.xa{left:249.919981pt;}
.x3{left:264.959981pt;}
.x8{left:327.973314pt;}
.x4{left:330.813314pt;}
.xc{left:340.066648pt;}
.x11{left:394.533314pt;}
.x29{left:419.839981pt;}
.x2a{left:427.039981pt;}
.x1a{left:440.186648pt;}
.xd{left:448.986648pt;}
.x1e{left:461.279981pt;}
.x1f{left:528.546648pt;}
.x17{left:599.013314pt;}
.x20{left:649.853314pt;}
.x12{left:699.706648pt;}
.x13{left:702.079981pt;}
.x15{left:718.013314pt;}
.xb{left:755.546648pt;}
.x7{left:757.893314pt;}
.x16{left:765.693314pt;}
.x18{left:794.266648pt;}
.x14{left:800.893314pt;}
.x2b{left:802.719981pt;}
.x2d{left:807.039981pt;}
.x2c{left:820.506648pt;}
.x32{left:833.693314pt;}
.x2e{left:836.186648pt;}
.x21{left:837.946648pt;}
.x31{left:860.733314pt;}
.x22{left:868.026648pt;}
.x2f{left:970.626648pt;}
.x30{left:993.506648pt;}
}




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