
    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_f26347ba99847de9318a40e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e22e022f4fd37aa13a700d5d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_47729d3e07c8862d12bd53d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_e5373d8cf98923dfb20f8a59.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ce3e7b00bfce7a6c465a638.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_51165cc56c44397b0c84f58b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_787aed56ceec7749e8f2e258.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_302cb0e520cee25c26f4164b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_69c4401a7bb99b2128da6cab.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_c276b1c4842d2c04c346c958.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_39cc31a7731b38e05de01575.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_784f872eac68033d4750fef6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.090332;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;}
.m2{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,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);}
.m1{transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250833,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-56.160000px;}
.v7{vertical-align:-50.400000px;}
.v5{vertical-align:-48.960000px;}
.v3{vertical-align:-43.920000px;}
.v8{vertical-align:-30.240000px;}
.va{vertical-align:-10.080000px;}
.vd{vertical-align:-4.683879px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:10.080000px;}
.v4{vertical-align:43.920000px;}
.v6{vertical-align:48.960000px;}
.vc{vertical-align:50.400000px;}
.v9{vertical-align:80.640000px;}
.v2{vertical-align:86.400000px;}
.ls1a{letter-spacing:-5.202000px;}
.ls1b{letter-spacing:-5.142000px;}
.ls43{letter-spacing:-4.386000px;}
.ls40{letter-spacing:-4.301012px;}
.ls1e{letter-spacing:-3.324000px;}
.ls35{letter-spacing:-3.018000px;}
.ls2e{letter-spacing:-2.460000px;}
.ls2a{letter-spacing:-2.346000px;}
.ls3f{letter-spacing:-1.645463px;}
.ls47{letter-spacing:-1.398000px;}
.ls42{letter-spacing:-0.900000px;}
.ls1d{letter-spacing:-0.816000px;}
.ls44{letter-spacing:-0.517800px;}
.ls41{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.326400px;}
.ls45{letter-spacing:-0.306000px;}
.ls3e{letter-spacing:-0.203321px;}
.ls29{letter-spacing:-0.172800px;}
.ls46{letter-spacing:-0.165000px;}
.ls20{letter-spacing:-0.123600px;}
.ls24{letter-spacing:-0.118200px;}
.ls2c{letter-spacing:-0.094200px;}
.ls31{letter-spacing:-0.087000px;}
.ls27{letter-spacing:-0.058320px;}
.ls19{letter-spacing:-0.042480px;}
.ls32{letter-spacing:-0.036720px;}
.ls49{letter-spacing:-0.030960px;}
.ls3a{letter-spacing:-0.009360px;}
.ls18{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.000023px;}
.ls25{letter-spacing:0.005472px;}
.ls6{letter-spacing:0.024480px;}
.ls5{letter-spacing:0.044040px;}
.ls10{letter-spacing:0.058469px;}
.ls1c{letter-spacing:0.064800px;}
.ls26{letter-spacing:0.076800px;}
.ls22{letter-spacing:0.079800px;}
.ls1f{letter-spacing:0.083400px;}
.ls7{letter-spacing:0.083520px;}
.ls38{letter-spacing:0.084000px;}
.ls4{letter-spacing:0.096480px;}
.ls33{letter-spacing:0.101400px;}
.lsa{letter-spacing:0.112800px;}
.ls17{letter-spacing:0.119520px;}
.ls4a{letter-spacing:0.133360px;}
.ls39{letter-spacing:0.148800px;}
.ls23{letter-spacing:0.176400px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.202200px;}
.lsc{letter-spacing:0.202320px;}
.ls2{letter-spacing:0.226800px;}
.ls3b{letter-spacing:0.251400px;}
.ls3{letter-spacing:0.257760px;}
.ls2d{letter-spacing:0.258000px;}
.ls37{letter-spacing:0.267000px;}
.ls48{letter-spacing:0.268800px;}
.ls30{letter-spacing:0.273000px;}
.ls2b{letter-spacing:0.291600px;}
.ls16{letter-spacing:0.306000px;}
.ls21{letter-spacing:0.307200px;}
.ls8{letter-spacing:0.338400px;}
.lsd{letter-spacing:0.355680px;}
.ls36{letter-spacing:0.357600px;}
.lse{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.414000px;}
.ls3d{letter-spacing:0.586502px;}
.ls3c{letter-spacing:0.774000px;}
.ls1{letter-spacing:0.977760px;}
.ls14{letter-spacing:14.657760px;}
.ls15{letter-spacing:15.377760px;}
.ls12{letter-spacing:49.217760px;}
.ls11{letter-spacing:49.958475px;}
.lsb{letter-spacing:161.802240px;}
.ls9{letter-spacing:164.393760px;}
.ls13{letter-spacing:200.338560px;}
.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;}
}
.ws22{word-spacing:-228.240000px;}
.ws34{word-spacing:-180.000000px;}
.ws13{word-spacing:-162.720000px;}
.ws12{word-spacing:-157.291920px;}
.ws6{word-spacing:-89.841600px;}
.ws14{word-spacing:-89.496000px;}
.ws1c{word-spacing:-59.991240px;}
.ws1b{word-spacing:-59.391840px;}
.ws1a{word-spacing:-57.258240px;}
.ws4{word-spacing:-54.185760px;}
.ws2b{word-spacing:-52.747200px;}
.ws20{word-spacing:-51.996240px;}
.ws16{word-spacing:-51.953184px;}
.ws24{word-spacing:-51.939840px;}
.ws18{word-spacing:-51.906384px;}
.ws2{word-spacing:-51.784440px;}
.wsf{word-spacing:-51.758640px;}
.ws21{word-spacing:-51.695040px;}
.ws1f{word-spacing:-51.683640px;}
.wsb{word-spacing:-51.665640px;}
.wse{word-spacing:-51.662040px;}
.ws10{word-spacing:-51.658824px;}
.ws7{word-spacing:-51.647040px;}
.ws1{word-spacing:-51.582240px;}
.ws1e{word-spacing:-51.545520px;}
.ws0{word-spacing:-51.539760px;}
.ws11{word-spacing:-51.496584px;}
.ws19{word-spacing:-51.488040px;}
.ws15{word-spacing:-51.441984px;}
.ws3a{word-spacing:-51.417240px;}
.ws39{word-spacing:-51.276240px;}
.ws38{word-spacing:-51.064440px;}
.ws8{word-spacing:-50.766240px;}
.ws17{word-spacing:-49.268784px;}
.ws23{word-spacing:-48.564240px;}
.ws26{word-spacing:-47.520000px;}
.ws37{word-spacing:-47.196240px;}
.ws5{word-spacing:-46.440240px;}
.ws3{word-spacing:-46.412784px;}
.ws3d{word-spacing:-46.082304px;}
.ws3f{word-spacing:-46.049760px;}
.ws33{word-spacing:-40.860000px;}
.ws32{word-spacing:-40.320000px;}
.ws35{word-spacing:-39.780000px;}
.ws30{word-spacing:-39.265200px;}
.wsd{word-spacing:-34.641120px;}
.wsc{word-spacing:-34.210320px;}
.ws36{word-spacing:-34.055280px;}
.ws3e{word-spacing:-31.022880px;}
.wsa{word-spacing:-31.009920px;}
.ws40{word-spacing:-30.754080px;}
.ws41{word-spacing:-30.723120px;}
.ws3c{word-spacing:-27.174240px;}
.ws3b{word-spacing:-25.776240px;}
.ws25{word-spacing:-0.228240px;}
.ws31{word-spacing:-0.180000px;}
.ws2a{word-spacing:-0.072000px;}
.ws42{word-spacing:0.000000px;}
.ws2f{word-spacing:0.712080px;}
.ws28{word-spacing:12.168000px;}
.ws2d{word-spacing:13.672080px;}
.ws29{word-spacing:27.714960px;}
.ws2e{word-spacing:30.760920px;}
.ws27{word-spacing:38.868840px;}
.ws2c{word-spacing:44.242560px;}
.ws9{word-spacing:148.576320px;}
.ws1d{word-spacing:1022.711160px;}
._28{margin-left:-1139.583714px;}
._22{margin-left:-37.674840px;}
._20{margin-left:-33.565800px;}
._12{margin-left:-24.835200px;}
._16{margin-left:-21.954960px;}
._6{margin-left:-20.541600px;}
._1f{margin-left:-18.221760px;}
._1e{margin-left:-17.022960px;}
._15{margin-left:-15.535440px;}
._14{margin-left:-13.228560px;}
._5{margin-left:-11.412000px;}
._2b{margin-left:-9.863640px;}
._13{margin-left:-8.609280px;}
._17{margin-left:-7.389360px;}
._e{margin-left:-6.162480px;}
._9{margin-left:-4.336560px;}
._1{margin-left:-2.510640px;}
._2{margin-left:-1.482120px;}
._3{width:1.058400px;}
._a{width:2.201400px;}
._b{width:3.630480px;}
._4{width:5.899392px;}
._10{width:11.220480px;}
._11{width:12.725280px;}
._23{width:14.318640px;}
._2a{width:15.760800px;}
._29{width:18.300000px;}
._1b{width:23.940360px;}
._c{width:31.937760px;}
._d{width:33.082440px;}
._26{width:40.059840px;}
._7{width:48.231360px;}
._8{width:49.268160px;}
._19{width:71.099280px;}
._1a{width:72.246480px;}
._f{width:104.061240px;}
._24{width:120.769200px;}
._25{width:157.492800px;}
._21{width:164.405760px;}
._0{width:200.158560px;}
._18{width:254.134560px;}
._1c{width:488.393400px;}
._27{width:499.760950px;}
._2c{width:722.077673px;}
._1d{width:1063.643040px;}
.fc6{color:rgb(116,197,233);}
.fc5{color:rgb(0,132,146);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(22,2,89);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1a{font-size:28.080000px;}
.fs16{font-size:120.240000px;}
.fs19{font-size:136.080000px;}
.fs4{font-size:151.920000px;}
.fsd{font-size:157.680000px;}
.fsa{font-size:167.760000px;}
.fse{font-size:174.960000px;}
.fs11{font-size:180.000000px;}
.fs8{font-size:192.240000px;}
.fs10{font-size:196.282563px;}
.fs18{font-size:203.760000px;}
.fs17{font-size:203.904000px;}
.fs1c{font-size:215.458421px;}
.fsf{font-size:215.832619px;}
.fsc{font-size:216.000000px;}
.fs1b{font-size:216.239068px;}
.fs1{font-size:228.240000px;}
.fs2{font-size:228.384000px;}
.fs12{font-size:237.124099px;}
.fs0{font-size:239.760000px;}
.fs3{font-size:264.240000px;}
.fsb{font-size:264.384000px;}
.fs14{font-size:269.606852px;}
.fs13{font-size:270.256507px;}
.fs7{font-size:288.000000px;}
.fs15{font-size:360.000000px;}
.fs9{font-size:396.000000px;}
.fs5{font-size:696.240000px;}
.fs6{font-size:720.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:43.507517px;}
.y5a{bottom:72.901666px;}
.y36{bottom:164.127290px;}
.y26{bottom:164.595000px;}
.y37{bottom:193.452374px;}
.y3f{bottom:295.846848px;}
.y3e{bottom:367.308904px;}
.y18{bottom:417.600000px;}
.y3b{bottom:422.850000px;}
.y3a{bottom:476.850000px;}
.y39{bottom:530.850000px;}
.y4d{bottom:611.925000px;}
.y4c{bottom:734.970000px;}
.y3c{bottom:767.199861px;}
.y4b{bottom:803.370000px;}
.y3d{bottom:809.209719px;}
.y4a{bottom:871.770000px;}
.y49{bottom:940.890000px;}
.y48{bottom:1012.170000px;}
.y47{bottom:1080.570000px;}
.y41{bottom:1144.797158px;}
.y46{bottom:1148.970000px;}
.y45{bottom:1217.370000px;}
.y1d{bottom:1301.685000px;}
.y40{bottom:1345.513507px;}
.y15{bottom:1428.585000px;}
.y14{bottom:1496.985000px;}
.y13{bottom:1565.430000px;}
.y12{bottom:1634.550000px;}
.y11{bottom:1705.830000px;}
.y10{bottom:1774.230000px;}
.yf{bottom:1842.630000px;}
.ye{bottom:1911.030000px;}
.y42{bottom:1966.137126px;}
.yd{bottom:1979.430000px;}
.yc{bottom:2047.830000px;}
.y58{bottom:2050.560000px;}
.y57{bottom:2111.760000px;}
.yb{bottom:2116.230000px;}
.y56{bottom:2173.680000px;}
.ya{bottom:2185.350000px;}
.y55{bottom:2237.760000px;}
.y9{bottom:2256.630000px;}
.y54{bottom:2298.990000px;}
.y8{bottom:2325.030000px;}
.y7{bottom:2396.670000px;}
.y6{bottom:2472.630000px;}
.y5{bottom:2541.750000px;}
.y4{bottom:2613.030000px;}
.y3{bottom:2681.460000px;}
.y44{bottom:2716.020000px;}
.y2{bottom:2749.860000px;}
.y43{bottom:2766.420000px;}
.y1{bottom:2818.980000px;}
.y34{bottom:2905.740000px;}
.y52{bottom:3009.750000px;}
.y53{bottom:3025.830000px;}
.y51{bottom:3045.750000px;}
.y33{bottom:3047.145000px;}
.y35{bottom:3059.239577px;}
.y50{bottom:3081.750000px;}
.y32{bottom:3117.885000px;}
.y31{bottom:3187.005000px;}
.y30{bottom:3258.285000px;}
.y2f{bottom:3327.405000px;}
.y2e{bottom:3410.565000px;}
.y2a{bottom:3447.075000px;}
.y25{bottom:3470.940000px;}
.y27{bottom:3504.210000px;}
.y2d{bottom:3506.685000px;}
.y29{bottom:3509.790000px;}
.y28{bottom:3572.490000px;}
.y2c{bottom:3575.085000px;}
.y24{bottom:3635.535000px;}
.y2b{bottom:3645.870000px;}
.y1e{bottom:3742.410000px;}
.y4f{bottom:3883.470000px;}
.y23{bottom:3883.530000px;}
.y4e{bottom:3919.470000px;}
.y22{bottom:3960.390000px;}
.y59{bottom:3986.105720px;}
.y21{bottom:4028.790000px;}
.y20{bottom:4097.235000px;}
.y1f{bottom:4165.635000px;}
.y1c{bottom:4259.415000px;}
.y1b{bottom:4540.425000px;}
.y1a{bottom:4698.825000px;}
.y19{bottom:4779.645000px;}
.y17{bottom:4885.125000px;}
.y16{bottom:5093.925000px;}
.h1f{height:119.594180px;}
.h20{height:123.116836px;}
.h16{height:136.054688px;}
.h1d{height:145.397461px;}
.hf{height:166.858945px;}
.h15{height:170.117944px;}
.hd{height:171.773789px;}
.h17{height:179.033203px;}
.h23{height:179.549010px;}
.h12{height:183.097969px;}
.h14{height:187.061962px;}
.h24{height:187.414231px;}
.h1a{height:200.420808px;}
.ha{height:201.792656px;}
.h22{height:202.665586px;}
.h19{height:205.515271px;}
.h21{height:208.782562px;}
.h5{height:227.014102px;}
.h4{height:227.157328px;}
.h1c{height:227.875713px;}
.h6{height:229.016602px;}
.h3{height:233.700820px;}
.h1b{height:234.231104px;}
.h11{height:238.472227px;}
.h2{height:245.496445px;}
.hc{height:270.562148px;}
.h10{height:270.709594px;}
.h13{height:274.678287px;}
.h9{height:286.453125px;}
.he{height:359.100000px;}
.h1e{height:368.613281px;}
.hb{height:393.873047px;}
.h7{height:692.500430px;}
.h8{height:716.132812px;}
.h18{height:2048.037675px;}
.h1{height:5308.500000px;}
.h0{height:5308.560000px;}
.w3{width:435.960000px;}
.w5{width:852.159412px;}
.w6{width:1422.807064px;}
.w4{width:1911.498572px;}
.w1{width:3754.500000px;}
.w2{width:3754.799944px;}
.w0{width:3754.800000px;}
.x0{left:0.000000px;}
.xe{left:20.265000px;}
.x27{left:104.147944px;}
.xa{left:111.095944px;}
.x11{left:114.587944px;}
.x1f{left:118.511944px;}
.x1e{left:136.691944px;}
.x8{left:165.089944px;}
.x26{left:170.384944px;}
.x3{left:177.119944px;}
.xb{left:192.089944px;}
.x19{left:292.243022px;}
.x1c{left:326.654018px;}
.x1d{left:358.143340px;}
.x18{left:372.860153px;}
.x1b{left:558.928336px;}
.x1a{left:571.102040px;}
.x5{left:625.064944px;}
.x15{left:709.570372px;}
.x6{left:757.724944px;}
.x29{left:760.031240px;}
.x14{left:799.015464px;}
.x17{left:1043.069944px;}
.x16{left:1116.552407px;}
.x7{left:1338.449944px;}
.x13{left:1340.574005px;}
.x12{left:1710.199942px;}
.x28{left:2195.539963px;}
.x25{left:2259.749944px;}
.xc{left:2433.449944px;}
.x23{left:2462.219944px;}
.x1{left:2518.229944px;}
.xf{left:2545.589944px;}
.x20{left:2556.464944px;}
.x22{left:2575.589944px;}
.x2{left:2585.729944px;}
.x9{left:2610.509944px;}
.x24{left:2618.669944px;}
.x21{left:2624.009944px;}
.x4{left:2892.599944px;}
.x10{left:2940.764944px;}
.xd{left:3186.360000px;}
@media print{
.v1{vertical-align:-49.920000pt;}
.v7{vertical-align:-44.800000pt;}
.v5{vertical-align:-43.520000pt;}
.v3{vertical-align:-39.040000pt;}
.v8{vertical-align:-26.880000pt;}
.va{vertical-align:-8.960000pt;}
.vd{vertical-align:-4.163448pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:8.960000pt;}
.v4{vertical-align:39.040000pt;}
.v6{vertical-align:43.520000pt;}
.vc{vertical-align:44.800000pt;}
.v9{vertical-align:71.680000pt;}
.v2{vertical-align:76.800000pt;}
.ls1a{letter-spacing:-4.624000pt;}
.ls1b{letter-spacing:-4.570667pt;}
.ls43{letter-spacing:-3.898667pt;}
.ls40{letter-spacing:-3.823122pt;}
.ls1e{letter-spacing:-2.954667pt;}
.ls35{letter-spacing:-2.682667pt;}
.ls2e{letter-spacing:-2.186667pt;}
.ls2a{letter-spacing:-2.085333pt;}
.ls3f{letter-spacing:-1.462634pt;}
.ls47{letter-spacing:-1.242667pt;}
.ls42{letter-spacing:-0.800000pt;}
.ls1d{letter-spacing:-0.725333pt;}
.ls44{letter-spacing:-0.460267pt;}
.ls41{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.290133pt;}
.ls45{letter-spacing:-0.272000pt;}
.ls3e{letter-spacing:-0.180729pt;}
.ls29{letter-spacing:-0.153600pt;}
.ls46{letter-spacing:-0.146667pt;}
.ls20{letter-spacing:-0.109867pt;}
.ls24{letter-spacing:-0.105067pt;}
.ls2c{letter-spacing:-0.083733pt;}
.ls31{letter-spacing:-0.077333pt;}
.ls27{letter-spacing:-0.051840pt;}
.ls19{letter-spacing:-0.037760pt;}
.ls32{letter-spacing:-0.032640pt;}
.ls49{letter-spacing:-0.027520pt;}
.ls3a{letter-spacing:-0.008320pt;}
.ls18{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.000020pt;}
.ls25{letter-spacing:0.004864pt;}
.ls6{letter-spacing:0.021760pt;}
.ls5{letter-spacing:0.039147pt;}
.ls10{letter-spacing:0.051972pt;}
.ls1c{letter-spacing:0.057600pt;}
.ls26{letter-spacing:0.068267pt;}
.ls22{letter-spacing:0.070933pt;}
.ls1f{letter-spacing:0.074133pt;}
.ls7{letter-spacing:0.074240pt;}
.ls38{letter-spacing:0.074667pt;}
.ls4{letter-spacing:0.085760pt;}
.ls33{letter-spacing:0.090133pt;}
.lsa{letter-spacing:0.100267pt;}
.ls17{letter-spacing:0.106240pt;}
.ls4a{letter-spacing:0.118543pt;}
.ls39{letter-spacing:0.132267pt;}
.ls23{letter-spacing:0.156800pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.179733pt;}
.lsc{letter-spacing:0.179840pt;}
.ls2{letter-spacing:0.201600pt;}
.ls3b{letter-spacing:0.223467pt;}
.ls3{letter-spacing:0.229120pt;}
.ls2d{letter-spacing:0.229333pt;}
.ls37{letter-spacing:0.237333pt;}
.ls48{letter-spacing:0.238933pt;}
.ls30{letter-spacing:0.242667pt;}
.ls2b{letter-spacing:0.259200pt;}
.ls16{letter-spacing:0.272000pt;}
.ls21{letter-spacing:0.273067pt;}
.ls8{letter-spacing:0.300800pt;}
.lsd{letter-spacing:0.316160pt;}
.ls36{letter-spacing:0.317867pt;}
.lse{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.368000pt;}
.ls3d{letter-spacing:0.521335pt;}
.ls3c{letter-spacing:0.688000pt;}
.ls1{letter-spacing:0.869120pt;}
.ls14{letter-spacing:13.029120pt;}
.ls15{letter-spacing:13.669120pt;}
.ls12{letter-spacing:43.749120pt;}
.ls11{letter-spacing:44.407533pt;}
.lsb{letter-spacing:143.824213pt;}
.ls9{letter-spacing:146.127787pt;}
.ls13{letter-spacing:178.078720pt;}
.ws22{word-spacing:-202.880000pt;}
.ws34{word-spacing:-160.000000pt;}
.ws13{word-spacing:-144.640000pt;}
.ws12{word-spacing:-139.815040pt;}
.ws6{word-spacing:-79.859200pt;}
.ws14{word-spacing:-79.552000pt;}
.ws1c{word-spacing:-53.325547pt;}
.ws1b{word-spacing:-52.792747pt;}
.ws1a{word-spacing:-50.896213pt;}
.ws4{word-spacing:-48.165120pt;}
.ws2b{word-spacing:-46.886400pt;}
.ws20{word-spacing:-46.218880pt;}
.ws16{word-spacing:-46.180608pt;}
.ws24{word-spacing:-46.168747pt;}
.ws18{word-spacing:-46.139008pt;}
.ws2{word-spacing:-46.030613pt;}
.wsf{word-spacing:-46.007680pt;}
.ws21{word-spacing:-45.951147pt;}
.ws1f{word-spacing:-45.941013pt;}
.wsb{word-spacing:-45.925013pt;}
.wse{word-spacing:-45.921813pt;}
.ws10{word-spacing:-45.918955pt;}
.ws7{word-spacing:-45.908480pt;}
.ws1{word-spacing:-45.850880pt;}
.ws1e{word-spacing:-45.818240pt;}
.ws0{word-spacing:-45.813120pt;}
.ws11{word-spacing:-45.774741pt;}
.ws19{word-spacing:-45.767147pt;}
.ws15{word-spacing:-45.726208pt;}
.ws3a{word-spacing:-45.704213pt;}
.ws39{word-spacing:-45.578880pt;}
.ws38{word-spacing:-45.390613pt;}
.ws8{word-spacing:-45.125547pt;}
.ws17{word-spacing:-43.794475pt;}
.ws23{word-spacing:-43.168213pt;}
.ws26{word-spacing:-42.240000pt;}
.ws37{word-spacing:-41.952213pt;}
.ws5{word-spacing:-41.280213pt;}
.ws3{word-spacing:-41.255808pt;}
.ws3d{word-spacing:-40.962048pt;}
.ws3f{word-spacing:-40.933120pt;}
.ws33{word-spacing:-36.320000pt;}
.ws32{word-spacing:-35.840000pt;}
.ws35{word-spacing:-35.360000pt;}
.ws30{word-spacing:-34.902400pt;}
.wsd{word-spacing:-30.792107pt;}
.wsc{word-spacing:-30.409173pt;}
.ws36{word-spacing:-30.271360pt;}
.ws3e{word-spacing:-27.575893pt;}
.wsa{word-spacing:-27.564373pt;}
.ws40{word-spacing:-27.336960pt;}
.ws41{word-spacing:-27.309440pt;}
.ws3c{word-spacing:-24.154880pt;}
.ws3b{word-spacing:-22.912213pt;}
.ws25{word-spacing:-0.202880pt;}
.ws31{word-spacing:-0.160000pt;}
.ws2a{word-spacing:-0.064000pt;}
.ws42{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.632960pt;}
.ws28{word-spacing:10.816000pt;}
.ws2d{word-spacing:12.152960pt;}
.ws29{word-spacing:24.635520pt;}
.ws2e{word-spacing:27.343040pt;}
.ws27{word-spacing:34.550080pt;}
.ws2c{word-spacing:39.326720pt;}
.ws9{word-spacing:132.067840pt;}
.ws1d{word-spacing:909.076587pt;}
._28{margin-left:-1012.963301pt;}
._22{margin-left:-33.488747pt;}
._20{margin-left:-29.836267pt;}
._12{margin-left:-22.075733pt;}
._16{margin-left:-19.515520pt;}
._6{margin-left:-18.259200pt;}
._1f{margin-left:-16.197120pt;}
._1e{margin-left:-15.131520pt;}
._15{margin-left:-13.809280pt;}
._14{margin-left:-11.758720pt;}
._5{margin-left:-10.144000pt;}
._2b{margin-left:-8.767680pt;}
._13{margin-left:-7.652693pt;}
._17{margin-left:-6.568320pt;}
._e{margin-left:-5.477760pt;}
._9{margin-left:-3.854720pt;}
._1{margin-left:-2.231680pt;}
._2{margin-left:-1.317440pt;}
._3{width:0.940800pt;}
._a{width:1.956800pt;}
._b{width:3.227093pt;}
._4{width:5.243904pt;}
._10{width:9.973760pt;}
._11{width:11.311360pt;}
._23{width:12.727680pt;}
._2a{width:14.009600pt;}
._29{width:16.266667pt;}
._1b{width:21.280320pt;}
._c{width:28.389120pt;}
._d{width:29.406613pt;}
._26{width:35.608747pt;}
._7{width:42.872320pt;}
._8{width:43.793920pt;}
._19{width:63.199360pt;}
._1a{width:64.219093pt;}
._f{width:92.498880pt;}
._24{width:107.350400pt;}
._25{width:139.993600pt;}
._21{width:146.138453pt;}
._0{width:177.918720pt;}
._18{width:225.897387pt;}
._1c{width:434.127467pt;}
._27{width:444.231955pt;}
._2c{width:641.846821pt;}
._1d{width:945.460480pt;}
.fs1a{font-size:24.960000pt;}
.fs16{font-size:106.880000pt;}
.fs19{font-size:120.960000pt;}
.fs4{font-size:135.040000pt;}
.fsd{font-size:140.160000pt;}
.fsa{font-size:149.120000pt;}
.fse{font-size:155.520000pt;}
.fs11{font-size:160.000000pt;}
.fs8{font-size:170.880000pt;}
.fs10{font-size:174.473389pt;}
.fs18{font-size:181.120000pt;}
.fs17{font-size:181.248000pt;}
.fs1c{font-size:191.518597pt;}
.fsf{font-size:191.851217pt;}
.fsc{font-size:192.000000pt;}
.fs1b{font-size:192.212505pt;}
.fs1{font-size:202.880000pt;}
.fs2{font-size:203.008000pt;}
.fs12{font-size:210.776977pt;}
.fs0{font-size:213.120000pt;}
.fs3{font-size:234.880000pt;}
.fsb{font-size:235.008000pt;}
.fs14{font-size:239.650535pt;}
.fs13{font-size:240.228006pt;}
.fs7{font-size:256.000000pt;}
.fs15{font-size:320.000000pt;}
.fs9{font-size:352.000000pt;}
.fs5{font-size:618.880000pt;}
.fs6{font-size:640.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:38.673349pt;}
.y5a{bottom:64.801481pt;}
.y36{bottom:145.890925pt;}
.y26{bottom:146.306667pt;}
.y37{bottom:171.957666pt;}
.y3f{bottom:262.974976pt;}
.y3e{bottom:326.496803pt;}
.y18{bottom:371.200000pt;}
.y3b{bottom:375.866667pt;}
.y3a{bottom:423.866667pt;}
.y39{bottom:471.866667pt;}
.y4d{bottom:543.933333pt;}
.y4c{bottom:653.306667pt;}
.y3c{bottom:681.955432pt;}
.y4b{bottom:714.106667pt;}
.y3d{bottom:719.297528pt;}
.y4a{bottom:774.906667pt;}
.y49{bottom:836.346667pt;}
.y48{bottom:899.706667pt;}
.y47{bottom:960.506667pt;}
.y41{bottom:1017.597474pt;}
.y46{bottom:1021.306667pt;}
.y45{bottom:1082.106667pt;}
.y1d{bottom:1157.053333pt;}
.y40{bottom:1196.012006pt;}
.y15{bottom:1269.853333pt;}
.y14{bottom:1330.653333pt;}
.y13{bottom:1391.493333pt;}
.y12{bottom:1452.933333pt;}
.y11{bottom:1516.293333pt;}
.y10{bottom:1577.093333pt;}
.yf{bottom:1637.893333pt;}
.ye{bottom:1698.693333pt;}
.y42{bottom:1747.677445pt;}
.yd{bottom:1759.493333pt;}
.yc{bottom:1820.293333pt;}
.y58{bottom:1822.720000pt;}
.y57{bottom:1877.120000pt;}
.yb{bottom:1881.093333pt;}
.y56{bottom:1932.160000pt;}
.ya{bottom:1942.533333pt;}
.y55{bottom:1989.120000pt;}
.y9{bottom:2005.893333pt;}
.y54{bottom:2043.546667pt;}
.y8{bottom:2066.693333pt;}
.y7{bottom:2130.373333pt;}
.y6{bottom:2197.893333pt;}
.y5{bottom:2259.333333pt;}
.y4{bottom:2322.693333pt;}
.y3{bottom:2383.520000pt;}
.y44{bottom:2414.240000pt;}
.y2{bottom:2444.320000pt;}
.y43{bottom:2459.040000pt;}
.y1{bottom:2505.760000pt;}
.y34{bottom:2582.880000pt;}
.y52{bottom:2675.333333pt;}
.y53{bottom:2689.626667pt;}
.y51{bottom:2707.333333pt;}
.y33{bottom:2708.573333pt;}
.y35{bottom:2719.324069pt;}
.y50{bottom:2739.333333pt;}
.y32{bottom:2771.453333pt;}
.y31{bottom:2832.893333pt;}
.y30{bottom:2896.253333pt;}
.y2f{bottom:2957.693333pt;}
.y2e{bottom:3031.613333pt;}
.y2a{bottom:3064.066667pt;}
.y25{bottom:3085.280000pt;}
.y27{bottom:3114.853333pt;}
.y2d{bottom:3117.053333pt;}
.y29{bottom:3119.813333pt;}
.y28{bottom:3175.546667pt;}
.y2c{bottom:3177.853333pt;}
.y24{bottom:3231.586667pt;}
.y2b{bottom:3240.773333pt;}
.y1e{bottom:3326.586667pt;}
.y4f{bottom:3451.973333pt;}
.y23{bottom:3452.026667pt;}
.y4e{bottom:3483.973333pt;}
.y22{bottom:3520.346667pt;}
.y59{bottom:3543.205085pt;}
.y21{bottom:3581.146667pt;}
.y20{bottom:3641.986667pt;}
.y1f{bottom:3702.786667pt;}
.y1c{bottom:3786.146667pt;}
.y1b{bottom:4035.933333pt;}
.y1a{bottom:4176.733333pt;}
.y19{bottom:4248.573333pt;}
.y17{bottom:4342.333333pt;}
.y16{bottom:4527.933333pt;}
.h1f{height:106.305937pt;}
.h20{height:109.437187pt;}
.h16{height:120.937500pt;}
.h1d{height:129.242188pt;}
.hf{height:148.319063pt;}
.h15{height:151.215950pt;}
.hd{height:152.687812pt;}
.h17{height:159.140625pt;}
.h23{height:159.599120pt;}
.h12{height:162.753750pt;}
.h14{height:166.277299pt;}
.h24{height:166.590428pt;}
.h1a{height:178.151830pt;}
.ha{height:179.371250pt;}
.h22{height:180.147188pt;}
.h19{height:182.680241pt;}
.h21{height:185.584500pt;}
.h5{height:201.790312pt;}
.h4{height:201.917625pt;}
.h1c{height:202.556190pt;}
.h6{height:203.570312pt;}
.h3{height:207.734062pt;}
.h1b{height:208.205425pt;}
.h11{height:211.975312pt;}
.h2{height:218.219062pt;}
.hc{height:240.499687pt;}
.h10{height:240.630750pt;}
.h13{height:244.158478pt;}
.h9{height:254.625000pt;}
.he{height:319.200000pt;}
.h1e{height:327.656250pt;}
.hb{height:350.109375pt;}
.h7{height:615.555938pt;}
.h8{height:636.562500pt;}
.h18{height:1820.477933pt;}
.h1{height:4718.666667pt;}
.h0{height:4718.720000pt;}
.w3{width:387.520000pt;}
.w5{width:757.475032pt;}
.w6{width:1264.717391pt;}
.w4{width:1699.109842pt;}
.w1{width:3337.333333pt;}
.w2{width:3337.599950pt;}
.w0{width:3337.600000pt;}
.x0{left:0.000000pt;}
.xe{left:18.013333pt;}
.x27{left:92.575950pt;}
.xa{left:98.751950pt;}
.x11{left:101.855950pt;}
.x1f{left:105.343950pt;}
.x1e{left:121.503950pt;}
.x8{left:146.746617pt;}
.x26{left:151.453284pt;}
.x3{left:157.439950pt;}
.xb{left:170.746617pt;}
.x19{left:259.771575pt;}
.x1c{left:290.359127pt;}
.x1d{left:318.349636pt;}
.x18{left:331.431247pt;}
.x1b{left:496.825188pt;}
.x1a{left:507.646258pt;}
.x5{left:555.613284pt;}
.x15{left:630.729220pt;}
.x6{left:673.533284pt;}
.x29{left:675.583325pt;}
.x14{left:710.235968pt;}
.x17{left:927.173284pt;}
.x16{left:992.491028pt;}
.x7{left:1189.733284pt;}
.x13{left:1191.621338pt;}
.x12{left:1520.177726pt;}
.x28{left:1951.591078pt;}
.x25{left:2008.666617pt;}
.xc{left:2163.066617pt;}
.x23{left:2188.639950pt;}
.x1{left:2238.426617pt;}
.xf{left:2262.746617pt;}
.x20{left:2272.413284pt;}
.x22{left:2289.413284pt;}
.x2{left:2298.426617pt;}
.x9{left:2320.453284pt;}
.x24{left:2327.706617pt;}
.x21{left:2332.453284pt;}
.x4{left:2571.199950pt;}
.x10{left:2614.013284pt;}
.xd{left:2832.320000pt;}
}




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